From 5ff8d60ef324b9666c92fc342d143e8074043cd1 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Fri, 20 Dec 2013 15:55:34 +0530 Subject: Remove some redundant computations in s_sin.c There are multiple points in the code where the absolute value of a number is computed multiple times or is computed even though the value can only be positive. This change removes those redundant computations. Tested on x86_64 to verify that there were no regressions in the testsuite. --- sysdeps/ieee754/dbl-64/s_sin.c | 39 +++++++++++++++------------------------ 1 file changed, 15 insertions(+), 24 deletions(-) (limited to 'sysdeps') diff --git a/sysdeps/ieee754/dbl-64/s_sin.c b/sysdeps/ieee754/dbl-64/s_sin.c index 9066667040..4e2ac3dbfe 100644 --- a/sysdeps/ieee754/dbl-64/s_sin.c +++ b/sysdeps/ieee754/dbl-64/s_sin.c @@ -290,19 +290,18 @@ __sin (double x) { m = 1; t = a; - db = da; } else { m = 0; t = -a; - db = -da; + da = -da; } u.x = big + t; y = t - (u.x - big); xx = y * y; - s = y + (db + y * xx * (sn3 + xx * sn5)); - c = y * db + xx * (cs2 + xx * (cs4 + xx * cs6)); + s = y + (da + y * xx * (sn3 + xx * sn5)); + c = y * da + xx * (cs2 + xx * (cs4 + xx * cs6)); SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); cor = (ssn + s * ccs - sn * c) + cs * s; res = sn + cor; @@ -498,19 +497,18 @@ __cos (double x) { m = 1; t = a; - db = da; } else { m = 0; t = -a; - db = -da; + da = -da; } u.x = big + t; y = t - (u.x - big); xx = y * y; - s = y + (db + y * xx * (sn3 + xx * sn5)); - c = y * db + xx * (cs2 + xx * (cs4 + xx * cs6)); + s = y + (da + y * xx * (sn3 + xx * sn5)); + c = y * da + xx * (cs2 + xx * (cs4 + xx * cs6)); SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); cor = (ssn + s * ccs - sn * c) + cs * s; res = sn + cor; @@ -557,19 +555,18 @@ __cos (double x) { m = 1; t = a; - db = da; } else { m = 0; t = -a; - db = -da; + da = -da; } u.x = big + t; y = t - (u.x - big); xx = y * y; - s = y + (db + y * xx * (sn3 + xx * sn5)); - c = y * db + xx * (cs2 + xx * (cs4 + xx * cs6)); + s = y + (da + y * xx * (sn3 + xx * sn5)); + c = y * da + xx * (cs2 + xx * (cs4 + xx * cs6)); SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); cor = (ssn + s * ccs - sn * c) + cs * s; res = sn + cor; @@ -899,7 +896,6 @@ sloww1 (double x, double dx, double orig) y = ABS (x); u.x = big + y; y = y - (u.x - big); - dx = (x > 0) ? dx : -dx; xx = y * y; s = y * xx * (sn3 + xx * sn5); c = xx * (cs2 + xx * (cs4 + xx * cs6)); @@ -951,10 +947,8 @@ sloww2 (double x, double dx, double orig, int n) mynumber u; double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, e1, e2, xx, cor, res; - y = ABS (x); - u.x = big + y; - y = y - (u.x - big); - dx = (x > 0) ? dx : -dx; + u.x = big + x; + y = x - (u.x - big); xx = y * y; s = y * xx * (sn3 + xx * sn5); c = y * dx + xx * (cs2 + xx * (cs4 + xx * cs6)); @@ -979,7 +973,7 @@ sloww2 (double x, double dx, double orig, int n) return (n & 2) ? -res : res; else { - __docos (ABS (x), dx, w); + __docos (x, dx, w); if (w[1] > 0) cor = 1.000000005 * w[1] + 1.1e-30 * ABS (orig); @@ -1254,7 +1248,6 @@ csloww1 (double x, double dx, double orig) y = ABS (x); u.x = big + y; y = y - (u.x - big); - dx = (x > 0) ? dx : -dx; xx = y * y; s = y * xx * (sn3 + xx * sn5); c = xx * (cs2 + xx * (cs4 + xx * cs6)); @@ -1305,10 +1298,8 @@ csloww2 (double x, double dx, double orig, int n) mynumber u; double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, e1, e2, xx, cor, res; - y = ABS (x); - u.x = big + y; - y = y - (u.x - big); - dx = (x > 0) ? dx : -dx; + u.x = big + x; + y = x - (u.x - big); xx = y * y; s = y * xx * (sn3 + xx * sn5); c = y * dx + xx * (cs2 + xx * (cs4 + xx * cs6)); @@ -1333,7 +1324,7 @@ csloww2 (double x, double dx, double orig, int n) return (n) ? -res : res; else { - __docos (ABS (x), dx, w); + __docos (x, dx, w); if (w[1] > 0) cor = 1.000000005 * w[1] + 1.1e-30 * ABS (orig); else -- cgit v1.2.3 From 975195e4668575d5c53fbf5223501c26ee8dc20e Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Fri, 20 Dec 2013 15:56:21 +0530 Subject: Remove redundant arguments in reduce_and_compute The A and DA arguments in reduce_and_compute are useless and hence have been removed. --- ChangeLog | 5 +++++ sysdeps/ieee754/dbl-64/s_sin.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index a8dab6da0e..314ddd5843 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2013-12-20 Siddhesh Poyarekar + * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): Remove + arguments A and DA. + (__sin): Adjust. + (__cos): Likewise. + * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use DA directly. (__cos): Likewise. (sloww1): Don't adjust sign of DX. diff --git a/sysdeps/ieee754/dbl-64/s_sin.c b/sysdeps/ieee754/dbl-64/s_sin.c index 4e2ac3dbfe..48a26f57c4 100644 --- a/sysdeps/ieee754/dbl-64/s_sin.c +++ b/sysdeps/ieee754/dbl-64/s_sin.c @@ -150,9 +150,9 @@ static double csloww2 (double x, double dx, double orig, int n); by simply rotating the quadrants by 1. */ static inline double __always_inline -reduce_and_compute (double x, double a, double da, unsigned int k) +reduce_and_compute (double x, unsigned int k) { - double retval = 0; + double retval = 0, a, da; unsigned int n = __branred (x, &a, &da); k = (n + k) % 4; switch (k) @@ -424,7 +424,7 @@ __sin (double x) /* -----------------281474976710656 <|x| <2^1024----------------------------*/ else if (k < 0x7ff00000) - retval = reduce_and_compute (x, a, da, 0); + retval = reduce_and_compute (x, 0); /*--------------------- |x| > 2^1024 ----------------------------------*/ else @@ -687,7 +687,7 @@ __cos (double x) /* 281474976710656 <|x| <2^1024 */ else if (k < 0x7ff00000) - retval = reduce_and_compute (x, a, da, 1); + retval = reduce_and_compute (x, 1); else { -- cgit v1.2.3 From 84ba214c2197586bc80631dd6d6110a3bbaab7bf Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Fri, 20 Dec 2013 15:58:19 +0530 Subject: Remove more redundant computations in s_sin.c Removed more redundant computations in the slow paths of the sin and cos functions. The notable change is the passing of the most significant bits of X to the slow functions to check if X is positive so that just the absolute value of x can be passed and the repeated ABS() operation is avoided. --- ChangeLog | 7 ++++ sysdeps/ieee754/dbl-64/s_sin.c | 75 +++++++++++++++++++----------------------- 2 files changed, 40 insertions(+), 42 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 314ddd5843..260cd28caf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2013-12-20 Siddhesh Poyarekar + * sysdeps/ieee754/dbl-64/s_sin.c (sloww1): Add new argument M. + Use M to change sign of result instead of X. Assume X is + positive. + (csloww1): Likewise. + (__sin): Adjust. + (__cos): Adjust. + * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): Remove arguments A and DA. (__sin): Adjust. diff --git a/sysdeps/ieee754/dbl-64/s_sin.c b/sysdeps/ieee754/dbl-64/s_sin.c index 48a26f57c4..0033f94794 100644 --- a/sysdeps/ieee754/dbl-64/s_sin.c +++ b/sysdeps/ieee754/dbl-64/s_sin.c @@ -134,7 +134,7 @@ static double slow (double x); static double slow1 (double x); static double slow2 (double x); static double sloww (double x, double dx, double orig); -static double sloww1 (double x, double dx, double orig); +static double sloww1 (double x, double dx, double orig, int m); static double sloww2 (double x, double dx, double orig, int n); static double bsloww (double x, double dx, double orig, int n); static double bsloww1 (double x, double dx, double orig, int n); @@ -142,7 +142,7 @@ static double bsloww2 (double x, double dx, double orig, int n); int __branred (double x, double *a, double *aa); static double cslow2 (double x); static double csloww (double x, double dx, double orig); -static double csloww1 (double x, double dx, double orig); +static double csloww1 (double x, double dx, double orig, int m); static double csloww2 (double x, double dx, double orig, int n); /* Reduce range of X and compute sin of a + da. K is the amount by which to @@ -287,18 +287,15 @@ __sin (double x) else { if (a > 0) - { - m = 1; - t = a; - } + m = 1; else { m = 0; - t = -a; + a = -a; da = -da; } - u.x = big + t; - y = t - (u.x - big); + u.x = big + a; + y = a - (u.x - big); xx = y * y; s = y + (da + y * xx * (sn3 + xx * sn5)); c = y * da + xx * (cs2 + xx * (cs4 + xx * cs6)); @@ -308,7 +305,7 @@ __sin (double x) cor = (sn - res) + cor; cor = (cor > 0) ? 1.035 * cor + eps : 1.035 * cor - eps; retval = ((res == res + cor) ? ((m) ? res : -res) - : sloww1 (a, da, x)); + : sloww1 (a, da, x, m)); } break; @@ -375,17 +372,16 @@ __sin (double x) if (a > 0) { m = 1; - t = a; db = da; } else { m = 0; - t = -a; + a = -a; db = -da; } - u.x = big + t; - y = t - (u.x - big); + u.x = big + a; + y = a - (u.x - big); xx = y * y; s = y + (db + y * xx * (sn3 + xx * sn5)); c = y * db + xx * (cs2 + xx * (cs4 + xx * cs6)); @@ -496,16 +492,15 @@ __cos (double x) if (a > 0) { m = 1; - t = a; } else { m = 0; - t = -a; + a = -a; da = -da; } - u.x = big + t; - y = t - (u.x - big); + u.x = big + a; + y = a - (u.x - big); xx = y * y; s = y + (da + y * xx * (sn3 + xx * sn5)); c = y * da + xx * (cs2 + xx * (cs4 + xx * cs6)); @@ -515,7 +510,7 @@ __cos (double x) cor = (sn - res) + cor; cor = (cor > 0) ? 1.035 * cor + 1.0e-31 : 1.035 * cor - 1.0e-31; retval = ((res == res + cor) ? ((m) ? res : -res) - : csloww1 (a, da, x)); + : csloww1 (a, da, x, m)); } } /* else if (k < 0x400368fd) */ @@ -554,16 +549,15 @@ __cos (double x) if (a > 0) { m = 1; - t = a; } else { m = 0; - t = -a; + a = -a; da = -da; } - u.x = big + t; - y = t - (u.x - big); + u.x = big + a; + y = a - (u.x - big); xx = y * y; s = y + (da + y * xx * (sn3 + xx * sn5)); c = y * da + xx * (cs2 + xx * (cs4 + xx * cs6)); @@ -573,7 +567,7 @@ __cos (double x) cor = (sn - res) + cor; cor = (cor > 0) ? 1.035 * cor + eps : 1.035 * cor - eps; retval = ((res == res + cor) ? ((m) ? res : -res) - : csloww1 (a, da, x)); + : csloww1 (a, da, x, m)); } break; @@ -638,17 +632,16 @@ __cos (double x) if (a > 0) { m = 1; - t = a; db = da; } else { m = 0; - t = -a; + a = -a; db = -da; } - u.x = big + t; - y = t - (u.x - big); + u.x = big + a; + y = a - (u.x - big); xx = y * y; s = y + (db + y * xx * (sn3 + xx * sn5)); c = y * db + xx * (cs2 + xx * (cs4 + xx * cs6)); @@ -888,14 +881,13 @@ sloww (double x, double dx, double orig) static double SECTION -sloww1 (double x, double dx, double orig) +sloww1 (double x, double dx, double orig, int m) { mynumber u; double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, c1, c2, xx, cor, res; - y = ABS (x); - u.x = big + y; - y = y - (u.x - big); + u.x = big + x; + y = x - (u.x - big); xx = y * y; s = y * xx * (sn3 + xx * sn5); c = xx * (cs2 + xx * (cs4 + xx * cs6)); @@ -916,10 +908,10 @@ sloww1 (double x, double dx, double orig) cor = 1.0005 * cor - 3.1e-30 * ABS (orig); if (res == res + cor) - return (x > 0) ? res : -res; + return (m > 0) ? res : -res; else { - __dubsin (ABS (x), dx, w); + __dubsin (x, dx, w); if (w[1] > 0) cor = 1.000000005 * w[1] + 1.1e-30 * ABS (orig); @@ -927,7 +919,7 @@ sloww1 (double x, double dx, double orig) cor = 1.000000005 * w[1] - 1.1e-30 * ABS (orig); if (w[0] == w[0] + cor) - return (x > 0) ? w[0] : -w[0]; + return (m > 0) ? w[0] : -w[0]; else return __mpsin (orig, 0, true); } @@ -1240,14 +1232,13 @@ csloww (double x, double dx, double orig) static double SECTION -csloww1 (double x, double dx, double orig) +csloww1 (double x, double dx, double orig, int m) { mynumber u; double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, c1, c2, xx, cor, res; - y = ABS (x); - u.x = big + y; - y = y - (u.x - big); + u.x = big + x; + y = x - (u.x - big); xx = y * y; s = y * xx * (sn3 + xx * sn5); c = xx * (cs2 + xx * (cs4 + xx * cs6)); @@ -1268,16 +1259,16 @@ csloww1 (double x, double dx, double orig) cor = 1.0005 * cor - 3.1e-30 * ABS (orig); if (res == res + cor) - return (x > 0) ? res : -res; + return (m > 0) ? res : -res; else { - __dubsin (ABS (x), dx, w); + __dubsin (x, dx, w); if (w[1] > 0) cor = 1.000000005 * w[1] + 1.1e-30 * ABS (orig); else cor = 1.000000005 * w[1] - 1.1e-30 * ABS (orig); if (w[0] == w[0] + cor) - return (x > 0) ? w[0] : -w[0]; + return (m > 0) ? w[0] : -w[0]; else return __mpcos (orig, 0, true); } -- cgit v1.2.3 From 392dd2de03c054b1b32358561570be14f55e9ae9 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Fri, 20 Dec 2013 16:01:03 +0530 Subject: Consolidate code to compute sin and cos from lookup tables This patch consolidates the multiple copies of code that looks up sin and cos of a number from the lookup table and computes the final value, into static functions. This does not have a noticeable performance impact since the functions are inlined by gcc. There is further scope for consolidation in the functions but they cause a more noticable impact on performance (>5%) due to which I have held back on them. --- ChangeLog | 5 + sysdeps/ieee754/dbl-64/s_sin.c | 361 +++++++++++++++-------------------------- 2 files changed, 134 insertions(+), 232 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 260cd28caf..0ecde29985 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2013-12-20 Siddhesh Poyarekar + * sysdeps/ieee754/dbl-64/s_sin.c (do_cos, do_cos_slow, do_sin, + do_sin_slow): New functions. + (__sin, __cos, slow1, slow2, sloww1, sloww2, bsloww1, bsloww2, + cslow2, csloww1, csloww2): Use the new functions. + * sysdeps/ieee754/dbl-64/s_sin.c (sloww1): Add new argument M. Use M to change sign of result instead of X. Assume X is positive. diff --git a/sysdeps/ieee754/dbl-64/s_sin.c b/sysdeps/ieee754/dbl-64/s_sin.c index 0033f94794..bd2346cb9a 100644 --- a/sysdeps/ieee754/dbl-64/s_sin.c +++ b/sysdeps/ieee754/dbl-64/s_sin.c @@ -145,6 +145,102 @@ static double csloww (double x, double dx, double orig); static double csloww1 (double x, double dx, double orig, int m); static double csloww2 (double x, double dx, double orig, int n); +/* Given a number partitioned into U and X such that U is an index into the + sin/cos table, this macro computes the cosine of the number by combining + the sin and cos of X (as computed by a variation of the Taylor series) with + the values looked up from the sin/cos table to get the result in RES and a + correction value in COR. */ +static double +do_cos (mynumber u, double x, double *corp) +{ + double xx, s, sn, ssn, c, cs, ccs, res, cor; + xx = x * x; + s = x + x * xx * (sn3 + xx * sn5); + c = xx * (cs2 + xx * (cs4 + xx * cs6)); + SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); + cor = (ccs - s * ssn - cs * c) - sn * s; + res = cs + cor; + cor = (cs - res) + cor; + *corp = cor; + return res; +} + +/* A more precise variant of DO_COS where the number is partitioned into U, X + and DX. EPS is the adjustment to the correction COR. */ +static double +do_cos_slow (mynumber u, double x, double dx, double eps, double *corp) +{ + double xx, y, x1, x2, e1, e2, res, cor; + double s, sn, ssn, c, cs, ccs; + xx = x * x; + s = x * xx * (sn3 + xx * sn5); + c = x * dx + xx * (cs2 + xx * (cs4 + xx * cs6)); + SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); + x1 = (x + t22) - t22; + x2 = (x - x1) + dx; + e1 = (sn + t22) - t22; + e2 = (sn - e1) + ssn; + cor = (ccs - cs * c - e1 * x2 - e2 * x) - sn * s; + y = cs - e1 * x1; + cor = cor + ((cs - y) - e1 * x1); + res = y + cor; + cor = (y - res) + cor; + if (cor > 0) + cor = 1.0005 * cor + eps; + else + cor = 1.0005 * cor - eps; + *corp = cor; + return res; +} + +/* Given a number partitioned into U and X and DX such that U is an index into + the sin/cos table, this macro computes the sine of the number by combining + the sin and cos of X (as computed by a variation of the Taylor series) with + the values looked up from the sin/cos table to get the result in RES and a + correction value in COR. */ +static double +do_sin (mynumber u, double x, double dx, double *corp) +{ + double xx, s, sn, ssn, c, cs, ccs, cor, res; + xx = x * x; + s = x + (dx + x * xx * (sn3 + xx * sn5)); + c = x * dx + xx * (cs2 + xx * (cs4 + xx * cs6)); + SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); + cor = (ssn + s * ccs - sn * c) + cs * s; + res = sn + cor; + cor = (sn - res) + cor; + *corp = cor; + return res; +} + +/* A more precise variant of res = do_sin where the number is partitioned into U, X + and DX. EPS is the adjustment to the correction COR. */ +static double +do_sin_slow (mynumber u, double x, double dx, double eps, double *corp) +{ + double xx, y, x1, x2, c1, c2, res, cor; + double s, sn, ssn, c, cs, ccs; + xx = x * x; + s = x * xx * (sn3 + xx * sn5); + c = xx * (cs2 + xx * (cs4 + xx * cs6)); + SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); + x1 = (x + t22) - t22; + x2 = (x - x1) + dx; + c1 = (cs + t22) - t22; + c2 = (cs - c1) + ccs; + cor = (ssn + s * ccs + cs * s + c2 * x + c1 * x2 - sn * x * dx) - sn * c; + y = sn + c1 * x1; + cor = cor + ((sn - y) + c1 * x1); + res = y + cor; + cor = (y - res) + cor; + if (cor > 0) + cor = 1.0005 * cor + eps; + else + cor = 1.0005 * cor - eps; + *corp = cor; + return res; +} + /* Reduce range of X and compute sin of a + da. K is the amount by which to rotate the quadrants. This allows us to use the same routine to compute cos by simply rotating the quadrants by 1. */ @@ -244,13 +340,7 @@ __sin (double x) u.x = big - y; y = (-hp1) - (y + (u.x - big)); } - xx = y * y; - s = y + y * xx * (sn3 + xx * sn5); - c = xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - cor = (ccs - s * ssn - cs * c) - sn * s; - res = cs + cor; - cor = (cs - res) + cor; + res = do_cos (u, y, &cor); retval = (res == res + 1.020 * cor) ? ((m > 0) ? res : -res) : slow2 (x); } /* else if (k < 0x400368fd) */ @@ -296,13 +386,7 @@ __sin (double x) } u.x = big + a; y = a - (u.x - big); - xx = y * y; - s = y + (da + y * xx * (sn3 + xx * sn5)); - c = y * da + xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - cor = (ssn + s * ccs - sn * c) + cs * s; - res = sn + cor; - cor = (sn - res) + cor; + res = do_sin (u, y, da, &cor); cor = (cor > 0) ? 1.035 * cor + eps : 1.035 * cor - eps; retval = ((res == res + cor) ? ((m) ? res : -res) : sloww1 (a, da, x, m)); @@ -318,13 +402,7 @@ __sin (double x) } u.x = big + a; y = a - (u.x - big) + da; - xx = y * y; - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - s = y + y * xx * (sn3 + xx * sn5); - c = xx * (cs2 + xx * (cs4 + xx * cs6)); - cor = (ccs - s * ssn - cs * c) - sn * s; - res = cs + cor; - cor = (cs - res) + cor; + res = do_cos (u, y, &cor); cor = (cor > 0) ? 1.025 * cor + eps : 1.025 * cor - eps; retval = ((res == res + cor) ? ((n & 2) ? -res : res) : sloww2 (a, da, x, n)); @@ -382,13 +460,7 @@ __sin (double x) } u.x = big + a; y = a - (u.x - big); - xx = y * y; - s = y + (db + y * xx * (sn3 + xx * sn5)); - c = y * db + xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - cor = (ssn + s * ccs - sn * c) + cs * s; - res = sn + cor; - cor = (sn - res) + cor; + res = do_sin (u, y, db, &cor); cor = (cor > 0) ? 1.035 * cor + eps : 1.035 * cor - eps; retval = ((res == res + cor) ? ((m) ? res : -res) : bsloww1 (a, da, x, n)); @@ -404,13 +476,7 @@ __sin (double x) } u.x = big + a; y = a - (u.x - big) + da; - xx = y * y; - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - s = y + y * xx * (sn3 + xx * sn5); - c = xx * (cs2 + xx * (cs4 + xx * cs6)); - cor = (ccs - s * ssn - cs * c) - sn * s; - res = cs + cor; - cor = (cs - res) + cor; + res = do_cos (u, y, &cor); cor = (cor > 0) ? 1.025 * cor + eps : 1.025 * cor - eps; retval = ((res == res + cor) ? ((n & 2) ? -res : res) : bsloww2 (a, da, x, n)); @@ -443,7 +509,7 @@ double SECTION __cos (double x) { - double y, xx, res, t, cor, s, c, sn, ssn, cs, ccs, xn, a, da, db, eps, xn1, + double y, xx, res, t, cor, xn, a, da, db, eps, xn1, xn2; mynumber u, v; int4 k, m, n; @@ -465,13 +531,7 @@ __cos (double x) y = ABS (x); u.x = big + y; y = y - (u.x - big); - xx = y * y; - s = y + y * xx * (sn3 + xx * sn5); - c = xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - cor = (ccs - s * ssn - cs * c) - sn * s; - res = cs + cor; - cor = (cs - res) + cor; + res = do_cos (u, y, &cor); retval = (res == res + 1.020 * cor) ? res : cslow2 (x); } /* else if (k < 0x3feb6000) */ @@ -501,13 +561,7 @@ __cos (double x) } u.x = big + a; y = a - (u.x - big); - xx = y * y; - s = y + (da + y * xx * (sn3 + xx * sn5)); - c = y * da + xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - cor = (ssn + s * ccs - sn * c) + cs * s; - res = sn + cor; - cor = (sn - res) + cor; + res = do_sin (u, y, da, &cor); cor = (cor > 0) ? 1.035 * cor + 1.0e-31 : 1.035 * cor - 1.0e-31; retval = ((res == res + cor) ? ((m) ? res : -res) : csloww1 (a, da, x, m)); @@ -558,13 +612,7 @@ __cos (double x) } u.x = big + a; y = a - (u.x - big); - xx = y * y; - s = y + (da + y * xx * (sn3 + xx * sn5)); - c = y * da + xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - cor = (ssn + s * ccs - sn * c) + cs * s; - res = sn + cor; - cor = (sn - res) + cor; + res = do_sin (u, y, da, &cor); cor = (cor > 0) ? 1.035 * cor + eps : 1.035 * cor - eps; retval = ((res == res + cor) ? ((m) ? res : -res) : csloww1 (a, da, x, m)); @@ -580,13 +628,7 @@ __cos (double x) } u.x = big + a; y = a - (u.x - big) + da; - xx = y * y; - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - s = y + y * xx * (sn3 + xx * sn5); - c = xx * (cs2 + xx * (cs4 + xx * cs6)); - cor = (ccs - s * ssn - cs * c) - sn * s; - res = cs + cor; - cor = (cs - res) + cor; + res = do_cos (u, y, &cor); cor = (cor > 0) ? 1.025 * cor + eps : 1.025 * cor - eps; retval = ((res == res + cor) ? ((n) ? -res : res) : csloww2 (a, da, x, n)); @@ -642,13 +684,7 @@ __cos (double x) } u.x = big + a; y = a - (u.x - big); - xx = y * y; - s = y + (db + y * xx * (sn3 + xx * sn5)); - c = y * db + xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - cor = (ssn + s * ccs - sn * c) + cs * s; - res = sn + cor; - cor = (sn - res) + cor; + res = do_sin (u, y, db, &cor); cor = (cor > 0) ? 1.035 * cor + eps : 1.035 * cor - eps; retval = ((res == res + cor) ? ((m) ? res : -res) : bsloww1 (a, da, x, n)); @@ -664,13 +700,7 @@ __cos (double x) } u.x = big + a; y = a - (u.x - big) + da; - xx = y * y; - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - s = y + y * xx * (sn3 + xx * sn5); - c = xx * (cs2 + xx * (cs4 + xx * cs6)); - cor = (ccs - s * ssn - cs * c) - sn * s; - res = cs + cor; - cor = (cs - res) + cor; + res = do_cos (u, y, &cor); cor = (cor > 0) ? 1.025 * cor + eps : 1.025 * cor - eps; retval = ((res == res + cor) ? ((n) ? -res : res) : bsloww2 (a, da, x, n)); @@ -725,24 +755,12 @@ SECTION slow1 (double x) { mynumber u; - double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, c1, c2, xx, cor, res; + double w[2], y, cor, res; y = ABS (x); u.x = big + y; y = y - (u.x - big); - xx = y * y; - s = y * xx * (sn3 + xx * sn5); - c = xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - y1 = (y + t22) - t22; - y2 = y - y1; - c1 = (cs + t22) - t22; - c2 = (cs - c1) + ccs; - cor = (ssn + s * ccs + cs * s + c2 * y + c1 * y2) - sn * c; - y = sn + c1 * y1; - cor = cor + ((sn - y) + c1 * y1); - res = y + cor; - cor = (y - res) + cor; - if (res == res + 1.0005 * cor) + res = do_sin_slow (u, y, 0, 0, &cor); + if (res == res + cor) return (x > 0) ? res : -res; else { @@ -763,7 +781,7 @@ SECTION slow2 (double x) { mynumber u; - double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, e1, e2, xx, cor, res, del; + double w[2], y, y1, y2, cor, res, del; y = ABS (x); y = hp0 - y; @@ -779,20 +797,8 @@ slow2 (double x) y = -(y + (u.x - big)); del = -hp1; } - xx = y * y; - s = y * xx * (sn3 + xx * sn5); - c = y * del + xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - y1 = (y + t22) - t22; - y2 = (y - y1) + del; - e1 = (sn + t22) - t22; - e2 = (sn - e1) + ssn; - cor = (ccs - cs * c - e1 * y2 - e2 * y) - sn * s; - y = cs - e1 * y1; - cor = cor + ((cs - y) - e1 * y1); - res = y + cor; - cor = (y - res) + cor; - if (res == res + 1.0005 * cor) + res = do_cos_slow (u, y, del, 0, &cor); + if (res == res + cor) return (x > 0) ? res : -res; else { @@ -884,28 +890,11 @@ SECTION sloww1 (double x, double dx, double orig, int m) { mynumber u; - double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, c1, c2, xx, cor, res; + double w[2], y, cor, res; u.x = big + x; y = x - (u.x - big); - xx = y * y; - s = y * xx * (sn3 + xx * sn5); - c = xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - y1 = (y + t22) - t22; - y2 = (y - y1) + dx; - c1 = (cs + t22) - t22; - c2 = (cs - c1) + ccs; - cor = (ssn + s * ccs + cs * s + c2 * y + c1 * y2 - sn * y * dx) - sn * c; - y = sn + c1 * y1; - cor = cor + ((sn - y) + c1 * y1); - res = y + cor; - cor = (y - res) + cor; - - if (cor > 0) - cor = 1.0005 * cor + 3.1e-30 * ABS (orig); - else - cor = 1.0005 * cor - 3.1e-30 * ABS (orig); + res = do_sin_slow (u, y, dx, 3.1e-30 * ABS (orig), &cor); if (res == res + cor) return (m > 0) ? res : -res; @@ -937,29 +926,11 @@ SECTION sloww2 (double x, double dx, double orig, int n) { mynumber u; - double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, e1, e2, xx, cor, res; + double w[2], y, cor, res; u.x = big + x; y = x - (u.x - big); - xx = y * y; - s = y * xx * (sn3 + xx * sn5); - c = y * dx + xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - - y1 = (y + t22) - t22; - y2 = (y - y1) + dx; - e1 = (sn + t22) - t22; - e2 = (sn - e1) + ssn; - cor = (ccs - cs * c - e1 * y2 - e2 * y) - sn * s; - y = cs - e1 * y1; - cor = cor + ((cs - y) - e1 * y1); - res = y + cor; - cor = (y - res) + cor; - - if (cor > 0) - cor = 1.0005 * cor + 3.1e-30 * ABS (orig); - else - cor = 1.0005 * cor - 3.1e-30 * ABS (orig); + res = do_cos_slow (u, y, dx, 3.1e-30 * ABS (orig), &cor); if (res == res + cor) return (n & 2) ? -res : res; @@ -1023,26 +994,13 @@ SECTION bsloww1 (double x, double dx, double orig, int n) { mynumber u; - double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, c1, c2, xx, cor, res; + double w[2], y, cor, res; y = ABS (x); u.x = big + y; y = y - (u.x - big); dx = (x > 0) ? dx : -dx; - xx = y * y; - s = y * xx * (sn3 + xx * sn5); - c = xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - y1 = (y + t22) - t22; - y2 = (y - y1) + dx; - c1 = (cs + t22) - t22; - c2 = (cs - c1) + ccs; - cor = (ssn + s * ccs + cs * s + c2 * y + c1 * y2 - sn * y * dx) - sn * c; - y = sn + c1 * y1; - cor = cor + ((sn - y) + c1 * y1); - res = y + cor; - cor = (y - res) + cor; - cor = (cor > 0) ? 1.0005 * cor + 1.1e-24 : 1.0005 * cor - 1.1e-24; + res = do_sin_slow (u, y, dx, 1.1e-24, &cor); if (res == res + cor) return (x > 0) ? res : -res; else @@ -1073,27 +1031,13 @@ SECTION bsloww2 (double x, double dx, double orig, int n) { mynumber u; - double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, e1, e2, xx, cor, res; + double w[2], y, cor, res; y = ABS (x); u.x = big + y; y = y - (u.x - big); dx = (x > 0) ? dx : -dx; - xx = y * y; - s = y * xx * (sn3 + xx * sn5); - c = y * dx + xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - - y1 = (y + t22) - t22; - y2 = (y - y1) + dx; - e1 = (sn + t22) - t22; - e2 = (sn - e1) + ssn; - cor = (ccs - cs * c - e1 * y2 - e2 * y) - sn * s; - y = cs - e1 * y1; - cor = cor + ((cs - y) - e1 * y1); - res = y + cor; - cor = (y - res) + cor; - cor = (cor > 0) ? 1.0005 * cor + 1.1e-24 : 1.0005 * cor - 1.1e-24; + res = do_cos_slow (u, y, dx, 1.1e-24, &cor); if (res == res + cor) return (n & 2) ? -res : res; else @@ -1122,25 +1066,13 @@ SECTION cslow2 (double x) { mynumber u; - double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, e1, e2, xx, cor, res; + double w[2], y, cor, res; y = ABS (x); u.x = big + y; y = y - (u.x - big); - xx = y * y; - s = y * xx * (sn3 + xx * sn5); - c = xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - y1 = (y + t22) - t22; - y2 = y - y1; - e1 = (sn + t22) - t22; - e2 = (sn - e1) + ssn; - cor = (ccs - cs * c - e1 * y2 - e2 * y) - sn * s; - y = cs - e1 * y1; - cor = cor + ((cs - y) - e1 * y1); - res = y + cor; - cor = (y - res) + cor; - if (res == res + 1.0005 * cor) + res = do_cos_slow (u, y, 0, 0, &cor); + if (res == res + cor) return res; else { @@ -1235,28 +1167,11 @@ SECTION csloww1 (double x, double dx, double orig, int m) { mynumber u; - double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, c1, c2, xx, cor, res; + double w[2], y, cor, res; u.x = big + x; y = x - (u.x - big); - xx = y * y; - s = y * xx * (sn3 + xx * sn5); - c = xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - y1 = (y + t22) - t22; - y2 = (y - y1) + dx; - c1 = (cs + t22) - t22; - c2 = (cs - c1) + ccs; - cor = (ssn + s * ccs + cs * s + c2 * y + c1 * y2 - sn * y * dx) - sn * c; - y = sn + c1 * y1; - cor = cor + ((sn - y) + c1 * y1); - res = y + cor; - cor = (y - res) + cor; - - if (cor > 0) - cor = 1.0005 * cor + 3.1e-30 * ABS (orig); - else - cor = 1.0005 * cor - 3.1e-30 * ABS (orig); + res = do_sin_slow (u, y, dx, 3.1e-30 * ABS (orig), &cor); if (res == res + cor) return (m > 0) ? res : -res; @@ -1287,29 +1202,11 @@ SECTION csloww2 (double x, double dx, double orig, int n) { mynumber u; - double sn, ssn, cs, ccs, s, c, w[2], y, y1, y2, e1, e2, xx, cor, res; + double w[2], y, cor, res; u.x = big + x; y = x - (u.x - big); - xx = y * y; - s = y * xx * (sn3 + xx * sn5); - c = y * dx + xx * (cs2 + xx * (cs4 + xx * cs6)); - SINCOS_TABLE_LOOKUP (u, sn, ssn, cs, ccs); - - y1 = (y + t22) - t22; - y2 = (y - y1) + dx; - e1 = (sn + t22) - t22; - e2 = (sn - e1) + ssn; - cor = (ccs - cs * c - e1 * y2 - e2 * y) - sn * s; - y = cs - e1 * y1; - cor = cor + ((cs - y) - e1 * y1); - res = y + cor; - cor = (y - res) + cor; - - if (cor > 0) - cor = 1.0005 * cor + 3.1e-30 * ABS (orig); - else - cor = 1.0005 * cor - 3.1e-30 * ABS (orig); + res = do_cos_slow (u, y, dx, 3.1e-30 * ABS (orig), &cor); if (res == res + cor) return (n) ? -res : res; -- cgit v1.2.3 From 7fda568229f73137f54a8d5da071f5e73ea50627 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 20 Dec 2013 12:32:44 +0000 Subject: Move various TEST_c_c tests from libm-test.inc to auto-libm-test-inc. This patch moves tests of ccos, ccosh, cexp, clog, csqrt, ctan and ctanh to auto-libm-test-in, adding the required support to gen-auto-libm-tests. Other TEST_c_c functions aren't moved for now (although the relevant table entries are put in gen-auto-libm-tests for it to know how to handle them): clog10 because of a known MPC bug causing it to hang for at least some pure imaginary inputs (fixed in SVN, but I'd rather not rely on unreleased versions of MPFR or MPC even if relying on very recent releases); the inverse trig and hyperbolic functions because of known slowness in special cases; and csin / csinh because of observed slowness that I need to investigate and report to the MPC maintainers. Slowness can be bypassed by moving to incremental generation (only for new / changed tests) rather than regenerating the whole of auto-libm-test-out every time, but that needs implementing. (This patch takes the time for running gen-auto-libm-tests from about one second to seven, on my system, which I think is reasonable. The slow functions would make it take several minutes at least, which seems unreasonable.) Tested x86_64 and x86 and ulps updated accordingly. * math/auto-libm-test-in: Add tests of ccos, ccosh, cexp, clog, csqrt, ctan and ctanh. * math/auto-libm-test-out: Regenerated. * math/libm-test.inc (TEST_COND_x86_64): New macro. (TEST_COND_x86): Likewise. (ccos_test_data): Use AUTO_TESTS_c_c. (ccosh_test_data): Likewise. (cexp_test_data): Likewise. (clog_test_data): Likewise. (csqrt_test_data): Likewise. (ctan_test_data): Likewise. (ctan_tonearest_test_data): Likewise. (ctan_towardzero_test_data): Likewise. (ctan_downward_test_data): Likewise. (ctan_upward_test_data): Likewise. (ctanh_test_data): Likewise. (ctanh_tonearest_test_data): Likewise. (ctanh_towardzero_test_data): Likewise. (ctanh_downward_test_data): Likewise. (ctanh_upward_test_data): Likewise. * math/gen-auto-libm-tests.c (func_calc_method): Add value mpc_c_c. (func_calc_desc): Add mpc_c_c union field. (FUNC_mpc_c_c): New macro. (test_functions): Add cacos, cacosh, casin, casinh, catan, catanh, ccos, ccosh, cexp, clog, clog10, csin, csinh, csqrt, ctan and ctanh. (special_fill_min_subnorm_p120): New function. (special_real_inputs): Add min_subnorm_p120. (calc_generic_results): Handle mpc_c_c. * sysdeps/i386/fpu/libm-test-ulps: Update. * sysdeps/x86_64/fpu/libm-test-ulps: Likewise. --- ChangeLog | 35 + math/auto-libm-test-in | 332 + math/auto-libm-test-out | 38704 ++++++++++++++++++++++++++++++++++++ math/gen-auto-libm-tests.c | 58 + math/libm-test.inc | 535 +- sysdeps/i386/fpu/libm-test-ulps | 4877 ++++- sysdeps/x86_64/fpu/libm-test-ulps | 5278 ++++- 7 files changed, 47615 insertions(+), 2204 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 0ecde29985..793d0b0c43 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,38 @@ +2013-12-20 Joseph Myers + + * math/auto-libm-test-in: Add tests of ccos, ccosh, cexp, clog, + csqrt, ctan and ctanh. + * math/auto-libm-test-out: Regenerated. + * math/libm-test.inc (TEST_COND_x86_64): New macro. + (TEST_COND_x86): Likewise. + (ccos_test_data): Use AUTO_TESTS_c_c. + (ccosh_test_data): Likewise. + (cexp_test_data): Likewise. + (clog_test_data): Likewise. + (csqrt_test_data): Likewise. + (ctan_test_data): Likewise. + (ctan_tonearest_test_data): Likewise. + (ctan_towardzero_test_data): Likewise. + (ctan_downward_test_data): Likewise. + (ctan_upward_test_data): Likewise. + (ctanh_test_data): Likewise. + (ctanh_tonearest_test_data): Likewise. + (ctanh_towardzero_test_data): Likewise. + (ctanh_downward_test_data): Likewise. + (ctanh_upward_test_data): Likewise. + * math/gen-auto-libm-tests.c (func_calc_method): Add value + mpc_c_c. + (func_calc_desc): Add mpc_c_c union field. + (FUNC_mpc_c_c): New macro. + (test_functions): Add cacos, cacosh, casin, casinh, catan, catanh, + ccos, ccosh, cexp, clog, clog10, csin, csinh, csqrt, ctan and + ctanh. + (special_fill_min_subnorm_p120): New function. + (special_real_inputs): Add min_subnorm_p120. + (calc_generic_results): Handle mpc_c_c. + * sysdeps/i386/fpu/libm-test-ulps: Update. + * sysdeps/x86_64/fpu/libm-test-ulps: Likewise. + 2013-12-20 Siddhesh Poyarekar * sysdeps/ieee754/dbl-64/s_sin.c (do_cos, do_cos_slow, do_sin, diff --git a/math/auto-libm-test-in b/math/auto-libm-test-in index 383fd018b4..4b3c7581b6 100644 --- a/math/auto-libm-test-in +++ b/math/auto-libm-test-in @@ -155,6 +155,219 @@ cbrt 0.75 cbrt 0x1p16383 cbrt 0x1p-16383 +ccos 0.0 0.0 +ccos -0 0.0 +ccos 0.0 -0 +ccos -0 -0 + +ccos 0.75 1.25 +ccos -2 -3 + +ccos 0.75 89.5 +ccos 0.75 -89.5 +ccos -0.75 89.5 +ccos -0.75 -89.5 +ccos 0.75 710.5 +ccos 0.75 -710.5 +ccos -0.75 710.5 +ccos -0.75 -710.5 +ccos 0.75 11357.25 +ccos 0.75 -11357.25 +ccos -0.75 11357.25 +ccos -0.75 -11357.25 + +ccos 0x1p-149 180 +ccos 0x1p-1074 1440 +ccos 0x1p-16434 22730 + +ccos min_subnorm_p120 0x1p-120 +ccos 0x1p-120 min_subnorm_p120 + +ccosh 0.0 0.0 +ccosh -0 0.0 +ccosh 0.0 -0 +ccosh -0 -0 + +ccosh 0.75 1.25 +ccosh -2 -3 + +ccosh 89.5 0.75 +ccosh -89.5 0.75 +ccosh 89.5 -0.75 +ccosh -89.5 -0.75 +ccosh 710.5 0.75 +ccosh -710.5 0.75 +ccosh 710.5 -0.75 +ccosh -710.5 -0.75 +ccosh 11357.25 0.75 +ccosh -11357.25 0.75 +ccosh 11357.25 -0.75 +ccosh -11357.25 -0.75 + +ccosh 180 0x1p-149 +ccosh 1440 0x1p-1074 +ccosh 22730 0x1p-16434 + +ccosh min_subnorm_p120 0x1p-120 +ccosh 0x1p-120 min_subnorm_p120 + +cexp 0 0 +cexp -0 0 +cexp 0 -0 +cexp -0 -0 + +cexp 0.75 1.25 +cexp -2.0 -3.0 + +cexp 0 0x1p65 +cexp 0 -0x1p65 +cexp 50 0x1p127 + +cexp 0 1e22 +cexp 0 0x1p1023 +cexp 500 0x1p1023 + +cexp 0 0x1p16383 +cexp -10000 0x1p16383 + +cexp 88.75 0.75 +cexp -95 0.75 +cexp 709.8125 0.75 +cexp -720 0.75 +cexp 11356.5625 0.75 +cexp -11370 0.75 + +cexp 180 0x1p-149 +cexp 1440 0x1p-1074 +cexp 22730 0x1p-16434 + +cexp 1e6 0 +cexp 1e6 min +cexp 1e6 -min + +# Bug 16348: spurious underflow may occur. +cexp min min_subnorm spurious-underflow:ldbl-96-intel:x86 spurious-underflow:ldbl-96-intel:x86_64 +cexp min -min_subnorm spurious-underflow:ldbl-96-intel:x86 spurious-underflow:ldbl-96-intel:x86_64 + +clog 0.75 1.25 +clog -2 -3 + +clog 0x1.fffffep+127 0x1.fffffep+127 +clog 0x1.fffffep+127 1.0 +clog 0x1p-149 0x1p-149 +clog 0x1p-147 0x1p-147 +clog 0x1.fffffffffffffp+1023 0x1.fffffffffffffp+1023 +clog 0x1.fffffffffffffp+1023 0x1p+1023 +clog 0x1p-1074 0x1p-1074 +clog 0x1p-1073 0x1p-1073 +clog 0x1.fp+16383 0x1.fp+16383 +clog 0x1.fp+16383 0x1p+16383 +clog 0x1p-16440 0x1p-16441 + +clog 0x1p-149 0x1.fp+127 +clog -0x1p-149 0x1.fp+127 +clog 0x1p-149 -0x1.fp+127 +clog -0x1p-149 -0x1.fp+127 +clog -0x1.fp+127 0x1p-149 +clog -0x1.fp+127 -0x1p-149 +clog 0x1.fp+127 0x1p-149 +clog 0x1.fp+127 -0x1p-149 +clog 0x1p-1074 0x1.fp+1023 +clog -0x1p-1074 0x1.fp+1023 +clog 0x1p-1074 -0x1.fp+1023 +clog -0x1p-1074 -0x1.fp+1023 +clog -0x1.fp+1023 0x1p-1074 +clog -0x1.fp+1023 -0x1p-1074 +clog 0x1.fp+1023 0x1p-1074 +clog 0x1.fp+1023 -0x1p-1074 +clog 0x1p-16445 0x1.fp+16383 +clog -0x1p-16445 0x1.fp+16383 +clog 0x1p-16445 -0x1.fp+16383 +clog -0x1p-16445 -0x1.fp+16383 +clog -0x1.fp+16383 0x1p-16445 +clog -0x1.fp+16383 -0x1p-16445 +clog 0x1.fp+16383 0x1p-16445 +clog 0x1.fp+16383 -0x1p-16445 +clog 0x1p-16494 0x1.fp+16383 +clog -0x1p-16494 0x1.fp+16383 +clog 0x1p-16494 -0x1.fp+16383 +clog -0x1p-16494 -0x1.fp+16383 +clog -0x1.fp+16383 0x1p-16494 +clog -0x1.fp+16383 -0x1p-16494 +clog 0x1.fp+16383 0x1p-16494 +clog 0x1.fp+16383 -0x1p-16494 + +clog 1.0 0x1.234566p-10 +clog -1.0 0x1.234566p-20 +clog 0x1.234566p-30 1.0 +clog -0x1.234566p-40 -1.0 +clog 0x1.234566p-50 1.0 +clog 0x1.234566p-60 1.0 +clog 0x1p-62 1.0 +clog 0x1p-63 1.0 +clog 0x1p-64 1.0 +clog 0x1p-510 1.0 +clog 0x1p-511 1.0 +clog 0x1p-512 1.0 +clog 0x1p-8190 1.0 +clog 0x1p-8191 1.0 +clog 0x1p-8192 1.0 + +clog 0x1.000566p0 0x1.234p-10 +clog 0x1.000566p0 0x1.234p-100 +clog -0x1.0000000123456p0 0x1.2345678p-30 +clog -0x1.0000000123456p0 0x1.2345678p-1000 +clog 0x1.00000000000000123456789abcp0 0x1.23456789p-60 +clog 0x1.00000000000000123456789abcp0 0x1.23456789p-1000 + +clog 0x0.ffffffp0 0x0.ffffffp-100 +clog 0x0.fffffffffffff8p0 0x0.fffffffffffff8p-1000 +clog 0x0.ffffffffffffffffp0 0x0.ffffffffffffffffp-15000 + +clog 0x1a6p-10 0x3a5p-10 +clog 0xf2p-10 0x3e3p-10 +clog 0x4d4ep-15 0x6605p-15 +clog 0x2818p-15 0x798fp-15 +clog 0x9b57bp-20 0xcb7b4p-20 +clog 0x2731p-20 0xfffd0p-20 +clog 0x2ede88p-23 0x771c3fp-23 +clog 0x11682p-23 0x7ffed1p-23 +clog 0xa1f2c1p-24 0xc643aep-24 +clog 0x659feap-24 0xeaf6f9p-24 +clog 0x4447d7175p-35 0x6c445e00ap-35 +clog 0x2dd46725bp-35 0x7783a1284p-35 +clog 0x164c74eea876p-45 0x16f393482f77p-45 +clog 0xfe961079616p-45 0x1bc37e09e6d1p-45 +clog 0xa4722f19346cp-51 0x7f9631c5e7f07p-51 +clog 0x10673dd0f2481p-51 0x7ef1d17cefbd2p-51 +clog 0x8ecbf810c4ae6p-52 0xd479468b09a37p-52 +clog 0x5b06b680ea2ccp-52 0xef452b965da9fp-52 +clog 0x659b70ab7971bp-53 0x1f5d111e08abecp-53 +clog 0x15cfbd1990d1ffp-53 0x176a3973e09a9ap-53 +clog 0x1367a310575591p-54 0x3cfcc0a0541f60p-54 +clog 0x55cb6d0c83af5p-55 0x7fe33c0c7c4e90p-55 +clog 0x298c62cb546588a7p-63 0x7911b1dfcc4ecdaep-63 +clog 0x4d9c37e2b5cb4533p-63 0x65c98be2385a042ep-63 +clog 0x602fd5037c4792efp-64 0xed3e2086dcca80b8p-64 +clog 0x6b10b4f3520217b6p-64 0xe8893cbb449253a1p-64 +clog 0x81b7efa81fc35ad1p-65 0x1ef4b835f1c79d812p-65 +clog 0x3f96469050f650869c2p-75 0x6f16b2c9c8b05988335p-75 +clog 0x3157fc1d73233e580c8p-75 0x761b52ccd435d7c7f5fp-75 +clog 0x155f8afc4c48685bf63610p-85 0x17d0cf2652cdbeb1294e19p-85 +clog 0x13836d58a13448d750b4b9p-85 0x195ca7bc3ab4f9161edbe6p-85 +clog 0x1df515eb171a808b9e400266p-95 0x7c71eb0cd4688dfe98581c77p-95 +clog 0xe33f66c9542ca25cc43c867p-95 0x7f35a68ebd3704a43c465864p-95 +clog 0x6771f22c64ed551b857c128b4cp-105 0x1f570e7a13cc3cf2f44fd793ea1p-105 +clog 0x15d8ab6ed05ca514086ac3a1e84p-105 0x1761e480aa094c0b10b34b09ce9p-105 +clog 0x187190c1a334497bdbde5a95f48p-106 0x3b25f08062d0a095c4cfbbc338dp-106 +clog 0x6241ef0da53f539f02fad67dabp-106 0x3fb46641182f7efd9caa769dac0p-106 +clog 0x3e1d0a105ac4ebeacd9c6952d34cp-112 0xf859b3d1b06d005dcbb5516d5479p-112 +clog 0x47017a2e36807acb1e5214b209dep-112 0xf5f4a550c9d75e3bb1839d865f0dp-112 +clog 0x148f818cb7a9258fca942ade2a0cap-113 0x18854a34780b8333ec53310ad7001p-113 +clog 0xfd95243681c055c2632286921092p-113 0x1bccabcd29ca2152860ec29e34ef7p-113 +clog 0xdb85c467ee2aadd5f425fe0f4b8dp-114 0x3e83162a0f95f1dcbf97dddf410eap-114 +clog 0x1415bcaf2105940d49a636e98ae59p-115 0x7e6a150adfcd1b0921d44b31f40f4p-115 + cos 0 cos -0 cos pi/3 @@ -199,6 +412,125 @@ cosh 22 cosh 23 cosh 24 +csqrt 0 0 +csqrt 0 -0 +csqrt -0 0 +csqrt -0 -0 + +csqrt 16.0 -30.0 +csqrt -1 0 +csqrt 0 2 +csqrt 119 120 +csqrt 0.75 1.25 +csqrt -2 -3 +csqrt -2 3 +# Principal square root should be returned (i.e., non-negative real part). +csqrt 0 -1 + +csqrt 0x1.fffffep+127 0x1.fffffep+127 +csqrt 0x1.fffffep+127 1.0 +csqrt 0x1p-149 0x1p-149 +csqrt 0x1p-147 0x1p-147 + +csqrt 0 0x1p-149 +csqrt 0x1p-50 0x1p-149 +csqrt 0x1p+127 0x1p-149 +csqrt 0x1p-149 0x1p+127 +csqrt 0x1.000002p-126 0x1.000002p-126 +csqrt -0x1.000002p-126 -0x1.000002p-126 + +csqrt 0x1.fffffffffffffp+1023 0x1.fffffffffffffp+1023 +csqrt 0x1.fffffffffffffp+1023 0x1p+1023 +csqrt 0x1p-1074 0x1p-1074 +csqrt 0x1p-1073 0x1p-1073 + +csqrt 0 0x1p-1074 +csqrt 0x1p-500 0x1p-1074 +csqrt 0x1p+1023 0x1p-1074 +csqrt 0x1p-1074 0x1p+1023 +csqrt 0x1.0000000000001p-1022 0x1.0000000000001p-1022 +csqrt -0x1.0000000000001p-1022 -0x1.0000000000001p-1022 + +csqrt 0x1.fp+16383 0x1.fp+16383 +csqrt 0x1.fp+16383 0x1p+16383 +csqrt 0x1p-16440 0x1p-16441 + +csqrt 0 0x1p-16445 +csqrt 0x1p-5000 0x1p-16445 +csqrt 0x1p+16383 0x1p-16445 +csqrt 0x1p-16445 0x1p+16383 +csqrt 0x1.0000000000000002p-16382 0x1.0000000000000002p-16382 +csqrt -0x1.0000000000000002p-16382 -0x1.0000000000000002p-16382 + +csqrt 0 0x1p-16494 +csqrt 0x1p-5000 0x1p-16494 +csqrt 0x1p+16383 0x1p-16494 +csqrt 0x1p-16494 0x1p+16383 +csqrt 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-16382 +csqrt -0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-16382 + +ctan 0 0 +ctan 0 -0 +ctan -0 0 +ctan -0 -0 + +ctan 0.75 1.25 +ctan -2 -3 + +ctan 1 45 +ctan 1 47 +ctan 1 355 +ctan 1 365 +ctan 1 5680 +ctan 1 5690 + +ctan 0x3.243f6cp-1 0 + +ctan 0x1p127 1 +ctan 0x1p1023 1 +ctan 0x1p16383 1 + +ctan 50000 50000 +ctan 50000 -50000 +ctan -50000 50000 +ctan -50000 -50000 + +ctan 0x1.921fb6p+0 0x1p-149 +ctan 0x1.921fb54442d18p+0 0x1p-1074 +ctan 0x1.921fb54442d1846ap+0 0x1p-16445 + +ctanh 0 0 +ctanh 0 -0 +ctanh -0 0 +ctanh -0 -0 + +ctanh 0 pi/4 + +ctanh 0.75 1.25 +ctanh -2 -3 + +ctanh 45 1 +ctanh 47 1 +ctanh 355 1 +ctanh 365 1 +ctanh 5680 1 +ctanh 5690 1 + +ctanh 0 0x3.243f6cp-1 + +ctanh 1 0x1p127 +ctanh 1 0x1p1023 +ctanh 1 0x1p16383 + +ctanh 50000 50000 +ctanh 50000 -50000 +ctanh -50000 50000 +ctanh -50000 -50000 + +ctanh 0x1p-149 0x1.921fb6p+0 +ctanh 0x1p-1074 0x1.921fb54442d18p+0 +ctanh 0x1p-16445 0x1.921fb54442d1846ap+0 + erf 0 erf -0 erf 0.125 diff --git a/math/auto-libm-test-out b/math/auto-libm-test-out index 54cfbde32c..f89223e809 100644 --- a/math/auto-libm-test-out +++ b/math/auto-libm-test-out @@ -5892,6 +5892,30356 @@ cbrt 0x1p-16383 = cbrt tonearest ldbl-128 0x2p-16384L : 0x8p-5464L : inexact-ok = cbrt towardzero ldbl-128 0x2p-16384L : 0x8p-5464L : inexact-ok = cbrt upward ldbl-128 0x2p-16384L : 0x8p-5464L : inexact-ok +ccos 0.0 0.0 += ccos downward flt-32 0x0p+0f 0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccos tonearest flt-32 0x0p+0f 0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccos towardzero flt-32 0x0p+0f 0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccos upward flt-32 0x0p+0f 0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccos downward dbl-64 0x0p+0 0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccos tonearest dbl-64 0x0p+0 0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccos towardzero dbl-64 0x0p+0 0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccos upward dbl-64 0x0p+0 0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccos downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos downward ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos upward ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok +ccos -0 0.0 += ccos downward flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccos tonearest flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccos towardzero flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccos upward flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccos downward dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccos tonearest dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccos towardzero dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccos upward dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccos downward ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos tonearest ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos towardzero ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos upward ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos downward ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos tonearest ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos towardzero ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos upward ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos downward ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos tonearest ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos towardzero ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos upward ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos downward ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos tonearest ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos towardzero ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos upward ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok +ccos 0.0 -0 += ccos downward flt-32 0x0p+0f -0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccos tonearest flt-32 0x0p+0f -0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccos towardzero flt-32 0x0p+0f -0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccos upward flt-32 0x0p+0f -0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccos downward dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccos tonearest dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccos towardzero dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccos upward dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccos downward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos tonearest ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos towardzero ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos upward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos downward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos tonearest ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos towardzero ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos upward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos downward ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos tonearest ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos towardzero ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos upward ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos downward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos tonearest ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos towardzero ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccos upward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok +ccos -0 -0 += ccos downward flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccos tonearest flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccos towardzero flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccos upward flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccos downward dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccos tonearest dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccos towardzero dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccos upward dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccos downward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos tonearest ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos towardzero ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos upward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos downward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos tonearest ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos towardzero ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos upward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos downward ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos tonearest ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos towardzero ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos upward ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos downward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos tonearest ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos towardzero ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccos upward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok +ccos 0.75 1.25 += ccos downward flt-32 0xcp-4f 0x1.4p+0f : 0x1.61b9ap+0f -0x1.1788bcp+0f : inexact-ok += ccos tonearest flt-32 0xcp-4f 0x1.4p+0f : 0x1.61b9a2p+0f -0x1.1788bcp+0f : inexact-ok += ccos towardzero flt-32 0xcp-4f 0x1.4p+0f : 0x1.61b9ap+0f -0x1.1788bap+0f : inexact-ok += ccos upward flt-32 0xcp-4f 0x1.4p+0f : 0x1.61b9a2p+0f -0x1.1788bap+0f : inexact-ok += ccos downward dbl-64 0xcp-4 0x1.4p+0 : 0x1.61b9a123b0d16p+0 -0x1.1788bbbdb89e8p+0 : inexact-ok += ccos tonearest dbl-64 0xcp-4 0x1.4p+0 : 0x1.61b9a123b0d16p+0 -0x1.1788bbbdb89e7p+0 : inexact-ok += ccos towardzero dbl-64 0xcp-4 0x1.4p+0 : 0x1.61b9a123b0d16p+0 -0x1.1788bbbdb89e7p+0 : inexact-ok += ccos upward dbl-64 0xcp-4 0x1.4p+0 : 0x1.61b9a123b0d17p+0 -0x1.1788bbbdb89e7p+0 : inexact-ok += ccos downward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d16764p+0L -0x1.1788bbbdb89e779p+0L : inexact-ok += ccos tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d16764p+0L -0x1.1788bbbdb89e778ep+0L : inexact-ok += ccos towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d16764p+0L -0x1.1788bbbdb89e778ep+0L : inexact-ok += ccos upward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d16766p+0L -0x1.1788bbbdb89e778ep+0L : inexact-ok += ccos downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d16764p+0L -0x1.1788bbbdb89e779p+0L : inexact-ok += ccos tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d16764p+0L -0x1.1788bbbdb89e778ep+0L : inexact-ok += ccos towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d16764p+0L -0x1.1788bbbdb89e778ep+0L : inexact-ok += ccos upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d16766p+0L -0x1.1788bbbdb89e778ep+0L : inexact-ok += ccos downward ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d167648057acedbf19p+0L -0x1.1788bbbdb89e778eb7bb390cace5p+0L : inexact-ok += ccos tonearest ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d167648057acedbf1ap+0L -0x1.1788bbbdb89e778eb7bb390cace5p+0L : inexact-ok += ccos towardzero ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d167648057acedbf19p+0L -0x1.1788bbbdb89e778eb7bb390cace4p+0L : inexact-ok += ccos upward ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d167648057acedbf1ap+0L -0x1.1788bbbdb89e778eb7bb390cace4p+0L : inexact-ok += ccos downward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d167648057acedbfp+0L -0x1.1788bbbdb89e778eb7bb390cadp+0L : inexact-ok += ccos tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d167648057acedbfp+0L -0x1.1788bbbdb89e778eb7bb390cadp+0L : inexact-ok += ccos towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d167648057acedbfp+0L -0x1.1788bbbdb89e778eb7bb390cac8p+0L : inexact-ok += ccos upward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.61b9a123b0d167648057acedbf8p+0L -0x1.1788bbbdb89e778eb7bb390cac8p+0L : inexact-ok +ccos -2 -3 += ccos downward flt-32 -0x2p+0f -0x3p+0f : -0x4.308b5p+0f -0x9.1bf66p+0f : inexact-ok += ccos tonearest flt-32 -0x2p+0f -0x3p+0f : -0x4.308b5p+0f -0x9.1bf66p+0f : inexact-ok += ccos towardzero flt-32 -0x2p+0f -0x3p+0f : -0x4.308b48p+0f -0x9.1bf65p+0f : inexact-ok += ccos upward flt-32 -0x2p+0f -0x3p+0f : -0x4.308b48p+0f -0x9.1bf65p+0f : inexact-ok += ccos downward dbl-64 -0x2p+0 -0x3p+0 : -0x4.308b4f2d31434p+0 -0x9.1bf65bf77d798p+0 : inexact-ok += ccos tonearest dbl-64 -0x2p+0 -0x3p+0 : -0x4.308b4f2d3143p+0 -0x9.1bf65bf77d798p+0 : inexact-ok += ccos towardzero dbl-64 -0x2p+0 -0x3p+0 : -0x4.308b4f2d3143p+0 -0x9.1bf65bf77d79p+0 : inexact-ok += ccos upward dbl-64 -0x2p+0 -0x3p+0 : -0x4.308b4f2d3143p+0 -0x9.1bf65bf77d79p+0 : inexact-ok += ccos downward ldbl-96-intel -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143112p+0L -0x9.1bf65bf77d79608p+0L : inexact-ok += ccos tonearest ldbl-96-intel -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143112p+0L -0x9.1bf65bf77d79608p+0L : inexact-ok += ccos towardzero ldbl-96-intel -0x2p+0L -0x3p+0L : -0x4.308b4f2d31431118p+0L -0x9.1bf65bf77d79607p+0L : inexact-ok += ccos upward ldbl-96-intel -0x2p+0L -0x3p+0L : -0x4.308b4f2d31431118p+0L -0x9.1bf65bf77d79607p+0L : inexact-ok += ccos downward ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143112p+0L -0x9.1bf65bf77d79608p+0L : inexact-ok += ccos tonearest ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143112p+0L -0x9.1bf65bf77d79608p+0L : inexact-ok += ccos towardzero ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x4.308b4f2d31431118p+0L -0x9.1bf65bf77d79607p+0L : inexact-ok += ccos upward ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x4.308b4f2d31431118p+0L -0x9.1bf65bf77d79607p+0L : inexact-ok += ccos downward ldbl-128 -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143111fca0eea4bcab4p+0L -0x9.1bf65bf77d7960796b4b344b6e6p+0L : inexact-ok += ccos tonearest ldbl-128 -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143111fca0eea4bcabp+0L -0x9.1bf65bf77d7960796b4b344b6e58p+0L : inexact-ok += ccos towardzero ldbl-128 -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143111fca0eea4bcabp+0L -0x9.1bf65bf77d7960796b4b344b6e58p+0L : inexact-ok += ccos upward ldbl-128 -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143111fca0eea4bcabp+0L -0x9.1bf65bf77d7960796b4b344b6e58p+0L : inexact-ok += ccos downward ldbl-128ibm -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143111fca0eea4bccp+0L -0x9.1bf65bf77d7960796b4b344b7p+0L : inexact-ok += ccos tonearest ldbl-128ibm -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143111fca0eea4bcap+0L -0x9.1bf65bf77d7960796b4b344b7p+0L : inexact-ok += ccos towardzero ldbl-128ibm -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143111fca0eea4bcap+0L -0x9.1bf65bf77d7960796b4b344b6cp+0L : inexact-ok += ccos upward ldbl-128ibm -0x2p+0L -0x3p+0L : -0x4.308b4f2d3143111fca0eea4bcap+0L -0x9.1bf65bf77d7960796b4b344b6cp+0L : inexact-ok +ccos 0.75 89.5 += ccos downward flt-32 0xcp-4f 0x5.98p+4f : 0xc.bbaa7p+124f -0xb.dcb18p+124f : inexact-ok += ccos tonearest flt-32 0xcp-4f 0x5.98p+4f : 0xc.bbaa7p+124f -0xb.dcb17p+124f : inexact-ok += ccos towardzero flt-32 0xcp-4f 0x5.98p+4f : 0xc.bbaa7p+124f -0xb.dcb17p+124f : inexact-ok += ccos upward flt-32 0xcp-4f 0x5.98p+4f : 0xc.bbaa8p+124f -0xb.dcb17p+124f : inexact-ok += ccos downward dbl-64 0xcp-4 0x5.98p+4 : 0xc.bbaa76be579p+124 -0xb.dcb174d8851ap+124 : inexact-ok += ccos tonearest dbl-64 0xcp-4 0x5.98p+4 : 0xc.bbaa76be57908p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccos towardzero dbl-64 0xcp-4 0x5.98p+4 : 0xc.bbaa76be579p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccos upward dbl-64 0xcp-4 0x5.98p+4 : 0xc.bbaa76be57908p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccos downward ldbl-96-intel 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a6p+124L : inexact-ok += ccos tonearest ldbl-96-intel 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos towardzero ldbl-96-intel 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos upward ldbl-96-intel 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b5p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos downward ldbl-96-m68k 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a6p+124L : inexact-ok += ccos tonearest ldbl-96-m68k 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos towardzero ldbl-96-m68k 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos upward ldbl-96-m68k 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b5p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos downward ldbl-128 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d29p+124L -0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccos tonearest ldbl-128 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d298p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccos towardzero ldbl-128 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d29p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccos upward ldbl-128 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d298p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccos downward ldbl-128ibm 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309dp+124L -0xb.dcb174d885199a507e02ee9c0cp+124L : inexact-ok += ccos tonearest ldbl-128ibm 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d4p+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccos towardzero ldbl-128ibm 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309dp+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccos upward ldbl-128ibm 0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d4p+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok +ccos 0.75 -89.5 += ccos downward flt-32 0xcp-4f -0x5.98p+4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccos tonearest flt-32 0xcp-4f -0x5.98p+4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccos towardzero flt-32 0xcp-4f -0x5.98p+4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccos upward flt-32 0xcp-4f -0x5.98p+4f : 0xc.bbaa8p+124f 0xb.dcb18p+124f : inexact-ok += ccos downward dbl-64 0xcp-4 -0x5.98p+4 : 0xc.bbaa76be579p+124 0xb.dcb174d885198p+124 : inexact-ok += ccos tonearest dbl-64 0xcp-4 -0x5.98p+4 : 0xc.bbaa76be57908p+124 0xb.dcb174d885198p+124 : inexact-ok += ccos towardzero dbl-64 0xcp-4 -0x5.98p+4 : 0xc.bbaa76be579p+124 0xb.dcb174d885198p+124 : inexact-ok += ccos upward dbl-64 0xcp-4 -0x5.98p+4 : 0xc.bbaa76be57908p+124 0xb.dcb174d8851ap+124 : inexact-ok += ccos downward ldbl-96-intel 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos tonearest ldbl-96-intel 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos towardzero ldbl-96-intel 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos upward ldbl-96-intel 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b5p+124L 0xb.dcb174d885199a6p+124L : inexact-ok += ccos downward ldbl-96-m68k 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos tonearest ldbl-96-m68k 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos towardzero ldbl-96-m68k 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos upward ldbl-96-m68k 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b5p+124L 0xb.dcb174d885199a6p+124L : inexact-ok += ccos downward ldbl-128 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d29p+124L 0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccos tonearest ldbl-128 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d298p+124L 0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccos towardzero ldbl-128 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d29p+124L 0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccos upward ldbl-128 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d298p+124L 0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccos downward ldbl-128ibm 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309dp+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccos tonearest ldbl-128ibm 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d4p+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccos towardzero ldbl-128ibm 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309dp+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccos upward ldbl-128ibm 0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d4p+124L 0xb.dcb174d885199a507e02ee9c0cp+124L : inexact-ok +ccos -0.75 89.5 += ccos downward flt-32 -0xcp-4f 0x5.98p+4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccos tonearest flt-32 -0xcp-4f 0x5.98p+4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccos towardzero flt-32 -0xcp-4f 0x5.98p+4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccos upward flt-32 -0xcp-4f 0x5.98p+4f : 0xc.bbaa8p+124f 0xb.dcb18p+124f : inexact-ok += ccos downward dbl-64 -0xcp-4 0x5.98p+4 : 0xc.bbaa76be579p+124 0xb.dcb174d885198p+124 : inexact-ok += ccos tonearest dbl-64 -0xcp-4 0x5.98p+4 : 0xc.bbaa76be57908p+124 0xb.dcb174d885198p+124 : inexact-ok += ccos towardzero dbl-64 -0xcp-4 0x5.98p+4 : 0xc.bbaa76be579p+124 0xb.dcb174d885198p+124 : inexact-ok += ccos upward dbl-64 -0xcp-4 0x5.98p+4 : 0xc.bbaa76be57908p+124 0xb.dcb174d8851ap+124 : inexact-ok += ccos downward ldbl-96-intel -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos tonearest ldbl-96-intel -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos towardzero ldbl-96-intel -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos upward ldbl-96-intel -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b5p+124L 0xb.dcb174d885199a6p+124L : inexact-ok += ccos downward ldbl-96-m68k -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos tonearest ldbl-96-m68k -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos towardzero ldbl-96-m68k -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccos upward ldbl-96-m68k -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b5p+124L 0xb.dcb174d885199a6p+124L : inexact-ok += ccos downward ldbl-128 -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d29p+124L 0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccos tonearest ldbl-128 -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d298p+124L 0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccos towardzero ldbl-128 -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d29p+124L 0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccos upward ldbl-128 -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d298p+124L 0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccos downward ldbl-128ibm -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309dp+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccos tonearest ldbl-128ibm -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d4p+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccos towardzero ldbl-128ibm -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309dp+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccos upward ldbl-128ibm -0xcp-4L 0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d4p+124L 0xb.dcb174d885199a507e02ee9c0cp+124L : inexact-ok +ccos -0.75 -89.5 += ccos downward flt-32 -0xcp-4f -0x5.98p+4f : 0xc.bbaa7p+124f -0xb.dcb18p+124f : inexact-ok += ccos tonearest flt-32 -0xcp-4f -0x5.98p+4f : 0xc.bbaa7p+124f -0xb.dcb17p+124f : inexact-ok += ccos towardzero flt-32 -0xcp-4f -0x5.98p+4f : 0xc.bbaa7p+124f -0xb.dcb17p+124f : inexact-ok += ccos upward flt-32 -0xcp-4f -0x5.98p+4f : 0xc.bbaa8p+124f -0xb.dcb17p+124f : inexact-ok += ccos downward dbl-64 -0xcp-4 -0x5.98p+4 : 0xc.bbaa76be579p+124 -0xb.dcb174d8851ap+124 : inexact-ok += ccos tonearest dbl-64 -0xcp-4 -0x5.98p+4 : 0xc.bbaa76be57908p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccos towardzero dbl-64 -0xcp-4 -0x5.98p+4 : 0xc.bbaa76be579p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccos upward dbl-64 -0xcp-4 -0x5.98p+4 : 0xc.bbaa76be57908p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccos downward ldbl-96-intel -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a6p+124L : inexact-ok += ccos tonearest ldbl-96-intel -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos towardzero ldbl-96-intel -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos upward ldbl-96-intel -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b5p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos downward ldbl-96-m68k -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a6p+124L : inexact-ok += ccos tonearest ldbl-96-m68k -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos towardzero ldbl-96-m68k -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos upward ldbl-96-m68k -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b5p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccos downward ldbl-128 -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d29p+124L -0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccos tonearest ldbl-128 -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d298p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccos towardzero ldbl-128 -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d29p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccos upward ldbl-128 -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d298p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccos downward ldbl-128ibm -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309dp+124L -0xb.dcb174d885199a507e02ee9c0cp+124L : inexact-ok += ccos tonearest ldbl-128ibm -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d4p+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccos towardzero ldbl-128ibm -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309dp+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccos upward ldbl-128ibm -0xcp-4L -0x5.98p+4L : 0xc.bbaa76be57905b422fc94309d4p+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok +ccos 0.75 710.5 += ccos downward flt-32 0xcp-4f 0x2.c68p+8f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 0xcp-4f 0x2.c68p+8f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 0xcp-4f 0x2.c68p+8f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 0xcp-4f 0x2.c68p+8f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 0xcp-4 0x2.c68p+8 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb603378p+1020 : inexact-ok += ccos tonearest dbl-64 0xcp-4 0x2.c68p+8 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccos towardzero dbl-64 0xcp-4 0x2.c68p+8 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccos upward dbl-64 0xcp-4 0x2.c68p+8 : 0xb.fe39a718cb53p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccos downward ldbl-96-intel 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccos tonearest ldbl-96-intel 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccos towardzero ldbl-96-intel 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccos upward ldbl-96-intel 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b28p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccos downward ldbl-96-m68k 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccos tonearest ldbl-96-m68k 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccos towardzero ldbl-96-m68k 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccos upward ldbl-96-m68k 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b28p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccos downward ldbl-128 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccos tonearest ldbl-128 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccos towardzero ldbl-128 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccos upward ldbl-128 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0bfp+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccos downward ldbl-128ibm 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e08p+1020L -0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccos tonearest ldbl-128ibm 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L -0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccos towardzero ldbl-128ibm 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e08p+1020L -0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccos upward ldbl-128ibm 0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L -0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok +ccos 0.75 -710.5 += ccos downward flt-32 0xcp-4f -0x2.c68p+8f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 0xcp-4f -0x2.c68p+8f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 0xcp-4f -0x2.c68p+8f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 0xcp-4f -0x2.c68p+8f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 0xcp-4 -0x2.c68p+8 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccos tonearest dbl-64 0xcp-4 -0x2.c68p+8 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccos towardzero dbl-64 0xcp-4 -0x2.c68p+8 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccos upward dbl-64 0xcp-4 -0x2.c68p+8 : 0xb.fe39a718cb53p+1020 0xb.2c35ffb603378p+1020 : inexact-ok += ccos downward ldbl-96-intel 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccos tonearest ldbl-96-intel 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccos towardzero ldbl-96-intel 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccos upward ldbl-96-intel 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b28p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccos downward ldbl-96-m68k 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccos tonearest ldbl-96-m68k 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccos towardzero ldbl-96-m68k 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccos upward ldbl-96-m68k 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b28p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccos downward ldbl-128 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccos tonearest ldbl-128 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccos towardzero ldbl-128 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccos upward ldbl-128 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0bfp+1020L 0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccos downward ldbl-128ibm 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e08p+1020L 0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccos tonearest ldbl-128ibm 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L 0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccos towardzero ldbl-128ibm 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e08p+1020L 0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccos upward ldbl-128ibm 0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L 0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok +ccos -0.75 710.5 += ccos downward flt-32 -0xcp-4f 0x2.c68p+8f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 -0xcp-4f 0x2.c68p+8f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 -0xcp-4f 0x2.c68p+8f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 -0xcp-4f 0x2.c68p+8f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 -0xcp-4 0x2.c68p+8 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccos tonearest dbl-64 -0xcp-4 0x2.c68p+8 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccos towardzero dbl-64 -0xcp-4 0x2.c68p+8 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccos upward dbl-64 -0xcp-4 0x2.c68p+8 : 0xb.fe39a718cb53p+1020 0xb.2c35ffb603378p+1020 : inexact-ok += ccos downward ldbl-96-intel -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccos tonearest ldbl-96-intel -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccos towardzero ldbl-96-intel -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccos upward ldbl-96-intel -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b28p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccos downward ldbl-96-m68k -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccos tonearest ldbl-96-m68k -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccos towardzero ldbl-96-m68k -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccos upward ldbl-96-m68k -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b28p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccos downward ldbl-128 -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccos tonearest ldbl-128 -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccos towardzero ldbl-128 -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccos upward ldbl-128 -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0bfp+1020L 0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccos downward ldbl-128ibm -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e08p+1020L 0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccos tonearest ldbl-128ibm -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L 0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccos towardzero ldbl-128ibm -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e08p+1020L 0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccos upward ldbl-128ibm -0xcp-4L 0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L 0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok +ccos -0.75 -710.5 += ccos downward flt-32 -0xcp-4f -0x2.c68p+8f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 -0xcp-4f -0x2.c68p+8f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 -0xcp-4f -0x2.c68p+8f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 -0xcp-4f -0x2.c68p+8f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 -0xcp-4 -0x2.c68p+8 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb603378p+1020 : inexact-ok += ccos tonearest dbl-64 -0xcp-4 -0x2.c68p+8 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccos towardzero dbl-64 -0xcp-4 -0x2.c68p+8 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccos upward dbl-64 -0xcp-4 -0x2.c68p+8 : 0xb.fe39a718cb53p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccos downward ldbl-96-intel -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccos tonearest ldbl-96-intel -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccos towardzero ldbl-96-intel -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccos upward ldbl-96-intel -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b28p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccos downward ldbl-96-m68k -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccos tonearest ldbl-96-m68k -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccos towardzero ldbl-96-m68k -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccos upward ldbl-96-m68k -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b28p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccos downward ldbl-128 -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccos tonearest ldbl-128 -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccos towardzero ldbl-128 -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccos upward ldbl-128 -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0bfp+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccos downward ldbl-128ibm -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e08p+1020L -0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccos tonearest ldbl-128ibm -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L -0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccos towardzero ldbl-128ibm -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e08p+1020L -0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccos upward ldbl-128ibm -0xcp-4L -0x2.c68p+8L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L -0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok +ccos 0.75 11357.25 += ccos downward flt-32 0xcp-4f 0x2.c5d4p+12f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 0xcp-4f 0x2.c5d4p+12f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 0xcp-4f 0x2.c5d4p+12f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 0xcp-4f 0x2.c5d4p+12f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 0xcp-4 0x2.c5d4p+12 : 0xf.ffffffffffff8p+1020 minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest dbl-64 0xcp-4 0x2.c5d4p+12 : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero dbl-64 0xcp-4 0x2.c5d4p+12 : 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos upward dbl-64 0xcp-4 0x2.c5d4p+12 : plus_infty -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-intel 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a625ap+16380L : inexact-ok += ccos tonearest ldbl-96-intel 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos towardzero ldbl-96-intel 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos upward ldbl-96-intel 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b42p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos downward ldbl-96-m68k 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a625ap+16380L : inexact-ok += ccos tonearest ldbl-96-m68k 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos towardzero ldbl-96-m68k 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos upward ldbl-96-m68k 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b42p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos downward ldbl-128 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e08p+16380L -0xb.46f43ab104a625930c1b0cbd624p+16380L : inexact-ok += ccos tonearest ldbl-128 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e1p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos towardzero ldbl-128 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e08p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos upward ldbl-128 0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e1p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos downward ldbl-128ibm 0xcp-4L 0x2.c5d4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128ibm 0xcp-4L 0x2.c5d4p+12L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128ibm 0xcp-4L 0x2.c5d4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128ibm 0xcp-4L 0x2.c5d4p+12L : plus_infty -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok +ccos 0.75 -11357.25 += ccos downward flt-32 0xcp-4f -0x2.c5d4p+12f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 0xcp-4f -0x2.c5d4p+12f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 0xcp-4f -0x2.c5d4p+12f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 0xcp-4f -0x2.c5d4p+12f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 0xcp-4 -0x2.c5d4p+12 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos tonearest dbl-64 0xcp-4 -0x2.c5d4p+12 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero dbl-64 0xcp-4 -0x2.c5d4p+12 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos upward dbl-64 0xcp-4 -0x2.c5d4p+12 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-intel 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos tonearest ldbl-96-intel 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos towardzero ldbl-96-intel 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos upward ldbl-96-intel 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b42p+16380L 0xb.46f43ab104a625ap+16380L : inexact-ok += ccos downward ldbl-96-m68k 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos tonearest ldbl-96-m68k 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos towardzero ldbl-96-m68k 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos upward ldbl-96-m68k 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b42p+16380L 0xb.46f43ab104a625ap+16380L : inexact-ok += ccos downward ldbl-128 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e08p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos tonearest ldbl-128 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e1p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos towardzero ldbl-128 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e08p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos upward ldbl-128 0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e1p+16380L 0xb.46f43ab104a625930c1b0cbd624p+16380L : inexact-ok += ccos downward ldbl-128ibm 0xcp-4L -0x2.c5d4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128ibm 0xcp-4L -0x2.c5d4p+12L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128ibm 0xcp-4L -0x2.c5d4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128ibm 0xcp-4L -0x2.c5d4p+12L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok +ccos -0.75 11357.25 += ccos downward flt-32 -0xcp-4f 0x2.c5d4p+12f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 -0xcp-4f 0x2.c5d4p+12f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 -0xcp-4f 0x2.c5d4p+12f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 -0xcp-4f 0x2.c5d4p+12f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 -0xcp-4 0x2.c5d4p+12 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos tonearest dbl-64 -0xcp-4 0x2.c5d4p+12 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero dbl-64 -0xcp-4 0x2.c5d4p+12 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos upward dbl-64 -0xcp-4 0x2.c5d4p+12 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-intel -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos tonearest ldbl-96-intel -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos towardzero ldbl-96-intel -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos upward ldbl-96-intel -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b42p+16380L 0xb.46f43ab104a625ap+16380L : inexact-ok += ccos downward ldbl-96-m68k -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos tonearest ldbl-96-m68k -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos towardzero ldbl-96-m68k -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccos upward ldbl-96-m68k -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b42p+16380L 0xb.46f43ab104a625ap+16380L : inexact-ok += ccos downward ldbl-128 -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e08p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos tonearest ldbl-128 -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e1p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos towardzero ldbl-128 -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e08p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos upward ldbl-128 -0xcp-4L 0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e1p+16380L 0xb.46f43ab104a625930c1b0cbd624p+16380L : inexact-ok += ccos downward ldbl-128ibm -0xcp-4L 0x2.c5d4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128ibm -0xcp-4L 0x2.c5d4p+12L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128ibm -0xcp-4L 0x2.c5d4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128ibm -0xcp-4L 0x2.c5d4p+12L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok +ccos -0.75 -11357.25 += ccos downward flt-32 -0xcp-4f -0x2.c5d4p+12f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 -0xcp-4f -0x2.c5d4p+12f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 -0xcp-4f -0x2.c5d4p+12f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 -0xcp-4f -0x2.c5d4p+12f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 -0xcp-4 -0x2.c5d4p+12 : 0xf.ffffffffffff8p+1020 minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest dbl-64 -0xcp-4 -0x2.c5d4p+12 : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero dbl-64 -0xcp-4 -0x2.c5d4p+12 : 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos upward dbl-64 -0xcp-4 -0x2.c5d4p+12 : plus_infty -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-intel -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a625ap+16380L : inexact-ok += ccos tonearest ldbl-96-intel -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos towardzero ldbl-96-intel -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos upward ldbl-96-intel -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b42p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos downward ldbl-96-m68k -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a625ap+16380L : inexact-ok += ccos tonearest ldbl-96-m68k -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos towardzero ldbl-96-m68k -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos upward ldbl-96-m68k -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b42p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccos downward ldbl-128 -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e08p+16380L -0xb.46f43ab104a625930c1b0cbd624p+16380L : inexact-ok += ccos tonearest ldbl-128 -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e1p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos towardzero ldbl-128 -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e08p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos upward ldbl-128 -0xcp-4L -0x2.c5d4p+12L : 0xc.1aee93505374b41257ed141f4e1p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccos downward ldbl-128ibm -0xcp-4L -0x2.c5d4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128ibm -0xcp-4L -0x2.c5d4p+12L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128ibm -0xcp-4L -0x2.c5d4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128ibm -0xcp-4L -0x2.c5d4p+12L : plus_infty -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok +ccos 0x1p-149 180 += ccos downward flt-32 0x8p-152f 0xb.4p+4f : 0xf.fffffp+124f -0x3.373468p+108f : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 0x8p-152f 0xb.4p+4f : plus_infty -0x3.373464p+108f : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 0x8p-152f 0xb.4p+4f : 0xf.fffffp+124f -0x3.373464p+108f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 0x8p-152f 0xb.4p+4f : plus_infty -0x3.373464p+108f : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 0x8p-152 0xb.4p+4 : 0x6.6e68cac762214p+256 -0x3.37346563b110cp+108 : inexact-ok += ccos tonearest dbl-64 0x8p-152 0xb.4p+4 : 0x6.6e68cac762214p+256 -0x3.37346563b110ap+108 : inexact-ok += ccos towardzero dbl-64 0x8p-152 0xb.4p+4 : 0x6.6e68cac762214p+256 -0x3.37346563b110ap+108 : inexact-ok += ccos upward dbl-64 0x8p-152 0xb.4p+4 : 0x6.6e68cac762218p+256 -0x3.37346563b110ap+108 : inexact-ok += ccos downward ldbl-96-intel 0x8p-152L 0xb.4p+4L : 0x6.6e68cac76221537p+256L -0x3.37346563b110a9bcp+108L : inexact-ok += ccos tonearest ldbl-96-intel 0x8p-152L 0xb.4p+4L : 0x6.6e68cac76221537p+256L -0x3.37346563b110a9b8p+108L : inexact-ok += ccos towardzero ldbl-96-intel 0x8p-152L 0xb.4p+4L : 0x6.6e68cac76221537p+256L -0x3.37346563b110a9b8p+108L : inexact-ok += ccos upward ldbl-96-intel 0x8p-152L 0xb.4p+4L : 0x6.6e68cac762215378p+256L -0x3.37346563b110a9b8p+108L : inexact-ok += ccos downward ldbl-96-m68k 0x8p-152L 0xb.4p+4L : 0x6.6e68cac76221537p+256L -0x3.37346563b110a9bcp+108L : inexact-ok += ccos tonearest ldbl-96-m68k 0x8p-152L 0xb.4p+4L : 0x6.6e68cac76221537p+256L -0x3.37346563b110a9b8p+108L : inexact-ok += ccos towardzero ldbl-96-m68k 0x8p-152L 0xb.4p+4L : 0x6.6e68cac76221537p+256L -0x3.37346563b110a9b8p+108L : inexact-ok += ccos upward ldbl-96-m68k 0x8p-152L 0xb.4p+4L : 0x6.6e68cac762215378p+256L -0x3.37346563b110a9b8p+108L : inexact-ok += ccos downward ldbl-128 0x8p-152L 0xb.4p+4L : 0x6.6e68cac762215372ccfb2fd63cf4p+256L -0x3.37346563b110a9b9667d97eb1e7ap+108L : inexact-ok += ccos tonearest ldbl-128 0x8p-152L 0xb.4p+4L : 0x6.6e68cac762215372ccfb2fd63cf4p+256L -0x3.37346563b110a9b9667d97eb1e7ap+108L : inexact-ok += ccos towardzero ldbl-128 0x8p-152L 0xb.4p+4L : 0x6.6e68cac762215372ccfb2fd63cf4p+256L -0x3.37346563b110a9b9667d97eb1e78p+108L : inexact-ok += ccos upward ldbl-128 0x8p-152L 0xb.4p+4L : 0x6.6e68cac762215372ccfb2fd63cf8p+256L -0x3.37346563b110a9b9667d97eb1e78p+108L : inexact-ok += ccos downward ldbl-128ibm 0x8p-152L 0xb.4p+4L : 0x6.6e68cac762215372ccfb2fd63cp+256L -0x3.37346563b110a9b9667d97eb1fp+108L : inexact-ok += ccos tonearest ldbl-128ibm 0x8p-152L 0xb.4p+4L : 0x6.6e68cac762215372ccfb2fd63cp+256L -0x3.37346563b110a9b9667d97eb1ep+108L : inexact-ok += ccos towardzero ldbl-128ibm 0x8p-152L 0xb.4p+4L : 0x6.6e68cac762215372ccfb2fd63cp+256L -0x3.37346563b110a9b9667d97eb1ep+108L : inexact-ok += ccos upward ldbl-128ibm 0x8p-152L 0xb.4p+4L : 0x6.6e68cac762215372ccfb2fd63ep+256L -0x3.37346563b110a9b9667d97eb1ep+108L : inexact-ok +ccos 0x1p-1074 1440 += ccos downward flt-32 0x8p-152f 0x5.ap+8f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 0x8p-152f 0x5.ap+8f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 0x8p-152f 0x5.ap+8f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 0x8p-152f 0x5.ap+8f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 0x8p-152 0x5.ap+8 : 0xf.ffffffffffff8p+1020 minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest dbl-64 0x8p-152 0x5.ap+8 : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero dbl-64 0x8p-152 0x5.ap+8 : 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos upward dbl-64 0x8p-152 0x5.ap+8 : plus_infty -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-intel 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0xb.2a22d4a7d093463p+1924L : inexact-ok += ccos tonearest ldbl-96-intel 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0xb.2a22d4a7d093462p+1924L : inexact-ok += ccos towardzero ldbl-96-intel 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0xb.2a22d4a7d093462p+1924L : inexact-ok += ccos upward ldbl-96-intel 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c6p+2076L -0xb.2a22d4a7d093462p+1924L : inexact-ok += ccos downward ldbl-96-m68k 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0xb.2a22d4a7d093463p+1924L : inexact-ok += ccos tonearest ldbl-96-m68k 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0xb.2a22d4a7d093462p+1924L : inexact-ok += ccos towardzero ldbl-96-m68k 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0xb.2a22d4a7d093462p+1924L : inexact-ok += ccos upward ldbl-96-m68k 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c6p+2076L -0xb.2a22d4a7d093462p+1924L : inexact-ok += ccos downward ldbl-128 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L -0xb.2a22d4a7d0934623f733dc45db7p+1924L : inexact-ok += ccos tonearest ldbl-128 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L -0xb.2a22d4a7d0934623f733dc45db7p+1924L : inexact-ok += ccos towardzero ldbl-128 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L -0xb.2a22d4a7d0934623f733dc45db68p+1924L : inexact-ok += ccos upward ldbl-128 0x8p-152L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6fp+2076L -0xb.2a22d4a7d0934623f733dc45db68p+1924L : inexact-ok += ccos downward ldbl-128ibm 0x8p-152L 0x5.ap+8L : 0xf.ffffffffffffbffffffffffffcp+1020L minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128ibm 0x8p-152L 0x5.ap+8L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128ibm 0x8p-152L 0x5.ap+8L : 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128ibm 0x8p-152L 0x5.ap+8L : plus_infty -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos downward flt-32 0x0p+0f 0x5.ap+8f : 0xf.fffffp+124f -0x0p+0f : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 0x0p+0f 0x5.ap+8f : plus_infty -0x0p+0f : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 0x0p+0f 0x5.ap+8f : 0xf.fffffp+124f -0x0p+0f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 0x0p+0f 0x5.ap+8f : plus_infty -0x0p+0f : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 0x0p+0 0x5.ap+8 : 0xf.ffffffffffff8p+1020 -0x0p+0 : inexact-ok overflow errno-erange-ok += ccos tonearest dbl-64 0x0p+0 0x5.ap+8 : plus_infty -0x0p+0 : inexact-ok overflow errno-erange-ok += ccos towardzero dbl-64 0x0p+0 0x5.ap+8 : 0xf.ffffffffffff8p+1020 -0x0p+0 : inexact-ok overflow errno-erange-ok += ccos upward dbl-64 0x0p+0 0x5.ap+8 : plus_infty -0x0p+0 : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-intel 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x0p+0L : inexact-ok += ccos tonearest ldbl-96-intel 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x0p+0L : inexact-ok += ccos towardzero ldbl-96-intel 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x0p+0L : inexact-ok += ccos upward ldbl-96-intel 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c6p+2076L -0x0p+0L : inexact-ok += ccos downward ldbl-96-m68k 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x0p+0L : inexact-ok += ccos tonearest ldbl-96-m68k 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x0p+0L : inexact-ok += ccos towardzero ldbl-96-m68k 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x0p+0L : inexact-ok += ccos upward ldbl-96-m68k 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c6p+2076L -0x0p+0L : inexact-ok += ccos downward ldbl-128 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L -0x0p+0L : inexact-ok += ccos tonearest ldbl-128 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L -0x0p+0L : inexact-ok += ccos towardzero ldbl-128 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L -0x0p+0L : inexact-ok += ccos upward ldbl-128 0x0p+0L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6fp+2076L -0x0p+0L : inexact-ok += ccos downward ldbl-128ibm 0x0p+0L 0x5.ap+8L : 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128ibm 0x0p+0L 0x5.ap+8L : plus_infty -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128ibm 0x0p+0L 0x5.ap+8L : 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128ibm 0x0p+0L 0x5.ap+8L : plus_infty -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 0x4p-1076 0x5.ap+8 : 0xf.ffffffffffff8p+1020 -0x5.95116a53e849cp+1000 : inexact-ok overflow errno-erange-ok += ccos tonearest dbl-64 0x4p-1076 0x5.ap+8 : plus_infty -0x5.95116a53e849cp+1000 : inexact-ok overflow errno-erange-ok += ccos towardzero dbl-64 0x4p-1076 0x5.ap+8 : 0xf.ffffffffffff8p+1020 -0x5.95116a53e8498p+1000 : inexact-ok overflow errno-erange-ok += ccos upward dbl-64 0x4p-1076 0x5.ap+8 : plus_infty -0x5.95116a53e8498p+1000 : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-intel 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x5.95116a53e849a318p+1000L : inexact-ok += ccos tonearest ldbl-96-intel 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x5.95116a53e849a31p+1000L : inexact-ok += ccos towardzero ldbl-96-intel 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x5.95116a53e849a31p+1000L : inexact-ok += ccos upward ldbl-96-intel 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c6p+2076L -0x5.95116a53e849a31p+1000L : inexact-ok += ccos downward ldbl-96-m68k 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x5.95116a53e849a318p+1000L : inexact-ok += ccos tonearest ldbl-96-m68k 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x5.95116a53e849a31p+1000L : inexact-ok += ccos towardzero ldbl-96-m68k 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c4p+2076L -0x5.95116a53e849a31p+1000L : inexact-ok += ccos upward ldbl-96-m68k 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c6p+2076L -0x5.95116a53e849a31p+1000L : inexact-ok += ccos downward ldbl-128 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L -0x5.95116a53e849a311fb99ee22edb8p+1000L : inexact-ok += ccos tonearest ldbl-128 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L -0x5.95116a53e849a311fb99ee22edb8p+1000L : inexact-ok += ccos towardzero ldbl-128 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L -0x5.95116a53e849a311fb99ee22edb4p+1000L : inexact-ok += ccos upward ldbl-128 0x4p-1076L 0x5.ap+8L : 0x1.65445a94fa1268c47ee67b88bb6fp+2076L -0x5.95116a53e849a311fb99ee22edb4p+1000L : inexact-ok += ccos downward ldbl-128ibm 0x4p-1076L 0x5.ap+8L : 0xf.ffffffffffffbffffffffffffcp+1020L -0x5.95116a53e849a311fb99ee22eep+1000L : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128ibm 0x4p-1076L 0x5.ap+8L : plus_infty -0x5.95116a53e849a311fb99ee22eep+1000L : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128ibm 0x4p-1076L 0x5.ap+8L : 0xf.ffffffffffffbffffffffffffcp+1020L -0x5.95116a53e849a311fb99ee22ecp+1000L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128ibm 0x4p-1076L 0x5.ap+8L : plus_infty -0x5.95116a53e849a311fb99ee22ecp+1000L : inexact-ok overflow errno-erange-ok +ccos 0x1p-16434 22730 += ccos downward flt-32 0x8p-152f 0x5.8cap+12f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 0x8p-152f 0x5.8cap+12f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 0x8p-152f 0x5.8cap+12f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 0x8p-152f 0x5.8cap+12f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 0x8p-152 0x5.8cap+12 : 0xf.ffffffffffff8p+1020 minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest dbl-64 0x8p-152 0x5.8cap+12 : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero dbl-64 0x8p-152 0x5.8cap+12 : 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos upward dbl-64 0x8p-152 0x5.8cap+12 : plus_infty -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-intel 0x8p-152L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-96-intel 0x8p-152L 0x5.8cap+12L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-96-intel 0x8p-152L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-96-intel 0x8p-152L 0x5.8cap+12L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-m68k 0x8p-152L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-96-m68k 0x8p-152L 0x5.8cap+12L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-96-m68k 0x8p-152L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-96-m68k 0x8p-152L 0x5.8cap+12L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-128 0x8p-152L 0x5.8cap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128 0x8p-152L 0x5.8cap+12L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128 0x8p-152L 0x5.8cap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128 0x8p-152L 0x5.8cap+12L : plus_infty -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-128ibm 0x8p-152L 0x5.8cap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128ibm 0x8p-152L 0x5.8cap+12L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128ibm 0x8p-152L 0x5.8cap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128ibm 0x8p-152L 0x5.8cap+12L : plus_infty -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos downward flt-32 0x0p+0f 0x5.8cap+12f : 0xf.fffffp+124f -0x0p+0f : inexact-ok overflow errno-erange-ok += ccos tonearest flt-32 0x0p+0f 0x5.8cap+12f : plus_infty -0x0p+0f : inexact-ok overflow errno-erange-ok += ccos towardzero flt-32 0x0p+0f 0x5.8cap+12f : 0xf.fffffp+124f -0x0p+0f : inexact-ok overflow errno-erange-ok += ccos upward flt-32 0x0p+0f 0x5.8cap+12f : plus_infty -0x0p+0f : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 0x0p+0 0x5.8cap+12 : 0xf.ffffffffffff8p+1020 -0x0p+0 : inexact-ok overflow errno-erange-ok += ccos tonearest dbl-64 0x0p+0 0x5.8cap+12 : plus_infty -0x0p+0 : inexact-ok overflow errno-erange-ok += ccos towardzero dbl-64 0x0p+0 0x5.8cap+12 : 0xf.ffffffffffff8p+1020 -0x0p+0 : inexact-ok overflow errno-erange-ok += ccos upward dbl-64 0x0p+0 0x5.8cap+12 : plus_infty -0x0p+0 : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-intel 0x0p+0L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-96-intel 0x0p+0L 0x5.8cap+12L : plus_infty -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-96-intel 0x0p+0L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-96-intel 0x0p+0L 0x5.8cap+12L : plus_infty -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-m68k 0x0p+0L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-96-m68k 0x0p+0L 0x5.8cap+12L : plus_infty -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-96-m68k 0x0p+0L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-96-m68k 0x0p+0L 0x5.8cap+12L : plus_infty -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-128 0x0p+0L 0x5.8cap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128 0x0p+0L 0x5.8cap+12L : plus_infty -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128 0x0p+0L 0x5.8cap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128 0x0p+0L 0x5.8cap+12L : plus_infty -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-128ibm 0x0p+0L 0x5.8cap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128ibm 0x0p+0L 0x5.8cap+12L : plus_infty -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128ibm 0x0p+0L 0x5.8cap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128ibm 0x0p+0L 0x5.8cap+12L : plus_infty -0x0p+0L : inexact-ok overflow errno-erange-ok += ccos downward dbl-64 0x4p-1076 0x5.8cap+12 : 0xf.ffffffffffff8p+1020 minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest dbl-64 0x4p-1076 0x5.8cap+12 : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero dbl-64 0x4p-1076 0x5.8cap+12 : 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos upward dbl-64 0x4p-1076 0x5.8cap+12 : plus_infty -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-intel 0x4p-1076L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-96-intel 0x4p-1076L 0x5.8cap+12L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-96-intel 0x4p-1076L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-96-intel 0x4p-1076L 0x5.8cap+12L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-m68k 0x4p-1076L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-96-m68k 0x4p-1076L 0x5.8cap+12L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-96-m68k 0x4p-1076L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-96-m68k 0x4p-1076L 0x5.8cap+12L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-128 0x4p-1076L 0x5.8cap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128 0x4p-1076L 0x5.8cap+12L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128 0x4p-1076L 0x5.8cap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128 0x4p-1076L 0x5.8cap+12L : plus_infty -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-128ibm 0x4p-1076L 0x5.8cap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L minus_infty : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128ibm 0x4p-1076L 0x5.8cap+12L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128ibm 0x4p-1076L 0x5.8cap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128ibm 0x4p-1076L 0x5.8cap+12L : plus_infty -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-intel 0x4p-16436L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0x2.bf701efd42c88e8p+16356L : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-96-intel 0x4p-16436L 0x5.8cap+12L : plus_infty -0x2.bf701efd42c88e8p+16356L : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-96-intel 0x4p-16436L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0x2.bf701efd42c88e7cp+16356L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-96-intel 0x4p-16436L 0x5.8cap+12L : plus_infty -0x2.bf701efd42c88e7cp+16356L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-96-m68k 0x4p-16436L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0x2.bf701efd42c88e8p+16356L : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-96-m68k 0x4p-16436L 0x5.8cap+12L : plus_infty -0x2.bf701efd42c88e8p+16356L : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-96-m68k 0x4p-16436L 0x5.8cap+12L : 0xf.fffffffffffffffp+16380L -0x2.bf701efd42c88e7cp+16356L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-96-m68k 0x4p-16436L 0x5.8cap+12L : plus_infty -0x2.bf701efd42c88e7cp+16356L : inexact-ok overflow errno-erange-ok += ccos downward ldbl-128 0x4p-16436L 0x5.8cap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L -0x2.bf701efd42c88e7efc2fdf7765fcp+16356L : inexact-ok overflow errno-erange-ok += ccos tonearest ldbl-128 0x4p-16436L 0x5.8cap+12L : plus_infty -0x2.bf701efd42c88e7efc2fdf7765fcp+16356L : inexact-ok overflow errno-erange-ok += ccos towardzero ldbl-128 0x4p-16436L 0x5.8cap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L -0x2.bf701efd42c88e7efc2fdf7765fap+16356L : inexact-ok overflow errno-erange-ok += ccos upward ldbl-128 0x4p-16436L 0x5.8cap+12L : plus_infty -0x2.bf701efd42c88e7efc2fdf7765fap+16356L : inexact-ok overflow errno-erange-ok +ccos min_subnorm_p120 0x1p-120 += ccos downward flt-32 0x8p-32f 0x1p-120f : 0xf.fffffp-4f -0x8p-152f : inexact-ok underflow errno-erange-ok += ccos tonearest flt-32 0x8p-32f 0x1p-120f : 0x1p+0f -0x8p-152f : inexact-ok underflow errno-erange-ok += ccos towardzero flt-32 0x8p-32f 0x1p-120f : 0xf.fffffp-4f -0x0p+0f : inexact-ok underflow errno-erange-ok += ccos upward flt-32 0x8p-32f 0x1p-120f : 0x1p+0f -0x0p+0f : inexact-ok underflow errno-erange-ok += ccos downward dbl-64 0x8p-32 0x1p-120 : 0xf.ffffffffffff8p-4 -0x8p-152 : inexact-ok += ccos tonearest dbl-64 0x8p-32 0x1p-120 : 0x1p+0 -0x8p-152 : inexact-ok += ccos towardzero dbl-64 0x8p-32 0x1p-120 : 0xf.ffffffffffff8p-4 -0x7.ffffffffffffcp-152 : inexact-ok += ccos upward dbl-64 0x8p-32 0x1p-120 : 0x1p+0 -0x7.ffffffffffffcp-152 : inexact-ok += ccos downward ldbl-96-intel 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffbp-152L : inexact-ok += ccos tonearest ldbl-96-intel 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffa8p-152L : inexact-ok += ccos towardzero ldbl-96-intel 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffa8p-152L : inexact-ok += ccos upward ldbl-96-intel 0x8p-32L 0x1p-120L : 0xf.fffffffffffffe1p-4L -0x7.ffffffffffffffa8p-152L : inexact-ok += ccos downward ldbl-96-m68k 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffbp-152L : inexact-ok += ccos tonearest ldbl-96-m68k 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffa8p-152L : inexact-ok += ccos towardzero ldbl-96-m68k 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffa8p-152L : inexact-ok += ccos upward ldbl-96-m68k 0x8p-32L 0x1p-120L : 0xf.fffffffffffffe1p-4L -0x7.ffffffffffffffa8p-152L : inexact-ok += ccos downward ldbl-128 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffaaaaaaaaaaaaacp-152L : inexact-ok += ccos tonearest ldbl-128 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffaaaaaaaaaaaaa8p-152L : inexact-ok += ccos towardzero ldbl-128 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffaaaaaaaaaaaaa8p-152L : inexact-ok += ccos upward ldbl-128 0x8p-32L 0x1p-120L : 0xf.fffffffffffffe00000000000008p-4L -0x7.ffffffffffffffaaaaaaaaaaaaa8p-152L : inexact-ok += ccos downward ldbl-128ibm 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffaaaaaaaaaaacp-152L : inexact-ok += ccos tonearest ldbl-128ibm 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffaaaaaaaaaaaap-152L : inexact-ok += ccos towardzero ldbl-128ibm 0x8p-32L 0x1p-120L : 0xf.fffffffffffffep-4L -0x7.ffffffffffffffaaaaaaaaaaaap-152L : inexact-ok += ccos upward ldbl-128ibm 0x8p-32L 0x1p-120L : 0xf.fffffffffffffe000000000004p-4L -0x7.ffffffffffffffaaaaaaaaaaaap-152L : inexact-ok += ccos downward dbl-64 0x4p-956 0x1p-120 : 0x1p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += ccos tonearest dbl-64 0x4p-956 0x1p-120 : 0x1p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += ccos towardzero dbl-64 0x4p-956 0x1p-120 : 0x1p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += ccos upward dbl-64 0x4p-956 0x1p-120 : 0x1.0000000000001p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-intel 0x4p-956L 0x1p-120L : 0x1p+0L -0x4p-1076L : inexact-ok += ccos tonearest ldbl-96-intel 0x4p-956L 0x1p-120L : 0x1p+0L -0x4p-1076L : inexact-ok += ccos towardzero ldbl-96-intel 0x4p-956L 0x1p-120L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok += ccos upward ldbl-96-intel 0x4p-956L 0x1p-120L : 0x1.0000000000000002p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok += ccos downward ldbl-96-m68k 0x4p-956L 0x1p-120L : 0x1p+0L -0x4p-1076L : inexact-ok += ccos tonearest ldbl-96-m68k 0x4p-956L 0x1p-120L : 0x1p+0L -0x4p-1076L : inexact-ok += ccos towardzero ldbl-96-m68k 0x4p-956L 0x1p-120L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok += ccos upward ldbl-96-m68k 0x4p-956L 0x1p-120L : 0x1.0000000000000002p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok += ccos downward ldbl-128 0x4p-956L 0x1p-120L : 0x1p+0L -0x4p-1076L : inexact-ok += ccos tonearest ldbl-128 0x4p-956L 0x1p-120L : 0x1p+0L -0x4p-1076L : inexact-ok += ccos towardzero ldbl-128 0x4p-956L 0x1p-120L : 0x1p+0L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += ccos upward ldbl-128 0x4p-956L 0x1p-120L : 0x1.0000000000000000000000000001p+0L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += ccos downward ldbl-128ibm 0x4p-956L 0x1p-120L : 0x1p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-128ibm 0x4p-956L 0x1p-120L : 0x1p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-128ibm 0x4p-956L 0x1p-120L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-128ibm 0x4p-956L 0x1p-120L : 0x1.000000000000000000000000008p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-intel 0x8p-16328L 0x1p-120L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-intel 0x8p-16328L 0x1p-120L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-intel 0x8p-16328L 0x1p-120L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-intel 0x8p-16328L 0x1p-120L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-m68k 0x8p-16328L 0x1p-120L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-m68k 0x8p-16328L 0x1p-120L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-m68k 0x8p-16328L 0x1p-120L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-m68k 0x8p-16328L 0x1p-120L : 0x1.0000000000000002p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-128 0x8p-16328L 0x1p-120L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-128 0x8p-16328L 0x1p-120L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-128 0x8p-16328L 0x1p-120L : 0x1p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-128 0x8p-16328L 0x1p-120L : 0x1.0000000000000000000000000001p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-intel 0x4p-16328L 0x1p-120L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-intel 0x4p-16328L 0x1p-120L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-intel 0x4p-16328L 0x1p-120L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-intel 0x4p-16328L 0x1p-120L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-m68k 0x4p-16328L 0x1p-120L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-m68k 0x4p-16328L 0x1p-120L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-m68k 0x4p-16328L 0x1p-120L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-m68k 0x4p-16328L 0x1p-120L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-128 0x4p-16328L 0x1p-120L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-128 0x4p-16328L 0x1p-120L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-128 0x4p-16328L 0x1p-120L : 0x1p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-128 0x4p-16328L 0x1p-120L : 0x1.0000000000000000000000000001p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-intel 0x4p-16376L 0x1p-120L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-intel 0x4p-16376L 0x1p-120L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-intel 0x4p-16376L 0x1p-120L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-intel 0x4p-16376L 0x1p-120L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-m68k 0x4p-16376L 0x1p-120L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-m68k 0x4p-16376L 0x1p-120L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-m68k 0x4p-16376L 0x1p-120L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-m68k 0x4p-16376L 0x1p-120L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-128 0x4p-16376L 0x1p-120L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-128 0x4p-16376L 0x1p-120L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-128 0x4p-16376L 0x1p-120L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-128 0x4p-16376L 0x1p-120L : 0x1.0000000000000000000000000001p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok +ccos 0x1p-120 min_subnorm_p120 += ccos downward flt-32 0x1p-120f 0x8p-32f : 0x1p+0f -0x1p-148f : inexact-ok underflow errno-erange-ok += ccos tonearest flt-32 0x1p-120f 0x8p-32f : 0x1p+0f -0x8p-152f : inexact-ok underflow errno-erange-ok += ccos towardzero flt-32 0x1p-120f 0x8p-32f : 0x1p+0f -0x8p-152f : inexact-ok underflow errno-erange-ok += ccos upward flt-32 0x1p-120f 0x8p-32f : 0x1.000002p+0f -0x8p-152f : inexact-ok underflow errno-erange-ok += ccos downward dbl-64 0x1p-120 0x8p-32 : 0x1p+0 -0x8.0000000000008p-152 : inexact-ok += ccos tonearest dbl-64 0x1p-120 0x8p-32 : 0x1p+0 -0x8p-152 : inexact-ok += ccos towardzero dbl-64 0x1p-120 0x8p-32 : 0x1p+0 -0x8p-152 : inexact-ok += ccos upward dbl-64 0x1p-120 0x8p-32 : 0x1.0000000000001p+0 -0x8p-152 : inexact-ok += ccos downward ldbl-96-intel 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.000000000000006p-152L : inexact-ok += ccos tonearest ldbl-96-intel 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.000000000000005p-152L : inexact-ok += ccos towardzero ldbl-96-intel 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.000000000000005p-152L : inexact-ok += ccos upward ldbl-96-intel 0x1p-120L 0x8p-32L : 0x1.0000000000000022p+0L -0x8.000000000000005p-152L : inexact-ok += ccos downward ldbl-96-m68k 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.000000000000006p-152L : inexact-ok += ccos tonearest ldbl-96-m68k 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.000000000000005p-152L : inexact-ok += ccos towardzero ldbl-96-m68k 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.000000000000005p-152L : inexact-ok += ccos upward ldbl-96-m68k 0x1p-120L 0x8p-32L : 0x1.0000000000000022p+0L -0x8.000000000000005p-152L : inexact-ok += ccos downward ldbl-128 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.0000000000000055555555555558p-152L : inexact-ok += ccos tonearest ldbl-128 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.000000000000005555555555555p-152L : inexact-ok += ccos towardzero ldbl-128 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.000000000000005555555555555p-152L : inexact-ok += ccos upward ldbl-128 0x1p-120L 0x8p-32L : 0x1.0000000000000020000000000001p+0L -0x8.000000000000005555555555555p-152L : inexact-ok += ccos downward ldbl-128ibm 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.00000000000000555555555558p-152L : inexact-ok += ccos tonearest ldbl-128ibm 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.00000000000000555555555554p-152L : inexact-ok += ccos towardzero ldbl-128ibm 0x1p-120L 0x8p-32L : 0x1.000000000000002p+0L -0x8.00000000000000555555555554p-152L : inexact-ok += ccos upward ldbl-128ibm 0x1p-120L 0x8p-32L : 0x1.000000000000002000000000008p+0L -0x8.00000000000000555555555554p-152L : inexact-ok += ccos downward dbl-64 0x1p-120 0x4p-956 : 0xf.ffffffffffff8p-4 -0x4p-1076 : inexact-ok underflow errno-erange-ok += ccos tonearest dbl-64 0x1p-120 0x4p-956 : 0x1p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += ccos towardzero dbl-64 0x1p-120 0x4p-956 : 0xf.ffffffffffff8p-4 -0x0p+0 : inexact-ok underflow errno-erange-ok += ccos upward dbl-64 0x1p-120 0x4p-956 : 0x1p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-intel 0x1p-120L 0x4p-956L : 0xf.fffffffffffffffp-4L -0x4p-1076L : inexact-ok += ccos tonearest ldbl-96-intel 0x1p-120L 0x4p-956L : 0x1p+0L -0x4p-1076L : inexact-ok += ccos towardzero ldbl-96-intel 0x1p-120L 0x4p-956L : 0xf.fffffffffffffffp-4L -0x3.fffffffffffffffcp-1076L : inexact-ok += ccos upward ldbl-96-intel 0x1p-120L 0x4p-956L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok += ccos downward ldbl-96-m68k 0x1p-120L 0x4p-956L : 0xf.fffffffffffffffp-4L -0x4p-1076L : inexact-ok += ccos tonearest ldbl-96-m68k 0x1p-120L 0x4p-956L : 0x1p+0L -0x4p-1076L : inexact-ok += ccos towardzero ldbl-96-m68k 0x1p-120L 0x4p-956L : 0xf.fffffffffffffffp-4L -0x3.fffffffffffffffcp-1076L : inexact-ok += ccos upward ldbl-96-m68k 0x1p-120L 0x4p-956L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok += ccos downward ldbl-128 0x1p-120L 0x4p-956L : 0xf.fffffffffffffffffffffffffff8p-4L -0x4p-1076L : inexact-ok += ccos tonearest ldbl-128 0x1p-120L 0x4p-956L : 0x1p+0L -0x4p-1076L : inexact-ok += ccos towardzero ldbl-128 0x1p-120L 0x4p-956L : 0xf.fffffffffffffffffffffffffff8p-4L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += ccos upward ldbl-128 0x1p-120L 0x4p-956L : 0x1p+0L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += ccos downward ldbl-128ibm 0x1p-120L 0x4p-956L : 0xf.fffffffffffffffffffffffffcp-4L -0x4p-1076L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-128ibm 0x1p-120L 0x4p-956L : 0x1p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-128ibm 0x1p-120L 0x4p-956L : 0xf.fffffffffffffffffffffffffcp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-128ibm 0x1p-120L 0x4p-956L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-intel 0x1p-120L 0x8p-16328L : 0xf.fffffffffffffffp-4L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-intel 0x1p-120L 0x8p-16328L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-intel 0x1p-120L 0x8p-16328L : 0xf.fffffffffffffffp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-intel 0x1p-120L 0x8p-16328L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-m68k 0x1p-120L 0x8p-16328L : 0xf.fffffffffffffffp-4L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-m68k 0x1p-120L 0x8p-16328L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-m68k 0x1p-120L 0x8p-16328L : 0xf.fffffffffffffffp-4L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-m68k 0x1p-120L 0x8p-16328L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-128 0x1p-120L 0x8p-16328L : 0xf.fffffffffffffffffffffffffff8p-4L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-128 0x1p-120L 0x8p-16328L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-128 0x1p-120L 0x8p-16328L : 0xf.fffffffffffffffffffffffffff8p-4L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-128 0x1p-120L 0x8p-16328L : 0x1p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-intel 0x1p-120L 0x4p-16328L : 0xf.fffffffffffffffp-4L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-intel 0x1p-120L 0x4p-16328L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-intel 0x1p-120L 0x4p-16328L : 0xf.fffffffffffffffp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-intel 0x1p-120L 0x4p-16328L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-m68k 0x1p-120L 0x4p-16328L : 0xf.fffffffffffffffp-4L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-m68k 0x1p-120L 0x4p-16328L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-m68k 0x1p-120L 0x4p-16328L : 0xf.fffffffffffffffp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-m68k 0x1p-120L 0x4p-16328L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-128 0x1p-120L 0x4p-16328L : 0xf.fffffffffffffffffffffffffff8p-4L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-128 0x1p-120L 0x4p-16328L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-128 0x1p-120L 0x4p-16328L : 0xf.fffffffffffffffffffffffffff8p-4L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-128 0x1p-120L 0x4p-16328L : 0x1p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-intel 0x1p-120L 0x4p-16376L : 0xf.fffffffffffffffp-4L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-intel 0x1p-120L 0x4p-16376L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-intel 0x1p-120L 0x4p-16376L : 0xf.fffffffffffffffp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-intel 0x1p-120L 0x4p-16376L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-96-m68k 0x1p-120L 0x4p-16376L : 0xf.fffffffffffffffp-4L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-96-m68k 0x1p-120L 0x4p-16376L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-96-m68k 0x1p-120L 0x4p-16376L : 0xf.fffffffffffffffp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-96-m68k 0x1p-120L 0x4p-16376L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos downward ldbl-128 0x1p-120L 0x4p-16376L : 0xf.fffffffffffffffffffffffffff8p-4L -0x4p-16496L : inexact-ok underflow errno-erange-ok += ccos tonearest ldbl-128 0x1p-120L 0x4p-16376L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += ccos towardzero ldbl-128 0x1p-120L 0x4p-16376L : 0xf.fffffffffffffffffffffffffff8p-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ccos upward ldbl-128 0x1p-120L 0x4p-16376L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok +ccosh 0.0 0.0 += ccosh downward flt-32 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccosh tonearest flt-32 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccosh towardzero flt-32 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccosh upward flt-32 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccosh downward dbl-64 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccosh tonearest dbl-64 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccosh towardzero dbl-64 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccosh upward dbl-64 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccosh downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh downward ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh upward ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok +ccosh -0 0.0 += ccosh downward flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccosh tonearest flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccosh towardzero flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccosh upward flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccosh downward dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccosh tonearest dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccosh towardzero dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccosh upward dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccosh downward ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh tonearest ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh towardzero ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh upward ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh downward ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh tonearest ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh towardzero ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh upward ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh downward ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh tonearest ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh towardzero ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh upward ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh downward ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh tonearest ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh towardzero ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh upward ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok +ccosh 0.0 -0 += ccosh downward flt-32 0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccosh tonearest flt-32 0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccosh towardzero flt-32 0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccosh upward flt-32 0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += ccosh downward dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccosh tonearest dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccosh towardzero dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccosh upward dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += ccosh downward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh tonearest ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh towardzero ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh upward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh downward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh upward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh downward ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh tonearest ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh towardzero ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh upward ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh downward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh tonearest ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh towardzero ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += ccosh upward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok +ccosh -0 -0 += ccosh downward flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccosh tonearest flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccosh towardzero flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccosh upward flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += ccosh downward dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccosh tonearest dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccosh towardzero dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccosh upward dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += ccosh downward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh tonearest ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh towardzero ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh upward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh downward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh tonearest ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh towardzero ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh upward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh downward ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh tonearest ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh towardzero ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh upward ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh downward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh tonearest ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh towardzero ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += ccosh upward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok +ccosh 0.75 1.25 += ccosh downward flt-32 0xcp-4f 0x1.4p+0f : 0x6.88296p-4f 0xc.7c60fp-4f : inexact-ok += ccosh tonearest flt-32 0xcp-4f 0x1.4p+0f : 0x6.88296p-4f 0xc.7c61p-4f : inexact-ok += ccosh towardzero flt-32 0xcp-4f 0x1.4p+0f : 0x6.88296p-4f 0xc.7c60fp-4f : inexact-ok += ccosh upward flt-32 0xcp-4f 0x1.4p+0f : 0x6.882968p-4f 0xc.7c61p-4f : inexact-ok += ccosh downward dbl-64 0xcp-4 0x1.4p+0 : 0x6.8829624f33d1cp-4 0xc.7c60fc7e541e8p-4 : inexact-ok += ccosh tonearest dbl-64 0xcp-4 0x1.4p+0 : 0x6.8829624f33d1cp-4 0xc.7c60fc7e541fp-4 : inexact-ok += ccosh towardzero dbl-64 0xcp-4 0x1.4p+0 : 0x6.8829624f33d1cp-4 0xc.7c60fc7e541e8p-4 : inexact-ok += ccosh upward dbl-64 0xcp-4 0x1.4p+0 : 0x6.8829624f33d2p-4 0xc.7c60fc7e541fp-4 : inexact-ok += ccosh downward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccbp-4L 0xc.7c60fc7e541ee76p-4L : inexact-ok += ccosh tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccbp-4L 0xc.7c60fc7e541ee76p-4L : inexact-ok += ccosh towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccbp-4L 0xc.7c60fc7e541ee76p-4L : inexact-ok += ccosh upward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccb8p-4L 0xc.7c60fc7e541ee77p-4L : inexact-ok += ccosh downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccbp-4L 0xc.7c60fc7e541ee76p-4L : inexact-ok += ccosh tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccbp-4L 0xc.7c60fc7e541ee76p-4L : inexact-ok += ccosh towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccbp-4L 0xc.7c60fc7e541ee76p-4L : inexact-ok += ccosh upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccb8p-4L 0xc.7c60fc7e541ee77p-4L : inexact-ok += ccosh downward ldbl-128 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccb2519db9bb3464p-4L 0xc.7c60fc7e541ee761e9b843ef4d3p-4L : inexact-ok += ccosh tonearest ldbl-128 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccb2519db9bb3468p-4L 0xc.7c60fc7e541ee761e9b843ef4d38p-4L : inexact-ok += ccosh towardzero ldbl-128 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccb2519db9bb3464p-4L 0xc.7c60fc7e541ee761e9b843ef4d3p-4L : inexact-ok += ccosh upward ldbl-128 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccb2519db9bb3468p-4L 0xc.7c60fc7e541ee761e9b843ef4d38p-4L : inexact-ok += ccosh downward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccb2519db9bb34p-4L 0xc.7c60fc7e541ee761e9b843ef4cp-4L : inexact-ok += ccosh tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccb2519db9bb34p-4L 0xc.7c60fc7e541ee761e9b843ef4cp-4L : inexact-ok += ccosh towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccb2519db9bb34p-4L 0xc.7c60fc7e541ee761e9b843ef4cp-4L : inexact-ok += ccosh upward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x6.8829624f33d1ccb2519db9bb36p-4L 0xc.7c60fc7e541ee761e9b843ef5p-4L : inexact-ok +ccosh -2 -3 += ccosh downward flt-32 -0x2p+0f -0x3p+0f : -0x3.b97bd4p+0f 0x8.306cdp-4f : inexact-ok += ccosh tonearest flt-32 -0x2p+0f -0x3p+0f : -0x3.b97bdp+0f 0x8.306cep-4f : inexact-ok += ccosh towardzero flt-32 -0x2p+0f -0x3p+0f : -0x3.b97bdp+0f 0x8.306cdp-4f : inexact-ok += ccosh upward flt-32 -0x2p+0f -0x3p+0f : -0x3.b97bdp+0f 0x8.306cep-4f : inexact-ok += ccosh downward dbl-64 -0x2p+0 -0x3p+0 : -0x3.b97bd070133bp+0 0x8.306cdcf735328p-4 : inexact-ok += ccosh tonearest dbl-64 -0x2p+0 -0x3p+0 : -0x3.b97bd070133aep+0 0x8.306cdcf73533p-4 : inexact-ok += ccosh towardzero dbl-64 -0x2p+0 -0x3p+0 : -0x3.b97bd070133aep+0 0x8.306cdcf735328p-4 : inexact-ok += ccosh upward dbl-64 -0x2p+0 -0x3p+0 : -0x3.b97bd070133aep+0 0x8.306cdcf73533p-4 : inexact-ok += ccosh downward ldbl-96-intel -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae958p+0L 0x8.306cdcf73532ef1p-4L : inexact-ok += ccosh tonearest ldbl-96-intel -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae958p+0L 0x8.306cdcf73532ef1p-4L : inexact-ok += ccosh towardzero ldbl-96-intel -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae954p+0L 0x8.306cdcf73532ef1p-4L : inexact-ok += ccosh upward ldbl-96-intel -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae954p+0L 0x8.306cdcf73532ef2p-4L : inexact-ok += ccosh downward ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae958p+0L 0x8.306cdcf73532ef1p-4L : inexact-ok += ccosh tonearest ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae958p+0L 0x8.306cdcf73532ef1p-4L : inexact-ok += ccosh towardzero ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae954p+0L 0x8.306cdcf73532ef1p-4L : inexact-ok += ccosh upward ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae954p+0L 0x8.306cdcf73532ef2p-4L : inexact-ok += ccosh downward ldbl-128 -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae9576b1773510fap+0L 0x8.306cdcf73532ef16dab0d82f152p-4L : inexact-ok += ccosh tonearest ldbl-128 -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae9576b1773510f9ep+0L 0x8.306cdcf73532ef16dab0d82f152p-4L : inexact-ok += ccosh towardzero ldbl-128 -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae9576b1773510f9ep+0L 0x8.306cdcf73532ef16dab0d82f152p-4L : inexact-ok += ccosh upward ldbl-128 -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae9576b1773510f9ep+0L 0x8.306cdcf73532ef16dab0d82f1528p-4L : inexact-ok += ccosh downward ldbl-128ibm -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae9576b1773511p+0L 0x8.306cdcf73532ef16dab0d82f14p-4L : inexact-ok += ccosh tonearest ldbl-128ibm -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae9576b1773511p+0L 0x8.306cdcf73532ef16dab0d82f14p-4L : inexact-ok += ccosh towardzero ldbl-128ibm -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae9576b1773510fp+0L 0x8.306cdcf73532ef16dab0d82f14p-4L : inexact-ok += ccosh upward ldbl-128ibm -0x2p+0L -0x3p+0L : -0x3.b97bd070133ae9576b1773510fp+0L 0x8.306cdcf73532ef16dab0d82f18p-4L : inexact-ok +ccosh 89.5 0.75 += ccosh downward flt-32 0x5.98p+4f 0xcp-4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccosh tonearest flt-32 0x5.98p+4f 0xcp-4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccosh towardzero flt-32 0x5.98p+4f 0xcp-4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccosh upward flt-32 0x5.98p+4f 0xcp-4f : 0xc.bbaa8p+124f 0xb.dcb18p+124f : inexact-ok += ccosh downward dbl-64 0x5.98p+4 0xcp-4 : 0xc.bbaa76be579p+124 0xb.dcb174d885198p+124 : inexact-ok += ccosh tonearest dbl-64 0x5.98p+4 0xcp-4 : 0xc.bbaa76be57908p+124 0xb.dcb174d885198p+124 : inexact-ok += ccosh towardzero dbl-64 0x5.98p+4 0xcp-4 : 0xc.bbaa76be579p+124 0xb.dcb174d885198p+124 : inexact-ok += ccosh upward dbl-64 0x5.98p+4 0xcp-4 : 0xc.bbaa76be57908p+124 0xb.dcb174d8851ap+124 : inexact-ok += ccosh downward ldbl-96-intel 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh tonearest ldbl-96-intel 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh towardzero ldbl-96-intel 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh upward ldbl-96-intel 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b5p+124L 0xb.dcb174d885199a6p+124L : inexact-ok += ccosh downward ldbl-96-m68k 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh upward ldbl-96-m68k 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b5p+124L 0xb.dcb174d885199a6p+124L : inexact-ok += ccosh downward ldbl-128 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d29p+124L 0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccosh tonearest ldbl-128 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d298p+124L 0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccosh towardzero ldbl-128 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d29p+124L 0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccosh upward ldbl-128 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d298p+124L 0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccosh downward ldbl-128ibm 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309dp+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccosh tonearest ldbl-128ibm 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d4p+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccosh towardzero ldbl-128ibm 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309dp+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccosh upward ldbl-128ibm 0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d4p+124L 0xb.dcb174d885199a507e02ee9c0cp+124L : inexact-ok +ccosh -89.5 0.75 += ccosh downward flt-32 -0x5.98p+4f 0xcp-4f : 0xc.bbaa7p+124f -0xb.dcb18p+124f : inexact-ok += ccosh tonearest flt-32 -0x5.98p+4f 0xcp-4f : 0xc.bbaa7p+124f -0xb.dcb17p+124f : inexact-ok += ccosh towardzero flt-32 -0x5.98p+4f 0xcp-4f : 0xc.bbaa7p+124f -0xb.dcb17p+124f : inexact-ok += ccosh upward flt-32 -0x5.98p+4f 0xcp-4f : 0xc.bbaa8p+124f -0xb.dcb17p+124f : inexact-ok += ccosh downward dbl-64 -0x5.98p+4 0xcp-4 : 0xc.bbaa76be579p+124 -0xb.dcb174d8851ap+124 : inexact-ok += ccosh tonearest dbl-64 -0x5.98p+4 0xcp-4 : 0xc.bbaa76be57908p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccosh towardzero dbl-64 -0x5.98p+4 0xcp-4 : 0xc.bbaa76be579p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccosh upward dbl-64 -0x5.98p+4 0xcp-4 : 0xc.bbaa76be57908p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccosh downward ldbl-96-intel -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a6p+124L : inexact-ok += ccosh tonearest ldbl-96-intel -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh towardzero ldbl-96-intel -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh upward ldbl-96-intel -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b5p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh downward ldbl-96-m68k -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a6p+124L : inexact-ok += ccosh tonearest ldbl-96-m68k -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh towardzero ldbl-96-m68k -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh upward ldbl-96-m68k -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b5p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh downward ldbl-128 -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d29p+124L -0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccosh tonearest ldbl-128 -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d298p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccosh towardzero ldbl-128 -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d29p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccosh upward ldbl-128 -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d298p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccosh downward ldbl-128ibm -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309dp+124L -0xb.dcb174d885199a507e02ee9c0cp+124L : inexact-ok += ccosh tonearest ldbl-128ibm -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d4p+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccosh towardzero ldbl-128ibm -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309dp+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccosh upward ldbl-128ibm -0x5.98p+4L 0xcp-4L : 0xc.bbaa76be57905b422fc94309d4p+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok +ccosh 89.5 -0.75 += ccosh downward flt-32 0x5.98p+4f -0xcp-4f : 0xc.bbaa7p+124f -0xb.dcb18p+124f : inexact-ok += ccosh tonearest flt-32 0x5.98p+4f -0xcp-4f : 0xc.bbaa7p+124f -0xb.dcb17p+124f : inexact-ok += ccosh towardzero flt-32 0x5.98p+4f -0xcp-4f : 0xc.bbaa7p+124f -0xb.dcb17p+124f : inexact-ok += ccosh upward flt-32 0x5.98p+4f -0xcp-4f : 0xc.bbaa8p+124f -0xb.dcb17p+124f : inexact-ok += ccosh downward dbl-64 0x5.98p+4 -0xcp-4 : 0xc.bbaa76be579p+124 -0xb.dcb174d8851ap+124 : inexact-ok += ccosh tonearest dbl-64 0x5.98p+4 -0xcp-4 : 0xc.bbaa76be57908p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccosh towardzero dbl-64 0x5.98p+4 -0xcp-4 : 0xc.bbaa76be579p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccosh upward dbl-64 0x5.98p+4 -0xcp-4 : 0xc.bbaa76be57908p+124 -0xb.dcb174d885198p+124 : inexact-ok += ccosh downward ldbl-96-intel 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a6p+124L : inexact-ok += ccosh tonearest ldbl-96-intel 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh towardzero ldbl-96-intel 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh upward ldbl-96-intel 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b5p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh downward ldbl-96-m68k 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a6p+124L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh upward ldbl-96-m68k 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b5p+124L -0xb.dcb174d885199a5p+124L : inexact-ok += ccosh downward ldbl-128 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d29p+124L -0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccosh tonearest ldbl-128 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d298p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccosh towardzero ldbl-128 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d29p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccosh upward ldbl-128 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d298p+124L -0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccosh downward ldbl-128ibm 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309dp+124L -0xb.dcb174d885199a507e02ee9c0cp+124L : inexact-ok += ccosh tonearest ldbl-128ibm 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d4p+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccosh towardzero ldbl-128ibm 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309dp+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccosh upward ldbl-128ibm 0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d4p+124L -0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok +ccosh -89.5 -0.75 += ccosh downward flt-32 -0x5.98p+4f -0xcp-4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccosh tonearest flt-32 -0x5.98p+4f -0xcp-4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccosh towardzero flt-32 -0x5.98p+4f -0xcp-4f : 0xc.bbaa7p+124f 0xb.dcb17p+124f : inexact-ok += ccosh upward flt-32 -0x5.98p+4f -0xcp-4f : 0xc.bbaa8p+124f 0xb.dcb18p+124f : inexact-ok += ccosh downward dbl-64 -0x5.98p+4 -0xcp-4 : 0xc.bbaa76be579p+124 0xb.dcb174d885198p+124 : inexact-ok += ccosh tonearest dbl-64 -0x5.98p+4 -0xcp-4 : 0xc.bbaa76be57908p+124 0xb.dcb174d885198p+124 : inexact-ok += ccosh towardzero dbl-64 -0x5.98p+4 -0xcp-4 : 0xc.bbaa76be579p+124 0xb.dcb174d885198p+124 : inexact-ok += ccosh upward dbl-64 -0x5.98p+4 -0xcp-4 : 0xc.bbaa76be57908p+124 0xb.dcb174d8851ap+124 : inexact-ok += ccosh downward ldbl-96-intel -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh tonearest ldbl-96-intel -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh towardzero ldbl-96-intel -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh upward ldbl-96-intel -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b5p+124L 0xb.dcb174d885199a6p+124L : inexact-ok += ccosh downward ldbl-96-m68k -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh tonearest ldbl-96-m68k -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh towardzero ldbl-96-m68k -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b4p+124L 0xb.dcb174d885199a5p+124L : inexact-ok += ccosh upward ldbl-96-m68k -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b5p+124L 0xb.dcb174d885199a6p+124L : inexact-ok += ccosh downward ldbl-128 -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d29p+124L 0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccosh tonearest ldbl-128 -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d298p+124L 0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccosh towardzero ldbl-128 -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d29p+124L 0xb.dcb174d885199a507e02ee9c08cp+124L : inexact-ok += ccosh upward ldbl-128 -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d298p+124L 0xb.dcb174d885199a507e02ee9c08c8p+124L : inexact-ok += ccosh downward ldbl-128ibm -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309dp+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccosh tonearest ldbl-128ibm -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d4p+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccosh towardzero ldbl-128ibm -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309dp+124L 0xb.dcb174d885199a507e02ee9c08p+124L : inexact-ok += ccosh upward ldbl-128ibm -0x5.98p+4L -0xcp-4L : 0xc.bbaa76be57905b422fc94309d4p+124L 0xb.dcb174d885199a507e02ee9c0cp+124L : inexact-ok +ccosh 710.5 0.75 += ccosh downward flt-32 0x2.c68p+8f 0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 0x2.c68p+8f 0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 0x2.c68p+8f 0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 0x2.c68p+8f 0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 0x2.c68p+8 0xcp-4 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccosh tonearest dbl-64 0x2.c68p+8 0xcp-4 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccosh towardzero dbl-64 0x2.c68p+8 0xcp-4 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccosh upward dbl-64 0x2.c68p+8 0xcp-4 : 0xb.fe39a718cb53p+1020 0xb.2c35ffb603378p+1020 : inexact-ok += ccosh downward ldbl-96-intel 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh tonearest ldbl-96-intel 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh towardzero ldbl-96-intel 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh upward ldbl-96-intel 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b28p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh downward ldbl-96-m68k 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh upward ldbl-96-m68k 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b28p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh downward ldbl-128 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccosh tonearest ldbl-128 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccosh towardzero ldbl-128 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccosh upward ldbl-128 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0bfp+1020L 0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccosh downward ldbl-128ibm 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e08p+1020L 0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccosh tonearest ldbl-128ibm 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L 0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccosh towardzero ldbl-128ibm 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e08p+1020L 0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccosh upward ldbl-128ibm 0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L 0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok +ccosh -710.5 0.75 += ccosh downward flt-32 -0x2.c68p+8f 0xcp-4f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 -0x2.c68p+8f 0xcp-4f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 -0x2.c68p+8f 0xcp-4f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 -0x2.c68p+8f 0xcp-4f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 -0x2.c68p+8 0xcp-4 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb603378p+1020 : inexact-ok += ccosh tonearest dbl-64 -0x2.c68p+8 0xcp-4 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccosh towardzero dbl-64 -0x2.c68p+8 0xcp-4 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccosh upward dbl-64 -0x2.c68p+8 0xcp-4 : 0xb.fe39a718cb53p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccosh downward ldbl-96-intel -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh tonearest ldbl-96-intel -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh towardzero ldbl-96-intel -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh upward ldbl-96-intel -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b28p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh downward ldbl-96-m68k -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh tonearest ldbl-96-m68k -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh towardzero ldbl-96-m68k -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh upward ldbl-96-m68k -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b28p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh downward ldbl-128 -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccosh tonearest ldbl-128 -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccosh towardzero ldbl-128 -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccosh upward ldbl-128 -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0bfp+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccosh downward ldbl-128ibm -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e08p+1020L -0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccosh tonearest ldbl-128ibm -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L -0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccosh towardzero ldbl-128ibm -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e08p+1020L -0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccosh upward ldbl-128ibm -0x2.c68p+8L 0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L -0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok +ccosh 710.5 -0.75 += ccosh downward flt-32 0x2.c68p+8f -0xcp-4f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 0x2.c68p+8f -0xcp-4f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 0x2.c68p+8f -0xcp-4f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 0x2.c68p+8f -0xcp-4f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 0x2.c68p+8 -0xcp-4 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb603378p+1020 : inexact-ok += ccosh tonearest dbl-64 0x2.c68p+8 -0xcp-4 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccosh towardzero dbl-64 0x2.c68p+8 -0xcp-4 : 0xb.fe39a718cb528p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccosh upward dbl-64 0x2.c68p+8 -0xcp-4 : 0xb.fe39a718cb53p+1020 -0xb.2c35ffb60337p+1020 : inexact-ok += ccosh downward ldbl-96-intel 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh tonearest ldbl-96-intel 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh towardzero ldbl-96-intel 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh upward ldbl-96-intel 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b28p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh downward ldbl-96-m68k 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh upward ldbl-96-m68k 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b28p+1020L -0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh downward ldbl-128 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccosh tonearest ldbl-128 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccosh towardzero ldbl-128 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccosh upward ldbl-128 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0bfp+1020L -0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccosh downward ldbl-128ibm 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e08p+1020L -0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccosh tonearest ldbl-128ibm 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L -0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccosh towardzero ldbl-128ibm 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e08p+1020L -0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccosh upward ldbl-128ibm 0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L -0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok +ccosh -710.5 -0.75 += ccosh downward flt-32 -0x2.c68p+8f -0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 -0x2.c68p+8f -0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 -0x2.c68p+8f -0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 -0x2.c68p+8f -0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 -0x2.c68p+8 -0xcp-4 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccosh tonearest dbl-64 -0x2.c68p+8 -0xcp-4 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccosh towardzero dbl-64 -0x2.c68p+8 -0xcp-4 : 0xb.fe39a718cb528p+1020 0xb.2c35ffb60337p+1020 : inexact-ok += ccosh upward dbl-64 -0x2.c68p+8 -0xcp-4 : 0xb.fe39a718cb53p+1020 0xb.2c35ffb603378p+1020 : inexact-ok += ccosh downward ldbl-96-intel -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh tonearest ldbl-96-intel -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh towardzero ldbl-96-intel -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh upward ldbl-96-intel -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b28p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh downward ldbl-96-m68k -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh tonearest ldbl-96-m68k -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh towardzero ldbl-96-m68k -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b27p+1020L 0xb.2c35ffb6033707p+1020L : inexact-ok += ccosh upward ldbl-96-m68k -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b28p+1020L 0xb.2c35ffb60337071p+1020L : inexact-ok += ccosh downward ldbl-128 -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccosh tonearest ldbl-128 -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccosh towardzero ldbl-128 -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0be8p+1020L 0xb.2c35ffb60337070b74839cd40a28p+1020L : inexact-ok += ccosh upward ldbl-128 -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0bfp+1020L 0xb.2c35ffb60337070b74839cd40a3p+1020L : inexact-ok += ccosh downward ldbl-128ibm -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e08p+1020L 0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccosh tonearest ldbl-128ibm -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L 0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok += ccosh towardzero ldbl-128ibm -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e08p+1020L 0xb.2c35ffb60337070b74839cd408p+1020L : inexact-ok += ccosh upward ldbl-128ibm -0x2.c68p+8L -0xcp-4L : 0xb.fe39a718cb52b2731922dd2e0cp+1020L 0xb.2c35ffb60337070b74839cd40cp+1020L : inexact-ok +ccosh 11357.25 0.75 += ccosh downward flt-32 0x2.c5d4p+12f 0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 0x2.c5d4p+12f 0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 0x2.c5d4p+12f 0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 0x2.c5d4p+12f 0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 0x2.c5d4p+12 0xcp-4 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh tonearest dbl-64 0x2.c5d4p+12 0xcp-4 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero dbl-64 0x2.c5d4p+12 0xcp-4 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh upward dbl-64 0x2.c5d4p+12 0xcp-4 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-intel 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh tonearest ldbl-96-intel 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh towardzero ldbl-96-intel 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh upward ldbl-96-intel 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b42p+16380L 0xb.46f43ab104a625ap+16380L : inexact-ok += ccosh downward ldbl-96-m68k 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh upward ldbl-96-m68k 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b42p+16380L 0xb.46f43ab104a625ap+16380L : inexact-ok += ccosh downward ldbl-128 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41257ed141f4e08p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh tonearest ldbl-128 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41257ed141f4e1p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh towardzero ldbl-128 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41257ed141f4e08p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh upward ldbl-128 0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41257ed141f4e1p+16380L 0xb.46f43ab104a625930c1b0cbd624p+16380L : inexact-ok += ccosh downward ldbl-128ibm 0x2.c5d4p+12L 0xcp-4L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128ibm 0x2.c5d4p+12L 0xcp-4L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128ibm 0x2.c5d4p+12L 0xcp-4L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128ibm 0x2.c5d4p+12L 0xcp-4L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok +ccosh -11357.25 0.75 += ccosh downward flt-32 -0x2.c5d4p+12f 0xcp-4f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 -0x2.c5d4p+12f 0xcp-4f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 -0x2.c5d4p+12f 0xcp-4f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 -0x2.c5d4p+12f 0xcp-4f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 -0x2.c5d4p+12 0xcp-4 : 0xf.ffffffffffff8p+1020 minus_infty : inexact-ok overflow errno-erange-ok += ccosh tonearest dbl-64 -0x2.c5d4p+12 0xcp-4 : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero dbl-64 -0x2.c5d4p+12 0xcp-4 : 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh upward dbl-64 -0x2.c5d4p+12 0xcp-4 : plus_infty -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-intel -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a625ap+16380L : inexact-ok += ccosh tonearest ldbl-96-intel -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh towardzero ldbl-96-intel -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh upward ldbl-96-intel -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b42p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh downward ldbl-96-m68k -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a625ap+16380L : inexact-ok += ccosh tonearest ldbl-96-m68k -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh towardzero ldbl-96-m68k -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh upward ldbl-96-m68k -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b42p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh downward ldbl-128 -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41257ed141f4e08p+16380L -0xb.46f43ab104a625930c1b0cbd624p+16380L : inexact-ok += ccosh tonearest ldbl-128 -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41257ed141f4e1p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh towardzero ldbl-128 -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41257ed141f4e08p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh upward ldbl-128 -0x2.c5d4p+12L 0xcp-4L : 0xc.1aee93505374b41257ed141f4e1p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh downward ldbl-128ibm -0x2.c5d4p+12L 0xcp-4L : 0xf.ffffffffffffbffffffffffffcp+1020L minus_infty : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128ibm -0x2.c5d4p+12L 0xcp-4L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128ibm -0x2.c5d4p+12L 0xcp-4L : 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128ibm -0x2.c5d4p+12L 0xcp-4L : plus_infty -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok +ccosh 11357.25 -0.75 += ccosh downward flt-32 0x2.c5d4p+12f -0xcp-4f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 0x2.c5d4p+12f -0xcp-4f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 0x2.c5d4p+12f -0xcp-4f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 0x2.c5d4p+12f -0xcp-4f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 0x2.c5d4p+12 -0xcp-4 : 0xf.ffffffffffff8p+1020 minus_infty : inexact-ok overflow errno-erange-ok += ccosh tonearest dbl-64 0x2.c5d4p+12 -0xcp-4 : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero dbl-64 0x2.c5d4p+12 -0xcp-4 : 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh upward dbl-64 0x2.c5d4p+12 -0xcp-4 : plus_infty -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-intel 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a625ap+16380L : inexact-ok += ccosh tonearest ldbl-96-intel 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh towardzero ldbl-96-intel 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh upward ldbl-96-intel 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b42p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh downward ldbl-96-m68k 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a625ap+16380L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh upward ldbl-96-m68k 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b42p+16380L -0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh downward ldbl-128 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41257ed141f4e08p+16380L -0xb.46f43ab104a625930c1b0cbd624p+16380L : inexact-ok += ccosh tonearest ldbl-128 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41257ed141f4e1p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh towardzero ldbl-128 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41257ed141f4e08p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh upward ldbl-128 0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41257ed141f4e1p+16380L -0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh downward ldbl-128ibm 0x2.c5d4p+12L -0xcp-4L : 0xf.ffffffffffffbffffffffffffcp+1020L minus_infty : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128ibm 0x2.c5d4p+12L -0xcp-4L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128ibm 0x2.c5d4p+12L -0xcp-4L : 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128ibm 0x2.c5d4p+12L -0xcp-4L : plus_infty -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok +ccosh -11357.25 -0.75 += ccosh downward flt-32 -0x2.c5d4p+12f -0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 -0x2.c5d4p+12f -0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 -0x2.c5d4p+12f -0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 -0x2.c5d4p+12f -0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 -0x2.c5d4p+12 -0xcp-4 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh tonearest dbl-64 -0x2.c5d4p+12 -0xcp-4 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero dbl-64 -0x2.c5d4p+12 -0xcp-4 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh upward dbl-64 -0x2.c5d4p+12 -0xcp-4 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-intel -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh tonearest ldbl-96-intel -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh towardzero ldbl-96-intel -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh upward ldbl-96-intel -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b42p+16380L 0xb.46f43ab104a625ap+16380L : inexact-ok += ccosh downward ldbl-96-m68k -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh tonearest ldbl-96-m68k -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh towardzero ldbl-96-m68k -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41p+16380L 0xb.46f43ab104a6259p+16380L : inexact-ok += ccosh upward ldbl-96-m68k -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b42p+16380L 0xb.46f43ab104a625ap+16380L : inexact-ok += ccosh downward ldbl-128 -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41257ed141f4e08p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh tonearest ldbl-128 -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41257ed141f4e1p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh towardzero ldbl-128 -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41257ed141f4e08p+16380L 0xb.46f43ab104a625930c1b0cbd6238p+16380L : inexact-ok += ccosh upward ldbl-128 -0x2.c5d4p+12L -0xcp-4L : 0xc.1aee93505374b41257ed141f4e1p+16380L 0xb.46f43ab104a625930c1b0cbd624p+16380L : inexact-ok += ccosh downward ldbl-128ibm -0x2.c5d4p+12L -0xcp-4L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128ibm -0x2.c5d4p+12L -0xcp-4L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128ibm -0x2.c5d4p+12L -0xcp-4L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128ibm -0x2.c5d4p+12L -0xcp-4L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok +ccosh 180 0x1p-149 += ccosh downward flt-32 0xb.4p+4f 0x8p-152f : 0xf.fffffp+124f 0x3.373464p+108f : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 0xb.4p+4f 0x8p-152f : plus_infty 0x3.373464p+108f : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 0xb.4p+4f 0x8p-152f : 0xf.fffffp+124f 0x3.373464p+108f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 0xb.4p+4f 0x8p-152f : plus_infty 0x3.373468p+108f : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 0xb.4p+4 0x8p-152 : 0x6.6e68cac762214p+256 0x3.37346563b110ap+108 : inexact-ok += ccosh tonearest dbl-64 0xb.4p+4 0x8p-152 : 0x6.6e68cac762214p+256 0x3.37346563b110ap+108 : inexact-ok += ccosh towardzero dbl-64 0xb.4p+4 0x8p-152 : 0x6.6e68cac762214p+256 0x3.37346563b110ap+108 : inexact-ok += ccosh upward dbl-64 0xb.4p+4 0x8p-152 : 0x6.6e68cac762218p+256 0x3.37346563b110cp+108 : inexact-ok += ccosh downward ldbl-96-intel 0xb.4p+4L 0x8p-152L : 0x6.6e68cac76221537p+256L 0x3.37346563b110a9b8p+108L : inexact-ok += ccosh tonearest ldbl-96-intel 0xb.4p+4L 0x8p-152L : 0x6.6e68cac76221537p+256L 0x3.37346563b110a9b8p+108L : inexact-ok += ccosh towardzero ldbl-96-intel 0xb.4p+4L 0x8p-152L : 0x6.6e68cac76221537p+256L 0x3.37346563b110a9b8p+108L : inexact-ok += ccosh upward ldbl-96-intel 0xb.4p+4L 0x8p-152L : 0x6.6e68cac762215378p+256L 0x3.37346563b110a9bcp+108L : inexact-ok += ccosh downward ldbl-96-m68k 0xb.4p+4L 0x8p-152L : 0x6.6e68cac76221537p+256L 0x3.37346563b110a9b8p+108L : inexact-ok += ccosh tonearest ldbl-96-m68k 0xb.4p+4L 0x8p-152L : 0x6.6e68cac76221537p+256L 0x3.37346563b110a9b8p+108L : inexact-ok += ccosh towardzero ldbl-96-m68k 0xb.4p+4L 0x8p-152L : 0x6.6e68cac76221537p+256L 0x3.37346563b110a9b8p+108L : inexact-ok += ccosh upward ldbl-96-m68k 0xb.4p+4L 0x8p-152L : 0x6.6e68cac762215378p+256L 0x3.37346563b110a9bcp+108L : inexact-ok += ccosh downward ldbl-128 0xb.4p+4L 0x8p-152L : 0x6.6e68cac762215372ccfb2fd63cf4p+256L 0x3.37346563b110a9b9667d97eb1e7ap+108L : inexact-ok += ccosh tonearest ldbl-128 0xb.4p+4L 0x8p-152L : 0x6.6e68cac762215372ccfb2fd63cf4p+256L 0x3.37346563b110a9b9667d97eb1e7ap+108L : inexact-ok += ccosh towardzero ldbl-128 0xb.4p+4L 0x8p-152L : 0x6.6e68cac762215372ccfb2fd63cf4p+256L 0x3.37346563b110a9b9667d97eb1e7ap+108L : inexact-ok += ccosh upward ldbl-128 0xb.4p+4L 0x8p-152L : 0x6.6e68cac762215372ccfb2fd63cf8p+256L 0x3.37346563b110a9b9667d97eb1e7cp+108L : inexact-ok += ccosh downward ldbl-128ibm 0xb.4p+4L 0x8p-152L : 0x6.6e68cac762215372ccfb2fd63cp+256L 0x3.37346563b110a9b9667d97eb1ep+108L : inexact-ok += ccosh tonearest ldbl-128ibm 0xb.4p+4L 0x8p-152L : 0x6.6e68cac762215372ccfb2fd63cp+256L 0x3.37346563b110a9b9667d97eb1ep+108L : inexact-ok += ccosh towardzero ldbl-128ibm 0xb.4p+4L 0x8p-152L : 0x6.6e68cac762215372ccfb2fd63cp+256L 0x3.37346563b110a9b9667d97eb1ep+108L : inexact-ok += ccosh upward ldbl-128ibm 0xb.4p+4L 0x8p-152L : 0x6.6e68cac762215372ccfb2fd63ep+256L 0x3.37346563b110a9b9667d97eb1fp+108L : inexact-ok +ccosh 1440 0x1p-1074 += ccosh downward flt-32 0x5.ap+8f 0x8p-152f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 0x5.ap+8f 0x8p-152f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 0x5.ap+8f 0x8p-152f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 0x5.ap+8f 0x8p-152f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 0x5.ap+8 0x8p-152 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh tonearest dbl-64 0x5.ap+8 0x8p-152 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero dbl-64 0x5.ap+8 0x8p-152 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh upward dbl-64 0x5.ap+8 0x8p-152 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-intel 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c4p+2076L 0xb.2a22d4a7d093462p+1924L : inexact-ok += ccosh tonearest ldbl-96-intel 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c4p+2076L 0xb.2a22d4a7d093462p+1924L : inexact-ok += ccosh towardzero ldbl-96-intel 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c4p+2076L 0xb.2a22d4a7d093462p+1924L : inexact-ok += ccosh upward ldbl-96-intel 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c6p+2076L 0xb.2a22d4a7d093463p+1924L : inexact-ok += ccosh downward ldbl-96-m68k 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c4p+2076L 0xb.2a22d4a7d093462p+1924L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c4p+2076L 0xb.2a22d4a7d093462p+1924L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c4p+2076L 0xb.2a22d4a7d093462p+1924L : inexact-ok += ccosh upward ldbl-96-m68k 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c6p+2076L 0xb.2a22d4a7d093463p+1924L : inexact-ok += ccosh downward ldbl-128 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L 0xb.2a22d4a7d0934623f733dc45db7p+1924L : inexact-ok += ccosh tonearest ldbl-128 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L 0xb.2a22d4a7d0934623f733dc45db7p+1924L : inexact-ok += ccosh towardzero ldbl-128 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L 0xb.2a22d4a7d0934623f733dc45db7p+1924L : inexact-ok += ccosh upward ldbl-128 0x5.ap+8L 0x8p-152L : 0x1.65445a94fa1268c47ee67b88bb6fp+2076L 0xb.2a22d4a7d0934623f733dc45db78p+1924L : inexact-ok += ccosh downward ldbl-128ibm 0x5.ap+8L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128ibm 0x5.ap+8L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128ibm 0x5.ap+8L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128ibm 0x5.ap+8L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward flt-32 0x5.ap+8f 0x0p+0f : 0xf.fffffp+124f 0x0p+0f : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 0x5.ap+8f 0x0p+0f : plus_infty 0x0p+0f : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 0x5.ap+8f 0x0p+0f : 0xf.fffffp+124f 0x0p+0f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 0x5.ap+8f 0x0p+0f : plus_infty 0x0p+0f : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 0x5.ap+8 0x0p+0 : 0xf.ffffffffffff8p+1020 0x0p+0 : inexact-ok overflow errno-erange-ok += ccosh tonearest dbl-64 0x5.ap+8 0x0p+0 : plus_infty 0x0p+0 : inexact-ok overflow errno-erange-ok += ccosh towardzero dbl-64 0x5.ap+8 0x0p+0 : 0xf.ffffffffffff8p+1020 0x0p+0 : inexact-ok overflow errno-erange-ok += ccosh upward dbl-64 0x5.ap+8 0x0p+0 : plus_infty 0x0p+0 : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-intel 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c4p+2076L 0x0p+0L : inexact-ok += ccosh tonearest ldbl-96-intel 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c4p+2076L 0x0p+0L : inexact-ok += ccosh towardzero ldbl-96-intel 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c4p+2076L 0x0p+0L : inexact-ok += ccosh upward ldbl-96-intel 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c6p+2076L 0x0p+0L : inexact-ok += ccosh downward ldbl-96-m68k 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c4p+2076L 0x0p+0L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c4p+2076L 0x0p+0L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c4p+2076L 0x0p+0L : inexact-ok += ccosh upward ldbl-96-m68k 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c6p+2076L 0x0p+0L : inexact-ok += ccosh downward ldbl-128 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L 0x0p+0L : inexact-ok += ccosh tonearest ldbl-128 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L 0x0p+0L : inexact-ok += ccosh towardzero ldbl-128 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L 0x0p+0L : inexact-ok += ccosh upward ldbl-128 0x5.ap+8L 0x0p+0L : 0x1.65445a94fa1268c47ee67b88bb6fp+2076L 0x0p+0L : inexact-ok += ccosh downward ldbl-128ibm 0x5.ap+8L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128ibm 0x5.ap+8L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128ibm 0x5.ap+8L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128ibm 0x5.ap+8L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 0x5.ap+8 0x4p-1076 : 0xf.ffffffffffff8p+1020 0x5.95116a53e8498p+1000 : inexact-ok overflow errno-erange-ok += ccosh tonearest dbl-64 0x5.ap+8 0x4p-1076 : plus_infty 0x5.95116a53e849cp+1000 : inexact-ok overflow errno-erange-ok += ccosh towardzero dbl-64 0x5.ap+8 0x4p-1076 : 0xf.ffffffffffff8p+1020 0x5.95116a53e8498p+1000 : inexact-ok overflow errno-erange-ok += ccosh upward dbl-64 0x5.ap+8 0x4p-1076 : plus_infty 0x5.95116a53e849cp+1000 : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-intel 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c4p+2076L 0x5.95116a53e849a31p+1000L : inexact-ok += ccosh tonearest ldbl-96-intel 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c4p+2076L 0x5.95116a53e849a31p+1000L : inexact-ok += ccosh towardzero ldbl-96-intel 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c4p+2076L 0x5.95116a53e849a31p+1000L : inexact-ok += ccosh upward ldbl-96-intel 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c6p+2076L 0x5.95116a53e849a318p+1000L : inexact-ok += ccosh downward ldbl-96-m68k 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c4p+2076L 0x5.95116a53e849a31p+1000L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c4p+2076L 0x5.95116a53e849a31p+1000L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c4p+2076L 0x5.95116a53e849a31p+1000L : inexact-ok += ccosh upward ldbl-96-m68k 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c6p+2076L 0x5.95116a53e849a318p+1000L : inexact-ok += ccosh downward ldbl-128 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L 0x5.95116a53e849a311fb99ee22edb8p+1000L : inexact-ok += ccosh tonearest ldbl-128 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L 0x5.95116a53e849a311fb99ee22edb8p+1000L : inexact-ok += ccosh towardzero ldbl-128 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c47ee67b88bb6ep+2076L 0x5.95116a53e849a311fb99ee22edb8p+1000L : inexact-ok += ccosh upward ldbl-128 0x5.ap+8L 0x4p-1076L : 0x1.65445a94fa1268c47ee67b88bb6fp+2076L 0x5.95116a53e849a311fb99ee22edbcp+1000L : inexact-ok += ccosh downward ldbl-128ibm 0x5.ap+8L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x5.95116a53e849a311fb99ee22ecp+1000L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128ibm 0x5.ap+8L 0x4p-1076L : plus_infty 0x5.95116a53e849a311fb99ee22eep+1000L : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128ibm 0x5.ap+8L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x5.95116a53e849a311fb99ee22ecp+1000L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128ibm 0x5.ap+8L 0x4p-1076L : plus_infty 0x5.95116a53e849a311fb99ee22eep+1000L : inexact-ok overflow errno-erange-ok +ccosh 22730 0x1p-16434 += ccosh downward flt-32 0x5.8cap+12f 0x8p-152f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 0x5.8cap+12f 0x8p-152f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 0x5.8cap+12f 0x8p-152f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 0x5.8cap+12f 0x8p-152f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 0x5.8cap+12 0x8p-152 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh tonearest dbl-64 0x5.8cap+12 0x8p-152 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero dbl-64 0x5.8cap+12 0x8p-152 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh upward dbl-64 0x5.8cap+12 0x8p-152 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-intel 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-96-intel 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-96-intel 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-96-intel 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-m68k 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-96-m68k 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-96-m68k 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-96-m68k 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-128 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-128ibm 0x5.8cap+12L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128ibm 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128ibm 0x5.8cap+12L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128ibm 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward flt-32 0x5.8cap+12f 0x0p+0f : 0xf.fffffp+124f 0x0p+0f : inexact-ok overflow errno-erange-ok += ccosh tonearest flt-32 0x5.8cap+12f 0x0p+0f : plus_infty 0x0p+0f : inexact-ok overflow errno-erange-ok += ccosh towardzero flt-32 0x5.8cap+12f 0x0p+0f : 0xf.fffffp+124f 0x0p+0f : inexact-ok overflow errno-erange-ok += ccosh upward flt-32 0x5.8cap+12f 0x0p+0f : plus_infty 0x0p+0f : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 0x5.8cap+12 0x0p+0 : 0xf.ffffffffffff8p+1020 0x0p+0 : inexact-ok overflow errno-erange-ok += ccosh tonearest dbl-64 0x5.8cap+12 0x0p+0 : plus_infty 0x0p+0 : inexact-ok overflow errno-erange-ok += ccosh towardzero dbl-64 0x5.8cap+12 0x0p+0 : 0xf.ffffffffffff8p+1020 0x0p+0 : inexact-ok overflow errno-erange-ok += ccosh upward dbl-64 0x5.8cap+12 0x0p+0 : plus_infty 0x0p+0 : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-intel 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-96-intel 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-96-intel 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-96-intel 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-m68k 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-96-m68k 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-96-m68k 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-96-m68k 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-128 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-128ibm 0x5.8cap+12L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128ibm 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128ibm 0x5.8cap+12L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128ibm 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += ccosh downward dbl-64 0x5.8cap+12 0x4p-1076 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh tonearest dbl-64 0x5.8cap+12 0x4p-1076 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero dbl-64 0x5.8cap+12 0x4p-1076 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += ccosh upward dbl-64 0x5.8cap+12 0x4p-1076 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-intel 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-96-intel 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-96-intel 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-96-intel 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-m68k 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-96-m68k 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-96-m68k 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-96-m68k 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-128 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-128ibm 0x5.8cap+12L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128ibm 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128ibm 0x5.8cap+12L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128ibm 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-intel 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffp+16380L 0x2.bf701efd42c88e7cp+16356L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-96-intel 0x5.8cap+12L 0x4p-16436L : plus_infty 0x2.bf701efd42c88e8p+16356L : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-96-intel 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffp+16380L 0x2.bf701efd42c88e7cp+16356L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-96-intel 0x5.8cap+12L 0x4p-16436L : plus_infty 0x2.bf701efd42c88e8p+16356L : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-96-m68k 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffp+16380L 0x2.bf701efd42c88e7cp+16356L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-96-m68k 0x5.8cap+12L 0x4p-16436L : plus_infty 0x2.bf701efd42c88e8p+16356L : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-96-m68k 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffp+16380L 0x2.bf701efd42c88e7cp+16356L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-96-m68k 0x5.8cap+12L 0x4p-16436L : plus_infty 0x2.bf701efd42c88e8p+16356L : inexact-ok overflow errno-erange-ok += ccosh downward ldbl-128 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffffffffffffff8p+16380L 0x2.bf701efd42c88e7efc2fdf7765fcp+16356L : inexact-ok overflow errno-erange-ok += ccosh tonearest ldbl-128 0x5.8cap+12L 0x4p-16436L : plus_infty 0x2.bf701efd42c88e7efc2fdf7765fcp+16356L : inexact-ok overflow errno-erange-ok += ccosh towardzero ldbl-128 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffffffffffffff8p+16380L 0x2.bf701efd42c88e7efc2fdf7765fcp+16356L : inexact-ok overflow errno-erange-ok += ccosh upward ldbl-128 0x5.8cap+12L 0x4p-16436L : plus_infty 0x2.bf701efd42c88e7efc2fdf7765fep+16356L : inexact-ok overflow errno-erange-ok +ccosh min_subnorm_p120 0x1p-120 += ccosh downward flt-32 0x8p-32f 0x1p-120f : 0x1p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += ccosh tonearest flt-32 0x8p-32f 0x1p-120f : 0x1p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += ccosh towardzero flt-32 0x8p-32f 0x1p-120f : 0x1p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += ccosh upward flt-32 0x8p-32f 0x1p-120f : 0x1.000002p+0f 0x1p-148f : inexact-ok underflow errno-erange-ok += ccosh downward dbl-64 0x8p-32 0x1p-120 : 0x1p+0 0x8p-152 : inexact-ok += ccosh tonearest dbl-64 0x8p-32 0x1p-120 : 0x1p+0 0x8p-152 : inexact-ok += ccosh towardzero dbl-64 0x8p-32 0x1p-120 : 0x1p+0 0x8p-152 : inexact-ok += ccosh upward dbl-64 0x8p-32 0x1p-120 : 0x1.0000000000001p+0 0x8.0000000000008p-152 : inexact-ok += ccosh downward ldbl-96-intel 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.000000000000005p-152L : inexact-ok += ccosh tonearest ldbl-96-intel 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.000000000000005p-152L : inexact-ok += ccosh towardzero ldbl-96-intel 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.000000000000005p-152L : inexact-ok += ccosh upward ldbl-96-intel 0x8p-32L 0x1p-120L : 0x1.0000000000000022p+0L 0x8.000000000000006p-152L : inexact-ok += ccosh downward ldbl-96-m68k 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.000000000000005p-152L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.000000000000005p-152L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.000000000000005p-152L : inexact-ok += ccosh upward ldbl-96-m68k 0x8p-32L 0x1p-120L : 0x1.0000000000000022p+0L 0x8.000000000000006p-152L : inexact-ok += ccosh downward ldbl-128 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.000000000000005555555555555p-152L : inexact-ok += ccosh tonearest ldbl-128 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.0000000000000055555555555558p-152L : inexact-ok += ccosh towardzero ldbl-128 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.000000000000005555555555555p-152L : inexact-ok += ccosh upward ldbl-128 0x8p-32L 0x1p-120L : 0x1.0000000000000020000000000001p+0L 0x8.0000000000000055555555555558p-152L : inexact-ok += ccosh downward ldbl-128ibm 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.00000000000000555555555554p-152L : inexact-ok += ccosh tonearest ldbl-128ibm 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.00000000000000555555555554p-152L : inexact-ok += ccosh towardzero ldbl-128ibm 0x8p-32L 0x1p-120L : 0x1.000000000000002p+0L 0x8.00000000000000555555555554p-152L : inexact-ok += ccosh upward ldbl-128ibm 0x8p-32L 0x1p-120L : 0x1.000000000000002000000000008p+0L 0x8.00000000000000555555555558p-152L : inexact-ok += ccosh downward dbl-64 0x4p-956 0x1p-120 : 0xf.ffffffffffff8p-4 0x0p+0 : inexact-ok underflow errno-erange-ok += ccosh tonearest dbl-64 0x4p-956 0x1p-120 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += ccosh towardzero dbl-64 0x4p-956 0x1p-120 : 0xf.ffffffffffff8p-4 0x0p+0 : inexact-ok underflow errno-erange-ok += ccosh upward dbl-64 0x4p-956 0x1p-120 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-intel 0x4p-956L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok += ccosh tonearest ldbl-96-intel 0x4p-956L 0x1p-120L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh towardzero ldbl-96-intel 0x4p-956L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok += ccosh upward ldbl-96-intel 0x4p-956L 0x1p-120L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh downward ldbl-96-m68k 0x4p-956L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x4p-956L 0x1p-120L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x4p-956L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok += ccosh upward ldbl-96-m68k 0x4p-956L 0x1p-120L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh downward ldbl-128 0x4p-956L 0x1p-120L : 0xf.fffffffffffffffffffffffffff8p-4L 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += ccosh tonearest ldbl-128 0x4p-956L 0x1p-120L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh towardzero ldbl-128 0x4p-956L 0x1p-120L : 0xf.fffffffffffffffffffffffffff8p-4L 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += ccosh upward ldbl-128 0x4p-956L 0x1p-120L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh downward ldbl-128ibm 0x4p-956L 0x1p-120L : 0xf.fffffffffffffffffffffffffcp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-128ibm 0x4p-956L 0x1p-120L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-128ibm 0x4p-956L 0x1p-120L : 0xf.fffffffffffffffffffffffffcp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-128ibm 0x4p-956L 0x1p-120L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-intel 0x8p-16328L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-intel 0x8p-16328L 0x1p-120L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-intel 0x8p-16328L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-intel 0x8p-16328L 0x1p-120L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-m68k 0x8p-16328L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-m68k 0x8p-16328L 0x1p-120L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-m68k 0x8p-16328L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-m68k 0x8p-16328L 0x1p-120L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-128 0x8p-16328L 0x1p-120L : 0xf.fffffffffffffffffffffffffff8p-4L 0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-128 0x8p-16328L 0x1p-120L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-128 0x8p-16328L 0x1p-120L : 0xf.fffffffffffffffffffffffffff8p-4L 0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-128 0x8p-16328L 0x1p-120L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-intel 0x4p-16328L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-intel 0x4p-16328L 0x1p-120L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-intel 0x4p-16328L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-intel 0x4p-16328L 0x1p-120L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-m68k 0x4p-16328L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-m68k 0x4p-16328L 0x1p-120L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-m68k 0x4p-16328L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-m68k 0x4p-16328L 0x1p-120L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-128 0x4p-16328L 0x1p-120L : 0xf.fffffffffffffffffffffffffff8p-4L 0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-128 0x4p-16328L 0x1p-120L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-128 0x4p-16328L 0x1p-120L : 0xf.fffffffffffffffffffffffffff8p-4L 0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-128 0x4p-16328L 0x1p-120L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-intel 0x4p-16376L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-intel 0x4p-16376L 0x1p-120L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-intel 0x4p-16376L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-intel 0x4p-16376L 0x1p-120L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-m68k 0x4p-16376L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-m68k 0x4p-16376L 0x1p-120L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-m68k 0x4p-16376L 0x1p-120L : 0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-m68k 0x4p-16376L 0x1p-120L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-128 0x4p-16376L 0x1p-120L : 0xf.fffffffffffffffffffffffffff8p-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-128 0x4p-16376L 0x1p-120L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-128 0x4p-16376L 0x1p-120L : 0xf.fffffffffffffffffffffffffff8p-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-128 0x4p-16376L 0x1p-120L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok +ccosh 0x1p-120 min_subnorm_p120 += ccosh downward flt-32 0x1p-120f 0x8p-32f : 0xf.fffffp-4f 0x0p+0f : inexact-ok underflow errno-erange-ok += ccosh tonearest flt-32 0x1p-120f 0x8p-32f : 0x1p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += ccosh towardzero flt-32 0x1p-120f 0x8p-32f : 0xf.fffffp-4f 0x0p+0f : inexact-ok underflow errno-erange-ok += ccosh upward flt-32 0x1p-120f 0x8p-32f : 0x1p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += ccosh downward dbl-64 0x1p-120 0x8p-32 : 0xf.ffffffffffff8p-4 0x7.ffffffffffffcp-152 : inexact-ok += ccosh tonearest dbl-64 0x1p-120 0x8p-32 : 0x1p+0 0x8p-152 : inexact-ok += ccosh towardzero dbl-64 0x1p-120 0x8p-32 : 0xf.ffffffffffff8p-4 0x7.ffffffffffffcp-152 : inexact-ok += ccosh upward dbl-64 0x1p-120 0x8p-32 : 0x1p+0 0x8p-152 : inexact-ok += ccosh downward ldbl-96-intel 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffa8p-152L : inexact-ok += ccosh tonearest ldbl-96-intel 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffa8p-152L : inexact-ok += ccosh towardzero ldbl-96-intel 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffa8p-152L : inexact-ok += ccosh upward ldbl-96-intel 0x1p-120L 0x8p-32L : 0xf.fffffffffffffe1p-4L 0x7.ffffffffffffffbp-152L : inexact-ok += ccosh downward ldbl-96-m68k 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffa8p-152L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffa8p-152L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffa8p-152L : inexact-ok += ccosh upward ldbl-96-m68k 0x1p-120L 0x8p-32L : 0xf.fffffffffffffe1p-4L 0x7.ffffffffffffffbp-152L : inexact-ok += ccosh downward ldbl-128 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffaaaaaaaaaaaaa8p-152L : inexact-ok += ccosh tonearest ldbl-128 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffaaaaaaaaaaaaacp-152L : inexact-ok += ccosh towardzero ldbl-128 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffaaaaaaaaaaaaa8p-152L : inexact-ok += ccosh upward ldbl-128 0x1p-120L 0x8p-32L : 0xf.fffffffffffffe00000000000008p-4L 0x7.ffffffffffffffaaaaaaaaaaaaacp-152L : inexact-ok += ccosh downward ldbl-128ibm 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffaaaaaaaaaaaap-152L : inexact-ok += ccosh tonearest ldbl-128ibm 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffaaaaaaaaaaaap-152L : inexact-ok += ccosh towardzero ldbl-128ibm 0x1p-120L 0x8p-32L : 0xf.fffffffffffffep-4L 0x7.ffffffffffffffaaaaaaaaaaaap-152L : inexact-ok += ccosh upward ldbl-128ibm 0x1p-120L 0x8p-32L : 0xf.fffffffffffffe000000000004p-4L 0x7.ffffffffffffffaaaaaaaaaaacp-152L : inexact-ok += ccosh downward dbl-64 0x1p-120 0x4p-956 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += ccosh tonearest dbl-64 0x1p-120 0x4p-956 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += ccosh towardzero dbl-64 0x1p-120 0x4p-956 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += ccosh upward dbl-64 0x1p-120 0x4p-956 : 0x1.0000000000001p+0 0x8p-1076 : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-intel 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh tonearest ldbl-96-intel 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh towardzero ldbl-96-intel 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh upward ldbl-96-intel 0x1p-120L 0x4p-956L : 0x1.0000000000000002p+0L 0x4.0000000000000008p-1076L : inexact-ok += ccosh downward ldbl-96-m68k 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh tonearest ldbl-96-m68k 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh towardzero ldbl-96-m68k 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh upward ldbl-96-m68k 0x1p-120L 0x4p-956L : 0x1.0000000000000002p+0L 0x4.0000000000000008p-1076L : inexact-ok += ccosh downward ldbl-128 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh tonearest ldbl-128 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh towardzero ldbl-128 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok += ccosh upward ldbl-128 0x1p-120L 0x4p-956L : 0x1.0000000000000000000000000001p+0L 0x4.0000000000000000000000000004p-1076L : inexact-ok += ccosh downward ldbl-128ibm 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-128ibm 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-128ibm 0x1p-120L 0x4p-956L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-128ibm 0x1p-120L 0x4p-956L : 0x1.000000000000000000000000008p+0L 0x8p-1076L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-intel 0x1p-120L 0x8p-16328L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-intel 0x1p-120L 0x8p-16328L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-intel 0x1p-120L 0x8p-16328L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-intel 0x1p-120L 0x8p-16328L : 0x1.0000000000000002p+0L 0x1p-16444L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-m68k 0x1p-120L 0x8p-16328L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-m68k 0x1p-120L 0x8p-16328L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-m68k 0x1p-120L 0x8p-16328L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-m68k 0x1p-120L 0x8p-16328L : 0x1.0000000000000002p+0L 0xcp-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-128 0x1p-120L 0x8p-16328L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-128 0x1p-120L 0x8p-16328L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-128 0x1p-120L 0x8p-16328L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-128 0x1p-120L 0x8p-16328L : 0x1.0000000000000000000000000001p+0L 0x8.000000000004p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-intel 0x1p-120L 0x4p-16328L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-intel 0x1p-120L 0x4p-16328L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-intel 0x1p-120L 0x4p-16328L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-intel 0x1p-120L 0x4p-16328L : 0x1.0000000000000002p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-m68k 0x1p-120L 0x4p-16328L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-m68k 0x1p-120L 0x4p-16328L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-m68k 0x1p-120L 0x4p-16328L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-m68k 0x1p-120L 0x4p-16328L : 0x1.0000000000000002p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-128 0x1p-120L 0x4p-16328L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-128 0x1p-120L 0x4p-16328L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-128 0x1p-120L 0x4p-16328L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-128 0x1p-120L 0x4p-16328L : 0x1.0000000000000000000000000001p+0L 0x4.000000000004p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-intel 0x1p-120L 0x4p-16376L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-intel 0x1p-120L 0x4p-16376L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-intel 0x1p-120L 0x4p-16376L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-intel 0x1p-120L 0x4p-16376L : 0x1.0000000000000002p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-96-m68k 0x1p-120L 0x4p-16376L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-96-m68k 0x1p-120L 0x4p-16376L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-96-m68k 0x1p-120L 0x4p-16376L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-96-m68k 0x1p-120L 0x4p-16376L : 0x1.0000000000000002p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ccosh downward ldbl-128 0x1p-120L 0x4p-16376L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += ccosh tonearest ldbl-128 0x1p-120L 0x4p-16376L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += ccosh towardzero ldbl-128 0x1p-120L 0x4p-16376L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += ccosh upward ldbl-128 0x1p-120L 0x4p-16376L : 0x1.0000000000000000000000000001p+0L 0x8p-16496L : inexact-ok underflow errno-erange-ok +cexp 0 0 += cexp downward flt-32 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cexp tonearest flt-32 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cexp towardzero flt-32 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cexp upward flt-32 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cexp downward dbl-64 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cexp tonearest dbl-64 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cexp towardzero dbl-64 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cexp upward dbl-64 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp downward ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp upward ldbl-128 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok +cexp -0 0 += cexp downward flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cexp tonearest flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cexp towardzero flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cexp upward flt-32 -0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cexp downward dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cexp tonearest dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cexp towardzero dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cexp upward dbl-64 -0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cexp downward ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp tonearest ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp towardzero ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp upward ldbl-96-intel -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp downward ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp tonearest ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp towardzero ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp upward ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp downward ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp tonearest ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp towardzero ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp upward ldbl-128 -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp downward ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp tonearest ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp towardzero ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cexp upward ldbl-128ibm -0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok +cexp 0 -0 += cexp downward flt-32 0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += cexp tonearest flt-32 0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += cexp towardzero flt-32 0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += cexp upward flt-32 0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += cexp downward dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += cexp tonearest dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += cexp towardzero dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += cexp upward dbl-64 0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp downward ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp upward ldbl-128 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok +cexp -0 -0 += cexp downward flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += cexp tonearest flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += cexp towardzero flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += cexp upward flt-32 -0x0p+0f -0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok += cexp downward dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += cexp tonearest dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += cexp towardzero dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += cexp upward dbl-64 -0x0p+0 -0x0p+0 : 0x1p+0 -0x0p+0 : inexact-ok += cexp downward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp tonearest ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp towardzero ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp upward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp downward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp tonearest ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp towardzero ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp upward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp downward ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp tonearest ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp towardzero ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp upward ldbl-128 -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp downward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp tonearest ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp towardzero ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok += cexp upward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x1p+0L -0x0p+0L : inexact-ok +cexp 0.75 1.25 += cexp downward flt-32 0xcp-4f 0x1.4p+0f : 0xa.ae3bbp-4f 0x2.024dd8p+0f : inexact-ok += cexp tonearest flt-32 0xcp-4f 0x1.4p+0f : 0xa.ae3bcp-4f 0x2.024ddcp+0f : inexact-ok += cexp towardzero flt-32 0xcp-4f 0x1.4p+0f : 0xa.ae3bbp-4f 0x2.024dd8p+0f : inexact-ok += cexp upward flt-32 0xcp-4f 0x1.4p+0f : 0xa.ae3bcp-4f 0x2.024ddcp+0f : inexact-ok += cexp downward dbl-64 0xcp-4 0x1.4p+0 : 0xa.ae3bbed44ba9p-4 0x2.024dda939ed8cp+0 : inexact-ok += cexp tonearest dbl-64 0xcp-4 0x1.4p+0 : 0xa.ae3bbed44ba98p-4 0x2.024dda939ed8ep+0 : inexact-ok += cexp towardzero dbl-64 0xcp-4 0x1.4p+0 : 0xa.ae3bbed44ba9p-4 0x2.024dda939ed8cp+0 : inexact-ok += cexp upward dbl-64 0xcp-4 0x1.4p+0 : 0xa.ae3bbed44ba98p-4 0x2.024dda939ed8ep+0 : inexact-ok += cexp downward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735p-4L 0x2.024dda939ed8dc94p+0L : inexact-ok += cexp tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9736p-4L 0x2.024dda939ed8dc98p+0L : inexact-ok += cexp towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735p-4L 0x2.024dda939ed8dc94p+0L : inexact-ok += cexp upward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9736p-4L 0x2.024dda939ed8dc98p+0L : inexact-ok += cexp downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735p-4L 0x2.024dda939ed8dc94p+0L : inexact-ok += cexp tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9736p-4L 0x2.024dda939ed8dc98p+0L : inexact-ok += cexp towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735p-4L 0x2.024dda939ed8dc94p+0L : inexact-ok += cexp upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9736p-4L 0x2.024dda939ed8dc98p+0L : inexact-ok += cexp downward ldbl-128 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735d1448d2314a48p-4L 0x2.024dda939ed8dc96880c3ee758a8p+0L : inexact-ok += cexp tonearest ldbl-128 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735d1448d2314a5p-4L 0x2.024dda939ed8dc96880c3ee758aap+0L : inexact-ok += cexp towardzero ldbl-128 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735d1448d2314a48p-4L 0x2.024dda939ed8dc96880c3ee758a8p+0L : inexact-ok += cexp upward ldbl-128 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735d1448d2314a5p-4L 0x2.024dda939ed8dc96880c3ee758aap+0L : inexact-ok += cexp downward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735d1448d23148p-4L 0x2.024dda939ed8dc96880c3ee758p+0L : inexact-ok += cexp tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735d1448d2314cp-4L 0x2.024dda939ed8dc96880c3ee759p+0L : inexact-ok += cexp towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735d1448d23148p-4L 0x2.024dda939ed8dc96880c3ee758p+0L : inexact-ok += cexp upward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0xa.ae3bbed44ba9735d1448d2314cp-4L 0x2.024dda939ed8dc96880c3ee759p+0L : inexact-ok +cexp -2.0 -3.0 += cexp downward flt-32 -0x2p+0f -0x3p+0f : -0x2.24c92cp-4f -0x4.e3a3fp-8f : inexact-ok += cexp tonearest flt-32 -0x2p+0f -0x3p+0f : -0x2.24c92cp-4f -0x4.e3a3fp-8f : inexact-ok += cexp towardzero flt-32 -0x2p+0f -0x3p+0f : -0x2.24c928p-4f -0x4.e3a3e8p-8f : inexact-ok += cexp upward flt-32 -0x2p+0f -0x3p+0f : -0x2.24c928p-4f -0x4.e3a3e8p-8f : inexact-ok += cexp downward dbl-64 -0x2p+0 -0x3p+0 : -0x2.24c92bfe91964p-4 -0x4.e3a3eebe631d8p-8 : inexact-ok += cexp tonearest dbl-64 -0x2p+0 -0x3p+0 : -0x2.24c92bfe91964p-4 -0x4.e3a3eebe631d4p-8 : inexact-ok += cexp towardzero dbl-64 -0x2p+0 -0x3p+0 : -0x2.24c92bfe91962p-4 -0x4.e3a3eebe631d4p-8 : inexact-ok += cexp upward dbl-64 -0x2p+0 -0x3p+0 : -0x2.24c92bfe91962p-4 -0x4.e3a3eebe631d4p-8 : inexact-ok += cexp downward ldbl-96-intel -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d04p-4L -0x4.e3a3eebe631d442p-8L : inexact-ok += cexp tonearest ldbl-96-intel -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d04p-4L -0x4.e3a3eebe631d442p-8L : inexact-ok += cexp towardzero ldbl-96-intel -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963dp-4L -0x4.e3a3eebe631d4418p-8L : inexact-ok += cexp upward ldbl-96-intel -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963dp-4L -0x4.e3a3eebe631d4418p-8L : inexact-ok += cexp downward ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d04p-4L -0x4.e3a3eebe631d442p-8L : inexact-ok += cexp tonearest ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d04p-4L -0x4.e3a3eebe631d442p-8L : inexact-ok += cexp towardzero ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963dp-4L -0x4.e3a3eebe631d4418p-8L : inexact-ok += cexp upward ldbl-96-m68k -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963dp-4L -0x4.e3a3eebe631d4418p-8L : inexact-ok += cexp downward ldbl-128 -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d02be8ecb5378aep-4L -0x4.e3a3eebe631d441ee01e4010f2ap-8L : inexact-ok += cexp tonearest ldbl-128 -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d02be8ecb5378acp-4L -0x4.e3a3eebe631d441ee01e4010f29cp-8L : inexact-ok += cexp towardzero ldbl-128 -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d02be8ecb5378acp-4L -0x4.e3a3eebe631d441ee01e4010f29cp-8L : inexact-ok += cexp upward ldbl-128 -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d02be8ecb5378acp-4L -0x4.e3a3eebe631d441ee01e4010f29cp-8L : inexact-ok += cexp downward ldbl-128ibm -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d02be8ecb5379p-4L -0x4.e3a3eebe631d441ee01e4010f4p-8L : inexact-ok += cexp tonearest ldbl-128ibm -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d02be8ecb5379p-4L -0x4.e3a3eebe631d441ee01e4010f2p-8L : inexact-ok += cexp towardzero ldbl-128ibm -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d02be8ecb5378p-4L -0x4.e3a3eebe631d441ee01e4010f2p-8L : inexact-ok += cexp upward ldbl-128ibm -0x2p+0L -0x3p+0L : -0x2.24c92bfe91963d02be8ecb5378p-4L -0x4.e3a3eebe631d441ee01e4010f2p-8L : inexact-ok +cexp 0 0x1p65 += cexp downward flt-32 0x0p+0f 0x2p+64f : 0xf.fb701p-4f -0xc.143e2p-8f : inexact-ok += cexp tonearest flt-32 0x0p+0f 0x2p+64f : 0xf.fb702p-4f -0xc.143e1p-8f : inexact-ok += cexp towardzero flt-32 0x0p+0f 0x2p+64f : 0xf.fb701p-4f -0xc.143e1p-8f : inexact-ok += cexp upward flt-32 0x0p+0f 0x2p+64f : 0xf.fb702p-4f -0xc.143e1p-8f : inexact-ok += cexp downward dbl-64 0x0p+0 0x2p+64 : 0xf.fb701e22987f8p-4 -0xc.143e153b0702p-8 : inexact-ok += cexp tonearest dbl-64 0x0p+0 0x2p+64 : 0xf.fb701e22987f8p-4 -0xc.143e153b0702p-8 : inexact-ok += cexp towardzero dbl-64 0x0p+0 0x2p+64 : 0xf.fb701e22987f8p-4 -0xc.143e153b07018p-8 : inexact-ok += cexp upward dbl-64 0x0p+0 0x2p+64 : 0xf.fb701e22988p-4 -0xc.143e153b07018p-8 : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe6p-4L -0xc.143e153b0701e81p-8L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe7p-4L -0xc.143e153b0701e8p-8L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe6p-4L -0xc.143e153b0701e8p-8L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe7p-4L -0xc.143e153b0701e8p-8L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe6p-4L -0xc.143e153b0701e81p-8L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe7p-4L -0xc.143e153b0701e8p-8L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe6p-4L -0xc.143e153b0701e8p-8L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe7p-4L -0xc.143e153b0701e8p-8L : inexact-ok += cexp downward ldbl-128 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe68852ee2bc897p-4L -0xc.143e153b0701e800f9b8a47b75b8p-8L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe68852ee2bc897p-4L -0xc.143e153b0701e800f9b8a47b75bp-8L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe68852ee2bc897p-4L -0xc.143e153b0701e800f9b8a47b75bp-8L : inexact-ok += cexp upward ldbl-128 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe68852ee2bc8978p-4L -0xc.143e153b0701e800f9b8a47b75bp-8L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe68852ee2bc88p-4L -0xc.143e153b0701e800f9b8a47b78p-8L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe68852ee2bc88p-4L -0xc.143e153b0701e800f9b8a47b74p-8L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe68852ee2bc88p-4L -0xc.143e153b0701e800f9b8a47b74p-8L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L 0x2p+64L : 0xf.fb701e22987fbe68852ee2bc8cp-4L -0xc.143e153b0701e800f9b8a47b74p-8L : inexact-ok +cexp 0 -0x1p65 += cexp downward flt-32 0x0p+0f -0x2p+64f : 0xf.fb701p-4f 0xc.143e1p-8f : inexact-ok += cexp tonearest flt-32 0x0p+0f -0x2p+64f : 0xf.fb702p-4f 0xc.143e1p-8f : inexact-ok += cexp towardzero flt-32 0x0p+0f -0x2p+64f : 0xf.fb701p-4f 0xc.143e1p-8f : inexact-ok += cexp upward flt-32 0x0p+0f -0x2p+64f : 0xf.fb702p-4f 0xc.143e2p-8f : inexact-ok += cexp downward dbl-64 0x0p+0 -0x2p+64 : 0xf.fb701e22987f8p-4 0xc.143e153b07018p-8 : inexact-ok += cexp tonearest dbl-64 0x0p+0 -0x2p+64 : 0xf.fb701e22987f8p-4 0xc.143e153b0702p-8 : inexact-ok += cexp towardzero dbl-64 0x0p+0 -0x2p+64 : 0xf.fb701e22987f8p-4 0xc.143e153b07018p-8 : inexact-ok += cexp upward dbl-64 0x0p+0 -0x2p+64 : 0xf.fb701e22988p-4 0xc.143e153b0702p-8 : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe6p-4L 0xc.143e153b0701e8p-8L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe7p-4L 0xc.143e153b0701e8p-8L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe6p-4L 0xc.143e153b0701e8p-8L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe7p-4L 0xc.143e153b0701e81p-8L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe6p-4L 0xc.143e153b0701e8p-8L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe7p-4L 0xc.143e153b0701e8p-8L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe6p-4L 0xc.143e153b0701e8p-8L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe7p-4L 0xc.143e153b0701e81p-8L : inexact-ok += cexp downward ldbl-128 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe68852ee2bc897p-4L 0xc.143e153b0701e800f9b8a47b75bp-8L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe68852ee2bc897p-4L 0xc.143e153b0701e800f9b8a47b75b8p-8L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe68852ee2bc897p-4L 0xc.143e153b0701e800f9b8a47b75bp-8L : inexact-ok += cexp upward ldbl-128 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe68852ee2bc8978p-4L 0xc.143e153b0701e800f9b8a47b75b8p-8L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe68852ee2bc88p-4L 0xc.143e153b0701e800f9b8a47b74p-8L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe68852ee2bc88p-4L 0xc.143e153b0701e800f9b8a47b74p-8L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe68852ee2bc88p-4L 0xc.143e153b0701e800f9b8a47b74p-8L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L -0x2p+64L : 0xf.fb701e22987fbe68852ee2bc8cp-4L 0xc.143e153b0701e800f9b8a47b78p-8L : inexact-ok +cexp 50 0x1p127 += cexp downward flt-32 0x3.2p+4f 0x8p+124f : 0xd.bc483p+68f 0xa.f35fcp+68f : inexact-ok += cexp tonearest flt-32 0x3.2p+4f 0x8p+124f : 0xd.bc483p+68f 0xa.f35fcp+68f : inexact-ok += cexp towardzero flt-32 0x3.2p+4f 0x8p+124f : 0xd.bc483p+68f 0xa.f35fcp+68f : inexact-ok += cexp upward flt-32 0x3.2p+4f 0x8p+124f : 0xd.bc484p+68f 0xa.f35fdp+68f : inexact-ok += cexp downward dbl-64 0x3.2p+4 0x8p+124 : 0xd.bc4832122ae98p+68 0xa.f35fc6babe7f8p+68 : inexact-ok += cexp tonearest dbl-64 0x3.2p+4 0x8p+124 : 0xd.bc4832122aeap+68 0xa.f35fc6babe8p+68 : inexact-ok += cexp towardzero dbl-64 0x3.2p+4 0x8p+124 : 0xd.bc4832122ae98p+68 0xa.f35fc6babe7f8p+68 : inexact-ok += cexp upward dbl-64 0x3.2p+4 0x8p+124 : 0xd.bc4832122aeap+68 0xa.f35fc6babe8p+68 : inexact-ok += cexp downward ldbl-96-intel 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c44p+68L 0xa.f35fc6babe7fd6fp+68L : inexact-ok += cexp tonearest ldbl-96-intel 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c44p+68L 0xa.f35fc6babe7fd7p+68L : inexact-ok += cexp towardzero ldbl-96-intel 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c44p+68L 0xa.f35fc6babe7fd6fp+68L : inexact-ok += cexp upward ldbl-96-intel 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c45p+68L 0xa.f35fc6babe7fd7p+68L : inexact-ok += cexp downward ldbl-96-m68k 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c44p+68L 0xa.f35fc6babe7fd6fp+68L : inexact-ok += cexp tonearest ldbl-96-m68k 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c44p+68L 0xa.f35fc6babe7fd7p+68L : inexact-ok += cexp towardzero ldbl-96-m68k 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c44p+68L 0xa.f35fc6babe7fd6fp+68L : inexact-ok += cexp upward ldbl-96-m68k 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c45p+68L 0xa.f35fc6babe7fd7p+68L : inexact-ok += cexp downward ldbl-128 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c442e6aea322857p+68L 0xa.f35fc6babe7fd6fb2acbde63a73p+68L : inexact-ok += cexp tonearest ldbl-128 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c442e6aea322857p+68L 0xa.f35fc6babe7fd6fb2acbde63a738p+68L : inexact-ok += cexp towardzero ldbl-128 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c442e6aea322857p+68L 0xa.f35fc6babe7fd6fb2acbde63a73p+68L : inexact-ok += cexp upward ldbl-128 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c442e6aea3228578p+68L 0xa.f35fc6babe7fd6fb2acbde63a738p+68L : inexact-ok += cexp downward ldbl-128ibm 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c442e6aea32284p+68L 0xa.f35fc6babe7fd6fb2acbde63a4p+68L : inexact-ok += cexp tonearest ldbl-128ibm 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c442e6aea32284p+68L 0xa.f35fc6babe7fd6fb2acbde63a8p+68L : inexact-ok += cexp towardzero ldbl-128ibm 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c442e6aea32284p+68L 0xa.f35fc6babe7fd6fb2acbde63a4p+68L : inexact-ok += cexp upward ldbl-128ibm 0x3.2p+4L 0x8p+124L : 0xd.bc4832122ae9c442e6aea32288p+68L 0xa.f35fc6babe7fd6fb2acbde63a8p+68L : inexact-ok +cexp 0 1e22 += cexp downward flt-32 0x0p+0f 0x2.1e19e4p+72f : 0xf.431ddp-4f -0x4.cd7e88p-4f : inexact-ok += cexp tonearest flt-32 0x0p+0f 0x2.1e19e4p+72f : 0xf.431ddp-4f -0x4.cd7e88p-4f : inexact-ok += cexp towardzero flt-32 0x0p+0f 0x2.1e19e4p+72f : 0xf.431ddp-4f -0x4.cd7e8p-4f : inexact-ok += cexp upward flt-32 0x0p+0f 0x2.1e19e4p+72f : 0xf.431dep-4f -0x4.cd7e8p-4f : inexact-ok += cexp downward dbl-64 0x0p+0 0x2.1e19e4p+72 : 0xf.431dd7a36cf3p-4 -0x4.cd7e86c4077cp-4 : inexact-ok += cexp tonearest dbl-64 0x0p+0 0x2.1e19e4p+72 : 0xf.431dd7a36cf38p-4 -0x4.cd7e86c4077cp-4 : inexact-ok += cexp towardzero dbl-64 0x0p+0 0x2.1e19e4p+72 : 0xf.431dd7a36cf3p-4 -0x4.cd7e86c4077bcp-4 : inexact-ok += cexp upward dbl-64 0x0p+0 0x2.1e19e4p+72 : 0xf.431dd7a36cf38p-4 -0x4.cd7e86c4077bcp-4 : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37dep-4L -0x4.cd7e86c4077bf0ep-4L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37dep-4L -0x4.cd7e86c4077bf0ep-4L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37dep-4L -0x4.cd7e86c4077bf0d8p-4L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37dfp-4L -0x4.cd7e86c4077bf0d8p-4L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37dep-4L -0x4.cd7e86c4077bf0ep-4L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37dep-4L -0x4.cd7e86c4077bf0ep-4L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37dep-4L -0x4.cd7e86c4077bf0d8p-4L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37dfp-4L -0x4.cd7e86c4077bf0d8p-4L : inexact-ok += cexp downward ldbl-128 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37de5c74544f6b438p-4L -0x4.cd7e86c4077bf0debc87d70d196p-4L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37de5c74544f6b438p-4L -0x4.cd7e86c4077bf0debc87d70d196p-4L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37de5c74544f6b438p-4L -0x4.cd7e86c4077bf0debc87d70d195cp-4L : inexact-ok += cexp upward ldbl-128 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37de5c74544f6b44p-4L -0x4.cd7e86c4077bf0debc87d70d195cp-4L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37de5c74544f6b4p-4L -0x4.cd7e86c4077bf0debc87d70d1ap-4L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37de5c74544f6b4p-4L -0x4.cd7e86c4077bf0debc87d70d1ap-4L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37de5c74544f6b4p-4L -0x4.cd7e86c4077bf0debc87d70d18p-4L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L 0x2.1e19e4p+72L : 0xf.431dd7a36cf37de5c74544f6b8p-4L -0x4.cd7e86c4077bf0debc87d70d18p-4L : inexact-ok += cexp downward flt-32 0x0p+0f 0x2.1e19ep+72f : 0xa.dd6f6p-4f -0xb.becc5p-4f : inexact-ok += cexp tonearest flt-32 0x0p+0f 0x2.1e19ep+72f : 0xa.dd6f7p-4f -0xb.becc4p-4f : inexact-ok += cexp towardzero flt-32 0x0p+0f 0x2.1e19ep+72f : 0xa.dd6f6p-4f -0xb.becc4p-4f : inexact-ok += cexp upward flt-32 0x0p+0f 0x2.1e19ep+72f : 0xa.dd6f7p-4f -0xb.becc4p-4f : inexact-ok += cexp downward dbl-64 0x0p+0 0x2.1e19ep+72 : 0xa.dd6f6bacd206p-4 -0xb.becc47ab1b8c8p-4 : inexact-ok += cexp tonearest dbl-64 0x0p+0 0x2.1e19ep+72 : 0xa.dd6f6bacd2068p-4 -0xb.becc47ab1b8c8p-4 : inexact-ok += cexp towardzero dbl-64 0x0p+0 0x2.1e19ep+72 : 0xa.dd6f6bacd206p-4 -0xb.becc47ab1b8cp-4 : inexact-ok += cexp upward dbl-64 0x0p+0 0x2.1e19ep+72 : 0xa.dd6f6bacd2068p-4 -0xb.becc47ab1b8cp-4 : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654cp-4L -0xb.becc47ab1b8c708p-4L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654cp-4L -0xb.becc47ab1b8c708p-4L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654cp-4L -0xb.becc47ab1b8c707p-4L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654dp-4L -0xb.becc47ab1b8c707p-4L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654cp-4L -0xb.becc47ab1b8c708p-4L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654cp-4L -0xb.becc47ab1b8c708p-4L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654cp-4L -0xb.becc47ab1b8c707p-4L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654dp-4L -0xb.becc47ab1b8c707p-4L : inexact-ok += cexp downward ldbl-128 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654c1404f52cde16p-4L -0xb.becc47ab1b8c70793712c4ff2bcp-4L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654c1404f52cde16p-4L -0xb.becc47ab1b8c70793712c4ff2bcp-4L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654c1404f52cde16p-4L -0xb.becc47ab1b8c70793712c4ff2bb8p-4L : inexact-ok += cexp upward ldbl-128 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654c1404f52cde168p-4L -0xb.becc47ab1b8c70793712c4ff2bb8p-4L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654c1404f52cdep-4L -0xb.becc47ab1b8c70793712c4ff2cp-4L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654c1404f52cdep-4L -0xb.becc47ab1b8c70793712c4ff2cp-4L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654c1404f52cdep-4L -0xb.becc47ab1b8c70793712c4ff28p-4L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L 0x2.1e19ep+72L : 0xa.dd6f6bacd20654c1404f52cde4p-4L -0xb.becc47ab1b8c70793712c4ff28p-4L : inexact-ok += cexp downward dbl-64 0x0p+0 0x2.1e19e0c9bab24p+72 : 0x8.5f167780e4798p-4 -0xd.a29d5bb5f9ccp-4 : inexact-ok += cexp tonearest dbl-64 0x0p+0 0x2.1e19e0c9bab24p+72 : 0x8.5f167780e47ap-4 -0xd.a29d5bb5f9cb8p-4 : inexact-ok += cexp towardzero dbl-64 0x0p+0 0x2.1e19e0c9bab24p+72 : 0x8.5f167780e4798p-4 -0xd.a29d5bb5f9cb8p-4 : inexact-ok += cexp upward dbl-64 0x0p+0 0x2.1e19e0c9bab24p+72 : 0x8.5f167780e47ap-4 -0xd.a29d5bb5f9cb8p-4 : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9ap-4L -0xd.a29d5bb5f9cb87ep-4L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9ap-4L -0xd.a29d5bb5f9cb87dp-4L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9ap-4L -0xd.a29d5bb5f9cb87dp-4L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9bp-4L -0xd.a29d5bb5f9cb87dp-4L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9ap-4L -0xd.a29d5bb5f9cb87ep-4L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9ap-4L -0xd.a29d5bb5f9cb87dp-4L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9ap-4L -0xd.a29d5bb5f9cb87dp-4L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9bp-4L -0xd.a29d5bb5f9cb87dp-4L : inexact-ok += cexp downward ldbl-128 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9a5c86ffce76148p-4L -0xd.a29d5bb5f9cb87d14de41dc991fp-4L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9a5c86ffce7615p-4L -0xd.a29d5bb5f9cb87d14de41dc991e8p-4L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9a5c86ffce76148p-4L -0xd.a29d5bb5f9cb87d14de41dc991e8p-4L : inexact-ok += cexp upward ldbl-128 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9a5c86ffce7615p-4L -0xd.a29d5bb5f9cb87d14de41dc991e8p-4L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9a5c86ffce76p-4L -0xd.a29d5bb5f9cb87d14de41dc994p-4L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9a5c86ffce76p-4L -0xd.a29d5bb5f9cb87d14de41dc99p-4L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9a5c86ffce76p-4L -0xd.a29d5bb5f9cb87d14de41dc99p-4L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L 0x2.1e19e0c9bab24p+72L : 0x8.5f167780e479c9a5c86ffce764p-4L -0xd.a29d5bb5f9cb87d14de41dc99p-4L : inexact-ok +cexp 0 0x1p1023 += cexp downward flt-32 0x0p+0f 0xf.fffffp+124f : 0xd.a5f96p-4f -0x8.599b4p-4f : inexact-ok += cexp tonearest flt-32 0x0p+0f 0xf.fffffp+124f : 0xd.a5f96p-4f -0x8.599b3p-4f : inexact-ok += cexp towardzero flt-32 0x0p+0f 0xf.fffffp+124f : 0xd.a5f96p-4f -0x8.599b3p-4f : inexact-ok += cexp upward flt-32 0x0p+0f 0xf.fffffp+124f : 0xd.a5f97p-4f -0x8.599b3p-4f : inexact-ok += cexp downward dbl-64 0x0p+0 0xf.fffffp+124 : 0xd.a5f963cdefe68p-4 -0x8.599b32844abbp-4 : inexact-ok += cexp tonearest dbl-64 0x0p+0 0xf.fffffp+124 : 0xd.a5f963cdefe7p-4 -0x8.599b32844aba8p-4 : inexact-ok += cexp towardzero dbl-64 0x0p+0 0xf.fffffp+124 : 0xd.a5f963cdefe68p-4 -0x8.599b32844aba8p-4 : inexact-ok += cexp upward dbl-64 0x0p+0 0xf.fffffp+124 : 0xd.a5f963cdefe7p-4 -0x8.599b32844aba8p-4 : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L -0x8.599b32844aba907p-4L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L -0x8.599b32844aba907p-4L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L -0x8.599b32844aba906p-4L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L -0x8.599b32844aba906p-4L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L -0x8.599b32844aba907p-4L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L -0x8.599b32844aba907p-4L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L -0x8.599b32844aba906p-4L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L -0x8.599b32844aba906p-4L : inexact-ok += cexp downward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L -0x8.599b32844aba906cee446be049ap-4L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L -0x8.599b32844aba906cee446be04998p-4L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L -0x8.599b32844aba906cee446be04998p-4L : inexact-ok += cexp upward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2f8p-4L -0x8.599b32844aba906cee446be04998p-4L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fbp-4L -0x8.599b32844aba906cee446be04cp-4L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb4p-4L -0x8.599b32844aba906cee446be048p-4L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fbp-4L -0x8.599b32844aba906cee446be048p-4L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb4p-4L -0x8.599b32844aba906cee446be048p-4L : inexact-ok += cexp downward dbl-64 0x0p+0 0x8p+1020 : -0xd.38cf9361195f8p-4 0x9.0292465edbaf8p-4 : inexact-ok += cexp tonearest dbl-64 0x0p+0 0x8p+1020 : -0xd.38cf9361195f8p-4 0x9.0292465edbbp-4 : inexact-ok += cexp towardzero dbl-64 0x0p+0 0x8p+1020 : -0xd.38cf9361195fp-4 0x9.0292465edbaf8p-4 : inexact-ok += cexp upward dbl-64 0x0p+0 0x8p+1020 : -0xd.38cf9361195fp-4 0x9.0292465edbbp-4 : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50cp-4L 0x9.0292465edbaff2dp-4L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50bp-4L 0x9.0292465edbaff2dp-4L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50bp-4L 0x9.0292465edbaff2dp-4L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50bp-4L 0x9.0292465edbaff2ep-4L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50cp-4L 0x9.0292465edbaff2dp-4L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50bp-4L 0x9.0292465edbaff2dp-4L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50bp-4L 0x9.0292465edbaff2dp-4L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50bp-4L 0x9.0292465edbaff2ep-4L : inexact-ok += cexp downward ldbl-128 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50b10fac29dd9038p-4L 0x9.0292465edbaff2d2e64a2845e55p-4L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50b10fac29dd9038p-4L 0x9.0292465edbaff2d2e64a2845e558p-4L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50b10fac29dd903p-4L 0x9.0292465edbaff2d2e64a2845e55p-4L : inexact-ok += cexp upward ldbl-128 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50b10fac29dd903p-4L 0x9.0292465edbaff2d2e64a2845e558p-4L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50b10fac29dd94p-4L 0x9.0292465edbaff2d2e64a2845e4p-4L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50b10fac29dd9p-4L 0x9.0292465edbaff2d2e64a2845e4p-4L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50b10fac29dd9p-4L 0x9.0292465edbaff2d2e64a2845e4p-4L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L 0x8p+1020L : -0xd.38cf9361195f50b10fac29dd9p-4L 0x9.0292465edbaff2d2e64a2845e8p-4L : inexact-ok +cexp 500 0x1p1023 += cexp downward flt-32 0x1.f4p+8f 0xf.fffffp+124f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest flt-32 0x1.f4p+8f 0xf.fffffp+124f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero flt-32 0x1.f4p+8f 0xf.fffffp+124f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp upward flt-32 0x1.f4p+8f 0xf.fffffp+124f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0x1.f4p+8 0xf.fffffp+124 : 0x2.2bb44f145617ep+720 -0x1.53fa90b97c5f4p+720 : inexact-ok += cexp tonearest dbl-64 0x1.f4p+8 0xf.fffffp+124 : 0x2.2bb44f145618p+720 -0x1.53fa90b97c5f3p+720 : inexact-ok += cexp towardzero dbl-64 0x1.f4p+8 0xf.fffffp+124 : 0x2.2bb44f145617ep+720 -0x1.53fa90b97c5f3p+720 : inexact-ok += cexp upward dbl-64 0x1.f4p+8 0xf.fffffp+124 : 0x2.2bb44f145618p+720 -0x1.53fa90b97c5f3p+720 : inexact-ok += cexp downward ldbl-96-intel 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434p+720L -0x1.53fa90b97c5f3144p+720L : inexact-ok += cexp tonearest ldbl-96-intel 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434p+720L -0x1.53fa90b97c5f3144p+720L : inexact-ok += cexp towardzero ldbl-96-intel 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434p+720L -0x1.53fa90b97c5f3142p+720L : inexact-ok += cexp upward ldbl-96-intel 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f438p+720L -0x1.53fa90b97c5f3142p+720L : inexact-ok += cexp downward ldbl-96-m68k 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434p+720L -0x1.53fa90b97c5f3144p+720L : inexact-ok += cexp tonearest ldbl-96-m68k 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434p+720L -0x1.53fa90b97c5f3144p+720L : inexact-ok += cexp towardzero ldbl-96-m68k 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434p+720L -0x1.53fa90b97c5f3142p+720L : inexact-ok += cexp upward ldbl-96-m68k 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f438p+720L -0x1.53fa90b97c5f3142p+720L : inexact-ok += cexp downward ldbl-128 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434b0b6dacfc608p+720L -0x1.53fa90b97c5f314384c5dcbe454bp+720L : inexact-ok += cexp tonearest ldbl-128 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434b0b6dacfc608p+720L -0x1.53fa90b97c5f314384c5dcbe454bp+720L : inexact-ok += cexp towardzero ldbl-128 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434b0b6dacfc608p+720L -0x1.53fa90b97c5f314384c5dcbe454ap+720L : inexact-ok += cexp upward ldbl-128 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434b0b6dacfc60ap+720L -0x1.53fa90b97c5f314384c5dcbe454ap+720L : inexact-ok += cexp downward ldbl-128ibm 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434b0b6dacfc6p+720L -0x1.53fa90b97c5f314384c5dcbe458p+720L : inexact-ok += cexp tonearest ldbl-128ibm 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434b0b6dacfc6p+720L -0x1.53fa90b97c5f314384c5dcbe458p+720L : inexact-ok += cexp towardzero ldbl-128ibm 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434b0b6dacfc6p+720L -0x1.53fa90b97c5f314384c5dcbe45p+720L : inexact-ok += cexp upward ldbl-128ibm 0x1.f4p+8L 0xf.fffffp+124L : 0x2.2bb44f145617f434b0b6dacfc7p+720L -0x1.53fa90b97c5f314384c5dcbe45p+720L : inexact-ok += cexp downward dbl-64 0x1.f4p+8 0x8p+1020 : -0x2.1a57a00f46ca2p+720 0x1.6eda2234d2fb7p+720 : inexact-ok += cexp tonearest dbl-64 0x1.f4p+8 0x8p+1020 : -0x2.1a57a00f46cap+720 0x1.6eda2234d2fb8p+720 : inexact-ok += cexp towardzero dbl-64 0x1.f4p+8 0x8p+1020 : -0x2.1a57a00f46cap+720 0x1.6eda2234d2fb7p+720 : inexact-ok += cexp upward dbl-64 0x1.f4p+8 0x8p+1020 : -0x2.1a57a00f46cap+720 0x1.6eda2234d2fb8p+720 : inexact-ok += cexp downward ldbl-96-intel 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0108p+720L 0x1.6eda2234d2fb783cp+720L : inexact-ok += cexp tonearest ldbl-96-intel 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104p+720L 0x1.6eda2234d2fb783cp+720L : inexact-ok += cexp towardzero ldbl-96-intel 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104p+720L 0x1.6eda2234d2fb783cp+720L : inexact-ok += cexp upward ldbl-96-intel 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104p+720L 0x1.6eda2234d2fb783ep+720L : inexact-ok += cexp downward ldbl-96-m68k 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0108p+720L 0x1.6eda2234d2fb783cp+720L : inexact-ok += cexp tonearest ldbl-96-m68k 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104p+720L 0x1.6eda2234d2fb783cp+720L : inexact-ok += cexp towardzero ldbl-96-m68k 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104p+720L 0x1.6eda2234d2fb783cp+720L : inexact-ok += cexp upward ldbl-96-m68k 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104p+720L 0x1.6eda2234d2fb783ep+720L : inexact-ok += cexp downward ldbl-128 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104a4a8debe272cp+720L 0x1.6eda2234d2fb783c9b2dfe363654p+720L : inexact-ok += cexp tonearest ldbl-128 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104a4a8debe272cp+720L 0x1.6eda2234d2fb783c9b2dfe363655p+720L : inexact-ok += cexp towardzero ldbl-128 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104a4a8debe272ap+720L 0x1.6eda2234d2fb783c9b2dfe363654p+720L : inexact-ok += cexp upward ldbl-128 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104a4a8debe272ap+720L 0x1.6eda2234d2fb783c9b2dfe363655p+720L : inexact-ok += cexp downward ldbl-128ibm 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104a4a8debe28p+720L 0x1.6eda2234d2fb783c9b2dfe3636p+720L : inexact-ok += cexp tonearest ldbl-128ibm 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104a4a8debe27p+720L 0x1.6eda2234d2fb783c9b2dfe36368p+720L : inexact-ok += cexp towardzero ldbl-128ibm 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104a4a8debe27p+720L 0x1.6eda2234d2fb783c9b2dfe3636p+720L : inexact-ok += cexp upward ldbl-128ibm 0x1.f4p+8L 0x8p+1020L : -0x2.1a57a00f46ca0104a4a8debe27p+720L 0x1.6eda2234d2fb783c9b2dfe36368p+720L : inexact-ok +cexp 0 0x1p16383 += cexp downward flt-32 0x0p+0f 0xf.fffffp+124f : 0xd.a5f96p-4f -0x8.599b4p-4f : inexact-ok += cexp tonearest flt-32 0x0p+0f 0xf.fffffp+124f : 0xd.a5f96p-4f -0x8.599b3p-4f : inexact-ok += cexp towardzero flt-32 0x0p+0f 0xf.fffffp+124f : 0xd.a5f96p-4f -0x8.599b3p-4f : inexact-ok += cexp upward flt-32 0x0p+0f 0xf.fffffp+124f : 0xd.a5f97p-4f -0x8.599b3p-4f : inexact-ok += cexp downward dbl-64 0x0p+0 0xf.fffffp+124 : 0xd.a5f963cdefe68p-4 -0x8.599b32844abbp-4 : inexact-ok += cexp tonearest dbl-64 0x0p+0 0xf.fffffp+124 : 0xd.a5f963cdefe7p-4 -0x8.599b32844aba8p-4 : inexact-ok += cexp towardzero dbl-64 0x0p+0 0xf.fffffp+124 : 0xd.a5f963cdefe68p-4 -0x8.599b32844aba8p-4 : inexact-ok += cexp upward dbl-64 0x0p+0 0xf.fffffp+124 : 0xd.a5f963cdefe7p-4 -0x8.599b32844aba8p-4 : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L -0x8.599b32844aba907p-4L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L -0x8.599b32844aba907p-4L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L -0x8.599b32844aba906p-4L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L -0x8.599b32844aba906p-4L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L -0x8.599b32844aba907p-4L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L -0x8.599b32844aba907p-4L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L -0x8.599b32844aba906p-4L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L -0x8.599b32844aba906p-4L : inexact-ok += cexp downward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L -0x8.599b32844aba906cee446be049ap-4L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L -0x8.599b32844aba906cee446be04998p-4L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L -0x8.599b32844aba906cee446be04998p-4L : inexact-ok += cexp upward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2f8p-4L -0x8.599b32844aba906cee446be04998p-4L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fbp-4L -0x8.599b32844aba906cee446be04cp-4L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb4p-4L -0x8.599b32844aba906cee446be048p-4L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fbp-4L -0x8.599b32844aba906cee446be048p-4L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb4p-4L -0x8.599b32844aba906cee446be048p-4L : inexact-ok += cexp downward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : -0xf.fff31767d5bbp-4 0x1.452fc98b34e96p-8 : inexact-ok += cexp tonearest dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : -0xf.fff31767d5ba8p-4 0x1.452fc98b34e97p-8 : inexact-ok += cexp towardzero dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : -0xf.fff31767d5ba8p-4 0x1.452fc98b34e96p-8 : inexact-ok += cexp upward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : -0xf.fff31767d5ba8p-4 0x1.452fc98b34e97p-8 : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e1p-4L 0x1.452fc98b34e96b6p-8L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L 0x1.452fc98b34e96b62p-8L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L 0x1.452fc98b34e96b6p-8L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L 0x1.452fc98b34e96b62p-8L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e1p-4L 0x1.452fc98b34e96b6p-8L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L 0x1.452fc98b34e96b62p-8L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L 0x1.452fc98b34e96b6p-8L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L 0x1.452fc98b34e96b62p-8L : inexact-ok += cexp downward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f138p-4L 0x1.452fc98b34e96b61139b09a7c84ap-8L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f13p-4L 0x1.452fc98b34e96b61139b09a7c84ap-8L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f13p-4L 0x1.452fc98b34e96b61139b09a7c84ap-8L : inexact-ok += cexp upward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f13p-4L 0x1.452fc98b34e96b61139b09a7c84bp-8L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f4p-4L 0x1.452fc98b34e96b61139b09a7c8p-8L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070fp-4L 0x1.452fc98b34e96b61139b09a7c88p-8L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070fp-4L 0x1.452fc98b34e96b61139b09a7c8p-8L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070fp-4L 0x1.452fc98b34e96b61139b09a7c88p-8L : inexact-ok += cexp downward ldbl-96-intel 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ebfp-4L 0x6.3ad4b2136cc68818p-4L : inexact-ok += cexp tonearest ldbl-96-intel 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ecp-4L 0x6.3ad4b2136cc6882p-4L : inexact-ok += cexp towardzero ldbl-96-intel 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ebfp-4L 0x6.3ad4b2136cc68818p-4L : inexact-ok += cexp upward ldbl-96-intel 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ecp-4L 0x6.3ad4b2136cc6882p-4L : inexact-ok += cexp downward ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ebfp-4L 0x6.3ad4b2136cc68818p-4L : inexact-ok += cexp tonearest ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ecp-4L 0x6.3ad4b2136cc6882p-4L : inexact-ok += cexp towardzero ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ebfp-4L 0x6.3ad4b2136cc68818p-4L : inexact-ok += cexp upward ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ecp-4L 0x6.3ad4b2136cc6882p-4L : inexact-ok += cexp downward ldbl-128 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ebf8da5d687bf358p-4L 0x6.3ad4b2136cc6881f0ca607c7946p-4L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ebf8da5d687bf36p-4L 0x6.3ad4b2136cc6881f0ca607c7946p-4L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ebf8da5d687bf358p-4L 0x6.3ad4b2136cc6881f0ca607c7946p-4L : inexact-ok += cexp upward ldbl-128 0x0p+0L 0x8p+16380L : 0xe.bcc2fc82ae39ebf8da5d687bf36p-4L 0x6.3ad4b2136cc6881f0ca607c79464p-4L : inexact-ok += cexp downward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526978p-4L -0xe.f1a3e1dc468a921dddb4e37fbe6p-4L : inexact-ok += cexp tonearest ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526974p-4L -0xe.f1a3e1dc468a921dddb4e37fbe6p-4L : inexact-ok += cexp towardzero ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526974p-4L -0xe.f1a3e1dc468a921dddb4e37fbe58p-4L : inexact-ok += cexp upward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526974p-4L -0xe.f1a3e1dc468a921dddb4e37fbe58p-4L : inexact-ok += cexp downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526ap-4L -0xe.f1a3e1dc468a921dddb4e37fcp-4L : inexact-ok += cexp tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526ap-4L -0xe.f1a3e1dc468a921dddb4e37fcp-4L : inexact-ok += cexp towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c2306055268p-4L -0xe.f1a3e1dc468a921dddb4e37fbcp-4L : inexact-ok += cexp upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c2306055268p-4L -0xe.f1a3e1dc468a921dddb4e37fbcp-4L : inexact-ok +cexp -10000 0x1p16383 += cexp downward flt-32 -0x2.71p+12f 0xf.fffffp+124f : 0x0p+0f -0x8p-152f : inexact-ok underflow errno-erange-ok += cexp tonearest flt-32 -0x2.71p+12f 0xf.fffffp+124f : 0x0p+0f -0x0p+0f : inexact-ok underflow errno-erange-ok += cexp towardzero flt-32 -0x2.71p+12f 0xf.fffffp+124f : 0x0p+0f -0x0p+0f : inexact-ok underflow errno-erange-ok += cexp upward flt-32 -0x2.71p+12f 0xf.fffffp+124f : 0x8p-152f -0x0p+0f : inexact-ok underflow errno-erange-ok += cexp downward dbl-64 -0x2.71p+12 0xf.fffffp+124 : 0x0p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp tonearest dbl-64 -0x2.71p+12 0xf.fffffp+124 : 0x0p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += cexp towardzero dbl-64 -0x2.71p+12 0xf.fffffp+124 : 0x0p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += cexp upward dbl-64 -0x2.71p+12 0xf.fffffp+124 : 0x4p-1076 -0x0p+0 : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fap-14428L -0x1.148b929412b0629cp-14428L : inexact-ok += cexp tonearest ldbl-96-intel -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fap-14428L -0x1.148b929412b0629cp-14428L : inexact-ok += cexp towardzero ldbl-96-intel -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fap-14428L -0x1.148b929412b0629ap-14428L : inexact-ok += cexp upward ldbl-96-intel -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fcp-14428L -0x1.148b929412b0629ap-14428L : inexact-ok += cexp downward ldbl-96-m68k -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fap-14428L -0x1.148b929412b0629cp-14428L : inexact-ok += cexp tonearest ldbl-96-m68k -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fap-14428L -0x1.148b929412b0629cp-14428L : inexact-ok += cexp towardzero ldbl-96-m68k -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fap-14428L -0x1.148b929412b0629ap-14428L : inexact-ok += cexp upward ldbl-96-m68k -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fcp-14428L -0x1.148b929412b0629ap-14428L : inexact-ok += cexp downward ldbl-128 -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fa87507d1789dfp-14428L -0x1.148b929412b0629b094c40cf114dp-14428L : inexact-ok += cexp tonearest ldbl-128 -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fa87507d1789ep-14428L -0x1.148b929412b0629b094c40cf114dp-14428L : inexact-ok += cexp towardzero ldbl-128 -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fa87507d1789dfp-14428L -0x1.148b929412b0629b094c40cf114cp-14428L : inexact-ok += cexp upward ldbl-128 -0x2.71p+12L 0xf.fffffp+124L : 0x1.c4053e6f86ae06fa87507d1789ep-14428L -0x1.148b929412b0629b094c40cf114cp-14428L : inexact-ok += cexp downward ldbl-128ibm -0x2.71p+12L 0xf.fffffp+124L : 0x0p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128ibm -0x2.71p+12L 0xf.fffffp+124L : 0x0p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128ibm -0x2.71p+12L 0xf.fffffp+124L : 0x0p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128ibm -0x2.71p+12L 0xf.fffffp+124L : 0x4p-1076L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward dbl-64 -0x2.71p+12 0xf.ffffffffffff8p+1020 : -0x4p-1076 0x0p+0 : inexact-ok underflow errno-erange-ok += cexp tonearest dbl-64 -0x2.71p+12 0xf.ffffffffffff8p+1020 : -0x0p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += cexp towardzero dbl-64 -0x2.71p+12 0xf.ffffffffffff8p+1020 : -0x0p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += cexp upward dbl-64 -0x2.71p+12 0xf.ffffffffffff8p+1020 : -0x0p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0fp-14428L 0x2.a11e2ecfaecac19p-14436L : inexact-ok += cexp tonearest ldbl-96-intel -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0fp-14428L 0x2.a11e2ecfaecac194p-14436L : inexact-ok += cexp towardzero ldbl-96-intel -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0ecp-14428L 0x2.a11e2ecfaecac19p-14436L : inexact-ok += cexp upward ldbl-96-intel -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0ecp-14428L 0x2.a11e2ecfaecac194p-14436L : inexact-ok += cexp downward ldbl-96-m68k -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0fp-14428L 0x2.a11e2ecfaecac19p-14436L : inexact-ok += cexp tonearest ldbl-96-m68k -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0fp-14428L 0x2.a11e2ecfaecac194p-14436L : inexact-ok += cexp towardzero ldbl-96-m68k -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0ecp-14428L 0x2.a11e2ecfaecac19p-14436L : inexact-ok += cexp upward ldbl-96-m68k -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0ecp-14428L 0x2.a11e2ecfaecac194p-14436L : inexact-ok += cexp downward ldbl-128 -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0efbe7438c4fcc4p-14428L 0x2.a11e2ecfaecac192b6a0e262eb96p-14436L : inexact-ok += cexp tonearest ldbl-128 -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0efbe7438c4fcc2p-14428L 0x2.a11e2ecfaecac192b6a0e262eb98p-14436L : inexact-ok += cexp towardzero ldbl-128 -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0efbe7438c4fcc2p-14428L 0x2.a11e2ecfaecac192b6a0e262eb96p-14436L : inexact-ok += cexp upward ldbl-128 -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x2.11e61ef928e7d0efbe7438c4fcc2p-14428L 0x2.a11e2ecfaecac192b6a0e262eb98p-14436L : inexact-ok += cexp downward ldbl-128ibm -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x4p-1076L 0x0p+0L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128ibm -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x0p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128ibm -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x0p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128ibm -0x2.71p+12L 0xf.ffffffffffff8p+1020L : -0x0p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751cp-14428L 0xc.e535876597146d4p-14432L : inexact-ok += cexp tonearest ldbl-96-intel -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751cp-14428L 0xc.e535876597146d4p-14432L : inexact-ok += cexp towardzero ldbl-96-intel -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751cp-14428L 0xc.e535876597146d4p-14432L : inexact-ok += cexp upward ldbl-96-intel -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751ep-14428L 0xc.e535876597146d5p-14432L : inexact-ok += cexp downward ldbl-96-m68k -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751cp-14428L 0xc.e535876597146d4p-14432L : inexact-ok += cexp tonearest ldbl-96-m68k -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751cp-14428L 0xc.e535876597146d4p-14432L : inexact-ok += cexp towardzero ldbl-96-m68k -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751cp-14428L 0xc.e535876597146d4p-14432L : inexact-ok += cexp upward ldbl-96-m68k -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751ep-14428L 0xc.e535876597146d5p-14432L : inexact-ok += cexp downward ldbl-128 -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751c32b0e3dea10dp-14428L 0xc.e535876597146d43011c92edfep-14432L : inexact-ok += cexp tonearest ldbl-128 -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751c32b0e3dea10dp-14428L 0xc.e535876597146d43011c92edfep-14432L : inexact-ok += cexp towardzero ldbl-128 -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751c32b0e3dea10dp-14428L 0xc.e535876597146d43011c92edfep-14432L : inexact-ok += cexp upward ldbl-128 -0x2.71p+12L 0x8p+16380L : 0x1.e8166e7f3558751c32b0e3dea10ep-14428L 0xc.e535876597146d43011c92edfe08p-14432L : inexact-ok += cexp downward ldbl-128 -0x2.71p+12L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xb.d543737097bf3314fbbe8e859c68p-14432L -0x1.eeedb82a3f993d2142211659ef2ap-14428L : inexact-ok += cexp tonearest ldbl-128 -0x2.71p+12L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xb.d543737097bf3314fbbe8e859c68p-14432L -0x1.eeedb82a3f993d2142211659ef2ap-14428L : inexact-ok += cexp towardzero ldbl-128 -0x2.71p+12L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xb.d543737097bf3314fbbe8e859c6p-14432L -0x1.eeedb82a3f993d2142211659ef29p-14428L : inexact-ok += cexp upward ldbl-128 -0x2.71p+12L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xb.d543737097bf3314fbbe8e859c6p-14432L -0x1.eeedb82a3f993d2142211659ef29p-14428L : inexact-ok += cexp downward ldbl-128ibm -0x2.71p+12L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4p-1076L -0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128ibm -0x2.71p+12L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128ibm -0x2.71p+12L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128ibm -0x2.71p+12L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok +cexp 88.75 0.75 += cexp downward flt-32 0x5.8cp+4f 0xcp-4f : 0xc.0783ap+124f 0xb.34dd5p+124f : inexact-ok += cexp tonearest flt-32 0x5.8cp+4f 0xcp-4f : 0xc.0783ap+124f 0xb.34dd5p+124f : inexact-ok += cexp towardzero flt-32 0x5.8cp+4f 0xcp-4f : 0xc.0783ap+124f 0xb.34dd5p+124f : inexact-ok += cexp upward flt-32 0x5.8cp+4f 0xcp-4f : 0xc.0783bp+124f 0xb.34dd6p+124f : inexact-ok += cexp downward dbl-64 0x5.8cp+4 0xcp-4 : 0xc.0783a6d3e5c3p+124 0xb.34dd5592f15a8p+124 : inexact-ok += cexp tonearest dbl-64 0x5.8cp+4 0xcp-4 : 0xc.0783a6d3e5c3p+124 0xb.34dd5592f15a8p+124 : inexact-ok += cexp towardzero dbl-64 0x5.8cp+4 0xcp-4 : 0xc.0783a6d3e5c3p+124 0xb.34dd5592f15a8p+124 : inexact-ok += cexp upward dbl-64 0x5.8cp+4 0xcp-4 : 0xc.0783a6d3e5c38p+124 0xb.34dd5592f15bp+124 : inexact-ok += cexp downward ldbl-96-intel 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237p+124L 0xb.34dd5592f15a8d6p+124L : inexact-ok += cexp tonearest ldbl-96-intel 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3238p+124L 0xb.34dd5592f15a8d6p+124L : inexact-ok += cexp towardzero ldbl-96-intel 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237p+124L 0xb.34dd5592f15a8d6p+124L : inexact-ok += cexp upward ldbl-96-intel 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3238p+124L 0xb.34dd5592f15a8d7p+124L : inexact-ok += cexp downward ldbl-96-m68k 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237p+124L 0xb.34dd5592f15a8d6p+124L : inexact-ok += cexp tonearest ldbl-96-m68k 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3238p+124L 0xb.34dd5592f15a8d6p+124L : inexact-ok += cexp towardzero ldbl-96-m68k 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237p+124L 0xb.34dd5592f15a8d6p+124L : inexact-ok += cexp upward ldbl-96-m68k 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3238p+124L 0xb.34dd5592f15a8d7p+124L : inexact-ok += cexp downward ldbl-128 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237fe2c102f4bap+124L 0xb.34dd5592f15a8d637411b4ac57ep+124L : inexact-ok += cexp tonearest ldbl-128 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237fe2c102f4ba08p+124L 0xb.34dd5592f15a8d637411b4ac57e8p+124L : inexact-ok += cexp towardzero ldbl-128 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237fe2c102f4bap+124L 0xb.34dd5592f15a8d637411b4ac57ep+124L : inexact-ok += cexp upward ldbl-128 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237fe2c102f4ba08p+124L 0xb.34dd5592f15a8d637411b4ac57e8p+124L : inexact-ok += cexp downward ldbl-128ibm 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237fe2c102f4b8p+124L 0xb.34dd5592f15a8d637411b4ac54p+124L : inexact-ok += cexp tonearest ldbl-128ibm 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237fe2c102f4bcp+124L 0xb.34dd5592f15a8d637411b4ac58p+124L : inexact-ok += cexp towardzero ldbl-128ibm 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237fe2c102f4b8p+124L 0xb.34dd5592f15a8d637411b4ac54p+124L : inexact-ok += cexp upward ldbl-128ibm 0x5.8cp+4L 0xcp-4L : 0xc.0783a6d3e5c3237fe2c102f4bcp+124L 0xb.34dd5592f15a8d637411b4ac58p+124L : inexact-ok +cexp -95 0.75 += cexp downward flt-32 -0x5.fp+4f 0xcp-4f : 0x5.a1p-140f 0x5.3e8p-140f : inexact-ok underflow errno-erange-ok += cexp tonearest flt-32 -0x5.fp+4f 0xcp-4f : 0x5.a18p-140f 0x5.3fp-140f : inexact-ok underflow errno-erange-ok += cexp towardzero flt-32 -0x5.fp+4f 0xcp-4f : 0x5.a1p-140f 0x5.3e8p-140f : inexact-ok underflow errno-erange-ok += cexp upward flt-32 -0x5.fp+4f 0xcp-4f : 0x5.a18p-140f 0x5.3fp-140f : inexact-ok underflow errno-erange-ok += cexp downward dbl-64 -0x5.fp+4 0xcp-4 : 0x5.a16b1470bfb7cp-140 0x5.3ed1f6801e8a8p-140 : inexact-ok += cexp tonearest dbl-64 -0x5.fp+4 0xcp-4 : 0x5.a16b1470bfb7cp-140 0x5.3ed1f6801e8acp-140 : inexact-ok += cexp towardzero dbl-64 -0x5.fp+4 0xcp-4 : 0x5.a16b1470bfb7cp-140 0x5.3ed1f6801e8a8p-140 : inexact-ok += cexp upward dbl-64 -0x5.fp+4 0xcp-4 : 0x5.a16b1470bfb8p-140 0x5.3ed1f6801e8acp-140 : inexact-ok += cexp downward ldbl-96-intel -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfd8p-140L 0x5.3ed1f6801e8aae38p-140L : inexact-ok += cexp tonearest ldbl-96-intel -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfd8p-140L 0x5.3ed1f6801e8aae4p-140L : inexact-ok += cexp towardzero ldbl-96-intel -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfd8p-140L 0x5.3ed1f6801e8aae38p-140L : inexact-ok += cexp upward ldbl-96-intel -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfep-140L 0x5.3ed1f6801e8aae4p-140L : inexact-ok += cexp downward ldbl-96-m68k -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfd8p-140L 0x5.3ed1f6801e8aae38p-140L : inexact-ok += cexp tonearest ldbl-96-m68k -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfd8p-140L 0x5.3ed1f6801e8aae4p-140L : inexact-ok += cexp towardzero ldbl-96-m68k -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfd8p-140L 0x5.3ed1f6801e8aae38p-140L : inexact-ok += cexp upward ldbl-96-m68k -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfep-140L 0x5.3ed1f6801e8aae4p-140L : inexact-ok += cexp downward ldbl-128 -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfdbbfbeddb710d8p-140L 0x5.3ed1f6801e8aae3c0059585ef1e8p-140L : inexact-ok += cexp tonearest ldbl-128 -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfdbbfbeddb710d8p-140L 0x5.3ed1f6801e8aae3c0059585ef1e8p-140L : inexact-ok += cexp towardzero ldbl-128 -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfdbbfbeddb710d8p-140L 0x5.3ed1f6801e8aae3c0059585ef1e8p-140L : inexact-ok += cexp upward ldbl-128 -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfdbbfbeddb710dcp-140L 0x5.3ed1f6801e8aae3c0059585ef1ecp-140L : inexact-ok += cexp downward ldbl-128ibm -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfdbbfbeddb71p-140L 0x5.3ed1f6801e8aae3c0059585efp-140L : inexact-ok += cexp tonearest ldbl-128ibm -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfdbbfbeddb71p-140L 0x5.3ed1f6801e8aae3c0059585ef2p-140L : inexact-ok += cexp towardzero ldbl-128ibm -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfdbbfbeddb71p-140L 0x5.3ed1f6801e8aae3c0059585efp-140L : inexact-ok += cexp upward ldbl-128ibm -0x5.fp+4L 0xcp-4L : 0x5.a16b1470bfb7dfdbbfbeddb712p-140L 0x5.3ed1f6801e8aae3c0059585ef2p-140L : inexact-ok +cexp 709.8125 0.75 += cexp downward flt-32 0x2.c5dp+8f 0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp tonearest flt-32 0x2.c5dp+8f 0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero flt-32 0x2.c5dp+8f 0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp upward flt-32 0x2.c5dp+8f 0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0x2.c5dp+8 0xcp-4 : 0xc.0f9cc448d42c8p+1020 0xb.3c68a413f446p+1020 : inexact-ok += cexp tonearest dbl-64 0x2.c5dp+8 0xcp-4 : 0xc.0f9cc448d42c8p+1020 0xb.3c68a413f4468p+1020 : inexact-ok += cexp towardzero dbl-64 0x2.c5dp+8 0xcp-4 : 0xc.0f9cc448d42c8p+1020 0xb.3c68a413f446p+1020 : inexact-ok += cexp upward dbl-64 0x2.c5dp+8 0xcp-4 : 0xc.0f9cc448d42dp+1020 0xb.3c68a413f4468p+1020 : inexact-ok += cexp downward ldbl-96-intel 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e1p+1020L 0xb.3c68a413f4464cep+1020L : inexact-ok += cexp tonearest ldbl-96-intel 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e2p+1020L 0xb.3c68a413f4464cep+1020L : inexact-ok += cexp towardzero ldbl-96-intel 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e1p+1020L 0xb.3c68a413f4464cep+1020L : inexact-ok += cexp upward ldbl-96-intel 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e2p+1020L 0xb.3c68a413f4464cfp+1020L : inexact-ok += cexp downward ldbl-96-m68k 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e1p+1020L 0xb.3c68a413f4464cep+1020L : inexact-ok += cexp tonearest ldbl-96-m68k 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e2p+1020L 0xb.3c68a413f4464cep+1020L : inexact-ok += cexp towardzero ldbl-96-m68k 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e1p+1020L 0xb.3c68a413f4464cep+1020L : inexact-ok += cexp upward ldbl-96-m68k 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e2p+1020L 0xb.3c68a413f4464cfp+1020L : inexact-ok += cexp downward ldbl-128 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e187ae50ff49e08p+1020L 0xb.3c68a413f4464ce19f9dc01a8ce8p+1020L : inexact-ok += cexp tonearest ldbl-128 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e187ae50ff49e1p+1020L 0xb.3c68a413f4464ce19f9dc01a8ce8p+1020L : inexact-ok += cexp towardzero ldbl-128 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e187ae50ff49e08p+1020L 0xb.3c68a413f4464ce19f9dc01a8ce8p+1020L : inexact-ok += cexp upward ldbl-128 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e187ae50ff49e1p+1020L 0xb.3c68a413f4464ce19f9dc01a8cfp+1020L : inexact-ok += cexp downward ldbl-128ibm 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e187ae50ff49cp+1020L 0xb.3c68a413f4464ce19f9dc01a8cp+1020L : inexact-ok += cexp tonearest ldbl-128ibm 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e187ae50ff4ap+1020L 0xb.3c68a413f4464ce19f9dc01a8cp+1020L : inexact-ok += cexp towardzero ldbl-128ibm 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e187ae50ff49cp+1020L 0xb.3c68a413f4464ce19f9dc01a8cp+1020L : inexact-ok += cexp upward ldbl-128ibm 0x2.c5dp+8L 0xcp-4L : 0xc.0f9cc448d42c9e187ae50ff4ap+1020L 0xb.3c68a413f4464ce19f9dc01a9p+1020L : inexact-ok +cexp -720 0.75 += cexp downward flt-32 -0x2.dp+8f 0xcp-4f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += cexp tonearest flt-32 -0x2.dp+8f 0xcp-4f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += cexp towardzero flt-32 -0x2.dp+8f 0xcp-4f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += cexp upward flt-32 -0x2.dp+8f 0xcp-4f : 0x8p-152f 0x8p-152f : inexact-ok underflow errno-erange-ok += cexp downward dbl-64 -0x2.dp+8 0xcp-4 : 0x1.c078b9f14p-1040 0x1.a1cb672ccp-1040 : inexact-ok underflow errno-erange-ok += cexp tonearest dbl-64 -0x2.dp+8 0xcp-4 : 0x1.c078b9f18p-1040 0x1.a1cb672dp-1040 : inexact-ok underflow errno-erange-ok += cexp towardzero dbl-64 -0x2.dp+8 0xcp-4 : 0x1.c078b9f14p-1040 0x1.a1cb672ccp-1040 : inexact-ok underflow errno-erange-ok += cexp upward dbl-64 -0x2.dp+8 0xcp-4 : 0x1.c078b9f18p-1040 0x1.a1cb672dp-1040 : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de70502p-1040L 0x1.a1cb672cfaaa50ecp-1040L : inexact-ok += cexp tonearest ldbl-96-intel -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de70504p-1040L 0x1.a1cb672cfaaa50eep-1040L : inexact-ok += cexp towardzero ldbl-96-intel -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de70502p-1040L 0x1.a1cb672cfaaa50ecp-1040L : inexact-ok += cexp upward ldbl-96-intel -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de70504p-1040L 0x1.a1cb672cfaaa50eep-1040L : inexact-ok += cexp downward ldbl-96-m68k -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de70502p-1040L 0x1.a1cb672cfaaa50ecp-1040L : inexact-ok += cexp tonearest ldbl-96-m68k -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de70504p-1040L 0x1.a1cb672cfaaa50eep-1040L : inexact-ok += cexp towardzero ldbl-96-m68k -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de70502p-1040L 0x1.a1cb672cfaaa50ecp-1040L : inexact-ok += cexp upward ldbl-96-m68k -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de70504p-1040L 0x1.a1cb672cfaaa50eep-1040L : inexact-ok += cexp downward ldbl-128 -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de705030eb7be1c38bep-1040L 0x1.a1cb672cfaaa50edd9f9bf2df7e2p-1040L : inexact-ok += cexp tonearest ldbl-128 -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de705030eb7be1c38bep-1040L 0x1.a1cb672cfaaa50edd9f9bf2df7e3p-1040L : inexact-ok += cexp towardzero ldbl-128 -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de705030eb7be1c38bep-1040L 0x1.a1cb672cfaaa50edd9f9bf2df7e2p-1040L : inexact-ok += cexp upward ldbl-128 -0x2.dp+8L 0xcp-4L : 0x1.c078b9f17de705030eb7be1c38bfp-1040L 0x1.a1cb672cfaaa50edd9f9bf2df7e3p-1040L : inexact-ok += cexp downward ldbl-128ibm -0x2.dp+8L 0xcp-4L : 0x1.c078b9f14p-1040L 0x1.a1cb672ccp-1040L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128ibm -0x2.dp+8L 0xcp-4L : 0x1.c078b9f18p-1040L 0x1.a1cb672dp-1040L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128ibm -0x2.dp+8L 0xcp-4L : 0x1.c078b9f14p-1040L 0x1.a1cb672ccp-1040L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128ibm -0x2.dp+8L 0xcp-4L : 0x1.c078b9f18p-1040L 0x1.a1cb672dp-1040L : inexact-ok underflow errno-erange-ok +cexp 11356.5625 0.75 += cexp downward flt-32 0x2.c5c9p+12f 0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp tonearest flt-32 0x2.c5c9p+12f 0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero flt-32 0x2.c5c9p+12f 0xcp-4f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp upward flt-32 0x2.c5c9p+12f 0xcp-4f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0x2.c5c9p+12 0xcp-4 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0x2.c5c9p+12 0xcp-4 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0x2.c5c9p+12 0xcp-4 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0x2.c5c9p+12 0xcp-4 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f28p+16380L 0xb.574da480ee94521p+16380L : inexact-ok += cexp tonearest ldbl-96-intel 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f29p+16380L 0xb.574da480ee94521p+16380L : inexact-ok += cexp towardzero ldbl-96-intel 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f28p+16380L 0xb.574da480ee94521p+16380L : inexact-ok += cexp upward ldbl-96-intel 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f29p+16380L 0xb.574da480ee94522p+16380L : inexact-ok += cexp downward ldbl-96-m68k 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f28p+16380L 0xb.574da480ee94521p+16380L : inexact-ok += cexp tonearest ldbl-96-m68k 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f29p+16380L 0xb.574da480ee94521p+16380L : inexact-ok += cexp towardzero ldbl-96-m68k 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f28p+16380L 0xb.574da480ee94521p+16380L : inexact-ok += cexp upward ldbl-96-m68k 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f29p+16380L 0xb.574da480ee94522p+16380L : inexact-ok += cexp downward ldbl-128 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f2895c5da23f1578p+16380L 0xb.574da480ee945213770f41b94b9p+16380L : inexact-ok += cexp tonearest ldbl-128 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f2895c5da23f1578p+16380L 0xb.574da480ee945213770f41b94b9p+16380L : inexact-ok += cexp towardzero ldbl-128 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f2895c5da23f1578p+16380L 0xb.574da480ee945213770f41b94b9p+16380L : inexact-ok += cexp upward ldbl-128 0x2.c5c9p+12L 0xcp-4L : 0xc.2c7b4ebbdc07f2895c5da23f158p+16380L 0xb.574da480ee945213770f41b94b98p+16380L : inexact-ok += cexp downward ldbl-128ibm 0x2.c5c9p+12L 0xcp-4L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x2.c5c9p+12L 0xcp-4L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x2.c5c9p+12L 0xcp-4L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0x2.c5c9p+12L 0xcp-4L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok +cexp -11370 0.75 += cexp downward flt-32 -0x2.c6ap+12f 0xcp-4f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += cexp tonearest flt-32 -0x2.c6ap+12f 0xcp-4f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += cexp towardzero flt-32 -0x2.c6ap+12f 0xcp-4f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += cexp upward flt-32 -0x2.c6ap+12f 0xcp-4f : 0x8p-152f 0x8p-152f : inexact-ok underflow errno-erange-ok += cexp downward dbl-64 -0x2.c6ap+12 0xcp-4 : 0x0p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += cexp tonearest dbl-64 -0x2.c6ap+12 0xcp-4 : 0x0p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += cexp towardzero dbl-64 -0x2.c6ap+12 0xcp-4 : 0x0p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += cexp upward dbl-64 -0x2.c6ap+12 0xcp-4 : 0x4p-1076 0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6b8p-16404L 0x1.00cb1cf14f8p-16404L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-intel -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6cp-16404L 0x1.00cb1cf14f8p-16404L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-intel -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6b8p-16404L 0x1.00cb1cf14f8p-16404L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-intel -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6cp-16404L 0x1.00cb1cf15p-16404L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6bcp-16404L 0x1.00cb1cf14f8p-16404L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6bcp-16404L 0x1.00cb1cf14f8p-16404L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6bcp-16404L 0x1.00cb1cf14f8p-16404L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6cp-16404L 0x1.00cb1cf14fcp-16404L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6bd9627c65c9a3p-16404L 0x1.00cb1cf14f92cea76ffbfc4p-16404L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6bd9627c65c9a3p-16404L 0x1.00cb1cf14f92cea76ffbfc4p-16404L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6bd9627c65c9a3p-16404L 0x1.00cb1cf14f92cea76ffbfc4p-16404L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 -0x2.c6ap+12L 0xcp-4L : 0x1.13a6153b6bd9627c65c9a34p-16404L 0x1.00cb1cf14f92cea76ffbfc8p-16404L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128ibm -0x2.c6ap+12L 0xcp-4L : 0x0p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128ibm -0x2.c6ap+12L 0xcp-4L : 0x0p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128ibm -0x2.c6ap+12L 0xcp-4L : 0x0p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128ibm -0x2.c6ap+12L 0xcp-4L : 0x4p-1076L 0x4p-1076L : inexact-ok underflow errno-erange-ok +cexp 180 0x1p-149 += cexp downward flt-32 0xb.4p+4f 0x8p-152f : 0xf.fffffp+124f 0x6.6e68c8p+108f : inexact-ok overflow errno-erange-ok += cexp tonearest flt-32 0xb.4p+4f 0x8p-152f : plus_infty 0x6.6e68c8p+108f : inexact-ok overflow errno-erange-ok += cexp towardzero flt-32 0xb.4p+4f 0x8p-152f : 0xf.fffffp+124f 0x6.6e68c8p+108f : inexact-ok overflow errno-erange-ok += cexp upward flt-32 0xb.4p+4f 0x8p-152f : plus_infty 0x6.6e68dp+108f : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0xb.4p+4 0x8p-152 : 0xc.dcd1958ec4428p+256 0x6.6e68cac762214p+108 : inexact-ok += cexp tonearest dbl-64 0xb.4p+4 0x8p-152 : 0xc.dcd1958ec4428p+256 0x6.6e68cac762214p+108 : inexact-ok += cexp towardzero dbl-64 0xb.4p+4 0x8p-152 : 0xc.dcd1958ec4428p+256 0x6.6e68cac762214p+108 : inexact-ok += cexp upward dbl-64 0xb.4p+4 0x8p-152 : 0xc.dcd1958ec443p+256 0x6.6e68cac762218p+108 : inexact-ok += cexp downward ldbl-96-intel 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6ep+256L 0x6.6e68cac76221537p+108L : inexact-ok += cexp tonearest ldbl-96-intel 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6ep+256L 0x6.6e68cac76221537p+108L : inexact-ok += cexp towardzero ldbl-96-intel 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6ep+256L 0x6.6e68cac76221537p+108L : inexact-ok += cexp upward ldbl-96-intel 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6fp+256L 0x6.6e68cac762215378p+108L : inexact-ok += cexp downward ldbl-96-m68k 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6ep+256L 0x6.6e68cac76221537p+108L : inexact-ok += cexp tonearest ldbl-96-m68k 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6ep+256L 0x6.6e68cac76221537p+108L : inexact-ok += cexp towardzero ldbl-96-m68k 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6ep+256L 0x6.6e68cac76221537p+108L : inexact-ok += cexp upward ldbl-96-m68k 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6fp+256L 0x6.6e68cac762215378p+108L : inexact-ok += cexp downward ldbl-128 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6e599f65fac79e8p+256L 0x6.6e68cac762215372ccfb2fd63cf4p+108L : inexact-ok += cexp tonearest ldbl-128 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6e599f65fac79e8p+256L 0x6.6e68cac762215372ccfb2fd63cf4p+108L : inexact-ok += cexp towardzero ldbl-128 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6e599f65fac79e8p+256L 0x6.6e68cac762215372ccfb2fd63cf4p+108L : inexact-ok += cexp upward ldbl-128 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6e599f65fac79fp+256L 0x6.6e68cac762215372ccfb2fd63cf8p+108L : inexact-ok += cexp downward ldbl-128ibm 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6e599f65fac78p+256L 0x6.6e68cac762215372ccfb2fd63cp+108L : inexact-ok += cexp tonearest ldbl-128ibm 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6e599f65fac78p+256L 0x6.6e68cac762215372ccfb2fd63cp+108L : inexact-ok += cexp towardzero ldbl-128ibm 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6e599f65fac78p+256L 0x6.6e68cac762215372ccfb2fd63cp+108L : inexact-ok += cexp upward ldbl-128ibm 0xb.4p+4L 0x8p-152L : 0xc.dcd1958ec442a6e599f65fac7cp+256L 0x6.6e68cac762215372ccfb2fd63ep+108L : inexact-ok +cexp 1440 0x1p-1074 += cexp downward flt-32 0x5.ap+8f 0x8p-152f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp tonearest flt-32 0x5.ap+8f 0x8p-152f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero flt-32 0x5.ap+8f 0x8p-152f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp upward flt-32 0x5.ap+8f 0x8p-152f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0x5.ap+8 0x8p-152 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0x5.ap+8 0x8p-152 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0x5.ap+8 0x8p-152 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0x5.ap+8 0x8p-152 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d188p+2076L 0x1.65445a94fa1268c4p+1928L : inexact-ok += cexp tonearest ldbl-96-intel 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d188p+2076L 0x1.65445a94fa1268c4p+1928L : inexact-ok += cexp towardzero ldbl-96-intel 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d188p+2076L 0x1.65445a94fa1268c4p+1928L : inexact-ok += cexp upward ldbl-96-intel 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d18cp+2076L 0x1.65445a94fa1268c6p+1928L : inexact-ok += cexp downward ldbl-96-m68k 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d188p+2076L 0x1.65445a94fa1268c4p+1928L : inexact-ok += cexp tonearest ldbl-96-m68k 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d188p+2076L 0x1.65445a94fa1268c4p+1928L : inexact-ok += cexp towardzero ldbl-96-m68k 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d188p+2076L 0x1.65445a94fa1268c4p+1928L : inexact-ok += cexp upward ldbl-96-m68k 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d18cp+2076L 0x1.65445a94fa1268c6p+1928L : inexact-ok += cexp downward ldbl-128 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d188fdccf71176dcp+2076L 0x1.65445a94fa1268c47ee67b88bb6ep+1928L : inexact-ok += cexp tonearest ldbl-128 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d188fdccf71176dcp+2076L 0x1.65445a94fa1268c47ee67b88bb6ep+1928L : inexact-ok += cexp towardzero ldbl-128 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d188fdccf71176dcp+2076L 0x1.65445a94fa1268c47ee67b88bb6ep+1928L : inexact-ok += cexp upward ldbl-128 0x5.ap+8L 0x8p-152L : 0x2.ca88b529f424d188fdccf71176dep+2076L 0x1.65445a94fa1268c47ee67b88bb6fp+1928L : inexact-ok += cexp downward ldbl-128ibm 0x5.ap+8L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x5.ap+8L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x5.ap+8L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0x5.ap+8L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward flt-32 0x5.ap+8f 0x0p+0f : 0xf.fffffp+124f 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp tonearest flt-32 0x5.ap+8f 0x0p+0f : plus_infty 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp towardzero flt-32 0x5.ap+8f 0x0p+0f : 0xf.fffffp+124f 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp upward flt-32 0x5.ap+8f 0x0p+0f : plus_infty 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0x5.ap+8 0x0p+0 : 0xf.ffffffffffff8p+1020 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0x5.ap+8 0x0p+0 : plus_infty 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0x5.ap+8 0x0p+0 : 0xf.ffffffffffff8p+1020 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0x5.ap+8 0x0p+0 : plus_infty 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d188p+2076L 0x0p+0L : inexact-ok += cexp tonearest ldbl-96-intel 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d188p+2076L 0x0p+0L : inexact-ok += cexp towardzero ldbl-96-intel 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d188p+2076L 0x0p+0L : inexact-ok += cexp upward ldbl-96-intel 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d18cp+2076L 0x0p+0L : inexact-ok += cexp downward ldbl-96-m68k 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d188p+2076L 0x0p+0L : inexact-ok += cexp tonearest ldbl-96-m68k 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d188p+2076L 0x0p+0L : inexact-ok += cexp towardzero ldbl-96-m68k 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d188p+2076L 0x0p+0L : inexact-ok += cexp upward ldbl-96-m68k 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d18cp+2076L 0x0p+0L : inexact-ok += cexp downward ldbl-128 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d188fdccf71176dcp+2076L 0x0p+0L : inexact-ok += cexp tonearest ldbl-128 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d188fdccf71176dcp+2076L 0x0p+0L : inexact-ok += cexp towardzero ldbl-128 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d188fdccf71176dcp+2076L 0x0p+0L : inexact-ok += cexp upward ldbl-128 0x5.ap+8L 0x0p+0L : 0x2.ca88b529f424d188fdccf71176dep+2076L 0x0p+0L : inexact-ok += cexp downward ldbl-128ibm 0x5.ap+8L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x5.ap+8L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x5.ap+8L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0x5.ap+8L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0x5.ap+8 0x4p-1076 : 0xf.ffffffffffff8p+1020 0xb.2a22d4a7d093p+1000 : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0x5.ap+8 0x4p-1076 : plus_infty 0xb.2a22d4a7d0938p+1000 : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0x5.ap+8 0x4p-1076 : 0xf.ffffffffffff8p+1020 0xb.2a22d4a7d093p+1000 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0x5.ap+8 0x4p-1076 : plus_infty 0xb.2a22d4a7d0938p+1000 : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d188p+2076L 0xb.2a22d4a7d093462p+1000L : inexact-ok += cexp tonearest ldbl-96-intel 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d188p+2076L 0xb.2a22d4a7d093462p+1000L : inexact-ok += cexp towardzero ldbl-96-intel 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d188p+2076L 0xb.2a22d4a7d093462p+1000L : inexact-ok += cexp upward ldbl-96-intel 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d18cp+2076L 0xb.2a22d4a7d093463p+1000L : inexact-ok += cexp downward ldbl-96-m68k 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d188p+2076L 0xb.2a22d4a7d093462p+1000L : inexact-ok += cexp tonearest ldbl-96-m68k 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d188p+2076L 0xb.2a22d4a7d093462p+1000L : inexact-ok += cexp towardzero ldbl-96-m68k 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d188p+2076L 0xb.2a22d4a7d093462p+1000L : inexact-ok += cexp upward ldbl-96-m68k 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d18cp+2076L 0xb.2a22d4a7d093463p+1000L : inexact-ok += cexp downward ldbl-128 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d188fdccf71176dcp+2076L 0xb.2a22d4a7d0934623f733dc45db7p+1000L : inexact-ok += cexp tonearest ldbl-128 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d188fdccf71176dcp+2076L 0xb.2a22d4a7d0934623f733dc45db7p+1000L : inexact-ok += cexp towardzero ldbl-128 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d188fdccf71176dcp+2076L 0xb.2a22d4a7d0934623f733dc45db7p+1000L : inexact-ok += cexp upward ldbl-128 0x5.ap+8L 0x4p-1076L : 0x2.ca88b529f424d188fdccf71176dep+2076L 0xb.2a22d4a7d0934623f733dc45db78p+1000L : inexact-ok += cexp downward ldbl-128ibm 0x5.ap+8L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xb.2a22d4a7d0934623f733dc45d8p+1000L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x5.ap+8L 0x4p-1076L : plus_infty 0xb.2a22d4a7d0934623f733dc45dcp+1000L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x5.ap+8L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xb.2a22d4a7d0934623f733dc45d8p+1000L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0x5.ap+8L 0x4p-1076L : plus_infty 0xb.2a22d4a7d0934623f733dc45dcp+1000L : inexact-ok overflow errno-erange-ok +cexp 22730 0x1p-16434 += cexp downward flt-32 0x5.8cap+12f 0x8p-152f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp tonearest flt-32 0x5.8cap+12f 0x8p-152f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero flt-32 0x5.8cap+12f 0x8p-152f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp upward flt-32 0x5.8cap+12f 0x8p-152f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0x5.8cap+12 0x8p-152 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0x5.8cap+12 0x8p-152 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0x5.8cap+12 0x8p-152 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0x5.8cap+12 0x8p-152 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0x5.8cap+12L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128ibm 0x5.8cap+12L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x5.8cap+12L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0x5.8cap+12L 0x8p-152L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward flt-32 0x5.8cap+12f 0x0p+0f : 0xf.fffffp+124f 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp tonearest flt-32 0x5.8cap+12f 0x0p+0f : plus_infty 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp towardzero flt-32 0x5.8cap+12f 0x0p+0f : 0xf.fffffp+124f 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp upward flt-32 0x5.8cap+12f 0x0p+0f : plus_infty 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0x5.8cap+12 0x0p+0 : 0xf.ffffffffffff8p+1020 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0x5.8cap+12 0x0p+0 : plus_infty 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0x5.8cap+12 0x0p+0 : 0xf.ffffffffffff8p+1020 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0x5.8cap+12 0x0p+0 : plus_infty 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0x5.8cap+12L 0x0p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128ibm 0x5.8cap+12L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x5.8cap+12L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0x5.8cap+12L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0x5.8cap+12 0x4p-1076 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0x5.8cap+12 0x4p-1076 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0x5.8cap+12 0x4p-1076 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0x5.8cap+12 0x4p-1076 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0x5.8cap+12L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128ibm 0x5.8cap+12L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x5.8cap+12L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0x5.8cap+12L 0x4p-1076L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffp+16380L 0x5.7ee03dfa85911cf8p+16356L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x5.8cap+12L 0x4p-16436L : plus_infty 0x5.7ee03dfa85911dp+16356L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffp+16380L 0x5.7ee03dfa85911cf8p+16356L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0x5.8cap+12L 0x4p-16436L : plus_infty 0x5.7ee03dfa85911dp+16356L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffp+16380L 0x5.7ee03dfa85911cf8p+16356L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x5.8cap+12L 0x4p-16436L : plus_infty 0x5.7ee03dfa85911dp+16356L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffp+16380L 0x5.7ee03dfa85911cf8p+16356L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0x5.8cap+12L 0x4p-16436L : plus_infty 0x5.7ee03dfa85911dp+16356L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffffffffffffff8p+16380L 0x5.7ee03dfa85911cfdf85fbeeecbf8p+16356L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0x5.8cap+12L 0x4p-16436L : plus_infty 0x5.7ee03dfa85911cfdf85fbeeecbf8p+16356L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0x5.8cap+12L 0x4p-16436L : 0xf.fffffffffffffffffffffffffff8p+16380L 0x5.7ee03dfa85911cfdf85fbeeecbf8p+16356L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0x5.8cap+12L 0x4p-16436L : plus_infty 0x5.7ee03dfa85911cfdf85fbeeecbfcp+16356L : inexact-ok overflow errno-erange-ok +cexp 1e6 0 += cexp downward flt-32 0xf.424p+16f 0x0p+0f : 0xf.fffffp+124f 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp tonearest flt-32 0xf.424p+16f 0x0p+0f : plus_infty 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp towardzero flt-32 0xf.424p+16f 0x0p+0f : 0xf.fffffp+124f 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp upward flt-32 0xf.424p+16f 0x0p+0f : plus_infty 0x0p+0f : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0xf.424p+16 0x0p+0 : 0xf.ffffffffffff8p+1020 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0xf.424p+16 0x0p+0 : plus_infty 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0xf.424p+16 0x0p+0 : 0xf.ffffffffffff8p+1020 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0xf.424p+16 0x0p+0 : plus_infty 0x0p+0 : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0xf.424p+16L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0xf.424p+16L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0xf.424p+16L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0xf.424p+16L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0xf.424p+16L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0xf.424p+16L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0xf.424p+16L 0x0p+0L : 0xf.fffffffffffffffp+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0xf.424p+16L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0xf.424p+16L 0x0p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0xf.424p+16L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0xf.424p+16L 0x0p+0L : 0xf.fffffffffffffffffffffffffff8p+16380L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0xf.424p+16L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128ibm 0xf.424p+16L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0xf.424p+16L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0xf.424p+16L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0xf.424p+16L 0x0p+0L : plus_infty 0x0p+0L : inexact-ok overflow errno-erange-ok +cexp 1e6 min += cexp downward flt-32 0xf.424p+16f 0x4p-128f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp tonearest flt-32 0xf.424p+16f 0x4p-128f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero flt-32 0xf.424p+16f 0x4p-128f : 0xf.fffffp+124f 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp upward flt-32 0xf.424p+16f 0x4p-128f : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0xf.424p+16 0x4p-128 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0xf.424p+16 0x4p-128 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0xf.424p+16 0x4p-128 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0xf.424p+16 0x4p-128 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0xf.424p+16L 0x4p-128L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0xf.424p+16L 0x4p-128L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0xf.424p+16L 0x4p-128L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0xf.424p+16L 0x4p-128L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0xf.424p+16L 0x4p-128L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0xf.424p+16L 0x4p-128L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0xf.424p+16L 0x4p-128L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0xf.424p+16L 0x4p-128L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0xf.424p+16L 0x4p-128L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0xf.424p+16L 0x4p-128L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0xf.424p+16L 0x4p-128L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0xf.424p+16L 0x4p-128L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128ibm 0xf.424p+16L 0x4p-128L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0xf.424p+16L 0x4p-128L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0xf.424p+16L 0x4p-128L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0xf.424p+16L 0x4p-128L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0xf.424p+16 0x4p-1024 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0xf.424p+16 0x4p-1024 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0xf.424p+16 0x4p-1024 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0xf.424p+16 0x4p-1024 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0xf.424p+16L 0x4p-1024L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0xf.424p+16L 0x4p-1024L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0xf.424p+16L 0x4p-1024L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0xf.424p+16L 0x4p-1024L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0xf.424p+16L 0x4p-1024L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0xf.424p+16L 0x4p-1024L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0xf.424p+16L 0x4p-1024L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0xf.424p+16L 0x4p-1024L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0xf.424p+16L 0x4p-1024L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0xf.424p+16L 0x4p-1024L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0xf.424p+16L 0x4p-1024L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0xf.424p+16L 0x4p-1024L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128ibm 0xf.424p+16L 0x4p-1024L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0xf.424p+16L 0x4p-1024L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0xf.424p+16L 0x4p-1024L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0xf.424p+16L 0x4p-1024L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0xf.424p+16L 0x4p-16384L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0xf.424p+16L 0x4p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0xf.424p+16L 0x4p-16384L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0xf.424p+16L 0x4p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0xf.424p+16L 0x4p-16384L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0xf.424p+16L 0x4p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0xf.424p+16L 0x4p-16384L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0xf.424p+16L 0x4p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0xf.424p+16L 0x4p-16384L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0xf.424p+16L 0x4p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0xf.424p+16L 0x4p-16384L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0xf.424p+16L 0x4p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0xf.424p+16L 0x2p-16384L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0xf.424p+16L 0x2p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0xf.424p+16L 0x2p-16384L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0xf.424p+16L 0x2p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0xf.424p+16L 0x2p-16384L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0xf.424p+16L 0x2p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0xf.424p+16L 0x2p-16384L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0xf.424p+16L 0x2p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0xf.424p+16L 0x2p-16384L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0xf.424p+16L 0x2p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0xf.424p+16L 0x2p-16384L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0xf.424p+16L 0x2p-16384L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0xf.424p+16 0x8p-972 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0xf.424p+16 0x8p-972 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0xf.424p+16 0x8p-972 : 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0xf.424p+16 0x8p-972 : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0xf.424p+16L 0x8p-972L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0xf.424p+16L 0x8p-972L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0xf.424p+16L 0x8p-972L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0xf.424p+16L 0x8p-972L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0xf.424p+16L 0x8p-972L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0xf.424p+16L 0x8p-972L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0xf.424p+16L 0x8p-972L : 0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0xf.424p+16L 0x8p-972L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0xf.424p+16L 0x8p-972L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0xf.424p+16L 0x8p-972L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0xf.424p+16L 0x8p-972L : 0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0xf.424p+16L 0x8p-972L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128ibm 0xf.424p+16L 0x8p-972L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0xf.424p+16L 0x8p-972L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0xf.424p+16L 0x8p-972L : 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0xf.424p+16L 0x8p-972L : plus_infty plus_infty : inexact-ok overflow errno-erange-ok +cexp 1e6 -min += cexp downward flt-32 0xf.424p+16f -0x4p-128f : 0xf.fffffp+124f minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest flt-32 0xf.424p+16f -0x4p-128f : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero flt-32 0xf.424p+16f -0x4p-128f : 0xf.fffffp+124f -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp upward flt-32 0xf.424p+16f -0x4p-128f : plus_infty -0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0xf.424p+16 -0x4p-128 : 0xf.ffffffffffff8p+1020 minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0xf.424p+16 -0x4p-128 : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0xf.424p+16 -0x4p-128 : 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0xf.424p+16 -0x4p-128 : plus_infty -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0xf.424p+16L -0x4p-128L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0xf.424p+16L -0x4p-128L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0xf.424p+16L -0x4p-128L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0xf.424p+16L -0x4p-128L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0xf.424p+16L -0x4p-128L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0xf.424p+16L -0x4p-128L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0xf.424p+16L -0x4p-128L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0xf.424p+16L -0x4p-128L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0xf.424p+16L -0x4p-128L : 0xf.fffffffffffffffffffffffffff8p+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0xf.424p+16L -0x4p-128L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0xf.424p+16L -0x4p-128L : 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0xf.424p+16L -0x4p-128L : plus_infty -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128ibm 0xf.424p+16L -0x4p-128L : 0xf.ffffffffffffbffffffffffffcp+1020L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0xf.424p+16L -0x4p-128L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0xf.424p+16L -0x4p-128L : 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0xf.424p+16L -0x4p-128L : plus_infty -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0xf.424p+16 -0x4p-1024 : 0xf.ffffffffffff8p+1020 minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0xf.424p+16 -0x4p-1024 : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0xf.424p+16 -0x4p-1024 : 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0xf.424p+16 -0x4p-1024 : plus_infty -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0xf.424p+16L -0x4p-1024L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0xf.424p+16L -0x4p-1024L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0xf.424p+16L -0x4p-1024L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0xf.424p+16L -0x4p-1024L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0xf.424p+16L -0x4p-1024L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0xf.424p+16L -0x4p-1024L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0xf.424p+16L -0x4p-1024L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0xf.424p+16L -0x4p-1024L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0xf.424p+16L -0x4p-1024L : 0xf.fffffffffffffffffffffffffff8p+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0xf.424p+16L -0x4p-1024L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0xf.424p+16L -0x4p-1024L : 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0xf.424p+16L -0x4p-1024L : plus_infty -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128ibm 0xf.424p+16L -0x4p-1024L : 0xf.ffffffffffffbffffffffffffcp+1020L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0xf.424p+16L -0x4p-1024L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0xf.424p+16L -0x4p-1024L : 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0xf.424p+16L -0x4p-1024L : plus_infty -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0xf.424p+16L -0x4p-16384L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0xf.424p+16L -0x4p-16384L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0xf.424p+16L -0x4p-16384L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0xf.424p+16L -0x4p-16384L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0xf.424p+16L -0x4p-16384L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0xf.424p+16L -0x4p-16384L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0xf.424p+16L -0x4p-16384L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0xf.424p+16L -0x4p-16384L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0xf.424p+16L -0x4p-16384L : 0xf.fffffffffffffffffffffffffff8p+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0xf.424p+16L -0x4p-16384L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0xf.424p+16L -0x4p-16384L : 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0xf.424p+16L -0x4p-16384L : plus_infty -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0xf.424p+16L -0x2p-16384L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0xf.424p+16L -0x2p-16384L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0xf.424p+16L -0x2p-16384L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0xf.424p+16L -0x2p-16384L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0xf.424p+16L -0x2p-16384L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0xf.424p+16L -0x2p-16384L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0xf.424p+16L -0x2p-16384L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0xf.424p+16L -0x2p-16384L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0xf.424p+16L -0x2p-16384L : 0xf.fffffffffffffffffffffffffff8p+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0xf.424p+16L -0x2p-16384L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0xf.424p+16L -0x2p-16384L : 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0xf.424p+16L -0x2p-16384L : plus_infty -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp downward dbl-64 0xf.424p+16 -0x8p-972 : 0xf.ffffffffffff8p+1020 minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest dbl-64 0xf.424p+16 -0x8p-972 : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero dbl-64 0xf.424p+16 -0x8p-972 : 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp upward dbl-64 0xf.424p+16 -0x8p-972 : plus_infty -0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-intel 0xf.424p+16L -0x8p-972L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-intel 0xf.424p+16L -0x8p-972L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-intel 0xf.424p+16L -0x8p-972L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-intel 0xf.424p+16L -0x8p-972L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-96-m68k 0xf.424p+16L -0x8p-972L : 0xf.fffffffffffffffp+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0xf.424p+16L -0x8p-972L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0xf.424p+16L -0x8p-972L : 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-96-m68k 0xf.424p+16L -0x8p-972L : plus_infty -0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128 0xf.424p+16L -0x8p-972L : 0xf.fffffffffffffffffffffffffff8p+16380L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128 0xf.424p+16L -0x8p-972L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128 0xf.424p+16L -0x8p-972L : 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128 0xf.424p+16L -0x8p-972L : plus_infty -0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += cexp downward ldbl-128ibm 0xf.424p+16L -0x8p-972L : 0xf.ffffffffffffbffffffffffffcp+1020L minus_infty : inexact-ok overflow errno-erange-ok += cexp tonearest ldbl-128ibm 0xf.424p+16L -0x8p-972L : plus_infty minus_infty : inexact-ok overflow errno-erange-ok += cexp towardzero ldbl-128ibm 0xf.424p+16L -0x8p-972L : 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cexp upward ldbl-128ibm 0xf.424p+16L -0x8p-972L : plus_infty -0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok +cexp min min_subnorm spurious-underflow:ldbl-96-intel:x86 spurious-underflow:ldbl-96-intel:x86_64 += cexp downward flt-32 0x4p-128f 0x8p-152f : 0x1p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += cexp tonearest flt-32 0x4p-128f 0x8p-152f : 0x1p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += cexp towardzero flt-32 0x4p-128f 0x8p-152f : 0x1p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += cexp upward flt-32 0x4p-128f 0x8p-152f : 0x1.000002p+0f 0x1p-148f : inexact-ok underflow errno-erange-ok += cexp downward dbl-64 0x4p-128 0x8p-152 : 0x1p+0 0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest dbl-64 0x4p-128 0x8p-152 : 0x1p+0 0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero dbl-64 0x4p-128 0x8p-152 : 0x1p+0 0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward dbl-64 0x4p-128 0x8p-152 : 0x1.0000000000001p+0 0x8.0000000000008p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-128L 0x8p-152L : 0x1.0000000000000002p+0L 0x8.000000000000001p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-128L 0x8p-152L : 0x1.0000000000000002p+0L 0x8.000000000000001p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-128L 0x8p-152L : 0x1.0000000000000000000000000001p+0L 0x8.0000000000000000000000000008p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128ibm 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128ibm 0x4p-128L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128ibm 0x4p-128L 0x8p-152L : 0x1.000000000000000000000000008p+0L 0x8.00000000000000000000000004p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward dbl-64 0x4p-128 0x4p-1076 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp tonearest dbl-64 0x4p-128 0x4p-1076 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp towardzero dbl-64 0x4p-128 0x4p-1076 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp upward dbl-64 0x4p-128 0x4p-1076 : 0x1.0000000000001p+0 0x8p-1076 : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-128L 0x4p-1076L : 0x1.0000000000000002p+0L 0x4.0000000000000008p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-128L 0x4p-1076L : 0x1.0000000000000002p+0L 0x4.0000000000000008p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-128L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L 0x4.0000000000000000000000000004p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x4p-128L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128ibm 0x4p-128L 0x4p-1076L : 0x1.000000000000000000000000008p+0L 0x8p-1076L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x4p-128L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x4p-128L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x4p-128L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-intel 0x4p-128L 0x8p-16448L : 0x1.0000000000000002p+0L 0x1p-16444L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-128L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-128L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-128L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-128L 0x8p-16448L : 0x1.0000000000000002p+0L 0xcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-128L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-128L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-128L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-128L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L 0x8.000000000004p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-128L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-128L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-128L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-128L 0x4p-16448L : 0x1.0000000000000002p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-128L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-128L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-128L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-128L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L 0x4.000000000004p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-128L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-128L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-128L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-128L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L 0x8p-16496L : inexact-ok underflow errno-erange-ok += cexp downward dbl-64 0x4p-1024 0x8p-152 : 0xf.ffffffffffff8p-4 0x7.ffffffffffffcp-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest dbl-64 0x4p-1024 0x8p-152 : 0x1p+0 0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero dbl-64 0x4p-1024 0x8p-152 : 0xf.ffffffffffff8p-4 0x7.ffffffffffffcp-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward dbl-64 0x4p-1024 0x8p-152 : 0x1p+0 0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x4p-1024L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-1024L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-1024L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-1024L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-1024L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-1024L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-1024L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-1024L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-1024L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-1024L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-1024L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-1024L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x4p-1024L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L 0x7.fffffffffffffffffffffffffep-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128ibm 0x4p-1024L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128ibm 0x4p-1024L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L 0x7.fffffffffffffffffffffffffep-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128ibm 0x4p-1024L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward dbl-64 0x4p-1024 0x4p-1076 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp tonearest dbl-64 0x4p-1024 0x4p-1076 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp towardzero dbl-64 0x4p-1024 0x4p-1076 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp upward dbl-64 0x4p-1024 0x4p-1076 : 0x1.0000000000001p+0 0x8p-1076 : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-1024L 0x4p-1076L : 0x1.0000000000000002p+0L 0x4.0000000000000008p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-1024L 0x4p-1076L : 0x1.0000000000000002p+0L 0x4.0000000000000008p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-1024L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L 0x4.0000000000000000000000000004p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x4p-1024L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128ibm 0x4p-1024L 0x4p-1076L : 0x1.000000000000000000000000008p+0L 0x8p-1076L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x4p-1024L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x4p-1024L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x4p-1024L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-intel 0x4p-1024L 0x8p-16448L : 0x1.0000000000000002p+0L 0x1p-16444L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-1024L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-1024L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-1024L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-1024L 0x8p-16448L : 0x1.0000000000000002p+0L 0xcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-1024L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-1024L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-1024L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-1024L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L 0x8.000000000004p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-1024L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-1024L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-1024L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-1024L 0x4p-16448L : 0x1.0000000000000002p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-1024L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-1024L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-1024L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-1024L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L 0x4.000000000004p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-1024L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-1024L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-1024L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-1024L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L 0x8p-16496L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x4p-16384L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-16384L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-16384L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-16384L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-16384L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-16384L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x4p-16384L 0x4p-1076L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-16384L 0x4p-1076L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-16384L 0x4p-1076L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-16384L 0x4p-1076L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-16384L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-16384L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x4p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x4p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x4p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-intel 0x4p-16384L 0x8p-16448L : 0x1.0000000000000002p+0L 0x1p-16444L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-16384L 0x8p-16448L : 0x1.0000000000000002p+0L 0xcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-16384L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L 0x8.000000000004p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-16384L 0x4p-16448L : 0x1.0000000000000002p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-16384L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L 0x4.000000000004p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-16384L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-16384L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-16384L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-16384L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L 0x8p-16496L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x2p-16384L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x2p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x2p-16384L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x2p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x2p-16384L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x2p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x2p-16384L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x2p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x2p-16384L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x2p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x2p-16384L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x2p-16384L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x2p-16384L 0x4p-1076L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x2p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x2p-16384L 0x4p-1076L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x2p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x2p-16384L 0x4p-1076L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x2p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x2p-16384L 0x4p-1076L : 0xf.fffffffffffffffp-4L 0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x2p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x2p-16384L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x2p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x2p-16384L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x2p-16384L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x2p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x2p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x2p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-intel 0x2p-16384L 0x8p-16448L : 0x1.0000000000000002p+0L 0x1p-16444L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x2p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x2p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x2p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x2p-16384L 0x8p-16448L : 0x1.0000000000000002p+0L 0xcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x2p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x2p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x2p-16384L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x2p-16384L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L 0x8.000000000004p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x2p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x2p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x2p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x2p-16384L 0x4p-16448L : 0x1.0000000000000002p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x2p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x2p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x2p-16384L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x2p-16384L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L 0x4.000000000004p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x2p-16384L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x2p-16384L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x2p-16384L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x2p-16384L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L 0x8p-16496L : inexact-ok underflow errno-erange-ok += cexp downward dbl-64 0x8p-972 0x8p-152 : 0xf.ffffffffffff8p-4 0x7.ffffffffffffcp-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest dbl-64 0x8p-972 0x8p-152 : 0x1p+0 0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero dbl-64 0x8p-972 0x8p-152 : 0xf.ffffffffffff8p-4 0x7.ffffffffffffcp-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward dbl-64 0x8p-972 0x8p-152 : 0x1p+0 0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x8p-972L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x8p-972L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x8p-972L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x8p-972L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x8p-972L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x8p-972L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x8p-972L 0x8p-152L : 0xf.fffffffffffffffp-4L 0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x8p-972L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x8p-972L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x8p-972L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x8p-972L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x8p-972L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x8p-972L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L 0x7.fffffffffffffffffffffffffep-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128ibm 0x8p-972L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128ibm 0x8p-972L 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L 0x7.fffffffffffffffffffffffffep-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128ibm 0x8p-972L 0x8p-152L : 0x1p+0L 0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward dbl-64 0x8p-972 0x4p-1076 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp tonearest dbl-64 0x8p-972 0x4p-1076 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp towardzero dbl-64 0x8p-972 0x4p-1076 : 0x1p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp upward dbl-64 0x8p-972 0x4p-1076 : 0x1.0000000000001p+0 0x8p-1076 : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x8p-972L 0x4p-1076L : 0x1.0000000000000002p+0L 0x4.0000000000000008p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x8p-972L 0x4p-1076L : 0x1.0000000000000002p+0L 0x4.0000000000000008p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x8p-972L 0x4p-1076L : 0x1.0000000000000000000000000001p+0L 0x4.0000000000000000000000000004p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x8p-972L 0x4p-1076L : 0x1p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128ibm 0x8p-972L 0x4p-1076L : 0x1.000000000000000000000000008p+0L 0x8p-1076L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x8p-972L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x8p-972L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x8p-972L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-intel 0x8p-972L 0x8p-16448L : 0x1.0000000000000002p+0L 0x1p-16444L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x8p-972L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x8p-972L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x8p-972L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x8p-972L 0x8p-16448L : 0x1.0000000000000002p+0L 0xcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x8p-972L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x8p-972L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x8p-972L 0x8p-16448L : 0x1p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x8p-972L 0x8p-16448L : 0x1.0000000000000000000000000001p+0L 0x8.000000000004p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x8p-972L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x8p-972L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x8p-972L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x8p-972L 0x4p-16448L : 0x1.0000000000000002p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x8p-972L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x8p-972L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x8p-972L 0x4p-16448L : 0x1p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x8p-972L 0x4p-16448L : 0x1.0000000000000000000000000001p+0L 0x4.000000000004p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x8p-972L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x8p-972L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x8p-972L 0x4p-16496L : 0x1p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x8p-972L 0x4p-16496L : 0x1.0000000000000000000000000001p+0L 0x8p-16496L : inexact-ok underflow errno-erange-ok +cexp min -min_subnorm spurious-underflow:ldbl-96-intel:x86 spurious-underflow:ldbl-96-intel:x86_64 += cexp downward flt-32 0x4p-128f -0x8p-152f : 0x1p+0f -0x8p-152f : inexact-ok underflow errno-erange-ok += cexp tonearest flt-32 0x4p-128f -0x8p-152f : 0x1p+0f -0x8p-152f : inexact-ok underflow errno-erange-ok += cexp towardzero flt-32 0x4p-128f -0x8p-152f : 0x1p+0f -0x0p+0f : inexact-ok underflow errno-erange-ok += cexp upward flt-32 0x4p-128f -0x8p-152f : 0x1.000002p+0f -0x0p+0f : inexact-ok underflow errno-erange-ok += cexp downward dbl-64 0x4p-128 -0x8p-152 : 0x1p+0 -0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest dbl-64 0x4p-128 -0x8p-152 : 0x1p+0 -0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero dbl-64 0x4p-128 -0x8p-152 : 0x1p+0 -0x7.ffffffffffffcp-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward dbl-64 0x4p-128 -0x8p-152 : 0x1.0000000000001p+0 -0x7.ffffffffffffcp-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x4p-128L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-128L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-128L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-128L -0x8p-152L : 0x1.0000000000000002p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-128L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-128L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-128L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-128L -0x8p-152L : 0x1.0000000000000002p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-128L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-128L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-128L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-128L -0x8p-152L : 0x1.0000000000000000000000000001p+0L -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x4p-128L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128ibm 0x4p-128L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128ibm 0x4p-128L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffffffffffffffep-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128ibm 0x4p-128L -0x8p-152L : 0x1.000000000000000000000000008p+0L -0x7.fffffffffffffffffffffffffep-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward dbl-64 0x4p-128 -0x4p-1076 : 0x1p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp tonearest dbl-64 0x4p-128 -0x4p-1076 : 0x1p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp towardzero dbl-64 0x4p-128 -0x4p-1076 : 0x1p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += cexp upward dbl-64 0x4p-128 -0x4p-1076 : 0x1.0000000000001p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x4p-128L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-128L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-128L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-128L -0x4p-1076L : 0x1.0000000000000002p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-128L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-128L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-128L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-128L -0x4p-1076L : 0x1.0000000000000002p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-128L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-128L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-128L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-128L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x4p-128L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x4p-128L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x4p-128L -0x4p-1076L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128ibm 0x4p-128L -0x4p-1076L : 0x1.000000000000000000000000008p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x4p-128L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x4p-128L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x4p-128L -0x8p-16448L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-intel 0x4p-128L -0x8p-16448L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-128L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-128L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-128L -0x8p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-128L -0x8p-16448L : 0x1.0000000000000002p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-128L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-128L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-128L -0x8p-16448L : 0x1p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-128L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-128L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-128L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-128L -0x4p-16448L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-128L -0x4p-16448L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-128L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-128L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-128L -0x4p-16448L : 0x1p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-128L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-128L -0x4p-16496L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-128L -0x4p-16496L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-128L -0x4p-16496L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-128L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward dbl-64 0x4p-1024 -0x8p-152 : 0xf.ffffffffffff8p-4 -0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest dbl-64 0x4p-1024 -0x8p-152 : 0x1p+0 -0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero dbl-64 0x4p-1024 -0x8p-152 : 0xf.ffffffffffff8p-4 -0x7.ffffffffffffcp-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward dbl-64 0x4p-1024 -0x8p-152 : 0x1p+0 -0x7.ffffffffffffcp-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x4p-1024L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-1024L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-1024L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-1024L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-1024L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-1024L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-1024L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-1024L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-1024L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-1024L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-1024L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-1024L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x4p-1024L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128ibm 0x4p-1024L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128ibm 0x4p-1024L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L -0x7.fffffffffffffffffffffffffep-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128ibm 0x4p-1024L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffffffffffffffep-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward dbl-64 0x4p-1024 -0x4p-1076 : 0x1p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp tonearest dbl-64 0x4p-1024 -0x4p-1076 : 0x1p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp towardzero dbl-64 0x4p-1024 -0x4p-1076 : 0x1p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += cexp upward dbl-64 0x4p-1024 -0x4p-1076 : 0x1.0000000000001p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-1024L -0x4p-1076L : 0x1.0000000000000002p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-1024L -0x4p-1076L : 0x1.0000000000000002p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-1024L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x4p-1024L -0x4p-1076L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128ibm 0x4p-1024L -0x4p-1076L : 0x1.000000000000000000000000008p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x4p-1024L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x4p-1024L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x4p-1024L -0x8p-16448L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-intel 0x4p-1024L -0x8p-16448L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-1024L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-1024L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-1024L -0x8p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-1024L -0x8p-16448L : 0x1.0000000000000002p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-1024L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-1024L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-1024L -0x8p-16448L : 0x1p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-1024L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-1024L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-1024L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-1024L -0x4p-16448L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-1024L -0x4p-16448L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-1024L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-1024L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-1024L -0x4p-16448L : 0x1p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-1024L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-1024L -0x4p-16496L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-1024L -0x4p-16496L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-1024L -0x4p-16496L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-1024L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x4p-16384L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-16384L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-16384L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-16384L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-16384L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-16384L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-16384L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-16384L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-16384L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-16384L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-16384L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-16384L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x4p-16384L -0x4p-1076L : 0xf.fffffffffffffffp-4L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x4p-16384L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x4p-16384L -0x4p-1076L : 0xf.fffffffffffffffp-4L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x4p-16384L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x4p-16384L -0x4p-1076L : 0xf.fffffffffffffffp-4L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x4p-16384L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x4p-16384L -0x4p-1076L : 0xf.fffffffffffffffp-4L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x4p-16384L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x4p-16384L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x4p-16384L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x4p-16384L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x4p-16384L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x4p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x4p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x4p-16384L -0x8p-16448L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-intel 0x4p-16384L -0x8p-16448L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-16384L -0x8p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-16384L -0x8p-16448L : 0x1.0000000000000002p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-16384L -0x8p-16448L : 0x1p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-16384L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x4p-16384L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x4p-16384L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x4p-16384L -0x4p-16448L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x4p-16384L -0x4p-16448L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-16384L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-16384L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-16384L -0x4p-16448L : 0x1p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-16384L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x4p-16384L -0x4p-16496L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x4p-16384L -0x4p-16496L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x4p-16384L -0x4p-16496L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x4p-16384L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x2p-16384L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x2p-16384L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x2p-16384L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x2p-16384L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x2p-16384L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x2p-16384L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x2p-16384L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x2p-16384L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x2p-16384L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x2p-16384L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x2p-16384L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x2p-16384L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x2p-16384L -0x4p-1076L : 0xf.fffffffffffffffp-4L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x2p-16384L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x2p-16384L -0x4p-1076L : 0xf.fffffffffffffffp-4L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x2p-16384L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x2p-16384L -0x4p-1076L : 0xf.fffffffffffffffp-4L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x2p-16384L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x2p-16384L -0x4p-1076L : 0xf.fffffffffffffffp-4L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x2p-16384L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x2p-16384L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x2p-16384L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x2p-16384L -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x2p-16384L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x2p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x2p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x2p-16384L -0x8p-16448L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-intel 0x2p-16384L -0x8p-16448L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x2p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x2p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x2p-16384L -0x8p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x2p-16384L -0x8p-16448L : 0x1.0000000000000002p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x2p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x2p-16384L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x2p-16384L -0x8p-16448L : 0x1p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x2p-16384L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x2p-16384L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x2p-16384L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x2p-16384L -0x4p-16448L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x2p-16384L -0x4p-16448L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x2p-16384L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x2p-16384L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x2p-16384L -0x4p-16448L : 0x1p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x2p-16384L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x2p-16384L -0x4p-16496L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x2p-16384L -0x4p-16496L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x2p-16384L -0x4p-16496L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x2p-16384L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward dbl-64 0x8p-972 -0x8p-152 : 0xf.ffffffffffff8p-4 -0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest dbl-64 0x8p-972 -0x8p-152 : 0x1p+0 -0x8p-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero dbl-64 0x8p-972 -0x8p-152 : 0xf.ffffffffffff8p-4 -0x7.ffffffffffffcp-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward dbl-64 0x8p-972 -0x8p-152 : 0x1p+0 -0x7.ffffffffffffcp-152 : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-intel 0x8p-972L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x8p-972L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x8p-972L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x8p-972L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x8p-972L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x8p-972L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x8p-972L -0x8p-152L : 0xf.fffffffffffffffp-4L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x8p-972L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffff8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x8p-972L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x8p-972L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x8p-972L -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x8p-972L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x8p-972L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128ibm 0x8p-972L -0x8p-152L : 0x1p+0L -0x8p-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128ibm 0x8p-972L -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L -0x7.fffffffffffffffffffffffffep-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128ibm 0x8p-972L -0x8p-152L : 0x1p+0L -0x7.fffffffffffffffffffffffffep-152L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward dbl-64 0x8p-972 -0x4p-1076 : 0x1p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp tonearest dbl-64 0x8p-972 -0x4p-1076 : 0x1p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += cexp towardzero dbl-64 0x8p-972 -0x4p-1076 : 0x1p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += cexp upward dbl-64 0x8p-972 -0x4p-1076 : 0x1.0000000000001p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x8p-972L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-intel 0x8p-972L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-intel 0x8p-972L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-intel 0x8p-972L -0x4p-1076L : 0x1.0000000000000002p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-96-m68k 0x8p-972L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-96-m68k 0x8p-972L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-96-m68k 0x8p-972L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-96-m68k 0x8p-972L -0x4p-1076L : 0x1.0000000000000002p+0L -0x3.fffffffffffffffcp-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128 0x8p-972L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp tonearest ldbl-128 0x8p-972L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp towardzero ldbl-128 0x8p-972L -0x4p-1076L : 0x1p+0L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp upward ldbl-128 0x8p-972L -0x4p-1076L : 0x1.0000000000000000000000000001p+0L -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 += cexp downward ldbl-128ibm 0x8p-972L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128ibm 0x8p-972L -0x4p-1076L : 0x1p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128ibm 0x8p-972L -0x4p-1076L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128ibm 0x8p-972L -0x4p-1076L : 0x1.000000000000000000000000008p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-intel 0x8p-972L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-intel 0x8p-972L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-intel 0x8p-972L -0x8p-16448L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-intel 0x8p-972L -0x8p-16448L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x8p-972L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x8p-972L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x8p-972L -0x8p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x8p-972L -0x8p-16448L : 0x1.0000000000000002p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x8p-972L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x8p-972L -0x8p-16448L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x8p-972L -0x8p-16448L : 0x1p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x8p-972L -0x8p-16448L : 0x1.0000000000000000000000000001p+0L -0x7.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-96-m68k 0x8p-972L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-96-m68k 0x8p-972L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-96-m68k 0x8p-972L -0x4p-16448L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-96-m68k 0x8p-972L -0x4p-16448L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x8p-972L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x8p-972L -0x4p-16448L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x8p-972L -0x4p-16448L : 0x1p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x8p-972L -0x4p-16448L : 0x1.0000000000000000000000000001p+0L -0x3.fffffffffffcp-16448L : inexact-ok underflow errno-erange-ok += cexp downward ldbl-128 0x8p-972L -0x4p-16496L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp tonearest ldbl-128 0x8p-972L -0x4p-16496L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += cexp towardzero ldbl-128 0x8p-972L -0x4p-16496L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += cexp upward ldbl-128 0x8p-972L -0x4p-16496L : 0x1.0000000000000000000000000001p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok +clog 0.75 1.25 += clog downward flt-32 0xcp-4f 0x1.4p+0f : 0x6.07b98p-4f 0x1.07c6c6p+0f : inexact-ok += clog tonearest flt-32 0xcp-4f 0x1.4p+0f : 0x6.07b98p-4f 0x1.07c6c6p+0f : inexact-ok += clog towardzero flt-32 0xcp-4f 0x1.4p+0f : 0x6.07b98p-4f 0x1.07c6c6p+0f : inexact-ok += clog upward flt-32 0xcp-4f 0x1.4p+0f : 0x6.07b988p-4f 0x1.07c6c8p+0f : inexact-ok += clog downward dbl-64 0xcp-4 0x1.4p+0 : 0x6.07b982bed4064p-4 0x1.07c6c6947a6a7p+0 : inexact-ok += clog tonearest dbl-64 0xcp-4 0x1.4p+0 : 0x6.07b982bed4068p-4 0x1.07c6c6947a6a8p+0 : inexact-ok += clog towardzero dbl-64 0xcp-4 0x1.4p+0 : 0x6.07b982bed4064p-4 0x1.07c6c6947a6a7p+0 : inexact-ok += clog upward dbl-64 0xcp-4 0x1.4p+0 : 0x6.07b982bed4068p-4 0x1.07c6c6947a6a8p+0 : inexact-ok += clog downward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666ep-4L 0x1.07c6c6947a6a7cfap+0L : inexact-ok += clog tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e8p-4L 0x1.07c6c6947a6a7cfap+0L : inexact-ok += clog towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666ep-4L 0x1.07c6c6947a6a7cfap+0L : inexact-ok += clog upward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e8p-4L 0x1.07c6c6947a6a7cfcp+0L : inexact-ok += clog downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666ep-4L 0x1.07c6c6947a6a7cfap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e8p-4L 0x1.07c6c6947a6a7cfap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666ep-4L 0x1.07c6c6947a6a7cfap+0L : inexact-ok += clog upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e8p-4L 0x1.07c6c6947a6a7cfcp+0L : inexact-ok += clog downward ldbl-128 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e44243627bcc6p-4L 0x1.07c6c6947a6a7cfa20384a48fec4p+0L : inexact-ok += clog tonearest ldbl-128 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e44243627bcc64p-4L 0x1.07c6c6947a6a7cfa20384a48fec5p+0L : inexact-ok += clog towardzero ldbl-128 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e44243627bcc6p-4L 0x1.07c6c6947a6a7cfa20384a48fec4p+0L : inexact-ok += clog upward ldbl-128 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e44243627bcc64p-4L 0x1.07c6c6947a6a7cfa20384a48fec5p+0L : inexact-ok += clog downward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e44243627bccp-4L 0x1.07c6c6947a6a7cfa20384a48fe8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e44243627bccp-4L 0x1.07c6c6947a6a7cfa20384a48ffp+0L : inexact-ok += clog towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e44243627bccp-4L 0x1.07c6c6947a6a7cfa20384a48fe8p+0L : inexact-ok += clog upward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x6.07b982bed40666e44243627bcep-4L 0x1.07c6c6947a6a7cfa20384a48ffp+0L : inexact-ok +clog -2 -3 += clog downward flt-32 -0x2p+0f -0x3p+0f : 0x1.485042p+0f -0x2.28a70cp+0f : inexact-ok += clog tonearest flt-32 -0x2p+0f -0x3p+0f : 0x1.485042p+0f -0x2.28a70cp+0f : inexact-ok += clog towardzero flt-32 -0x2p+0f -0x3p+0f : 0x1.485042p+0f -0x2.28a708p+0f : inexact-ok += clog upward flt-32 -0x2p+0f -0x3p+0f : 0x1.485044p+0f -0x2.28a708p+0f : inexact-ok += clog downward dbl-64 -0x2p+0 -0x3p+0 : 0x1.485042b318c5p+0 -0x2.28a70bf475ee4p+0 : inexact-ok += clog tonearest dbl-64 -0x2p+0 -0x3p+0 : 0x1.485042b318c51p+0 -0x2.28a70bf475ee2p+0 : inexact-ok += clog towardzero dbl-64 -0x2p+0 -0x3p+0 : 0x1.485042b318c5p+0 -0x2.28a70bf475ee2p+0 : inexact-ok += clog upward dbl-64 -0x2p+0 -0x3p+0 : 0x1.485042b318c51p+0 -0x2.28a70bf475ee2p+0 : inexact-ok += clog downward ldbl-96-intel -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe8p+0L -0x2.28a70bf475ee2fd4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe8p+0L -0x2.28a70bf475ee2fd4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe8p+0L -0x2.28a70bf475ee2fdp+0L : inexact-ok += clog upward ldbl-96-intel -0x2p+0L -0x3p+0L : 0x1.485042b318c50feap+0L -0x2.28a70bf475ee2fdp+0L : inexact-ok += clog downward ldbl-96-m68k -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe8p+0L -0x2.28a70bf475ee2fd4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe8p+0L -0x2.28a70bf475ee2fd4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe8p+0L -0x2.28a70bf475ee2fdp+0L : inexact-ok += clog upward ldbl-96-m68k -0x2p+0L -0x3p+0L : 0x1.485042b318c50feap+0L -0x2.28a70bf475ee2fdp+0L : inexact-ok += clog downward ldbl-128 -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe867dcef8a3fd8p+0L -0x2.28a70bf475ee2fd29a91db2147a8p+0L : inexact-ok += clog tonearest ldbl-128 -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe867dcef8a3fd8p+0L -0x2.28a70bf475ee2fd29a91db2147a6p+0L : inexact-ok += clog towardzero ldbl-128 -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe867dcef8a3fd8p+0L -0x2.28a70bf475ee2fd29a91db2147a6p+0L : inexact-ok += clog upward ldbl-128 -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe867dcef8a3fd9p+0L -0x2.28a70bf475ee2fd29a91db2147a6p+0L : inexact-ok += clog downward ldbl-128ibm -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe867dcef8a3f8p+0L -0x2.28a70bf475ee2fd29a91db2148p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe867dcef8a4p+0L -0x2.28a70bf475ee2fd29a91db2148p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe867dcef8a3f8p+0L -0x2.28a70bf475ee2fd29a91db2147p+0L : inexact-ok += clog upward ldbl-128ibm -0x2p+0L -0x3p+0L : 0x1.485042b318c50fe867dcef8a4p+0L -0x2.28a70bf475ee2fd29a91db2147p+0L : inexact-ok +clog 0x1.fffffep+127 0x1.fffffep+127 += clog downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdap-4f : inexact-ok += clog tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdbp-4f : inexact-ok += clog towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdap-4f : inexact-ok += clog upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c58p+4f 0xc.90fdbp-4f : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a8p+4 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a413p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a413p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad6765078664p+4L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650788p+4L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok +clog 0x1.fffffep+127 1.0 += clog downward flt-32 0xf.fffffp+124f 0x1p+0f : 0x5.8b90b8p+4f 0x1p-128f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0xf.fffffp+124f 0x1p+0f : 0x5.8b90cp+4f 0x1p-128f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0xf.fffffp+124f 0x1p+0f : 0x5.8b90b8p+4f 0x1p-128f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0xf.fffffp+124f 0x1p+0f : 0x5.8b90cp+4f 0x1.000008p-128f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.fffffp+124 0x1p+0 : 0x5.8b90bfae8e7bcp+4 0x1.000001000001p-128 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0x1p+0 : 0x5.8b90bfae8e7bcp+4 0x1.000001000001p-128 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0x1p+0 : 0x5.8b90bfae8e7bcp+4 0x1.000001000001p-128 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0x1p+0 : 0x5.8b90bfae8e7cp+4 0x1.0000010000011p-128 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc558p+4L 0x1.000001000001p-128L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc56p+4L 0x1.000001000001p-128L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc558p+4L 0x1.000001000001p-128L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc56p+4L 0x1.0000010000010002p-128L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc558p+4L 0x1.000001000001p-128L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc56p+4L 0x1.000001000001p-128L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc558p+4L 0x1.000001000001p-128L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc56p+4L 0x1.0000010000010002p-128L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.000001000001000001000001p-128L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.000001000001000001000001p-128L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.000001000001000001000001p-128L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.0000010000010000010000010001p-128L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.000001000001000001000001p-128L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.000001000001000001000001p-128L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.000001000001000001000001p-128L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.000001000001000001000001008p-128L : inexact-ok +clog 0x1p-149 0x1p-149 += clog downward flt-32 0x8p-152f 0x8p-152f : -0x6.6eeafp+4f 0xc.90fdap-4f : inexact-ok += clog tonearest flt-32 0x8p-152f 0x8p-152f : -0x6.6eeafp+4f 0xc.90fdbp-4f : inexact-ok += clog towardzero flt-32 0x8p-152f 0x8p-152f : -0x6.6eeae8p+4f 0xc.90fdap-4f : inexact-ok += clog upward flt-32 0x8p-152f 0x8p-152f : -0x6.6eeae8p+4f 0xc.90fdbp-4f : inexact-ok += clog downward dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134dcp+4 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134dcp+4 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134d8p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134d8p+4 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da148p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da148p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a8p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a8p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a4p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a4p+4L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae6p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok +clog 0x1p-147 0x1p-147 += clog downward flt-32 0x2p-148f 0x2p-148f : -0x6.58bcbp+4f 0xc.90fdap-4f : inexact-ok += clog tonearest flt-32 0x2p-148f 0x2p-148f : -0x6.58bca8p+4f 0xc.90fdbp-4f : inexact-ok += clog towardzero flt-32 0x2p-148f 0x2p-148f : -0x6.58bca8p+4f 0xc.90fdap-4f : inexact-ok += clog upward flt-32 0x2p-148f 0x2p-148f : -0x6.58bca8p+4f 0xc.90fdbp-4f : inexact-ok += clog downward dbl-64 0x2p-148 0x2p-148 : -0x6.58bcab751913cp+4 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0x2p-148 0x2p-148 : -0x6.58bcab751913cp+4 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0x2p-148 0x2p-148 : -0x6.58bcab7519138p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0x2p-148 0x2p-148 : -0x6.58bcab7519138p+4 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0x2p-148L 0x2p-148L : -0x6.58bcab751913b21p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x2p-148L 0x2p-148L : -0x6.58bcab751913b21p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x2p-148L 0x2p-148L : -0x6.58bcab751913b208p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0x2p-148L 0x2p-148L : -0x6.58bcab751913b208p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0x2p-148L 0x2p-148L : -0x6.58bcab751913b21p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x2p-148L 0x2p-148L : -0x6.58bcab751913b21p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x2p-148L 0x2p-148L : -0x6.58bcab751913b208p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0x2p-148L 0x2p-148L : -0x6.58bcab751913b208p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0x2p-148L 0x2p-148L : -0x6.58bcab751913b20cf08ce467e428p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0x2p-148L 0x2p-148L : -0x6.58bcab751913b20cf08ce467e428p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0x2p-148L 0x2p-148L : -0x6.58bcab751913b20cf08ce467e424p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0x2p-148L 0x2p-148L : -0x6.58bcab751913b20cf08ce467e424p+4L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0x2p-148L 0x2p-148L : -0x6.58bcab751913b20cf08ce467e6p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x2p-148L 0x2p-148L : -0x6.58bcab751913b20cf08ce467e4p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x2p-148L 0x2p-148L : -0x6.58bcab751913b20cf08ce467e4p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0x2p-148L 0x2p-148L : -0x6.58bcab751913b20cf08ce467e4p+4L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok +clog 0x1.fffffffffffffp+1023 0x1.fffffffffffffp+1023 += clog downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdap-4f : inexact-ok += clog tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdbp-4f : inexact-ok += clog towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdap-4f : inexact-ok += clog upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c58p+4f 0xc.90fdbp-4f : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a8p+4 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a413p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a413p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad6765078664p+4L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650788p+4L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffffp-900 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffff00000008p-900 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffffp-900 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473ep+8 0xf.fffff00000008p-900 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0xf.fffff00000007fffff80000003f8p-900L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0xf.fffff00000007fffff80000003f8p-900L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0xf.fffff00000007fffff8p-900L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece601p+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0xf.fffff00000007fffff8p-900L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece601p+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326cp+8 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326cp+8 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326cp+8 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326ep+8 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbccp+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbcep+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbccp+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbcep+8L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dcp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dcp+8L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok +clog 0x1.fffffffffffffp+1023 0x1p+1023 += clog downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdap-4f : inexact-ok += clog tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdbp-4f : inexact-ok += clog towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdap-4f : inexact-ok += clog upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c58p+4f 0xc.90fdbp-4f : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a8p+4 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a413p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a413p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad6765078664p+4L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650788p+4L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0x8p+1020 : 0x2.c516edc74f6cp+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0x8p+1020 : 0x2.c516edc74f6c2p+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0x8p+1020 : 0x2.c516edc74f6cp+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0x8p+1020 : 0x2.c516edc74f6c2p+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c1734p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c1734p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c1734p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c1738p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c1734p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c1734p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c1734p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c1738p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c17357bc4eaac77c6p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c17357bc4eaac77c8p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c17357bc4eaac77c6p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c17357bc4eaac77c8p+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c17357bc4eaac77p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c17357bc4eaac78p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c17357bc4eaac77p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x2.c516edc74f6c17357bc4eaac78p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffffp-900 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffff00000008p-900 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffffp-900 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473ep+8 0xf.fffff00000008p-900 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0xf.fffff00000007fffff80000003f8p-900L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0xf.fffff00000007fffff80000003f8p-900L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0xf.fffff00000007fffff8p-900L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece601p+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0xf.fffff00000007fffff8p-900L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece601p+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0x8p+1020 : 0x2.c5e4efd70ed88p+8 0x7.6b19c1586ed4p-4 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0x8p+1020 : 0x2.c5e4efd70ed88p+8 0x7.6b19c1586ed4p-4 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0x8p+1020 : 0x2.c5e4efd70ed88p+8 0x7.6b19c1586ed4p-4 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0x8p+1020 : 0x2.c5e4efd70ed8ap+8 0x7.6b19c1586ed44p-4 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880c8p+8L 0x7.6b19c1586ed40d58p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ccp+8L 0x7.6b19c1586ed40d6p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880c8p+8L 0x7.6b19c1586ed40d58p-4L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ccp+8L 0x7.6b19c1586ed40d6p-4L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880c8p+8L 0x7.6b19c1586ed40d58p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ccp+8L 0x7.6b19c1586ed40d6p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880c8p+8L 0x7.6b19c1586ed40d58p-4L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ccp+8L 0x7.6b19c1586ed40d6p-4L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ca6d4e40189c64p+8L 0x7.6b19c1586ed40d5eb2556299164cp-4L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ca6d4e40189c66p+8L 0x7.6b19c1586ed40d5eb2556299165p-4L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ca6d4e40189c64p+8L 0x7.6b19c1586ed40d5eb2556299164cp-4L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ca6d4e40189c66p+8L 0x7.6b19c1586ed40d5eb2556299165p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ca6d4e40189cp+8L 0x7.6b19c1586ed40d5eb255629916p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ca6d4e40189cp+8L 0x7.6b19c1586ed40d5eb255629916p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ca6d4e40189cp+8L 0x7.6b19c1586ed40d5eb255629916p-4L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x2.c5e4efd70ed880ca6d4e40189dp+8L 0x7.6b19c1586ed40d5eb255629918p-4L : inexact-ok +clog 0x1p-1074 0x1p-1074 += clog downward flt-32 0x8p-152f 0x8p-152f : -0x6.6eeafp+4f 0xc.90fdap-4f : inexact-ok += clog tonearest flt-32 0x8p-152f 0x8p-152f : -0x6.6eeafp+4f 0xc.90fdbp-4f : inexact-ok += clog towardzero flt-32 0x8p-152f 0x8p-152f : -0x6.6eeae8p+4f 0xc.90fdap-4f : inexact-ok += clog upward flt-32 0x8p-152f 0x8p-152f : -0x6.6eeae8p+4f 0xc.90fdbp-4f : inexact-ok += clog downward dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134dcp+4 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134dcp+4 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134d8p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134d8p+4 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da148p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da148p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a8p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a8p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a4p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a4p+4L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae6p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += clog downward flt-32 0x8p-152f 0x0p+0f : -0x6.74768p+4f 0x0p+0f : inexact-ok += clog tonearest flt-32 0x8p-152f 0x0p+0f : -0x6.74768p+4f 0x0p+0f : inexact-ok += clog towardzero flt-32 0x8p-152f 0x0p+0f : -0x6.747678p+4f 0x0p+0f : inexact-ok += clog upward flt-32 0x8p-152f 0x0p+0f : -0x6.747678p+4f 0x0p+0f : inexact-ok += clog downward dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dc4p+4 0x0p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dcp+4 0x0p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dcp+4 0x0p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dcp+4 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x0p+0L : inexact-ok += clog downward dbl-64 0x8p-152 0x4p-1076 : -0x6.74767f33d1dc4p+4 0x7.ffffffffffffcp-928 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x4p-1076 : -0x6.74767f33d1dcp+4 0x8p-928 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x4p-1076 : -0x6.74767f33d1dcp+4 0x7.ffffffffffffcp-928 : inexact-ok += clog upward dbl-64 0x8p-152 0x4p-1076 : -0x6.74767f33d1dcp+4 0x8p-928 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d1p+4L 0x7.fffffffffffffff8p-928L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d1p+4L 0x8p-928L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d08p+4L 0x7.fffffffffffffff8p-928L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d08p+4L 0x8p-928L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d1p+4L 0x7.fffffffffffffff8p-928L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d1p+4L 0x8p-928L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d08p+4L 0x7.fffffffffffffff8p-928L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d08p+4L 0x8p-928L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x7.fffffffffffffffffffffffffffcp-928L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x8p-928L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x7.fffffffffffffffffffffffffffcp-928L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x8p-928L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0x7.fffffffffffffffffffffffffep-928L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x8p-928L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x7.fffffffffffffffffffffffffep-928L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x8p-928L : inexact-ok += clog downward flt-32 0x0p+0f 0x8p-152f : -0x6.74768p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0x8p-152f : -0x6.74768p+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0x8p-152f : -0x6.747678p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0x8p-152f : -0x6.747678p+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dc4p+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x0p+0 0x4p-1076 : -0x2.e870a88dae388p+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x4p-1076 : -0x2.e870a88dae386p+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x4p-1076 : -0x2.e870a88dae386p+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x4p-1076 : -0x2.e870a88dae386p+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c092p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c1p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c1p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773cp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773cp+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0x8p-152 : -0x6.74767f33d1dc4p+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0x0p+0 : -0x2.e870a88dae388p+8 0x0p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0x0p+0 : -0x2.e870a88dae386p+8 0x0p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0x0p+0 : -0x2.e870a88dae386p+8 0x0p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 0x0p+0 : -0x2.e870a88dae386p+8 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c74p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c74p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c7p+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c7p+8L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c74p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c74p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c7p+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c7p+8L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c092p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c1p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c1p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773cp+8L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773cp+8L 0x0p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0x4p-1076 : -0x2.e817ef81b24fap+8 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0x4p-1076 : -0x2.e817ef81b24f8p+8 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0x4p-1076 : -0x2.e817ef81b24f8p+8 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0x4p-1076 0x4p-1076 : -0x2.e817ef81b24f8p+8 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b8p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b8p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f49p+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f48ep+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f48ep+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f48ep+8L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f5p+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f5p+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f4p+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f4p+8L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok +clog 0x1p-1073 0x1p-1073 += clog downward flt-32 0x8p-152f 0x8p-152f : -0x6.6eeafp+4f 0xc.90fdap-4f : inexact-ok += clog tonearest flt-32 0x8p-152f 0x8p-152f : -0x6.6eeafp+4f 0xc.90fdbp-4f : inexact-ok += clog towardzero flt-32 0x8p-152f 0x8p-152f : -0x6.6eeae8p+4f 0xc.90fdap-4f : inexact-ok += clog upward flt-32 0x8p-152f 0x8p-152f : -0x6.6eeae8p+4f 0xc.90fdbp-4f : inexact-ok += clog downward dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134dcp+4 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134dcp+4 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134d8p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134d8p+4 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da148p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da148p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a8p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a8p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a4p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a4p+4L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae6p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += clog downward flt-32 0x8p-152f 0x0p+0f : -0x6.74768p+4f 0x0p+0f : inexact-ok += clog tonearest flt-32 0x8p-152f 0x0p+0f : -0x6.74768p+4f 0x0p+0f : inexact-ok += clog towardzero flt-32 0x8p-152f 0x0p+0f : -0x6.747678p+4f 0x0p+0f : inexact-ok += clog upward flt-32 0x8p-152f 0x0p+0f : -0x6.747678p+4f 0x0p+0f : inexact-ok += clog downward dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dc4p+4 0x0p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dcp+4 0x0p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dcp+4 0x0p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dcp+4 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x0p+0L : inexact-ok += clog downward dbl-64 0x8p-152 0x8p-1076 : -0x6.74767f33d1dc4p+4 0xf.ffffffffffff8p-928 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x8p-1076 : -0x6.74767f33d1dcp+4 0x1p-924 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x8p-1076 : -0x6.74767f33d1dcp+4 0xf.ffffffffffff8p-928 : inexact-ok += clog upward dbl-64 0x8p-152 0x8p-1076 : -0x6.74767f33d1dcp+4 0x1p-924 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d1p+4L 0xf.fffffffffffffffp-928L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d1p+4L 0x1p-924L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d08p+4L 0xf.fffffffffffffffp-928L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d08p+4L 0x1p-924L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d1p+4L 0xf.fffffffffffffffp-928L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d1p+4L 0x1p-924L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d08p+4L 0xf.fffffffffffffffp-928L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d08p+4L 0x1p-924L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0xf.fffffffffffffffffffffffffff8p-928L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1p-924L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0xf.fffffffffffffffffffffffffff8p-928L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1p-924L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0xf.fffffffffffffffffffffffffcp-928L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1p-924L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0xf.fffffffffffffffffffffffffcp-928L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x8p-1076L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1p-924L : inexact-ok += clog downward flt-32 0x0p+0f 0x8p-152f : -0x6.74768p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0x8p-152f : -0x6.74768p+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0x8p-152f : -0x6.747678p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0x8p-152f : -0x6.747678p+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dc4p+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x0p+0 0x8p-1076 : -0x2.e7bf3675b666ap+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x8p-1076 : -0x2.e7bf3675b666ap+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x8p-1076 : -0x2.e7bf3675b6668p+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x8p-1076 : -0x2.e7bf3675b6668p+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cfcp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf8p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cfcp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf8p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf9093363c0288ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf9093363c0288cp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf9093363c0288cp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf9093363c0288cp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf9093363c029p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf9093363c029p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf9093363c028p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x8p-1076L : -0x2.e7bf3675b6669cf9093363c028p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x8p-1076 0x8p-152 : -0x6.74767f33d1dc4p+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-1076 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-1076 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-1076 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x8p-1076 0x0p+0 : -0x2.e7bf3675b666ap+8 0x0p+0 : inexact-ok += clog tonearest dbl-64 0x8p-1076 0x0p+0 : -0x2.e7bf3675b666ap+8 0x0p+0 : inexact-ok += clog towardzero dbl-64 0x8p-1076 0x0p+0 : -0x2.e7bf3675b6668p+8 0x0p+0 : inexact-ok += clog upward dbl-64 0x8p-1076 0x0p+0 : -0x2.e7bf3675b6668p+8 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cfcp+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf8p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf8p+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf8p+8L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cfcp+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf8p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf8p+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf8p+8L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf9093363c0288ep+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf9093363c0288cp+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf9093363c0288cp+8L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf9093363c0288cp+8L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf9093363c029p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf9093363c029p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf9093363c028p+8L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-1076L 0x0p+0L : -0x2.e7bf3675b6669cf9093363c028p+8L 0x0p+0L : inexact-ok += clog downward dbl-64 0x8p-1076 0x8p-1076 : -0x2.e7667d69ba7dcp+8 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0x8p-1076 0x8p-1076 : -0x2.e7667d69ba7dcp+8 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0x8p-1076 0x8p-1076 : -0x2.e7667d69ba7dap+8 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0x8p-1076 0x8p-1076 : -0x2.e7667d69ba7dap+8 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db54p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53cp+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53cp+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53cp+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db54p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53cp+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53cp+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53cp+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53c334e71e65c8cp+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53c334e71e65c8ap+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53c334e71e65c8ap+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53c334e71e65c8ap+8L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53c334e71e65dp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53c334e71e65dp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53c334e71e65cp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0x8p-1076L 0x8p-1076L : -0x2.e7667d69ba7db53c334e71e65cp+8L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok +clog 0x1.fp+16383 0x1.fp+16383 += clog downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdap-4f : inexact-ok += clog tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdbp-4f : inexact-ok += clog towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdap-4f : inexact-ok += clog upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c58p+4f 0xc.90fdbp-4f : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a8p+4 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a413p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a413p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad6765078664p+4L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650788p+4L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffffp-900 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffff00000008p-900 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffffp-900 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473ep+8 0xf.fffff00000008p-900 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0xf.fffff00000007fffff80000003f8p-900L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0xf.fffff00000007fffff80000003f8p-900L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0xf.fffff00000007fffff8p-900L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece601p+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0xf.fffff00000007fffff8p-900L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece601p+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326cp+8 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326cp+8 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326cp+8 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326ep+8 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbccp+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbcep+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbccp+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbcep+8L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dcp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dcp+8L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbccp+8L 0xc.90fdaa22168c434c4c6628b80c8p-4L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbcep+8L 0xc.90fdaa22168c434c4c6628b80c8p-4L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbccp+8L 0xc.90fdaa22168c434c4c6628b80c8p-4L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbcep+8L 0xc.90fdaa22168c434c4c6628b80c88p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbp+8L 0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dcp+8L 0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbp+8L 0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dcp+8L 0xc.90fdaa22168c434c4c6628b81p-4L : inexact-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdeep-16256L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdfp-16256L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdeep-16256L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac9p+12L 0x1.08420f7bdef7bdfp-16256L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdeep-16256L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdfp-16256L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdeep-16256L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac9p+12L 0x1.08420f7bdef7bdfp-16256L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.08420f7bdef7bdef7bdef7bdef7bp-16256L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.08420f7bdef7bdef7bdef7bdef7cp-16256L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.08420f7bdef7bdef7bdef7bdef7bp-16256L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.08420f7bdef7bdef7bdef7bdef7cp-16256L : inexact-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac9p+12L 0x1.08421084210839dp-15360L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac9p+12L 0x1.08421084210839dp-15360L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.08421084210839ce739ce739ce73p-15360L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.08421084210839ce739ce739ce74p-15360L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.08421084210839ce739ce739ce73p-15360L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.08421084210839ce739ce739ce74p-15360L : inexact-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b08p+12L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b08p+12L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b08p+12L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b0cp+12L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b08p+12L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b08p+12L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b08p+12L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b0cp+12L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b08d16c6399fde4p+12L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b08d16c6399fde6p+12L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b08d16c6399fde4p+12L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L 0xf.8p+16380L : 0x2.c5cd69651aad3b08d16c6399fde6p+12L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.0842108421083def7bdef7bdef39p-15360L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.0842108421083def7bdef7bdef3ap-15360L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.0842108421083def7bdef7bdef39p-15360L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.0842108421083def7bdef7bdef3ap-15360L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0xf.fffff00000003fffffc0000004f8p-900L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0xf.fffff00000003fffffc0000005p-900L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0xf.fffff00000003fffffc0000004f8p-900L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0xf.fffff00000003fffffc0000005p-900L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0xf.fffff00000003fffffc0000004p-900L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece601p+8L 0xf.fffff00000003fffffc0000004p-900L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0xf.fffff00000003fffffc0000004p-900L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece601p+8L 0xf.fffff00000003fffffc0000008p-900L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbccp+8L 0xc.90fdaa22168c034c4c6628b80fp-4L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbcep+8L 0xc.90fdaa22168c034c4c6628b80fp-4L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbccp+8L 0xc.90fdaa22168c034c4c6628b80fp-4L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbcep+8L 0xc.90fdaa22168c034c4c6628b80f08p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbp+8L 0xc.90fdaa22168c034c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dcp+8L 0xc.90fdaa22168c034c4c6628b81p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbp+8L 0xc.90fdaa22168c034c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dcp+8L 0xc.90fdaa22168c034c4c6628b81p-4L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbccp+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbcep+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbccp+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbcep+8L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dcp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dcp+8L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok +clog 0x1.fp+16383 0x1p+16383 += clog downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdap-4f : inexact-ok += clog tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdbp-4f : inexact-ok += clog towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c5p+4f 0xc.90fdap-4f : inexact-ok += clog upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x5.911c58p+4f 0xc.90fdbp-4f : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a4p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x5.911c506e4d0a8p+4 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a413p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a4128p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a413p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad676507866p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad6765078664p+4L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650786p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x5.911c506e4d0a412bad67650788p+4L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b4p+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b8p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b4p+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b8p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b4p+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b8p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b4p+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b8p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64ap+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64cp+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64ap+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64cp+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffffp-900 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffff00000008p-900 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473dep+8 0xf.fffffp-900 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x2.c5c85fdf473ep+8 0xf.fffff00000008p-900 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a4p+8L 0xf.fffff00000007ffp-900L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a8p+8L 0xf.fffff00000008p-900L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0xf.fffff00000007fffff80000003f8p-900L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0xf.fffff00000007fffff80000003f8p-900L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0xf.fffff00000007fffff8p-900L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece601p+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0xf.fffff00000007fffff8p-900L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6a7278ece601p+8L 0xf.fffff00000007fffff80000004p-900L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326cp+8 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326cp+8 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326cp+8 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x2.c62118eb4326ep+8 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce6p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce64p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbccp+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbcep+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbccp+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbcep+8L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dcp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dbp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce63fd73c039dcp+8L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b4p+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b8p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b4p+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b8p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b4p+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b8p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b4p+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b8p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64ap+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64cp+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64ap+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64cp+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbccp+8L 0xc.90fdaa22168c434c4c6628b80c8p-4L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbcep+8L 0xc.90fdaa22168c434c4c6628b80c8p-4L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbccp+8L 0xc.90fdaa22168c434c4c6628b80c8p-4L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbcep+8L 0xc.90fdaa22168c434c4c6628b80c88p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbp+8L 0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dcp+8L 0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dbp+8L 0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce65fd73c039dcp+8L 0xc.90fdaa22168c434c4c6628b81p-4L : inexact-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdeep-16256L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdfp-16256L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdeep-16256L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac9p+12L 0x1.08420f7bdef7bdfp-16256L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdeep-16256L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdfp-16256L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08420f7bdef7bdeep-16256L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac9p+12L 0x1.08420f7bdef7bdfp-16256L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.08420f7bdef7bdef7bdef7bdef7bp-16256L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.08420f7bdef7bdef7bdef7bdef7cp-16256L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.08420f7bdef7bdef7bdef7bdef7bp-16256L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.08420f7bdef7bdef7bdef7bdef7cp-16256L : inexact-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac9p+12L 0x1.08421084210839dp-15360L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.08421084210839cep-15360L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac9p+12L 0x1.08421084210839dp-15360L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.08421084210839ce739ce739ce73p-15360L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.08421084210839ce739ce739ce74p-15360L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.08421084210839ce739ce739ce73p-15360L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.08421084210839ce739ce739ce74p-15360L : inexact-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f59cp+12L 0x7.9f9c4d03fc3f4ce8p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f59cp+12L 0x7.9f9c4d03fc3f4cfp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f59cp+12L 0x7.9f9c4d03fc3f4ce8p-4L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f5ap+12L 0x7.9f9c4d03fc3f4cfp-4L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f59cp+12L 0x7.9f9c4d03fc3f4ce8p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f59cp+12L 0x7.9f9c4d03fc3f4cfp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f59cp+12L 0x7.9f9c4d03fc3f4ce8p-4L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f5ap+12L 0x7.9f9c4d03fc3f4cfp-4L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f59df677ad59f6bp+12L 0x7.9f9c4d03fc3f4ced288f0da508c8p-4L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f59df677ad59f6b2p+12L 0x7.9f9c4d03fc3f4ced288f0da508c8p-4L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f59df677ad59f6bp+12L 0x7.9f9c4d03fc3f4ced288f0da508c8p-4L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L 0x8p+16380L : 0x2.c5c9c1814957f59df677ad59f6b2p+12L 0x7.9f9c4d03fc3f4ced288f0da508ccp-4L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.0842108421083def7bdef7bdef39p-15360L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.0842108421083def7bdef7bdef3ap-15360L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.0842108421083def7bdef7bdef39p-15360L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.0842108421083def7bdef7bdef3ap-15360L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0xf.fffff00000003fffffc0000004f8p-900L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0xf.fffff00000003fffffc0000005p-900L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0xf.fffff00000003fffffc0000004f8p-900L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0xf.fffff00000003fffffc0000005p-900L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0xf.fffff00000003fffffc0000004p-900L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece601p+8L 0xf.fffff00000003fffffc0000004p-900L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0xf.fffff00000003fffffc0000004p-900L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0x2.c5c85fdf473de6ab278ece601p+8L 0xf.fffff00000003fffffc0000008p-900L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbccp+8L 0xc.90fdaa22168c034c4c6628b80fp-4L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbcep+8L 0xc.90fdaa22168c034c4c6628b80fp-4L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbccp+8L 0xc.90fdaa22168c034c4c6628b80fp-4L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbcep+8L 0xc.90fdaa22168c034c4c6628b80f08p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbp+8L 0xc.90fdaa22168c034c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dcp+8L 0xc.90fdaa22168c034c4c6628b81p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dbp+8L 0xc.90fdaa22168c034c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x2.c62118eb4326ce65fd73c039dcp+8L 0xc.90fdaa22168c034c4c6628b81p-4L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64ap+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64cp+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64ap+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x2.c5bd48bdc7c0c9b78cd23024d64cp+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbccp+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbcep+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbccp+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbcep+8L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dcp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dbp+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c62118eb4326ce67fd73c039dcp+8L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok +clog 0x1p-16440 0x1p-16441 += clog downward flt-32 0x8p-152f 0x8p-152f : -0x6.6eeafp+4f 0xc.90fdap-4f : inexact-ok += clog tonearest flt-32 0x8p-152f 0x8p-152f : -0x6.6eeafp+4f 0xc.90fdbp-4f : inexact-ok += clog towardzero flt-32 0x8p-152f 0x8p-152f : -0x6.6eeae8p+4f 0xc.90fdap-4f : inexact-ok += clog upward flt-32 0x8p-152f 0x8p-152f : -0x6.6eeae8p+4f 0xc.90fdbp-4f : inexact-ok += clog downward dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134dcp+4 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134dcp+4 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134d8p+4 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0x8p-152 0x8p-152 : -0x6.6eeaee74134d8p+4 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da148p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da148p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14p+4L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a8p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a8p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a4p+4L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4a4p+4L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae6p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x8p-152L : -0x6.6eeaee74134da14269c95adae4p+4L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += clog downward flt-32 0x8p-152f 0x0p+0f : -0x6.74768p+4f 0x0p+0f : inexact-ok += clog tonearest flt-32 0x8p-152f 0x0p+0f : -0x6.74768p+4f 0x0p+0f : inexact-ok += clog towardzero flt-32 0x8p-152f 0x0p+0f : -0x6.747678p+4f 0x0p+0f : inexact-ok += clog upward flt-32 0x8p-152f 0x0p+0f : -0x6.747678p+4f 0x0p+0f : inexact-ok += clog downward dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dc4p+4 0x0p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dcp+4 0x0p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dcp+4 0x0p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0x0p+0 : -0x6.74767f33d1dcp+4 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d1p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d08p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x0p+0L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x0p+0L : inexact-ok += clog downward dbl-64 0x8p-152 0x4p-1076 : -0x6.74767f33d1dc4p+4 0x7.ffffffffffffcp-928 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x4p-1076 : -0x6.74767f33d1dcp+4 0x8p-928 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x4p-1076 : -0x6.74767f33d1dcp+4 0x7.ffffffffffffcp-928 : inexact-ok += clog upward dbl-64 0x8p-152 0x4p-1076 : -0x6.74767f33d1dcp+4 0x8p-928 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d1p+4L 0x7.fffffffffffffff8p-928L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d1p+4L 0x8p-928L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d08p+4L 0x7.fffffffffffffff8p-928L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d08p+4L 0x8p-928L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d1p+4L 0x7.fffffffffffffff8p-928L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d1p+4L 0x8p-928L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d08p+4L 0x7.fffffffffffffff8p-928L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d08p+4L 0x8p-928L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x7.fffffffffffffffffffffffffffcp-928L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x8p-928L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x7.fffffffffffffffffffffffffffcp-928L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x8p-928L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0x7.fffffffffffffffffffffffffep-928L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x8p-928L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x7.fffffffffffffffffffffffffep-928L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x4p-1076L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x8p-928L : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d1p+4L 0xf.fffffffffffffffp-16296L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d1p+4L 0x1p-16292L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d08p+4L 0xf.fffffffffffffffp-16296L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d08p+4L 0x1p-16292L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d1p+4L 0xf.fffffffffffffffp-16296L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d1p+4L 0x1p-16292L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d08p+4L 0xf.fffffffffffffffp-16296L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d08p+4L 0x1p-16292L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0xf.fffffffffffffffffffffffffff8p-16296L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1p-16292L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0xf.fffffffffffffffffffffffffff8p-16296L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x8p-16444L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1p-16292L : inexact-ok += clog downward flt-32 0x0p+0f 0x8p-152f : -0x6.74768p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0x8p-152f : -0x6.74768p+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0x8p-152f : -0x6.747678p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0x8p-152f : -0x6.747678p+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dc4p+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x0p+0 0x4p-1076 : -0x2.e870a88dae388p+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x4p-1076 : -0x2.e870a88dae386p+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x4p-1076 : -0x2.e870a88dae386p+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x4p-1076 : -0x2.e870a88dae386p+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c092p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c1p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c1p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773cp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773cp+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959d4p+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959dp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959dp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959dp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959d4p+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959dp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959dp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959dp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959d09b8e098fdd5ap+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959d09b8e098fdd5ap+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959d09b8e098fdd58p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x8p-16444L : -0x2.c8408654aa1959d09b8e098fdd58p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0x8p-152 : -0x6.74767f33d1dc4p+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 0x8p-152 : -0x6.74767f33d1dcp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0x0p+0 : -0x2.e870a88dae388p+8 0x0p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0x0p+0 : -0x2.e870a88dae386p+8 0x0p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0x0p+0 : -0x2.e870a88dae386p+8 0x0p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 0x0p+0 : -0x2.e870a88dae386p+8 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c74p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c74p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c7p+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c7p+8L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c74p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c74p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c7p+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c7p+8L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c092p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c1p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773c1p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773cp+8L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0x0p+0L : -0x2.e870a88dae386c72b4fd4773cp+8L 0x0p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0x4p-1076 : -0x2.e817ef81b24fap+8 0xc.90fdaa22168cp-4 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0x4p-1076 : -0x2.e817ef81b24f8p+8 0xc.90fdaa22168cp-4 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0x4p-1076 : -0x2.e817ef81b24f8p+8 0xc.90fdaa22168cp-4 : inexact-ok += clog upward dbl-64 0x4p-1076 0x4p-1076 : -0x2.e817ef81b24f8p+8 0xc.90fdaa22168c8p-4 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b8p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b8p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c234p-4L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b4p+8L 0xc.90fdaa22168c235p-4L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f49p+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f48ep+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f48ep+8L 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f48ep+8L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f5p+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f5p+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f4p+8L 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : -0x2.e817ef81b24f84b5df185599f4p+8L 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c74p+8L 0x1.fffffffffffffffep-15368L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c74p+8L 0x2p-15368L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c7p+8L 0x1.fffffffffffffffep-15368L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c7p+8L 0x2p-15368L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c74p+8L 0x1.fffffffffffffffep-15368L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c74p+8L 0x2p-15368L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c7p+8L 0x1.fffffffffffffffep-15368L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c7p+8L 0x2p-15368L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c72b4fd4773c092p+8L 0x1.ffffffffffffffffffffffffffffp-15368L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x2p-15368L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x1.ffffffffffffffffffffffffffffp-15368L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0x8p-16444L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x2p-15368L : inexact-ok += clog downward ldbl-96-intel 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d1p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d08p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c8p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x1p-16440L 0x8p-152L : -0x6.74767f33d1dc1d0fc8187877a4c4p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-intel 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cdcp+12L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cd8p+12L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cd8p+12L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cd8p+12L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cdcp+12L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cd8p+12L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cd8p+12L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cd8p+12L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cd900d16b54a3dap+12L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cd900d16b54a3dap+12L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cd900d16b54a3d8p+12L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x1p-16440L 0x0p+0L : -0x2.c8356f332a9c3cd900d16b54a3d8p+12L 0x0p+0L : inexact-ok += clog downward ldbl-96-intel 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c74p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c7p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c092p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x1p-16440L 0x4p-1076L : -0x2.e870a88dae386c72b4fd4773c09p+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-intel 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229338p+12L 0x7.6b19c1586ed3da28p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229338p+12L 0x7.6b19c1586ed3da28p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229334p+12L 0x7.6b19c1586ed3da28p-4L : inexact-ok += clog upward ldbl-96-intel 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229334p+12L 0x7.6b19c1586ed3da3p-4L : inexact-ok += clog downward ldbl-96-m68k 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229338p+12L 0x7.6b19c1586ed3da28p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229338p+12L 0x7.6b19c1586ed3da28p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229334p+12L 0x7.6b19c1586ed3da28p-4L : inexact-ok += clog upward ldbl-96-m68k 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229334p+12L 0x7.6b19c1586ed3da3p-4L : inexact-ok += clog downward ldbl-128 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229336e60f0dd2b4aap+12L 0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += clog tonearest ldbl-128 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229336e60f0dd2b4aap+12L 0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += clog towardzero ldbl-128 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229336e60f0dd2b4a8p+12L 0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += clog upward ldbl-128 0x1p-16440L 0x8p-16444L : -0x2.c833a633ae229336e60f0dd2b4a8p+12L 0x7.6b19c1586ed3da2b7f222f65e1d8p-4L : inexact-ok +clog 0x1p-149 0x1.fp+127 += clog downward flt-32 0x8p-152f 0xf.8p+124f : 0x5.8b0ebp+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x8p-152f 0xf.8p+124f : 0x5.8b0eb8p+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x8p-152f 0xf.8p+124f : 0x5.8b0ebp+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x8p-152f 0xf.8p+124f : 0x5.8b0eb8p+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x8p-152 0xf.8p+124 : 0x5.8b0eb4d23f418p+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0xf.8p+124 : 0x5.8b0eb4d23f41cp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0xf.8p+124 : 0x5.8b0eb4d23f418p+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0xf.8p+124 : 0x5.8b0eb4d23f41cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab4p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab4p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b9117ap+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok +clog -0x1p-149 0x1.fp+127 += clog downward flt-32 -0x8p-152f 0xf.8p+124f : 0x5.8b0ebp+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 -0x8p-152f 0xf.8p+124f : 0x5.8b0eb8p+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x8p-152f 0xf.8p+124f : 0x5.8b0ebp+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x8p-152f 0xf.8p+124f : 0x5.8b0eb8p+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 -0x8p-152 0xf.8p+124 : 0x5.8b0eb4d23f418p+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 0xf.8p+124 : 0x5.8b0eb4d23f41cp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 0xf.8p+124 : 0x5.8b0eb4d23f418p+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 0xf.8p+124 : 0x5.8b0eb4d23f41cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab4p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab4p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L 0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b9117ap+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok +clog 0x1p-149 -0x1.fp+127 += clog downward flt-32 0x8p-152f -0xf.8p+124f : 0x5.8b0ebp+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 0x8p-152f -0xf.8p+124f : 0x5.8b0eb8p+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x8p-152f -0xf.8p+124f : 0x5.8b0ebp+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x8p-152f -0xf.8p+124f : 0x5.8b0eb8p+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 0x8p-152 -0xf.8p+124 : 0x5.8b0eb4d23f418p+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 -0xf.8p+124 : 0x5.8b0eb4d23f41cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 -0xf.8p+124 : 0x5.8b0eb4d23f418p+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 -0xf.8p+124 : 0x5.8b0eb4d23f41cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab4p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab4p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b9117ap+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok +clog -0x1p-149 -0x1.fp+127 += clog downward flt-32 -0x8p-152f -0xf.8p+124f : 0x5.8b0ebp+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 -0x8p-152f -0xf.8p+124f : 0x5.8b0eb8p+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x8p-152f -0xf.8p+124f : 0x5.8b0ebp+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x8p-152f -0xf.8p+124f : 0x5.8b0eb8p+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 -0x8p-152 -0xf.8p+124 : 0x5.8b0eb4d23f418p+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 -0xf.8p+124 : 0x5.8b0eb4d23f41cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 -0xf.8p+124 : 0x5.8b0eb4d23f418p+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 -0xf.8p+124 : 0x5.8b0eb4d23f41cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab4p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab38p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab4p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L -0xf.8p+124L : 0x5.8b0eb4d23f41ab3ace63b9117ap+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok +clog -0x1.fp+127 0x1p-149 += clog downward flt-32 -0xf.8p+124f 0x8p-152f : 0x5.8b0ebp+4f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0xf.8p+124f 0x8p-152f : 0x5.8b0eb8p+4f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.8p+124f 0x8p-152f : 0x5.8b0ebp+4f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.8p+124f 0x8p-152f : 0x5.8b0eb8p+4f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0xf.8p+124 0x8p-152 : 0x5.8b0eb4d23f418p+4 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.8p+124 0x8p-152 : 0x5.8b0eb4d23f41cp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.8p+124 0x8p-152 : 0x5.8b0eb4d23f418p+4 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.8p+124 0x8p-152 : 0x5.8b0eb4d23f41cp+4 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab4p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab4p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b9117ap+4L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok +clog -0x1.fp+127 -0x1p-149 += clog downward flt-32 -0xf.8p+124f -0x8p-152f : 0x5.8b0ebp+4f -0x3.243f6cp+0f : inexact-ok += clog tonearest flt-32 -0xf.8p+124f -0x8p-152f : 0x5.8b0eb8p+4f -0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.8p+124f -0x8p-152f : 0x5.8b0ebp+4f -0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.8p+124f -0x8p-152f : 0x5.8b0eb8p+4f -0x3.243f68p+0f : inexact-ok += clog downward dbl-64 -0xf.8p+124 -0x8p-152 : 0x5.8b0eb4d23f418p+4 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.8p+124 -0x8p-152 : 0x5.8b0eb4d23f41cp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.8p+124 -0x8p-152 : 0x5.8b0eb4d23f418p+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.8p+124 -0x8p-152 : 0x5.8b0eb4d23f41cp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab4p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab4p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b9117ap+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok +clog 0x1.fp+127 0x1p-149 += clog downward flt-32 0xf.8p+124f 0x8p-152f : 0x5.8b0ebp+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0xf.8p+124f 0x8p-152f : 0x5.8b0eb8p+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0xf.8p+124f 0x8p-152f : 0x5.8b0ebp+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0xf.8p+124f 0x8p-152f : 0x5.8b0eb8p+4f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.8p+124 0x8p-152 : 0x5.8b0eb4d23f418p+4 0x8.421084210842p-280 : inexact-ok += clog tonearest dbl-64 0xf.8p+124 0x8p-152 : 0x5.8b0eb4d23f41cp+4 0x8.421084210842p-280 : inexact-ok += clog towardzero dbl-64 0xf.8p+124 0x8p-152 : 0x5.8b0eb4d23f418p+4 0x8.421084210842p-280 : inexact-ok += clog upward dbl-64 0xf.8p+124 0x8p-152 : 0x5.8b0eb4d23f41cp+4 0x8.4210842108428p-280 : inexact-ok += clog downward ldbl-96-intel 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x8.421084210842108p-280L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x8.421084210842108p-280L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x8.421084210842108p-280L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab4p+4L 0x8.421084210842109p-280L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x8.421084210842108p-280L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x8.421084210842108p-280L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L 0x8.421084210842108p-280L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab4p+4L 0x8.421084210842109p-280L : inexact-ok += clog downward ldbl-128 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L 0x8.421084210842108421084210842p-280L : inexact-ok += clog tonearest ldbl-128 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L 0x8.421084210842108421084210842p-280L : inexact-ok += clog towardzero ldbl-128 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L 0x8.421084210842108421084210842p-280L : inexact-ok += clog upward ldbl-128 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L 0x8.4210842108421084210842108428p-280L : inexact-ok += clog downward ldbl-128ibm 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x8.42108421084210842108421084p-280L : inexact-ok += clog tonearest ldbl-128ibm 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x8.42108421084210842108421084p-280L : inexact-ok += clog towardzero ldbl-128ibm 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L 0x8.42108421084210842108421084p-280L : inexact-ok += clog upward ldbl-128ibm 0xf.8p+124L 0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b9117ap+4L 0x8.42108421084210842108421088p-280L : inexact-ok +clog 0x1.fp+127 -0x1p-149 += clog downward flt-32 0xf.8p+124f -0x8p-152f : 0x5.8b0ebp+4f -0x8p-152f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0xf.8p+124f -0x8p-152f : 0x5.8b0eb8p+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0xf.8p+124f -0x8p-152f : 0x5.8b0ebp+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0xf.8p+124f -0x8p-152f : 0x5.8b0eb8p+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.8p+124 -0x8p-152 : 0x5.8b0eb4d23f418p+4 -0x8.4210842108428p-280 : inexact-ok += clog tonearest dbl-64 0xf.8p+124 -0x8p-152 : 0x5.8b0eb4d23f41cp+4 -0x8.421084210842p-280 : inexact-ok += clog towardzero dbl-64 0xf.8p+124 -0x8p-152 : 0x5.8b0eb4d23f418p+4 -0x8.421084210842p-280 : inexact-ok += clog upward dbl-64 0xf.8p+124 -0x8p-152 : 0x5.8b0eb4d23f41cp+4 -0x8.421084210842p-280 : inexact-ok += clog downward ldbl-96-intel 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x8.421084210842109p-280L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x8.421084210842108p-280L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x8.421084210842108p-280L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab4p+4L -0x8.421084210842108p-280L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x8.421084210842109p-280L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x8.421084210842108p-280L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab38p+4L -0x8.421084210842108p-280L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab4p+4L -0x8.421084210842108p-280L : inexact-ok += clog downward ldbl-128 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L -0x8.421084210842108421084210842p-280L : inexact-ok += clog tonearest ldbl-128 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L -0x8.421084210842108421084210842p-280L : inexact-ok += clog towardzero ldbl-128 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178dp+4L -0x8.4210842108421084210842108418p-280L : inexact-ok += clog upward ldbl-128 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178d4p+4L -0x8.4210842108421084210842108418p-280L : inexact-ok += clog downward ldbl-128ibm 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x8.42108421084210842108421088p-280L : inexact-ok += clog tonearest ldbl-128ibm 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x8.42108421084210842108421084p-280L : inexact-ok += clog towardzero ldbl-128ibm 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b91178p+4L -0x8.42108421084210842108421084p-280L : inexact-ok += clog upward ldbl-128ibm 0xf.8p+124L -0x8p-152L : 0x5.8b0eb4d23f41ab3ace63b9117ap+4L -0x8.42108421084210842108421084p-280L : inexact-ok +clog 0x1p-1074 0x1.fp+1023 += clog downward flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x8p-152 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0xf.8p+1020 : 0x2.c5c03f30824a6p+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x0p+0 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0xf.8p+1020 : 0x2.c5c03f30824a6p+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 0xf.8p+1020 : 0x2.c5c03f30824a6p+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok +clog -0x1p-1074 0x1.fp+1023 += clog downward flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x0p+0 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 0xf.8p+1020 : 0x2.c5c03f30824a6p+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x8p-152 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 0xf.8p+1020 : 0x2.c5c03f30824a6p+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 0xf.8p+1020 : 0x2.c5c03f30824a4p+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 0xf.8p+1020 : 0x2.c5c03f30824a6p+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a449p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L 0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok +clog 0x1p-1074 -0x1.fp+1023 += clog downward flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x8p-152 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 -0xf.8p+1020 : 0x2.c5c03f30824a6p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x0p+0 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 -0xf.8p+1020 : 0x2.c5c03f30824a6p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 -0xf.8p+1020 : 0x2.c5c03f30824a6p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok +clog -0x1p-1074 -0x1.fp+1023 += clog downward flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x0p+0 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 -0xf.8p+1020 : 0x2.c5c03f30824a6p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x8p-152 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 -0xf.8p+1020 : 0x2.c5c03f30824a6p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 -0xf.8p+1020 : 0x2.c5c03f30824a4p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 -0xf.8p+1020 : 0x2.c5c03f30824a6p+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cp+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a449p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025255ep+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef833025256p+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302525p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L -0xf.8p+1020L : 0x2.c5c03f30824a448cef83302526p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok +clog -0x1.fp+1023 0x1p-1074 += clog downward flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7cp+4 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7cp+4 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7cp+4 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0xf.8p+1020 0x8p-152 : 0x2.c5c03f30824a4p+8 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.8p+1020 0x8p-152 : 0x2.c5c03f30824a4p+8 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.8p+1020 0x8p-152 : 0x2.c5c03f30824a4p+8 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.8p+1020 0x8p-152 : 0x2.c5c03f30824a6p+8 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a449p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a449p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef833025255ep+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef833025256p+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef833025255ep+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef833025256p+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef83302526p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0xf.8p+1020 0x0p+0 : 0x2.c5c03f30824a4p+8 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.8p+1020 0x0p+0 : 0x2.c5c03f30824a4p+8 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.8p+1020 0x0p+0 : 0x2.c5c03f30824a4p+8 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.8p+1020 0x0p+0 : 0x2.c5c03f30824a6p+8 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a449p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a449p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef833025255ep+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef833025256p+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef833025255ep+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef833025256p+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef83302526p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0xf.8p+1020 0x4p-1076 : 0x2.c5c03f30824a4p+8 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.8p+1020 0x4p-1076 : 0x2.c5c03f30824a4p+8 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.8p+1020 0x4p-1076 : 0x2.c5c03f30824a4p+8 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.8p+1020 0x4p-1076 : 0x2.c5c03f30824a6p+8 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a449p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a449p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef833025255ep+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef833025256p+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef833025255ep+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef833025256p+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef83302526p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok +clog -0x1.fp+1023 -0x1p-1074 += clog downward flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x3.243f6cp+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x3.243f68p+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7cp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x3.243f6cp+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x3.243f68p+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7cp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7cp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward dbl-64 -0xf.8p+1020 -0x0p+0 : 0x2.c5c03f30824a4p+8 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.8p+1020 -0x0p+0 : 0x2.c5c03f30824a4p+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.8p+1020 -0x0p+0 : 0x2.c5c03f30824a4p+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.8p+1020 -0x0p+0 : 0x2.c5c03f30824a6p+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a449p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a449p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef833025255ep+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef833025256p+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef833025255ep+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef833025256p+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef83302526p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward dbl-64 -0xf.8p+1020 -0x8p-152 : 0x2.c5c03f30824a4p+8 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.8p+1020 -0x8p-152 : 0x2.c5c03f30824a4p+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.8p+1020 -0x8p-152 : 0x2.c5c03f30824a4p+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.8p+1020 -0x8p-152 : 0x2.c5c03f30824a6p+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a449p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a449p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef833025255ep+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef833025256p+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef833025255ep+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef833025256p+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef83302526p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward dbl-64 -0xf.8p+1020 -0x4p-1076 : 0x2.c5c03f30824a4p+8 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.8p+1020 -0x4p-1076 : 0x2.c5c03f30824a4p+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.8p+1020 -0x4p-1076 : 0x2.c5c03f30824a4p+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.8p+1020 -0x4p-1076 : 0x2.c5c03f30824a6p+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a449p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a449p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef833025255ep+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef833025256p+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef833025255ep+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef833025256p+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef83302526p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok +clog 0x1.fp+1023 0x1p-1074 += clog downward flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x8.000008000008p-280 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x8.000008000008p-280 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x8.000008000008p-280 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7cp+4 0x8.0000080000088p-280 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008001p-280L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008001p-280L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x8.0000080000080000080000080008p-280L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x8.00000800000800000800000804p-280L : inexact-ok += clog downward flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok += clog tonearest flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x0p+0f : inexact-ok += clog towardzero flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok += clog upward flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x0p+0f : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7cp+4 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x0p+0L : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7cp+4 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.0000040000040008p-1204L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.0000040000040008p-1204L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x4.000004000004000004000004p-1204L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x4.000004000004000004000004p-1204L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x4.000004000004000004000004p-1204L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x4.0000040000040000040000040004p-1204L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.8p+1020 0x8p-152 : 0x2.c5c03f30824a4p+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.8p+1020 0x8p-152 : 0x2.c5c03f30824a4p+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.8p+1020 0x8p-152 : 0x2.c5c03f30824a4p+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.8p+1020 0x8p-152 : 0x2.c5c03f30824a6p+8 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x8.421084210842108p-1176L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x8.421084210842108p-1176L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x8.421084210842108p-1176L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a449p+8L 0x8.421084210842109p-1176L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x8.421084210842108p-1176L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x8.421084210842108p-1176L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cp+8L 0x8.421084210842108p-1176L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a449p+8L 0x8.421084210842109p-1176L : inexact-ok += clog downward ldbl-128 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef833025255ep+8L 0x8.421084210842108421084210842p-1176L : inexact-ok += clog tonearest ldbl-128 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef833025256p+8L 0x8.421084210842108421084210842p-1176L : inexact-ok += clog towardzero ldbl-128 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef833025255ep+8L 0x8.421084210842108421084210842p-1176L : inexact-ok += clog upward ldbl-128 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef833025256p+8L 0x8.4210842108421084210842108428p-1176L : inexact-ok += clog downward ldbl-128ibm 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.8p+1020L 0x8p-152L : 0x2.c5c03f30824a448cef83302526p+8L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.8p+1020 0x0p+0 : 0x2.c5c03f30824a4p+8 0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.8p+1020 0x0p+0 : 0x2.c5c03f30824a4p+8 0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.8p+1020 0x0p+0 : 0x2.c5c03f30824a4p+8 0x0p+0 : inexact-ok += clog upward dbl-64 0xf.8p+1020 0x0p+0 : 0x2.c5c03f30824a6p+8 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a449p+8L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cp+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a449p+8L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef833025255ep+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef833025256p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef833025255ep+8L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef833025256p+8L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.8p+1020L 0x0p+0L : 0x2.c5c03f30824a448cef83302526p+8L 0x0p+0L : inexact-ok += clog downward dbl-64 0xf.8p+1020 0x4p-1076 : 0x2.c5c03f30824a4p+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.8p+1020 0x4p-1076 : 0x2.c5c03f30824a4p+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.8p+1020 0x4p-1076 : 0x2.c5c03f30824a4p+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.8p+1020 0x4p-1076 : 0x2.c5c03f30824a6p+8 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x4.210842108421084p-2100L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x4.210842108421084p-2100L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x4.210842108421084p-2100L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a449p+8L 0x4.2108421084210848p-2100L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x4.210842108421084p-2100L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x4.210842108421084p-2100L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cp+8L 0x4.210842108421084p-2100L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a449p+8L 0x4.2108421084210848p-2100L : inexact-ok += clog downward ldbl-128 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef833025255ep+8L 0x4.210842108421084210842108421p-2100L : inexact-ok += clog tonearest ldbl-128 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef833025256p+8L 0x4.210842108421084210842108421p-2100L : inexact-ok += clog towardzero ldbl-128 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef833025255ep+8L 0x4.210842108421084210842108421p-2100L : inexact-ok += clog upward ldbl-128 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef833025256p+8L 0x4.2108421084210842108421084214p-2100L : inexact-ok += clog downward ldbl-128ibm 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.8p+1020L 0x4p-1076L : 0x2.c5c03f30824a448cef83302526p+8L 0x4p-1076L : inexact-ok underflow errno-erange-ok +clog 0x1.fp+1023 -0x1p-1074 += clog downward flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x0p+0f : inexact-ok += clog tonearest flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok += clog towardzero flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x0p+0f : inexact-ok += clog upward flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok += clog downward dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7cp+4 -0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x0p+0L : inexact-ok += clog downward flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x8p-152f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x8.0000080000088p-280 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x8.000008000008p-280 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x8.000008000008p-280 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7cp+4 -0x8.000008000008p-280 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008001p-280L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008001p-280L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x8.000008000008000008000007fff8p-280L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x8.000008000008000008000007fff8p-280L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x8.000008000008000008000007fcp-280L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x8.000008000008000008000007fcp-280L : inexact-ok += clog downward dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x4p-1076 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7cp+4 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.0000040000040008p-1204L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.0000040000040008p-1204L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x4.000004000004000004000004p-1204L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x4.000004000004000004000004p-1204L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x4.000004000004000004000003fffcp-1204L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x4.000004000004000004000003fffcp-1204L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.8p+1020 -0x0p+0 : 0x2.c5c03f30824a4p+8 -0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.8p+1020 -0x0p+0 : 0x2.c5c03f30824a4p+8 -0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.8p+1020 -0x0p+0 : 0x2.c5c03f30824a4p+8 -0x0p+0 : inexact-ok += clog upward dbl-64 0xf.8p+1020 -0x0p+0 : 0x2.c5c03f30824a6p+8 -0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a449p+8L -0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cp+8L -0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a449p+8L -0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef833025255ep+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef833025256p+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef833025255ep+8L -0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef833025256p+8L -0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef83302525p+8L -0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.8p+1020L -0x0p+0L : 0x2.c5c03f30824a448cef83302526p+8L -0x0p+0L : inexact-ok += clog downward dbl-64 0xf.8p+1020 -0x8p-152 : 0x2.c5c03f30824a4p+8 -0x4p-1076 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.8p+1020 -0x8p-152 : 0x2.c5c03f30824a4p+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.8p+1020 -0x8p-152 : 0x2.c5c03f30824a4p+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.8p+1020 -0x8p-152 : 0x2.c5c03f30824a6p+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x8.421084210842109p-1176L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x8.421084210842108p-1176L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x8.421084210842108p-1176L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a449p+8L -0x8.421084210842108p-1176L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x8.421084210842109p-1176L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x8.421084210842108p-1176L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cp+8L -0x8.421084210842108p-1176L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a449p+8L -0x8.421084210842108p-1176L : inexact-ok += clog downward ldbl-128 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef833025255ep+8L -0x8.421084210842108421084210842p-1176L : inexact-ok += clog tonearest ldbl-128 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef833025256p+8L -0x8.421084210842108421084210842p-1176L : inexact-ok += clog towardzero ldbl-128 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef833025255ep+8L -0x8.4210842108421084210842108418p-1176L : inexact-ok += clog upward ldbl-128 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef833025256p+8L -0x8.4210842108421084210842108418p-1176L : inexact-ok += clog downward ldbl-128ibm 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef83302525p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.8p+1020L -0x8p-152L : 0x2.c5c03f30824a448cef83302526p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.8p+1020 -0x4p-1076 : 0x2.c5c03f30824a4p+8 -0x4p-1076 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.8p+1020 -0x4p-1076 : 0x2.c5c03f30824a4p+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.8p+1020 -0x4p-1076 : 0x2.c5c03f30824a4p+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.8p+1020 -0x4p-1076 : 0x2.c5c03f30824a6p+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x4.2108421084210848p-2100L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x4.210842108421084p-2100L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x4.210842108421084p-2100L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a449p+8L -0x4.210842108421084p-2100L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x4.2108421084210848p-2100L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x4.210842108421084p-2100L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cp+8L -0x4.210842108421084p-2100L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a449p+8L -0x4.210842108421084p-2100L : inexact-ok += clog downward ldbl-128 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef833025255ep+8L -0x4.210842108421084210842108421p-2100L : inexact-ok += clog tonearest ldbl-128 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef833025256p+8L -0x4.210842108421084210842108421p-2100L : inexact-ok += clog towardzero ldbl-128 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef833025255ep+8L -0x4.210842108421084210842108420cp-2100L : inexact-ok += clog upward ldbl-128 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef833025256p+8L -0x4.210842108421084210842108420cp-2100L : inexact-ok += clog downward ldbl-128ibm 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef83302525p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.8p+1020L -0x4p-1076L : 0x2.c5c03f30824a448cef83302526p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok +clog 0x1p-16445 0x1.fp+16383 += clog downward flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok +clog -0x1p-16445 0x1.fp+16383 += clog downward flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok +clog 0x1p-16445 -0x1.fp+16383 += clog downward flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok +clog -0x1p-16445 -0x1.fp+16383 += clog downward flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok +clog -0x1.fp+16383 0x1p-16445 += clog downward flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7cp+4 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7cp+4 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7cp+4 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473ep+8 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473ep+8 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473ep+8 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok +clog -0x1.fp+16383 -0x1p-16445 += clog downward flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x3.243f6cp+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x3.243f68p+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7cp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x3.243f6cp+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x3.243f68p+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7cp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7cp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473ep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473ep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473ep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok +clog 0x1.fp+16383 0x1p-16445 += clog downward flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x8.000008000008p-280 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x8.000008000008p-280 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x8.000008000008p-280 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7cp+4 0x8.0000080000088p-280 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008001p-280L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008001p-280L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x8.0000080000080000080000080008p-280L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x8.00000800000800000800000804p-280L : inexact-ok += clog downward flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok += clog tonearest flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x0p+0f : inexact-ok += clog towardzero flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok += clog upward flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x0p+0f : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7cp+4 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x0p+0L : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7cp+4 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.0000040000040008p-1204L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.0000040000040008p-1204L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x4.000004000004000004000004p-1204L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x4.000004000004000004000004p-1204L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x4.000004000004000004000004p-1204L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x4.0000040000040000040000040004p-1204L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x8p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473ep+8 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x8.0000000000004p-1176L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x8.0000000000004p-1176L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x8.0000000000004p-1176L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x8.000000000000401p-1176L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x8.0000000000004p-1176L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x8.0000000000004p-1176L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x8.0000000000004p-1176L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x8.000000000000401p-1176L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x8.00000000000040000000000002p-1176L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x8.00000000000040000000000002p-1176L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x8.00000000000040000000000002p-1176L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x8.0000000000004000000000000208p-1176L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473ep+8 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x0p+0L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473ep+8 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x4.0000000000002p-2100L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x4.0000000000002p-2100L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x4.0000000000002p-2100L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x4.0000000000002008p-2100L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x4.0000000000002p-2100L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x4.0000000000002p-2100L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x4.0000000000002p-2100L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x4.0000000000002008p-2100L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x4.00000000000020000000000001p-2100L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x4.00000000000020000000000001p-2100L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x4.00000000000020000000000001p-2100L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x4.0000000000002000000000000104p-2100L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x8p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L 0x8p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L 0x8p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L 0x8p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x8.000000000000200000000000028p-1176L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x8.000000000000200000000000028p-1176L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x8.000000000000200000000000028p-1176L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x8.0000000000002000000000000288p-1176L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x4.000000000000100000000000014p-2100L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x4.000000000000100000000000014p-2100L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x4.000000000000100000000000014p-2100L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x4.0000000000001000000000000144p-2100L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x4p-16496L : inexact-ok underflow errno-erange-ok +clog 0x1.fp+16383 -0x1p-16445 += clog downward flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x0p+0f : inexact-ok += clog tonearest flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok += clog towardzero flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x0p+0f : inexact-ok += clog upward flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok += clog downward dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7cp+4 -0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x0p+0L : inexact-ok += clog downward flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x8p-152f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x8.0000080000088p-280 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x8.000008000008p-280 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x8.000008000008p-280 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7cp+4 -0x8.000008000008p-280 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008001p-280L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008001p-280L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x8.000008000008000008000007fff8p-280L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x8.000008000008000008000007fff8p-280L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x8.000008000008000008000007fcp-280L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x8.000008000008000008000007fcp-280L : inexact-ok += clog downward dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x4p-1076 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7cp+4 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.0000040000040008p-1204L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.0000040000040008p-1204L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x4.000004000004000004000004p-1204L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x4.000004000004000004000004p-1204L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x4.000004000004000004000003fffcp-1204L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x4.000004000004000004000003fffcp-1204L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x8p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473ep+8 -0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x4p-1076 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473ep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x8.000000000000401p-1176L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x8.0000000000004p-1176L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x8.0000000000004p-1176L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x8.0000000000004p-1176L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x8.000000000000401p-1176L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x8.0000000000004p-1176L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x8.0000000000004p-1176L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x8.0000000000004p-1176L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x8.00000000000040000000000002p-1176L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x8.00000000000040000000000002p-1176L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x8.00000000000040000000000001f8p-1176L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x8.00000000000040000000000001f8p-1176L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x4p-1076 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473ep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x4.0000000000002008p-2100L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x4.0000000000002p-2100L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x4.0000000000002p-2100L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x4.0000000000002p-2100L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x4.0000000000002008p-2100L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x4.0000000000002p-2100L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x4.0000000000002p-2100L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x4.0000000000002p-2100L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x4.00000000000020000000000001p-2100L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x4.00000000000020000000000001p-2100L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x4.00000000000020000000000000fcp-2100L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x4.00000000000020000000000000fcp-2100L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x8p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok += clog downward ldbl-96-intel 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x8p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x8p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x8p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x8.000000000000200000000000028p-1176L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x8.000000000000200000000000028p-1176L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x8.0000000000002000000000000278p-1176L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x8.0000000000002000000000000278p-1176L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x4.000000000000100000000000014p-2100L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x4.000000000000100000000000014p-2100L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x4.000000000000100000000000013cp-2100L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x4.000000000000100000000000013cp-2100L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok +clog 0x1p-16494 0x1.fp+16383 += clog downward flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x4p-16496L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16496L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16496L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-16496L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok +clog -0x1p-16494 0x1.fp+16383 += clog downward flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x0p+0f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90b8p+4f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x8p-152f 0xf.fffffp+124f : 0x5.8b90cp+4f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16448L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 -0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16448L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16496L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16496L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16496L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16496L 0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16496L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16496L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16496L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16496L 0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok +clog 0x1p-16494 -0x1.fp+16383 += clog downward flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-intel 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x4p-16496L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16496L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16496L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-16496L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x4p-16496L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16496L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16496L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-16496L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok +clog -0x1p-16494 -0x1.fp+16383 += clog downward flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x0p+0f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x0p+0 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x0p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90b8p+4f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x8p-152f -0xf.fffffp+124f : 0x5.8b90cp+4f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7bcp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 -0xf.fffffp+124 : 0x5.8b90bfae8e7cp+4 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d19p+0 : inexact-ok += clog tonearest dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473dep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x2.c5c85fdf473ep+8 -0x1.921fb54442d18p+0 : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-intel -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-intel -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc558p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc56p+4L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16448L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a4p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a8p+8L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-96-m68k -0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8cp+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k -0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac9p+12L -0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16448L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16496L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16496L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16496L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16496L -0xf.fffffp+124L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16496L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16496L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16496L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16496L -0xf.8p+16380L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog downward ldbl-128 -0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok +clog -0x1.fp+16383 0x1p-16494 += clog downward flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7cp+4 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7cp+4 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7cp+4 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L 0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L 0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L 0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L 0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473ep+8 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473ep+8 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473ep+8 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac9p+12L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L 0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L 0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L 0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L 0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok +clog -0x1.fp+16383 -0x1p-16494 += clog downward flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x3.243f6cp+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x3.243f68p+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7cp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x3.243f6cp+0f : inexact-ok += clog tonearest flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x3.243f68p+0f : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7cp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7cp+4 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128 -0xf.fffffp+124L -0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.fffffp+124L -0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.fffffp+124L -0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.fffffp+124L -0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473ep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473ep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a32p+0 : inexact-ok += clog tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473ep+8 -0x3.243f6a8885a3p+0 : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-96-intel -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-intel -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-96-m68k -0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac9p+12L -0x3.243f6a8885a308dp+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128 -0xf.8p+16380L -0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.8p+16380L -0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.8p+16380L -0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.8p+16380L -0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += clog upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok +clog 0x1.fp+16383 0x1p-16494 += clog downward flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0xf.fffffp+124f 0x8p-152f : 0x5.8b90cp+4f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x8.000008000008p-280 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x8.000008000008p-280 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7bcp+4 0x8.000008000008p-280 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0x8p-152 : 0x5.8b90bfae8e7cp+4 0x8.0000080000088p-280 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008001p-280L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc558p+4L 0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc56p+4L 0x8.000008000008001p-280L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x8.0000080000080000080000080008p-280L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x8.000008000008000008000008p-280L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x8.00000800000800000800000804p-280L : inexact-ok += clog downward flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok += clog tonearest flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x0p+0f : inexact-ok += clog towardzero flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90b8p+4f 0x0p+0f : inexact-ok += clog upward flt-32 0xf.fffffp+124f 0x0p+0f : 0x5.8b90cp+4f 0x0p+0f : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 0x0p+0 : 0x5.8b90bfae8e7cp+4 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x0p+0L : inexact-ok += clog downward dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7bcp+4 0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.fffffp+124 0x4p-1076 : 0x5.8b90bfae8e7cp+4 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.0000040000040008p-1204L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L 0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L 0x4.0000040000040008p-1204L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x4.000004000004000004000004p-1204L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x4.000004000004000004000004p-1204L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x4.000004000004000004000004p-1204L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x4.0000040000040000040000040004p-1204L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x8p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc558p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc56p+4L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x2.c5c85fdf473ep+8 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x8.0000000000004p-1176L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x8.0000000000004p-1176L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x8.0000000000004p-1176L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x8.000000000000401p-1176L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x8.0000000000004p-1176L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x8.0000000000004p-1176L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a4p+8L 0x8.0000000000004p-1176L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a8p+8L 0x8.000000000000401p-1176L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x8.00000000000040000000000002p-1176L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x8.00000000000040000000000002p-1176L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x8.00000000000040000000000002p-1176L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x8.0000000000004000000000000208p-1176L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0x2.c5c85fdf473ep+8 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x0p+0L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473dep+8 0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x2.c5c85fdf473ep+8 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x4.0000000000002p-2100L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x4.0000000000002p-2100L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x4.0000000000002p-2100L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x4.0000000000002008p-2100L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x4.0000000000002p-2100L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x4.0000000000002p-2100L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L 0x4.0000000000002p-2100L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L 0x4.0000000000002008p-2100L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x4.00000000000020000000000001p-2100L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x4.00000000000020000000000001p-2100L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x4.00000000000020000000000001p-2100L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x4.0000000000002000000000000104p-2100L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x8p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a4p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a8p+8L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fccp+8L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L 0x8p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L 0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L 0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L 0x8p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L 0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L 0x8p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L 0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac9p+12L 0x4p-16448L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L 0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L 0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L 0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L 0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L 0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x8.000000000000200000000000028p-1176L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x8.000000000000200000000000028p-1176L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x8.000000000000200000000000028p-1176L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x8.0000000000002000000000000288p-1176L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x4.000000000000100000000000014p-2100L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x4.000000000000100000000000014p-2100L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x4.000000000000100000000000014p-2100L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x4.0000000000001000000000000144p-2100L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x4p-16496L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fcap+8L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fccp+8L 0x4p-16496L : inexact-ok underflow errno-erange-ok +clog 0x1.fp+16383 -0x1p-16494 += clog downward flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x0p+0f : inexact-ok += clog tonearest flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok += clog towardzero flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90b8p+4f -0x0p+0f : inexact-ok += clog upward flt-32 0xf.fffffp+124f -0x0p+0f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok += clog downward dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 -0x0p+0 : 0x5.8b90bfae8e7cp+4 -0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L -0x0p+0L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x0p+0L : inexact-ok += clog downward flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x8p-152f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90b8p+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0xf.fffffp+124f -0x8p-152f : 0x5.8b90cp+4f -0x0p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x8.0000080000088p-280 : inexact-ok += clog tonearest dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x8.000008000008p-280 : inexact-ok += clog towardzero dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7bcp+4 -0x8.000008000008p-280 : inexact-ok += clog upward dbl-64 0xf.fffffp+124 -0x8p-152 : 0x5.8b90bfae8e7cp+4 -0x8.000008000008p-280 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008001p-280L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008001p-280L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc558p+4L -0x8.000008000008p-280L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc56p+4L -0x8.000008000008p-280L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x8.000008000008000008000007fff8p-280L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x8.000008000008000008000007fff8p-280L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x8.000008000008000008000008p-280L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x8.000008000008000008000007fcp-280L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x8.000008000008000008000007fcp-280L : inexact-ok += clog downward dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x4p-1076 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7bcp+4 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x5.8b90bfae8e7cp+4 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.0000040000040008p-1204L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.0000040000040008p-1204L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc558p+4L -0x4.000004000004p-1204L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc56p+4L -0x4.000004000004p-1204L : inexact-ok += clog downward ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x4.000004000004000004000004p-1204L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x4.000004000004000004000004p-1204L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x4.000004000004000004000003fffcp-1204L : inexact-ok += clog upward ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x4.000004000004000004000003fffcp-1204L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac6p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x5.8b90bfae8e7bc55e4f18476ac8p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x8p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc558p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc56p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac64p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0x5.8b90bfae8e7bc55e4f18476ac644p+4L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 -0x0p+0 : 0x2.c5c85fdf473ep+8 -0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x0p+0L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x4p-1076 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x2.c5c85fdf473ep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x8.000000000000401p-1176L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x8.0000000000004p-1176L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x8.0000000000004p-1176L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x8.0000000000004p-1176L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x8.000000000000401p-1176L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x8.0000000000004p-1176L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a4p+8L -0x8.0000000000004p-1176L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a8p+8L -0x8.0000000000004p-1176L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x8.00000000000040000000000002p-1176L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x8.00000000000040000000000002p-1176L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x8.00000000000040000000000001f8p-1176L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x8.00000000000040000000000001f8p-1176L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x4p-1076 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473dep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x2.c5c85fdf473ep+8 -0x0p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x4.0000000000002008p-2100L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x4.0000000000002p-2100L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x4.0000000000002p-2100L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x4.0000000000002p-2100L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x4.0000000000002008p-2100L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x4.0000000000002p-2100L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a4p+8L -0x4.0000000000002p-2100L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a8p+8L -0x4.0000000000002p-2100L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x4.00000000000020000000000001p-2100L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x4.00000000000020000000000001p-2100L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x4.00000000000020000000000000fcp-2100L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x4.00000000000020000000000000fcp-2100L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece600fp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x2.c5c85fdf473de6a7278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x8p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a4p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a8p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fcap+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x2.c5c85fdf473de6a7278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.8p+16380L -0x0p+0L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok += clog downward ldbl-96-intel 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x8p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L -0x8p-152L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x8p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L -0x4p-1076L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x8p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L -0x8p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x4p-16448L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8cp+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac9p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L -0x4p-16448L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.8p+16380L -0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.8p+16380L -0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.8p+16380L -0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6124p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.8p+16380L -0x4p-16496L : 0x2.c5c7ddd45aeeac8d040e147c6126p+12L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x0p+0L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x8.000000000000200000000000028p-1176L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x8.000000000000200000000000028p-1176L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x8.0000000000002000000000000278p-1176L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x8.0000000000002000000000000278p-1176L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x4.000000000000100000000000014p-2100L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x4.000000000000100000000000014p-2100L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x4.000000000000100000000000013cp-2100L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x4.000000000000100000000000013cp-2100L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece600fp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x2.c5c85fdf473de6ab278ece601p+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x4p-16496L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fcap+8L -0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x2.c5c85fdf473de6ab278ece600fccp+8L -0x0p+0L : inexact-ok underflow errno-erange-ok +clog 1.0 0x1.234566p-10 += clog downward flt-32 0x1p+0f 0x4.8d1598p-12f : 0xa.5b365p-24f 0x4.8d1578p-12f : inexact-ok += clog tonearest flt-32 0x1p+0f 0x4.8d1598p-12f : 0xa.5b366p-24f 0x4.8d1578p-12f : inexact-ok += clog towardzero flt-32 0x1p+0f 0x4.8d1598p-12f : 0xa.5b365p-24f 0x4.8d1578p-12f : inexact-ok += clog upward flt-32 0x1p+0f 0x4.8d1598p-12f : 0xa.5b366p-24f 0x4.8d158p-12f : inexact-ok += clog downward dbl-64 0x1p+0 0x4.8d1598p-12 : 0xa.5b365a60637cp-24 0x4.8d15789406efp-12 : inexact-ok += clog tonearest dbl-64 0x1p+0 0x4.8d1598p-12 : 0xa.5b365a60637cp-24 0x4.8d15789406ef4p-12 : inexact-ok += clog towardzero dbl-64 0x1p+0 0x4.8d1598p-12 : 0xa.5b365a60637cp-24 0x4.8d15789406efp-12 : inexact-ok += clog upward dbl-64 0x1p+0 0x4.8d1598p-12 : 0xa.5b365a60637c8p-24 0x4.8d15789406ef4p-12 : inexact-ok += clog downward ldbl-96-intel 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e9p-24L 0x4.8d15789406ef264p-12L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e9p-24L 0x4.8d15789406ef2648p-12L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e9p-24L 0x4.8d15789406ef264p-12L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2eap-24L 0x4.8d15789406ef2648p-12L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e9p-24L 0x4.8d15789406ef264p-12L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e9p-24L 0x4.8d15789406ef2648p-12L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e9p-24L 0x4.8d15789406ef264p-12L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2eap-24L 0x4.8d15789406ef2648p-12L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e90d2b7f1edbfb8p-24L 0x4.8d15789406ef2645ebd0b3c97cccp-12L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e90d2b7f1edbfb8p-24L 0x4.8d15789406ef2645ebd0b3c97cccp-12L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e90d2b7f1edbfb8p-24L 0x4.8d15789406ef2645ebd0b3c97cccp-12L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e90d2b7f1edbfcp-24L 0x4.8d15789406ef2645ebd0b3c97cdp-12L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e90d2b7f1edbcp-24L 0x4.8d15789406ef2645ebd0b3c97cp-12L : inexact-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e90d2b7f1edcp-24L 0x4.8d15789406ef2645ebd0b3c97cp-12L : inexact-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e90d2b7f1edbcp-24L 0x4.8d15789406ef2645ebd0b3c97cp-12L : inexact-ok += clog upward ldbl-128ibm 0x1p+0L 0x4.8d1598p-12L : 0xa.5b365a60637c2e90d2b7f1edcp-24L 0x4.8d15789406ef2645ebd0b3c97ep-12L : inexact-ok +clog -1.0 0x1.234566p-20 += clog downward flt-32 -0x1p+0f 0x1.234566p-20f : 0xa.5b36cp-44f 0x3.243f58p+0f : inexact-ok += clog tonearest flt-32 -0x1p+0f 0x1.234566p-20f : 0xa.5b36cp-44f 0x3.243f58p+0f : inexact-ok += clog towardzero flt-32 -0x1p+0f 0x1.234566p-20f : 0xa.5b36cp-44f 0x3.243f58p+0f : inexact-ok += clog upward flt-32 -0x1p+0f 0x1.234566p-20f : 0xa.5b36dp-44f 0x3.243f5cp+0f : inexact-ok += clog downward dbl-64 -0x1p+0 0x1.234566p-20 : 0xa.5b36c5a11e6b8p-44 0x3.243f58542f43p+0 : inexact-ok += clog tonearest dbl-64 -0x1p+0 0x1.234566p-20 : 0xa.5b36c5a11e6cp-44 0x3.243f58542f43p+0 : inexact-ok += clog towardzero dbl-64 -0x1p+0 0x1.234566p-20 : 0xa.5b36c5a11e6b8p-44 0x3.243f58542f43p+0 : inexact-ok += clog upward dbl-64 -0x1p+0 0x1.234566p-20 : 0xa.5b36c5a11e6cp-44 0x3.243f58542f432p+0 : inexact-ok += clog downward ldbl-96-intel -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf38p-44L 0x3.243f58542f4308d8p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf39p-44L 0x3.243f58542f4308dcp+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf38p-44L 0x3.243f58542f4308d8p+0L : inexact-ok += clog upward ldbl-96-intel -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf39p-44L 0x3.243f58542f4308dcp+0L : inexact-ok += clog downward ldbl-96-m68k -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf38p-44L 0x3.243f58542f4308d8p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf39p-44L 0x3.243f58542f4308dcp+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf38p-44L 0x3.243f58542f4308d8p+0L : inexact-ok += clog upward ldbl-96-m68k -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf39p-44L 0x3.243f58542f4308dcp+0L : inexact-ok += clog downward ldbl-128 -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf389330ed1e138fp-44L 0x3.243f58542f4308daee1830042aecp+0L : inexact-ok += clog tonearest ldbl-128 -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf389330ed1e138fp-44L 0x3.243f58542f4308daee1830042aecp+0L : inexact-ok += clog towardzero ldbl-128 -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf389330ed1e138fp-44L 0x3.243f58542f4308daee1830042aecp+0L : inexact-ok += clog upward ldbl-128 -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf389330ed1e138f8p-44L 0x3.243f58542f4308daee1830042aeep+0L : inexact-ok += clog downward ldbl-128ibm -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf389330ed1e138p-44L 0x3.243f58542f4308daee1830042ap+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf389330ed1e138p-44L 0x3.243f58542f4308daee1830042bp+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf389330ed1e138p-44L 0x3.243f58542f4308daee1830042ap+0L : inexact-ok += clog upward ldbl-128ibm -0x1p+0L 0x1.234566p-20L : 0xa.5b36c5a11e6bf389330ed1e13cp-44L 0x3.243f58542f4308daee1830042bp+0L : inexact-ok +clog 0x1.234566p-30 1.0 += clog downward flt-32 0x4.8d1598p-32f 0x1p+0f : 0xa.5b36cp-64f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x4.8d1598p-32f 0x1p+0f : 0xa.5b36cp-64f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x4.8d1598p-32f 0x1p+0f : 0xa.5b36cp-64f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x4.8d1598p-32f 0x1p+0f : 0xa.5b36dp-64f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x4.8d1598p-32 0x1p+0 : 0xa.5b36c5a1251f8p-64 0x1.921fb53fb5bbep+0 : inexact-ok += clog tonearest dbl-64 0x4.8d1598p-32 0x1p+0 : 0xa.5b36c5a1252p-64 0x1.921fb53fb5bbfp+0 : inexact-ok += clog towardzero dbl-64 0x4.8d1598p-32 0x1p+0 : 0xa.5b36c5a1251f8p-64 0x1.921fb53fb5bbep+0 : inexact-ok += clog upward dbl-64 0x4.8d1598p-32 0x1p+0 : 0xa.5b36c5a1252p-64 0x1.921fb53fb5bbfp+0 : inexact-ok += clog downward ldbl-96-intel 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff9p-64L 0x1.921fb53fb5bbec68p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff9p-64L 0x1.921fb53fb5bbec6ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff9p-64L 0x1.921fb53fb5bbec68p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fffap-64L 0x1.921fb53fb5bbec6ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff9p-64L 0x1.921fb53fb5bbec68p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff9p-64L 0x1.921fb53fb5bbec6ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff9p-64L 0x1.921fb53fb5bbec68p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fffap-64L 0x1.921fb53fb5bbec6ap+0L : inexact-ok += clog downward ldbl-128 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff94bf3893309088p-64L 0x1.921fb53fb5bbec69898cc5366db2p+0L : inexact-ok += clog tonearest ldbl-128 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff94bf389330909p-64L 0x1.921fb53fb5bbec69898cc5366db3p+0L : inexact-ok += clog towardzero ldbl-128 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff94bf3893309088p-64L 0x1.921fb53fb5bbec69898cc5366db2p+0L : inexact-ok += clog upward ldbl-128 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff94bf389330909p-64L 0x1.921fb53fb5bbec69898cc5366db3p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff94bf3893309p-64L 0x1.921fb53fb5bbec69898cc5366d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff94bf3893309p-64L 0x1.921fb53fb5bbec69898cc5366d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff94bf3893309p-64L 0x1.921fb53fb5bbec69898cc5366d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.8d1598p-32L 0x1p+0L : 0xa.5b36c5a1251fff94bf38933094p-64L 0x1.921fb53fb5bbec69898cc5366ep+0L : inexact-ok +clog -0x1.234566p-40 -1.0 += clog downward flt-32 -0x1.234566p-40f -0x1p+0f : 0xa.5b36cp-84f -0x1.921fb6p+0f : inexact-ok += clog tonearest flt-32 -0x1.234566p-40f -0x1p+0f : 0xa.5b36cp-84f -0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 -0x1.234566p-40f -0x1p+0f : 0xa.5b36cp-84f -0x1.921fb4p+0f : inexact-ok += clog upward flt-32 -0x1.234566p-40f -0x1p+0f : 0xa.5b36dp-84f -0x1.921fb4p+0f : inexact-ok += clog downward dbl-64 -0x1.234566p-40 -0x1p+0 : 0xa.5b36c5a1251f8p-84 -0x1.921fb54443f4dp+0 : inexact-ok += clog tonearest dbl-64 -0x1.234566p-40 -0x1p+0 : 0xa.5b36c5a1252p-84 -0x1.921fb54443f4dp+0 : inexact-ok += clog towardzero dbl-64 -0x1.234566p-40 -0x1p+0 : 0xa.5b36c5a1251f8p-84 -0x1.921fb54443f4cp+0 : inexact-ok += clog upward dbl-64 -0x1.234566p-40 -0x1p+0 : 0xa.5b36c5a1252p-84 -0x1.921fb54443f4cp+0 : inexact-ok += clog downward ldbl-96-intel -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffp-84L -0x1.921fb54443f4c9dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1252p-84L -0x1.921fb54443f4c9dp+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffp-84L -0x1.921fb54443f4c9cep+0L : inexact-ok += clog upward ldbl-96-intel -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1252p-84L -0x1.921fb54443f4c9cep+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffp-84L -0x1.921fb54443f4c9dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1252p-84L -0x1.921fb54443f4c9dp+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffp-84L -0x1.921fb54443f4c9cep+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1252p-84L -0x1.921fb54443f4c9cep+0L : inexact-ok += clog downward ldbl-128 -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffffff94bf3893p-84L -0x1.921fb54443f4c9cf898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffffff94bf3893p-84L -0x1.921fb54443f4c9cf898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffffff94bf3893p-84L -0x1.921fb54443f4c9cf898cc51701b7p+0L : inexact-ok += clog upward ldbl-128 -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffffff94bf38938p-84L -0x1.921fb54443f4c9cf898cc51701b7p+0L : inexact-ok += clog downward ldbl-128ibm -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffffff94bf388p-84L -0x1.921fb54443f4c9cf898cc51702p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffffff94bf388p-84L -0x1.921fb54443f4c9cf898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffffff94bf388p-84L -0x1.921fb54443f4c9cf898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm -0x1.234566p-40L -0x1p+0L : 0xa.5b36c5a1251ffffffff94bf38cp-84L -0x1.921fb54443f4c9cf898cc517018p+0L : inexact-ok +clog 0x1.234566p-50 1.0 += clog downward flt-32 0x4.8d1598p-52f 0x1p+0f : 0xa.5b36cp-104f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x4.8d1598p-52f 0x1p+0f : 0xa.5b36cp-104f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x4.8d1598p-52f 0x1p+0f : 0xa.5b36cp-104f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x4.8d1598p-52f 0x1p+0f : 0xa.5b36dp-104f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x4.8d1598p-52 0x1p+0 : 0xa.5b36c5a1251f8p-104 0x1.921fb54442d13p+0 : inexact-ok += clog tonearest dbl-64 0x4.8d1598p-52 0x1p+0 : 0xa.5b36c5a1252p-104 0x1.921fb54442d14p+0 : inexact-ok += clog towardzero dbl-64 0x4.8d1598p-52 0x1p+0 : 0xa.5b36c5a1251f8p-104 0x1.921fb54442d13p+0 : inexact-ok += clog upward dbl-64 0x4.8d1598p-52 0x1p+0 : 0xa.5b36c5a1252p-104 0x1.921fb54442d14p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251ffffp-104L 0x1.921fb54442d13b98p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1252p-104L 0x1.921fb54442d13b98p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251ffffp-104L 0x1.921fb54442d13b98p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1252p-104L 0x1.921fb54442d13b9ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251ffffp-104L 0x1.921fb54442d13b98p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1252p-104L 0x1.921fb54442d13b98p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251ffffp-104L 0x1.921fb54442d13b98p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1252p-104L 0x1.921fb54442d13b9ap+0L : inexact-ok += clog downward ldbl-128 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251fffffffffffff94b8p-104L 0x1.921fb54442d13b98300cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251fffffffffffff94cp-104L 0x1.921fb54442d13b98300cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251fffffffffffff94b8p-104L 0x1.921fb54442d13b98300cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251fffffffffffff94cp-104L 0x1.921fb54442d13b98300cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251fffffffffffff94p-104L 0x1.921fb54442d13b98300cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251fffffffffffff94p-104L 0x1.921fb54442d13b98300cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251fffffffffffff94p-104L 0x1.921fb54442d13b98300cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.8d1598p-52L 0x1p+0L : 0xa.5b36c5a1251fffffffffffff98p-104L 0x1.921fb54442d13b98300cc51702p+0L : inexact-ok +clog 0x1.234566p-60 1.0 += clog downward flt-32 0x1.234566p-60f 0x1p+0f : 0xa.5b36cp-124f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x1.234566p-60f 0x1p+0f : 0xa.5b36cp-124f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x1.234566p-60f 0x1p+0f : 0xa.5b36cp-124f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x1.234566p-60f 0x1p+0f : 0xa.5b36dp-124f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x1.234566p-60 0x1p+0 : 0xa.5b36c5a1251f8p-124 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x1.234566p-60 0x1p+0 : 0xa.5b36c5a1252p-124 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x1.234566p-60 0x1p+0 : 0xa.5b36c5a1251f8p-124 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x1.234566p-60 0x1p+0 : 0xa.5b36c5a1252p-124 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1251ffffp-124L 0x1.921fb54442d18456p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1252p-124L 0x1.921fb54442d18458p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1251ffffp-124L 0x1.921fb54442d18456p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1252p-124L 0x1.921fb54442d18458p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1251ffffp-124L 0x1.921fb54442d18456p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1252p-124L 0x1.921fb54442d18458p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1251ffffp-124L 0x1.921fb54442d18456p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1252p-124L 0x1.921fb54442d18458p+0L : inexact-ok += clog downward ldbl-128 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1251ffffffffffffffff8p-124L 0x1.921fb54442d184575536651701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1252p-124L 0x1.921fb54442d184575536651701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1251ffffffffffffffff8p-124L 0x1.921fb54442d184575536651701b8p+0L : inexact-ok += clog upward ldbl-128 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1252p-124L 0x1.921fb54442d184575536651701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1251ffffffffffffffcp-124L 0x1.921fb54442d1845755366517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1252p-124L 0x1.921fb54442d1845755366517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1251ffffffffffffffcp-124L 0x1.921fb54442d1845755366517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.234566p-60L 0x1p+0L : 0xa.5b36c5a1252p-124L 0x1.921fb54442d184575536651702p+0L : inexact-ok +clog 0x1p-62 1.0 += clog downward flt-32 0x4p-64f 0x1p+0f : 0x7.fffff8p-128f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x4p-64f 0x1p+0f : 0x8p-128f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x4p-64f 0x1p+0f : 0x7.fffff8p-128f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x4p-64f 0x1p+0f : 0x8p-128f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x4p-64 0x1p+0 : 0x7.ffffffffffffcp-128 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x4p-64 0x1p+0 : 0x8p-128 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-64 0x1p+0 : 0x7.ffffffffffffcp-128 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-64 0x1p+0 : 0x8p-128 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-64L 0x1p+0L : 0x7.fffffffffffffff8p-128L 0x1.921fb54442d18464p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-64L 0x1p+0L : 0x8p-128L 0x1.921fb54442d18466p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-64L 0x1p+0L : 0x7.fffffffffffffff8p-128L 0x1.921fb54442d18464p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-64L 0x1p+0L : 0x8p-128L 0x1.921fb54442d18466p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-64L 0x1p+0L : 0x7.fffffffffffffff8p-128L 0x1.921fb54442d18464p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-64L 0x1p+0L : 0x8p-128L 0x1.921fb54442d18466p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-64L 0x1p+0L : 0x7.fffffffffffffff8p-128L 0x1.921fb54442d18464p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-64L 0x1p+0L : 0x8p-128L 0x1.921fb54442d18466p+0L : inexact-ok += clog downward ldbl-128 0x4p-64L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-128L 0x1.921fb54442d18465898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-64L 0x1p+0L : 0x8p-128L 0x1.921fb54442d18465898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-64L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-128L 0x1.921fb54442d18465898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-64L 0x1p+0L : 0x8p-128L 0x1.921fb54442d18465898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-64L 0x1p+0L : 0x7.fffffffffffffffffffffffffep-128L 0x1.921fb54442d18465898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4p-64L 0x1p+0L : 0x8p-128L 0x1.921fb54442d18465898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4p-64L 0x1p+0L : 0x7.fffffffffffffffffffffffffep-128L 0x1.921fb54442d18465898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4p-64L 0x1p+0L : 0x8p-128L 0x1.921fb54442d18465898cc51702p+0L : inexact-ok +clog 0x1p-63 1.0 += clog downward flt-32 0x2p-64f 0x1p+0f : 0x1.fffff8p-128f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x2p-64f 0x1p+0f : 0x2p-128f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x2p-64f 0x1p+0f : 0x1.fffff8p-128f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x2p-64f 0x1p+0f : 0x2p-128f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x2p-64 0x1p+0 : 0x1.fffffffffffffp-128 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x2p-64 0x1p+0 : 0x2p-128 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x2p-64 0x1p+0 : 0x1.fffffffffffffp-128 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x2p-64 0x1p+0 : 0x2p-128 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x2p-64L 0x1p+0L : 0x1.fffffffffffffffep-128L 0x1.921fb54442d18466p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2p-64L 0x1p+0L : 0x2p-128L 0x1.921fb54442d18468p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2p-64L 0x1p+0L : 0x1.fffffffffffffffep-128L 0x1.921fb54442d18466p+0L : inexact-ok += clog upward ldbl-96-intel 0x2p-64L 0x1p+0L : 0x2p-128L 0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2p-64L 0x1p+0L : 0x1.fffffffffffffffep-128L 0x1.921fb54442d18466p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2p-64L 0x1p+0L : 0x2p-128L 0x1.921fb54442d18468p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2p-64L 0x1p+0L : 0x1.fffffffffffffffep-128L 0x1.921fb54442d18466p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2p-64L 0x1p+0L : 0x2p-128L 0x1.921fb54442d18468p+0L : inexact-ok += clog downward ldbl-128 0x2p-64L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-128L 0x1.921fb54442d18467898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x2p-64L 0x1p+0L : 0x2p-128L 0x1.921fb54442d18467898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x2p-64L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-128L 0x1.921fb54442d18467898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x2p-64L 0x1p+0L : 0x2p-128L 0x1.921fb54442d18467898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x2p-64L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-128L 0x1.921fb54442d18467898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2p-64L 0x1p+0L : 0x2p-128L 0x1.921fb54442d18467898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2p-64L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-128L 0x1.921fb54442d18467898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x2p-64L 0x1p+0L : 0x2p-128L 0x1.921fb54442d18467898cc51702p+0L : inexact-ok +clog 0x1p-64 1.0 += clog downward flt-32 0x1p-64f 0x1p+0f : 0x7.ffff8p-132f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x1p-64f 0x1p+0f : 0x8p-132f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x1p-64f 0x1p+0f : 0x7.ffff8p-132f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x1p-64f 0x1p+0f : 0x8p-132f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x1p-64 0x1p+0 : 0x7.ffffffffffffcp-132 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x1p-64 0x1p+0 : 0x8p-132 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x1p-64 0x1p+0 : 0x7.ffffffffffffcp-132 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x1p-64 0x1p+0 : 0x8p-132 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x1p-64L 0x1p+0L : 0x7.fffffffffffffff8p-132L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1p-64L 0x1p+0L : 0x8p-132L 0x1.921fb54442d18468p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1p-64L 0x1p+0L : 0x7.fffffffffffffff8p-132L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x1p-64L 0x1p+0L : 0x8p-132L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1p-64L 0x1p+0L : 0x7.fffffffffffffff8p-132L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p-64L 0x1p+0L : 0x8p-132L 0x1.921fb54442d18468p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p-64L 0x1p+0L : 0x7.fffffffffffffff8p-132L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1p-64L 0x1p+0L : 0x8p-132L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x1p-64L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-132L 0x1.921fb54442d18468898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x1p-64L 0x1p+0L : 0x8p-132L 0x1.921fb54442d18468898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x1p-64L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-132L 0x1.921fb54442d18468898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x1p-64L 0x1p+0L : 0x8p-132L 0x1.921fb54442d18468898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x1p-64L 0x1p+0L : 0x7.fffffffffffffffffffffffffep-132L 0x1.921fb54442d18468898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1p-64L 0x1p+0L : 0x8p-132L 0x1.921fb54442d18468898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1p-64L 0x1p+0L : 0x7.fffffffffffffffffffffffffep-132L 0x1.921fb54442d18468898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x1p-64L 0x1p+0L : 0x8p-132L 0x1.921fb54442d18468898cc51702p+0L : inexact-ok +clog 0x1p-510 1.0 += clog downward flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x8p-152f 0x1p+0f : 0x8p-152f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-512 0x1p+0 : 0x7.ffffffffffffcp-1024 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x4p-512 0x1p+0 : 0x8p-1024 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x4p-512 0x1p+0 : 0x7.ffffffffffffcp-1024 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x4p-512 0x1p+0 : 0x8p-1024 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x4p-512L 0x1p+0L : 0x7.fffffffffffffff8p-1024L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-512L 0x1p+0L : 0x8p-1024L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-512L 0x1p+0L : 0x7.fffffffffffffff8p-1024L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-512L 0x1p+0L : 0x8p-1024L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-512L 0x1p+0L : 0x7.fffffffffffffff8p-1024L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-512L 0x1p+0L : 0x8p-1024L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-512L 0x1p+0L : 0x7.fffffffffffffff8p-1024L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-512L 0x1p+0L : 0x8p-1024L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-512L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-1024L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-512L 0x1p+0L : 0x8p-1024L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-512L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-1024L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-512L 0x1p+0L : 0x8p-1024L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-512L 0x1p+0L : 0x7.ffffffffffffcp-1024L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x4p-512L 0x1p+0L : 0x8p-1024L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x4p-512L 0x1p+0L : 0x7.ffffffffffffcp-1024L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x4p-512L 0x1p+0L : 0x8p-1024L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok underflow errno-erange-ok +clog 0x1p-511 1.0 += clog downward flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x8p-152f 0x1p+0f : 0x8p-152f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x2p-512 0x1p+0 : 0x1.ffffffffffffcp-1024 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0x2p-512 0x1p+0 : 0x2p-1024 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0x2p-512 0x1p+0 : 0x1.ffffffffffffcp-1024 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0x2p-512 0x1p+0 : 0x2p-1024 0x1.921fb54442d19p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x2p-512L 0x1p+0L : 0x1.fffffffffffffffep-1024L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2p-512L 0x1p+0L : 0x2p-1024L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2p-512L 0x1p+0L : 0x1.fffffffffffffffep-1024L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x2p-512L 0x1p+0L : 0x2p-1024L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x2p-512L 0x1p+0L : 0x1.fffffffffffffffep-1024L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2p-512L 0x1p+0L : 0x2p-1024L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2p-512L 0x1p+0L : 0x1.fffffffffffffffep-1024L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2p-512L 0x1p+0L : 0x2p-1024L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x2p-512L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-1024L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x2p-512L 0x1p+0L : 0x2p-1024L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x2p-512L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-1024L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x2p-512L 0x1p+0L : 0x2p-1024L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x2p-512L 0x1p+0L : 0x1.ffffffffffffcp-1024L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x2p-512L 0x1p+0L : 0x2p-1024L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x2p-512L 0x1p+0L : 0x1.ffffffffffffcp-1024L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x2p-512L 0x1p+0L : 0x2p-1024L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok underflow errno-erange-ok +clog 0x1p-512 1.0 += clog downward flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x8p-152f 0x1p+0f : 0x8p-152f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x1p-512 0x1p+0 : 0x7.fffffffffffcp-1028 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0x1p-512 0x1p+0 : 0x8p-1028 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0x1p-512 0x1p+0 : 0x7.fffffffffffcp-1028 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0x1p-512 0x1p+0 : 0x8p-1028 0x1.921fb54442d19p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x1p-512L 0x1p+0L : 0x7.fffffffffffffff8p-1028L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1p-512L 0x1p+0L : 0x8p-1028L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1p-512L 0x1p+0L : 0x7.fffffffffffffff8p-1028L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x1p-512L 0x1p+0L : 0x8p-1028L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1p-512L 0x1p+0L : 0x7.fffffffffffffff8p-1028L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p-512L 0x1p+0L : 0x8p-1028L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p-512L 0x1p+0L : 0x7.fffffffffffffff8p-1028L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1p-512L 0x1p+0L : 0x8p-1028L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x1p-512L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-1028L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x1p-512L 0x1p+0L : 0x8p-1028L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x1p-512L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-1028L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x1p-512L 0x1p+0L : 0x8p-1028L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x1p-512L 0x1p+0L : 0x7.fffffffffffcp-1028L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x1p-512L 0x1p+0L : 0x8p-1028L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x1p-512L 0x1p+0L : 0x7.fffffffffffcp-1028L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x1p-512L 0x1p+0L : 0x8p-1028L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok underflow errno-erange-ok +clog 0x1p-8190 1.0 += clog downward flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x8p-152f 0x1p+0f : 0x8p-152f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0x4p-1076 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0x4p-1076 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0x4p-1076 0x1p+0 : 0x4p-1076 0x1.921fb54442d19p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-2152L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-2152L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x4p-1076L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x4p-8192L 0x1p+0L : 0x7.fffffffffffffff8p-16384L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-8192L 0x1p+0L : 0x8p-16384L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-8192L 0x1p+0L : 0x7.fffffffffffffff8p-16384L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-8192L 0x1p+0L : 0x8p-16384L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-8192L 0x1p+0L : 0x7.fffffffffffffff8p-16384L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-8192L 0x1p+0L : 0x8p-16384L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-8192L 0x1p+0L : 0x7.fffffffffffffff8p-16384L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-8192L 0x1p+0L : 0x8p-16384L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-8192L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-16384L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-8192L 0x1p+0L : 0x8p-16384L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-8192L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-16384L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-8192L 0x1p+0L : 0x8p-16384L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok +clog 0x1p-8191 1.0 += clog downward flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x8p-152f 0x1p+0f : 0x8p-152f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0x4p-1076 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0x4p-1076 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0x4p-1076 0x1p+0 : 0x4p-1076 0x1.921fb54442d19p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-2152L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-2152L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x4p-1076L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x2p-8192L 0x1p+0L : 0x1.fffffffffffffff8p-16384L 0x1.921fb54442d18468p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0x2p-8192L 0x1p+0L : 0x2p-16384L 0x1.921fb54442d1846ap+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0x2p-8192L 0x1p+0L : 0x1.fffffffffffffff8p-16384L 0x1.921fb54442d18468p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0x2p-8192L 0x1p+0L : 0x2p-16384L 0x1.921fb54442d1846ap+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0x2p-8192L 0x1p+0L : 0x1.fffffffffffffffcp-16384L 0x1.921fb54442d18468p+0L : inexact-ok underflow-ok errno-erange-ok += clog tonearest ldbl-96-m68k 0x2p-8192L 0x1p+0L : 0x2p-16384L 0x1.921fb54442d1846ap+0L : inexact-ok underflow-ok errno-erange-ok += clog towardzero ldbl-96-m68k 0x2p-8192L 0x1p+0L : 0x1.fffffffffffffffcp-16384L 0x1.921fb54442d18468p+0L : inexact-ok underflow-ok errno-erange-ok += clog upward ldbl-96-m68k 0x2p-8192L 0x1p+0L : 0x2p-16384L 0x1.921fb54442d1846ap+0L : inexact-ok underflow-ok errno-erange-ok += clog downward ldbl-128 0x2p-8192L 0x1p+0L : 0x1.fffffffffffffffffffffffffffcp-16384L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0x2p-8192L 0x1p+0L : 0x2p-16384L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0x2p-8192L 0x1p+0L : 0x1.fffffffffffffffffffffffffffcp-16384L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0x2p-8192L 0x1p+0L : 0x2p-16384L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok underflow errno-erange-ok +clog 0x1p-8192 1.0 += clog downward flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x8p-152f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x8p-152f 0x1p+0f : 0x8p-152f 0x1.921fb6p+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x8p-152 0x1p+0 : 0x1.fffffffffffffp-300 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x8p-152 0x1p+0 : 0x2p-300 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x1.fffffffffffffffep-300L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffffffp-300L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8p-152L 0x1p+0L : 0x1.ffffffffffffffffffffffffff8p-300L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x8p-152L 0x1p+0L : 0x2p-300L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog tonearest flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog towardzero flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb4p+0f : inexact-ok += clog upward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f 0x1.921fb6p+0f : inexact-ok += clog downward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog tonearest dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog towardzero dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok += clog upward dbl-64 0x0p+0 0x1p+0 : 0x0p+0 0x1.921fb54442d19p+0 : inexact-ok += clog downward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += clog upward ldbl-128ibm 0x0p+0L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += clog downward dbl-64 0x4p-1076 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0x4p-1076 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0x4p-1076 0x1p+0 : 0x0p+0 0x1.921fb54442d18p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0x4p-1076 0x1p+0 : 0x4p-1076 0x1.921fb54442d19p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-intel 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffff8p-2152L 0x1.921fb54442d18468p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d1846ap+0L : inexact-ok += clog downward ldbl-128 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-2152L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog tonearest ldbl-128 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog towardzero ldbl-128 0x4p-1076L 0x1p+0L : 0x7.fffffffffffffffffffffffffffcp-2152L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += clog upward ldbl-128 0x4p-1076L 0x1p+0L : 0x8p-2152L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x0p+0L 0x1.921fb54442d18469898cc517018p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x4p-1076L 0x1p+0L : 0x4p-1076L 0x1.921fb54442d18469898cc51702p+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x1p-8192L 0x1p+0L : 0x7.ffffffffffffff8p-16388L 0x1.921fb54442d18468p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0x1p-8192L 0x1p+0L : 0x8p-16388L 0x1.921fb54442d1846ap+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0x1p-8192L 0x1p+0L : 0x7.ffffffffffffff8p-16388L 0x1.921fb54442d18468p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0x1p-8192L 0x1p+0L : 0x8p-16388L 0x1.921fb54442d1846ap+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0x1p-8192L 0x1p+0L : 0x7.ffffffffffffffcp-16388L 0x1.921fb54442d18468p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0x1p-8192L 0x1p+0L : 0x8p-16388L 0x1.921fb54442d1846ap+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0x1p-8192L 0x1p+0L : 0x7.ffffffffffffffcp-16388L 0x1.921fb54442d18468p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0x1p-8192L 0x1p+0L : 0x8p-16388L 0x1.921fb54442d1846ap+0L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0x1p-8192L 0x1p+0L : 0x7.ffffffffffffffffffffffffffcp-16388L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0x1p-8192L 0x1p+0L : 0x8p-16388L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0x1p-8192L 0x1p+0L : 0x7.ffffffffffffffffffffffffffcp-16388L 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0x1p-8192L 0x1p+0L : 0x8p-16388L 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok underflow errno-erange-ok +clog 0x1.000566p0 0x1.234p-10 += clog downward flt-32 0x1.000566p+0f 0x4.8dp-12f : 0x5.704bdp-16f 0x4.8ce748p-12f : inexact-ok += clog tonearest flt-32 0x1.000566p+0f 0x4.8dp-12f : 0x5.704bdp-16f 0x4.8ce75p-12f : inexact-ok += clog towardzero flt-32 0x1.000566p+0f 0x4.8dp-12f : 0x5.704bdp-16f 0x4.8ce748p-12f : inexact-ok += clog upward flt-32 0x1.000566p+0f 0x4.8dp-12f : 0x5.704bd8p-16f 0x4.8ce75p-12f : inexact-ok += clog downward dbl-64 0x1.000566p+0 0x4.8dp-12 : 0x5.704bd22e1b8d8p-16 0x4.8ce74fee5fcd4p-12 : inexact-ok += clog tonearest dbl-64 0x1.000566p+0 0x4.8dp-12 : 0x5.704bd22e1b8dcp-16 0x4.8ce74fee5fcd4p-12 : inexact-ok += clog towardzero dbl-64 0x1.000566p+0 0x4.8dp-12 : 0x5.704bd22e1b8d8p-16 0x4.8ce74fee5fcd4p-12 : inexact-ok += clog upward dbl-64 0x1.000566p+0 0x4.8dp-12 : 0x5.704bd22e1b8dcp-16 0x4.8ce74fee5fcd8p-12 : inexact-ok += clog downward ldbl-96-intel 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3f8p-16L 0x4.8ce74fee5fcd49f8p-12L : inexact-ok += clog tonearest ldbl-96-intel 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3f8p-16L 0x4.8ce74fee5fcd4ap-12L : inexact-ok += clog towardzero ldbl-96-intel 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3f8p-16L 0x4.8ce74fee5fcd49f8p-12L : inexact-ok += clog upward ldbl-96-intel 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da4p-16L 0x4.8ce74fee5fcd4ap-12L : inexact-ok += clog downward ldbl-96-m68k 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3f8p-16L 0x4.8ce74fee5fcd49f8p-12L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3f8p-16L 0x4.8ce74fee5fcd4ap-12L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3f8p-16L 0x4.8ce74fee5fcd49f8p-12L : inexact-ok += clog upward ldbl-96-m68k 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da4p-16L 0x4.8ce74fee5fcd4ap-12L : inexact-ok += clog downward ldbl-128 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3fb1004ef3675f4p-16L 0x4.8ce74fee5fcd49fd56e4299cab88p-12L : inexact-ok += clog tonearest ldbl-128 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3fb1004ef3675f4p-16L 0x4.8ce74fee5fcd49fd56e4299cab88p-12L : inexact-ok += clog towardzero ldbl-128 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3fb1004ef3675f4p-16L 0x4.8ce74fee5fcd49fd56e4299cab88p-12L : inexact-ok += clog upward ldbl-128 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3fb1004ef3675f8p-16L 0x4.8ce74fee5fcd49fd56e4299cab8cp-12L : inexact-ok += clog downward ldbl-128ibm 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3fb1004ef3674p-16L 0x4.8ce74fee5fcd49fd56e4299caap-12L : inexact-ok += clog tonearest ldbl-128ibm 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3fb1004ef3676p-16L 0x4.8ce74fee5fcd49fd56e4299cacp-12L : inexact-ok += clog towardzero ldbl-128ibm 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3fb1004ef3674p-16L 0x4.8ce74fee5fcd49fd56e4299caap-12L : inexact-ok += clog upward ldbl-128ibm 0x1.000566p+0L 0x4.8dp-12L : 0x5.704bd22e1b8da3fb1004ef3676p-16L 0x4.8ce74fee5fcd49fd56e4299cacp-12L : inexact-ok +clog 0x1.000566p0 0x1.234p-100 += clog downward flt-32 0x1.000566p+0f 0x1.234p-100f : 0x5.65f168p-16f 0x1.2339dap-100f : inexact-ok += clog tonearest flt-32 0x1.000566p+0f 0x1.234p-100f : 0x5.65f17p-16f 0x1.2339dcp-100f : inexact-ok += clog towardzero flt-32 0x1.000566p+0f 0x1.234p-100f : 0x5.65f168p-16f 0x1.2339dap-100f : inexact-ok += clog upward flt-32 0x1.000566p+0f 0x1.234p-100f : 0x5.65f17p-16f 0x1.2339dcp-100f : inexact-ok += clog downward dbl-64 0x1.000566p+0 0x1.234p-100 : 0x5.65f16de2707p-16 0x1.2339dbd5a73c9p-100 : inexact-ok += clog tonearest dbl-64 0x1.000566p+0 0x1.234p-100 : 0x5.65f16de270704p-16 0x1.2339dbd5a73cap-100 : inexact-ok += clog towardzero dbl-64 0x1.000566p+0 0x1.234p-100 : 0x5.65f16de2707p-16 0x1.2339dbd5a73c9p-100 : inexact-ok += clog upward dbl-64 0x1.000566p+0 0x1.234p-100 : 0x5.65f16de270704p-16 0x1.2339dbd5a73cap-100 : inexact-ok += clog downward ldbl-96-intel 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021ap-16L 0x1.2339dbd5a73c9b2ep-100L : inexact-ok += clog tonearest ldbl-96-intel 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a8p-16L 0x1.2339dbd5a73c9b2ep-100L : inexact-ok += clog towardzero ldbl-96-intel 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021ap-16L 0x1.2339dbd5a73c9b2ep-100L : inexact-ok += clog upward ldbl-96-intel 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a8p-16L 0x1.2339dbd5a73c9b3p-100L : inexact-ok += clog downward ldbl-96-m68k 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021ap-16L 0x1.2339dbd5a73c9b2ep-100L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a8p-16L 0x1.2339dbd5a73c9b2ep-100L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021ap-16L 0x1.2339dbd5a73c9b2ep-100L : inexact-ok += clog upward ldbl-96-m68k 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a8p-16L 0x1.2339dbd5a73c9b3p-100L : inexact-ok += clog downward ldbl-128 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a5f8dabf873cfcp-16L 0x1.2339dbd5a73c9b2ed2413cf3d0f3p-100L : inexact-ok += clog tonearest ldbl-128 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a5f8dabf873cfcp-16L 0x1.2339dbd5a73c9b2ed2413cf3d0f4p-100L : inexact-ok += clog towardzero ldbl-128 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a5f8dabf873cfcp-16L 0x1.2339dbd5a73c9b2ed2413cf3d0f3p-100L : inexact-ok += clog upward ldbl-128 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a5f8dabf873dp-16L 0x1.2339dbd5a73c9b2ed2413cf3d0f4p-100L : inexact-ok += clog downward ldbl-128ibm 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a5f8dabf873cp-16L 0x1.2339dbd5a73c9b2ed2413cf3d08p-100L : inexact-ok += clog tonearest ldbl-128ibm 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a5f8dabf873cp-16L 0x1.2339dbd5a73c9b2ed2413cf3d1p-100L : inexact-ok += clog towardzero ldbl-128ibm 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a5f8dabf873cp-16L 0x1.2339dbd5a73c9b2ed2413cf3d08p-100L : inexact-ok += clog upward ldbl-128ibm 0x1.000566p+0L 0x1.234p-100L : 0x5.65f16de2707021a5f8dabf873ep-16L 0x1.2339dbd5a73c9b2ed2413cf3d1p-100L : inexact-ok +clog -0x1.0000000123456p0 0x1.2345678p-30 += clog downward flt-32 -0x1p+0f 0x4.8d15ap-32f : 0xa.5b36ep-64f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0x1p+0f 0x4.8d15ap-32f : 0xa.5b36fp-64f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0x1p+0f 0x4.8d15ap-32f : 0xa.5b36ep-64f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0x1p+0f 0x4.8d15ap-32f : 0xa.5b36fp-64f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0x1p+0 0x4.8d15ap-32 : 0xa.5b36ea09d1ff8p-64 0x3.243f6a83f88d6p+0 : inexact-ok += clog tonearest dbl-64 -0x1p+0 0x4.8d15ap-32 : 0xa.5b36ea09d2p-64 0x3.243f6a83f88d6p+0 : inexact-ok += clog towardzero dbl-64 -0x1p+0 0x4.8d15ap-32 : 0xa.5b36ea09d1ff8p-64 0x3.243f6a83f88d6p+0 : inexact-ok += clog upward dbl-64 -0x1p+0 0x4.8d15ap-32 : 0xa.5b36ea09d2p-64 0x3.243f6a83f88d8p+0 : inexact-ok += clog downward ldbl-96-intel -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff9p-64L 0x3.243f6a83f88d68dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff9p-64L 0x3.243f6a83f88d68d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff9p-64L 0x3.243f6a83f88d68dp+0L : inexact-ok += clog upward ldbl-96-intel -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffffap-64L 0x3.243f6a83f88d68d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff9p-64L 0x3.243f6a83f88d68dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff9p-64L 0x3.243f6a83f88d68d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff9p-64L 0x3.243f6a83f88d68dp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffffap-64L 0x3.243f6a83f88d68d4p+0L : inexact-ok += clog downward ldbl-128 -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff94bf35a1110a98p-64L 0x3.243f6a83f88d68d313198a4d6f6ap+0L : inexact-ok += clog tonearest ldbl-128 -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff94bf35a1110a98p-64L 0x3.243f6a83f88d68d313198a4d6f6cp+0L : inexact-ok += clog towardzero ldbl-128 -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff94bf35a1110a98p-64L 0x3.243f6a83f88d68d313198a4d6f6ap+0L : inexact-ok += clog upward ldbl-128 -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff94bf35a1110aap-64L 0x3.243f6a83f88d68d313198a4d6f6cp+0L : inexact-ok += clog downward ldbl-128ibm -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff94bf35a11108p-64L 0x3.243f6a83f88d68d313198a4d6fp+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff94bf35a1110cp-64L 0x3.243f6a83f88d68d313198a4d6fp+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff94bf35a11108p-64L 0x3.243f6a83f88d68d313198a4d6fp+0L : inexact-ok += clog upward ldbl-128ibm -0x1p+0L 0x4.8d15ap-32L : 0xa.5b36ea09d1ffff94bf35a1110cp-64L 0x3.243f6a83f88d68d313198a4d7p+0L : inexact-ok += clog downward flt-32 -0x1p+0f 0x4.8d1598p-32f : 0xa.5b36cp-64f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0x1p+0f 0x4.8d1598p-32f : 0xa.5b36cp-64f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0x1p+0f 0x4.8d1598p-32f : 0xa.5b36cp-64f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0x1p+0f 0x4.8d1598p-32f : 0xa.5b36dp-64f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0x1p+0 0x4.8d1598p-32 : 0xa.5b36c5a1251f8p-64 0x3.243f6a83f88d6p+0 : inexact-ok += clog tonearest dbl-64 -0x1p+0 0x4.8d1598p-32 : 0xa.5b36c5a1252p-64 0x3.243f6a83f88d8p+0 : inexact-ok += clog towardzero dbl-64 -0x1p+0 0x4.8d1598p-32 : 0xa.5b36c5a1251f8p-64 0x3.243f6a83f88d6p+0 : inexact-ok += clog upward dbl-64 -0x1p+0 0x4.8d1598p-32 : 0xa.5b36c5a1252p-64 0x3.243f6a83f88d8p+0 : inexact-ok += clog downward ldbl-96-intel -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff9p-64L 0x3.243f6a83f88d70dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff9p-64L 0x3.243f6a83f88d70d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff9p-64L 0x3.243f6a83f88d70dp+0L : inexact-ok += clog upward ldbl-96-intel -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fffap-64L 0x3.243f6a83f88d70d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff9p-64L 0x3.243f6a83f88d70dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff9p-64L 0x3.243f6a83f88d70d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff9p-64L 0x3.243f6a83f88d70dp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fffap-64L 0x3.243f6a83f88d70d4p+0L : inexact-ok += clog downward ldbl-128 -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff94bf3893309088p-64L 0x3.243f6a83f88d70d313198a4d6f6ap+0L : inexact-ok += clog tonearest ldbl-128 -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff94bf389330909p-64L 0x3.243f6a83f88d70d313198a4d6f6cp+0L : inexact-ok += clog towardzero ldbl-128 -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff94bf3893309088p-64L 0x3.243f6a83f88d70d313198a4d6f6ap+0L : inexact-ok += clog upward ldbl-128 -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff94bf389330909p-64L 0x3.243f6a83f88d70d313198a4d6f6cp+0L : inexact-ok += clog downward ldbl-128ibm -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff94bf3893309p-64L 0x3.243f6a83f88d70d313198a4d6fp+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff94bf3893309p-64L 0x3.243f6a83f88d70d313198a4d6fp+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff94bf3893309p-64L 0x3.243f6a83f88d70d313198a4d6fp+0L : inexact-ok += clog upward ldbl-128ibm -0x1p+0L 0x4.8d1598p-32L : 0xa.5b36c5a1251fff94bf38933094p-64L 0x3.243f6a83f88d70d313198a4d7p+0L : inexact-ok += clog downward dbl-64 -0x1p+0 0x4.8d159ep-32 : 0xa.5b36e0efa6c18p-64 0x3.243f6a83f88d6p+0 : inexact-ok += clog tonearest dbl-64 -0x1p+0 0x4.8d159ep-32 : 0xa.5b36e0efa6c2p-64 0x3.243f6a83f88d6p+0 : inexact-ok += clog towardzero dbl-64 -0x1p+0 0x4.8d159ep-32 : 0xa.5b36e0efa6c18p-64 0x3.243f6a83f88d6p+0 : inexact-ok += clog upward dbl-64 -0x1p+0 0x4.8d159ep-32 : 0xa.5b36e0efa6c2p-64 0x3.243f6a83f88d8p+0 : inexact-ok += clog downward ldbl-96-intel -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff9p-64L 0x3.243f6a83f88d6adp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff9p-64L 0x3.243f6a83f88d6ad4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff9p-64L 0x3.243f6a83f88d6adp+0L : inexact-ok += clog upward ldbl-96-intel -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ffap-64L 0x3.243f6a83f88d6ad4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff9p-64L 0x3.243f6a83f88d6adp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff9p-64L 0x3.243f6a83f88d6ad4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff9p-64L 0x3.243f6a83f88d6adp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ffap-64L 0x3.243f6a83f88d6ad4p+0L : inexact-ok += clog downward ldbl-128 -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff94bf365d98ed88p-64L 0x3.243f6a83f88d6ad313198a4d6f6ap+0L : inexact-ok += clog tonearest ldbl-128 -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff94bf365d98ed88p-64L 0x3.243f6a83f88d6ad313198a4d6f6cp+0L : inexact-ok += clog towardzero ldbl-128 -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff94bf365d98ed88p-64L 0x3.243f6a83f88d6ad313198a4d6f6ap+0L : inexact-ok += clog upward ldbl-128 -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff94bf365d98ed9p-64L 0x3.243f6a83f88d6ad313198a4d6f6cp+0L : inexact-ok += clog downward ldbl-128ibm -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff94bf365d98ecp-64L 0x3.243f6a83f88d6ad313198a4d6fp+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff94bf365d98ecp-64L 0x3.243f6a83f88d6ad313198a4d6fp+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff94bf365d98ecp-64L 0x3.243f6a83f88d6ad313198a4d6fp+0L : inexact-ok += clog upward ldbl-128ibm -0x1p+0L 0x4.8d159ep-32L : 0xa.5b36e0efa6c1ff94bf365d98fp-64L 0x3.243f6a83f88d6ad313198a4d7p+0L : inexact-ok += clog downward flt-32 -0x1.000002p+0f 0x4.8d15ap-32f : 0x1.fffffep-24f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0x1.000002p+0f 0x4.8d15ap-32f : 0x1.fffffep-24f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0x1.000002p+0f 0x4.8d15ap-32f : 0x1.fffffep-24f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0x1.000002p+0f 0x4.8d15ap-32f : 0x2p-24f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0x1.000002p+0 0x4.8d15ap-32 : 0x1.fffffe000a5dep-24 0x3.243f6a83f88d6p+0 : inexact-ok += clog tonearest dbl-64 -0x1.000002p+0 0x4.8d15ap-32 : 0x1.fffffe000a5dep-24 0x3.243f6a83f88d8p+0 : inexact-ok += clog towardzero dbl-64 -0x1.000002p+0 0x4.8d15ap-32 : 0x1.fffffe000a5dep-24 0x3.243f6a83f88d6p+0 : inexact-ok += clog upward dbl-64 -0x1.000002p+0 0x4.8d15ap-32 : 0x1.fffffe000a5dfp-24 0x3.243f6a83f88d8p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16ap-24L 0x3.243f6a83f88d71ecp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16cp-24L 0x3.243f6a83f88d71ecp+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16ap-24L 0x3.243f6a83f88d71ecp+0L : inexact-ok += clog upward ldbl-96-intel -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16cp-24L 0x3.243f6a83f88d71fp+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16ap-24L 0x3.243f6a83f88d71ecp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16cp-24L 0x3.243f6a83f88d71ecp+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16ap-24L 0x3.243f6a83f88d71ecp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16cp-24L 0x3.243f6a83f88d71fp+0L : inexact-ok += clog downward ldbl-128 -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16b43a17ecfef7dp-24L 0x3.243f6a83f88d71ed3e4755f713d2p+0L : inexact-ok += clog tonearest ldbl-128 -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16b43a17ecfef7dp-24L 0x3.243f6a83f88d71ed3e4755f713d4p+0L : inexact-ok += clog towardzero ldbl-128 -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16b43a17ecfef7dp-24L 0x3.243f6a83f88d71ed3e4755f713d2p+0L : inexact-ok += clog upward ldbl-128 -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16b43a17ecfef7ep-24L 0x3.243f6a83f88d71ed3e4755f713d4p+0L : inexact-ok += clog downward ldbl-128ibm -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16b43a17ecfefp-24L 0x3.243f6a83f88d71ed3e4755f713p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16b43a17ecfef8p-24L 0x3.243f6a83f88d71ed3e4755f714p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16b43a17ecfefp-24L 0x3.243f6a83f88d71ed3e4755f713p+0L : inexact-ok += clog upward ldbl-128ibm -0x1.000002p+0L 0x4.8d15ap-32L : 0x1.fffffe000a5de16b43a17ecfef8p-24L 0x3.243f6a83f88d71ed3e4755f714p+0L : inexact-ok += clog downward flt-32 -0x1.000002p+0f 0x4.8d1598p-32f : 0x1.fffffep-24f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0x1.000002p+0f 0x4.8d1598p-32f : 0x1.fffffep-24f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0x1.000002p+0f 0x4.8d1598p-32f : 0x1.fffffep-24f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0x1.000002p+0f 0x4.8d1598p-32f : 0x2p-24f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0x1.000002p+0 0x4.8d1598p-32 : 0x1.fffffe000a5dep-24 0x3.243f6a83f88d6p+0 : inexact-ok += clog tonearest dbl-64 -0x1.000002p+0 0x4.8d1598p-32 : 0x1.fffffe000a5dep-24 0x3.243f6a83f88d8p+0 : inexact-ok += clog towardzero dbl-64 -0x1.000002p+0 0x4.8d1598p-32 : 0x1.fffffe000a5dep-24 0x3.243f6a83f88d6p+0 : inexact-ok += clog upward dbl-64 -0x1.000002p+0 0x4.8d1598p-32 : 0x1.fffffe000a5dfp-24 0x3.243f6a83f88d8p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146p-24L 0x3.243f6a83f88d79ecp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146p-24L 0x3.243f6a83f88d79ecp+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146p-24L 0x3.243f6a83f88d79ecp+0L : inexact-ok += clog upward ldbl-96-intel -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de148p-24L 0x3.243f6a83f88d79fp+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146p-24L 0x3.243f6a83f88d79ecp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146p-24L 0x3.243f6a83f88d79ecp+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146p-24L 0x3.243f6a83f88d79ecp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de148p-24L 0x3.243f6a83f88d79fp+0L : inexact-ok += clog downward ldbl-128 -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146daf53072a148p-24L 0x3.243f6a83f88d79ed3e3755f733d2p+0L : inexact-ok += clog tonearest ldbl-128 -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146daf53072a148p-24L 0x3.243f6a83f88d79ed3e3755f733d2p+0L : inexact-ok += clog towardzero ldbl-128 -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146daf53072a148p-24L 0x3.243f6a83f88d79ed3e3755f733d2p+0L : inexact-ok += clog upward ldbl-128 -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146daf53072a149p-24L 0x3.243f6a83f88d79ed3e3755f733d4p+0L : inexact-ok += clog downward ldbl-128ibm -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146daf53072a1p-24L 0x3.243f6a83f88d79ed3e3755f733p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146daf53072a18p-24L 0x3.243f6a83f88d79ed3e3755f734p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146daf53072a1p-24L 0x3.243f6a83f88d79ed3e3755f733p+0L : inexact-ok += clog upward ldbl-128ibm -0x1.000002p+0L 0x4.8d1598p-32L : 0x1.fffffe000a5de146daf53072a18p-24L 0x3.243f6a83f88d79ed3e3755f734p+0L : inexact-ok += clog downward dbl-64 -0x1.000002p+0 0x4.8d159ep-32 : 0x1.fffffe000a5dep-24 0x3.243f6a83f88d6p+0 : inexact-ok += clog tonearest dbl-64 -0x1.000002p+0 0x4.8d159ep-32 : 0x1.fffffe000a5dep-24 0x3.243f6a83f88d8p+0 : inexact-ok += clog towardzero dbl-64 -0x1.000002p+0 0x4.8d159ep-32 : 0x1.fffffe000a5dep-24 0x3.243f6a83f88d6p+0 : inexact-ok += clog upward dbl-64 -0x1.000002p+0 0x4.8d159ep-32 : 0x1.fffffe000a5dfp-24 0x3.243f6a83f88d8p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162p-24L 0x3.243f6a83f88d73ecp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162p-24L 0x3.243f6a83f88d73ecp+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162p-24L 0x3.243f6a83f88d73ecp+0L : inexact-ok += clog upward ldbl-96-intel -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de164p-24L 0x3.243f6a83f88d73fp+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162p-24L 0x3.243f6a83f88d73ecp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162p-24L 0x3.243f6a83f88d73ecp+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162p-24L 0x3.243f6a83f88d73ecp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de164p-24L 0x3.243f6a83f88d73fp+0L : inexact-ok += clog downward ldbl-128 -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162297665389c08p-24L 0x3.243f6a83f88d73ed3e4355f71bd2p+0L : inexact-ok += clog tonearest ldbl-128 -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162297665389c08p-24L 0x3.243f6a83f88d73ed3e4355f71bd4p+0L : inexact-ok += clog towardzero ldbl-128 -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162297665389c08p-24L 0x3.243f6a83f88d73ed3e4355f71bd2p+0L : inexact-ok += clog upward ldbl-128 -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162297665389c09p-24L 0x3.243f6a83f88d73ed3e4355f71bd4p+0L : inexact-ok += clog downward ldbl-128ibm -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162297665389cp-24L 0x3.243f6a83f88d73ed3e4355f71bp+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162297665389cp-24L 0x3.243f6a83f88d73ed3e4355f71cp+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162297665389cp-24L 0x3.243f6a83f88d73ed3e4355f71bp+0L : inexact-ok += clog upward ldbl-128ibm -0x1.000002p+0L 0x4.8d159ep-32L : 0x1.fffffe000a5de162297665389c8p-24L 0x3.243f6a83f88d73ed3e4355f71cp+0L : inexact-ok += clog downward dbl-64 -0x1.0000000123456p+0 0x4.8d15ap-32 : 0x1.23456009b5838p-32 0x3.243f6a83f88d6p+0 : inexact-ok += clog tonearest dbl-64 -0x1.0000000123456p+0 0x4.8d15ap-32 : 0x1.23456009b5838p-32 0x3.243f6a83f88d6p+0 : inexact-ok += clog towardzero dbl-64 -0x1.0000000123456p+0 0x4.8d15ap-32 : 0x1.23456009b5838p-32 0x3.243f6a83f88d6p+0 : inexact-ok += clog upward dbl-64 -0x1.0000000123456p+0 0x4.8d15ap-32 : 0x1.23456009b5839p-32 0x3.243f6a83f88d8p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846cp-32L 0x3.243f6a83f88d68d8p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846cp-32L 0x3.243f6a83f88d68d8p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846cp-32L 0x3.243f6a83f88d68d8p+0L : inexact-ok += clog upward ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846ep-32L 0x3.243f6a83f88d68dcp+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846cp-32L 0x3.243f6a83f88d68d8p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846cp-32L 0x3.243f6a83f88d68d8p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846cp-32L 0x3.243f6a83f88d68d8p+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846ep-32L 0x3.243f6a83f88d68dcp+0L : inexact-ok += clog downward ldbl-128 -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846c4cb41a3fd9eep-32L 0x3.243f6a83f88d68d840b4dae3c72cp+0L : inexact-ok += clog tonearest ldbl-128 -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846c4cb41a3fd9eep-32L 0x3.243f6a83f88d68d840b4dae3c72cp+0L : inexact-ok += clog towardzero ldbl-128 -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846c4cb41a3fd9eep-32L 0x3.243f6a83f88d68d840b4dae3c72cp+0L : inexact-ok += clog upward ldbl-128 -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846c4cb41a3fd9efp-32L 0x3.243f6a83f88d68d840b4dae3c72ep+0L : inexact-ok += clog downward ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846c4cb41a3fd98p-32L 0x3.243f6a83f88d68d840b4dae3c7p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846c4cb41a3fdap-32L 0x3.243f6a83f88d68d840b4dae3c7p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846c4cb41a3fd98p-32L 0x3.243f6a83f88d68d840b4dae3c7p+0L : inexact-ok += clog upward ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d15ap-32L : 0x1.23456009b583846c4cb41a3fdap-32L 0x3.243f6a83f88d68d840b4dae3c8p+0L : inexact-ok += clog downward dbl-64 -0x1.0000000123456p+0 0x4.8d1598p-32 : 0x1.23456009b5836p-32 0x3.243f6a83f88d6p+0 : inexact-ok += clog tonearest dbl-64 -0x1.0000000123456p+0 0x4.8d1598p-32 : 0x1.23456009b5836p-32 0x3.243f6a83f88d8p+0 : inexact-ok += clog towardzero dbl-64 -0x1.0000000123456p+0 0x4.8d1598p-32 : 0x1.23456009b5836p-32 0x3.243f6a83f88d6p+0 : inexact-ok += clog upward dbl-64 -0x1.0000000123456p+0 0x4.8d1598p-32 : 0x1.23456009b5837p-32 0x3.243f6a83f88d8p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b5836002p-32L 0x3.243f6a83f88d70d8p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b5836004p-32L 0x3.243f6a83f88d70d8p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b5836002p-32L 0x3.243f6a83f88d70d8p+0L : inexact-ok += clog upward ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b5836004p-32L 0x3.243f6a83f88d70dcp+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b5836002p-32L 0x3.243f6a83f88d70d8p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b5836004p-32L 0x3.243f6a83f88d70d8p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b5836002p-32L 0x3.243f6a83f88d70d8p+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b5836004p-32L 0x3.243f6a83f88d70dcp+0L : inexact-ok += clog downward ldbl-128 -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b58360039fd46d198eb1p-32L 0x3.243f6a83f88d70d840b4d1c99c2cp+0L : inexact-ok += clog tonearest ldbl-128 -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b58360039fd46d198eb1p-32L 0x3.243f6a83f88d70d840b4d1c99c2cp+0L : inexact-ok += clog towardzero ldbl-128 -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b58360039fd46d198eb1p-32L 0x3.243f6a83f88d70d840b4d1c99c2cp+0L : inexact-ok += clog upward ldbl-128 -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b58360039fd46d198eb2p-32L 0x3.243f6a83f88d70d840b4d1c99c2ep+0L : inexact-ok += clog downward ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b58360039fd46d198e8p-32L 0x3.243f6a83f88d70d840b4d1c99cp+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b58360039fd46d198e8p-32L 0x3.243f6a83f88d70d840b4d1c99cp+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b58360039fd46d198e8p-32L 0x3.243f6a83f88d70d840b4d1c99cp+0L : inexact-ok += clog upward ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d1598p-32L : 0x1.23456009b58360039fd46d198fp-32L 0x3.243f6a83f88d70d840b4d1c99dp+0L : inexact-ok += clog downward dbl-64 -0x1.0000000123456p+0 0x4.8d159ep-32 : 0x1.23456009b5837p-32 0x3.243f6a83f88d6p+0 : inexact-ok += clog tonearest dbl-64 -0x1.0000000123456p+0 0x4.8d159ep-32 : 0x1.23456009b5838p-32 0x3.243f6a83f88d6p+0 : inexact-ok += clog towardzero dbl-64 -0x1.0000000123456p+0 0x4.8d159ep-32 : 0x1.23456009b5837p-32 0x3.243f6a83f88d6p+0 : inexact-ok += clog upward dbl-64 -0x1.0000000123456p+0 0x4.8d159ep-32 : 0x1.23456009b5838p-32 0x3.243f6a83f88d8p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b52p-32L 0x3.243f6a83f88d6ad8p+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b52p-32L 0x3.243f6a83f88d6ad8p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b52p-32L 0x3.243f6a83f88d6ad8p+0L : inexact-ok += clog upward ldbl-96-intel -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b54p-32L 0x3.243f6a83f88d6adcp+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b52p-32L 0x3.243f6a83f88d6ad8p+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b52p-32L 0x3.243f6a83f88d6ad8p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b52p-32L 0x3.243f6a83f88d6ad8p+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b54p-32L 0x3.243f6a83f88d6adcp+0L : inexact-ok += clog downward ldbl-128 -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b5221762ef6472cp-32L 0x3.243f6a83f88d6ad840b4d89d3c6cp+0L : inexact-ok += clog tonearest ldbl-128 -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b5221762ef6472dp-32L 0x3.243f6a83f88d6ad840b4d89d3c6cp+0L : inexact-ok += clog towardzero ldbl-128 -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b5221762ef6472cp-32L 0x3.243f6a83f88d6ad840b4d89d3c6cp+0L : inexact-ok += clog upward ldbl-128 -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b5221762ef6472dp-32L 0x3.243f6a83f88d6ad840b4d89d3c6ep+0L : inexact-ok += clog downward ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b5221762ef647p-32L 0x3.243f6a83f88d6ad840b4d89d3cp+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b5221762ef647p-32L 0x3.243f6a83f88d6ad840b4d89d3cp+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b5221762ef647p-32L 0x3.243f6a83f88d6ad840b4d89d3cp+0L : inexact-ok += clog upward ldbl-128ibm -0x1.0000000123456p+0L 0x4.8d159ep-32L : 0x1.23456009b5837b5221762ef6478p-32L 0x3.243f6a83f88d6ad840b4d89d3dp+0L : inexact-ok +clog -0x1.0000000123456p0 0x1.2345678p-1000 += clog downward flt-32 -0x1p+0f 0x8p-152f : 0x0p+0f 0x3.243f68p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 -0x1p+0f 0x8p-152f : 0x0p+0f 0x3.243f6cp+0f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 -0x1p+0f 0x8p-152f : 0x0p+0f 0x3.243f68p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 -0x1p+0f 0x8p-152f : 0x8p-152f 0x3.243f6cp+0f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 -0x1p+0 0x8p-152 : 0x1.fffffffffffffp-300 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0x1p+0 0x8p-152 : 0x2p-300 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0x1p+0 0x8p-152 : 0x1.fffffffffffffp-300 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0x1p+0 0x8p-152 : 0x2p-300 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1p+0L 0x8p-152L : 0x2p-300L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0x1p+0L 0x8p-152L : 0x2p-300L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1p+0L 0x8p-152L : 0x2p-300L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1p+0L 0x8p-152L : 0x2p-300L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-300L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0x1p+0L 0x8p-152L : 0x2p-300L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-300L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0x1p+0L 0x8p-152L : 0x2p-300L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-300L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1p+0L 0x8p-152L : 0x2p-300L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-300L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0x1p+0L 0x8p-152L : 0x2p-300L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward flt-32 -0x1p+0f 0x0p+0f : 0x0p+0f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0x1p+0f 0x0p+0f : 0x0p+0f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0x1p+0f 0x0p+0f : 0x0p+0f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0x1p+0f 0x0p+0f : 0x0p+0f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0x1p+0 0x0p+0 : 0x0p+0 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0x1p+0 0x0p+0 : 0x0p+0 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0x1p+0 0x0p+0 : 0x0p+0 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0x1p+0 0x0p+0 : 0x0p+0 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0x1p+0L 0x0p+0L : 0x0p+0L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0x1p+0 0x1.2345678p-1000 : 0x0p+0 0x3.243f6a8885a3p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 -0x1p+0 0x1.2345678p-1000 : 0x0p+0 0x3.243f6a8885a3p+0 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 -0x1p+0 0x1.2345678p-1000 : 0x0p+0 0x3.243f6a8885a3p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 -0x1p+0 0x1.2345678p-1000 : 0x4p-1076 0x3.243f6a8885a32p+0 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c1fffp-2004L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c2p-2004L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c1fffp-2004L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c2p-2004L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c1fffp-2004L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c2p-2004L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c1fffp-2004L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c2p-2004L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c1fffffffffffffff8p-2004L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c2p-2004L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c1fffffffffffffff8p-2004L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0x1p+0L 0x1.2345678p-1000L : 0xa.5b36e0efa6c2p-2004L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0x1p+0L 0x1.2345678p-1000L : 0x0p+0L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm -0x1p+0L 0x1.2345678p-1000L : 0x0p+0L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm -0x1p+0L 0x1.2345678p-1000L : 0x0p+0L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm -0x1p+0L 0x1.2345678p-1000L : 0x4p-1076L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok underflow errno-erange-ok += clog downward flt-32 -0x1.000002p+0f 0x8p-152f : 0x1.fffffep-24f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0x1.000002p+0f 0x8p-152f : 0x1.fffffep-24f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0x1.000002p+0f 0x8p-152f : 0x1.fffffep-24f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0x1.000002p+0f 0x8p-152f : 0x2p-24f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0x1.000002p+0 0x8p-152 : 0x1.fffffe000002ap-24 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0x1.000002p+0 0x8p-152 : 0x1.fffffe000002bp-24 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0x1.000002p+0 0x8p-152 : 0x1.fffffe000002ap-24 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0x1.000002p+0 0x8p-152 : 0x1.fffffe000002bp-24 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaacp-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaacp-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab11112p-24L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab1118p-24L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward flt-32 -0x1.000002p+0f 0x0p+0f : 0x1.fffffep-24f 0x3.243f68p+0f : inexact-ok += clog tonearest flt-32 -0x1.000002p+0f 0x0p+0f : 0x1.fffffep-24f 0x3.243f6cp+0f : inexact-ok += clog towardzero flt-32 -0x1.000002p+0f 0x0p+0f : 0x1.fffffep-24f 0x3.243f68p+0f : inexact-ok += clog upward flt-32 -0x1.000002p+0f 0x0p+0f : 0x2p-24f 0x3.243f6cp+0f : inexact-ok += clog downward dbl-64 -0x1.000002p+0 0x0p+0 : 0x1.fffffe000002ap-24 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0x1.000002p+0 0x0p+0 : 0x1.fffffe000002bp-24 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0x1.000002p+0 0x0p+0 : 0x1.fffffe000002ap-24 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0x1.000002p+0 0x0p+0 : 0x1.fffffe000002bp-24 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaacp-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaacp-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab11112p-24L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab1118p-24L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0x1.000002p+0 0x1.2345678p-1000 : 0x1.fffffe000002ap-24 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0x1.000002p+0 0x1.2345678p-1000 : 0x1.fffffe000002bp-24 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0x1.000002p+0 0x1.2345678p-1000 : 0x1.fffffe000002ap-24 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0x1.000002p+0 0x1.2345678p-1000 : 0x1.fffffe000002bp-24 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaacp-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaap-24L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaacp-24L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaaa6aaaab11112p-24L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0x1.000002p+0L 0x1.2345678p-1000L : 0x1.fffffe000002aaaaa6aaaab1118p-24L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0x1.0000000123456p+0 0x8p-152 : 0x1.23455fff5a4c9p-32 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0x1.0000000123456p+0 0x8p-152 : 0x1.23455fff5a4cap-32 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0x1.0000000123456p+0 0x8p-152 : 0x1.23455fff5a4c9p-32 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0x1.0000000123456p+0 0x8p-152 : 0x1.23455fff5a4cap-32 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7cp-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7cp-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7a0bafe2988eadp-32L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7a0bafe2988eadp-32L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7a0bafe2988eadp-32L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7a0bafe2988eaep-32L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7a0bafe2988e8p-32L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7a0bafe2988e8p-32L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7a0bafe2988e8p-32L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0x1.0000000123456p+0L 0x8p-152L : 0x1.23455fff5a4c9a7a0bafe2988fp-32L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0x1.0000000123456p+0 0x0p+0 : 0x1.23455fff5a4c9p-32 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0x1.0000000123456p+0 0x0p+0 : 0x1.23455fff5a4cap-32 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0x1.0000000123456p+0 0x0p+0 : 0x1.23455fff5a4c9p-32 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0x1.0000000123456p+0 0x0p+0 : 0x1.23455fff5a4cap-32 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7cp-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7cp-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7a0bafe2988eadp-32L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7a0bafe2988eadp-32L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7a0bafe2988eadp-32L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7a0bafe2988eaep-32L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7a0bafe2988e8p-32L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7a0bafe2988e8p-32L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7a0bafe2988e8p-32L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0x1.0000000123456p+0L 0x0p+0L : 0x1.23455fff5a4c9a7a0bafe2988fp-32L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += clog downward dbl-64 -0x1.0000000123456p+0 0x1.2345678p-1000 : 0x1.23455fff5a4c9p-32 0x3.243f6a8885a3p+0 : inexact-ok += clog tonearest dbl-64 -0x1.0000000123456p+0 0x1.2345678p-1000 : 0x1.23455fff5a4cap-32 0x3.243f6a8885a3p+0 : inexact-ok += clog towardzero dbl-64 -0x1.0000000123456p+0 0x1.2345678p-1000 : 0x1.23455fff5a4c9p-32 0x3.243f6a8885a3p+0 : inexact-ok += clog upward dbl-64 -0x1.0000000123456p+0 0x1.2345678p-1000 : 0x1.23455fff5a4cap-32 0x3.243f6a8885a32p+0 : inexact-ok += clog downward ldbl-96-intel -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-intel -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-intel -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-intel -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7cp-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-96-m68k -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog tonearest ldbl-96-m68k -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7ap-32L 0x3.243f6a8885a308dp+0L : inexact-ok += clog upward ldbl-96-m68k -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7cp-32L 0x3.243f6a8885a308d4p+0L : inexact-ok += clog downward ldbl-128 -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7a0bafe2988eadp-32L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog tonearest ldbl-128 -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7a0bafe2988eadp-32L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog towardzero ldbl-128 -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7a0bafe2988eadp-32L 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += clog upward ldbl-128 -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7a0bafe2988eaep-32L 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += clog downward ldbl-128ibm -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7a0bafe2988e8p-32L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog tonearest ldbl-128ibm -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7a0bafe2988e8p-32L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog towardzero ldbl-128ibm -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7a0bafe2988e8p-32L 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += clog upward ldbl-128ibm -0x1.0000000123456p+0L 0x1.2345678p-1000L : 0x1.23455fff5a4c9a7a0bafe2988fp-32L 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok +clog 0x1.00000000000000123456789abcp0 0x1.23456789p-60 += clog downward flt-32 0x1.000002p+0f 0x1.234568p-60f : 0x1.fffffep-24f 0x1.234564p-60f : inexact-ok += clog tonearest flt-32 0x1.000002p+0f 0x1.234568p-60f : 0x1.fffffep-24f 0x1.234566p-60f : inexact-ok += clog towardzero flt-32 0x1.000002p+0f 0x1.234568p-60f : 0x1.fffffep-24f 0x1.234564p-60f : inexact-ok += clog upward flt-32 0x1.000002p+0f 0x1.234568p-60f : 0x2p-24f 0x1.234566p-60f : inexact-ok += clog downward dbl-64 0x1.000002p+0 0x1.234568p-60 : 0x1.fffffe000002ap-24 0x1.234565b975348p-60 : inexact-ok += clog tonearest dbl-64 0x1.000002p+0 0x1.234568p-60 : 0x1.fffffe000002bp-24 0x1.234565b975349p-60 : inexact-ok += clog towardzero dbl-64 0x1.000002p+0 0x1.234568p-60 : 0x1.fffffe000002ap-24 0x1.234565b975348p-60 : inexact-ok += clog upward dbl-64 0x1.000002p+0 0x1.234568p-60 : 0x1.fffffe000002bp-24 0x1.234565b975349p-60 : inexact-ok += clog downward ldbl-96-intel 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaap-24L 0x1.234565b975348d14p-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaap-24L 0x1.234565b975348d16p-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaap-24L 0x1.234565b975348d14p-60L : inexact-ok += clog upward ldbl-96-intel 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaacp-24L 0x1.234565b975348d16p-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaap-24L 0x1.234565b975348d14p-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaap-24L 0x1.234565b975348d16p-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaap-24L 0x1.234565b975348d14p-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaacp-24L 0x1.234565b975348d16p-60L : inexact-ok += clog downward ldbl-128 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c4p-24L 0x1.234565b975348d1596e5d4d23456p-60L : inexact-ok += clog tonearest ldbl-128 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c4p-24L 0x1.234565b975348d1596e5d4d23456p-60L : inexact-ok += clog towardzero ldbl-128 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c4p-24L 0x1.234565b975348d1596e5d4d23456p-60L : inexact-ok += clog upward ldbl-128 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c5p-24L 0x1.234565b975348d1596e5d4d23457p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaaa6aaaab1b68p-24L 0x1.234565b975348d1596e5d4d234p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaaa6aaaab1b7p-24L 0x1.234565b975348d1596e5d4d2348p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaaa6aaaab1b68p-24L 0x1.234565b975348d1596e5d4d234p-60L : inexact-ok += clog upward ldbl-128ibm 0x1.000002p+0L 0x1.234568p-60L : 0x1.fffffe000002aaaaa6aaaab1b7p-24L 0x1.234565b975348d1596e5d4d2348p-60L : inexact-ok += clog downward flt-32 0x1.000002p+0f 0x1.234566p-60f : 0x1.fffffep-24f 0x1.234562p-60f : inexact-ok += clog tonearest flt-32 0x1.000002p+0f 0x1.234566p-60f : 0x1.fffffep-24f 0x1.234564p-60f : inexact-ok += clog towardzero flt-32 0x1.000002p+0f 0x1.234566p-60f : 0x1.fffffep-24f 0x1.234562p-60f : inexact-ok += clog upward flt-32 0x1.000002p+0f 0x1.234566p-60f : 0x2p-24f 0x1.234564p-60f : inexact-ok += clog downward dbl-64 0x1.000002p+0 0x1.234566p-60 : 0x1.fffffe000002ap-24 0x1.234563b975388p-60 : inexact-ok += clog tonearest dbl-64 0x1.000002p+0 0x1.234566p-60 : 0x1.fffffe000002bp-24 0x1.234563b975389p-60 : inexact-ok += clog towardzero dbl-64 0x1.000002p+0 0x1.234566p-60 : 0x1.fffffe000002ap-24 0x1.234563b975388p-60 : inexact-ok += clog upward dbl-64 0x1.000002p+0 0x1.234566p-60 : 0x1.fffffe000002bp-24 0x1.234563b975389p-60 : inexact-ok += clog downward ldbl-96-intel 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaap-24L 0x1.234563b975388d14p-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaap-24L 0x1.234563b975388d16p-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaap-24L 0x1.234563b975388d14p-60L : inexact-ok += clog upward ldbl-96-intel 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaacp-24L 0x1.234563b975388d16p-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaap-24L 0x1.234563b975388d14p-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaap-24L 0x1.234563b975388d16p-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaap-24L 0x1.234563b975388d14p-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaacp-24L 0x1.234563b975388d16p-60L : inexact-ok += clog downward ldbl-128 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c4p-24L 0x1.234563b975388d158ee5d4e23456p-60L : inexact-ok += clog tonearest ldbl-128 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c4p-24L 0x1.234563b975388d158ee5d4e23456p-60L : inexact-ok += clog towardzero ldbl-128 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c4p-24L 0x1.234563b975388d158ee5d4e23456p-60L : inexact-ok += clog upward ldbl-128 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c5p-24L 0x1.234563b975388d158ee5d4e23457p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaaa6aaaab1b68p-24L 0x1.234563b975388d158ee5d4e234p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaaa6aaaab1b7p-24L 0x1.234563b975388d158ee5d4e2348p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaaa6aaaab1b68p-24L 0x1.234563b975388d158ee5d4e234p-60L : inexact-ok += clog upward ldbl-128ibm 0x1.000002p+0L 0x1.234566p-60L : 0x1.fffffe000002aaaaa6aaaab1b7p-24L 0x1.234563b975388d158ee5d4e2348p-60L : inexact-ok += clog downward dbl-64 0x1.000002p+0 0x1.23456789p-60 : 0x1.fffffe000002ap-24 0x1.2345654275357p-60 : inexact-ok += clog tonearest dbl-64 0x1.000002p+0 0x1.23456789p-60 : 0x1.fffffe000002bp-24 0x1.2345654275358p-60 : inexact-ok += clog towardzero dbl-64 0x1.000002p+0 0x1.23456789p-60 : 0x1.fffffe000002ap-24 0x1.2345654275357p-60 : inexact-ok += clog upward dbl-64 0x1.000002p+0 0x1.23456789p-60 : 0x1.fffffe000002bp-24 0x1.2345654275358p-60 : inexact-ok += clog downward ldbl-96-intel 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b14p-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b16p-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b14p-60L : inexact-ok += clog upward ldbl-96-intel 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaacp-24L 0x1.2345654275357b16p-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b14p-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b16p-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b14p-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaacp-24L 0x1.2345654275357b16p-60L : inexact-ok += clog downward ldbl-128 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c4p-24L 0x1.2345654275357b159509d4d5ec56p-60L : inexact-ok += clog tonearest ldbl-128 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c4p-24L 0x1.2345654275357b159509d4d5ec56p-60L : inexact-ok += clog towardzero ldbl-128 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c4p-24L 0x1.2345654275357b159509d4d5ec56p-60L : inexact-ok += clog upward ldbl-128 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaaa6aaaab1b6c5p-24L 0x1.2345654275357b159509d4d5ec57p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaaa6aaaab1b68p-24L 0x1.2345654275357b159509d4d5ecp-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaaa6aaaab1b7p-24L 0x1.2345654275357b159509d4d5ec8p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaaa6aaaab1b68p-24L 0x1.2345654275357b159509d4d5ecp-60L : inexact-ok += clog upward ldbl-128ibm 0x1.000002p+0L 0x1.23456789p-60L : 0x1.fffffe000002aaaaa6aaaab1b7p-24L 0x1.2345654275357b159509d4d5ec8p-60L : inexact-ok += clog downward flt-32 0x1p+0f 0x1.234568p-60f : 0xa.5b36ep-124f 0x1.234566p-60f : inexact-ok += clog tonearest flt-32 0x1p+0f 0x1.234568p-60f : 0xa.5b36fp-124f 0x1.234568p-60f : inexact-ok += clog towardzero flt-32 0x1p+0f 0x1.234568p-60f : 0xa.5b36ep-124f 0x1.234566p-60f : inexact-ok += clog upward flt-32 0x1p+0f 0x1.234568p-60f : 0xa.5b36fp-124f 0x1.234568p-60f : inexact-ok += clog downward dbl-64 0x1p+0 0x1.234568p-60 : 0xa.5b36ea09d1ff8p-124 0x1.234567fffffffp-60 : inexact-ok += clog tonearest dbl-64 0x1p+0 0x1.234568p-60 : 0xa.5b36ea09d2p-124 0x1.234568p-60 : inexact-ok += clog towardzero dbl-64 0x1p+0 0x1.234568p-60 : 0xa.5b36ea09d1ff8p-124 0x1.234567fffffffp-60 : inexact-ok += clog upward dbl-64 0x1p+0 0x1.234568p-60 : 0xa.5b36ea09d2p-124 0x1.234568p-60 : inexact-ok += clog downward ldbl-96-intel 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d1fffffp-124L 0x1.234567fffffffffep-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d2p-124L 0x1.234568p-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d1fffffp-124L 0x1.234567fffffffffep-60L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d2p-124L 0x1.234568p-60L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d1fffffp-124L 0x1.234567fffffffffep-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d2p-124L 0x1.234568p-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d1fffffp-124L 0x1.234567fffffffffep-60L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d2p-124L 0x1.234568p-60L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d1fffffffffffffffff8p-124L 0x1.234567ffffffffffffffffffffffp-60L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d2p-124L 0x1.234568p-60L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d1fffffffffffffffff8p-124L 0x1.234567ffffffffffffffffffffffp-60L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d2p-124L 0x1.234568p-60L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d1fffffffffffffffcp-124L 0x1.234567ffffffffffffffffffff8p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d2p-124L 0x1.234568p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d1fffffffffffffffcp-124L 0x1.234567ffffffffffffffffffff8p-60L : inexact-ok += clog upward ldbl-128ibm 0x1p+0L 0x1.234568p-60L : 0xa.5b36ea09d2p-124L 0x1.234568p-60L : inexact-ok += clog downward flt-32 0x1p+0f 0x1.234566p-60f : 0xa.5b36cp-124f 0x1.234564p-60f : inexact-ok += clog tonearest flt-32 0x1p+0f 0x1.234566p-60f : 0xa.5b36cp-124f 0x1.234566p-60f : inexact-ok += clog towardzero flt-32 0x1p+0f 0x1.234566p-60f : 0xa.5b36cp-124f 0x1.234564p-60f : inexact-ok += clog upward flt-32 0x1p+0f 0x1.234566p-60f : 0xa.5b36dp-124f 0x1.234566p-60f : inexact-ok += clog downward dbl-64 0x1p+0 0x1.234566p-60 : 0xa.5b36c5a1251f8p-124 0x1.234565fffffffp-60 : inexact-ok += clog tonearest dbl-64 0x1p+0 0x1.234566p-60 : 0xa.5b36c5a1252p-124 0x1.234566p-60 : inexact-ok += clog towardzero dbl-64 0x1p+0 0x1.234566p-60 : 0xa.5b36c5a1251f8p-124 0x1.234565fffffffp-60 : inexact-ok += clog upward dbl-64 0x1p+0 0x1.234566p-60 : 0xa.5b36c5a1252p-124 0x1.234566p-60 : inexact-ok += clog downward ldbl-96-intel 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1251ffffp-124L 0x1.234565fffffffffep-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1252p-124L 0x1.234566p-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1251ffffp-124L 0x1.234565fffffffffep-60L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1252p-124L 0x1.234566p-60L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1251ffffp-124L 0x1.234565fffffffffep-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1252p-124L 0x1.234566p-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1251ffffp-124L 0x1.234565fffffffffep-60L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1252p-124L 0x1.234566p-60L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1251ffffffffffffffff8p-124L 0x1.234565ffffffffffffffffffffffp-60L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1252p-124L 0x1.234566p-60L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1251ffffffffffffffff8p-124L 0x1.234565ffffffffffffffffffffffp-60L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1252p-124L 0x1.234566p-60L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1251ffffffffffffffcp-124L 0x1.234565ffffffffffffffffffff8p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1252p-124L 0x1.234566p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1251ffffffffffffffcp-124L 0x1.234565ffffffffffffffffffff8p-60L : inexact-ok += clog upward ldbl-128ibm 0x1p+0L 0x1.234566p-60L : 0xa.5b36c5a1252p-124L 0x1.234566p-60L : inexact-ok += clog downward dbl-64 0x1p+0 0x1.23456789p-60 : 0xa.5b36e1937dccp-124 0x1.23456788fffffp-60 : inexact-ok += clog tonearest dbl-64 0x1p+0 0x1.23456789p-60 : 0xa.5b36e1937dccp-124 0x1.23456789p-60 : inexact-ok += clog towardzero dbl-64 0x1p+0 0x1.23456789p-60 : 0xa.5b36e1937dccp-124 0x1.23456788fffffp-60 : inexact-ok += clog upward dbl-64 0x1p+0 0x1.23456789p-60 : 0xa.5b36e1937dcc8p-124 0x1.23456789p-60 : inexact-ok += clog downward ldbl-96-intel 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a8p-124L 0x1.23456788fffffffep-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a8p-124L 0x1.23456789p-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a8p-124L 0x1.23456788fffffffep-60L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a9p-124L 0x1.23456789p-60L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a8p-124L 0x1.23456788fffffffep-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a8p-124L 0x1.23456789p-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a8p-124L 0x1.23456788fffffffep-60L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a9p-124L 0x1.23456789p-60L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a87fffffffffff8p-124L 0x1.23456788ffffffffffffffffffffp-60L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a88p-124L 0x1.23456789p-60L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a87fffffffffff8p-124L 0x1.23456788ffffffffffffffffffffp-60L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a88p-124L 0x1.23456789p-60L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a87fffffffffcp-124L 0x1.23456788ffffffffffffffffff8p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a88p-124L 0x1.23456789p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a87fffffffffcp-124L 0x1.23456788ffffffffffffffffff8p-60L : inexact-ok += clog upward ldbl-128ibm 0x1p+0L 0x1.23456789p-60L : 0xa.5b36e1937dcc3a88p-124L 0x1.23456789p-60L : inexact-ok += clog downward dbl-64 0x1.0000000000001p+0 0x1.234568p-60 : 0xf.ffffffffffff8p-56 0x1.234567ffffffep-60 : inexact-ok += clog tonearest dbl-64 0x1.0000000000001p+0 0x1.234568p-60 : 0xf.ffffffffffff8p-56 0x1.234567fffffffp-60 : inexact-ok += clog towardzero dbl-64 0x1.0000000000001p+0 0x1.234568p-60 : 0xf.ffffffffffff8p-56 0x1.234567ffffffep-60 : inexact-ok += clog upward dbl-64 0x1.0000000000001p+0 0x1.234568p-60 : 0x1p-52 0x1.234567fffffffp-60 : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8p-56L 0x1.234567ffffffedcap-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8p-56L 0x1.234567ffffffedccp-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8p-56L 0x1.234567ffffffedcap-60L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff801p-56L 0x1.234567ffffffedccp-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8p-56L 0x1.234567ffffffedcap-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8p-56L 0x1.234567ffffffedccp-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8p-56L 0x1.234567ffffffedcap-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff801p-56L 0x1.234567ffffffedccp-60L : inexact-ok += clog downward ldbl-128 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8000a5b36ea0a27p-56L 0x1.234567ffffffedcba98000000123p-60L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8000a5b36ea0a278p-56L 0x1.234567ffffffedcba98000000123p-60L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8000a5b36ea0a27p-56L 0x1.234567ffffffedcba98000000123p-60L : inexact-ok += clog upward ldbl-128 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8000a5b36ea0a278p-56L 0x1.234567ffffffedcba98000000124p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8000a5b36ea0ap-56L 0x1.234567ffffffedcba980000001p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8000a5b36ea0a4p-56L 0x1.234567ffffffedcba980000001p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8000a5b36ea0ap-56L 0x1.234567ffffffedcba980000001p-60L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.234568p-60L : 0xf.ffffffffffff8000a5b36ea0a4p-56L 0x1.234567ffffffedcba9800000018p-60L : inexact-ok += clog downward dbl-64 0x1.0000000000001p+0 0x1.234566p-60 : 0xf.ffffffffffff8p-56 0x1.234565ffffffep-60 : inexact-ok += clog tonearest dbl-64 0x1.0000000000001p+0 0x1.234566p-60 : 0xf.ffffffffffff8p-56 0x1.234565fffffffp-60 : inexact-ok += clog towardzero dbl-64 0x1.0000000000001p+0 0x1.234566p-60 : 0xf.ffffffffffff8p-56 0x1.234565ffffffep-60 : inexact-ok += clog upward dbl-64 0x1.0000000000001p+0 0x1.234566p-60 : 0x1p-52 0x1.234565fffffffp-60 : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8p-56L 0x1.234565ffffffedcap-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8p-56L 0x1.234565ffffffedccp-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8p-56L 0x1.234565ffffffedcap-60L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff801p-56L 0x1.234565ffffffedccp-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8p-56L 0x1.234565ffffffedcap-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8p-56L 0x1.234565ffffffedccp-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8p-56L 0x1.234565ffffffedcap-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff801p-56L 0x1.234565ffffffedccp-60L : inexact-ok += clog downward ldbl-128 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8000a5b36c5a17ap-56L 0x1.234565ffffffedcba9a000000123p-60L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8000a5b36c5a17a8p-56L 0x1.234565ffffffedcba9a000000123p-60L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8000a5b36c5a17ap-56L 0x1.234565ffffffedcba9a000000123p-60L : inexact-ok += clog upward ldbl-128 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8000a5b36c5a17a8p-56L 0x1.234565ffffffedcba9a000000124p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8000a5b36c5a14p-56L 0x1.234565ffffffedcba9a0000001p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8000a5b36c5a18p-56L 0x1.234565ffffffedcba9a0000001p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8000a5b36c5a14p-56L 0x1.234565ffffffedcba9a0000001p-60L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.234566p-60L : 0xf.ffffffffffff8000a5b36c5a18p-56L 0x1.234565ffffffedcba9a00000018p-60L : inexact-ok += clog downward dbl-64 0x1.0000000000001p+0 0x1.23456789p-60 : 0xf.ffffffffffff8p-56 0x1.23456788ffffep-60 : inexact-ok += clog tonearest dbl-64 0x1.0000000000001p+0 0x1.23456789p-60 : 0xf.ffffffffffff8p-56 0x1.23456788fffffp-60 : inexact-ok += clog towardzero dbl-64 0x1.0000000000001p+0 0x1.23456789p-60 : 0xf.ffffffffffff8p-56 0x1.23456788ffffep-60 : inexact-ok += clog upward dbl-64 0x1.0000000000001p+0 0x1.23456789p-60 : 0x1p-52 0x1.23456788fffffp-60 : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedcap-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedccp-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedcap-60L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff801p-56L 0x1.23456788ffffedccp-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedcap-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedccp-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedcap-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff801p-56L 0x1.23456788ffffedccp-60L : inexact-ok += clog downward ldbl-128 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8000a5b36e193d3p-56L 0x1.23456788ffffedcba98770000123p-60L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8000a5b36e193d3p-56L 0x1.23456788ffffedcba98770000123p-60L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8000a5b36e193d3p-56L 0x1.23456788ffffedcba98770000123p-60L : inexact-ok += clog upward ldbl-128 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8000a5b36e193d38p-56L 0x1.23456788ffffedcba98770000124p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8000a5b36e193cp-56L 0x1.23456788ffffedcba987700001p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8000a5b36e193cp-56L 0x1.23456788ffffedcba987700001p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8000a5b36e193cp-56L 0x1.23456788ffffedcba987700001p-60L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789p-60L : 0xf.ffffffffffff8000a5b36e194p-56L 0x1.23456788ffffedcba9877000018p-60L : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffcp-60L 0x1.234567ffffffffe8p-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffep-60L 0x1.234567ffffffffeap-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffcp-60L 0x1.234567ffffffffe8p-60L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffep-60L 0x1.234567ffffffffeap-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffcp-60L 0x1.234567ffffffffe8p-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffep-60L 0x1.234567ffffffffeap-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffcp-60L 0x1.234567ffffffffe8p-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffep-60L 0x1.234567ffffffffeap-60L : inexact-ok += clog downward ldbl-128 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffddb36ea09d1ffp-60L 0x1.234567ffffffffe93e93ep-60L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffddb36ea09d2p-60L 0x1.234567ffffffffe93e93ep-60L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffddb36ea09d1ffp-60L 0x1.234567ffffffffe93e93ep-60L : inexact-ok += clog upward ldbl-128 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffddb36ea09d2p-60L 0x1.234567ffffffffe93e93e0000001p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffddb36ea09d18p-60L 0x1.234567ffffffffe93e93ep-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffddb36ea09d2p-60L 0x1.234567ffffffffe93e93ep-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffddb36ea09d18p-60L 0x1.234567ffffffffe93e93ep-60L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000000014p+0L 0x1.234568p-60L : 0x1.3ffffffffffffffddb36ea09d2p-60L 0x1.234567ffffffffe93e93e000008p-60L : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffcp-60L 0x1.234565ffffffffe8p-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffep-60L 0x1.234565ffffffffeap-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffcp-60L 0x1.234565ffffffffe8p-60L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffep-60L 0x1.234565ffffffffeap-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffcp-60L 0x1.234565ffffffffe8p-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffep-60L 0x1.234565ffffffffeap-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffcp-60L 0x1.234565ffffffffe8p-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffep-60L 0x1.234565ffffffffeap-60L : inexact-ok += clog downward ldbl-128 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffddb36c5a1251fp-60L 0x1.234565ffffffffe93e9408p-60L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffddb36c5a1252p-60L 0x1.234565ffffffffe93e9408p-60L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffddb36c5a1251fp-60L 0x1.234565ffffffffe93e9408p-60L : inexact-ok += clog upward ldbl-128 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffddb36c5a1252p-60L 0x1.234565ffffffffe93e9408000001p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffddb36c5a125p-60L 0x1.234565ffffffffe93e9408p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffddb36c5a125p-60L 0x1.234565ffffffffe93e9408p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffddb36c5a125p-60L 0x1.234565ffffffffe93e9408p-60L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000000014p+0L 0x1.234566p-60L : 0x1.3ffffffffffffffddb36c5a1258p-60L 0x1.234565ffffffffe93e940800008p-60L : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffcp-60L 0x1.23456788ffffffe8p-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffep-60L 0x1.23456788ffffffeap-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffcp-60L 0x1.23456788ffffffe8p-60L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffep-60L 0x1.23456788ffffffeap-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffcp-60L 0x1.23456788ffffffe8p-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffep-60L 0x1.23456788ffffffeap-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffcp-60L 0x1.23456788ffffffe8p-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffep-60L 0x1.23456788ffffffeap-60L : inexact-ok += clog downward ldbl-128 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffddb36e1937dccp-60L 0x1.23456788ffffffe93e93e94cp-60L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffddb36e1937dccp-60L 0x1.23456788ffffffe93e93e94cp-60L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffddb36e1937dccp-60L 0x1.23456788ffffffe93e93e94cp-60L : inexact-ok += clog upward ldbl-128 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffddb36e1937dcdp-60L 0x1.23456788ffffffe93e93e94c0001p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffddb36e1937d8p-60L 0x1.23456788ffffffe93e93e94cp-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffddb36e1937ep-60L 0x1.23456788ffffffe93e93e94cp-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffddb36e1937d8p-60L 0x1.23456788ffffffe93e93e94cp-60L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000000014p+0L 0x1.23456789p-60L : 0x1.3ffffffffffffffddb36e1937ep-60L 0x1.23456788ffffffe93e93e94c008p-60L : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.2p-60L 0x1.234567ffffffffeap-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.2p-60L 0x1.234567ffffffffecp-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.2p-60L 0x1.234567ffffffffeap-60L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.2000000000000002p-60L 0x1.234567ffffffffecp-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.2p-60L 0x1.234567ffffffffeap-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.2p-60L 0x1.234567ffffffffecp-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.2p-60L 0x1.234567ffffffffeap-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.2000000000000002p-60L 0x1.234567ffffffffecp-60L : inexact-ok += clog downward ldbl-128 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.20000000000000003b36ea09d1ffp-60L 0x1.234567ffffffffeb851ebp-60L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.20000000000000003b36ea09d2p-60L 0x1.234567ffffffffeb851ebp-60L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.20000000000000003b36ea09d1ffp-60L 0x1.234567ffffffffeb851ebp-60L : inexact-ok += clog upward ldbl-128 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.20000000000000003b36ea09d2p-60L 0x1.234567ffffffffeb851eb0000001p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.20000000000000003b36ea09d18p-60L 0x1.234567ffffffffeb851ebp-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.20000000000000003b36ea09d2p-60L 0x1.234567ffffffffeb851ebp-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.20000000000000003b36ea09d18p-60L 0x1.234567ffffffffeb851ebp-60L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000000012p+0L 0x1.234568p-60L : 0x1.20000000000000003b36ea09d2p-60L 0x1.234567ffffffffeb851eb000008p-60L : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.2p-60L 0x1.234565ffffffffeap-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.2p-60L 0x1.234565ffffffffecp-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.2p-60L 0x1.234565ffffffffeap-60L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.2000000000000002p-60L 0x1.234565ffffffffecp-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.2p-60L 0x1.234565ffffffffeap-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.2p-60L 0x1.234565ffffffffecp-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.2p-60L 0x1.234565ffffffffeap-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.2000000000000002p-60L 0x1.234565ffffffffecp-60L : inexact-ok += clog downward ldbl-128 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.20000000000000003b36c5a1251fp-60L 0x1.234565ffffffffeb851ed4p-60L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.20000000000000003b36c5a1252p-60L 0x1.234565ffffffffeb851ed4p-60L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.20000000000000003b36c5a1251fp-60L 0x1.234565ffffffffeb851ed4p-60L : inexact-ok += clog upward ldbl-128 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.20000000000000003b36c5a1252p-60L 0x1.234565ffffffffeb851ed4000001p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.20000000000000003b36c5a125p-60L 0x1.234565ffffffffeb851ed4p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.20000000000000003b36c5a125p-60L 0x1.234565ffffffffeb851ed4p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.20000000000000003b36c5a125p-60L 0x1.234565ffffffffeb851ed4p-60L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000000012p+0L 0x1.234566p-60L : 0x1.20000000000000003b36c5a1258p-60L 0x1.234565ffffffffeb851ed400008p-60L : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.2p-60L 0x1.23456788ffffffeap-60L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.2p-60L 0x1.23456788ffffffecp-60L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.2p-60L 0x1.23456788ffffffeap-60L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.2000000000000002p-60L 0x1.23456788ffffffecp-60L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.2p-60L 0x1.23456788ffffffeap-60L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.2p-60L 0x1.23456788ffffffecp-60L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.2p-60L 0x1.23456788ffffffeap-60L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.2000000000000002p-60L 0x1.23456788ffffffecp-60L : inexact-ok += clog downward ldbl-128 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.20000000000000003b36e1937dccp-60L 0x1.23456788ffffffeb851eb85ep-60L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.20000000000000003b36e1937dccp-60L 0x1.23456788ffffffeb851eb85ep-60L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.20000000000000003b36e1937dccp-60L 0x1.23456788ffffffeb851eb85ep-60L : inexact-ok += clog upward ldbl-128 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.20000000000000003b36e1937dcdp-60L 0x1.23456788ffffffeb851eb85e0001p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.20000000000000003b36e1937d8p-60L 0x1.23456788ffffffeb851eb85ep-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.20000000000000003b36e1937ep-60L 0x1.23456788ffffffeb851eb85ep-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.20000000000000003b36e1937d8p-60L 0x1.23456788ffffffeb851eb85ep-60L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000000012p+0L 0x1.23456789p-60L : 0x1.20000000000000003b36e1937ep-60L 0x1.23456788ffffffeb851eb85e008p-60L : inexact-ok += clog downward ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.234568p-60L : 0x1.23456789abc000000000086a1d96p-60L 0x1.234567ffffffffeb499234567998p-60L : inexact-ok += clog tonearest ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.234568p-60L : 0x1.23456789abc000000000086a1d97p-60L 0x1.234567ffffffffeb499234567998p-60L : inexact-ok += clog towardzero ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.234568p-60L : 0x1.23456789abc000000000086a1d96p-60L 0x1.234567ffffffffeb499234567998p-60L : inexact-ok += clog upward ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.234568p-60L : 0x1.23456789abc000000000086a1d97p-60L 0x1.234567ffffffffeb499234567999p-60L : inexact-ok += clog downward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.234568p-60L : 0x1.23456789abc000000000086a1d8p-60L 0x1.234567ffffffffeb49923456798p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.234568p-60L : 0x1.23456789abc000000000086a1d8p-60L 0x1.234567ffffffffeb49923456798p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.234568p-60L : 0x1.23456789abc000000000086a1d8p-60L 0x1.234567ffffffffeb49923456798p-60L : inexact-ok += clog upward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.234568p-60L : 0x1.23456789abc000000000086a1ep-60L 0x1.234567ffffffffeb499234567ap-60L : inexact-ok += clog downward ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.234566p-60L : 0x1.23456789abbfffffffffe40170b6p-60L 0x1.234565ffffffffeb499258bf2689p-60L : inexact-ok += clog tonearest ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.234566p-60L : 0x1.23456789abbfffffffffe40170b7p-60L 0x1.234565ffffffffeb499258bf268ap-60L : inexact-ok += clog towardzero ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.234566p-60L : 0x1.23456789abbfffffffffe40170b6p-60L 0x1.234565ffffffffeb499258bf2689p-60L : inexact-ok += clog upward ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.234566p-60L : 0x1.23456789abbfffffffffe40170b7p-60L 0x1.234565ffffffffeb499258bf268ap-60L : inexact-ok += clog downward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.234566p-60L : 0x1.23456789abbfffffffffe401708p-60L 0x1.234565ffffffffeb499258bf268p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.234566p-60L : 0x1.23456789abbfffffffffe401708p-60L 0x1.234565ffffffffeb499258bf268p-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.234566p-60L : 0x1.23456789abbfffffffffe401708p-60L 0x1.234565ffffffffeb499258bf268p-60L : inexact-ok += clog upward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.234566p-60L : 0x1.23456789abbfffffffffe40171p-60L 0x1.234565ffffffffeb499258bf27p-60L : inexact-ok += clog downward ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.23456789p-60L : 0x1.23456789abbffffffffffff3c962p-60L 0x1.23456788ffffffeb49923ccccdcap-60L : inexact-ok += clog tonearest ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.23456789p-60L : 0x1.23456789abbffffffffffff3c963p-60L 0x1.23456788ffffffeb49923ccccdcbp-60L : inexact-ok += clog towardzero ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.23456789p-60L : 0x1.23456789abbffffffffffff3c962p-60L 0x1.23456788ffffffeb49923ccccdcap-60L : inexact-ok += clog upward ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.23456789p-60L : 0x1.23456789abbffffffffffff3c963p-60L 0x1.23456788ffffffeb49923ccccdcbp-60L : inexact-ok += clog downward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.23456789p-60L : 0x1.23456789abbffffffffffff3c9p-60L 0x1.23456788ffffffeb49923ccccd8p-60L : inexact-ok += clog tonearest ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.23456789p-60L : 0x1.23456789abbffffffffffff3c98p-60L 0x1.23456788ffffffeb49923ccccep-60L : inexact-ok += clog towardzero ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.23456789p-60L : 0x1.23456789abbffffffffffff3c9p-60L 0x1.23456788ffffffeb49923ccccd8p-60L : inexact-ok += clog upward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.23456789p-60L : 0x1.23456789abbffffffffffff3c98p-60L 0x1.23456788ffffffeb49923ccccep-60L : inexact-ok +clog 0x1.00000000000000123456789abcp0 0x1.23456789p-1000 += clog downward flt-32 0x1.000002p+0f 0x8p-152f : 0x1.fffffep-24f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x1.000002p+0f 0x8p-152f : 0x1.fffffep-24f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x1.000002p+0f 0x8p-152f : 0x1.fffffep-24f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x1.000002p+0f 0x8p-152f : 0x2p-24f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x1.000002p+0 0x8p-152 : 0x1.fffffe000002ap-24 0x7.fffff000001fcp-152 : inexact-ok += clog tonearest dbl-64 0x1.000002p+0 0x8p-152 : 0x1.fffffe000002bp-24 0x7.fffff000002p-152 : inexact-ok += clog towardzero dbl-64 0x1.000002p+0 0x8p-152 : 0x1.fffffe000002ap-24 0x7.fffff000001fcp-152 : inexact-ok += clog upward dbl-64 0x1.000002p+0 0x8p-152 : 0x1.fffffe000002bp-24 0x7.fffff000002p-152 : inexact-ok += clog downward ldbl-96-intel 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x7.fffff000001ffff8p-152L : inexact-ok += clog tonearest ldbl-96-intel 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x7.fffff000002p-152L : inexact-ok += clog towardzero ldbl-96-intel 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x7.fffff000001ffff8p-152L : inexact-ok += clog upward ldbl-96-intel 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaacp-24L 0x7.fffff000002p-152L : inexact-ok += clog downward ldbl-96-m68k 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x7.fffff000001ffff8p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x7.fffff000002p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaap-24L 0x7.fffff000001ffff8p-152L : inexact-ok += clog upward ldbl-96-m68k 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaacp-24L 0x7.fffff000002p-152L : inexact-ok += clog downward ldbl-128 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x7.fffff000001fffffc000007ffffcp-152L : inexact-ok += clog tonearest ldbl-128 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x7.fffff000001fffffc000008p-152L : inexact-ok += clog towardzero ldbl-128 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x7.fffff000001fffffc000007ffffcp-152L : inexact-ok += clog upward ldbl-128 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab11112p-24L 0x7.fffff000001fffffc000008p-152L : inexact-ok += clog downward ldbl-128ibm 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x7.fffff000001fffffc000007ffep-152L : inexact-ok += clog tonearest ldbl-128ibm 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x7.fffff000001fffffc000008p-152L : inexact-ok += clog towardzero ldbl-128ibm 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x7.fffff000001fffffc000007ffep-152L : inexact-ok += clog upward ldbl-128ibm 0x1.000002p+0L 0x8p-152L : 0x1.fffffe000002aaaaa6aaaab1118p-24L 0x7.fffff000001fffffc000008p-152L : inexact-ok += clog downward flt-32 0x1.000002p+0f 0x0p+0f : 0x1.fffffep-24f 0x0p+0f : inexact-ok += clog tonearest flt-32 0x1.000002p+0f 0x0p+0f : 0x1.fffffep-24f 0x0p+0f : inexact-ok += clog towardzero flt-32 0x1.000002p+0f 0x0p+0f : 0x1.fffffep-24f 0x0p+0f : inexact-ok += clog upward flt-32 0x1.000002p+0f 0x0p+0f : 0x2p-24f 0x0p+0f : inexact-ok += clog downward dbl-64 0x1.000002p+0 0x0p+0 : 0x1.fffffe000002ap-24 0x0p+0 : inexact-ok += clog tonearest dbl-64 0x1.000002p+0 0x0p+0 : 0x1.fffffe000002bp-24 0x0p+0 : inexact-ok += clog towardzero dbl-64 0x1.000002p+0 0x0p+0 : 0x1.fffffe000002ap-24 0x0p+0 : inexact-ok += clog upward dbl-64 0x1.000002p+0 0x0p+0 : 0x1.fffffe000002bp-24 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaacp-24L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaap-24L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaacp-24L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab11112p-24L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.000002p+0L 0x0p+0L : 0x1.fffffe000002aaaaa6aaaab1118p-24L 0x0p+0L : inexact-ok += clog downward dbl-64 0x1.000002p+0 0x1.23456789p-1000 : 0x1.fffffe000002ap-24 0x1.2345654275357p-1000 : inexact-ok += clog tonearest dbl-64 0x1.000002p+0 0x1.23456789p-1000 : 0x1.fffffe000002bp-24 0x1.2345654275358p-1000 : inexact-ok += clog towardzero dbl-64 0x1.000002p+0 0x1.23456789p-1000 : 0x1.fffffe000002ap-24 0x1.2345654275357p-1000 : inexact-ok += clog upward dbl-64 0x1.000002p+0 0x1.23456789p-1000 : 0x1.fffffe000002bp-24 0x1.2345654275358p-1000 : inexact-ok += clog downward ldbl-96-intel 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b14p-1000L : inexact-ok += clog tonearest ldbl-96-intel 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b16p-1000L : inexact-ok += clog towardzero ldbl-96-intel 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b14p-1000L : inexact-ok += clog upward ldbl-96-intel 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaacp-24L 0x1.2345654275357b16p-1000L : inexact-ok += clog downward ldbl-96-m68k 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b14p-1000L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b16p-1000L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaap-24L 0x1.2345654275357b14p-1000L : inexact-ok += clog upward ldbl-96-m68k 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaacp-24L 0x1.2345654275357b16p-1000L : inexact-ok += clog downward ldbl-128 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x1.2345654275357b159509d4d5ec56p-1000L : inexact-ok += clog tonearest ldbl-128 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x1.2345654275357b159509d4d5ec56p-1000L : inexact-ok += clog towardzero ldbl-128 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaaa6aaaab11111p-24L 0x1.2345654275357b159509d4d5ec56p-1000L : inexact-ok += clog upward ldbl-128 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaaa6aaaab11112p-24L 0x1.2345654275357b159509d4d5ec57p-1000L : inexact-ok += clog downward ldbl-128ibm 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x1.2345654275357b1595p-1000L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x1.2345654275357b1595p-1000L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaaa6aaaab111p-24L 0x1.2345654275357b1595p-1000L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x1.000002p+0L 0x1.23456789p-1000L : 0x1.fffffe000002aaaaa6aaaab1118p-24L 0x1.2345654275357b15954p-1000L : inexact-ok underflow errno-erange-ok += clog downward flt-32 0x1p+0f 0x8p-152f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x1p+0f 0x8p-152f : 0x0p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x1p+0f 0x8p-152f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x1p+0f 0x8p-152f : 0x8p-152f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x1p+0 0x8p-152 : 0x1.fffffffffffffp-300 0x7.ffffffffffffcp-152 : inexact-ok += clog tonearest dbl-64 0x1p+0 0x8p-152 : 0x2p-300 0x8p-152 : inexact-ok += clog towardzero dbl-64 0x1p+0 0x8p-152 : 0x1.fffffffffffffp-300 0x7.ffffffffffffcp-152 : inexact-ok += clog upward dbl-64 0x1p+0 0x8p-152 : 0x2p-300 0x8p-152 : inexact-ok += clog downward ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-300L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-300L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-300L 0x7.fffffffffffffffffffffffffep-152L : inexact-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-300L 0x7.fffffffffffffffffffffffffep-152L : inexact-ok += clog upward ldbl-128ibm 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog tonearest flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog towardzero flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog upward flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog downward dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog tonearest dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog towardzero dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog upward dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward dbl-64 0x1p+0 0x1.23456789p-1000 : 0x0p+0 0x1.23456788fffffp-1000 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0x1p+0 0x1.23456789p-1000 : 0x0p+0 0x1.23456789p-1000 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0x1p+0 0x1.23456789p-1000 : 0x0p+0 0x1.23456788fffffp-1000 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0x1p+0 0x1.23456789p-1000 : 0x4p-1076 0x1.23456789p-1000 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a8p-2004L 0x1.23456788fffffffep-1000L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a8p-2004L 0x1.23456789p-1000L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a8p-2004L 0x1.23456788fffffffep-1000L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a9p-2004L 0x1.23456789p-1000L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a8p-2004L 0x1.23456788fffffffep-1000L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a8p-2004L 0x1.23456789p-1000L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a8p-2004L 0x1.23456788fffffffep-1000L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a9p-2004L 0x1.23456789p-1000L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a87fffffffffff8p-2004L 0x1.23456788ffffffffffffffffffffp-1000L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a88p-2004L 0x1.23456789p-1000L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a87fffffffffff8p-2004L 0x1.23456788ffffffffffffffffffffp-1000L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x1.23456789p-1000L : 0xa.5b36e1937dcc3a88p-2004L 0x1.23456789p-1000L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x1.23456789p-1000L : 0x0p+0L 0x1.23456788ffffffffffcp-1000L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x1.23456789p-1000L : 0x0p+0L 0x1.23456789p-1000L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x1.23456789p-1000L : 0x0p+0L 0x1.23456788ffffffffffcp-1000L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x1p+0L 0x1.23456789p-1000L : 0x4p-1076L 0x1.23456789p-1000L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x1.0000000000001p+0 0x8p-152 : 0xf.ffffffffffff8p-56 0x7.ffffffffffff8p-152 : inexact-ok += clog tonearest dbl-64 0x1.0000000000001p+0 0x8p-152 : 0xf.ffffffffffff8p-56 0x7.ffffffffffff8p-152 : inexact-ok += clog towardzero dbl-64 0x1.0000000000001p+0 0x8p-152 : 0xf.ffffffffffff8p-56 0x7.ffffffffffff8p-152 : inexact-ok += clog upward dbl-64 0x1.0000000000001p+0 0x8p-152 : 0x1p-52 0x7.ffffffffffffcp-152 : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff8p-56L 0x7.ffffffffffff8p-152L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff8p-56L 0x7.ffffffffffff8p-152L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff8p-56L 0x7.ffffffffffff8p-152L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff801p-56L 0x7.ffffffffffff8008p-152L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff8p-56L 0x7.ffffffffffff8p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff8p-56L 0x7.ffffffffffff8p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff8p-56L 0x7.ffffffffffff8p-152L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff801p-56L 0x7.ffffffffffff8008p-152L : inexact-ok += clog downward ldbl-128 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff800000000000055p-56L 0x7.ffffffffffff80000000000007fcp-152L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff8000000000000558p-56L 0x7.ffffffffffff80000000000008p-152L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff800000000000055p-56L 0x7.ffffffffffff80000000000007fcp-152L : inexact-ok += clog upward ldbl-128 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff8000000000000558p-56L 0x7.ffffffffffff80000000000008p-152L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff80000000000004p-56L 0x7.ffffffffffff80000000000006p-152L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff80000000000004p-56L 0x7.ffffffffffff80000000000008p-152L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff80000000000004p-56L 0x7.ffffffffffff80000000000006p-152L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000001p+0L 0x8p-152L : 0xf.ffffffffffff80000000000008p-56L 0x7.ffffffffffff80000000000008p-152L : inexact-ok += clog downward dbl-64 0x1.0000000000001p+0 0x0p+0 : 0xf.ffffffffffff8p-56 0x0p+0 : inexact-ok += clog tonearest dbl-64 0x1.0000000000001p+0 0x0p+0 : 0xf.ffffffffffff8p-56 0x0p+0 : inexact-ok += clog towardzero dbl-64 0x1.0000000000001p+0 0x0p+0 : 0xf.ffffffffffff8p-56 0x0p+0 : inexact-ok += clog upward dbl-64 0x1.0000000000001p+0 0x0p+0 : 0x1p-52 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff8p-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff8p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff8p-56L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff801p-56L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff8p-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff8p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff8p-56L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff801p-56L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff800000000000055p-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff8000000000000558p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff800000000000055p-56L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff8000000000000558p-56L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff80000000000004p-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff80000000000004p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff80000000000004p-56L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000001p+0L 0x0p+0L : 0xf.ffffffffffff80000000000008p-56L 0x0p+0L : inexact-ok += clog downward dbl-64 0x1.0000000000001p+0 0x1.23456789p-1000 : 0xf.ffffffffffff8p-56 0x1.23456788ffffep-1000 : inexact-ok += clog tonearest dbl-64 0x1.0000000000001p+0 0x1.23456789p-1000 : 0xf.ffffffffffff8p-56 0x1.23456788fffffp-1000 : inexact-ok += clog towardzero dbl-64 0x1.0000000000001p+0 0x1.23456789p-1000 : 0xf.ffffffffffff8p-56 0x1.23456788ffffep-1000 : inexact-ok += clog upward dbl-64 0x1.0000000000001p+0 0x1.23456789p-1000 : 0x1p-52 0x1.23456788fffffp-1000 : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedcap-1000L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedccp-1000L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedcap-1000L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff801p-56L 0x1.23456788ffffedccp-1000L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedcap-1000L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedccp-1000L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff8p-56L 0x1.23456788ffffedcap-1000L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff801p-56L 0x1.23456788ffffedccp-1000L : inexact-ok += clog downward ldbl-128 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff800000000000055p-56L 0x1.23456788ffffedcba98770000123p-1000L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff8000000000000558p-56L 0x1.23456788ffffedcba98770000123p-1000L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff800000000000055p-56L 0x1.23456788ffffedcba98770000123p-1000L : inexact-ok += clog upward ldbl-128 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff8000000000000558p-56L 0x1.23456788ffffedcba98770000124p-1000L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff80000000000004p-56L 0x1.23456788ffffedcba98p-1000L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff80000000000004p-56L 0x1.23456788ffffedcba98p-1000L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff80000000000004p-56L 0x1.23456788ffffedcba98p-1000L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x1.0000000000001p+0L 0x1.23456789p-1000L : 0xf.ffffffffffff80000000000008p-56L 0x1.23456788ffffedcba9cp-1000L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff2p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff4p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff2p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff4p-60L 0x7.ffffffffffffff68p-152L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff2p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff4p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff2p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff4p-60L 0x7.ffffffffffffff68p-152L : inexact-ok += clog downward ldbl-128 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff38p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff38p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff38p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog upward ldbl-128 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff3800000000001p-60L 0x7.ffffffffffffff60000000000004p-152L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff38p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff38p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff38p-60L 0x7.ffffffffffffff6p-152L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000000014p+0L 0x8p-152L : 0x1.3ffffffffffffff380000000008p-60L 0x7.ffffffffffffff600000000002p-152L : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff2p-60L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff4p-60L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff2p-60L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff4p-60L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff2p-60L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff4p-60L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff2p-60L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff4p-60L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff38p-60L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff38p-60L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff38p-60L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff3800000000001p-60L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff38p-60L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff38p-60L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff38p-60L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000000014p+0L 0x0p+0L : 0x1.3ffffffffffffff380000000008p-60L 0x0p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff2p-60L 0x1.23456788ffffffe8p-1000L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff4p-60L 0x1.23456788ffffffeap-1000L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff2p-60L 0x1.23456788ffffffe8p-1000L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff4p-60L 0x1.23456788ffffffeap-1000L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff2p-60L 0x1.23456788ffffffe8p-1000L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff4p-60L 0x1.23456788ffffffeap-1000L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff2p-60L 0x1.23456788ffffffe8p-1000L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff4p-60L 0x1.23456788ffffffeap-1000L : inexact-ok += clog downward ldbl-128 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff38p-60L 0x1.23456788ffffffe93e93e94cp-1000L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff38p-60L 0x1.23456788ffffffe93e93e94cp-1000L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff38p-60L 0x1.23456788ffffffe93e93e94cp-1000L : inexact-ok += clog upward ldbl-128 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff3800000000001p-60L 0x1.23456788ffffffe93e93e94c0001p-1000L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff38p-60L 0x1.23456788ffffffe93e8p-1000L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff38p-60L 0x1.23456788ffffffe93e8p-1000L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff38p-60L 0x1.23456788ffffffe93e8p-1000L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x1.0000000000000014p+0L 0x1.23456789p-1000L : 0x1.3ffffffffffffff380000000008p-60L 0x1.23456788ffffffe93ecp-1000L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff4p-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff6p-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff4p-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff6p-60L 0x7.ffffffffffffff78p-152L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff4p-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff6p-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff4p-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff6p-60L 0x7.ffffffffffffff78p-152L : inexact-ok += clog downward ldbl-128 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff5ep-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff5ep-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff5ep-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog upward ldbl-128 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff5e00000000001p-60L 0x7.ffffffffffffff70000000000004p-152L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff5ep-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff5ep-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff5ep-60L 0x7.ffffffffffffff7p-152L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000000012p+0L 0x8p-152L : 0x1.1ffffffffffffff5e0000000008p-60L 0x7.ffffffffffffff700000000002p-152L : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff4p-60L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff6p-60L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff4p-60L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff6p-60L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff4p-60L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff6p-60L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff4p-60L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff6p-60L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff5ep-60L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff5ep-60L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff5ep-60L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff5e00000000001p-60L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff5ep-60L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff5ep-60L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff5ep-60L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.0000000000000012p+0L 0x0p+0L : 0x1.1ffffffffffffff5e0000000008p-60L 0x0p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff4p-60L 0x1.23456788ffffffeap-1000L : inexact-ok += clog tonearest ldbl-96-intel 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff6p-60L 0x1.23456788ffffffecp-1000L : inexact-ok += clog towardzero ldbl-96-intel 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff4p-60L 0x1.23456788ffffffeap-1000L : inexact-ok += clog upward ldbl-96-intel 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff6p-60L 0x1.23456788ffffffecp-1000L : inexact-ok += clog downward ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff4p-60L 0x1.23456788ffffffeap-1000L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff6p-60L 0x1.23456788ffffffecp-1000L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff4p-60L 0x1.23456788ffffffeap-1000L : inexact-ok += clog upward ldbl-96-m68k 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff6p-60L 0x1.23456788ffffffecp-1000L : inexact-ok += clog downward ldbl-128 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff5ep-60L 0x1.23456788ffffffeb851eb85ep-1000L : inexact-ok += clog tonearest ldbl-128 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff5ep-60L 0x1.23456788ffffffeb851eb85ep-1000L : inexact-ok += clog towardzero ldbl-128 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff5ep-60L 0x1.23456788ffffffeb851eb85ep-1000L : inexact-ok += clog upward ldbl-128 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff5e00000000001p-60L 0x1.23456788ffffffeb851eb85e0001p-1000L : inexact-ok += clog downward ldbl-128ibm 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff5ep-60L 0x1.23456788ffffffeb85p-1000L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff5ep-60L 0x1.23456788ffffffeb85p-1000L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff5ep-60L 0x1.23456788ffffffeb85p-1000L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x1.0000000000000012p+0L 0x1.23456789p-1000L : 0x1.1ffffffffffffff5e0000000008p-60L 0x1.23456788ffffffeb854p-1000L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0x1.00000000000000123456789abcp+0L 0x8p-152L : 0x1.23456789abbffff5a4c91e604b96p-60L 0x7.ffffffffffffff6e5d4c3b2a2p-152L : inexact-ok += clog tonearest ldbl-128 0x1.00000000000000123456789abcp+0L 0x8p-152L : 0x1.23456789abbffff5a4c91e604b97p-60L 0x7.ffffffffffffff6e5d4c3b2a2p-152L : inexact-ok += clog towardzero ldbl-128 0x1.00000000000000123456789abcp+0L 0x8p-152L : 0x1.23456789abbffff5a4c91e604b96p-60L 0x7.ffffffffffffff6e5d4c3b2a2p-152L : inexact-ok += clog upward ldbl-128 0x1.00000000000000123456789abcp+0L 0x8p-152L : 0x1.23456789abbffff5a4c91e604b97p-60L 0x7.ffffffffffffff6e5d4c3b2a2004p-152L : inexact-ok += clog downward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x8p-152L : 0x1.23456789abbffff5a4c91e604b8p-60L 0x7.ffffffffffffff6e5d4c3b2a2p-152L : inexact-ok += clog tonearest ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x8p-152L : 0x1.23456789abbffff5a4c91e604b8p-60L 0x7.ffffffffffffff6e5d4c3b2a2p-152L : inexact-ok += clog towardzero ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x8p-152L : 0x1.23456789abbffff5a4c91e604b8p-60L 0x7.ffffffffffffff6e5d4c3b2a2p-152L : inexact-ok += clog upward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x8p-152L : 0x1.23456789abbffff5a4c91e604cp-60L 0x7.ffffffffffffff6e5d4c3b2a22p-152L : inexact-ok += clog downward ldbl-128 0x1.00000000000000123456789abcp+0L 0x0p+0L : 0x1.23456789abbffff5a4c91e604b96p-60L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x1.00000000000000123456789abcp+0L 0x0p+0L : 0x1.23456789abbffff5a4c91e604b97p-60L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x1.00000000000000123456789abcp+0L 0x0p+0L : 0x1.23456789abbffff5a4c91e604b96p-60L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x1.00000000000000123456789abcp+0L 0x0p+0L : 0x1.23456789abbffff5a4c91e604b97p-60L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x0p+0L : 0x1.23456789abbffff5a4c91e604b8p-60L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x0p+0L : 0x1.23456789abbffff5a4c91e604b8p-60L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x0p+0L : 0x1.23456789abbffff5a4c91e604b8p-60L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x0p+0L : 0x1.23456789abbffff5a4c91e604cp-60L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.23456789p-1000L : 0x1.23456789abbffff5a4c91e604b96p-60L 0x1.23456788ffffffeb49923ccccdcap-1000L : inexact-ok += clog tonearest ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.23456789p-1000L : 0x1.23456789abbffff5a4c91e604b97p-60L 0x1.23456788ffffffeb49923ccccdcbp-1000L : inexact-ok += clog towardzero ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.23456789p-1000L : 0x1.23456789abbffff5a4c91e604b96p-60L 0x1.23456788ffffffeb49923ccccdcap-1000L : inexact-ok += clog upward ldbl-128 0x1.00000000000000123456789abcp+0L 0x1.23456789p-1000L : 0x1.23456789abbffff5a4c91e604b97p-60L 0x1.23456788ffffffeb49923ccccdcbp-1000L : inexact-ok += clog downward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.23456789p-1000L : 0x1.23456789abbffff5a4c91e604b8p-60L 0x1.23456788ffffffeb498p-1000L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.23456789p-1000L : 0x1.23456789abbffff5a4c91e604b8p-60L 0x1.23456788ffffffeb498p-1000L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.23456789p-1000L : 0x1.23456789abbffff5a4c91e604b8p-60L 0x1.23456788ffffffeb498p-1000L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x1.00000000000000123456789abcp+0L 0x1.23456789p-1000L : 0x1.23456789abbffff5a4c91e604cp-60L 0x1.23456788ffffffeb49cp-1000L : inexact-ok underflow errno-erange-ok +clog 0x0.ffffffp0 0x0.ffffffp-100 += clog downward flt-32 0xf.fffffp-4f 0xf.fffffp-104f : -0x1.000002p-24f 0xf.fffffp-104f : inexact-ok += clog tonearest flt-32 0xf.fffffp-4f 0xf.fffffp-104f : -0x1p-24f 0x1p-100f : inexact-ok += clog towardzero flt-32 0xf.fffffp-4f 0xf.fffffp-104f : -0x1p-24f 0xf.fffffp-104f : inexact-ok += clog upward flt-32 0xf.fffffp-4f 0xf.fffffp-104f : -0x1p-24f 0x1p-100f : inexact-ok += clog downward dbl-64 0xf.fffffp-4 0xf.fffffp-104 : -0x1.0000008000006p-24 0xf.ffffffffffff8p-104 : inexact-ok += clog tonearest dbl-64 0xf.fffffp-4 0xf.fffffp-104 : -0x1.0000008000005p-24 0x1p-100 : inexact-ok += clog towardzero dbl-64 0xf.fffffp-4 0xf.fffffp-104 : -0x1.0000008000005p-24 0xf.ffffffffffff8p-104 : inexact-ok += clog upward dbl-64 0xf.fffffp-4 0xf.fffffp-104 : -0x1.0000008000005p-24 0x1p-100 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005556p-24L 0xf.fffffffffffffffp-104L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005556p-24L 0x1p-100L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005554p-24L 0xf.fffffffffffffffp-104L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005554p-24L 0x1p-100L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005556p-24L 0xf.fffffffffffffffp-104L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005556p-24L 0x1p-100L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005554p-24L 0xf.fffffffffffffffp-104L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005554p-24L 0x1p-100L : inexact-ok += clog downward ldbl-128 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005555559555558889p-24L 0xf.fffffffffffffffffffffffffff8p-104L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005555559555558888p-24L 0x1p-100L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005555559555558888p-24L 0xf.fffffffffffffffffffffffffff8p-104L : inexact-ok += clog upward ldbl-128 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.0000008000005555559555558888p-24L 0x1p-100L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.00000080000055555595555589p-24L 0xf.fffffffffffffffffffffffffcp-104L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.000000800000555555955555888p-24L 0x1p-100L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.000000800000555555955555888p-24L 0xf.fffffffffffffffffffffffffcp-104L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp-4L 0xf.fffffp-104L : -0x1.000000800000555555955555888p-24L 0x1p-100L : inexact-ok +clog 0x0.fffffffffffff8p0 0x0.fffffffffffff8p-1000 += clog downward flt-32 0x1p+0f 0x8p-152f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x1p+0f 0x8p-152f : 0x0p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x1p+0f 0x8p-152f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x1p+0f 0x8p-152f : 0x8p-152f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x1p+0 0x8p-152 : 0x1.fffffffffffffp-300 0x7.ffffffffffffcp-152 : inexact-ok += clog tonearest dbl-64 0x1p+0 0x8p-152 : 0x2p-300 0x8p-152 : inexact-ok += clog towardzero dbl-64 0x1p+0 0x8p-152 : 0x1.fffffffffffffp-300 0x7.ffffffffffffcp-152 : inexact-ok += clog upward dbl-64 0x1p+0 0x8p-152 : 0x2p-300 0x8p-152 : inexact-ok += clog downward ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-300L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-300L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-300L 0x7.fffffffffffffffffffffffffep-152L : inexact-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-300L 0x7.fffffffffffffffffffffffffep-152L : inexact-ok += clog upward ldbl-128ibm 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog tonearest flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog towardzero flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog upward flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog downward dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog tonearest dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog towardzero dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog upward dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward dbl-64 0x1p+0 0xf.ffffffffffff8p-1004 : 0x0p+0 0xf.ffffffffffffp-1004 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0x1p+0 0xf.ffffffffffff8p-1004 : 0x0p+0 0xf.ffffffffffff8p-1004 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0x1p+0 0xf.ffffffffffff8p-1004 : 0x0p+0 0xf.ffffffffffffp-1004 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0x1p+0 0xf.ffffffffffff8p-1004 : 0x4p-1076 0xf.ffffffffffff8p-1004 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff8p-2004L 0xf.ffffffffffff7ffp-1004L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff8p-2004L 0xf.ffffffffffff8p-1004L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff8p-2004L 0xf.ffffffffffff7ffp-1004L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff8008p-2004L 0xf.ffffffffffff8p-1004L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff8p-2004L 0xf.ffffffffffff7ffp-1004L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff8p-2004L 0xf.ffffffffffff8p-1004L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff8p-2004L 0xf.ffffffffffff7ffp-1004L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff8008p-2004L 0xf.ffffffffffff8p-1004L : inexact-ok += clog downward ldbl-128 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff80000000000001fcp-2004L 0xf.ffffffffffff7ffffffffffffff8p-1004L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff80000000000002p-2004L 0xf.ffffffffffff8p-1004L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff80000000000001fcp-2004L 0xf.ffffffffffff7ffffffffffffff8p-1004L : inexact-ok += clog upward ldbl-128 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x7.ffffffffffff80000000000002p-2004L 0xf.ffffffffffff8p-1004L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x0p+0L 0xf.ffffffffffff7ffffcp-1004L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x0p+0L 0xf.ffffffffffff8p-1004L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x0p+0L 0xf.ffffffffffff7ffffcp-1004L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p-1004L : 0x4p-1076L 0xf.ffffffffffff8p-1004L : inexact-ok underflow errno-erange-ok += clog downward flt-32 0xf.fffffp-4f 0x8p-152f : -0x1.000002p-24f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0xf.fffffp-4f 0x8p-152f : -0x1p-24f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0xf.fffffp-4f 0x8p-152f : -0x1p-24f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0xf.fffffp-4f 0x8p-152f : -0x1p-24f 0x1p-148f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.fffffp-4 0x8p-152 : -0x1.0000008000006p-24 0x8.000008000008p-152 : inexact-ok += clog tonearest dbl-64 0xf.fffffp-4 0x8p-152 : -0x1.0000008000005p-24 0x8.000008000008p-152 : inexact-ok += clog towardzero dbl-64 0xf.fffffp-4 0x8p-152 : -0x1.0000008000005p-24 0x8.000008000008p-152 : inexact-ok += clog upward dbl-64 0xf.fffffp-4 0x8p-152 : -0x1.0000008000005p-24 0x8.0000080000088p-152 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005556p-24L 0x8.000008000008p-152L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005556p-24L 0x8.000008000008p-152L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005554p-24L 0x8.000008000008p-152L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005554p-24L 0x8.000008000008001p-152L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005556p-24L 0x8.000008000008p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005556p-24L 0x8.000008000008p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005554p-24L 0x8.000008000008p-152L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005554p-24L 0x8.000008000008001p-152L : inexact-ok += clog downward ldbl-128 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005555559555558889p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005555559555558888p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005555559555558888p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog upward ldbl-128 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005555559555558888p-24L 0x8.0000080000080000080000080008p-152L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp-4L 0x8p-152L : -0x1.00000080000055555595555589p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp-4L 0x8p-152L : -0x1.000000800000555555955555888p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp-4L 0x8p-152L : -0x1.000000800000555555955555888p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp-4L 0x8p-152L : -0x1.000000800000555555955555888p-24L 0x8.00000800000800000800000804p-152L : inexact-ok += clog downward flt-32 0xf.fffffp-4f 0x0p+0f : -0x1.000002p-24f 0x0p+0f : inexact-ok += clog tonearest flt-32 0xf.fffffp-4f 0x0p+0f : -0x1p-24f 0x0p+0f : inexact-ok += clog towardzero flt-32 0xf.fffffp-4f 0x0p+0f : -0x1p-24f 0x0p+0f : inexact-ok += clog upward flt-32 0xf.fffffp-4f 0x0p+0f : -0x1p-24f 0x0p+0f : inexact-ok += clog downward dbl-64 0xf.fffffp-4 0x0p+0 : -0x1.0000008000006p-24 0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp-4 0x0p+0 : -0x1.0000008000005p-24 0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp-4 0x0p+0 : -0x1.0000008000005p-24 0x0p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp-4 0x0p+0 : -0x1.0000008000005p-24 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005556p-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005556p-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005554p-24L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005554p-24L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005556p-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005556p-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005554p-24L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005554p-24L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005555559555558889p-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005555559555558888p-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005555559555558888p-24L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005555559555558888p-24L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp-4L 0x0p+0L : -0x1.00000080000055555595555589p-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp-4L 0x0p+0L : -0x1.000000800000555555955555888p-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp-4L 0x0p+0L : -0x1.000000800000555555955555888p-24L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp-4L 0x0p+0L : -0x1.000000800000555555955555888p-24L 0x0p+0L : inexact-ok += clog downward dbl-64 0xf.fffffp-4 0xf.ffffffffffff8p-1004 : -0x1.0000008000006p-24 0x1.000001000000fp-1000 : inexact-ok += clog tonearest dbl-64 0xf.fffffp-4 0xf.ffffffffffff8p-1004 : -0x1.0000008000005p-24 0x1.000001000001p-1000 : inexact-ok += clog towardzero dbl-64 0xf.fffffp-4 0xf.ffffffffffff8p-1004 : -0x1.0000008000005p-24 0x1.000001000000fp-1000 : inexact-ok += clog upward dbl-64 0xf.fffffp-4 0xf.ffffffffffff8p-1004 : -0x1.0000008000005p-24 0x1.000001000001p-1000 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005556p-24L 0x1.000001000000f8p-1000L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005556p-24L 0x1.000001000000f8p-1000L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005554p-24L 0x1.000001000000f8p-1000L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005554p-24L 0x1.000001000000f802p-1000L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005556p-24L 0x1.000001000000f8p-1000L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005556p-24L 0x1.000001000000f8p-1000L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005554p-24L 0x1.000001000000f8p-1000L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005554p-24L 0x1.000001000000f802p-1000L : inexact-ok += clog downward ldbl-128 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005555559555558889p-24L 0x1.000001000000f80000f80000f8p-1000L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005555559555558888p-24L 0x1.000001000000f80000f80000f8p-1000L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005555559555558888p-24L 0x1.000001000000f80000f80000f8p-1000L : inexact-ok += clog upward ldbl-128 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.0000008000005555559555558888p-24L 0x1.000001000000f80000f80000f801p-1000L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.00000080000055555595555589p-24L 0x1.000001000000f80000cp-1000L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.000000800000555555955555888p-24L 0x1.000001000000f80001p-1000L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.000000800000555555955555888p-24L 0x1.000001000000f80000cp-1000L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.fffffp-4L 0xf.ffffffffffff8p-1004L : -0x1.000000800000555555955555888p-24L 0x1.000001000000f80001p-1000L : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.ffffffffffff8p-4 0x8p-152 : -0x8.0000000000008p-56 0x8p-152 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p-4 0x8p-152 : -0x8p-56 0x8.0000000000008p-152 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p-4 0x8p-152 : -0x8p-56 0x8p-152 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p-4 0x8p-152 : -0x8p-56 0x8.0000000000008p-152 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.000000000000201p-56L 0x8.0000000000004p-152L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.0000000000004p-152L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.0000000000004p-152L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.000000000000401p-152L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.000000000000201p-56L 0x8.0000000000004p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.0000000000004p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.0000000000004p-152L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.000000000000401p-152L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.00000000000020000000000000bp-56L 0x8.00000000000040000000000002p-152L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.00000000000020000000000000a8p-56L 0x8.00000000000040000000000002p-152L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.00000000000020000000000000a8p-56L 0x8.00000000000040000000000002p-152L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.00000000000020000000000000a8p-56L 0x8.0000000000004000000000000208p-152L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.00000000000020000000000004p-56L 0x8.0000000000004p-152L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.00000000000040000000000004p-152L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.0000000000004p-152L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.00000000000040000000000004p-152L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p-4 0x0p+0 : -0x8.0000000000008p-56 0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p-4 0x0p+0 : -0x8p-56 0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p-4 0x0p+0 : -0x8p-56 0x0p+0 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p-4 0x0p+0 : -0x8p-56 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.000000000000201p-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.000000000000201p-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.00000000000020000000000000bp-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.00000000000020000000000000a8p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.00000000000020000000000000a8p-56L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.00000000000020000000000000a8p-56L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.00000000000020000000000004p-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-1004 : -0x8.0000000000008p-56 0xf.ffffffffffff8p-1004 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-1004 : -0x8p-56 0x1p-1000 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-1004 : -0x8p-56 0xf.ffffffffffff8p-1004 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p-4 0xf.ffffffffffff8p-1004 : -0x8p-56 0x1p-1000 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.000000000000201p-56L 0xf.fffffffffffffffp-1004L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.0000000000002p-56L 0x1p-1000L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.0000000000002p-56L 0xf.fffffffffffffffp-1004L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.0000000000002p-56L 0x1p-1000L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.000000000000201p-56L 0xf.fffffffffffffffp-1004L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.0000000000002p-56L 0x1p-1000L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.0000000000002p-56L 0xf.fffffffffffffffp-1004L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.0000000000002p-56L 0x1p-1000L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.00000000000020000000000000bp-56L 0xf.fffffffffffffffffffffffffff8p-1004L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.00000000000020000000000000a8p-56L 0x1p-1000L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.00000000000020000000000000a8p-56L 0xf.fffffffffffffffffffffffffff8p-1004L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.00000000000020000000000000a8p-56L 0x1p-1000L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.00000000000020000000000004p-56L 0xf.fffffffffffffffffcp-1004L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.0000000000002p-56L 0x1p-1000L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.0000000000002p-56L 0xf.fffffffffffffffffcp-1004L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0xf.ffffffffffff8p-1004L : -0x8.0000000000002p-56L 0x1p-1000L : inexact-ok underflow errno-erange-ok +clog 0x0.ffffffffffffffffp0 0x0.ffffffffffffffffp-15000 += clog downward flt-32 0x1p+0f 0x8p-152f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0x1p+0f 0x8p-152f : 0x0p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0x1p+0f 0x8p-152f : 0x0p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0x1p+0f 0x8p-152f : 0x8p-152f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0x1p+0 0x8p-152 : 0x1.fffffffffffffp-300 0x7.ffffffffffffcp-152 : inexact-ok += clog tonearest dbl-64 0x1p+0 0x8p-152 : 0x2p-300 0x8p-152 : inexact-ok += clog towardzero dbl-64 0x1p+0 0x8p-152 : 0x1.fffffffffffffp-300 0x7.ffffffffffffcp-152 : inexact-ok += clog upward dbl-64 0x1p+0 0x8p-152 : 0x2p-300 0x8p-152 : inexact-ok += clog downward ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x1.fffffffffffffffep-300L 0x7.fffffffffffffff8p-152L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-300L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-300L 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-300L 0x7.fffffffffffffffffffffffffep-152L : inexact-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-300L 0x7.fffffffffffffffffffffffffep-152L : inexact-ok += clog upward ldbl-128ibm 0x1p+0L 0x8p-152L : 0x2p-300L 0x8p-152L : inexact-ok += clog downward flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog tonearest flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog towardzero flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog upward flt-32 0x1p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += clog downward dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog tonearest dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog towardzero dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog upward dbl-64 0x1p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0x1p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += clog downward dbl-64 0x1p+0 0x4p-1076 : 0x0p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0x1p+0 0x4p-1076 : 0x0p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0x1p+0 0x4p-1076 : 0x0p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0x1p+0 0x4p-1076 : 0x4p-1076 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x1p+0L 0x4p-1076L : 0x7.fffffffffffffff8p-2152L 0x3.fffffffffffffffcp-1076L : inexact-ok += clog tonearest ldbl-96-intel 0x1p+0L 0x4p-1076L : 0x8p-2152L 0x4p-1076L : inexact-ok += clog towardzero ldbl-96-intel 0x1p+0L 0x4p-1076L : 0x7.fffffffffffffff8p-2152L 0x3.fffffffffffffffcp-1076L : inexact-ok += clog upward ldbl-96-intel 0x1p+0L 0x4p-1076L : 0x8p-2152L 0x4p-1076L : inexact-ok += clog downward ldbl-96-m68k 0x1p+0L 0x4p-1076L : 0x7.fffffffffffffff8p-2152L 0x3.fffffffffffffffcp-1076L : inexact-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0x4p-1076L : 0x8p-2152L 0x4p-1076L : inexact-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0x4p-1076L : 0x7.fffffffffffffff8p-2152L 0x3.fffffffffffffffcp-1076L : inexact-ok += clog upward ldbl-96-m68k 0x1p+0L 0x4p-1076L : 0x8p-2152L 0x4p-1076L : inexact-ok += clog downward ldbl-128 0x1p+0L 0x4p-1076L : 0x7.fffffffffffffffffffffffffffcp-2152L 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += clog tonearest ldbl-128 0x1p+0L 0x4p-1076L : 0x8p-2152L 0x4p-1076L : inexact-ok += clog towardzero ldbl-128 0x1p+0L 0x4p-1076L : 0x7.fffffffffffffffffffffffffffcp-2152L 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += clog upward ldbl-128 0x1p+0L 0x4p-1076L : 0x8p-2152L 0x4p-1076L : inexact-ok += clog downward ldbl-128ibm 0x1p+0L 0x4p-1076L : 0x0p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0x1p+0L 0x4p-1076L : 0x0p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0x1p+0L 0x4p-1076L : 0x0p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0x1p+0L 0x4p-1076L : 0x4p-1076L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x0p+0L 0xf.ffffffffffffffep-15004L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-intel 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x0p+0L 0xf.fffffffffffffffp-15004L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-intel 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x0p+0L 0xf.ffffffffffffffep-15004L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-intel 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x8p-16448L 0xf.fffffffffffffffp-15004L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-m68k 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x0p+0L 0xf.ffffffffffffffep-15004L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-96-m68k 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x0p+0L 0xf.fffffffffffffffp-15004L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-96-m68k 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x0p+0L 0xf.ffffffffffffffep-15004L : inexact-ok underflow errno-erange-ok += clog upward ldbl-96-m68k 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x4p-16448L 0xf.fffffffffffffffp-15004L : inexact-ok underflow errno-erange-ok += clog downward ldbl-128 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x0p+0L 0xf.ffffffffffffffeffffffffffff8p-15004L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x0p+0L 0xf.fffffffffffffffp-15004L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x0p+0L 0xf.ffffffffffffffeffffffffffff8p-15004L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128 0x1p+0L 0xf.fffffffffffffffp-15004L : 0x4p-16496L 0xf.fffffffffffffffp-15004L : inexact-ok underflow errno-erange-ok += clog downward flt-32 0xf.fffffp-4f 0x8p-152f : -0x1.000002p-24f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog tonearest flt-32 0xf.fffffp-4f 0x8p-152f : -0x1p-24f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog towardzero flt-32 0xf.fffffp-4f 0x8p-152f : -0x1p-24f 0x8p-152f : inexact-ok underflow errno-erange-ok += clog upward flt-32 0xf.fffffp-4f 0x8p-152f : -0x1p-24f 0x1p-148f : inexact-ok underflow errno-erange-ok += clog downward dbl-64 0xf.fffffp-4 0x8p-152 : -0x1.0000008000006p-24 0x8.000008000008p-152 : inexact-ok += clog tonearest dbl-64 0xf.fffffp-4 0x8p-152 : -0x1.0000008000005p-24 0x8.000008000008p-152 : inexact-ok += clog towardzero dbl-64 0xf.fffffp-4 0x8p-152 : -0x1.0000008000005p-24 0x8.000008000008p-152 : inexact-ok += clog upward dbl-64 0xf.fffffp-4 0x8p-152 : -0x1.0000008000005p-24 0x8.0000080000088p-152 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005556p-24L 0x8.000008000008p-152L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005556p-24L 0x8.000008000008p-152L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005554p-24L 0x8.000008000008p-152L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005554p-24L 0x8.000008000008001p-152L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005556p-24L 0x8.000008000008p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005556p-24L 0x8.000008000008p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005554p-24L 0x8.000008000008p-152L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005554p-24L 0x8.000008000008001p-152L : inexact-ok += clog downward ldbl-128 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005555559555558889p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005555559555558888p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005555559555558888p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog upward ldbl-128 0xf.fffffp-4L 0x8p-152L : -0x1.0000008000005555559555558888p-24L 0x8.0000080000080000080000080008p-152L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp-4L 0x8p-152L : -0x1.00000080000055555595555589p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp-4L 0x8p-152L : -0x1.000000800000555555955555888p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp-4L 0x8p-152L : -0x1.000000800000555555955555888p-24L 0x8.000008000008000008000008p-152L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp-4L 0x8p-152L : -0x1.000000800000555555955555888p-24L 0x8.00000800000800000800000804p-152L : inexact-ok += clog downward flt-32 0xf.fffffp-4f 0x0p+0f : -0x1.000002p-24f 0x0p+0f : inexact-ok += clog tonearest flt-32 0xf.fffffp-4f 0x0p+0f : -0x1p-24f 0x0p+0f : inexact-ok += clog towardzero flt-32 0xf.fffffp-4f 0x0p+0f : -0x1p-24f 0x0p+0f : inexact-ok += clog upward flt-32 0xf.fffffp-4f 0x0p+0f : -0x1p-24f 0x0p+0f : inexact-ok += clog downward dbl-64 0xf.fffffp-4 0x0p+0 : -0x1.0000008000006p-24 0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.fffffp-4 0x0p+0 : -0x1.0000008000005p-24 0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.fffffp-4 0x0p+0 : -0x1.0000008000005p-24 0x0p+0 : inexact-ok += clog upward dbl-64 0xf.fffffp-4 0x0p+0 : -0x1.0000008000005p-24 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005556p-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005556p-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005554p-24L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005554p-24L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005556p-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005556p-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005554p-24L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005554p-24L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005555559555558889p-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005555559555558888p-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005555559555558888p-24L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffp-4L 0x0p+0L : -0x1.0000008000005555559555558888p-24L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp-4L 0x0p+0L : -0x1.00000080000055555595555589p-24L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffp-4L 0x0p+0L : -0x1.000000800000555555955555888p-24L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffp-4L 0x0p+0L : -0x1.000000800000555555955555888p-24L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffp-4L 0x0p+0L : -0x1.000000800000555555955555888p-24L 0x0p+0L : inexact-ok += clog downward dbl-64 0xf.fffffp-4 0x4p-1076 : -0x1.0000008000006p-24 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.fffffp-4 0x4p-1076 : -0x1.0000008000005p-24 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.fffffp-4 0x4p-1076 : -0x1.0000008000005p-24 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.fffffp-4 0x4p-1076 : -0x1.0000008000005p-24 0x8p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005556p-24L 0x4.000004000004p-1076L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005556p-24L 0x4.000004000004p-1076L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005554p-24L 0x4.000004000004p-1076L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005554p-24L 0x4.0000040000040008p-1076L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005556p-24L 0x4.000004000004p-1076L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005556p-24L 0x4.000004000004p-1076L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005554p-24L 0x4.000004000004p-1076L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005554p-24L 0x4.0000040000040008p-1076L : inexact-ok += clog downward ldbl-128 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005555559555558889p-24L 0x4.000004000004000004000004p-1076L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005555559555558888p-24L 0x4.000004000004000004000004p-1076L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005555559555558888p-24L 0x4.000004000004000004000004p-1076L : inexact-ok += clog upward ldbl-128 0xf.fffffp-4L 0x4p-1076L : -0x1.0000008000005555559555558888p-24L 0x4.0000040000040000040000040004p-1076L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffp-4L 0x4p-1076L : -0x1.00000080000055555595555589p-24L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.fffffp-4L 0x4p-1076L : -0x1.000000800000555555955555888p-24L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.fffffp-4L 0x4p-1076L : -0x1.000000800000555555955555888p-24L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.fffffp-4L 0x4p-1076L : -0x1.000000800000555555955555888p-24L 0x8p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005556p-24L 0x1.000001000000fffep-15000L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005556p-24L 0x1.000001000001p-15000L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005554p-24L 0x1.000001000000fffep-15000L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005554p-24L 0x1.000001000001p-15000L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005556p-24L 0x1.000001000000fffep-15000L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005556p-24L 0x1.000001000001p-15000L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005554p-24L 0x1.000001000000fffep-15000L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005554p-24L 0x1.000001000001p-15000L : inexact-ok += clog downward ldbl-128 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005555559555558889p-24L 0x1.000001000000ffff00ffff00ffffp-15000L : inexact-ok += clog tonearest ldbl-128 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005555559555558888p-24L 0x1.000001000000ffff00ffff00ffffp-15000L : inexact-ok += clog towardzero ldbl-128 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005555559555558888p-24L 0x1.000001000000ffff00ffff00ffffp-15000L : inexact-ok += clog upward ldbl-128 0xf.fffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000008000005555559555558888p-24L 0x1.000001000000ffff00ffff01p-15000L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p-4 0x8p-152 : -0x8.0000000000008p-56 0x8p-152 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p-4 0x8p-152 : -0x8p-56 0x8.0000000000008p-152 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p-4 0x8p-152 : -0x8p-56 0x8p-152 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p-4 0x8p-152 : -0x8p-56 0x8.0000000000008p-152 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.000000000000201p-56L 0x8.0000000000004p-152L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.0000000000004p-152L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.0000000000004p-152L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.000000000000401p-152L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.000000000000201p-56L 0x8.0000000000004p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.0000000000004p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.0000000000004p-152L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.000000000000401p-152L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.00000000000020000000000000bp-56L 0x8.00000000000040000000000002p-152L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.00000000000020000000000000a8p-56L 0x8.00000000000040000000000002p-152L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.00000000000020000000000000a8p-56L 0x8.00000000000040000000000002p-152L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.00000000000020000000000000a8p-56L 0x8.0000000000004000000000000208p-152L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.00000000000020000000000004p-56L 0x8.0000000000004p-152L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.00000000000040000000000004p-152L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.0000000000004p-152L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x8p-152L : -0x8.0000000000002p-56L 0x8.00000000000040000000000004p-152L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p-4 0x0p+0 : -0x8.0000000000008p-56 0x0p+0 : inexact-ok += clog tonearest dbl-64 0xf.ffffffffffff8p-4 0x0p+0 : -0x8p-56 0x0p+0 : inexact-ok += clog towardzero dbl-64 0xf.ffffffffffff8p-4 0x0p+0 : -0x8p-56 0x0p+0 : inexact-ok += clog upward dbl-64 0xf.ffffffffffff8p-4 0x0p+0 : -0x8p-56 0x0p+0 : inexact-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.000000000000201p-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.000000000000201p-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.00000000000020000000000000bp-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.00000000000020000000000000a8p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.00000000000020000000000000a8p-56L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.00000000000020000000000000a8p-56L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.00000000000020000000000004p-56L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x0p+0L : -0x8.0000000000002p-56L 0x0p+0L : inexact-ok += clog downward dbl-64 0xf.ffffffffffff8p-4 0x4p-1076 : -0x8.0000000000008p-56 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog tonearest dbl-64 0xf.ffffffffffff8p-4 0x4p-1076 : -0x8p-56 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog towardzero dbl-64 0xf.ffffffffffff8p-4 0x4p-1076 : -0x8p-56 0x4p-1076 : inexact-ok underflow errno-erange-ok += clog upward dbl-64 0xf.ffffffffffff8p-4 0x4p-1076 : -0x8p-56 0x8p-1076 : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.000000000000201p-56L 0x4.0000000000002p-1076L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.0000000000002p-56L 0x4.0000000000002p-1076L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.0000000000002p-56L 0x4.0000000000002p-1076L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.0000000000002p-56L 0x4.0000000000002008p-1076L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.000000000000201p-56L 0x4.0000000000002p-1076L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.0000000000002p-56L 0x4.0000000000002p-1076L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.0000000000002p-56L 0x4.0000000000002p-1076L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.0000000000002p-56L 0x4.0000000000002008p-1076L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.00000000000020000000000000bp-56L 0x4.00000000000020000000000001p-1076L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.00000000000020000000000000a8p-56L 0x4.00000000000020000000000001p-1076L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.00000000000020000000000000a8p-56L 0x4.00000000000020000000000001p-1076L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.00000000000020000000000000a8p-56L 0x4.0000000000002000000000000104p-1076L : inexact-ok += clog downward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.00000000000020000000000004p-56L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.0000000000002p-56L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.0000000000002p-56L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.ffffffffffff8p-4L 0x4p-1076L : -0x8.0000000000002p-56L 0x8p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.000000000000201p-56L 0x1.00000000000007fep-15000L : inexact-ok += clog tonearest ldbl-96-intel 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.0000000000002p-56L 0x1.00000000000008p-15000L : inexact-ok += clog towardzero ldbl-96-intel 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.0000000000002p-56L 0x1.00000000000007fep-15000L : inexact-ok += clog upward ldbl-96-intel 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.0000000000002p-56L 0x1.00000000000008p-15000L : inexact-ok += clog downward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.000000000000201p-56L 0x1.00000000000007fep-15000L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.0000000000002p-56L 0x1.00000000000008p-15000L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.0000000000002p-56L 0x1.00000000000007fep-15000L : inexact-ok += clog upward ldbl-96-m68k 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.0000000000002p-56L 0x1.00000000000008p-15000L : inexact-ok += clog downward ldbl-128 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.00000000000020000000000000bp-56L 0x1.00000000000007ff00000000003fp-15000L : inexact-ok += clog tonearest ldbl-128 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.00000000000020000000000000a8p-56L 0x1.00000000000007ff00000000004p-15000L : inexact-ok += clog towardzero ldbl-128 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.00000000000020000000000000a8p-56L 0x1.00000000000007ff00000000003fp-15000L : inexact-ok += clog upward ldbl-128 0xf.ffffffffffff8p-4L 0xf.fffffffffffffffp-15004L : -0x8.00000000000020000000000000a8p-56L 0x1.00000000000007ff00000000004p-15000L : inexact-ok += clog downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1.0000000000000002p-64L 0x8p-152L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1p-64L 0x8.000000000000001p-152L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1p-64L 0x8p-152L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1p-64L 0x8.000000000000001p-152L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1.0000000000000002p-64L 0x8p-152L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1p-64L 0x8.000000000000001p-152L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1p-64L 0x8p-152L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1p-64L 0x8.000000000000001p-152L : inexact-ok += clog downward ldbl-128 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1.00000000000000008p-64L 0x8.0000000000000008p-152L : inexact-ok += clog tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1.00000000000000008p-64L 0x8.0000000000000008p-152L : inexact-ok += clog towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1.00000000000000007fffffffffffp-64L 0x8.0000000000000008p-152L : inexact-ok += clog upward ldbl-128 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1.00000000000000007fffffffffffp-64L 0x8.0000000000000008000000000008p-152L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1.00000000000000008p-64L 0x8.0000000000000008p-152L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1.00000000000000008p-64L 0x8.0000000000000008p-152L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1.00000000000000007fffffffff8p-64L 0x8.0000000000000008p-152L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x8p-152L : -0x1.00000000000000007fffffffff8p-64L 0x8.00000000000000080000000004p-152L : inexact-ok += clog downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1.0000000000000002p-64L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1p-64L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1p-64L 0x0p+0L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1p-64L 0x0p+0L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1.0000000000000002p-64L 0x0p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1p-64L 0x0p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1p-64L 0x0p+0L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1p-64L 0x0p+0L : inexact-ok += clog downward ldbl-128 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1.00000000000000008p-64L 0x0p+0L : inexact-ok += clog tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1.00000000000000008p-64L 0x0p+0L : inexact-ok += clog towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1.00000000000000007fffffffffffp-64L 0x0p+0L : inexact-ok += clog upward ldbl-128 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1.00000000000000007fffffffffffp-64L 0x0p+0L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1.00000000000000008p-64L 0x0p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1.00000000000000008p-64L 0x0p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1.00000000000000007fffffffff8p-64L 0x0p+0L : inexact-ok += clog upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x0p+0L : -0x1.00000000000000007fffffffff8p-64L 0x0p+0L : inexact-ok += clog downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1.0000000000000002p-64L 0x4p-1076L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1p-64L 0x4.0000000000000008p-1076L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1p-64L 0x4p-1076L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1p-64L 0x4.0000000000000008p-1076L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1.0000000000000002p-64L 0x4p-1076L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1p-64L 0x4.0000000000000008p-1076L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1p-64L 0x4p-1076L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1p-64L 0x4.0000000000000008p-1076L : inexact-ok += clog downward ldbl-128 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1.00000000000000008p-64L 0x4.0000000000000004p-1076L : inexact-ok += clog tonearest ldbl-128 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1.00000000000000008p-64L 0x4.0000000000000004p-1076L : inexact-ok += clog towardzero ldbl-128 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1.00000000000000007fffffffffffp-64L 0x4.0000000000000004p-1076L : inexact-ok += clog upward ldbl-128 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1.00000000000000007fffffffffffp-64L 0x4.0000000000000004000000000004p-1076L : inexact-ok += clog downward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1.00000000000000008p-64L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog tonearest ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1.00000000000000008p-64L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog towardzero ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1.00000000000000007fffffffff8p-64L 0x4p-1076L : inexact-ok underflow errno-erange-ok += clog upward ldbl-128ibm 0xf.fffffffffffffffp-4L 0x4p-1076L : -0x1.00000000000000007fffffffff8p-64L 0x8p-1076L : inexact-ok underflow errno-erange-ok += clog downward ldbl-96-intel 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000000000000002p-64L 0xf.fffffffffffffffp-15004L : inexact-ok += clog tonearest ldbl-96-intel 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1p-64L 0x1p-15000L : inexact-ok += clog towardzero ldbl-96-intel 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1p-64L 0xf.fffffffffffffffp-15004L : inexact-ok += clog upward ldbl-96-intel 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1p-64L 0x1p-15000L : inexact-ok += clog downward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.0000000000000002p-64L 0xf.fffffffffffffffp-15004L : inexact-ok += clog tonearest ldbl-96-m68k 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1p-64L 0x1p-15000L : inexact-ok += clog towardzero ldbl-96-m68k 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1p-64L 0xf.fffffffffffffffp-15004L : inexact-ok += clog upward ldbl-96-m68k 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1p-64L 0x1p-15000L : inexact-ok += clog downward ldbl-128 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.00000000000000008p-64L 0xf.fffffffffffffffffffffffffff8p-15004L : inexact-ok += clog tonearest ldbl-128 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.00000000000000008p-64L 0x1p-15000L : inexact-ok += clog towardzero ldbl-128 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.00000000000000007fffffffffffp-64L 0xf.fffffffffffffffffffffffffff8p-15004L : inexact-ok += clog upward ldbl-128 0xf.fffffffffffffffp-4L 0xf.fffffffffffffffp-15004L : -0x1.00000000000000007fffffffffffp-64L 0x1p-15000L : inexact-ok +clog 0x1a6p-10 0x3a5p-10 += clog downward flt-32 0x6.98p-4f 0xe.94p-4f : -0x1.800026p-20f 0x1.256212p+0f : inexact-ok += clog tonearest flt-32 0x6.98p-4f 0xe.94p-4f : -0x1.800024p-20f 0x1.256212p+0f : inexact-ok += clog towardzero flt-32 0x6.98p-4f 0xe.94p-4f : -0x1.800024p-20f 0x1.256212p+0f : inexact-ok += clog upward flt-32 0x6.98p-4f 0xe.94p-4f : -0x1.800024p-20f 0x1.256214p+0f : inexact-ok += clog downward dbl-64 0x6.98p-4 0xe.94p-4 : -0x1.8000240004801p-20 0x1.256212904f6b8p+0 : inexact-ok += clog tonearest dbl-64 0x6.98p-4 0xe.94p-4 : -0x1.80002400048p-20 0x1.256212904f6b8p+0 : inexact-ok += clog towardzero dbl-64 0x6.98p-4 0xe.94p-4 : -0x1.80002400048p-20 0x1.256212904f6b8p+0 : inexact-ok += clog upward dbl-64 0x6.98p-4 0xe.94p-4 : -0x1.80002400048p-20 0x1.256212904f6b9p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a4p-20L 0x1.256212904f6b86e4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a2p-20L 0x1.256212904f6b86e6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a2p-20L 0x1.256212904f6b86e4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a2p-20L 0x1.256212904f6b86e6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a4p-20L 0x1.256212904f6b86e4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a2p-20L 0x1.256212904f6b86e6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a2p-20L 0x1.256212904f6b86e4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a2p-20L 0x1.256212904f6b86e6p+0L : inexact-ok += clog downward ldbl-128 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a200184cd098cep-20L 0x1.256212904f6b86e5e152777ca8bfp+0L : inexact-ok += clog tonearest ldbl-128 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a200184cd098cdp-20L 0x1.256212904f6b86e5e152777ca8bfp+0L : inexact-ok += clog towardzero ldbl-128 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a200184cd098cdp-20L 0x1.256212904f6b86e5e152777ca8bfp+0L : inexact-ok += clog upward ldbl-128 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a200184cd098cdp-20L 0x1.256212904f6b86e5e152777ca8cp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a200184cd099p-20L 0x1.256212904f6b86e5e152777ca88p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a200184cd099p-20L 0x1.256212904f6b86e5e152777ca88p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a200184cd0988p-20L 0x1.256212904f6b86e5e152777ca88p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.98p-4L 0xe.94p-4L : -0x1.80002400048000a200184cd0988p-20L 0x1.256212904f6b86e5e152777ca9p+0L : inexact-ok +clog 0xf2p-10 0x3e3p-10 += clog downward flt-32 0x3.c8p-4f 0xf.8cp-4f : 0x6.7ffd58p-20f 0x1.550be2p+0f : inexact-ok += clog tonearest flt-32 0x3.c8p-4f 0xf.8cp-4f : 0x6.7ffd6p-20f 0x1.550be4p+0f : inexact-ok += clog towardzero flt-32 0x3.c8p-4f 0xf.8cp-4f : 0x6.7ffd58p-20f 0x1.550be2p+0f : inexact-ok += clog upward flt-32 0x3.c8p-4f 0xf.8cp-4f : 0x6.7ffd6p-20f 0x1.550be4p+0f : inexact-ok += clog downward dbl-64 0x3.c8p-4 0xf.8cp-4 : 0x6.7ffd5c016e29cp-20 0x1.550be362b4407p+0 : inexact-ok += clog tonearest dbl-64 0x3.c8p-4 0xf.8cp-4 : 0x6.7ffd5c016e29cp-20 0x1.550be362b4407p+0 : inexact-ok += clog towardzero dbl-64 0x3.c8p-4 0xf.8cp-4 : 0x6.7ffd5c016e29cp-20 0x1.550be362b4407p+0 : inexact-ok += clog upward dbl-64 0x3.c8p-4 0xf.8cp-4 : 0x6.7ffd5c016e2ap-20 0x1.550be362b4408p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb88p-20L 0x1.550be362b44073f4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb88p-20L 0x1.550be362b44073f6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb88p-20L 0x1.550be362b44073f4p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb9p-20L 0x1.550be362b44073f6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb88p-20L 0x1.550be362b44073f4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb88p-20L 0x1.550be362b44073f6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb88p-20L 0x1.550be362b44073f4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb9p-20L 0x1.550be362b44073f6p+0L : inexact-ok += clog downward ldbl-128 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb893bb395441a84p-20L 0x1.550be362b44073f5eb99637519b5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb893bb395441a84p-20L 0x1.550be362b44073f5eb99637519b5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb893bb395441a84p-20L 0x1.550be362b44073f5eb99637519b5p+0L : inexact-ok += clog upward ldbl-128 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb893bb395441a88p-20L 0x1.550be362b44073f5eb99637519b6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb893bb395441ap-20L 0x1.550be362b44073f5eb996375198p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb893bb395441ap-20L 0x1.550be362b44073f5eb996375198p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb893bb395441ap-20L 0x1.550be362b44073f5eb996375198p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.c8p-4L 0xf.8cp-4L : 0x6.7ffd5c016e29cb893bb395441cp-20L 0x1.550be362b44073f5eb9963751ap+0L : inexact-ok +clog 0x4d4ep-15 0x6605p-15 += clog downward flt-32 0x9.a9cp-4f 0xc.c0ap-4f : -0x4.600008p-28f 0xe.c1f9ep-4f : inexact-ok += clog tonearest flt-32 0x9.a9cp-4f 0xc.c0ap-4f : -0x4.6p-28f 0xe.c1f9ep-4f : inexact-ok += clog towardzero flt-32 0x9.a9cp-4f 0xc.c0ap-4f : -0x4.6p-28f 0xe.c1f9ep-4f : inexact-ok += clog upward flt-32 0x9.a9cp-4f 0xc.c0ap-4f : -0x4.6p-28f 0xe.c1f9fp-4f : inexact-ok += clog downward dbl-64 0x9.a9cp-4 0xc.c0ap-4 : -0x4.6000013240008p-28 0xe.c1f9e3aee0fe8p-4 : inexact-ok += clog tonearest dbl-64 0x9.a9cp-4 0xc.c0ap-4 : -0x4.6000013240008p-28 0xe.c1f9e3aee0ffp-4 : inexact-ok += clog towardzero dbl-64 0x9.a9cp-4 0xc.c0ap-4 : -0x4.6000013240004p-28 0xe.c1f9e3aee0fe8p-4 : inexact-ok += clog upward dbl-64 0x9.a9cp-4 0xc.c0ap-4 : -0x4.6000013240004p-28 0xe.c1f9e3aee0ffp-4 : inexact-ok += clog downward ldbl-96-intel 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa8p-28L 0xe.c1f9e3aee0fee11p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa8p-28L 0xe.c1f9e3aee0fee11p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fap-28L 0xe.c1f9e3aee0fee11p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fap-28L 0xe.c1f9e3aee0fee12p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa8p-28L 0xe.c1f9e3aee0fee11p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa8p-28L 0xe.c1f9e3aee0fee11p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fap-28L 0xe.c1f9e3aee0fee11p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fap-28L 0xe.c1f9e3aee0fee12p-4L : inexact-ok += clog downward ldbl-128 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa7558320f7696p-28L 0xe.c1f9e3aee0fee1121543e3bf644p-4L : inexact-ok += clog tonearest ldbl-128 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa7558320f7695cp-28L 0xe.c1f9e3aee0fee1121543e3bf6448p-4L : inexact-ok += clog towardzero ldbl-128 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa7558320f7695cp-28L 0xe.c1f9e3aee0fee1121543e3bf644p-4L : inexact-ok += clog upward ldbl-128 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa7558320f7695cp-28L 0xe.c1f9e3aee0fee1121543e3bf6448p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa7558320f76ap-28L 0xe.c1f9e3aee0fee1121543e3bf64p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa7558320f76ap-28L 0xe.c1f9e3aee0fee1121543e3bf64p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa7558320f768p-28L 0xe.c1f9e3aee0fee1121543e3bf64p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.a9cp-4L 0xc.c0ap-4L : -0x4.6000013240006fa7558320f768p-28L 0xe.c1f9e3aee0fee1121543e3bf68p-4L : inexact-ok +clog 0x2818p-15 0x798fp-15 += clog downward flt-32 0x5.03p-4f 0xf.31ep-4f : 0x4.1ffff8p-28f 0x1.409046p+0f : inexact-ok += clog tonearest flt-32 0x5.03p-4f 0xf.31ep-4f : 0x4.2p-28f 0x1.409046p+0f : inexact-ok += clog towardzero flt-32 0x5.03p-4f 0xf.31ep-4f : 0x4.1ffff8p-28f 0x1.409046p+0f : inexact-ok += clog upward flt-32 0x5.03p-4f 0xf.31ep-4f : 0x4.2p-28f 0x1.409048p+0f : inexact-ok += clog downward dbl-64 0x5.03p-4 0xf.31ep-4 : 0x4.1ffffeefc0004p-28 0x1.409046ec064c6p+0 : inexact-ok += clog tonearest dbl-64 0x5.03p-4 0xf.31ep-4 : 0x4.1ffffeefc0004p-28 0x1.409046ec064c7p+0 : inexact-ok += clog towardzero dbl-64 0x5.03p-4 0xf.31ep-4 : 0x4.1ffffeefc0004p-28 0x1.409046ec064c6p+0 : inexact-ok += clog upward dbl-64 0x5.03p-4 0xf.31ep-4 : 0x4.1ffffeefc0008p-28 0x1.409046ec064c7p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d9p-28L 0x1.409046ec064c68aap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d98p-28L 0x1.409046ec064c68acp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d9p-28L 0x1.409046ec064c68aap+0L : inexact-ok += clog upward ldbl-96-intel 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d98p-28L 0x1.409046ec064c68acp+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d9p-28L 0x1.409046ec064c68aap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d98p-28L 0x1.409046ec064c68acp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d9p-28L 0x1.409046ec064c68aap+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d98p-28L 0x1.409046ec064c68acp+0L : inexact-ok += clog downward ldbl-128 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d95ffdbcefe0eecp-28L 0x1.409046ec064c68ab95858792847fp+0L : inexact-ok += clog tonearest ldbl-128 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d95ffdbcefe0eecp-28L 0x1.409046ec064c68ab95858792848p+0L : inexact-ok += clog towardzero ldbl-128 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d95ffdbcefe0eecp-28L 0x1.409046ec064c68ab95858792847fp+0L : inexact-ok += clog upward ldbl-128 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d95ffdbcefe0efp-28L 0x1.409046ec064c68ab95858792848p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d95ffdbcefe0ep-28L 0x1.409046ec064c68ab9585879284p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d95ffdbcefe0ep-28L 0x1.409046ec064c68ab95858792848p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d95ffdbcefe0ep-28L 0x1.409046ec064c68ab9585879284p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.03p-4L 0xf.31ep-4L : 0x4.1ffffeefc0005d95ffdbcefe1p-28L 0x1.409046ec064c68ab95858792848p+0L : inexact-ok +clog 0x9b57bp-20 0xcb7b4p-20 += clog downward flt-32 0x9.b57bp-4f 0xc.b7b4p-4f : -0x2.b80004p-36f 0xe.b33dp-4f : inexact-ok += clog tonearest flt-32 0x9.b57bp-4f 0xc.b7b4p-4f : -0x2.b8p-36f 0xe.b33dp-4f : inexact-ok += clog towardzero flt-32 0x9.b57bp-4f 0xc.b7b4p-4f : -0x2.b8p-36f 0xe.b33dp-4f : inexact-ok += clog upward flt-32 0x9.b57bp-4f 0xc.b7b4p-4f : -0x2.b8p-36f 0xe.b33d1p-4f : inexact-ok += clog downward dbl-64 0x9.b57bp-4 0xc.b7b4p-4 : -0x2.b800000076442p-36 0xe.b33d007751e5p-4 : inexact-ok += clog tonearest dbl-64 0x9.b57bp-4 0xc.b7b4p-4 : -0x2.b80000007644p-36 0xe.b33d007751e5p-4 : inexact-ok += clog towardzero dbl-64 0x9.b57bp-4 0xc.b7b4p-4 : -0x2.b80000007644p-36 0xe.b33d007751e5p-4 : inexact-ok += clog upward dbl-64 0x9.b57bp-4 0xc.b7b4p-4 : -0x2.b80000007644p-36 0xe.b33d007751e58p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b800000076440004p-36L 0xe.b33d007751e5257p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b80000007644p-36L 0xe.b33d007751e5258p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b80000007644p-36L 0xe.b33d007751e5257p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b80000007644p-36L 0xe.b33d007751e5258p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b800000076440004p-36L 0xe.b33d007751e5257p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b80000007644p-36L 0xe.b33d007751e5258p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b80000007644p-36L 0xe.b33d007751e5257p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b80000007644p-36L 0xe.b33d007751e5258p-4L : inexact-ok += clog downward ldbl-128 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b8000000764400001acb680006d4p-36L 0xe.b33d007751e5257d8fda6a0478b8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b8000000764400001acb680006d4p-36L 0xe.b33d007751e5257d8fda6a0478cp-4L : inexact-ok += clog towardzero ldbl-128 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b8000000764400001acb680006d2p-36L 0xe.b33d007751e5257d8fda6a0478b8p-4L : inexact-ok += clog upward ldbl-128 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b8000000764400001acb680006d2p-36L 0xe.b33d007751e5257d8fda6a0478cp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b8000000764400001acb680007p-36L 0xe.b33d007751e5257d8fda6a0478p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b8000000764400001acb680007p-36L 0xe.b33d007751e5257d8fda6a0478p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b8000000764400001acb680006p-36L 0xe.b33d007751e5257d8fda6a0478p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b57bp-4L 0xc.b7b4p-4L : -0x2.b8000000764400001acb680006p-36L 0xe.b33d007751e5257d8fda6a047cp-4L : inexact-ok +clog 0x2731p-20 0xfffd0p-20 += clog downward flt-32 0x2.731p-8f 0xf.ffdp-4f : 0x3.07fffcp-36f 0x1.8faca2p+0f : inexact-ok += clog tonearest flt-32 0x2.731p-8f 0xf.ffdp-4f : 0x3.08p-36f 0x1.8faca2p+0f : inexact-ok += clog towardzero flt-32 0x2.731p-8f 0xf.ffdp-4f : 0x3.07fffcp-36f 0x1.8faca2p+0f : inexact-ok += clog upward flt-32 0x2.731p-8f 0xf.ffdp-4f : 0x3.08p-36f 0x1.8faca4p+0f : inexact-ok += clog downward dbl-64 0x2.731p-8 0xf.ffdp-4 : 0x3.07ffffff6cfcp-36 0x1.8faca2d130303p+0 : inexact-ok += clog tonearest dbl-64 0x2.731p-8 0xf.ffdp-4 : 0x3.07ffffff6cfcp-36 0x1.8faca2d130304p+0 : inexact-ok += clog towardzero dbl-64 0x2.731p-8 0xf.ffdp-4 : 0x3.07ffffff6cfcp-36 0x1.8faca2d130303p+0 : inexact-ok += clog upward dbl-64 0x2.731p-8 0xf.ffdp-4 : 0x3.07ffffff6cfc2p-36 0x1.8faca2d130304p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfcp-36L 0x1.8faca2d130303a9cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfcp-36L 0x1.8faca2d130303a9cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfcp-36L 0x1.8faca2d130303a9cp+0L : inexact-ok += clog upward ldbl-96-intel 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfc0004p-36L 0x1.8faca2d130303a9ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfcp-36L 0x1.8faca2d130303a9cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfcp-36L 0x1.8faca2d130303a9cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfcp-36L 0x1.8faca2d130303a9cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfc0004p-36L 0x1.8faca2d130303a9ep+0L : inexact-ok += clog downward ldbl-128 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfc0000252302aaa01cp-36L 0x1.8faca2d130303a9c586505249833p+0L : inexact-ok += clog tonearest ldbl-128 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfc0000252302aaa01cp-36L 0x1.8faca2d130303a9c586505249833p+0L : inexact-ok += clog towardzero ldbl-128 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfc0000252302aaa01cp-36L 0x1.8faca2d130303a9c586505249833p+0L : inexact-ok += clog upward ldbl-128 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfc0000252302aaa01ep-36L 0x1.8faca2d130303a9c586505249834p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfc0000252302aaap-36L 0x1.8faca2d130303a9c5865052498p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfc0000252302aaap-36L 0x1.8faca2d130303a9c5865052498p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfc0000252302aaap-36L 0x1.8faca2d130303a9c5865052498p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.731p-8L 0xf.ffdp-4L : 0x3.07ffffff6cfc0000252302aaa1p-36L 0x1.8faca2d130303a9c58650524988p+0L : inexact-ok +clog 0x2ede88p-23 0x771c3fp-23 += clog downward flt-32 0x5.dbd1p-4f 0xe.e387ep-4f : -0x7.e00008p-44f 0x1.322732p+0f : inexact-ok += clog tonearest flt-32 0x5.dbd1p-4f 0xe.e387ep-4f : -0x7.ep-44f 0x1.322734p+0f : inexact-ok += clog towardzero flt-32 0x5.dbd1p-4f 0xe.e387ep-4f : -0x7.ep-44f 0x1.322732p+0f : inexact-ok += clog upward flt-32 0x5.dbd1p-4f 0xe.e387ep-4f : -0x7.ep-44f 0x1.322734p+0f : inexact-ok += clog downward dbl-64 0x5.dbd1p-4 0xe.e387ep-4 : -0x7.e000000003e08p-44 0x1.322733e4411acp+0 : inexact-ok += clog tonearest dbl-64 0x5.dbd1p-4 0xe.e387ep-4 : -0x7.e000000003e04p-44 0x1.322733e4411acp+0 : inexact-ok += clog towardzero dbl-64 0x5.dbd1p-4 0xe.e387ep-4 : -0x7.e000000003e04p-44 0x1.322733e4411acp+0 : inexact-ok += clog upward dbl-64 0x5.dbd1p-4 0xe.e387ep-4 : -0x7.e000000003e04p-44 0x1.322733e4411adp+0 : inexact-ok += clog downward ldbl-96-intel 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e04008p-44L 0x1.322733e4411ac6ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e04p-44L 0x1.322733e4411ac6ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e04p-44L 0x1.322733e4411ac6ap+0L : inexact-ok += clog upward ldbl-96-intel 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e04p-44L 0x1.322733e4411ac6a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e04008p-44L 0x1.322733e4411ac6ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e04p-44L 0x1.322733e4411ac6ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e04p-44L 0x1.322733e4411ac6ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e04p-44L 0x1.322733e4411ac6a2p+0L : inexact-ok += clog downward ldbl-128 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e0400000028b2ap-44L 0x1.322733e4411ac6a0936b42378072p+0L : inexact-ok += clog tonearest ldbl-128 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e0400000028b2ap-44L 0x1.322733e4411ac6a0936b42378073p+0L : inexact-ok += clog towardzero ldbl-128 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e0400000028b29fffcp-44L 0x1.322733e4411ac6a0936b42378072p+0L : inexact-ok += clog upward ldbl-128 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e0400000028b29fffcp-44L 0x1.322733e4411ac6a0936b42378073p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e0400000028b2ap-44L 0x1.322733e4411ac6a0936b42378p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e0400000028b2ap-44L 0x1.322733e4411ac6a0936b4237808p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e0400000028b29fep-44L 0x1.322733e4411ac6a0936b42378p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.dbd1p-4L 0xe.e387ep-4L : -0x7.e000000003e0400000028b29fep-44L 0x1.322733e4411ac6a0936b4237808p+0L : inexact-ok +clog 0x11682p-23 0x7ffed1p-23 += clog downward flt-32 0x2.2d04p-8f 0xf.ffda2p-4f : 0x1.49fffep-40f 0x1.8ff2aep+0f : inexact-ok += clog tonearest flt-32 0x2.2d04p-8f 0xf.ffda2p-4f : 0x1.4ap-40f 0x1.8ff2bp+0f : inexact-ok += clog towardzero flt-32 0x2.2d04p-8f 0xf.ffda2p-4f : 0x1.49fffep-40f 0x1.8ff2aep+0f : inexact-ok += clog upward flt-32 0x2.2d04p-8f 0xf.ffda2p-4f : 0x1.4ap-40f 0x1.8ff2bp+0f : inexact-ok += clog downward dbl-64 0x2.2d04p-8 0xf.ffda2p-4 : 0x1.49fffffffe569p-40 0x1.8ff2af8cbc0b3p+0 : inexact-ok += clog tonearest dbl-64 0x2.2d04p-8 0xf.ffda2p-4 : 0x1.49fffffffe56ap-40 0x1.8ff2af8cbc0b3p+0 : inexact-ok += clog towardzero dbl-64 0x2.2d04p-8 0xf.ffda2p-4 : 0x1.49fffffffe569p-40 0x1.8ff2af8cbc0b3p+0 : inexact-ok += clog upward dbl-64 0x2.2d04p-8 0xf.ffda2p-4 : 0x1.49fffffffe56ap-40 0x1.8ff2af8cbc0b4p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569cp-40L 0x1.8ff2af8cbc0b35c6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569cp-40L 0x1.8ff2af8cbc0b35c6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569cp-40L 0x1.8ff2af8cbc0b35c6p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569c02p-40L 0x1.8ff2af8cbc0b35c8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569cp-40L 0x1.8ff2af8cbc0b35c6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569cp-40L 0x1.8ff2af8cbc0b35c6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569cp-40L 0x1.8ff2af8cbc0b35c6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569c02p-40L 0x1.8ff2af8cbc0b35c8p+0L : inexact-ok += clog downward ldbl-128 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569c000002db23dfffp-40L 0x1.8ff2af8cbc0b35c6bd73d370dd55p+0L : inexact-ok += clog tonearest ldbl-128 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569c000002db23ep-40L 0x1.8ff2af8cbc0b35c6bd73d370dd55p+0L : inexact-ok += clog towardzero ldbl-128 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569c000002db23dfffp-40L 0x1.8ff2af8cbc0b35c6bd73d370dd55p+0L : inexact-ok += clog upward ldbl-128 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569c000002db23ep-40L 0x1.8ff2af8cbc0b35c6bd73d370dd56p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569c000002db23df8p-40L 0x1.8ff2af8cbc0b35c6bd73d370ddp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569c000002db23ep-40L 0x1.8ff2af8cbc0b35c6bd73d370dd8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569c000002db23df8p-40L 0x1.8ff2af8cbc0b35c6bd73d370ddp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.2d04p-8L 0xf.ffda2p-4L : 0x1.49fffffffe569c000002db23ep-40L 0x1.8ff2af8cbc0b35c6bd73d370dd8p+0L : inexact-ok +clog 0xa1f2c1p-24 0xc643aep-24 += clog downward flt-32 0xa.1f2c1p-4f 0xc.643aep-4f : -0x1.d80002p-44f 0xe.2c8d9p-4f : inexact-ok += clog tonearest flt-32 0xa.1f2c1p-4f 0xc.643aep-4f : -0x1.d8p-44f 0xe.2c8d9p-4f : inexact-ok += clog towardzero flt-32 0xa.1f2c1p-4f 0xc.643aep-4f : -0x1.d8p-44f 0xe.2c8d9p-4f : inexact-ok += clog upward flt-32 0xa.1f2c1p-4f 0xc.643aep-4f : -0x1.d8p-44f 0xe.2c8dap-4f : inexact-ok += clog downward dbl-64 0xa.1f2c1p-4 0xc.643aep-4 : -0x1.d800000000367p-44 0xe.2c8d91cfd3ep-4 : inexact-ok += clog tonearest dbl-64 0xa.1f2c1p-4 0xc.643aep-4 : -0x1.d800000000366p-44 0xe.2c8d91cfd3ep-4 : inexact-ok += clog towardzero dbl-64 0xa.1f2c1p-4 0xc.643aep-4 : -0x1.d800000000366p-44 0xe.2c8d91cfd3ep-4 : inexact-ok += clog upward dbl-64 0xa.1f2c1p-4 0xc.643aep-4 : -0x1.d800000000366p-44 0xe.2c8d91cfd3e08p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d800000000366402p-44L 0xe.2c8d91cfd3e02cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664p-44L 0xe.2c8d91cfd3e02cp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664p-44L 0xe.2c8d91cfd3e02cp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664p-44L 0xe.2c8d91cfd3e02c1p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d800000000366402p-44L 0xe.2c8d91cfd3e02cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664p-44L 0xe.2c8d91cfd3e02cp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664p-44L 0xe.2c8d91cfd3e02cp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664p-44L 0xe.2c8d91cfd3e02c1p-4L : inexact-ok += clog downward ldbl-128 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664000000085b5d56p-44L 0xe.2c8d91cfd3e02c05e9b5965e597p-4L : inexact-ok += clog tonearest ldbl-128 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664000000085b5d55p-44L 0xe.2c8d91cfd3e02c05e9b5965e597p-4L : inexact-ok += clog towardzero ldbl-128 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664000000085b5d55p-44L 0xe.2c8d91cfd3e02c05e9b5965e597p-4L : inexact-ok += clog upward ldbl-128 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664000000085b5d55p-44L 0xe.2c8d91cfd3e02c05e9b5965e5978p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664000000085b5d8p-44L 0xe.2c8d91cfd3e02c05e9b5965e58p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664000000085b5d8p-44L 0xe.2c8d91cfd3e02c05e9b5965e58p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664000000085b5dp-44L 0xe.2c8d91cfd3e02c05e9b5965e58p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.1f2c1p-4L 0xc.643aep-4L : -0x1.d8000000003664000000085b5dp-44L 0xe.2c8d91cfd3e02c05e9b5965e5cp-4L : inexact-ok +clog 0x659feap-24 0xeaf6f9p-24 += clog downward flt-32 0x6.59feap-4f 0xe.af6f9p-4f : 0xa.7ffffp-48f 0x1.299ef2p+0f : inexact-ok += clog tonearest flt-32 0x6.59feap-4f 0xe.af6f9p-4f : 0xa.8p-48f 0x1.299ef4p+0f : inexact-ok += clog towardzero flt-32 0x6.59feap-4f 0xe.af6f9p-4f : 0xa.7ffffp-48f 0x1.299ef2p+0f : inexact-ok += clog upward flt-32 0x6.59feap-4f 0xe.af6f9p-4f : 0xa.8p-48f 0x1.299ef4p+0f : inexact-ok += clog downward dbl-64 0x6.59feap-4 0xe.af6f9p-4 : 0xa.7fffffffff918p-48 0x1.299ef34e2fa76p+0 : inexact-ok += clog tonearest dbl-64 0x6.59feap-4 0xe.af6f9p-4 : 0xa.7fffffffff92p-48 0x1.299ef34e2fa77p+0 : inexact-ok += clog towardzero dbl-64 0x6.59feap-4 0xe.af6f9p-4 : 0xa.7fffffffff918p-48 0x1.299ef34e2fa76p+0 : inexact-ok += clog upward dbl-64 0x6.59feap-4 0xe.af6f9p-4 : 0xa.7fffffffff92p-48 0x1.299ef34e2fa77p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91cp-48L 0x1.299ef34e2fa769bcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91cp-48L 0x1.299ef34e2fa769bcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91cp-48L 0x1.299ef34e2fa769bcp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91c01p-48L 0x1.299ef34e2fa769bep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91cp-48L 0x1.299ef34e2fa769bcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91cp-48L 0x1.299ef34e2fa769bcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91cp-48L 0x1.299ef34e2fa769bcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91c01p-48L 0x1.299ef34e2fa769bep+0L : inexact-ok += clog downward ldbl-128 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91c000000006077ff8p-48L 0x1.299ef34e2fa769bc7e0afb1719e7p+0L : inexact-ok += clog tonearest ldbl-128 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91c000000006078p-48L 0x1.299ef34e2fa769bc7e0afb1719e7p+0L : inexact-ok += clog towardzero ldbl-128 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91c000000006077ff8p-48L 0x1.299ef34e2fa769bc7e0afb1719e7p+0L : inexact-ok += clog upward ldbl-128 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91c000000006078p-48L 0x1.299ef34e2fa769bc7e0afb1719e8p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91c000000006077cp-48L 0x1.299ef34e2fa769bc7e0afb17198p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91c000000006078p-48L 0x1.299ef34e2fa769bc7e0afb171ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91c000000006077cp-48L 0x1.299ef34e2fa769bc7e0afb17198p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.59feap-4L 0xe.af6f9p-4L : 0xa.7fffffffff91c000000006078p-48L 0x1.299ef34e2fa769bc7e0afb171ap+0L : inexact-ok +clog 0x4447d7175p-35 0x6c445e00ap-35 += clog downward flt-32 0x8.88fafp-4f 0xd.888bdp-4f : 0x1.472a92p-24f 0x1.0214ep+0f : inexact-ok += clog tonearest flt-32 0x8.88fafp-4f 0xd.888bdp-4f : 0x1.472a94p-24f 0x1.0214e2p+0f : inexact-ok += clog towardzero flt-32 0x8.88fafp-4f 0xd.888bdp-4f : 0x1.472a92p-24f 0x1.0214ep+0f : inexact-ok += clog upward flt-32 0x8.88fafp-4f 0xd.888bdp-4f : 0x1.472a94p-24f 0x1.0214e2p+0f : inexact-ok += clog downward dbl-64 0x8.88fafp-4 0xd.888bdp-4 : 0x1.472a935de233p-24 0x1.0214e1fcc3319p+0 : inexact-ok += clog tonearest dbl-64 0x8.88fafp-4 0xd.888bdp-4 : 0x1.472a935de2331p-24 0x1.0214e1fcc3319p+0 : inexact-ok += clog towardzero dbl-64 0x8.88fafp-4 0xd.888bdp-4 : 0x1.472a935de233p-24 0x1.0214e1fcc3319p+0 : inexact-ok += clog upward dbl-64 0x8.88fafp-4 0xd.888bdp-4 : 0x1.472a935de2331p-24 0x1.0214e1fcc331ap+0 : inexact-ok += clog downward ldbl-96-intel 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cp-24L 0x1.0214e1fcc3319534p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cp-24L 0x1.0214e1fcc3319536p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cp-24L 0x1.0214e1fcc3319534p+0L : inexact-ok += clog upward ldbl-96-intel 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3ep-24L 0x1.0214e1fcc3319536p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cp-24L 0x1.0214e1fcc3319534p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cp-24L 0x1.0214e1fcc3319536p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cp-24L 0x1.0214e1fcc3319534p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3ep-24L 0x1.0214e1fcc3319536p+0L : inexact-ok += clog downward ldbl-128 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cc274537c712dp-24L 0x1.0214e1fcc33195355a76a8382bedp+0L : inexact-ok += clog tonearest ldbl-128 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cc274537c712dp-24L 0x1.0214e1fcc33195355a76a8382beep+0L : inexact-ok += clog towardzero ldbl-128 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cc274537c712dp-24L 0x1.0214e1fcc33195355a76a8382bedp+0L : inexact-ok += clog upward ldbl-128 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cc274537c712ep-24L 0x1.0214e1fcc33195355a76a8382beep+0L : inexact-ok += clog downward ldbl-128ibm 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cc274537c71p-24L 0x1.0214e1fcc33195355a76a8382b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cc274537c71p-24L 0x1.0214e1fcc33195355a76a8382cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cc274537c71p-24L 0x1.0214e1fcc33195355a76a8382b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x8.88fafp-4L 0xd.888bdp-4L : 0x1.472a935de2330d3cc274537c718p-24L 0x1.0214e1fcc33195355a76a8382cp+0L : inexact-ok += clog downward flt-32 0x8.88fafp-4f 0xd.888bcp-4f : 0x6.ea1d8p-28f 0x1.0214ep+0f : inexact-ok += clog tonearest flt-32 0x8.88fafp-4f 0xd.888bcp-4f : 0x6.ea1d88p-28f 0x1.0214e2p+0f : inexact-ok += clog towardzero flt-32 0x8.88fafp-4f 0xd.888bcp-4f : 0x6.ea1d8p-28f 0x1.0214ep+0f : inexact-ok += clog upward flt-32 0x8.88fafp-4f 0xd.888bcp-4f : 0x6.ea1d88p-28f 0x1.0214e2p+0f : inexact-ok += clog downward dbl-64 0x8.88fafp-4 0xd.888bcp-4 : 0x6.ea1d8503083b8p-28 0x1.0214e17433837p+0 : inexact-ok += clog tonearest dbl-64 0x8.88fafp-4 0xd.888bcp-4 : 0x6.ea1d8503083bcp-28 0x1.0214e17433838p+0 : inexact-ok += clog towardzero dbl-64 0x8.88fafp-4 0xd.888bcp-4 : 0x6.ea1d8503083b8p-28 0x1.0214e17433837p+0 : inexact-ok += clog upward dbl-64 0x8.88fafp-4 0xd.888bcp-4 : 0x6.ea1d8503083bcp-28 0x1.0214e17433838p+0 : inexact-ok += clog downward ldbl-96-intel 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb84p-28L 0x1.0214e17433837ebep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb848p-28L 0x1.0214e17433837ecp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb84p-28L 0x1.0214e17433837ebep+0L : inexact-ok += clog upward ldbl-96-intel 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb848p-28L 0x1.0214e17433837ecp+0L : inexact-ok += clog downward ldbl-96-m68k 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb84p-28L 0x1.0214e17433837ebep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb848p-28L 0x1.0214e17433837ecp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb84p-28L 0x1.0214e17433837ebep+0L : inexact-ok += clog upward ldbl-96-m68k 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb848p-28L 0x1.0214e17433837ecp+0L : inexact-ok += clog downward ldbl-128 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb846980150eaddf4p-28L 0x1.0214e17433837ebfab53da2ead85p+0L : inexact-ok += clog tonearest ldbl-128 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb846980150eaddf8p-28L 0x1.0214e17433837ebfab53da2ead85p+0L : inexact-ok += clog towardzero ldbl-128 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb846980150eaddf4p-28L 0x1.0214e17433837ebfab53da2ead85p+0L : inexact-ok += clog upward ldbl-128 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb846980150eaddf8p-28L 0x1.0214e17433837ebfab53da2ead86p+0L : inexact-ok += clog downward ldbl-128ibm 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb846980150eadcp-28L 0x1.0214e17433837ebfab53da2ead8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb846980150eadep-28L 0x1.0214e17433837ebfab53da2ead8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb846980150eadcp-28L 0x1.0214e17433837ebfab53da2ead8p+0L : inexact-ok += clog upward ldbl-128ibm 0x8.88fafp-4L 0xd.888bcp-4L : 0x6.ea1d8503083bb846980150eadep-28L 0x1.0214e17433837ebfab53da2eaep+0L : inexact-ok += clog downward dbl-64 0x8.88fafp-4 0xd.888bc014p-4 : 0x6.fb0833a463c7p-28 0x1.0214e174de371p+0 : inexact-ok += clog tonearest dbl-64 0x8.88fafp-4 0xd.888bc014p-4 : 0x6.fb0833a463c7p-28 0x1.0214e174de372p+0 : inexact-ok += clog towardzero dbl-64 0x8.88fafp-4 0xd.888bc014p-4 : 0x6.fb0833a463c7p-28 0x1.0214e174de371p+0 : inexact-ok += clog upward dbl-64 0x8.88fafp-4 0xd.888bc014p-4 : 0x6.fb0833a463c74p-28 0x1.0214e174de372p+0 : inexact-ok += clog downward ldbl-96-intel 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c7097p-28L 0x1.0214e174de3718eap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70978p-28L 0x1.0214e174de3718ecp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c7097p-28L 0x1.0214e174de3718eap+0L : inexact-ok += clog upward ldbl-96-intel 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70978p-28L 0x1.0214e174de3718ecp+0L : inexact-ok += clog downward ldbl-96-m68k 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c7097p-28L 0x1.0214e174de3718eap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70978p-28L 0x1.0214e174de3718ecp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c7097p-28L 0x1.0214e174de3718eap+0L : inexact-ok += clog upward ldbl-96-m68k 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70978p-28L 0x1.0214e174de3718ecp+0L : inexact-ok += clog downward ldbl-128 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70975fd4affc8638p-28L 0x1.0214e174de3718eb6ca956503c15p+0L : inexact-ok += clog tonearest ldbl-128 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70975fd4affc8638p-28L 0x1.0214e174de3718eb6ca956503c16p+0L : inexact-ok += clog towardzero ldbl-128 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70975fd4affc8638p-28L 0x1.0214e174de3718eb6ca956503c15p+0L : inexact-ok += clog upward ldbl-128 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70975fd4affc86384p-28L 0x1.0214e174de3718eb6ca956503c16p+0L : inexact-ok += clog downward ldbl-128ibm 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70975fd4affc862p-28L 0x1.0214e174de3718eb6ca956503cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70975fd4affc864p-28L 0x1.0214e174de3718eb6ca956503cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70975fd4affc862p-28L 0x1.0214e174de3718eb6ca956503cp+0L : inexact-ok += clog upward ldbl-128ibm 0x8.88fafp-4L 0xd.888bc014p-4L : 0x6.fb0833a463c70975fd4affc864p-28L 0x1.0214e174de3718eb6ca956503c8p+0L : inexact-ok += clog downward flt-32 0x8.88faep-4f 0xd.888bdp-4f : 0xb.e9ae5p-28f 0x1.0214e2p+0f : inexact-ok += clog tonearest flt-32 0x8.88faep-4f 0xd.888bdp-4f : 0xb.e9ae6p-28f 0x1.0214e2p+0f : inexact-ok += clog towardzero flt-32 0x8.88faep-4f 0xd.888bdp-4f : 0xb.e9ae5p-28f 0x1.0214e2p+0f : inexact-ok += clog upward flt-32 0x8.88faep-4f 0xd.888bdp-4f : 0xb.e9ae6p-28f 0x1.0214e4p+0f : inexact-ok += clog downward dbl-64 0x8.88faep-4 0xd.888bdp-4 : 0xb.e9ae5f215b4a8p-28 0x1.0214e2d54becdp+0 : inexact-ok += clog tonearest dbl-64 0x8.88faep-4 0xd.888bdp-4 : 0xb.e9ae5f215b4bp-28 0x1.0214e2d54becep+0 : inexact-ok += clog towardzero dbl-64 0x8.88faep-4 0xd.888bdp-4 : 0xb.e9ae5f215b4a8p-28 0x1.0214e2d54becdp+0 : inexact-ok += clog upward dbl-64 0x8.88faep-4 0xd.888bdp-4 : 0xb.e9ae5f215b4bp-28 0x1.0214e2d54becep+0 : inexact-ok += clog downward ldbl-96-intel 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4accp-28L 0x1.0214e2d54becdf42p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc1p-28L 0x1.0214e2d54becdf42p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4accp-28L 0x1.0214e2d54becdf42p+0L : inexact-ok += clog upward ldbl-96-intel 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc1p-28L 0x1.0214e2d54becdf44p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4accp-28L 0x1.0214e2d54becdf42p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc1p-28L 0x1.0214e2d54becdf42p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4accp-28L 0x1.0214e2d54becdf42p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc1p-28L 0x1.0214e2d54becdf44p+0L : inexact-ok += clog downward ldbl-128 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc0ce8496dcd28a8p-28L 0x1.0214e2d54becdf422ec4a6c18d9cp+0L : inexact-ok += clog tonearest ldbl-128 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc0ce8496dcd28bp-28L 0x1.0214e2d54becdf422ec4a6c18d9dp+0L : inexact-ok += clog towardzero ldbl-128 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc0ce8496dcd28a8p-28L 0x1.0214e2d54becdf422ec4a6c18d9cp+0L : inexact-ok += clog upward ldbl-128 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc0ce8496dcd28bp-28L 0x1.0214e2d54becdf422ec4a6c18d9dp+0L : inexact-ok += clog downward ldbl-128ibm 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc0ce8496dcd28p-28L 0x1.0214e2d54becdf422ec4a6c18d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc0ce8496dcd28p-28L 0x1.0214e2d54becdf422ec4a6c18d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc0ce8496dcd28p-28L 0x1.0214e2d54becdf422ec4a6c18d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x8.88faep-4L 0xd.888bdp-4L : 0xb.e9ae5f215b4acc0ce8496dcd2cp-28L 0x1.0214e2d54becdf422ec4a6c18ep+0L : inexact-ok += clog downward flt-32 0x8.88faep-4f 0xd.888bcp-4f : -0x1.9edd62p-28f 0x1.0214e2p+0f : inexact-ok += clog tonearest flt-32 0x8.88faep-4f 0xd.888bcp-4f : -0x1.9edd6p-28f 0x1.0214e2p+0f : inexact-ok += clog towardzero flt-32 0x8.88faep-4f 0xd.888bcp-4f : -0x1.9edd6p-28f 0x1.0214e2p+0f : inexact-ok += clog upward flt-32 0x8.88faep-4f 0xd.888bcp-4f : -0x1.9edd6p-28f 0x1.0214e4p+0f : inexact-ok += clog downward dbl-64 0x8.88faep-4 0xd.888bcp-4 : -0x1.9edd602a050c3p-28 0x1.0214e24cbc3f3p+0 : inexact-ok += clog tonearest dbl-64 0x8.88faep-4 0xd.888bcp-4 : -0x1.9edd602a050c2p-28 0x1.0214e24cbc3f3p+0 : inexact-ok += clog towardzero dbl-64 0x8.88faep-4 0xd.888bcp-4 : -0x1.9edd602a050c2p-28 0x1.0214e24cbc3f3p+0 : inexact-ok += clog upward dbl-64 0x8.88faep-4 0xd.888bcp-4 : -0x1.9edd602a050c2p-28 0x1.0214e24cbc3f4p+0 : inexact-ok += clog downward ldbl-96-intel 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249cp-28L 0x1.0214e24cbc3f371ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249ap-28L 0x1.0214e24cbc3f371ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249ap-28L 0x1.0214e24cbc3f371ap+0L : inexact-ok += clog upward ldbl-96-intel 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249ap-28L 0x1.0214e24cbc3f371cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249cp-28L 0x1.0214e24cbc3f371ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249ap-28L 0x1.0214e24cbc3f371ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249ap-28L 0x1.0214e24cbc3f371ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249ap-28L 0x1.0214e24cbc3f371cp+0L : inexact-ok += clog downward ldbl-128 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249af55024c09325p-28L 0x1.0214e24cbc3f371a8bb2a9b0571dp+0L : inexact-ok += clog tonearest ldbl-128 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249af55024c09324p-28L 0x1.0214e24cbc3f371a8bb2a9b0571dp+0L : inexact-ok += clog towardzero ldbl-128 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249af55024c09324p-28L 0x1.0214e24cbc3f371a8bb2a9b0571dp+0L : inexact-ok += clog upward ldbl-128 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249af55024c09324p-28L 0x1.0214e24cbc3f371a8bb2a9b0571ep+0L : inexact-ok += clog downward ldbl-128ibm 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249af55024c0938p-28L 0x1.0214e24cbc3f371a8bb2a9b057p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249af55024c093p-28L 0x1.0214e24cbc3f371a8bb2a9b057p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249af55024c093p-28L 0x1.0214e24cbc3f371a8bb2a9b057p+0L : inexact-ok += clog upward ldbl-128ibm 0x8.88faep-4L 0xd.888bcp-4L : -0x1.9edd602a050c249af55024c093p-28L 0x1.0214e24cbc3f371a8bb2a9b0578p+0L : inexact-ok += clog downward dbl-64 0x8.88faep-4 0xd.888bc014p-4 : -0x1.8df2b1769d2a1p-28 0x1.0214e24d66f2dp+0 : inexact-ok += clog tonearest dbl-64 0x8.88faep-4 0xd.888bc014p-4 : -0x1.8df2b1769d2ap-28 0x1.0214e24d66f2dp+0 : inexact-ok += clog towardzero dbl-64 0x8.88faep-4 0xd.888bc014p-4 : -0x1.8df2b1769d2ap-28 0x1.0214e24d66f2dp+0 : inexact-ok += clog upward dbl-64 0x8.88faep-4 0xd.888bc014p-4 : -0x1.8df2b1769d2ap-28 0x1.0214e24d66f2ep+0 : inexact-ok += clog downward ldbl-96-intel 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055ep-28L 0x1.0214e24d66f2d0bcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055ep-28L 0x1.0214e24d66f2d0bcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055cp-28L 0x1.0214e24d66f2d0bcp+0L : inexact-ok += clog upward ldbl-96-intel 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055cp-28L 0x1.0214e24d66f2d0bep+0L : inexact-ok += clog downward ldbl-96-m68k 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055ep-28L 0x1.0214e24d66f2d0bcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055ep-28L 0x1.0214e24d66f2d0bcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055cp-28L 0x1.0214e24d66f2d0bcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055cp-28L 0x1.0214e24d66f2d0bep+0L : inexact-ok += clog downward ldbl-128 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055d18d778b8ab4ep-28L 0x1.0214e24d66f2d0bc6b793608e806p+0L : inexact-ok += clog tonearest ldbl-128 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055d18d778b8ab4dp-28L 0x1.0214e24d66f2d0bc6b793608e806p+0L : inexact-ok += clog towardzero ldbl-128 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055d18d778b8ab4dp-28L 0x1.0214e24d66f2d0bc6b793608e806p+0L : inexact-ok += clog upward ldbl-128 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055d18d778b8ab4dp-28L 0x1.0214e24d66f2d0bc6b793608e807p+0L : inexact-ok += clog downward ldbl-128ibm 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055d18d778b8ab8p-28L 0x1.0214e24d66f2d0bc6b793608e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055d18d778b8ab8p-28L 0x1.0214e24d66f2d0bc6b793608e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055d18d778b8abp-28L 0x1.0214e24d66f2d0bc6b793608e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x8.88faep-4L 0xd.888bc014p-4L : -0x1.8df2b1769d2a055d18d778b8abp-28L 0x1.0214e24d66f2d0bc6b793608e88p+0L : inexact-ok += clog downward dbl-64 0x8.88fae2eap-4 0xd.888bdp-4 : 0xd.77a10dfa0af08p-28 0x1.0214e2addc05bp+0 : inexact-ok += clog tonearest dbl-64 0x8.88fae2eap-4 0xd.888bdp-4 : 0xd.77a10dfa0af1p-28 0x1.0214e2addc05bp+0 : inexact-ok += clog towardzero dbl-64 0x8.88fae2eap-4 0xd.888bdp-4 : 0xd.77a10dfa0af08p-28 0x1.0214e2addc05bp+0 : inexact-ok += clog upward dbl-64 0x8.88fae2eap-4 0xd.888bdp-4 : 0xd.77a10dfa0af1p-28 0x1.0214e2addc05cp+0 : inexact-ok += clog downward ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e84p-28L 0x1.0214e2addc05b1bp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e84p-28L 0x1.0214e2addc05b1bp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e84p-28L 0x1.0214e2addc05b1bp+0L : inexact-ok += clog upward ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e85p-28L 0x1.0214e2addc05b1b2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e84p-28L 0x1.0214e2addc05b1bp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e84p-28L 0x1.0214e2addc05b1bp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e84p-28L 0x1.0214e2addc05b1bp+0L : inexact-ok += clog upward ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e85p-28L 0x1.0214e2addc05b1b2p+0L : inexact-ok += clog downward ldbl-128 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e8414bf95d5f988p-28L 0x1.0214e2addc05b1b0e25c4723f1fp+0L : inexact-ok += clog tonearest ldbl-128 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e8414bf95d5f9888p-28L 0x1.0214e2addc05b1b0e25c4723f1fp+0L : inexact-ok += clog towardzero ldbl-128 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e8414bf95d5f988p-28L 0x1.0214e2addc05b1b0e25c4723f1fp+0L : inexact-ok += clog upward ldbl-128 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e8414bf95d5f9888p-28L 0x1.0214e2addc05b1b0e25c4723f1f1p+0L : inexact-ok += clog downward ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e8414bf95d5f98p-28L 0x1.0214e2addc05b1b0e25c4723f18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e8414bf95d5f98p-28L 0x1.0214e2addc05b1b0e25c4723f2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e8414bf95d5f98p-28L 0x1.0214e2addc05b1b0e25c4723f18p+0L : inexact-ok += clog upward ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bdp-4L : 0xd.77a10dfa0af0e8414bf95d5f9cp-28L 0x1.0214e2addc05b1b0e25c4723f2p+0L : inexact-ok += clog downward dbl-64 0x8.88fae2eap-4 0xd.888bcp-4 : -0x1.0eaaeb022c2dp-32 0x1.0214e2254c57fp+0 : inexact-ok += clog tonearest dbl-64 0x8.88fae2eap-4 0xd.888bcp-4 : -0x1.0eaaeb022c2dp-32 0x1.0214e2254c57fp+0 : inexact-ok += clog towardzero dbl-64 0x8.88fae2eap-4 0xd.888bcp-4 : -0x1.0eaaeb022c2cfp-32 0x1.0214e2254c57fp+0 : inexact-ok += clog upward dbl-64 0x8.88fae2eap-4 0xd.888bcp-4 : -0x1.0eaaeb022c2cfp-32 0x1.0214e2254c58p+0 : inexact-ok += clog downward ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d6p-32L 0x1.0214e2254c57f572p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4p-32L 0x1.0214e2254c57f572p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4p-32L 0x1.0214e2254c57f572p+0L : inexact-ok += clog upward ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4p-32L 0x1.0214e2254c57f574p+0L : inexact-ok += clog downward ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d6p-32L 0x1.0214e2254c57f572p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4p-32L 0x1.0214e2254c57f572p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4p-32L 0x1.0214e2254c57f572p+0L : inexact-ok += clog upward ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4p-32L 0x1.0214e2254c57f574p+0L : inexact-ok += clog downward ldbl-128 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4c21787cbbd65p-32L 0x1.0214e2254c57f5724831dadf7d2p+0L : inexact-ok += clog tonearest ldbl-128 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4c21787cbbd65p-32L 0x1.0214e2254c57f5724831dadf7d21p+0L : inexact-ok += clog towardzero ldbl-128 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4c21787cbbd64p-32L 0x1.0214e2254c57f5724831dadf7d2p+0L : inexact-ok += clog upward ldbl-128 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4c21787cbbd64p-32L 0x1.0214e2254c57f5724831dadf7d21p+0L : inexact-ok += clog downward ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4c21787cbbd8p-32L 0x1.0214e2254c57f5724831dadf7dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4c21787cbbd8p-32L 0x1.0214e2254c57f5724831dadf7dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4c21787cbbdp-32L 0x1.0214e2254c57f5724831dadf7dp+0L : inexact-ok += clog upward ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bcp-4L : -0x1.0eaaeb022c2cf9d4c21787cbbdp-32L 0x1.0214e2254c57f5724831dadf7d8p+0L : inexact-ok += clog downward dbl-64 0x8.88fae2eap-4 0xd.888bc014p-4 : -0x4.6000000000004p-68 0x1.0214e225f70b8p+0 : inexact-ok += clog tonearest dbl-64 0x8.88fae2eap-4 0xd.888bc014p-4 : -0x4.6p-68 0x1.0214e225f70b9p+0 : inexact-ok += clog towardzero dbl-64 0x8.88fae2eap-4 0xd.888bc014p-4 : -0x4.6p-68 0x1.0214e225f70b8p+0 : inexact-ok += clog upward dbl-64 0x8.88fae2eap-4 0xd.888bc014p-4 : -0x4.6p-68 0x1.0214e225f70b9p+0 : inexact-ok += clog downward ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6000000000000008p-68L 0x1.0214e225f70b8f2cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6p-68L 0x1.0214e225f70b8f2ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6p-68L 0x1.0214e225f70b8f2cp+0L : inexact-ok += clog upward ldbl-96-intel 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6p-68L 0x1.0214e225f70b8f2ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6000000000000008p-68L 0x1.0214e225f70b8f2cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6p-68L 0x1.0214e225f70b8f2ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6p-68L 0x1.0214e225f70b8f2cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6p-68L 0x1.0214e225f70b8f2ep+0L : inexact-ok += clog downward ldbl-128 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6000000000000001324p-68L 0x1.0214e225f70b8f2d44ad3efaf67bp+0L : inexact-ok += clog tonearest ldbl-128 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6000000000000001324p-68L 0x1.0214e225f70b8f2d44ad3efaf67bp+0L : inexact-ok += clog towardzero ldbl-128 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6000000000000001323ffffffffcp-68L 0x1.0214e225f70b8f2d44ad3efaf67bp+0L : inexact-ok += clog upward ldbl-128 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6000000000000001323ffffffffcp-68L 0x1.0214e225f70b8f2d44ad3efaf67cp+0L : inexact-ok += clog downward ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6000000000000001324p-68L 0x1.0214e225f70b8f2d44ad3efaf6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6000000000000001324p-68L 0x1.0214e225f70b8f2d44ad3efaf68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6000000000000001323ffffffep-68L 0x1.0214e225f70b8f2d44ad3efaf6p+0L : inexact-ok += clog upward ldbl-128ibm 0x8.88fae2eap-4L 0xd.888bc014p-4L : -0x4.6000000000000001323ffffffep-68L 0x1.0214e225f70b8f2d44ad3efaf68p+0L : inexact-ok +clog 0x2dd46725bp-35 0x7783a1284p-35 += clog downward flt-32 0x5.ba8ce8p-4f 0xe.f0743p-4f : 0xb.6b50dp-28f 0x1.346236p+0f : inexact-ok += clog tonearest flt-32 0x5.ba8ce8p-4f 0xe.f0743p-4f : 0xb.6b50dp-28f 0x1.346236p+0f : inexact-ok += clog towardzero flt-32 0x5.ba8ce8p-4f 0xe.f0743p-4f : 0xb.6b50dp-28f 0x1.346236p+0f : inexact-ok += clog upward flt-32 0x5.ba8ce8p-4f 0xe.f0743p-4f : 0xb.6b50ep-28f 0x1.346238p+0f : inexact-ok += clog downward dbl-64 0x5.ba8ce8p-4 0xe.f0743p-4 : 0xb.6b50d1d9a111p-28 0x1.3462365accd87p+0 : inexact-ok += clog tonearest dbl-64 0x5.ba8ce8p-4 0xe.f0743p-4 : 0xb.6b50d1d9a111p-28 0x1.3462365accd88p+0 : inexact-ok += clog towardzero dbl-64 0x5.ba8ce8p-4 0xe.f0743p-4 : 0xb.6b50d1d9a111p-28 0x1.3462365accd87p+0 : inexact-ok += clog upward dbl-64 0x5.ba8ce8p-4 0xe.f0743p-4 : 0xb.6b50d1d9a1118p-28 0x1.3462365accd88p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051p-28L 0x1.3462365accd87f1ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051p-28L 0x1.3462365accd87f1cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051p-28L 0x1.3462365accd87f1ap+0L : inexact-ok += clog upward ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111052p-28L 0x1.3462365accd87f1cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051p-28L 0x1.3462365accd87f1ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051p-28L 0x1.3462365accd87f1cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051p-28L 0x1.3462365accd87f1ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111052p-28L 0x1.3462365accd87f1cp+0L : inexact-ok += clog downward ldbl-128 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051477940c391248p-28L 0x1.3462365accd87f1b96303729de05p+0L : inexact-ok += clog tonearest ldbl-128 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051477940c391248p-28L 0x1.3462365accd87f1b96303729de05p+0L : inexact-ok += clog towardzero ldbl-128 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051477940c391248p-28L 0x1.3462365accd87f1b96303729de05p+0L : inexact-ok += clog upward ldbl-128 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051477940c39125p-28L 0x1.3462365accd87f1b96303729de06p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051477940c391p-28L 0x1.3462365accd87f1b96303729dep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051477940c3914p-28L 0x1.3462365accd87f1b96303729dep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051477940c391p-28L 0x1.3462365accd87f1b96303729dep+0L : inexact-ok += clog upward ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0743p-4L : 0xb.6b50d1d9a111051477940c3914p-28L 0x1.3462365accd87f1b96303729de8p+0L : inexact-ok += clog downward flt-32 0x5.ba8ce8p-4f 0xe.f0742p-4f : -0x3.85235p-28f 0x1.346234p+0f : inexact-ok += clog tonearest flt-32 0x5.ba8ce8p-4f 0xe.f0742p-4f : -0x3.85235p-28f 0x1.346236p+0f : inexact-ok += clog towardzero flt-32 0x5.ba8ce8p-4f 0xe.f0742p-4f : -0x3.85234cp-28f 0x1.346234p+0f : inexact-ok += clog upward flt-32 0x5.ba8ce8p-4f 0xe.f0742p-4f : -0x3.85234cp-28f 0x1.346236p+0f : inexact-ok += clog downward dbl-64 0x5.ba8ce8p-4 0xe.f0742p-4 : -0x3.85234ec64118cp-28 0x1.346235ff240a2p+0 : inexact-ok += clog tonearest dbl-64 0x5.ba8ce8p-4 0xe.f0742p-4 : -0x3.85234ec64118cp-28 0x1.346235ff240a3p+0 : inexact-ok += clog towardzero dbl-64 0x5.ba8ce8p-4 0xe.f0742p-4 : -0x3.85234ec64118ap-28 0x1.346235ff240a2p+0 : inexact-ok += clog upward dbl-64 0x5.ba8ce8p-4 0xe.f0742p-4 : -0x3.85234ec64118ap-28 0x1.346235ff240a3p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8dp-28L 0x1.346235ff240a2c5cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8dp-28L 0x1.346235ff240a2c5cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ccp-28L 0x1.346235ff240a2c5cp+0L : inexact-ok += clog upward ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ccp-28L 0x1.346235ff240a2c5ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8dp-28L 0x1.346235ff240a2c5cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8dp-28L 0x1.346235ff240a2c5cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ccp-28L 0x1.346235ff240a2c5cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ccp-28L 0x1.346235ff240a2c5ep+0L : inexact-ok += clog downward ldbl-128 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ce9b33850ffe3ep-28L 0x1.346235ff240a2c5c0fcd30173589p+0L : inexact-ok += clog tonearest ldbl-128 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ce9b33850ffe3ep-28L 0x1.346235ff240a2c5c0fcd3017358ap+0L : inexact-ok += clog towardzero ldbl-128 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ce9b33850ffe3cp-28L 0x1.346235ff240a2c5c0fcd30173589p+0L : inexact-ok += clog upward ldbl-128 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ce9b33850ffe3cp-28L 0x1.346235ff240a2c5c0fcd3017358ap+0L : inexact-ok += clog downward ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ce9b33850fffp-28L 0x1.346235ff240a2c5c0fcd3017358p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ce9b33850ffep-28L 0x1.346235ff240a2c5c0fcd3017358p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ce9b33850ffep-28L 0x1.346235ff240a2c5c0fcd3017358p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0742p-4L : -0x3.85234ec64118b8ce9b33850ffep-28L 0x1.346235ff240a2c5c0fcd301736p+0L : inexact-ok += clog downward dbl-64 0x5.ba8ce8p-4 0xe.f0742508p-4 : 0x1.2d7936c4519bbp-28 0x1.3462361bf69f1p+0 : inexact-ok += clog tonearest dbl-64 0x5.ba8ce8p-4 0xe.f0742508p-4 : 0x1.2d7936c4519bcp-28 0x1.3462361bf69f2p+0 : inexact-ok += clog towardzero dbl-64 0x5.ba8ce8p-4 0xe.f0742508p-4 : 0x1.2d7936c4519bbp-28 0x1.3462361bf69f1p+0 : inexact-ok += clog upward dbl-64 0x5.ba8ce8p-4 0xe.f0742508p-4 : 0x1.2d7936c4519bcp-28 0x1.3462361bf69f2p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbcp-28L 0x1.3462361bf69f1fd4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc02p-28L 0x1.3462361bf69f1fd4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbcp-28L 0x1.3462361bf69f1fd4p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc02p-28L 0x1.3462361bf69f1fd6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbcp-28L 0x1.3462361bf69f1fd4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc02p-28L 0x1.3462361bf69f1fd4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbcp-28L 0x1.3462361bf69f1fd4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc02p-28L 0x1.3462361bf69f1fd6p+0L : inexact-ok += clog downward ldbl-128 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc01b30e2ddf1da8p-28L 0x1.3462361bf69f1fd44dddf9771fc5p+0L : inexact-ok += clog tonearest ldbl-128 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc01b30e2ddf1da9p-28L 0x1.3462361bf69f1fd44dddf9771fc5p+0L : inexact-ok += clog towardzero ldbl-128 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc01b30e2ddf1da8p-28L 0x1.3462361bf69f1fd44dddf9771fc5p+0L : inexact-ok += clog upward ldbl-128 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc01b30e2ddf1da9p-28L 0x1.3462361bf69f1fd44dddf9771fc6p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc01b30e2ddf1d8p-28L 0x1.3462361bf69f1fd44dddf9771f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc01b30e2ddf1d8p-28L 0x1.3462361bf69f1fd44dddf9772p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc01b30e2ddf1d8p-28L 0x1.3462361bf69f1fd44dddf9771f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.ba8ce8p-4L 0xe.f0742508p-4L : 0x1.2d7936c4519bbc01b30e2ddf1ep-28L 0x1.3462361bf69f1fd44dddf9772p+0L : inexact-ok += clog downward flt-32 0x5.ba8cep-4f 0xe.f0743p-4f : 0x8.8e0a6p-28f 0x1.346236p+0f : inexact-ok += clog tonearest flt-32 0x5.ba8cep-4f 0xe.f0743p-4f : 0x8.8e0a6p-28f 0x1.346236p+0f : inexact-ok += clog towardzero flt-32 0x5.ba8cep-4f 0xe.f0743p-4f : 0x8.8e0a6p-28f 0x1.346236p+0f : inexact-ok += clog upward flt-32 0x5.ba8cep-4f 0xe.f0743p-4f : 0x8.8e0a7p-28f 0x1.346238p+0f : inexact-ok += clog downward dbl-64 0x5.ba8cep-4 0xe.f0743p-4 : 0x8.8e0a636d08a28p-28 0x1.346236d250796p+0 : inexact-ok += clog tonearest dbl-64 0x5.ba8cep-4 0xe.f0743p-4 : 0x8.8e0a636d08a28p-28 0x1.346236d250797p+0 : inexact-ok += clog towardzero dbl-64 0x5.ba8cep-4 0xe.f0743p-4 : 0x8.8e0a636d08a28p-28 0x1.346236d250796p+0 : inexact-ok += clog upward dbl-64 0x5.ba8cep-4 0xe.f0743p-4 : 0x8.8e0a636d08a3p-28 0x1.346236d250797p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a286p-28L 0x1.346236d2507969e8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a286p-28L 0x1.346236d2507969e8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a286p-28L 0x1.346236d2507969e8p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a2861p-28L 0x1.346236d2507969eap+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a286p-28L 0x1.346236d2507969e8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a286p-28L 0x1.346236d2507969e8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a286p-28L 0x1.346236d2507969e8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a2861p-28L 0x1.346236d2507969eap+0L : inexact-ok += clog downward ldbl-128 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a28604ab4b94d0f018p-28L 0x1.346236d2507969e8acfdbd038e0ep+0L : inexact-ok += clog tonearest ldbl-128 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a28604ab4b94d0f02p-28L 0x1.346236d2507969e8acfdbd038e0ep+0L : inexact-ok += clog towardzero ldbl-128 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a28604ab4b94d0f018p-28L 0x1.346236d2507969e8acfdbd038e0ep+0L : inexact-ok += clog upward ldbl-128 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a28604ab4b94d0f02p-28L 0x1.346236d2507969e8acfdbd038e0fp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a28604ab4b94d0fp-28L 0x1.346236d2507969e8acfdbd038ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a28604ab4b94d0fp-28L 0x1.346236d2507969e8acfdbd038ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a28604ab4b94d0fp-28L 0x1.346236d2507969e8acfdbd038ep+0L : inexact-ok += clog upward ldbl-128ibm 0x5.ba8cep-4L 0xe.f0743p-4L : 0x8.8e0a636d08a28604ab4b94d0f4p-28L 0x1.346236d2507969e8acfdbd038e8p+0L : inexact-ok += clog downward flt-32 0x5.ba8cep-4f 0xe.f0742p-4f : -0x6.6269c8p-28f 0x1.346236p+0f : inexact-ok += clog tonearest flt-32 0x5.ba8cep-4f 0xe.f0742p-4f : -0x6.6269cp-28f 0x1.346236p+0f : inexact-ok += clog towardzero flt-32 0x5.ba8cep-4f 0xe.f0742p-4f : -0x6.6269cp-28f 0x1.346236p+0f : inexact-ok += clog upward flt-32 0x5.ba8cep-4f 0xe.f0742p-4f : -0x6.6269cp-28f 0x1.346238p+0f : inexact-ok += clog downward dbl-64 0x5.ba8cep-4 0xe.f0742p-4 : -0x6.6269c28c2ca3cp-28 0x1.34623676a7ab7p+0 : inexact-ok += clog tonearest dbl-64 0x5.ba8cep-4 0xe.f0742p-4 : -0x6.6269c28c2ca38p-28 0x1.34623676a7ab7p+0 : inexact-ok += clog towardzero dbl-64 0x5.ba8cep-4 0xe.f0742p-4 : -0x6.6269c28c2ca38p-28 0x1.34623676a7ab7p+0 : inexact-ok += clog upward dbl-64 0x5.ba8cep-4 0xe.f0742p-4 : -0x6.6269c28c2ca38p-28 0x1.34623676a7ab8p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385fp-28L 0x1.34623676a7ab7656p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385e8p-28L 0x1.34623676a7ab7658p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385e8p-28L 0x1.34623676a7ab7656p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385e8p-28L 0x1.34623676a7ab7658p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385fp-28L 0x1.34623676a7ab7656p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385e8p-28L 0x1.34623676a7ab7658p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385e8p-28L 0x1.34623676a7ab7656p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385e8p-28L 0x1.34623676a7ab7658p+0L : inexact-ok += clog downward ldbl-128 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385ebdc5adab7557p-28L 0x1.34623676a7ab7657b4963bf9d163p+0L : inexact-ok += clog tonearest ldbl-128 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385ebdc5adab7556cp-28L 0x1.34623676a7ab7657b4963bf9d164p+0L : inexact-ok += clog towardzero ldbl-128 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385ebdc5adab7556cp-28L 0x1.34623676a7ab7657b4963bf9d163p+0L : inexact-ok += clog upward ldbl-128 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385ebdc5adab7556cp-28L 0x1.34623676a7ab7657b4963bf9d164p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385ebdc5adab756p-28L 0x1.34623676a7ab7657b4963bf9d1p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385ebdc5adab756p-28L 0x1.34623676a7ab7657b4963bf9d18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385ebdc5adab754p-28L 0x1.34623676a7ab7657b4963bf9d1p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.ba8cep-4L 0xe.f0742p-4L : -0x6.6269c28c2ca385ebdc5adab754p-28L 0x1.34623676a7ab7657b4963bf9d18p+0L : inexact-ok += clog downward dbl-64 0x5.ba8cep-4 0xe.f0742508p-4 : -0x1.afcd3b53034b3p-28 0x1.346236937a404p+0 : inexact-ok += clog tonearest dbl-64 0x5.ba8cep-4 0xe.f0742508p-4 : -0x1.afcd3b53034b2p-28 0x1.346236937a405p+0 : inexact-ok += clog towardzero dbl-64 0x5.ba8cep-4 0xe.f0742508p-4 : -0x1.afcd3b53034b2p-28 0x1.346236937a404p+0 : inexact-ok += clog upward dbl-64 0x5.ba8cep-4 0xe.f0742508p-4 : -0x1.afcd3b53034b2p-28 0x1.346236937a405p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b2168p-28L 0x1.346236937a404bep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b2166p-28L 0x1.346236937a404be2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b2166p-28L 0x1.346236937a404bep+0L : inexact-ok += clog upward ldbl-96-intel 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b2166p-28L 0x1.346236937a404be2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b2168p-28L 0x1.346236937a404bep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b2166p-28L 0x1.346236937a404be2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b2166p-28L 0x1.346236937a404bep+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b2166p-28L 0x1.346236937a404be2p+0L : inexact-ok += clog downward ldbl-128 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b21665d9c468e6f4dp-28L 0x1.346236937a404be1cef4e03b4021p+0L : inexact-ok += clog tonearest ldbl-128 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b21665d9c468e6f4cp-28L 0x1.346236937a404be1cef4e03b4022p+0L : inexact-ok += clog towardzero ldbl-128 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b21665d9c468e6f4cp-28L 0x1.346236937a404be1cef4e03b4021p+0L : inexact-ok += clog upward ldbl-128 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b21665d9c468e6f4cp-28L 0x1.346236937a404be1cef4e03b4022p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b21665d9c468e6f8p-28L 0x1.346236937a404be1cef4e03b4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b21665d9c468e6f8p-28L 0x1.346236937a404be1cef4e03b4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b21665d9c468e6fp-28L 0x1.346236937a404be1cef4e03b4p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.ba8cep-4L 0xe.f0742508p-4L : -0x1.afcd3b53034b21665d9c468e6fp-28L 0x1.346236937a404be1cef4e03b408p+0L : inexact-ok += clog downward dbl-64 0x5.ba8ce4b6p-4 0xe.f0743p-4 : 0xa.3dd79c974e92p-28 0x1.3462368befb66p+0 : inexact-ok += clog tonearest dbl-64 0x5.ba8ce4b6p-4 0xe.f0743p-4 : 0xa.3dd79c974e92p-28 0x1.3462368befb66p+0 : inexact-ok += clog towardzero dbl-64 0x5.ba8ce4b6p-4 0xe.f0743p-4 : 0xa.3dd79c974e92p-28 0x1.3462368befb66p+0 : inexact-ok += clog upward dbl-64 0x5.ba8ce4b6p-4 0xe.f0743p-4 : 0xa.3dd79c974e928p-28 0x1.3462368befb67p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132p-28L 0x1.3462368befb66276p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92133p-28L 0x1.3462368befb66276p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132p-28L 0x1.3462368befb66276p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92133p-28L 0x1.3462368befb66278p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132p-28L 0x1.3462368befb66276p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92133p-28L 0x1.3462368befb66276p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132p-28L 0x1.3462368befb66276p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92133p-28L 0x1.3462368befb66278p+0L : inexact-ok += clog downward ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132d64548c186d28p-28L 0x1.3462368befb6627656570f83bfc1p+0L : inexact-ok += clog tonearest ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132d64548c186d28p-28L 0x1.3462368befb6627656570f83bfc2p+0L : inexact-ok += clog towardzero ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132d64548c186d28p-28L 0x1.3462368befb6627656570f83bfc1p+0L : inexact-ok += clog upward ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132d64548c186d3p-28L 0x1.3462368befb6627656570f83bfc2p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132d64548c186cp-28L 0x1.3462368befb6627656570f83bf8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132d64548c186cp-28L 0x1.3462368befb6627656570f83cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132d64548c186cp-28L 0x1.3462368befb6627656570f83bf8p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0743p-4L : 0xa.3dd79c974e92132d64548c187p-28L 0x1.3462368befb6627656570f83cp+0L : inexact-ok += clog downward dbl-64 0x5.ba8ce4b6p-4 0xe.f0742p-4 : -0x4.b29c863b8d038p-28 0x1.3462363046e83p+0 : inexact-ok += clog tonearest dbl-64 0x5.ba8ce4b6p-4 0xe.f0742p-4 : -0x4.b29c863b8d038p-28 0x1.3462363046e83p+0 : inexact-ok += clog towardzero dbl-64 0x5.ba8ce4b6p-4 0xe.f0742p-4 : -0x4.b29c863b8d034p-28 0x1.3462363046e83p+0 : inexact-ok += clog upward dbl-64 0x5.ba8ce4b6p-4 0xe.f0742p-4 : -0x4.b29c863b8d034p-28 0x1.3462363046e84p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e98p-28L 0x1.3462363046e836d8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e98p-28L 0x1.3462363046e836d8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e9p-28L 0x1.3462363046e836d8p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e9p-28L 0x1.3462363046e836dap+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e98p-28L 0x1.3462363046e836d8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e98p-28L 0x1.3462363046e836d8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e9p-28L 0x1.3462363046e836d8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e9p-28L 0x1.3462363046e836dap+0L : inexact-ok += clog downward ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e94503da760aab8p-28L 0x1.3462363046e836d8b3c5e4e5854cp+0L : inexact-ok += clog tonearest ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e94503da760aab8p-28L 0x1.3462363046e836d8b3c5e4e5854cp+0L : inexact-ok += clog towardzero ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e94503da760aab4p-28L 0x1.3462363046e836d8b3c5e4e5854cp+0L : inexact-ok += clog upward ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e94503da760aab4p-28L 0x1.3462363046e836d8b3c5e4e5854dp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e94503da760acp-28L 0x1.3462363046e836d8b3c5e4e585p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e94503da760aap-28L 0x1.3462363046e836d8b3c5e4e5858p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e94503da760aap-28L 0x1.3462363046e836d8b3c5e4e585p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0742p-4L : -0x4.b29c863b8d037e94503da760aap-28L 0x1.3462363046e836d8b3c5e4e5858p+0L : inexact-ok += clog downward dbl-64 0x5.ba8ce4b6p-4 0xe.f0742508p-4 : 0xd.1fffffffffff8p-68 0x1.3462364d197d1p+0 : inexact-ok += clog tonearest dbl-64 0x5.ba8ce4b6p-4 0xe.f0742508p-4 : 0xd.2p-68 0x1.3462364d197d2p+0 : inexact-ok += clog towardzero dbl-64 0x5.ba8ce4b6p-4 0xe.f0742508p-4 : 0xd.1fffffffffff8p-68 0x1.3462364d197d1p+0 : inexact-ok += clog upward dbl-64 0x5.ba8ce4b6p-4 0xe.f0742508p-4 : 0xd.2p-68 0x1.3462364d197d2p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffffp-68L 0x1.3462364d197d1e02p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffffp-68L 0x1.3462364d197d1e02p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffffp-68L 0x1.3462364d197d1e02p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.2p-68L 0x1.3462364d197d1e04p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffffp-68L 0x1.3462364d197d1e02p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffffp-68L 0x1.3462364d197d1e02p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffffp-68L 0x1.3462364d197d1e02p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.2p-68L 0x1.3462364d197d1e04p+0L : inexact-ok += clog downward ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffff53bcp-68L 0x1.3462364d197d1e02c9ae0748faa6p+0L : inexact-ok += clog tonearest ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffff53bcp-68L 0x1.3462364d197d1e02c9ae0748faa7p+0L : inexact-ok += clog towardzero ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffff53bcp-68L 0x1.3462364d197d1e02c9ae0748faa6p+0L : inexact-ok += clog upward ldbl-128 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffff53bc000000008p-68L 0x1.3462364d197d1e02c9ae0748faa7p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffff53bcp-68L 0x1.3462364d197d1e02c9ae0748fa8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffff53bcp-68L 0x1.3462364d197d1e02c9ae0748fa8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffff53bcp-68L 0x1.3462364d197d1e02c9ae0748fa8p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.ba8ce4b6p-4L 0xe.f0742508p-4L : 0xd.1ffffffffffffff53bc0000004p-68L 0x1.3462364d197d1e02c9ae0748fbp+0L : inexact-ok +clog 0x164c74eea876p-45 0x16f393482f77p-45 += clog downward flt-32 0xb.263a8p-4f 0xb.79c9bp-4f : 0xe.9520bp-28f 0xc.cc14p-4f : inexact-ok += clog tonearest flt-32 0xb.263a8p-4f 0xb.79c9bp-4f : 0xe.9520cp-28f 0xc.cc141p-4f : inexact-ok += clog towardzero flt-32 0xb.263a8p-4f 0xb.79c9bp-4f : 0xe.9520bp-28f 0xc.cc14p-4f : inexact-ok += clog upward flt-32 0xb.263a8p-4f 0xb.79c9bp-4f : 0xe.9520cp-28f 0xc.cc141p-4f : inexact-ok += clog downward dbl-64 0xb.263a8p-4 0xb.79c9bp-4 : 0xe.9520bab598bfp-28 0xc.cc140ac8b5f68p-4 : inexact-ok += clog tonearest dbl-64 0xb.263a8p-4 0xb.79c9bp-4 : 0xe.9520bab598bf8p-28 0xc.cc140ac8b5f68p-4 : inexact-ok += clog towardzero dbl-64 0xb.263a8p-4 0xb.79c9bp-4 : 0xe.9520bab598bfp-28 0xc.cc140ac8b5f68p-4 : inexact-ok += clog upward dbl-64 0xb.263a8p-4 0xb.79c9bp-4 : 0xe.9520bab598bf8p-28 0xc.cc140ac8b5f7p-4 : inexact-ok += clog downward ldbl-96-intel 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf567p-28L 0xc.cc140ac8b5f6b2fp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf568p-28L 0xc.cc140ac8b5f6b2fp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf567p-28L 0xc.cc140ac8b5f6b2fp-4L : inexact-ok += clog upward ldbl-96-intel 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf568p-28L 0xc.cc140ac8b5f6b3p-4L : inexact-ok += clog downward ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf567p-28L 0xc.cc140ac8b5f6b2fp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf568p-28L 0xc.cc140ac8b5f6b2fp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf567p-28L 0xc.cc140ac8b5f6b2fp-4L : inexact-ok += clog upward ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf568p-28L 0xc.cc140ac8b5f6b3p-4L : inexact-ok += clog downward ldbl-128 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf5679804aac8b94bp-28L 0xc.cc140ac8b5f6b2f3713ce8c881e8p-4L : inexact-ok += clog tonearest ldbl-128 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf5679804aac8b94b8p-28L 0xc.cc140ac8b5f6b2f3713ce8c881fp-4L : inexact-ok += clog towardzero ldbl-128 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf5679804aac8b94bp-28L 0xc.cc140ac8b5f6b2f3713ce8c881e8p-4L : inexact-ok += clog upward ldbl-128 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf5679804aac8b94b8p-28L 0xc.cc140ac8b5f6b2f3713ce8c881fp-4L : inexact-ok += clog downward ldbl-128ibm 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf5679804aac8b94p-28L 0xc.cc140ac8b5f6b2f3713ce8c88p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf5679804aac8b94p-28L 0xc.cc140ac8b5f6b2f3713ce8c88p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf5679804aac8b94p-28L 0xc.cc140ac8b5f6b2f3713ce8c88p-4L : inexact-ok += clog upward ldbl-128ibm 0xb.263a8p-4L 0xb.79c9bp-4L : 0xe.9520bab598bf5679804aac8b98p-28L 0xc.cc140ac8b5f6b2f3713ce8c884p-4L : inexact-ok += clog downward flt-32 0xb.263a8p-4f 0xb.79c9ap-4f : 0x3.1b571cp-28f 0xc.cc13fp-4f : inexact-ok += clog tonearest flt-32 0xb.263a8p-4f 0xb.79c9ap-4f : 0x3.1b572p-28f 0xc.cc14p-4f : inexact-ok += clog towardzero flt-32 0xb.263a8p-4f 0xb.79c9ap-4f : 0x3.1b571cp-28f 0xc.cc13fp-4f : inexact-ok += clog upward flt-32 0xb.263a8p-4f 0xb.79c9ap-4f : 0x3.1b572p-28f 0xc.cc14p-4f : inexact-ok += clog downward dbl-64 0xb.263a8p-4 0xb.79c9ap-4 : 0x3.1b571f65909c4p-28 0xc.cc13ffa27b83p-4 : inexact-ok += clog tonearest dbl-64 0xb.263a8p-4 0xb.79c9ap-4 : 0x3.1b571f65909c4p-28 0xc.cc13ffa27b83p-4 : inexact-ok += clog towardzero dbl-64 0xb.263a8p-4 0xb.79c9ap-4 : 0x3.1b571f65909c4p-28 0xc.cc13ffa27b83p-4 : inexact-ok += clog upward dbl-64 0xb.263a8p-4 0xb.79c9ap-4 : 0x3.1b571f65909c6p-28 0xc.cc13ffa27b838p-4 : inexact-ok += clog downward ldbl-96-intel 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418cp-28L 0xc.cc13ffa27b83068p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c419p-28L 0xc.cc13ffa27b83069p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418cp-28L 0xc.cc13ffa27b83068p-4L : inexact-ok += clog upward ldbl-96-intel 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c419p-28L 0xc.cc13ffa27b83069p-4L : inexact-ok += clog downward ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418cp-28L 0xc.cc13ffa27b83068p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c419p-28L 0xc.cc13ffa27b83069p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418cp-28L 0xc.cc13ffa27b83068p-4L : inexact-ok += clog upward ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c419p-28L 0xc.cc13ffa27b83069p-4L : inexact-ok += clog downward ldbl-128 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418f74d22438a06ep-28L 0xc.cc13ffa27b83068999546bd179cp-4L : inexact-ok += clog tonearest ldbl-128 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418f74d22438a06ep-28L 0xc.cc13ffa27b83068999546bd179cp-4L : inexact-ok += clog towardzero ldbl-128 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418f74d22438a06ep-28L 0xc.cc13ffa27b83068999546bd179cp-4L : inexact-ok += clog upward ldbl-128 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418f74d22438a07p-28L 0xc.cc13ffa27b83068999546bd179c8p-4L : inexact-ok += clog downward ldbl-128ibm 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418f74d22438ap-28L 0xc.cc13ffa27b83068999546bd178p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418f74d22438ap-28L 0xc.cc13ffa27b83068999546bd178p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418f74d22438ap-28L 0xc.cc13ffa27b83068999546bd178p-4L : inexact-ok += clog upward ldbl-128ibm 0xb.263a8p-4L 0xb.79c9ap-4L : 0x3.1b571f65909c418f74d22438a1p-28L 0xc.cc13ffa27b83068999546bd17cp-4L : inexact-ok += clog downward dbl-64 0xb.263a8p-4 0xb.79c9a417bb8p-4 : 0x6.0acf1346a8dd4p-28 0xc.cc14027c93bdp-4 : inexact-ok += clog tonearest dbl-64 0xb.263a8p-4 0xb.79c9a417bb8p-4 : 0x6.0acf1346a8dd8p-28 0xc.cc14027c93bd8p-4 : inexact-ok += clog towardzero dbl-64 0xb.263a8p-4 0xb.79c9a417bb8p-4 : 0x6.0acf1346a8dd4p-28 0xc.cc14027c93bdp-4 : inexact-ok += clog upward dbl-64 0xb.263a8p-4 0xb.79c9a417bb8p-4 : 0x6.0acf1346a8dd8p-28 0xc.cc14027c93bd8p-4 : inexact-ok += clog downward ldbl-96-intel 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a78p-28L 0xc.cc14027c93bd7a9p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a78p-28L 0xc.cc14027c93bd7aap-4L : inexact-ok += clog towardzero ldbl-96-intel 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a78p-28L 0xc.cc14027c93bd7a9p-4L : inexact-ok += clog upward ldbl-96-intel 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a8p-28L 0xc.cc14027c93bd7aap-4L : inexact-ok += clog downward ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a78p-28L 0xc.cc14027c93bd7a9p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a78p-28L 0xc.cc14027c93bd7aap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a78p-28L 0xc.cc14027c93bd7a9p-4L : inexact-ok += clog upward ldbl-96-m68k 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a8p-28L 0xc.cc14027c93bd7aap-4L : inexact-ok += clog downward ldbl-128 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a7870774627d84cp-28L 0xc.cc14027c93bd7a9b2f7306892e28p-4L : inexact-ok += clog tonearest ldbl-128 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a7870774627d84cp-28L 0xc.cc14027c93bd7a9b2f7306892e28p-4L : inexact-ok += clog towardzero ldbl-128 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a7870774627d84cp-28L 0xc.cc14027c93bd7a9b2f7306892e28p-4L : inexact-ok += clog upward ldbl-128 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a7870774627d85p-28L 0xc.cc14027c93bd7a9b2f7306892e3p-4L : inexact-ok += clog downward ldbl-128ibm 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a7870774627d8p-28L 0xc.cc14027c93bd7a9b2f7306892cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a7870774627d8p-28L 0xc.cc14027c93bd7a9b2f7306893p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a7870774627d8p-28L 0xc.cc14027c93bd7a9b2f7306892cp-4L : inexact-ok += clog upward ldbl-128ibm 0xb.263a8p-4L 0xb.79c9a417bb8p-4L : 0x6.0acf1346a8dd7a7870774627dap-28L 0xc.cc14027c93bd7a9b2f7306893p-4L : inexact-ok += clog downward flt-32 0xb.263a7p-4f 0xb.79c9bp-4f : 0x3.6ee64cp-28f 0xc.cc141p-4f : inexact-ok += clog tonearest flt-32 0xb.263a7p-4f 0xb.79c9bp-4f : 0x3.6ee65p-28f 0xc.cc141p-4f : inexact-ok += clog towardzero flt-32 0xb.263a7p-4f 0xb.79c9bp-4f : 0x3.6ee64cp-28f 0xc.cc141p-4f : inexact-ok += clog upward flt-32 0xb.263a7p-4f 0xb.79c9bp-4f : 0x3.6ee65p-28f 0xc.cc142p-4f : inexact-ok += clog downward dbl-64 0xb.263a7p-4 0xb.79c9bp-4 : 0x3.6ee64f4368f66p-28 0xc.cc1416427f998p-4 : inexact-ok += clog tonearest dbl-64 0xb.263a7p-4 0xb.79c9bp-4 : 0x3.6ee64f4368f68p-28 0xc.cc1416427f9ap-4 : inexact-ok += clog towardzero dbl-64 0xb.263a7p-4 0xb.79c9bp-4 : 0x3.6ee64f4368f66p-28 0xc.cc1416427f998p-4 : inexact-ok += clog upward dbl-64 0xb.263a7p-4 0xb.79c9bp-4 : 0x3.6ee64f4368f68p-28 0xc.cc1416427f9ap-4 : inexact-ok += clog downward ldbl-96-intel 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b4p-28L 0xc.cc1416427f99c7p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b8p-28L 0xc.cc1416427f99c71p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b4p-28L 0xc.cc1416427f99c7p-4L : inexact-ok += clog upward ldbl-96-intel 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b8p-28L 0xc.cc1416427f99c71p-4L : inexact-ok += clog downward ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b4p-28L 0xc.cc1416427f99c7p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b8p-28L 0xc.cc1416427f99c71p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b4p-28L 0xc.cc1416427f99c7p-4L : inexact-ok += clog upward ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b8p-28L 0xc.cc1416427f99c71p-4L : inexact-ok += clog downward ldbl-128 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b713c549ba2c8p-28L 0xc.cc1416427f99c70d14a3c470d768p-4L : inexact-ok += clog tonearest ldbl-128 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b713c549ba2c82p-28L 0xc.cc1416427f99c70d14a3c470d77p-4L : inexact-ok += clog towardzero ldbl-128 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b713c549ba2c8p-28L 0xc.cc1416427f99c70d14a3c470d768p-4L : inexact-ok += clog upward ldbl-128 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b713c549ba2c82p-28L 0xc.cc1416427f99c70d14a3c470d77p-4L : inexact-ok += clog downward ldbl-128ibm 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b713c549ba2cp-28L 0xc.cc1416427f99c70d14a3c470d4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b713c549ba2dp-28L 0xc.cc1416427f99c70d14a3c470d8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b713c549ba2cp-28L 0xc.cc1416427f99c70d14a3c470d4p-4L : inexact-ok += clog upward ldbl-128ibm 0xb.263a7p-4L 0xb.79c9bp-4L : 0x3.6ee64f4368f676b713c549ba2dp-28L 0xc.cc1416427f99c70d14a3c470d8p-4L : inexact-ok += clog downward flt-32 0xb.263a7p-4f 0xb.79c9ap-4f : -0x8.0ae36p-28f 0xc.cc14p-4f : inexact-ok += clog tonearest flt-32 0xb.263a7p-4f 0xb.79c9ap-4f : -0x8.0ae36p-28f 0xc.cc141p-4f : inexact-ok += clog towardzero flt-32 0xb.263a7p-4f 0xb.79c9ap-4f : -0x8.0ae35p-28f 0xc.cc14p-4f : inexact-ok += clog upward flt-32 0xb.263a7p-4f 0xb.79c9ap-4f : -0x8.0ae35p-28f 0xc.cc141p-4f : inexact-ok += clog downward dbl-64 0xb.263a7p-4 0xb.79c9ap-4 : -0x8.0ae35c0aeac4p-28 0xc.cc140b1c45268p-4 : inexact-ok += clog tonearest dbl-64 0xb.263a7p-4 0xb.79c9ap-4 : -0x8.0ae35c0aeac38p-28 0xc.cc140b1c45268p-4 : inexact-ok += clog towardzero dbl-64 0xb.263a7p-4 0xb.79c9ap-4 : -0x8.0ae35c0aeac38p-28 0xc.cc140b1c45268p-4 : inexact-ok += clog upward dbl-64 0xb.263a7p-4 0xb.79c9ap-4 : -0x8.0ae35c0aeac38p-28 0xc.cc140b1c4527p-4 : inexact-ok += clog downward ldbl-96-intel 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381fp-28L 0xc.cc140b1c452690cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381fp-28L 0xc.cc140b1c452690dp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381ep-28L 0xc.cc140b1c452690cp-4L : inexact-ok += clog upward ldbl-96-intel 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381ep-28L 0xc.cc140b1c452690dp-4L : inexact-ok += clog downward ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381fp-28L 0xc.cc140b1c452690cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381fp-28L 0xc.cc140b1c452690dp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381ep-28L 0xc.cc140b1c452690cp-4L : inexact-ok += clog upward ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381ep-28L 0xc.cc140b1c452690dp-4L : inexact-ok += clog downward ldbl-128 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381efc10753cef3fp-28L 0xc.cc140b1c452690cbcbc599a7dbp-4L : inexact-ok += clog tonearest ldbl-128 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381efc10753cef3fp-28L 0xc.cc140b1c452690cbcbc599a7dbp-4L : inexact-ok += clog towardzero ldbl-128 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381efc10753cef3e8p-28L 0xc.cc140b1c452690cbcbc599a7dbp-4L : inexact-ok += clog upward ldbl-128 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381efc10753cef3e8p-28L 0xc.cc140b1c452690cbcbc599a7db08p-4L : inexact-ok += clog downward ldbl-128ibm 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381efc10753cef4p-28L 0xc.cc140b1c452690cbcbc599a7d8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381efc10753cef4p-28L 0xc.cc140b1c452690cbcbc599a7dcp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381efc10753cefp-28L 0xc.cc140b1c452690cbcbc599a7d8p-4L : inexact-ok += clog upward ldbl-128ibm 0xb.263a7p-4L 0xb.79c9ap-4L : -0x8.0ae35c0aeac381efc10753cefp-28L 0xc.cc140b1c452690cbcbc599a7dcp-4L : inexact-ok += clog downward dbl-64 0xb.263a7p-4 0xb.79c9a417bb8p-4 : -0x5.1b6b641286a1cp-28 0xc.cc140df65d608p-4 : inexact-ok += clog tonearest dbl-64 0xb.263a7p-4 0xb.79c9a417bb8p-4 : -0x5.1b6b641286a1cp-28 0xc.cc140df65d61p-4 : inexact-ok += clog towardzero dbl-64 0xb.263a7p-4 0xb.79c9a417bb8p-4 : -0x5.1b6b641286a18p-28 0xc.cc140df65d608p-4 : inexact-ok += clog upward dbl-64 0xb.263a7p-4 0xb.79c9a417bb8p-4 : -0x5.1b6b641286a18p-28 0xc.cc140df65d61p-4 : inexact-ok += clog downward ldbl-96-intel 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2bp-28L 0xc.cc140df65d60e6ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2bp-28L 0xc.cc140df65d60e6ap-4L : inexact-ok += clog towardzero ldbl-96-intel 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2a8p-28L 0xc.cc140df65d60e6ap-4L : inexact-ok += clog upward ldbl-96-intel 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2a8p-28L 0xc.cc140df65d60e6bp-4L : inexact-ok += clog downward ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2bp-28L 0xc.cc140df65d60e6ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2bp-28L 0xc.cc140df65d60e6ap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2a8p-28L 0xc.cc140df65d60e6ap-4L : inexact-ok += clog upward ldbl-96-m68k 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2a8p-28L 0xc.cc140df65d60e6bp-4L : inexact-ok += clog downward ldbl-128 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2afb24c0155f64p-28L 0xc.cc140df65d60e6a3fd37b0190698p-4L : inexact-ok += clog tonearest ldbl-128 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2afb24c0155f63cp-28L 0xc.cc140df65d60e6a3fd37b0190698p-4L : inexact-ok += clog towardzero ldbl-128 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2afb24c0155f63cp-28L 0xc.cc140df65d60e6a3fd37b0190698p-4L : inexact-ok += clog upward ldbl-128 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2afb24c0155f63cp-28L 0xc.cc140df65d60e6a3fd37b01906ap-4L : inexact-ok += clog downward ldbl-128ibm 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2afb24c0155f8p-28L 0xc.cc140df65d60e6a3fd37b01904p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2afb24c0155f6p-28L 0xc.cc140df65d60e6a3fd37b01908p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2afb24c0155f6p-28L 0xc.cc140df65d60e6a3fd37b01904p-4L : inexact-ok += clog upward ldbl-128ibm 0xb.263a7p-4L 0xb.79c9a417bb8p-4L : -0x5.1b6b641286a1a2afb24c0155f6p-28L 0xc.cc140df65d60e6a3fd37b01908p-4L : inexact-ok += clog downward dbl-64 0xb.263a77543bp-4 0xb.79c9bp-4 : 0x8.8a51ade23714p-28 0xc.cc141100cdac8p-4 : inexact-ok += clog tonearest dbl-64 0xb.263a77543bp-4 0xb.79c9bp-4 : 0x8.8a51ade23714p-28 0xc.cc141100cdadp-4 : inexact-ok += clog towardzero dbl-64 0xb.263a77543bp-4 0xb.79c9bp-4 : 0x8.8a51ade23714p-28 0xc.cc141100cdac8p-4 : inexact-ok += clog upward dbl-64 0xb.263a77543bp-4 0xb.79c9bp-4 : 0x8.8a51ade237148p-28 0xc.cc141100cdadp-4 : inexact-ok += clog downward ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412dp-28L 0xc.cc141100cdacc25p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412dp-28L 0xc.cc141100cdacc26p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412dp-28L 0xc.cc141100cdacc25p-4L : inexact-ok += clog upward ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412ep-28L 0xc.cc141100cdacc26p-4L : inexact-ok += clog downward ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412dp-28L 0xc.cc141100cdacc25p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412dp-28L 0xc.cc141100cdacc26p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412dp-28L 0xc.cc141100cdacc25p-4L : inexact-ok += clog upward ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412ep-28L 0xc.cc141100cdacc26p-4L : inexact-ok += clog downward ldbl-128 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412d5e6daa46bc92p-28L 0xc.cc141100cdacc25f2eeef6e272p-4L : inexact-ok += clog tonearest ldbl-128 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412d5e6daa46bc92p-28L 0xc.cc141100cdacc25f2eeef6e272p-4L : inexact-ok += clog towardzero ldbl-128 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412d5e6daa46bc92p-28L 0xc.cc141100cdacc25f2eeef6e272p-4L : inexact-ok += clog upward ldbl-128 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412d5e6daa46bc928p-28L 0xc.cc141100cdacc25f2eeef6e27208p-4L : inexact-ok += clog downward ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412d5e6daa46bc8p-28L 0xc.cc141100cdacc25f2eeef6e27p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412d5e6daa46bc8p-28L 0xc.cc141100cdacc25f2eeef6e274p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412d5e6daa46bc8p-28L 0xc.cc141100cdacc25f2eeef6e27p-4L : inexact-ok += clog upward ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9bp-4L : 0x8.8a51ade2371412d5e6daa46bccp-28L 0xc.cc141100cdacc25f2eeef6e274p-4L : inexact-ok += clog downward dbl-64 0xb.263a77543bp-4 0xb.79c9ap-4 : -0x2.ef77f618a98acp-28 0xc.cc1405da9339p-4 : inexact-ok += clog tonearest dbl-64 0xb.263a77543bp-4 0xb.79c9ap-4 : -0x2.ef77f618a98aap-28 0xc.cc1405da93398p-4 : inexact-ok += clog towardzero dbl-64 0xb.263a77543bp-4 0xb.79c9ap-4 : -0x2.ef77f618a98aap-28 0xc.cc1405da9339p-4 : inexact-ok += clog upward dbl-64 0xb.263a77543bp-4 0xb.79c9ap-4 : -0x2.ef77f618a98aap-28 0xc.cc1405da93398p-4 : inexact-ok += clog downward ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa414p-28L 0xc.cc1405da933955fp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa41p-28L 0xc.cc1405da933956p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa41p-28L 0xc.cc1405da933955fp-4L : inexact-ok += clog upward ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa41p-28L 0xc.cc1405da933956p-4L : inexact-ok += clog downward ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa414p-28L 0xc.cc1405da933955fp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa41p-28L 0xc.cc1405da933956p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa41p-28L 0xc.cc1405da933955fp-4L : inexact-ok += clog upward ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa41p-28L 0xc.cc1405da933956p-4L : inexact-ok += clog downward ldbl-128 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa411d885e0905658p-28L 0xc.cc1405da933955fe1bea57ec4828p-4L : inexact-ok += clog tonearest ldbl-128 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa411d885e0905656p-28L 0xc.cc1405da933955fe1bea57ec4828p-4L : inexact-ok += clog towardzero ldbl-128 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa411d885e0905656p-28L 0xc.cc1405da933955fe1bea57ec4828p-4L : inexact-ok += clog upward ldbl-128 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa411d885e0905656p-28L 0xc.cc1405da933955fe1bea57ec483p-4L : inexact-ok += clog downward ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa411d885e09057p-28L 0xc.cc1405da933955fe1bea57ec48p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa411d885e09056p-28L 0xc.cc1405da933955fe1bea57ec48p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa411d885e09056p-28L 0xc.cc1405da933955fe1bea57ec48p-4L : inexact-ok += clog upward ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9ap-4L : -0x2.ef77f618a98aa411d885e09056p-28L 0xc.cc1405da933955fe1bea57ec4cp-4L : inexact-ok += clog downward dbl-64 0xb.263a77543bp-4 0xb.79c9a417bb8p-4 : -0x9.6000000000008p-88 0xc.cc1408b4ab738p-4 : inexact-ok += clog tonearest dbl-64 0xb.263a77543bp-4 0xb.79c9a417bb8p-4 : -0x9.6p-88 0xc.cc1408b4ab738p-4 : inexact-ok += clog towardzero dbl-64 0xb.263a77543bp-4 0xb.79c9a417bb8p-4 : -0x9.6p-88 0xc.cc1408b4ab738p-4 : inexact-ok += clog upward dbl-64 0xb.263a77543bp-4 0xb.79c9a417bb8p-4 : -0x9.6p-88 0xc.cc1408b4ab74p-4 : inexact-ok += clog downward ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.600000000000001p-88L 0xc.cc1408b4ab73b9ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6p-88L 0xc.cc1408b4ab73b9bp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6p-88L 0xc.cc1408b4ab73b9ap-4L : inexact-ok += clog upward ldbl-96-intel 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6p-88L 0xc.cc1408b4ab73b9bp-4L : inexact-ok += clog downward ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.600000000000001p-88L 0xc.cc1408b4ab73b9ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6p-88L 0xc.cc1408b4ab73b9bp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6p-88L 0xc.cc1408b4ab73b9ap-4L : inexact-ok += clog upward ldbl-96-m68k 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6p-88L 0xc.cc1408b4ab73b9bp-4L : inexact-ok += clog downward ldbl-128 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6000000000000000000057e4p-88L 0xc.cc1408b4ab73b9ae86ebc76b4948p-4L : inexact-ok += clog tonearest ldbl-128 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6000000000000000000057e4p-88L 0xc.cc1408b4ab73b9ae86ebc76b495p-4L : inexact-ok += clog towardzero ldbl-128 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6000000000000000000057e3fff8p-88L 0xc.cc1408b4ab73b9ae86ebc76b4948p-4L : inexact-ok += clog upward ldbl-128 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6000000000000000000057e3fff8p-88L 0xc.cc1408b4ab73b9ae86ebc76b495p-4L : inexact-ok += clog downward ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6000000000000000000057e4p-88L 0xc.cc1408b4ab73b9ae86ebc76b48p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6000000000000000000057e4p-88L 0xc.cc1408b4ab73b9ae86ebc76b48p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6000000000000000000057e3fcp-88L 0xc.cc1408b4ab73b9ae86ebc76b48p-4L : inexact-ok += clog upward ldbl-128ibm 0xb.263a77543bp-4L 0xb.79c9a417bb8p-4L : -0x9.6000000000000000000057e3fcp-88L 0xc.cc1408b4ab73b9ae86ebc76b4cp-4L : inexact-ok +clog 0xfe961079616p-45 0x1bc37e09e6d1p-45 += clog downward flt-32 0x7.f4b088p-4f 0xd.e1bf1p-4f : 0xb.ada14p-28f 0x1.0ce5e8p+0f : inexact-ok += clog tonearest flt-32 0x7.f4b088p-4f 0xd.e1bf1p-4f : 0xb.ada14p-28f 0x1.0ce5eap+0f : inexact-ok += clog towardzero flt-32 0x7.f4b088p-4f 0xd.e1bf1p-4f : 0xb.ada14p-28f 0x1.0ce5e8p+0f : inexact-ok += clog upward flt-32 0x7.f4b088p-4f 0xd.e1bf1p-4f : 0xb.ada15p-28f 0x1.0ce5eap+0f : inexact-ok += clog downward dbl-64 0x7.f4b088p-4 0xd.e1bf1p-4 : 0xb.ada14179e60cp-28 0x1.0ce5e942bb5ddp+0 : inexact-ok += clog tonearest dbl-64 0x7.f4b088p-4 0xd.e1bf1p-4 : 0xb.ada14179e60c8p-28 0x1.0ce5e942bb5ddp+0 : inexact-ok += clog towardzero dbl-64 0x7.f4b088p-4 0xd.e1bf1p-4 : 0xb.ada14179e60cp-28 0x1.0ce5e942bb5ddp+0 : inexact-ok += clog upward dbl-64 0x7.f4b088p-4 0xd.e1bf1p-4 : 0xb.ada14179e60c8p-28 0x1.0ce5e942bb5dep+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c517p-28L 0x1.0ce5e942bb5dd1ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c517p-28L 0x1.0ce5e942bb5dd1a2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c517p-28L 0x1.0ce5e942bb5dd1ap+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c518p-28L 0x1.0ce5e942bb5dd1a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c517p-28L 0x1.0ce5e942bb5dd1ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c517p-28L 0x1.0ce5e942bb5dd1a2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c517p-28L 0x1.0ce5e942bb5dd1ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c518p-28L 0x1.0ce5e942bb5dd1a2p+0L : inexact-ok += clog downward ldbl-128 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c51750f588eeb609p-28L 0x1.0ce5e942bb5dd1a13487600e818ep+0L : inexact-ok += clog tonearest ldbl-128 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c51750f588eeb6098p-28L 0x1.0ce5e942bb5dd1a13487600e818fp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c51750f588eeb609p-28L 0x1.0ce5e942bb5dd1a13487600e818ep+0L : inexact-ok += clog upward ldbl-128 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c51750f588eeb6098p-28L 0x1.0ce5e942bb5dd1a13487600e818fp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c51750f588eeb6p-28L 0x1.0ce5e942bb5dd1a13487600e818p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c51750f588eeb6p-28L 0x1.0ce5e942bb5dd1a13487600e818p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c51750f588eeb6p-28L 0x1.0ce5e942bb5dd1a13487600e818p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bf1p-4L : 0xb.ada14179e60c51750f588eeb64p-28L 0x1.0ce5e942bb5dd1a13487600e82p+0L : inexact-ok += clog downward flt-32 0x7.f4b088p-4f 0xd.e1bfp-4f : -0x2.341dcp-28f 0x1.0ce5e8p+0f : inexact-ok += clog tonearest flt-32 0x7.f4b088p-4f 0xd.e1bfp-4f : -0x2.341dcp-28f 0x1.0ce5e8p+0f : inexact-ok += clog towardzero flt-32 0x7.f4b088p-4f 0xd.e1bfp-4f : -0x2.341dbcp-28f 0x1.0ce5e8p+0f : inexact-ok += clog upward flt-32 0x7.f4b088p-4f 0xd.e1bfp-4f : -0x2.341dbcp-28f 0x1.0ce5eap+0f : inexact-ok += clog downward dbl-64 0x7.f4b088p-4 0xd.e1bfp-4 : -0x2.341dbe4db1312p-28 0x1.0ce5e8c370559p+0 : inexact-ok += clog tonearest dbl-64 0x7.f4b088p-4 0xd.e1bfp-4 : -0x2.341dbe4db1312p-28 0x1.0ce5e8c37055ap+0 : inexact-ok += clog towardzero dbl-64 0x7.f4b088p-4 0xd.e1bfp-4 : -0x2.341dbe4db131p-28 0x1.0ce5e8c370559p+0 : inexact-ok += clog upward dbl-64 0x7.f4b088p-4 0xd.e1bfp-4 : -0x2.341dbe4db131p-28 0x1.0ce5e8c37055ap+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131189p-28L 0x1.0ce5e8c370559d02p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188cp-28L 0x1.0ce5e8c370559d02p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188cp-28L 0x1.0ce5e8c370559d02p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188cp-28L 0x1.0ce5e8c370559d04p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131189p-28L 0x1.0ce5e8c370559d02p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188cp-28L 0x1.0ce5e8c370559d02p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188cp-28L 0x1.0ce5e8c370559d02p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188cp-28L 0x1.0ce5e8c370559d04p+0L : inexact-ok += clog downward ldbl-128 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188dd8d3820fc05cp-28L 0x1.0ce5e8c370559d0226ee03581da1p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188dd8d3820fc05cp-28L 0x1.0ce5e8c370559d0226ee03581da1p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188dd8d3820fc05ap-28L 0x1.0ce5e8c370559d0226ee03581da1p+0L : inexact-ok += clog upward ldbl-128 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188dd8d3820fc05ap-28L 0x1.0ce5e8c370559d0226ee03581da2p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188dd8d3820fc1p-28L 0x1.0ce5e8c370559d0226ee03581d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188dd8d3820fcp-28L 0x1.0ce5e8c370559d0226ee03581d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188dd8d3820fcp-28L 0x1.0ce5e8c370559d0226ee03581d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bfp-4L : -0x2.341dbe4db131188dd8d3820fcp-28L 0x1.0ce5e8c370559d0226ee03581ep+0L : inexact-ok += clog downward dbl-64 0x7.f4b088p-4 0xd.e1bf04f3688p-4 : 0x2.178131b58ac86p-28 0x1.0ce5e8ead39abp+0 : inexact-ok += clog tonearest dbl-64 0x7.f4b088p-4 0xd.e1bf04f3688p-4 : 0x2.178131b58ac88p-28 0x1.0ce5e8ead39abp+0 : inexact-ok += clog towardzero dbl-64 0x7.f4b088p-4 0xd.e1bf04f3688p-4 : 0x2.178131b58ac86p-28 0x1.0ce5e8ead39abp+0 : inexact-ok += clog upward dbl-64 0x7.f4b088p-4 0xd.e1bf04f3688p-4 : 0x2.178131b58ac88p-28 0x1.0ce5e8ead39acp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a8p-28L 0x1.0ce5e8ead39ab07p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a8p-28L 0x1.0ce5e8ead39ab07p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a8p-28L 0x1.0ce5e8ead39ab07p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877acp-28L 0x1.0ce5e8ead39ab072p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a8p-28L 0x1.0ce5e8ead39ab07p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a8p-28L 0x1.0ce5e8ead39ab07p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a8p-28L 0x1.0ce5e8ead39ab07p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877acp-28L 0x1.0ce5e8ead39ab072p+0L : inexact-ok += clog downward ldbl-128 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a9127ede92678p-28L 0x1.0ce5e8ead39ab0701a0909895cabp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a9127ede926782p-28L 0x1.0ce5e8ead39ab0701a0909895cacp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a9127ede92678p-28L 0x1.0ce5e8ead39ab0701a0909895cabp+0L : inexact-ok += clog upward ldbl-128 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a9127ede926782p-28L 0x1.0ce5e8ead39ab0701a0909895cacp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a9127ede9267p-28L 0x1.0ce5e8ead39ab0701a0909895c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a9127ede9268p-28L 0x1.0ce5e8ead39ab0701a0909895c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a9127ede9267p-28L 0x1.0ce5e8ead39ab0701a0909895c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f4b088p-4L 0xd.e1bf04f3688p-4L : 0x2.178131b58ac877a9127ede9268p-28L 0x1.0ce5e8ead39ab0701a0909895dp+0L : inexact-ok += clog downward flt-32 0x7.f4b08p-4f 0xd.e1bf1p-4f : 0x7.b349p-28f 0x1.0ce5e8p+0f : inexact-ok += clog tonearest flt-32 0x7.f4b08p-4f 0xd.e1bf1p-4f : 0x7.b34908p-28f 0x1.0ce5eap+0f : inexact-ok += clog towardzero flt-32 0x7.f4b08p-4f 0xd.e1bf1p-4f : 0x7.b349p-28f 0x1.0ce5e8p+0f : inexact-ok += clog upward flt-32 0x7.f4b08p-4f 0xd.e1bf1p-4f : 0x7.b34908p-28f 0x1.0ce5eap+0f : inexact-ok += clog downward dbl-64 0x7.f4b08p-4 0xd.e1bf1p-4 : 0x7.b349044b4728p-28 0x1.0ce5e9b1c955cp+0 : inexact-ok += clog tonearest dbl-64 0x7.f4b08p-4 0xd.e1bf1p-4 : 0x7.b349044b4728p-28 0x1.0ce5e9b1c955dp+0 : inexact-ok += clog towardzero dbl-64 0x7.f4b08p-4 0xd.e1bf1p-4 : 0x7.b349044b4728p-28 0x1.0ce5e9b1c955cp+0 : inexact-ok += clog upward dbl-64 0x7.f4b08p-4 0xd.e1bf1p-4 : 0x7.b349044b47284p-28 0x1.0ce5e9b1c955dp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b4728007p-28L 0x1.0ce5e9b1c955cb1ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b4728007p-28L 0x1.0ce5e9b1c955cb2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b4728007p-28L 0x1.0ce5e9b1c955cb1ep+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b47280078p-28L 0x1.0ce5e9b1c955cb2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b4728007p-28L 0x1.0ce5e9b1c955cb1ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b4728007p-28L 0x1.0ce5e9b1c955cb2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b4728007p-28L 0x1.0ce5e9b1c955cb1ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b47280078p-28L 0x1.0ce5e9b1c955cb2p+0L : inexact-ok += clog downward ldbl-128 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b472800712241d4f1a6ap-28L 0x1.0ce5e9b1c955cb1fefe0b8b93da2p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b472800712241d4f1a6a4p-28L 0x1.0ce5e9b1c955cb1fefe0b8b93da3p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b472800712241d4f1a6ap-28L 0x1.0ce5e9b1c955cb1fefe0b8b93da2p+0L : inexact-ok += clog upward ldbl-128 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b472800712241d4f1a6a4p-28L 0x1.0ce5e9b1c955cb1fefe0b8b93da3p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b472800712241d4f1a6p-28L 0x1.0ce5e9b1c955cb1fefe0b8b93d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b472800712241d4f1a6p-28L 0x1.0ce5e9b1c955cb1fefe0b8b93d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b472800712241d4f1a6p-28L 0x1.0ce5e9b1c955cb1fefe0b8b93d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bf1p-4L : 0x7.b349044b472800712241d4f1a8p-28L 0x1.0ce5e9b1c955cb1fefe0b8b93ep+0L : inexact-ok += clog downward flt-32 0x7.f4b08p-4f 0xd.e1bfp-4f : -0x6.2e7608p-28f 0x1.0ce5e8p+0f : inexact-ok += clog tonearest flt-32 0x7.f4b08p-4f 0xd.e1bfp-4f : -0x6.2e76p-28f 0x1.0ce5eap+0f : inexact-ok += clog towardzero flt-32 0x7.f4b08p-4f 0xd.e1bfp-4f : -0x6.2e76p-28f 0x1.0ce5e8p+0f : inexact-ok += clog upward flt-32 0x7.f4b08p-4f 0xd.e1bfp-4f : -0x6.2e76p-28f 0x1.0ce5eap+0f : inexact-ok += clog downward dbl-64 0x7.f4b08p-4 0xd.e1bfp-4 : -0x6.2e7602635f6b4p-28 0x1.0ce5e9327e4ddp+0 : inexact-ok += clog tonearest dbl-64 0x7.f4b08p-4 0xd.e1bfp-4 : -0x6.2e7602635f6b4p-28 0x1.0ce5e9327e4ddp+0 : inexact-ok += clog towardzero dbl-64 0x7.f4b08p-4 0xd.e1bfp-4 : -0x6.2e7602635f6bp-28 0x1.0ce5e9327e4ddp+0 : inexact-ok += clog upward dbl-64 0x7.f4b08p-4 0xd.e1bfp-4 : -0x6.2e7602635f6bp-28 0x1.0ce5e9327e4dep+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b213p-28L 0x1.0ce5e9327e4dd734p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b213p-28L 0x1.0ce5e9327e4dd736p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b2128p-28L 0x1.0ce5e9327e4dd734p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b2128p-28L 0x1.0ce5e9327e4dd736p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b213p-28L 0x1.0ce5e9327e4dd734p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b213p-28L 0x1.0ce5e9327e4dd736p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b2128p-28L 0x1.0ce5e9327e4dd734p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b2128p-28L 0x1.0ce5e9327e4dd736p+0L : inexact-ok += clog downward ldbl-128 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b212ec9e9d0b61d98p-28L 0x1.0ce5e9327e4dd7355a198a3f14b8p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b212ec9e9d0b61d98p-28L 0x1.0ce5e9327e4dd7355a198a3f14b8p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b212ec9e9d0b61d94p-28L 0x1.0ce5e9327e4dd7355a198a3f14b8p+0L : inexact-ok += clog upward ldbl-128 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b212ec9e9d0b61d94p-28L 0x1.0ce5e9327e4dd7355a198a3f14b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b212ec9e9d0b61ep-28L 0x1.0ce5e9327e4dd7355a198a3f148p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b212ec9e9d0b61ep-28L 0x1.0ce5e9327e4dd7355a198a3f148p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b212ec9e9d0b61cp-28L 0x1.0ce5e9327e4dd7355a198a3f148p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bfp-4L : -0x6.2e7602635f6b212ec9e9d0b61cp-28L 0x1.0ce5e9327e4dd7355a198a3f15p+0L : inexact-ok += clog downward dbl-64 0x7.f4b08p-4 0xd.e1bf04f3688p-4 : -0x1.e2d7103d5d4c7p-28 0x1.0ce5e959e192dp+0 : inexact-ok += clog tonearest dbl-64 0x7.f4b08p-4 0xd.e1bf04f3688p-4 : -0x1.e2d7103d5d4c7p-28 0x1.0ce5e959e192dp+0 : inexact-ok += clog towardzero dbl-64 0x7.f4b08p-4 0xd.e1bf04f3688p-4 : -0x1.e2d7103d5d4c6p-28 0x1.0ce5e959e192dp+0 : inexact-ok += clog upward dbl-64 0x7.f4b08p-4 0xd.e1bf04f3688p-4 : -0x1.e2d7103d5d4c6p-28 0x1.0ce5e959e192ep+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7cp-28L 0x1.0ce5e959e192d69cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7ap-28L 0x1.0ce5e959e192d69ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7ap-28L 0x1.0ce5e959e192d69cp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7ap-28L 0x1.0ce5e959e192d69ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7cp-28L 0x1.0ce5e959e192d69cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7ap-28L 0x1.0ce5e959e192d69ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7ap-28L 0x1.0ce5e959e192d69cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7ap-28L 0x1.0ce5e959e192d69ep+0L : inexact-ok += clog downward ldbl-128 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7aa06aabfdba54p-28L 0x1.0ce5e959e192d69dd3c94b440f52p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7aa06aabfdba54p-28L 0x1.0ce5e959e192d69dd3c94b440f52p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7aa06aabfdba53p-28L 0x1.0ce5e959e192d69dd3c94b440f52p+0L : inexact-ok += clog upward ldbl-128 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7aa06aabfdba53p-28L 0x1.0ce5e959e192d69dd3c94b440f53p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7aa06aabfdba8p-28L 0x1.0ce5e959e192d69dd3c94b440fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7aa06aabfdba8p-28L 0x1.0ce5e959e192d69dd3c94b440f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7aa06aabfdbap-28L 0x1.0ce5e959e192d69dd3c94b440fp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f4b08p-4L 0xd.e1bf04f3688p-4L : -0x1.e2d7103d5d4c6b7aa06aabfdbap-28L 0x1.0ce5e959e192d69dd3c94b440f8p+0L : inexact-ok += clog downward dbl-64 0x7.f4b083cb0bp-4 0xd.e1bf1p-4 : 0x9.962012460db3p-28 0x1.0ce5e97d217d9p+0 : inexact-ok += clog tonearest dbl-64 0x7.f4b083cb0bp-4 0xd.e1bf1p-4 : 0x9.962012460db3p-28 0x1.0ce5e97d217dap+0 : inexact-ok += clog towardzero dbl-64 0x7.f4b083cb0bp-4 0xd.e1bf1p-4 : 0x9.962012460db3p-28 0x1.0ce5e97d217d9p+0 : inexact-ok += clog upward dbl-64 0x7.f4b083cb0bp-4 0xd.e1bf1p-4 : 0x9.962012460db38p-28 0x1.0ce5e97d217dap+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322bp-28L 0x1.0ce5e97d217d9f1ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322cp-28L 0x1.0ce5e97d217d9f1ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322bp-28L 0x1.0ce5e97d217d9f1ep+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322cp-28L 0x1.0ce5e97d217d9f2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322bp-28L 0x1.0ce5e97d217d9f1ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322cp-28L 0x1.0ce5e97d217d9f1ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322bp-28L 0x1.0ce5e97d217d9f1ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322cp-28L 0x1.0ce5e97d217d9f2p+0L : inexact-ok += clog downward ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322ba846033893a3p-28L 0x1.0ce5e97d217d9f1e2d4fdf9ef625p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322ba846033893a3p-28L 0x1.0ce5e97d217d9f1e2d4fdf9ef626p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322ba846033893a3p-28L 0x1.0ce5e97d217d9f1e2d4fdf9ef625p+0L : inexact-ok += clog upward ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322ba846033893a38p-28L 0x1.0ce5e97d217d9f1e2d4fdf9ef626p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322ba8460338938p-28L 0x1.0ce5e97d217d9f1e2d4fdf9ef6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322ba846033893cp-28L 0x1.0ce5e97d217d9f1e2d4fdf9ef6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322ba8460338938p-28L 0x1.0ce5e97d217d9f1e2d4fdf9ef6p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bf1p-4L : 0x9.962012460db322ba846033893cp-28L 0x1.0ce5e97d217d9f1e2d4fdf9ef68p+0L : inexact-ok += clog downward dbl-64 0x7.f4b083cb0bp-4 0xd.e1bfp-4 : -0x4.4b9ef122c27d4p-28 0x1.0ce5e8fdd6758p+0 : inexact-ok += clog tonearest dbl-64 0x7.f4b083cb0bp-4 0xd.e1bfp-4 : -0x4.4b9ef122c27dp-28 0x1.0ce5e8fdd6759p+0 : inexact-ok += clog towardzero dbl-64 0x7.f4b083cb0bp-4 0xd.e1bfp-4 : -0x4.4b9ef122c27dp-28 0x1.0ce5e8fdd6758p+0 : inexact-ok += clog upward dbl-64 0x7.f4b083cb0bp-4 0xd.e1bfp-4 : -0x4.4b9ef122c27dp-28 0x1.0ce5e8fdd6759p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d0858p-28L 0x1.0ce5e8fdd6758c84p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d085p-28L 0x1.0ce5e8fdd6758c86p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d085p-28L 0x1.0ce5e8fdd6758c84p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d085p-28L 0x1.0ce5e8fdd6758c86p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d0858p-28L 0x1.0ce5e8fdd6758c84p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d085p-28L 0x1.0ce5e8fdd6758c86p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d085p-28L 0x1.0ce5e8fdd6758c84p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d085p-28L 0x1.0ce5e8fdd6758c86p+0L : inexact-ok += clog downward ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d08521b747c5c99e4p-28L 0x1.0ce5e8fdd6758c85ae3150dc3b6cp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d08521b747c5c99ep-28L 0x1.0ce5e8fdd6758c85ae3150dc3b6dp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d08521b747c5c99ep-28L 0x1.0ce5e8fdd6758c85ae3150dc3b6cp+0L : inexact-ok += clog upward ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d08521b747c5c99ep-28L 0x1.0ce5e8fdd6758c85ae3150dc3b6dp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d08521b747c5c9ap-28L 0x1.0ce5e8fdd6758c85ae3150dc3bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d08521b747c5c9ap-28L 0x1.0ce5e8fdd6758c85ae3150dc3b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d08521b747c5c98p-28L 0x1.0ce5e8fdd6758c85ae3150dc3bp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bfp-4L : -0x4.4b9ef122c27d08521b747c5c98p-28L 0x1.0ce5e8fdd6758c85ae3150dc3b8p+0L : inexact-ok += clog downward dbl-64 0x7.f4b083cb0bp-4 0xd.e1bf04f3688p-4 : 0x1.09fffffffffffp-84 0x1.0ce5e92539ba9p+0 : inexact-ok += clog tonearest dbl-64 0x7.f4b083cb0bp-4 0xd.e1bf04f3688p-4 : 0x1.0ap-84 0x1.0ce5e92539ba9p+0 : inexact-ok += clog towardzero dbl-64 0x7.f4b083cb0bp-4 0xd.e1bf04f3688p-4 : 0x1.09fffffffffffp-84 0x1.0ce5e92539ba9p+0 : inexact-ok += clog upward dbl-64 0x7.f4b083cb0bp-4 0xd.e1bf04f3688p-4 : 0x1.0ap-84 0x1.0ce5e92539baap+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09fffffffffffffep-84L 0x1.0ce5e92539ba956cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.0ap-84L 0x1.0ce5e92539ba956cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09fffffffffffffep-84L 0x1.0ce5e92539ba956cp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.0ap-84L 0x1.0ce5e92539ba956ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09fffffffffffffep-84L 0x1.0ce5e92539ba956cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.0ap-84L 0x1.0ce5e92539ba956cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09fffffffffffffep-84L 0x1.0ce5e92539ba956cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.0ap-84L 0x1.0ce5e92539ba956ep+0L : inexact-ok += clog downward ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09ffffffffffffffffffeeb9bfffp-84L 0x1.0ce5e92539ba956c5bdec4b68865p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09ffffffffffffffffffeeb9cp-84L 0x1.0ce5e92539ba956c5bdec4b68865p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09ffffffffffffffffffeeb9bfffp-84L 0x1.0ce5e92539ba956c5bdec4b68865p+0L : inexact-ok += clog upward ldbl-128 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09ffffffffffffffffffeeb9cp-84L 0x1.0ce5e92539ba956c5bdec4b68866p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09ffffffffffffffffffeeb9bf8p-84L 0x1.0ce5e92539ba956c5bdec4b688p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09ffffffffffffffffffeeb9cp-84L 0x1.0ce5e92539ba956c5bdec4b6888p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09ffffffffffffffffffeeb9bf8p-84L 0x1.0ce5e92539ba956c5bdec4b688p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f4b083cb0bp-4L 0xd.e1bf04f3688p-4L : 0x1.09ffffffffffffffffffeeb9cp-84L 0x1.0ce5e92539ba956c5bdec4b6888p+0L : inexact-ok +clog 0xa4722f19346cp-51 0x7f9631c5e7f07p-51 += clog downward flt-32 0x1.48e46p-4f 0xf.f2c64p-4f : 0x7.621198p-28f 0x1.7d8bc2p+0f : inexact-ok += clog tonearest flt-32 0x1.48e46p-4f 0xf.f2c64p-4f : 0x7.6211ap-28f 0x1.7d8bc4p+0f : inexact-ok += clog towardzero flt-32 0x1.48e46p-4f 0xf.f2c64p-4f : 0x7.621198p-28f 0x1.7d8bc2p+0f : inexact-ok += clog upward flt-32 0x1.48e46p-4f 0xf.f2c64p-4f : 0x7.6211ap-28f 0x1.7d8bc4p+0f : inexact-ok += clog downward dbl-64 0x1.48e46p-4 0xf.f2c64p-4 : 0x7.62119c97d77ep-28 0x1.7d8bc37c65a09p+0 : inexact-ok += clog tonearest dbl-64 0x1.48e46p-4 0xf.f2c64p-4 : 0x7.62119c97d77ep-28 0x1.7d8bc37c65a0ap+0 : inexact-ok += clog towardzero dbl-64 0x1.48e46p-4 0xf.f2c64p-4 : 0x7.62119c97d77ep-28 0x1.7d8bc37c65a09p+0 : inexact-ok += clog upward dbl-64 0x1.48e46p-4 0xf.f2c64p-4 : 0x7.62119c97d77e4p-28 0x1.7d8bc37c65a0ap+0 : inexact-ok += clog downward ldbl-96-intel 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d28p-28L 0x1.7d8bc37c65a09b4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d3p-28L 0x1.7d8bc37c65a09b42p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d28p-28L 0x1.7d8bc37c65a09b4p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d3p-28L 0x1.7d8bc37c65a09b42p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d28p-28L 0x1.7d8bc37c65a09b4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d3p-28L 0x1.7d8bc37c65a09b42p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d28p-28L 0x1.7d8bc37c65a09b4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d3p-28L 0x1.7d8bc37c65a09b42p+0L : inexact-ok += clog downward ldbl-128 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d2facbb453784fcp-28L 0x1.7d8bc37c65a09b41629a5b07eae7p+0L : inexact-ok += clog tonearest ldbl-128 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d2facbb453784fcp-28L 0x1.7d8bc37c65a09b41629a5b07eae8p+0L : inexact-ok += clog towardzero ldbl-128 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d2facbb453784fcp-28L 0x1.7d8bc37c65a09b41629a5b07eae7p+0L : inexact-ok += clog upward ldbl-128 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d2facbb453785p-28L 0x1.7d8bc37c65a09b41629a5b07eae8p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d2facbb453784p-28L 0x1.7d8bc37c65a09b41629a5b07ea8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d2facbb453784p-28L 0x1.7d8bc37c65a09b41629a5b07ebp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d2facbb453784p-28L 0x1.7d8bc37c65a09b41629a5b07ea8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.48e46p-4L 0xf.f2c64p-4L : 0x7.62119c97d77e1d2facbb453786p-28L 0x1.7d8bc37c65a09b41629a5b07ebp+0L : inexact-ok += clog downward flt-32 0x1.48e46p-4f 0xf.f2c63p-4f : -0x8.90b4ap-28f 0x1.7d8bc2p+0f : inexact-ok += clog tonearest flt-32 0x1.48e46p-4f 0xf.f2c63p-4f : -0x8.90b4ap-28f 0x1.7d8bc4p+0f : inexact-ok += clog towardzero flt-32 0x1.48e46p-4f 0xf.f2c63p-4f : -0x8.90b49p-28f 0x1.7d8bc2p+0f : inexact-ok += clog upward flt-32 0x1.48e46p-4f 0xf.f2c63p-4f : -0x8.90b49p-28f 0x1.7d8bc4p+0f : inexact-ok += clog downward dbl-64 0x1.48e46p-4 0xf.f2c63p-4 : -0x8.90b49c95d156p-28 0x1.7d8bc367d75a9p+0 : inexact-ok += clog tonearest dbl-64 0x1.48e46p-4 0xf.f2c63p-4 : -0x8.90b49c95d156p-28 0x1.7d8bc367d75aap+0 : inexact-ok += clog towardzero dbl-64 0x1.48e46p-4 0xf.f2c63p-4 : -0x8.90b49c95d1558p-28 0x1.7d8bc367d75a9p+0 : inexact-ok += clog upward dbl-64 0x1.48e46p-4 0xf.f2c63p-4 : -0x8.90b49c95d1558p-28 0x1.7d8bc367d75aap+0 : inexact-ok += clog downward ldbl-96-intel 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec4p-28L 0x1.7d8bc367d75a99bcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec4p-28L 0x1.7d8bc367d75a99bcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec3p-28L 0x1.7d8bc367d75a99bcp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec3p-28L 0x1.7d8bc367d75a99bep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec4p-28L 0x1.7d8bc367d75a99bcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec4p-28L 0x1.7d8bc367d75a99bcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec3p-28L 0x1.7d8bc367d75a99bcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec3p-28L 0x1.7d8bc367d75a99bep+0L : inexact-ok += clog downward ldbl-128 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec380447b281e12p-28L 0x1.7d8bc367d75a99bc93c7a07ce637p+0L : inexact-ok += clog tonearest ldbl-128 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec380447b281e12p-28L 0x1.7d8bc367d75a99bc93c7a07ce638p+0L : inexact-ok += clog towardzero ldbl-128 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec380447b281e118p-28L 0x1.7d8bc367d75a99bc93c7a07ce637p+0L : inexact-ok += clog upward ldbl-128 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec380447b281e118p-28L 0x1.7d8bc367d75a99bc93c7a07ce638p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec380447b281e4p-28L 0x1.7d8bc367d75a99bc93c7a07ce6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec380447b281ep-28L 0x1.7d8bc367d75a99bc93c7a07ce6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec380447b281ep-28L 0x1.7d8bc367d75a99bc93c7a07ce6p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.48e46p-4L 0xf.f2c63p-4L : -0x8.90b49c95d155ec380447b281ep-28L 0x1.7d8bc367d75a99bc93c7a07ce68p+0L : inexact-ok += clog downward dbl-64 0x1.48e46p-4 0xf.f2c638bcfe0ep-4 : 0x2.51057152cc662p-32 0x1.7d8bc373114bbp+0 : inexact-ok += clog tonearest dbl-64 0x1.48e46p-4 0xf.f2c638bcfe0ep-4 : 0x2.51057152cc662p-32 0x1.7d8bc373114bcp+0 : inexact-ok += clog towardzero dbl-64 0x1.48e46p-4 0xf.f2c638bcfe0ep-4 : 0x2.51057152cc662p-32 0x1.7d8bc373114bbp+0 : inexact-ok += clog upward dbl-64 0x1.48e46p-4 0xf.f2c638bcfe0ep-4 : 0x2.51057152cc664p-32 0x1.7d8bc373114bcp+0 : inexact-ok += clog downward ldbl-96-intel 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bcp-32L 0x1.7d8bc373114bbab8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bcp-32L 0x1.7d8bc373114bbab8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bcp-32L 0x1.7d8bc373114bbab8p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620cp-32L 0x1.7d8bc373114bbabap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bcp-32L 0x1.7d8bc373114bbab8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bcp-32L 0x1.7d8bc373114bbab8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bcp-32L 0x1.7d8bc373114bbab8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620cp-32L 0x1.7d8bc373114bbabap+0L : inexact-ok += clog downward ldbl-128 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bce22cf8cb1134p-32L 0x1.7d8bc373114bbab8d055c9d3374ap+0L : inexact-ok += clog tonearest ldbl-128 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bce22cf8cb1136p-32L 0x1.7d8bc373114bbab8d055c9d3374bp+0L : inexact-ok += clog towardzero ldbl-128 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bce22cf8cb1134p-32L 0x1.7d8bc373114bbab8d055c9d3374ap+0L : inexact-ok += clog upward ldbl-128 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bce22cf8cb1136p-32L 0x1.7d8bc373114bbab8d055c9d3374bp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bce22cf8cb11p-32L 0x1.7d8bc373114bbab8d055c9d337p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bce22cf8cb11p-32L 0x1.7d8bc373114bbab8d055c9d3378p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bce22cf8cb11p-32L 0x1.7d8bc373114bbab8d055c9d337p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.48e46p-4L 0xf.f2c638bcfe0ep-4L : 0x2.51057152cc6620bce22cf8cb12p-32L 0x1.7d8bc373114bbab8d055c9d3378p+0L : inexact-ok += clog downward flt-32 0x1.48e45ep-4f 0xf.f2c64p-4f : 0x7.38f51p-28f 0x1.7d8bc2p+0f : inexact-ok += clog tonearest flt-32 0x1.48e45ep-4f 0xf.f2c64p-4f : 0x7.38f51p-28f 0x1.7d8bc4p+0f : inexact-ok += clog towardzero flt-32 0x1.48e45ep-4f 0xf.f2c64p-4f : 0x7.38f51p-28f 0x1.7d8bc2p+0f : inexact-ok += clog upward flt-32 0x1.48e45ep-4f 0xf.f2c64p-4f : 0x7.38f518p-28f 0x1.7d8bc4p+0f : inexact-ok += clog downward dbl-64 0x1.48e45ep-4 0xf.f2c64p-4 : 0x7.38f510dd5ecep-28 0x1.7d8bc39c4b2cfp+0 : inexact-ok += clog tonearest dbl-64 0x1.48e45ep-4 0xf.f2c64p-4 : 0x7.38f510dd5ece4p-28 0x1.7d8bc39c4b2dp+0 : inexact-ok += clog towardzero dbl-64 0x1.48e45ep-4 0xf.f2c64p-4 : 0x7.38f510dd5ecep-28 0x1.7d8bc39c4b2cfp+0 : inexact-ok += clog upward dbl-64 0x1.48e45ep-4 0xf.f2c64p-4 : 0x7.38f510dd5ece4p-28 0x1.7d8bc39c4b2dp+0 : inexact-ok += clog downward ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece2378p-28L 0x1.7d8bc39c4b2cfe22p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece238p-28L 0x1.7d8bc39c4b2cfe24p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece2378p-28L 0x1.7d8bc39c4b2cfe22p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece238p-28L 0x1.7d8bc39c4b2cfe24p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece2378p-28L 0x1.7d8bc39c4b2cfe22p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece238p-28L 0x1.7d8bc39c4b2cfe24p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece2378p-28L 0x1.7d8bc39c4b2cfe22p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece238p-28L 0x1.7d8bc39c4b2cfe24p+0L : inexact-ok += clog downward ldbl-128 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece237f205b681afecp-28L 0x1.7d8bc39c4b2cfe237aa6c1f2f622p+0L : inexact-ok += clog tonearest ldbl-128 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece237f205b681afec4p-28L 0x1.7d8bc39c4b2cfe237aa6c1f2f622p+0L : inexact-ok += clog towardzero ldbl-128 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece237f205b681afecp-28L 0x1.7d8bc39c4b2cfe237aa6c1f2f622p+0L : inexact-ok += clog upward ldbl-128 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece237f205b681afec4p-28L 0x1.7d8bc39c4b2cfe237aa6c1f2f623p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece237f205b681afep-28L 0x1.7d8bc39c4b2cfe237aa6c1f2f6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece237f205b681afep-28L 0x1.7d8bc39c4b2cfe237aa6c1f2f6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece237f205b681afep-28L 0x1.7d8bc39c4b2cfe237aa6c1f2f6p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c64p-4L : 0x7.38f510dd5ece237f205b681bp-28L 0x1.7d8bc39c4b2cfe237aa6c1f2f68p+0L : inexact-ok += clog downward flt-32 0x1.48e45ep-4f 0xf.f2c63p-4f : -0x8.b9d13p-28f 0x1.7d8bc2p+0f : inexact-ok += clog tonearest flt-32 0x1.48e45ep-4f 0xf.f2c63p-4f : -0x8.b9d13p-28f 0x1.7d8bc4p+0f : inexact-ok += clog towardzero flt-32 0x1.48e45ep-4f 0xf.f2c63p-4f : -0x8.b9d12p-28f 0x1.7d8bc2p+0f : inexact-ok += clog upward flt-32 0x1.48e45ep-4f 0xf.f2c63p-4f : -0x8.b9d12p-28f 0x1.7d8bc4p+0f : inexact-ok += clog downward dbl-64 0x1.48e45ep-4 0xf.f2c63p-4 : -0x8.b9d128a23f268p-28 0x1.7d8bc387bce71p+0 : inexact-ok += clog tonearest dbl-64 0x1.48e45ep-4 0xf.f2c63p-4 : -0x8.b9d128a23f268p-28 0x1.7d8bc387bce72p+0 : inexact-ok += clog towardzero dbl-64 0x1.48e45ep-4 0xf.f2c63p-4 : -0x8.b9d128a23f26p-28 0x1.7d8bc387bce71p+0 : inexact-ok += clog upward dbl-64 0x1.48e45ep-4 0xf.f2c63p-4 : -0x8.b9d128a23f26p-28 0x1.7d8bc387bce72p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26613p-28L 0x1.7d8bc387bce71c34p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26613p-28L 0x1.7d8bc387bce71c36p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612p-28L 0x1.7d8bc387bce71c34p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612p-28L 0x1.7d8bc387bce71c36p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26613p-28L 0x1.7d8bc387bce71c34p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26613p-28L 0x1.7d8bc387bce71c36p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612p-28L 0x1.7d8bc387bce71c34p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612p-28L 0x1.7d8bc387bce71c36p+0L : inexact-ok += clog downward ldbl-128 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612fe3ec7da515p-28L 0x1.7d8bc387bce71c350956dad54091p+0L : inexact-ok += clog tonearest ldbl-128 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612fe3ec7da514f8p-28L 0x1.7d8bc387bce71c350956dad54091p+0L : inexact-ok += clog towardzero ldbl-128 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612fe3ec7da514f8p-28L 0x1.7d8bc387bce71c350956dad54091p+0L : inexact-ok += clog upward ldbl-128 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612fe3ec7da514f8p-28L 0x1.7d8bc387bce71c350956dad54092p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612fe3ec7da518p-28L 0x1.7d8bc387bce71c350956dad5408p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612fe3ec7da514p-28L 0x1.7d8bc387bce71c350956dad5408p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612fe3ec7da514p-28L 0x1.7d8bc387bce71c350956dad5408p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c63p-4L : -0x8.b9d128a23f26612fe3ec7da514p-28L 0x1.7d8bc387bce71c350956dad541p+0L : inexact-ok += clog downward dbl-64 0x1.48e45ep-4 0xf.f2c638bcfe0ep-4 : -0x4.0c34ca7e641e4p-36 0x1.7d8bc392f6d82p+0 : inexact-ok += clog tonearest dbl-64 0x1.48e45ep-4 0xf.f2c638bcfe0ep-4 : -0x4.0c34ca7e641e4p-36 0x1.7d8bc392f6d83p+0 : inexact-ok += clog towardzero dbl-64 0x1.48e45ep-4 0xf.f2c638bcfe0ep-4 : -0x4.0c34ca7e641ep-36 0x1.7d8bc392f6d82p+0 : inexact-ok += clog upward dbl-64 0x1.48e45ep-4 0xf.f2c638bcfe0ep-4 : -0x4.0c34ca7e641ep-36 0x1.7d8bc392f6d83p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d8p-36L 0x1.7d8bc392f6d82bfp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d8p-36L 0x1.7d8bc392f6d82bfp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36dp-36L 0x1.7d8bc392f6d82bfp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36dp-36L 0x1.7d8bc392f6d82bf2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d8p-36L 0x1.7d8bc392f6d82bfp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d8p-36L 0x1.7d8bc392f6d82bfp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36dp-36L 0x1.7d8bc392f6d82bfp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36dp-36L 0x1.7d8bc392f6d82bf2p+0L : inexact-ok += clog downward ldbl-128 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d6d1a79e22a3a8p-36L 0x1.7d8bc392f6d82bf0fac275640489p+0L : inexact-ok += clog tonearest ldbl-128 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d6d1a79e22a3a8p-36L 0x1.7d8bc392f6d82bf0fac27564048ap+0L : inexact-ok += clog towardzero ldbl-128 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d6d1a79e22a3a4p-36L 0x1.7d8bc392f6d82bf0fac275640489p+0L : inexact-ok += clog upward ldbl-128 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d6d1a79e22a3a4p-36L 0x1.7d8bc392f6d82bf0fac27564048ap+0L : inexact-ok += clog downward ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d6d1a79e22a4p-36L 0x1.7d8bc392f6d82bf0fac27564048p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d6d1a79e22a4p-36L 0x1.7d8bc392f6d82bf0fac27564048p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d6d1a79e22a2p-36L 0x1.7d8bc392f6d82bf0fac27564048p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.48e45ep-4L 0xf.f2c638bcfe0ep-4L : -0x4.0c34ca7e641e36d6d1a79e22a2p-36L 0x1.7d8bc392f6d82bf0fac2756405p+0L : inexact-ok += clog downward dbl-64 0x1.48e45e3268d8p-4 0xf.f2c64p-4 : 0x7.3d0145a433a64p-28 0x1.7d8bc399273a3p+0 : inexact-ok += clog tonearest dbl-64 0x1.48e45e3268d8p-4 0xf.f2c64p-4 : 0x7.3d0145a433a64p-28 0x1.7d8bc399273a3p+0 : inexact-ok += clog towardzero dbl-64 0x1.48e45e3268d8p-4 0xf.f2c64p-4 : 0x7.3d0145a433a64p-28 0x1.7d8bc399273a3p+0 : inexact-ok += clog upward dbl-64 0x1.48e45e3268d8p-4 0xf.f2c64p-4 : 0x7.3d0145a433a68p-28 0x1.7d8bc399273a4p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65aep-28L 0x1.7d8bc399273a3318p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65aep-28L 0x1.7d8bc399273a3318p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65aep-28L 0x1.7d8bc399273a3318p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65ae8p-28L 0x1.7d8bc399273a331ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65aep-28L 0x1.7d8bc399273a3318p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65aep-28L 0x1.7d8bc399273a3318p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65aep-28L 0x1.7d8bc399273a3318p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65ae8p-28L 0x1.7d8bc399273a331ap+0L : inexact-ok += clog downward ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65ae395afa5b8c9bp-28L 0x1.7d8bc399273a3318d052cff4cd1fp+0L : inexact-ok += clog tonearest ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65ae395afa5b8c9b4p-28L 0x1.7d8bc399273a3318d052cff4cd1fp+0L : inexact-ok += clog towardzero ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65ae395afa5b8c9bp-28L 0x1.7d8bc399273a3318d052cff4cd1fp+0L : inexact-ok += clog upward ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65ae395afa5b8c9b4p-28L 0x1.7d8bc399273a3318d052cff4cd2p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65ae395afa5b8c8p-28L 0x1.7d8bc399273a3318d052cff4cdp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65ae395afa5b8cap-28L 0x1.7d8bc399273a3318d052cff4cdp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65ae395afa5b8c8p-28L 0x1.7d8bc399273a3318d052cff4cdp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c64p-4L : 0x7.3d0145a433a65ae395afa5b8cap-28L 0x1.7d8bc399273a3318d052cff4cd8p+0L : inexact-ok += clog downward dbl-64 0x1.48e45e3268d8p-4 0xf.f2c63p-4 : -0x8.b5c4f3d35896p-28 0x1.7d8bc38498f44p+0 : inexact-ok += clog tonearest dbl-64 0x1.48e45e3268d8p-4 0xf.f2c63p-4 : -0x8.b5c4f3d358958p-28 0x1.7d8bc38498f45p+0 : inexact-ok += clog towardzero dbl-64 0x1.48e45e3268d8p-4 0xf.f2c63p-4 : -0x8.b5c4f3d358958p-28 0x1.7d8bc38498f44p+0 : inexact-ok += clog upward dbl-64 0x1.48e45e3268d8p-4 0xf.f2c63p-4 : -0x8.b5c4f3d358958p-28 0x1.7d8bc38498f45p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a55p-28L 0x1.7d8bc38498f44e0ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a54p-28L 0x1.7d8bc38498f44e0ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a54p-28L 0x1.7d8bc38498f44e0ep+0L : inexact-ok += clog upward ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a54p-28L 0x1.7d8bc38498f44e1p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a55p-28L 0x1.7d8bc38498f44e0ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a54p-28L 0x1.7d8bc38498f44e0ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a54p-28L 0x1.7d8bc38498f44e0ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a54p-28L 0x1.7d8bc38498f44e1p+0L : inexact-ok += clog downward ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a542ed7384b015cp-28L 0x1.7d8bc38498f44e0e38029e7659fcp+0L : inexact-ok += clog tonearest ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a542ed7384b015cp-28L 0x1.7d8bc38498f44e0e38029e7659fdp+0L : inexact-ok += clog towardzero ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a542ed7384b015b8p-28L 0x1.7d8bc38498f44e0e38029e7659fcp+0L : inexact-ok += clog upward ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a542ed7384b015b8p-28L 0x1.7d8bc38498f44e0e38029e7659fdp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a542ed7384b018p-28L 0x1.7d8bc38498f44e0e38029e76598p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a542ed7384b014p-28L 0x1.7d8bc38498f44e0e38029e765ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a542ed7384b014p-28L 0x1.7d8bc38498f44e0e38029e76598p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c63p-4L : -0x8.b5c4f3d35895a542ed7384b014p-28L 0x1.7d8bc38498f44e0e38029e765ap+0L : inexact-ok += clog downward dbl-64 0x1.48e45e3268d8p-4 0xf.f2c638bcfe0ep-4 : -0x7.e000000000004p-100 0x1.7d8bc38fd2e55p+0 : inexact-ok += clog tonearest dbl-64 0x1.48e45e3268d8p-4 0xf.f2c638bcfe0ep-4 : -0x7.ep-100 0x1.7d8bc38fd2e56p+0 : inexact-ok += clog towardzero dbl-64 0x1.48e45e3268d8p-4 0xf.f2c638bcfe0ep-4 : -0x7.ep-100 0x1.7d8bc38fd2e55p+0 : inexact-ok += clog upward dbl-64 0x1.48e45e3268d8p-4 0xf.f2c638bcfe0ep-4 : -0x7.ep-100 0x1.7d8bc38fd2e56p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.e000000000000008p-100L 0x1.7d8bc38fd2e55f7cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.ep-100L 0x1.7d8bc38fd2e55f7cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.ep-100L 0x1.7d8bc38fd2e55f7cp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.ep-100L 0x1.7d8bc38fd2e55f7ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.e000000000000008p-100L 0x1.7d8bc38fd2e55f7cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.ep-100L 0x1.7d8bc38fd2e55f7cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.ep-100L 0x1.7d8bc38fd2e55f7cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.ep-100L 0x1.7d8bc38fd2e55f7ep+0L : inexact-ok += clog downward ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.e00000000000000000000003e04p-100L 0x1.7d8bc38fd2e55f7cf91b07890cd6p+0L : inexact-ok += clog tonearest ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.e00000000000000000000003e04p-100L 0x1.7d8bc38fd2e55f7cf91b07890cd6p+0L : inexact-ok += clog towardzero ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.e00000000000000000000003e03cp-100L 0x1.7d8bc38fd2e55f7cf91b07890cd6p+0L : inexact-ok += clog upward ldbl-128 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.e00000000000000000000003e03cp-100L 0x1.7d8bc38fd2e55f7cf91b07890cd7p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.e00000000000000000000003e2p-100L 0x1.7d8bc38fd2e55f7cf91b07890c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.e00000000000000000000003ep-100L 0x1.7d8bc38fd2e55f7cf91b07890dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.e00000000000000000000003ep-100L 0x1.7d8bc38fd2e55f7cf91b07890c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.48e45e3268d8p-4L 0xf.f2c638bcfe0ep-4L : -0x7.e00000000000000000000003ep-100L 0x1.7d8bc38fd2e55f7cf91b07890dp+0L : inexact-ok +clog 0x10673dd0f2481p-51 0x7ef1d17cefbd2p-51 += clog downward flt-32 0x2.0ce7bcp-4f 0xf.de3a3p-4f : 0x9.ef4d8p-32f 0x1.713a1p+0f : inexact-ok += clog tonearest flt-32 0x2.0ce7bcp-4f 0xf.de3a3p-4f : 0x9.ef4d8p-32f 0x1.713a1p+0f : inexact-ok += clog towardzero flt-32 0x2.0ce7bcp-4f 0xf.de3a3p-4f : 0x9.ef4d8p-32f 0x1.713a1p+0f : inexact-ok += clog upward flt-32 0x2.0ce7bcp-4f 0xf.de3a3p-4f : 0x9.ef4d9p-32f 0x1.713a12p+0f : inexact-ok += clog downward dbl-64 0x2.0ce7bcp-4 0xf.de3a3p-4 : 0x9.ef4d879d4cda8p-32 0x1.713a10ce32cb1p+0 : inexact-ok += clog tonearest dbl-64 0x2.0ce7bcp-4 0xf.de3a3p-4 : 0x9.ef4d879d4cda8p-32 0x1.713a10ce32cb2p+0 : inexact-ok += clog towardzero dbl-64 0x2.0ce7bcp-4 0xf.de3a3p-4 : 0x9.ef4d879d4cda8p-32 0x1.713a10ce32cb1p+0 : inexact-ok += clog upward dbl-64 0x2.0ce7bcp-4 0xf.de3a3p-4 : 0x9.ef4d879d4cdbp-32 0x1.713a10ce32cb2p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99bp-32L 0x1.713a10ce32cb19dp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99bp-32L 0x1.713a10ce32cb19d2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99bp-32L 0x1.713a10ce32cb19dp+0L : inexact-ok += clog upward ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99cp-32L 0x1.713a10ce32cb19d2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99bp-32L 0x1.713a10ce32cb19dp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99bp-32L 0x1.713a10ce32cb19d2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99bp-32L 0x1.713a10ce32cb19dp+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99cp-32L 0x1.713a10ce32cb19d2p+0L : inexact-ok += clog downward ldbl-128 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99b051b113321188p-32L 0x1.713a10ce32cb19d16cd2997769c2p+0L : inexact-ok += clog tonearest ldbl-128 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99b051b11332119p-32L 0x1.713a10ce32cb19d16cd2997769c3p+0L : inexact-ok += clog towardzero ldbl-128 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99b051b113321188p-32L 0x1.713a10ce32cb19d16cd2997769c2p+0L : inexact-ok += clog upward ldbl-128 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99b051b11332119p-32L 0x1.713a10ce32cb19d16cd2997769c3p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99b051b113321p-32L 0x1.713a10ce32cb19d16cd29977698p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99b051b113321p-32L 0x1.713a10ce32cb19d16cd299776ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99b051b113321p-32L 0x1.713a10ce32cb19d16cd29977698p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a3p-4L : 0x9.ef4d879d4cda99b051b1133214p-32L 0x1.713a10ce32cb19d16cd299776ap+0L : inexact-ok += clog downward flt-32 0x2.0ce7bcp-4f 0xf.de3a2p-4f : -0xf.3f456p-28f 0x1.713a1p+0f : inexact-ok += clog tonearest flt-32 0x2.0ce7bcp-4f 0xf.de3a2p-4f : -0xf.3f456p-28f 0x1.713a1p+0f : inexact-ok += clog towardzero flt-32 0x2.0ce7bcp-4f 0xf.de3a2p-4f : -0xf.3f455p-28f 0x1.713a1p+0f : inexact-ok += clog upward flt-32 0x2.0ce7bcp-4f 0xf.de3a2p-4f : -0xf.3f455p-28f 0x1.713a12p+0f : inexact-ok += clog downward dbl-64 0x2.0ce7bcp-4 0xf.de3a2p-4 : -0xf.3f455e079c3bp-28 0x1.713a10ad644f3p+0 : inexact-ok += clog tonearest dbl-64 0x2.0ce7bcp-4 0xf.de3a2p-4 : -0xf.3f455e079c3a8p-28 0x1.713a10ad644f4p+0 : inexact-ok += clog towardzero dbl-64 0x2.0ce7bcp-4 0xf.de3a2p-4 : -0xf.3f455e079c3a8p-28 0x1.713a10ad644f3p+0 : inexact-ok += clog upward dbl-64 0x2.0ce7bcp-4 0xf.de3a2p-4 : -0xf.3f455e079c3a8p-28 0x1.713a10ad644f4p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a847p-28L 0x1.713a10ad644f3bd4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a847p-28L 0x1.713a10ad644f3bd4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846p-28L 0x1.713a10ad644f3bd4p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846p-28L 0x1.713a10ad644f3bd6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a847p-28L 0x1.713a10ad644f3bd4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a847p-28L 0x1.713a10ad644f3bd4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846p-28L 0x1.713a10ad644f3bd4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846p-28L 0x1.713a10ad644f3bd6p+0L : inexact-ok += clog downward ldbl-128 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846e67501c7bffbp-28L 0x1.713a10ad644f3bd40a8d0b88096ap+0L : inexact-ok += clog tonearest ldbl-128 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846e67501c7bffa8p-28L 0x1.713a10ad644f3bd40a8d0b88096ap+0L : inexact-ok += clog towardzero ldbl-128 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846e67501c7bffa8p-28L 0x1.713a10ad644f3bd40a8d0b88096ap+0L : inexact-ok += clog upward ldbl-128 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846e67501c7bffa8p-28L 0x1.713a10ad644f3bd40a8d0b88096bp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846e67501c7cp-28L 0x1.713a10ad644f3bd40a8d0b8809p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846e67501c7cp-28L 0x1.713a10ad644f3bd40a8d0b88098p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846e67501c7bfcp-28L 0x1.713a10ad644f3bd40a8d0b8809p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a2p-4L : -0xf.3f455e079c3a846e67501c7bfcp-28L 0x1.713a10ad644f3bd40a8d0b88098p+0L : inexact-ok += clog downward dbl-64 0x2.0ce7bcp-4 0xf.de3a2f9df7a4p-4 : 0x3.dbb69bf57919cp-32 0x1.713a10cd69c94p+0 : inexact-ok += clog tonearest dbl-64 0x2.0ce7bcp-4 0xf.de3a2f9df7a4p-4 : 0x3.dbb69bf57919cp-32 0x1.713a10cd69c94p+0 : inexact-ok += clog towardzero dbl-64 0x2.0ce7bcp-4 0xf.de3a2f9df7a4p-4 : 0x3.dbb69bf57919cp-32 0x1.713a10cd69c94p+0 : inexact-ok += clog upward dbl-64 0x2.0ce7bcp-4 0xf.de3a2f9df7a4p-4 : 0x3.dbb69bf57919ep-32 0x1.713a10cd69c95p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1fp-32L 0x1.713a10cd69c94002p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1fp-32L 0x1.713a10cd69c94004p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1fp-32L 0x1.713a10cd69c94002p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1f4p-32L 0x1.713a10cd69c94004p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1fp-32L 0x1.713a10cd69c94002p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1fp-32L 0x1.713a10cd69c94004p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1fp-32L 0x1.713a10cd69c94002p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1f4p-32L 0x1.713a10cd69c94004p+0L : inexact-ok += clog downward ldbl-128 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1f14a007fd641fcp-32L 0x1.713a10cd69c9400319c260e8bfdep+0L : inexact-ok += clog tonearest ldbl-128 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1f14a007fd641fep-32L 0x1.713a10cd69c9400319c260e8bfdfp+0L : inexact-ok += clog towardzero ldbl-128 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1f14a007fd641fcp-32L 0x1.713a10cd69c9400319c260e8bfdep+0L : inexact-ok += clog upward ldbl-128 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1f14a007fd641fep-32L 0x1.713a10cd69c9400319c260e8bfdfp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1f14a007fd641p-32L 0x1.713a10cd69c9400319c260e8bf8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1f14a007fd642p-32L 0x1.713a10cd69c9400319c260e8cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1f14a007fd641p-32L 0x1.713a10cd69c9400319c260e8bf8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.0ce7bcp-4L 0xf.de3a2f9df7a4p-4L : 0x3.dbb69bf57919c1f14a007fd642p-32L 0x1.713a10cd69c9400319c260e8cp+0L : inexact-ok += clog downward flt-32 0x2.0ce7b8p-4f 0xf.de3a3p-4f : 0x1.bbae9ep-32f 0x1.713a1p+0f : inexact-ok += clog tonearest flt-32 0x2.0ce7b8p-4f 0xf.de3a3p-4f : 0x1.bbaeap-32f 0x1.713a12p+0f : inexact-ok += clog towardzero flt-32 0x2.0ce7b8p-4f 0xf.de3a3p-4f : 0x1.bbae9ep-32f 0x1.713a1p+0f : inexact-ok += clog upward flt-32 0x2.0ce7b8p-4f 0xf.de3a3p-4f : 0x1.bbaeap-32f 0x1.713a12p+0f : inexact-ok += clog downward dbl-64 0x2.0ce7b8p-4 0xf.de3a3p-4 : 0x1.bbae9ffcff0a2p-32 0x1.713a110dabb3dp+0 : inexact-ok += clog tonearest dbl-64 0x2.0ce7b8p-4 0xf.de3a3p-4 : 0x1.bbae9ffcff0a3p-32 0x1.713a110dabb3dp+0 : inexact-ok += clog towardzero dbl-64 0x2.0ce7b8p-4 0xf.de3a3p-4 : 0x1.bbae9ffcff0a2p-32 0x1.713a110dabb3dp+0 : inexact-ok += clog upward dbl-64 0x2.0ce7b8p-4 0xf.de3a3p-4 : 0x1.bbae9ffcff0a3p-32 0x1.713a110dabb3ep+0 : inexact-ok += clog downward ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b28p-32L 0x1.713a110dabb3d6ecp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b2ap-32L 0x1.713a110dabb3d6ecp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b28p-32L 0x1.713a110dabb3d6ecp+0L : inexact-ok += clog upward ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b2ap-32L 0x1.713a110dabb3d6eep+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b28p-32L 0x1.713a110dabb3d6ecp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b2ap-32L 0x1.713a110dabb3d6ecp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b28p-32L 0x1.713a110dabb3d6ecp+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b2ap-32L 0x1.713a110dabb3d6eep+0L : inexact-ok += clog downward ldbl-128 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b290cf293fe5badp-32L 0x1.713a110dabb3d6ecd603aa88cb1ep+0L : inexact-ok += clog tonearest ldbl-128 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b290cf293fe5badp-32L 0x1.713a110dabb3d6ecd603aa88cb1fp+0L : inexact-ok += clog towardzero ldbl-128 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b290cf293fe5badp-32L 0x1.713a110dabb3d6ecd603aa88cb1ep+0L : inexact-ok += clog upward ldbl-128 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b290cf293fe5baep-32L 0x1.713a110dabb3d6ecd603aa88cb1fp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b290cf293fe5b8p-32L 0x1.713a110dabb3d6ecd603aa88cbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b290cf293fe5b8p-32L 0x1.713a110dabb3d6ecd603aa88cbp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b290cf293fe5b8p-32L 0x1.713a110dabb3d6ecd603aa88cbp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a3p-4L : 0x1.bbae9ffcff0a2b290cf293fe5cp-32L 0x1.713a110dabb3d6ecd603aa88cb8p+0L : inexact-ok += clog downward flt-32 0x2.0ce7b8p-4f 0xf.de3a2p-4f : -0xf.c27f5p-28f 0x1.713a1p+0f : inexact-ok += clog tonearest flt-32 0x2.0ce7b8p-4f 0xf.de3a2p-4f : -0xf.c27f5p-28f 0x1.713a1p+0f : inexact-ok += clog towardzero flt-32 0x2.0ce7b8p-4f 0xf.de3a2p-4f : -0xf.c27f4p-28f 0x1.713a1p+0f : inexact-ok += clog upward flt-32 0x2.0ce7b8p-4f 0xf.de3a2p-4f : -0xf.c27f4p-28f 0x1.713a12p+0f : inexact-ok += clog downward dbl-64 0x2.0ce7b8p-4 0xf.de3a2p-4 : -0xf.c27f4d85eafa8p-28 0x1.713a10ecdd383p+0 : inexact-ok += clog tonearest dbl-64 0x2.0ce7b8p-4 0xf.de3a2p-4 : -0xf.c27f4d85eafap-28 0x1.713a10ecdd383p+0 : inexact-ok += clog towardzero dbl-64 0x2.0ce7b8p-4 0xf.de3a2p-4 : -0xf.c27f4d85eafap-28 0x1.713a10ecdd383p+0 : inexact-ok += clog upward dbl-64 0x2.0ce7b8p-4 0xf.de3a2p-4 : -0xf.c27f4d85eafap-28 0x1.713a10ecdd384p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa367p-28L 0x1.713a10ecdd3836d4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa367p-28L 0x1.713a10ecdd3836d6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa366p-28L 0x1.713a10ecdd3836d4p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa366p-28L 0x1.713a10ecdd3836d6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa367p-28L 0x1.713a10ecdd3836d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa367p-28L 0x1.713a10ecdd3836d6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa366p-28L 0x1.713a10ecdd3836d4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa366p-28L 0x1.713a10ecdd3836d6p+0L : inexact-ok += clog downward ldbl-128 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa36688754a361aadp-28L 0x1.713a10ecdd3836d5513d17d1edf2p+0L : inexact-ok += clog tonearest ldbl-128 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa36688754a361aac8p-28L 0x1.713a10ecdd3836d5513d17d1edf2p+0L : inexact-ok += clog towardzero ldbl-128 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa36688754a361aac8p-28L 0x1.713a10ecdd3836d5513d17d1edf2p+0L : inexact-ok += clog upward ldbl-128 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa36688754a361aac8p-28L 0x1.713a10ecdd3836d5513d17d1edf3p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa36688754a361acp-28L 0x1.713a10ecdd3836d5513d17d1ed8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa36688754a361acp-28L 0x1.713a10ecdd3836d5513d17d1eep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa36688754a361a8p-28L 0x1.713a10ecdd3836d5513d17d1ed8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a2p-4L : -0xf.c27f4d85eafa36688754a361a8p-28L 0x1.713a10ecdd3836d5513d17d1eep+0L : inexact-ok += clog downward dbl-64 0x2.0ce7b8p-4 0xf.de3a2f9df7a4p-4 : -0x4.57e84c0e817ecp-32 0x1.713a110ce2b1fp+0 : inexact-ok += clog tonearest dbl-64 0x2.0ce7b8p-4 0xf.de3a2f9df7a4p-4 : -0x4.57e84c0e817ecp-32 0x1.713a110ce2b2p+0 : inexact-ok += clog towardzero dbl-64 0x2.0ce7b8p-4 0xf.de3a2f9df7a4p-4 : -0x4.57e84c0e817e8p-32 0x1.713a110ce2b1fp+0 : inexact-ok += clog upward dbl-64 0x2.0ce7b8p-4 0xf.de3a2f9df7a4p-4 : -0x4.57e84c0e817e8p-32 0x1.713a110ce2b2p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbdp-32L 0x1.713a110ce2b1fe98p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8p-32L 0x1.713a110ce2b1fe9ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8p-32L 0x1.713a110ce2b1fe98p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8p-32L 0x1.713a110ce2b1fe9ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbdp-32L 0x1.713a110ce2b1fe98p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8p-32L 0x1.713a110ce2b1fe9ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8p-32L 0x1.713a110ce2b1fe98p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8p-32L 0x1.713a110ce2b1fe9ap+0L : inexact-ok += clog downward ldbl-128 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8b0c263491d08p-32L 0x1.713a110ce2b1fe99c335918e76c6p+0L : inexact-ok += clog tonearest ldbl-128 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8b0c263491d08p-32L 0x1.713a110ce2b1fe99c335918e76c7p+0L : inexact-ok += clog towardzero ldbl-128 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8b0c263491d04p-32L 0x1.713a110ce2b1fe99c335918e76c6p+0L : inexact-ok += clog upward ldbl-128 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8b0c263491d04p-32L 0x1.713a110ce2b1fe99c335918e76c7p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8b0c263491ep-32L 0x1.713a110ce2b1fe99c335918e768p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8b0c263491ep-32L 0x1.713a110ce2b1fe99c335918e77p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8b0c263491cp-32L 0x1.713a110ce2b1fe99c335918e768p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.0ce7b8p-4L 0xf.de3a2f9df7a4p-4L : -0x4.57e84c0e817ebbc8b0c263491cp-32L 0x1.713a110ce2b1fe99c335918e77p+0L : inexact-ok += clog downward dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a3p-4 : 0x6.1396ebd6b779cp-32 0x1.713a10ec0eae2p+0 : inexact-ok += clog tonearest dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a3p-4 : 0x6.1396ebd6b779cp-32 0x1.713a10ec0eae2p+0 : inexact-ok += clog towardzero dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a3p-4 : 0x6.1396ebd6b779cp-32 0x1.713a10ec0eae2p+0 : inexact-ok += clog upward dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a3p-4 : 0x6.1396ebd6b77ap-32 0x1.713a10ec0eae3p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d67p-32L 0x1.713a10ec0eae27fep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d67p-32L 0x1.713a10ec0eae28p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d67p-32L 0x1.713a10ec0eae27fep+0L : inexact-ok += clog upward ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d678p-32L 0x1.713a10ec0eae28p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d67p-32L 0x1.713a10ec0eae27fep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d67p-32L 0x1.713a10ec0eae28p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d67p-32L 0x1.713a10ec0eae27fep+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d678p-32L 0x1.713a10ec0eae28p+0L : inexact-ok += clog downward ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d670bba807934238p-32L 0x1.713a10ec0eae27ff33e4a558525ap+0L : inexact-ok += clog tonearest ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d670bba80793423cp-32L 0x1.713a10ec0eae27ff33e4a558525bp+0L : inexact-ok += clog towardzero ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d670bba807934238p-32L 0x1.713a10ec0eae27ff33e4a558525ap+0L : inexact-ok += clog upward ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d670bba80793423cp-32L 0x1.713a10ec0eae27ff33e4a558525bp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d670bba8079342p-32L 0x1.713a10ec0eae27ff33e4a55852p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d670bba8079342p-32L 0x1.713a10ec0eae27ff33e4a558528p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d670bba8079342p-32L 0x1.713a10ec0eae27ff33e4a55852p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a3p-4L : 0x6.1396ebd6b779d670bba8079344p-32L 0x1.713a10ec0eae27ff33e4a558528p+0L : inexact-ok += clog downward dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a2p-4 : -0xf.7d00c83e77c98p-28 0x1.713a10cb40326p+0 : inexact-ok += clog tonearest dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a2p-4 : -0xf.7d00c83e77c9p-28 0x1.713a10cb40326p+0 : inexact-ok += clog towardzero dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a2p-4 : -0xf.7d00c83e77c9p-28 0x1.713a10cb40326p+0 : inexact-ok += clog upward dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a2p-4 : -0xf.7d00c83e77c9p-28 0x1.713a10cb40327p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936cp-28L 0x1.713a10cb4032672p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936bp-28L 0x1.713a10cb4032672p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936bp-28L 0x1.713a10cb4032672p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936bp-28L 0x1.713a10cb40326722p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936cp-28L 0x1.713a10cb4032672p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936bp-28L 0x1.713a10cb4032672p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936bp-28L 0x1.713a10cb4032672p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936bp-28L 0x1.713a10cb40326722p+0L : inexact-ok += clog downward ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936b2f40cd34c01e8p-28L 0x1.713a10cb403267201a9ddfb6c6bep+0L : inexact-ok += clog tonearest ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936b2f40cd34c01e8p-28L 0x1.713a10cb403267201a9ddfb6c6bep+0L : inexact-ok += clog towardzero ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936b2f40cd34c01ep-28L 0x1.713a10cb403267201a9ddfb6c6bep+0L : inexact-ok += clog upward ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936b2f40cd34c01ep-28L 0x1.713a10cb403267201a9ddfb6c6bfp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936b2f40cd34c04p-28L 0x1.713a10cb403267201a9ddfb6c68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936b2f40cd34cp-28L 0x1.713a10cb403267201a9ddfb6c68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936b2f40cd34cp-28L 0x1.713a10cb403267201a9ddfb6c68p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a2p-4L : -0xf.7d00c83e77c936b2f40cd34cp-28L 0x1.713a10cb403267201a9ddfb6c7p+0L : inexact-ok += clog downward dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a2f9df7a4p-4 : 0x2.89ffffffffffep-96 0x1.713a10eb45ac4p+0 : inexact-ok += clog tonearest dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a2f9df7a4p-4 : 0x2.8ap-96 0x1.713a10eb45ac5p+0 : inexact-ok += clog towardzero dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a2f9df7a4p-4 : 0x2.89ffffffffffep-96 0x1.713a10eb45ac4p+0 : inexact-ok += clog upward dbl-64 0x2.0ce7ba1e4902p-4 0xf.de3a2f9df7a4p-4 : 0x2.8ap-96 0x1.713a10eb45ac5p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffcp-96L 0x1.713a10eb45ac4ee2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.8ap-96L 0x1.713a10eb45ac4ee4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffcp-96L 0x1.713a10eb45ac4ee2p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.8ap-96L 0x1.713a10eb45ac4ee4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffcp-96L 0x1.713a10eb45ac4ee2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.8ap-96L 0x1.713a10eb45ac4ee4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffcp-96L 0x1.713a10eb45ac4ee2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.8ap-96L 0x1.713a10eb45ac4ee4p+0L : inexact-ok += clog downward ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffffffffff98d9cp-96L 0x1.713a10eb45ac4ee349897121158p+0L : inexact-ok += clog tonearest ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffffffffff98d9cp-96L 0x1.713a10eb45ac4ee3498971211581p+0L : inexact-ok += clog towardzero ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffffffffff98d9cp-96L 0x1.713a10eb45ac4ee349897121158p+0L : inexact-ok += clog upward ldbl-128 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffffffffff98d9ep-96L 0x1.713a10eb45ac4ee3498971211581p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffffffffff98dp-96L 0x1.713a10eb45ac4ee349897121158p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffffffffff98ep-96L 0x1.713a10eb45ac4ee349897121158p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffffffffff98dp-96L 0x1.713a10eb45ac4ee349897121158p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.0ce7ba1e4902p-4L 0xf.de3a2f9df7a4p-4L : 0x2.89fffffffffffffffffffff98ep-96L 0x1.713a10eb45ac4ee34989712116p+0L : inexact-ok +clog 0x8ecbf810c4ae6p-52 0xd479468b09a37p-52 += clog downward flt-32 0x8.ecbf9p-4f 0xd.47947p-4f : 0xe.684fp-28f 0xf.aa3ecp-4f : inexact-ok += clog tonearest flt-32 0x8.ecbf9p-4f 0xd.47947p-4f : 0xe.684fp-28f 0xf.aa3ecp-4f : inexact-ok += clog towardzero flt-32 0x8.ecbf9p-4f 0xd.47947p-4f : 0xe.684fp-28f 0xf.aa3ecp-4f : inexact-ok += clog upward flt-32 0x8.ecbf9p-4f 0xd.47947p-4f : 0xe.684f1p-28f 0xf.aa3edp-4f : inexact-ok += clog downward dbl-64 0x8.ecbf9p-4 0xd.47947p-4 : 0xe.684f0306cdaep-28 0xf.aa3ec3619d4c8p-4 : inexact-ok += clog tonearest dbl-64 0x8.ecbf9p-4 0xd.47947p-4 : 0xe.684f0306cdaep-28 0xf.aa3ec3619d4dp-4 : inexact-ok += clog towardzero dbl-64 0x8.ecbf9p-4 0xd.47947p-4 : 0xe.684f0306cdaep-28 0xf.aa3ec3619d4c8p-4 : inexact-ok += clog upward dbl-64 0x8.ecbf9p-4 0xd.47947p-4 : 0xe.684f0306cdae8p-28 0xf.aa3ec3619d4dp-4 : inexact-ok += clog downward ldbl-96-intel 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cdp-28L 0xf.aa3ec3619d4cfdp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cdp-28L 0xf.aa3ec3619d4cfd1p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cdp-28L 0xf.aa3ec3619d4cfdp-4L : inexact-ok += clog upward ldbl-96-intel 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cep-28L 0xf.aa3ec3619d4cfd1p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cdp-28L 0xf.aa3ec3619d4cfdp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cdp-28L 0xf.aa3ec3619d4cfd1p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cdp-28L 0xf.aa3ec3619d4cfdp-4L : inexact-ok += clog upward ldbl-96-m68k 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cep-28L 0xf.aa3ec3619d4cfd1p-4L : inexact-ok += clog downward ldbl-128 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cd1d05414e1db38p-28L 0xf.aa3ec3619d4cfd08128b64c30de8p-4L : inexact-ok += clog tonearest ldbl-128 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cd1d05414e1db4p-28L 0xf.aa3ec3619d4cfd08128b64c30dfp-4L : inexact-ok += clog towardzero ldbl-128 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cd1d05414e1db38p-28L 0xf.aa3ec3619d4cfd08128b64c30de8p-4L : inexact-ok += clog upward ldbl-128 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cd1d05414e1db4p-28L 0xf.aa3ec3619d4cfd08128b64c30dfp-4L : inexact-ok += clog downward ldbl-128ibm 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cd1d05414e1d8p-28L 0xf.aa3ec3619d4cfd08128b64c30cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cd1d05414e1dcp-28L 0xf.aa3ec3619d4cfd08128b64c30cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cd1d05414e1d8p-28L 0xf.aa3ec3619d4cfd08128b64c30cp-4L : inexact-ok += clog upward ldbl-128ibm 0x8.ecbf9p-4L 0xd.47947p-4L : 0xe.684f0306cdae3cd1d05414e1dcp-28L 0xf.aa3ec3619d4cfd08128b64c31p-4L : inexact-ok += clog downward flt-32 0x8.ecbf9p-4f 0xd.47946p-4f : 0x1.20baa6p-28f 0xf.aa3ebp-4f : inexact-ok += clog tonearest flt-32 0x8.ecbf9p-4f 0xd.47946p-4f : 0x1.20baa8p-28f 0xf.aa3ecp-4f : inexact-ok += clog towardzero flt-32 0x8.ecbf9p-4f 0xd.47946p-4f : 0x1.20baa6p-28f 0xf.aa3ebp-4f : inexact-ok += clog upward flt-32 0x8.ecbf9p-4f 0xd.47946p-4f : 0x1.20baa8p-28f 0xf.aa3ecp-4f : inexact-ok += clog downward dbl-64 0x8.ecbf9p-4 0xd.47946p-4 : 0x1.20baa7eba5b7ep-28 0xf.aa3eba74ddc58p-4 : inexact-ok += clog tonearest dbl-64 0x8.ecbf9p-4 0xd.47946p-4 : 0x1.20baa7eba5b7ep-28 0xf.aa3eba74ddc58p-4 : inexact-ok += clog towardzero dbl-64 0x8.ecbf9p-4 0xd.47946p-4 : 0x1.20baa7eba5b7ep-28 0xf.aa3eba74ddc58p-4 : inexact-ok += clog upward dbl-64 0x8.ecbf9p-4 0xd.47946p-4 : 0x1.20baa7eba5b7fp-28 0xf.aa3eba74ddc6p-4 : inexact-ok += clog downward ldbl-96-intel 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e06p-28L 0xf.aa3eba74ddc5a76p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e06p-28L 0xf.aa3eba74ddc5a77p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e06p-28L 0xf.aa3eba74ddc5a76p-4L : inexact-ok += clog upward ldbl-96-intel 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e062p-28L 0xf.aa3eba74ddc5a77p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e06p-28L 0xf.aa3eba74ddc5a76p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e06p-28L 0xf.aa3eba74ddc5a77p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e06p-28L 0xf.aa3eba74ddc5a76p-4L : inexact-ok += clog upward ldbl-96-m68k 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e062p-28L 0xf.aa3eba74ddc5a77p-4L : inexact-ok += clog downward ldbl-128 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e060cf573f079bcfp-28L 0xf.aa3eba74ddc5a76c31a760768fb8p-4L : inexact-ok += clog tonearest ldbl-128 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e060cf573f079bcfp-28L 0xf.aa3eba74ddc5a76c31a760768fcp-4L : inexact-ok += clog towardzero ldbl-128 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e060cf573f079bcfp-28L 0xf.aa3eba74ddc5a76c31a760768fb8p-4L : inexact-ok += clog upward ldbl-128 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e060cf573f079bdp-28L 0xf.aa3eba74ddc5a76c31a760768fcp-4L : inexact-ok += clog downward ldbl-128ibm 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e060cf573f079b8p-28L 0xf.aa3eba74ddc5a76c31a760768cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e060cf573f079cp-28L 0xf.aa3eba74ddc5a76c31a760769p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e060cf573f079b8p-28L 0xf.aa3eba74ddc5a76c31a760768cp-4L : inexact-ok += clog upward ldbl-128ibm 0x8.ecbf9p-4L 0xd.47946p-4L : 0x1.20baa7eba5b7e060cf573f079cp-28L 0xf.aa3eba74ddc5a76c31a760769p-4L : inexact-ok += clog downward dbl-64 0x8.ecbf9p-4 0xd.479468b09a37p-4 : 0x8.571834bd537bp-28 0xf.aa3ebf4dbfcbp-4 : inexact-ok += clog tonearest dbl-64 0x8.ecbf9p-4 0xd.479468b09a37p-4 : 0x8.571834bd537bp-28 0xf.aa3ebf4dbfcb8p-4 : inexact-ok += clog towardzero dbl-64 0x8.ecbf9p-4 0xd.479468b09a37p-4 : 0x8.571834bd537bp-28 0xf.aa3ebf4dbfcbp-4 : inexact-ok += clog upward dbl-64 0x8.ecbf9p-4 0xd.479468b09a37p-4 : 0x8.571834bd537b8p-28 0xf.aa3ebf4dbfcb8p-4 : inexact-ok += clog downward ldbl-96-intel 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21fp-28L 0xf.aa3ebf4dbfcb5abp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21fp-28L 0xf.aa3ebf4dbfcb5acp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21fp-28L 0xf.aa3ebf4dbfcb5abp-4L : inexact-ok += clog upward ldbl-96-intel 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b22p-28L 0xf.aa3ebf4dbfcb5acp-4L : inexact-ok += clog downward ldbl-96-m68k 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21fp-28L 0xf.aa3ebf4dbfcb5abp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21fp-28L 0xf.aa3ebf4dbfcb5acp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21fp-28L 0xf.aa3ebf4dbfcb5abp-4L : inexact-ok += clog upward ldbl-96-m68k 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b22p-28L 0xf.aa3ebf4dbfcb5acp-4L : inexact-ok += clog downward ldbl-128 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21f231cb4936a7fp-28L 0xf.aa3ebf4dbfcb5abc9a31f66328e8p-4L : inexact-ok += clog tonearest ldbl-128 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21f231cb4936a7fp-28L 0xf.aa3ebf4dbfcb5abc9a31f66328fp-4L : inexact-ok += clog towardzero ldbl-128 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21f231cb4936a7fp-28L 0xf.aa3ebf4dbfcb5abc9a31f66328e8p-4L : inexact-ok += clog upward ldbl-128 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21f231cb4936a7f8p-28L 0xf.aa3ebf4dbfcb5abc9a31f66328fp-4L : inexact-ok += clog downward ldbl-128ibm 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21f231cb4936a4p-28L 0xf.aa3ebf4dbfcb5abc9a31f66328p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21f231cb4936a8p-28L 0xf.aa3ebf4dbfcb5abc9a31f66328p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21f231cb4936a4p-28L 0xf.aa3ebf4dbfcb5abc9a31f66328p-4L : inexact-ok += clog upward ldbl-128ibm 0x8.ecbf9p-4L 0xd.479468b09a37p-4L : 0x8.571834bd537b21f231cb4936a8p-28L 0xf.aa3ebf4dbfcb5abc9a31f6632cp-4L : inexact-ok += clog downward flt-32 0x8.ecbf8p-4f 0xd.47947p-4f : 0x5.7b8f8p-28f 0xf.aa3edp-4f : inexact-ok += clog tonearest flt-32 0x8.ecbf8p-4f 0xd.47947p-4f : 0x5.7b8f88p-28f 0xf.aa3edp-4f : inexact-ok += clog towardzero flt-32 0x8.ecbf8p-4f 0xd.47947p-4f : 0x5.7b8f8p-28f 0xf.aa3edp-4f : inexact-ok += clog upward flt-32 0x8.ecbf8p-4f 0xd.47947p-4f : 0x5.7b8f88p-28f 0xf.aa3eep-4f : inexact-ok += clog downward dbl-64 0x8.ecbf8p-4 0xd.47947p-4 : 0x5.7b8f861f0c18p-28 0xf.aa3ed0a931acp-4 : inexact-ok += clog tonearest dbl-64 0x8.ecbf8p-4 0xd.47947p-4 : 0x5.7b8f861f0c18p-28 0xf.aa3ed0a931ac8p-4 : inexact-ok += clog towardzero dbl-64 0x8.ecbf8p-4 0xd.47947p-4 : 0x5.7b8f861f0c18p-28 0xf.aa3ed0a931acp-4 : inexact-ok += clog upward dbl-64 0x8.ecbf8p-4 0xd.47947p-4 : 0x5.7b8f861f0c184p-28 0xf.aa3ed0a931ac8p-4 : inexact-ok += clog downward ldbl-96-intel 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c180928p-28L 0xf.aa3ed0a931ac7aep-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c180928p-28L 0xf.aa3ed0a931ac7aep-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c180928p-28L 0xf.aa3ed0a931ac7aep-4L : inexact-ok += clog upward ldbl-96-intel 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c18093p-28L 0xf.aa3ed0a931ac7afp-4L : inexact-ok += clog downward ldbl-96-m68k 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c180928p-28L 0xf.aa3ed0a931ac7aep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c180928p-28L 0xf.aa3ed0a931ac7aep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c180928p-28L 0xf.aa3ed0a931ac7aep-4L : inexact-ok += clog upward ldbl-96-m68k 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c18093p-28L 0xf.aa3ed0a931ac7afp-4L : inexact-ok += clog downward ldbl-128 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c18092a594946de72d4p-28L 0xf.aa3ed0a931ac7ae79c5fa0d50a68p-4L : inexact-ok += clog tonearest ldbl-128 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c18092a594946de72d4p-28L 0xf.aa3ed0a931ac7ae79c5fa0d50a68p-4L : inexact-ok += clog towardzero ldbl-128 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c18092a594946de72d4p-28L 0xf.aa3ed0a931ac7ae79c5fa0d50a68p-4L : inexact-ok += clog upward ldbl-128 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c18092a594946de72d8p-28L 0xf.aa3ed0a931ac7ae79c5fa0d50a7p-4L : inexact-ok += clog downward ldbl-128ibm 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c18092a594946de72p-28L 0xf.aa3ed0a931ac7ae79c5fa0d508p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c18092a594946de72p-28L 0xf.aa3ed0a931ac7ae79c5fa0d50cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c18092a594946de72p-28L 0xf.aa3ed0a931ac7ae79c5fa0d508p-4L : inexact-ok += clog upward ldbl-128ibm 0x8.ecbf8p-4L 0xd.47947p-4L : 0x5.7b8f861f0c18092a594946de74p-28L 0xf.aa3ed0a931ac7ae79c5fa0d50cp-4L : inexact-ok += clog downward flt-32 0x8.ecbf8p-4f 0xd.47946p-4f : -0x7.cc04e8p-28f 0xf.aa3ecp-4f : inexact-ok += clog tonearest flt-32 0x8.ecbf8p-4f 0xd.47946p-4f : -0x7.cc04ep-28f 0xf.aa3ecp-4f : inexact-ok += clog towardzero flt-32 0x8.ecbf8p-4f 0xd.47946p-4f : -0x7.cc04ep-28f 0xf.aa3ecp-4f : inexact-ok += clog upward flt-32 0x8.ecbf8p-4f 0xd.47946p-4f : -0x7.cc04ep-28f 0xf.aa3edp-4f : inexact-ok += clog downward dbl-64 0x8.ecbf8p-4 0xd.47946p-4 : -0x7.cc04e3ccadc3p-28 0xf.aa3ec7bc722bp-4 : inexact-ok += clog tonearest dbl-64 0x8.ecbf8p-4 0xd.47946p-4 : -0x7.cc04e3ccadc2cp-28 0xf.aa3ec7bc722bp-4 : inexact-ok += clog towardzero dbl-64 0x8.ecbf8p-4 0xd.47946p-4 : -0x7.cc04e3ccadc2cp-28 0xf.aa3ec7bc722bp-4 : inexact-ok += clog upward dbl-64 0x8.ecbf8p-4 0xd.47946p-4 : -0x7.cc04e3ccadc2cp-28 0xf.aa3ec7bc722b8p-4 : inexact-ok += clog downward ldbl-96-intel 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c98p-28L 0xf.aa3ec7bc722b306p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c978p-28L 0xf.aa3ec7bc722b307p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c978p-28L 0xf.aa3ec7bc722b306p-4L : inexact-ok += clog upward ldbl-96-intel 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c978p-28L 0xf.aa3ec7bc722b307p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c98p-28L 0xf.aa3ec7bc722b306p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c978p-28L 0xf.aa3ec7bc722b307p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c978p-28L 0xf.aa3ec7bc722b306p-4L : inexact-ok += clog upward ldbl-96-m68k 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c978p-28L 0xf.aa3ec7bc722b307p-4L : inexact-ok += clog downward ldbl-128 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c97ab1942984630cp-28L 0xf.aa3ec7bc722b306e76d7f470806p-4L : inexact-ok += clog tonearest ldbl-128 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c97ab19429846308p-28L 0xf.aa3ec7bc722b306e76d7f470806p-4L : inexact-ok += clog towardzero ldbl-128 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c97ab19429846308p-28L 0xf.aa3ec7bc722b306e76d7f470806p-4L : inexact-ok += clog upward ldbl-128 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c97ab19429846308p-28L 0xf.aa3ec7bc722b306e76d7f4708068p-4L : inexact-ok += clog downward ldbl-128ibm 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c97ab194298464p-28L 0xf.aa3ec7bc722b306e76d7f4708p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c97ab194298464p-28L 0xf.aa3ec7bc722b306e76d7f4708p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c97ab194298462p-28L 0xf.aa3ec7bc722b306e76d7f4708p-4L : inexact-ok += clog upward ldbl-128ibm 0x8.ecbf8p-4L 0xd.47946p-4L : -0x7.cc04e3ccadc2c97ab194298462p-28L 0xf.aa3ec7bc722b306e76d7f47084p-4L : inexact-ok += clog downward dbl-64 0x8.ecbf8p-4 0xd.479468b09a37p-4 : -0x9.5a74eef31fa3p-32 0xf.aa3ecc95542d8p-4 : inexact-ok += clog tonearest dbl-64 0x8.ecbf8p-4 0xd.479468b09a37p-4 : -0x9.5a74eef31fa3p-32 0xf.aa3ecc95542d8p-4 : inexact-ok += clog towardzero dbl-64 0x8.ecbf8p-4 0xd.479468b09a37p-4 : -0x9.5a74eef31fa28p-32 0xf.aa3ecc95542d8p-4 : inexact-ok += clog upward dbl-64 0x8.ecbf8p-4 0xd.479468b09a37p-4 : -0x9.5a74eef31fa28p-32 0xf.aa3ecc95542ep-4 : inexact-ok += clog downward ldbl-96-intel 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f55p-32L 0xf.aa3ecc95542d9b7p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54p-32L 0xf.aa3ecc95542d9b8p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54p-32L 0xf.aa3ecc95542d9b7p-4L : inexact-ok += clog upward ldbl-96-intel 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54p-32L 0xf.aa3ecc95542d9b8p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f55p-32L 0xf.aa3ecc95542d9b7p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54p-32L 0xf.aa3ecc95542d9b8p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54p-32L 0xf.aa3ecc95542d9b7p-4L : inexact-ok += clog upward ldbl-96-m68k 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54p-32L 0xf.aa3ecc95542d9b8p-4L : inexact-ok += clog downward ldbl-128 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54729b71a0c845p-32L 0xf.aa3ecc95542d9b78c481227aaeb8p-4L : inexact-ok += clog tonearest ldbl-128 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54729b71a0c845p-32L 0xf.aa3ecc95542d9b78c481227aaeb8p-4L : inexact-ok += clog towardzero ldbl-128 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54729b71a0c8448p-32L 0xf.aa3ecc95542d9b78c481227aaeb8p-4L : inexact-ok += clog upward ldbl-128 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54729b71a0c8448p-32L 0xf.aa3ecc95542d9b78c481227aaecp-4L : inexact-ok += clog downward ldbl-128ibm 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54729b71a0c88p-32L 0xf.aa3ecc95542d9b78c481227aacp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54729b71a0c84p-32L 0xf.aa3ecc95542d9b78c481227abp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54729b71a0c84p-32L 0xf.aa3ecc95542d9b78c481227aacp-4L : inexact-ok += clog upward ldbl-128ibm 0x8.ecbf8p-4L 0xd.479468b09a37p-4L : -0x9.5a74eef31fa2f54729b71a0c84p-32L 0xf.aa3ecc95542d9b78c481227abp-4L : inexact-ok += clog downward dbl-64 0x8.ecbf810c4ae6p-4 0xd.47947p-4 : 0x6.1136d49cbe91cp-28 0xf.aa3ecfca848c8p-4 : inexact-ok += clog tonearest dbl-64 0x8.ecbf810c4ae6p-4 0xd.47947p-4 : 0x6.1136d49cbe92p-28 0xf.aa3ecfca848dp-4 : inexact-ok += clog towardzero dbl-64 0x8.ecbf810c4ae6p-4 0xd.47947p-4 : 0x6.1136d49cbe91cp-28 0xf.aa3ecfca848c8p-4 : inexact-ok += clog upward dbl-64 0x8.ecbf810c4ae6p-4 0xd.47947p-4 : 0x6.1136d49cbe92p-28 0xf.aa3ecfca848dp-4 : inexact-ok += clog downward ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1ap-28L 0xf.aa3ecfca848cd42p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a8p-28L 0xf.aa3ecfca848cd43p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1ap-28L 0xf.aa3ecfca848cd42p-4L : inexact-ok += clog upward ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a8p-28L 0xf.aa3ecfca848cd43p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1ap-28L 0xf.aa3ecfca848cd42p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a8p-28L 0xf.aa3ecfca848cd43p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1ap-28L 0xf.aa3ecfca848cd42p-4L : inexact-ok += clog upward ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a8p-28L 0xf.aa3ecfca848cd43p-4L : inexact-ok += clog downward ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a6aa4dc53d314cp-28L 0xf.aa3ecfca848cd42a0bbe49a475d8p-4L : inexact-ok += clog tonearest ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a6aa4dc53d314cp-28L 0xf.aa3ecfca848cd42a0bbe49a475ep-4L : inexact-ok += clog towardzero ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a6aa4dc53d314cp-28L 0xf.aa3ecfca848cd42a0bbe49a475d8p-4L : inexact-ok += clog upward ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a6aa4dc53d315p-28L 0xf.aa3ecfca848cd42a0bbe49a475ep-4L : inexact-ok += clog downward ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a6aa4dc53d3p-28L 0xf.aa3ecfca848cd42a0bbe49a474p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a6aa4dc53d32p-28L 0xf.aa3ecfca848cd42a0bbe49a474p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a6aa4dc53d3p-28L 0xf.aa3ecfca848cd42a0bbe49a474p-4L : inexact-ok += clog upward ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.47947p-4L : 0x6.1136d49cbe91f1a6aa4dc53d32p-28L 0xf.aa3ecfca848cd42a0bbe49a478p-4L : inexact-ok += clog downward dbl-64 0x8.ecbf810c4ae6p-4 0xd.47946p-4 : -0x7.365d945690638p-28 0xf.aa3ec6ddc50bp-4 : inexact-ok += clog tonearest dbl-64 0x8.ecbf810c4ae6p-4 0xd.47946p-4 : -0x7.365d945690638p-28 0xf.aa3ec6ddc50bp-4 : inexact-ok += clog towardzero dbl-64 0x8.ecbf810c4ae6p-4 0xd.47946p-4 : -0x7.365d945690634p-28 0xf.aa3ec6ddc50bp-4 : inexact-ok += clog upward dbl-64 0x8.ecbf810c4ae6p-4 0xd.47946p-4 : -0x7.365d945690634p-28 0xf.aa3ec6ddc50b8p-4 : inexact-ok += clog downward ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063627p-28L 0xf.aa3ec6ddc50b245p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063627p-28L 0xf.aa3ec6ddc50b246p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d945690636268p-28L 0xf.aa3ec6ddc50b245p-4L : inexact-ok += clog upward ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d945690636268p-28L 0xf.aa3ec6ddc50b246p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063627p-28L 0xf.aa3ec6ddc50b245p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063627p-28L 0xf.aa3ec6ddc50b246p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d945690636268p-28L 0xf.aa3ec6ddc50b245p-4L : inexact-ok += clog upward ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d945690636268p-28L 0xf.aa3ec6ddc50b246p-4L : inexact-ok += clog downward ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063626c7bc5f6b91accp-28L 0xf.aa3ec6ddc50b245a151e1cbbf618p-4L : inexact-ok += clog tonearest ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063626c7bc5f6b91accp-28L 0xf.aa3ec6ddc50b245a151e1cbbf618p-4L : inexact-ok += clog towardzero ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063626c7bc5f6b91ac8p-28L 0xf.aa3ec6ddc50b245a151e1cbbf618p-4L : inexact-ok += clog upward ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063626c7bc5f6b91ac8p-28L 0xf.aa3ec6ddc50b245a151e1cbbf62p-4L : inexact-ok += clog downward ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063626c7bc5f6b91cp-28L 0xf.aa3ec6ddc50b245a151e1cbbf4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063626c7bc5f6b91ap-28L 0xf.aa3ec6ddc50b245a151e1cbbf8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063626c7bc5f6b91ap-28L 0xf.aa3ec6ddc50b245a151e1cbbf4p-4L : inexact-ok += clog upward ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.47946p-4L : -0x7.365d94569063626c7bc5f6b91ap-28L 0xf.aa3ec6ddc50b245a151e1cbbf8p-4L : inexact-ok += clog downward dbl-64 0x8.ecbf810c4ae6p-4 0xd.479468b09a37p-4 : -0xc.5800000000008p-100 0xf.aa3ecbb6a70d8p-4 : inexact-ok += clog tonearest dbl-64 0x8.ecbf810c4ae6p-4 0xd.479468b09a37p-4 : -0xc.58p-100 0xf.aa3ecbb6a70ep-4 : inexact-ok += clog towardzero dbl-64 0x8.ecbf810c4ae6p-4 0xd.479468b09a37p-4 : -0xc.58p-100 0xf.aa3ecbb6a70d8p-4 : inexact-ok += clog upward dbl-64 0x8.ecbf810c4ae6p-4 0xd.479468b09a37p-4 : -0xc.58p-100 0xf.aa3ecbb6a70ep-4 : inexact-ok += clog downward ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.580000000000001p-100L 0xf.aa3ecbb6a70dc66p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58p-100L 0xf.aa3ecbb6a70dc67p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58p-100L 0xf.aa3ecbb6a70dc66p-4L : inexact-ok += clog upward ldbl-96-intel 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58p-100L 0xf.aa3ecbb6a70dc67p-4L : inexact-ok += clog downward ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.580000000000001p-100L 0xf.aa3ecbb6a70dc66p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58p-100L 0xf.aa3ecbb6a70dc67p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58p-100L 0xf.aa3ecbb6a70dc66p-4L : inexact-ok += clog upward ldbl-96-m68k 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58p-100L 0xf.aa3ecbb6a70dc67p-4L : inexact-ok += clog downward ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58000000000000000000000985e8p-100L 0xf.aa3ecbb6a70dc66e57020c1e9e08p-4L : inexact-ok += clog tonearest ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58000000000000000000000985ep-100L 0xf.aa3ecbb6a70dc66e57020c1e9e08p-4L : inexact-ok += clog towardzero ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58000000000000000000000985ep-100L 0xf.aa3ecbb6a70dc66e57020c1e9e08p-4L : inexact-ok += clog upward ldbl-128 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58000000000000000000000985ep-100L 0xf.aa3ecbb6a70dc66e57020c1e9e1p-4L : inexact-ok += clog downward ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58000000000000000000000988p-100L 0xf.aa3ecbb6a70dc66e57020c1e9cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58000000000000000000000984p-100L 0xf.aa3ecbb6a70dc66e57020c1eap-4L : inexact-ok += clog towardzero ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58000000000000000000000984p-100L 0xf.aa3ecbb6a70dc66e57020c1e9cp-4L : inexact-ok += clog upward ldbl-128ibm 0x8.ecbf810c4ae6p-4L 0xd.479468b09a37p-4L : -0xc.58000000000000000000000984p-100L 0xf.aa3ecbb6a70dc66e57020c1eap-4L : inexact-ok +clog 0x5b06b680ea2ccp-52 0xef452b965da9fp-52 += clog downward flt-32 0x5.b06b7p-4f 0xe.f452cp-4f : 0x8.feb3p-28f 0x1.350fb8p+0f : inexact-ok += clog tonearest flt-32 0x5.b06b7p-4f 0xe.f452cp-4f : 0x8.feb3p-28f 0x1.350fbap+0f : inexact-ok += clog towardzero flt-32 0x5.b06b7p-4f 0xe.f452cp-4f : 0x8.feb3p-28f 0x1.350fb8p+0f : inexact-ok += clog upward flt-32 0x5.b06b7p-4f 0xe.f452cp-4f : 0x8.feb31p-28f 0x1.350fbap+0f : inexact-ok += clog downward dbl-64 0x5.b06b7p-4 0xe.f452cp-4 : 0x8.feb302f1767f8p-28 0x1.350fb996a1866p+0 : inexact-ok += clog tonearest dbl-64 0x5.b06b7p-4 0xe.f452cp-4 : 0x8.feb302f1767f8p-28 0x1.350fb996a1866p+0 : inexact-ok += clog towardzero dbl-64 0x5.b06b7p-4 0xe.f452cp-4 : 0x8.feb302f1767f8p-28 0x1.350fb996a1866p+0 : inexact-ok += clog upward dbl-64 0x5.b06b7p-4 0xe.f452cp-4 : 0x8.feb302f1768p-28 0x1.350fb996a1867p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb91p-28L 0x1.350fb996a18664dep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb91p-28L 0x1.350fb996a18664ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb91p-28L 0x1.350fb996a18664dep+0L : inexact-ok += clog upward ldbl-96-intel 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb92p-28L 0x1.350fb996a18664ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb91p-28L 0x1.350fb996a18664dep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb91p-28L 0x1.350fb996a18664ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb91p-28L 0x1.350fb996a18664dep+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb92p-28L 0x1.350fb996a18664ep+0L : inexact-ok += clog downward ldbl-128 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb917cbd1a16f483p-28L 0x1.350fb996a18664df1afc46d81e15p+0L : inexact-ok += clog tonearest ldbl-128 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb917cbd1a16f4838p-28L 0x1.350fb996a18664df1afc46d81e16p+0L : inexact-ok += clog towardzero ldbl-128 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb917cbd1a16f483p-28L 0x1.350fb996a18664df1afc46d81e15p+0L : inexact-ok += clog upward ldbl-128 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb917cbd1a16f4838p-28L 0x1.350fb996a18664df1afc46d81e16p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb917cbd1a16f48p-28L 0x1.350fb996a18664df1afc46d81ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb917cbd1a16f48p-28L 0x1.350fb996a18664df1afc46d81ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb917cbd1a16f48p-28L 0x1.350fb996a18664df1afc46d81ep+0L : inexact-ok += clog upward ldbl-128ibm 0x5.b06b7p-4L 0xe.f452cp-4L : 0x8.feb302f1767fb917cbd1a16f4cp-28L 0x1.350fb996a18664df1afc46d81e8p+0L : inexact-ok += clog downward flt-32 0x5.b06b7p-4f 0xe.f452bp-4f : -0x5.f59fb8p-28f 0x1.350fb8p+0f : inexact-ok += clog tonearest flt-32 0x5.b06b7p-4f 0xe.f452bp-4f : -0x5.f59fbp-28f 0x1.350fbap+0f : inexact-ok += clog towardzero flt-32 0x5.b06b7p-4f 0xe.f452bp-4f : -0x5.f59fbp-28f 0x1.350fb8p+0f : inexact-ok += clog upward flt-32 0x5.b06b7p-4f 0xe.f452bp-4f : -0x5.f59fbp-28f 0x1.350fbap+0f : inexact-ok += clog downward dbl-64 0x5.b06b7p-4 0xe.f452bp-4 : -0x5.f59fb2383e8p-28 0x1.350fb93b9acf7p+0 : inexact-ok += clog tonearest dbl-64 0x5.b06b7p-4 0xe.f452bp-4 : -0x5.f59fb2383e7fcp-28 0x1.350fb93b9acf7p+0 : inexact-ok += clog towardzero dbl-64 0x5.b06b7p-4 0xe.f452bp-4 : -0x5.f59fb2383e7fcp-28 0x1.350fb93b9acf7p+0 : inexact-ok += clog upward dbl-64 0x5.b06b7p-4 0xe.f452bp-4 : -0x5.f59fb2383e7fcp-28 0x1.350fb93b9acf8p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f8p-28L 0x1.350fb93b9acf7622p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f8p-28L 0x1.350fb93b9acf7624p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1fp-28L 0x1.350fb93b9acf7622p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1fp-28L 0x1.350fb93b9acf7624p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f8p-28L 0x1.350fb93b9acf7622p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f8p-28L 0x1.350fb93b9acf7624p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1fp-28L 0x1.350fb93b9acf7622p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1fp-28L 0x1.350fb93b9acf7624p+0L : inexact-ok += clog downward ldbl-128 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f575c7bf1e2458p-28L 0x1.350fb93b9acf7623fef2e11460fdp+0L : inexact-ok += clog tonearest ldbl-128 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f575c7bf1e2454p-28L 0x1.350fb93b9acf7623fef2e11460fep+0L : inexact-ok += clog towardzero ldbl-128 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f575c7bf1e2454p-28L 0x1.350fb93b9acf7623fef2e11460fdp+0L : inexact-ok += clog upward ldbl-128 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f575c7bf1e2454p-28L 0x1.350fb93b9acf7623fef2e11460fep+0L : inexact-ok += clog downward ldbl-128ibm 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f575c7bf1e26p-28L 0x1.350fb93b9acf7623fef2e114608p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f575c7bf1e24p-28L 0x1.350fb93b9acf7623fef2e11461p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f575c7bf1e24p-28L 0x1.350fb93b9acf7623fef2e114608p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.b06b7p-4L 0xe.f452bp-4L : -0x5.f59fb2383e7fc1f575c7bf1e24p-28L 0x1.350fb93b9acf7623fef2e11461p+0L : inexact-ok += clog downward dbl-64 0x5.b06b7p-4 0xe.f452b965da9fp-4 : 0x2.d30174bc83ccap-28 0x1.350fb971120c9p+0 : inexact-ok += clog tonearest dbl-64 0x5.b06b7p-4 0xe.f452b965da9fp-4 : 0x2.d30174bc83ccap-28 0x1.350fb971120c9p+0 : inexact-ok += clog towardzero dbl-64 0x5.b06b7p-4 0xe.f452b965da9fp-4 : 0x2.d30174bc83ccap-28 0x1.350fb971120c9p+0 : inexact-ok += clog upward dbl-64 0x5.b06b7p-4 0xe.f452b965da9fp-4 : 0x2.d30174bc83cccp-28 0x1.350fb971120cap+0 : inexact-ok += clog downward ldbl-96-intel 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac14p-28L 0x1.350fb971120c97dep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac14p-28L 0x1.350fb971120c97dep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac14p-28L 0x1.350fb971120c97dep+0L : inexact-ok += clog upward ldbl-96-intel 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac18p-28L 0x1.350fb971120c97ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac14p-28L 0x1.350fb971120c97dep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac14p-28L 0x1.350fb971120c97dep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac14p-28L 0x1.350fb971120c97dep+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac18p-28L 0x1.350fb971120c97ep+0L : inexact-ok += clog downward ldbl-128 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac15e372b643b00cp-28L 0x1.350fb971120c97de2321681bc454p+0L : inexact-ok += clog tonearest ldbl-128 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac15e372b643b00ep-28L 0x1.350fb971120c97de2321681bc455p+0L : inexact-ok += clog towardzero ldbl-128 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac15e372b643b00cp-28L 0x1.350fb971120c97de2321681bc454p+0L : inexact-ok += clog upward ldbl-128 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac15e372b643b00ep-28L 0x1.350fb971120c97de2321681bc455p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac15e372b643bp-28L 0x1.350fb971120c97de2321681bc4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac15e372b643bp-28L 0x1.350fb971120c97de2321681bc48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac15e372b643bp-28L 0x1.350fb971120c97de2321681bc4p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.b06b7p-4L 0xe.f452b965da9fp-4L : 0x2.d30174bc83ccac15e372b643b1p-28L 0x1.350fb971120c97de2321681bc48p+0L : inexact-ok += clog downward flt-32 0x5.b06b68p-4f 0xe.f452cp-4f : 0x6.267d48p-28f 0x1.350fbap+0f : inexact-ok += clog tonearest flt-32 0x5.b06b68p-4f 0xe.f452cp-4f : 0x6.267d5p-28f 0x1.350fbap+0f : inexact-ok += clog towardzero flt-32 0x5.b06b68p-4f 0xe.f452cp-4f : 0x6.267d48p-28f 0x1.350fbap+0f : inexact-ok += clog upward flt-32 0x5.b06b68p-4f 0xe.f452cp-4f : 0x6.267d5p-28f 0x1.350fbcp+0f : inexact-ok += clog downward dbl-64 0x5.b06b68p-4 0xe.f452cp-4 : 0x6.267d4fa2c56c8p-28 0x1.350fba0e441bfp+0 : inexact-ok += clog tonearest dbl-64 0x5.b06b68p-4 0xe.f452cp-4 : 0x6.267d4fa2c56c8p-28 0x1.350fba0e441bfp+0 : inexact-ok += clog towardzero dbl-64 0x5.b06b68p-4 0xe.f452cp-4 : 0x6.267d4fa2c56c8p-28 0x1.350fba0e441bfp+0 : inexact-ok += clog upward dbl-64 0x5.b06b68p-4 0xe.f452cp-4 : 0x6.267d4fa2c56ccp-28 0x1.350fba0e441cp+0 : inexact-ok += clog downward ldbl-96-intel 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b18p-28L 0x1.350fba0e441bf3ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b2p-28L 0x1.350fba0e441bf3ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b18p-28L 0x1.350fba0e441bf3ap+0L : inexact-ok += clog upward ldbl-96-intel 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b2p-28L 0x1.350fba0e441bf3a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b18p-28L 0x1.350fba0e441bf3ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b2p-28L 0x1.350fba0e441bf3ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b18p-28L 0x1.350fba0e441bf3ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b2p-28L 0x1.350fba0e441bf3a2p+0L : inexact-ok += clog downward ldbl-128 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b1fa4d08a61e5p-28L 0x1.350fba0e441bf3a09d4a22e246cfp+0L : inexact-ok += clog tonearest ldbl-128 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b1fa4d08a61e5p-28L 0x1.350fba0e441bf3a09d4a22e246dp+0L : inexact-ok += clog towardzero ldbl-128 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b1fa4d08a61e5p-28L 0x1.350fba0e441bf3a09d4a22e246cfp+0L : inexact-ok += clog upward ldbl-128 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b1fa4d08a61e504p-28L 0x1.350fba0e441bf3a09d4a22e246dp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b1fa4d08a61e4p-28L 0x1.350fba0e441bf3a09d4a22e2468p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b1fa4d08a61e6p-28L 0x1.350fba0e441bf3a09d4a22e247p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b1fa4d08a61e4p-28L 0x1.350fba0e441bf3a09d4a22e2468p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.b06b68p-4L 0xe.f452cp-4L : 0x6.267d4fa2c56c9b1fa4d08a61e6p-28L 0x1.350fba0e441bf3a09d4a22e247p+0L : inexact-ok += clog downward flt-32 0x5.b06b68p-4f 0xe.f452bp-4f : -0x8.cdd57p-28f 0x1.350fb8p+0f : inexact-ok += clog tonearest flt-32 0x5.b06b68p-4f 0xe.f452bp-4f : -0x8.cdd57p-28f 0x1.350fbap+0f : inexact-ok += clog towardzero flt-32 0x5.b06b68p-4f 0xe.f452bp-4f : -0x8.cdd56p-28f 0x1.350fb8p+0f : inexact-ok += clog upward flt-32 0x5.b06b68p-4f 0xe.f452bp-4f : -0x8.cdd56p-28f 0x1.350fbap+0f : inexact-ok += clog downward dbl-64 0x5.b06b68p-4 0xe.f452bp-4 : -0x8.cdd56ad82d618p-28 0x1.350fb9b33d656p+0 : inexact-ok += clog tonearest dbl-64 0x5.b06b68p-4 0xe.f452bp-4 : -0x8.cdd56ad82d61p-28 0x1.350fb9b33d656p+0 : inexact-ok += clog towardzero dbl-64 0x5.b06b68p-4 0xe.f452bp-4 : -0x8.cdd56ad82d61p-28 0x1.350fb9b33d656p+0 : inexact-ok += clog upward dbl-64 0x5.b06b68p-4 0xe.f452bp-4 : -0x8.cdd56ad82d61p-28 0x1.350fb9b33d657p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101dp-28L 0x1.350fb9b33d656486p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101dp-28L 0x1.350fb9b33d656488p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cp-28L 0x1.350fb9b33d656486p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cp-28L 0x1.350fb9b33d656488p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101dp-28L 0x1.350fb9b33d656486p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101dp-28L 0x1.350fb9b33d656488p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cp-28L 0x1.350fb9b33d656486p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cp-28L 0x1.350fb9b33d656488p+0L : inexact-ok += clog downward ldbl-128 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cfb8cb8159d45p-28L 0x1.350fb9b33d656487bb26686f52cep+0L : inexact-ok += clog tonearest ldbl-128 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cfb8cb8159d45p-28L 0x1.350fb9b33d656487bb26686f52cfp+0L : inexact-ok += clog towardzero ldbl-128 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cfb8cb8159d448p-28L 0x1.350fb9b33d656487bb26686f52cep+0L : inexact-ok += clog upward ldbl-128 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cfb8cb8159d448p-28L 0x1.350fb9b33d656487bb26686f52cfp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cfb8cb8159d8p-28L 0x1.350fb9b33d656487bb26686f528p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cfb8cb8159d4p-28L 0x1.350fb9b33d656487bb26686f53p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cfb8cb8159d4p-28L 0x1.350fb9b33d656487bb26686f528p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.b06b68p-4L 0xe.f452bp-4L : -0x8.cdd56ad82d6101cfb8cb8159d4p-28L 0x1.350fb9b33d656487bb26686f53p+0L : inexact-ok += clog downward dbl-64 0x5.b06b68p-4 0xe.f452b965da9fp-4 : -0x5.3440c3ded102p-36 0x1.350fb9e8b4a24p+0 : inexact-ok += clog tonearest dbl-64 0x5.b06b68p-4 0xe.f452b965da9fp-4 : -0x5.3440c3ded101cp-36 0x1.350fb9e8b4a25p+0 : inexact-ok += clog towardzero dbl-64 0x5.b06b68p-4 0xe.f452b965da9fp-4 : -0x5.3440c3ded101cp-36 0x1.350fb9e8b4a24p+0 : inexact-ok += clog upward dbl-64 0x5.b06b68p-4 0xe.f452b965da9fp-4 : -0x5.3440c3ded101cp-36 0x1.350fb9e8b4a25p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f8p-36L 0x1.350fb9e8b4a24e14p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f8p-36L 0x1.350fb9e8b4a24e16p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6fp-36L 0x1.350fb9e8b4a24e14p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6fp-36L 0x1.350fb9e8b4a24e16p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f8p-36L 0x1.350fb9e8b4a24e14p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f8p-36L 0x1.350fb9e8b4a24e16p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6fp-36L 0x1.350fb9e8b4a24e14p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6fp-36L 0x1.350fb9e8b4a24e16p+0L : inexact-ok += clog downward ldbl-128 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f42d4df6c22a1p-36L 0x1.350fb9e8b4a24e15d3ef3f6350cfp+0L : inexact-ok += clog tonearest ldbl-128 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f42d4df6c22a1p-36L 0x1.350fb9e8b4a24e15d3ef3f6350dp+0L : inexact-ok += clog towardzero ldbl-128 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f42d4df6c22a0cp-36L 0x1.350fb9e8b4a24e15d3ef3f6350cfp+0L : inexact-ok += clog upward ldbl-128 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f42d4df6c22a0cp-36L 0x1.350fb9e8b4a24e15d3ef3f6350dp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f42d4df6c22cp-36L 0x1.350fb9e8b4a24e15d3ef3f63508p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f42d4df6c22ap-36L 0x1.350fb9e8b4a24e15d3ef3f6351p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f42d4df6c22ap-36L 0x1.350fb9e8b4a24e15d3ef3f63508p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.b06b68p-4L 0xe.f452b965da9fp-4L : -0x5.3440c3ded101d6f42d4df6c22ap-36L 0x1.350fb9e8b4a24e15d3ef3f6351p+0L : inexact-ok += clog downward dbl-64 0x5.b06b680ea2ccp-4 0xe.f452cp-4 : 0x6.2bb19062a0a08p-28 0x1.350fba0d693cep+0 : inexact-ok += clog tonearest dbl-64 0x5.b06b680ea2ccp-4 0xe.f452cp-4 : 0x6.2bb19062a0a0cp-28 0x1.350fba0d693cep+0 : inexact-ok += clog towardzero dbl-64 0x5.b06b680ea2ccp-4 0xe.f452cp-4 : 0x6.2bb19062a0a08p-28 0x1.350fba0d693cep+0 : inexact-ok += clog upward dbl-64 0x5.b06b680ea2ccp-4 0xe.f452cp-4 : 0x6.2bb19062a0a0cp-28 0x1.350fba0d693cfp+0 : inexact-ok += clog downward ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad78p-28L 0x1.350fba0d693ce6b8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad78p-28L 0x1.350fba0d693ce6bap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad78p-28L 0x1.350fba0d693ce6b8p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad8p-28L 0x1.350fba0d693ce6bap+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad78p-28L 0x1.350fba0d693ce6b8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad78p-28L 0x1.350fba0d693ce6bap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad78p-28L 0x1.350fba0d693ce6b8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad8p-28L 0x1.350fba0d693ce6bap+0L : inexact-ok += clog downward ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad7818018d0bf0acp-28L 0x1.350fba0d693ce6b9b7cc6cd475f4p+0L : inexact-ok += clog tonearest ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad7818018d0bf0bp-28L 0x1.350fba0d693ce6b9b7cc6cd475f4p+0L : inexact-ok += clog towardzero ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad7818018d0bf0acp-28L 0x1.350fba0d693ce6b9b7cc6cd475f4p+0L : inexact-ok += clog upward ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad7818018d0bf0bp-28L 0x1.350fba0d693ce6b9b7cc6cd475f5p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad7818018d0bfp-28L 0x1.350fba0d693ce6b9b7cc6cd4758p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad7818018d0bfp-28L 0x1.350fba0d693ce6b9b7cc6cd476p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad7818018d0bfp-28L 0x1.350fba0d693ce6b9b7cc6cd4758p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452cp-4L : 0x6.2bb19062a0a0ad7818018d0bf2p-28L 0x1.350fba0d693ce6b9b7cc6cd476p+0L : inexact-ok += clog downward dbl-64 0x5.b06b680ea2ccp-4 0xe.f452bp-4 : -0x8.c8a12a0e97cc8p-28 0x1.350fb9b262865p+0 : inexact-ok += clog tonearest dbl-64 0x5.b06b680ea2ccp-4 0xe.f452bp-4 : -0x8.c8a12a0e97ccp-28 0x1.350fb9b262865p+0 : inexact-ok += clog towardzero dbl-64 0x5.b06b680ea2ccp-4 0xe.f452bp-4 : -0x8.c8a12a0e97ccp-28 0x1.350fb9b262865p+0 : inexact-ok += clog upward dbl-64 0x5.b06b680ea2ccp-4 0xe.f452bp-4 : -0x8.c8a12a0e97ccp-28 0x1.350fb9b262866p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0efp-28L 0x1.350fb9b2628656fp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0eep-28L 0x1.350fb9b2628656f2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0eep-28L 0x1.350fb9b2628656fp+0L : inexact-ok += clog upward ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0eep-28L 0x1.350fb9b2628656f2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0efp-28L 0x1.350fb9b2628656fp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0eep-28L 0x1.350fb9b2628656f2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0eep-28L 0x1.350fb9b2628656fp+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0eep-28L 0x1.350fb9b2628656f2p+0L : inexact-ok += clog downward ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0ee10ab4a1a10a28p-28L 0x1.350fb9b2628656f1dfa73c2c72e7p+0L : inexact-ok += clog tonearest ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0ee10ab4a1a10a28p-28L 0x1.350fb9b2628656f1dfa73c2c72e8p+0L : inexact-ok += clog towardzero ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0ee10ab4a1a10a2p-28L 0x1.350fb9b2628656f1dfa73c2c72e7p+0L : inexact-ok += clog upward ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0ee10ab4a1a10a2p-28L 0x1.350fb9b2628656f1dfa73c2c72e8p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0ee10ab4a1a10cp-28L 0x1.350fb9b2628656f1dfa73c2c728p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0ee10ab4a1a10cp-28L 0x1.350fb9b2628656f1dfa73c2c73p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0ee10ab4a1a108p-28L 0x1.350fb9b2628656f1dfa73c2c728p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452bp-4L : -0x8.c8a12a0e97cc0ee10ab4a1a108p-28L 0x1.350fb9b2628656f1dfa73c2c73p+0L : inexact-ok += clog downward dbl-64 0x5.b06b680ea2ccp-4 0xe.f452b965da9fp-4 : 0xa.87ffffffffff8p-100 0x1.350fb9e7d9c34p+0 : inexact-ok += clog tonearest dbl-64 0x5.b06b680ea2ccp-4 0xe.f452b965da9fp-4 : 0xa.88p-100 0x1.350fb9e7d9c34p+0 : inexact-ok += clog towardzero dbl-64 0x5.b06b680ea2ccp-4 0xe.f452b965da9fp-4 : 0xa.87ffffffffff8p-100 0x1.350fb9e7d9c34p+0 : inexact-ok += clog upward dbl-64 0x5.b06b680ea2ccp-4 0xe.f452b965da9fp-4 : 0xa.88p-100 0x1.350fb9e7d9c35p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffp-100L 0x1.350fb9e7d9c340e6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.88p-100L 0x1.350fb9e7d9c340e6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffp-100L 0x1.350fb9e7d9c340e6p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.88p-100L 0x1.350fb9e7d9c340e8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffp-100L 0x1.350fb9e7d9c340e6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.88p-100L 0x1.350fb9e7d9c340e6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffp-100L 0x1.350fb9e7d9c340e6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.88p-100L 0x1.350fb9e7d9c340e8p+0L : inexact-ok += clog downward ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffffffffff91178p-100L 0x1.350fb9e7d9c340e6bc988b916233p+0L : inexact-ok += clog tonearest ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffffffffff9118p-100L 0x1.350fb9e7d9c340e6bc988b916233p+0L : inexact-ok += clog towardzero ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffffffffff91178p-100L 0x1.350fb9e7d9c340e6bc988b916233p+0L : inexact-ok += clog upward ldbl-128 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffffffffff9118p-100L 0x1.350fb9e7d9c340e6bc988b916234p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffffffffff91p-100L 0x1.350fb9e7d9c340e6bc988b9162p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffffffffff91p-100L 0x1.350fb9e7d9c340e6bc988b9162p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffffffffff91p-100L 0x1.350fb9e7d9c340e6bc988b9162p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.b06b680ea2ccp-4L 0xe.f452b965da9fp-4L : 0xa.87fffffffffffffffffffff914p-100L 0x1.350fb9e7d9c340e6bc988b91628p+0L : inexact-ok +clog 0x659b70ab7971bp-53 0x1f5d111e08abecp-53 += clog downward flt-32 0x3.2cdb88p-4f 0xf.ae889p-4f : 0x1.7cda48p-28f 0x1.5efb12p+0f : inexact-ok += clog tonearest flt-32 0x3.2cdb88p-4f 0xf.ae889p-4f : 0x1.7cda4ap-28f 0x1.5efb12p+0f : inexact-ok += clog towardzero flt-32 0x3.2cdb88p-4f 0xf.ae889p-4f : 0x1.7cda48p-28f 0x1.5efb12p+0f : inexact-ok += clog upward flt-32 0x3.2cdb88p-4f 0xf.ae889p-4f : 0x1.7cda4ap-28f 0x1.5efb14p+0f : inexact-ok += clog downward dbl-64 0x3.2cdb88p-4 0xf.ae889p-4 : 0x1.7cda49dc9673ap-28 0x1.5efb121726bd4p+0 : inexact-ok += clog tonearest dbl-64 0x3.2cdb88p-4 0xf.ae889p-4 : 0x1.7cda49dc9673ap-28 0x1.5efb121726bd5p+0 : inexact-ok += clog towardzero dbl-64 0x3.2cdb88p-4 0xf.ae889p-4 : 0x1.7cda49dc9673ap-28 0x1.5efb121726bd4p+0 : inexact-ok += clog upward dbl-64 0x3.2cdb88p-4 0xf.ae889p-4 : 0x1.7cda49dc9673bp-28 0x1.5efb121726bd5p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742p-28L 0x1.5efb121726bd4fc6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742p-28L 0x1.5efb121726bd4fc8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742p-28L 0x1.5efb121726bd4fc6p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a744p-28L 0x1.5efb121726bd4fc8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742p-28L 0x1.5efb121726bd4fc6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742p-28L 0x1.5efb121726bd4fc8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742p-28L 0x1.5efb121726bd4fc6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a744p-28L 0x1.5efb121726bd4fc8p+0L : inexact-ok += clog downward ldbl-128 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742119ebe96a8f4p-28L 0x1.5efb121726bd4fc767912f75f903p+0L : inexact-ok += clog tonearest ldbl-128 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742119ebe96a8f4p-28L 0x1.5efb121726bd4fc767912f75f904p+0L : inexact-ok += clog towardzero ldbl-128 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742119ebe96a8f4p-28L 0x1.5efb121726bd4fc767912f75f903p+0L : inexact-ok += clog upward ldbl-128 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742119ebe96a8f5p-28L 0x1.5efb121726bd4fc767912f75f904p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742119ebe96a88p-28L 0x1.5efb121726bd4fc767912f75f9p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742119ebe96a9p-28L 0x1.5efb121726bd4fc767912f75f9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742119ebe96a88p-28L 0x1.5efb121726bd4fc767912f75f9p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae889p-4L : 0x1.7cda49dc9673a742119ebe96a9p-28L 0x1.5efb121726bd4fc767912f75f98p+0L : inexact-ok += clog downward flt-32 0x3.2cdb88p-4f 0xf.ae888p-4f : -0xe.31ae5p-28f 0x1.5efb1p+0f : inexact-ok += clog tonearest flt-32 0x3.2cdb88p-4f 0xf.ae888p-4f : -0xe.31ae5p-28f 0x1.5efb12p+0f : inexact-ok += clog towardzero flt-32 0x3.2cdb88p-4f 0xf.ae888p-4f : -0xe.31ae4p-28f 0x1.5efb1p+0f : inexact-ok += clog upward flt-32 0x3.2cdb88p-4f 0xf.ae888p-4f : -0xe.31ae4p-28f 0x1.5efb12p+0f : inexact-ok += clog downward dbl-64 0x3.2cdb88p-4 0xf.ae888p-4 : -0xe.31ae4a978b3e8p-28 0x1.5efb11e45904ap+0 : inexact-ok += clog tonearest dbl-64 0x3.2cdb88p-4 0xf.ae888p-4 : -0xe.31ae4a978b3ep-28 0x1.5efb11e45904ap+0 : inexact-ok += clog towardzero dbl-64 0x3.2cdb88p-4 0xf.ae888p-4 : -0xe.31ae4a978b3ep-28 0x1.5efb11e45904ap+0 : inexact-ok += clog upward dbl-64 0x3.2cdb88p-4 0xf.ae888p-4 : -0xe.31ae4a978b3ep-28 0x1.5efb11e45904bp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a4p-28L 0x1.5efb11e45904a76ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a3p-28L 0x1.5efb11e45904a76ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a3p-28L 0x1.5efb11e45904a76ep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a3p-28L 0x1.5efb11e45904a77p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a4p-28L 0x1.5efb11e45904a76ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a3p-28L 0x1.5efb11e45904a76ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a3p-28L 0x1.5efb11e45904a76ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a3p-28L 0x1.5efb11e45904a77p+0L : inexact-ok += clog downward ldbl-128 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a343484519d14b8p-28L 0x1.5efb11e45904a76ef19d16ae0889p+0L : inexact-ok += clog tonearest ldbl-128 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a343484519d14b8p-28L 0x1.5efb11e45904a76ef19d16ae0889p+0L : inexact-ok += clog towardzero ldbl-128 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a343484519d14bp-28L 0x1.5efb11e45904a76ef19d16ae0889p+0L : inexact-ok += clog upward ldbl-128 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a343484519d14bp-28L 0x1.5efb11e45904a76ef19d16ae088ap+0L : inexact-ok += clog downward ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a343484519d18p-28L 0x1.5efb11e45904a76ef19d16ae088p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a343484519d14p-28L 0x1.5efb11e45904a76ef19d16ae088p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a343484519d14p-28L 0x1.5efb11e45904a76ef19d16ae088p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae888p-4L : -0xe.31ae4a978b3e0a343484519d14p-28L 0x1.5efb11e45904a76ef19d16ae09p+0L : inexact-ok += clog downward dbl-64 0x3.2cdb88p-4 0xf.ae888f0455f6p-4 : 0x8.631a378465cf8p-32 0x1.5efb121407a62p+0 : inexact-ok += clog tonearest dbl-64 0x3.2cdb88p-4 0xf.ae888f0455f6p-4 : 0x8.631a378465cf8p-32 0x1.5efb121407a63p+0 : inexact-ok += clog towardzero dbl-64 0x3.2cdb88p-4 0xf.ae888f0455f6p-4 : 0x8.631a378465cf8p-32 0x1.5efb121407a62p+0 : inexact-ok += clog upward dbl-64 0x3.2cdb88p-4 0xf.ae888f0455f6p-4 : 0x8.631a378465dp-32 0x1.5efb121407a63p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf833p-32L 0x1.5efb121407a6284ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf833p-32L 0x1.5efb121407a6284ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf833p-32L 0x1.5efb121407a6284ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf834p-32L 0x1.5efb121407a6284cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf833p-32L 0x1.5efb121407a6284ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf833p-32L 0x1.5efb121407a6284ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf833p-32L 0x1.5efb121407a6284ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf834p-32L 0x1.5efb121407a6284cp+0L : inexact-ok += clog downward ldbl-128 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf8334c92e13619ef8p-32L 0x1.5efb121407a6284aff4e29b6f143p+0L : inexact-ok += clog tonearest ldbl-128 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf8334c92e13619fp-32L 0x1.5efb121407a6284aff4e29b6f143p+0L : inexact-ok += clog towardzero ldbl-128 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf8334c92e13619ef8p-32L 0x1.5efb121407a6284aff4e29b6f143p+0L : inexact-ok += clog upward ldbl-128 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf8334c92e13619fp-32L 0x1.5efb121407a6284aff4e29b6f144p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf8334c92e13619cp-32L 0x1.5efb121407a6284aff4e29b6f1p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf8334c92e1361ap-32L 0x1.5efb121407a6284aff4e29b6f18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf8334c92e13619cp-32L 0x1.5efb121407a6284aff4e29b6f1p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.2cdb88p-4L 0xf.ae888f0455f6p-4L : 0x8.631a378465cf8334c92e1361ap-32L 0x1.5efb121407a6284aff4e29b6f18p+0L : inexact-ok += clog downward flt-32 0x3.2cdb84p-4f 0xf.ae889p-4f : 0xb.1a368p-32f 0x1.5efb12p+0f : inexact-ok += clog tonearest flt-32 0x3.2cdb84p-4f 0xf.ae889p-4f : 0xb.1a368p-32f 0x1.5efb12p+0f : inexact-ok += clog towardzero flt-32 0x3.2cdb84p-4f 0xf.ae889p-4f : 0xb.1a368p-32f 0x1.5efb12p+0f : inexact-ok += clog upward flt-32 0x3.2cdb84p-4f 0xf.ae889p-4f : 0xb.1a369p-32f 0x1.5efb14p+0f : inexact-ok += clog downward dbl-64 0x3.2cdb84p-4 0xf.ae889p-4 : 0xb.1a368784bca1p-32 0x1.5efb1255e0df8p+0 : inexact-ok += clog tonearest dbl-64 0x3.2cdb84p-4 0xf.ae889p-4 : 0xb.1a368784bca1p-32 0x1.5efb1255e0df8p+0 : inexact-ok += clog towardzero dbl-64 0x3.2cdb84p-4 0xf.ae889p-4 : 0xb.1a368784bca1p-32 0x1.5efb1255e0df8p+0 : inexact-ok += clog upward dbl-64 0x3.2cdb84p-4 0xf.ae889p-4 : 0xb.1a368784bca18p-32 0x1.5efb1255e0df9p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137ep-32L 0x1.5efb1255e0df8738p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137ep-32L 0x1.5efb1255e0df873ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137ep-32L 0x1.5efb1255e0df8738p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137fp-32L 0x1.5efb1255e0df873ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137ep-32L 0x1.5efb1255e0df8738p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137ep-32L 0x1.5efb1255e0df873ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137ep-32L 0x1.5efb1255e0df8738p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137fp-32L 0x1.5efb1255e0df873ap+0L : inexact-ok += clog downward ldbl-128 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137e307fa81f27b98p-32L 0x1.5efb1255e0df8739df5e9e519396p+0L : inexact-ok += clog tonearest ldbl-128 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137e307fa81f27bap-32L 0x1.5efb1255e0df8739df5e9e519396p+0L : inexact-ok += clog towardzero ldbl-128 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137e307fa81f27b98p-32L 0x1.5efb1255e0df8739df5e9e519396p+0L : inexact-ok += clog upward ldbl-128 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137e307fa81f27bap-32L 0x1.5efb1255e0df8739df5e9e519397p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137e307fa81f278p-32L 0x1.5efb1255e0df8739df5e9e51938p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137e307fa81f27cp-32L 0x1.5efb1255e0df8739df5e9e51938p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137e307fa81f278p-32L 0x1.5efb1255e0df8739df5e9e51938p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae889p-4L : 0xb.1a368784bca137e307fa81f27cp-32L 0x1.5efb1255e0df8739df5e9e5194p+0L : inexact-ok += clog downward flt-32 0x3.2cdb84p-4f 0xf.ae888p-4f : -0xe.fce53p-28f 0x1.5efb12p+0f : inexact-ok += clog tonearest flt-32 0x3.2cdb84p-4f 0xf.ae888p-4f : -0xe.fce53p-28f 0x1.5efb12p+0f : inexact-ok += clog towardzero flt-32 0x3.2cdb84p-4f 0xf.ae888p-4f : -0xe.fce52p-28f 0x1.5efb12p+0f : inexact-ok += clog upward flt-32 0x3.2cdb84p-4f 0xf.ae888p-4f : -0xe.fce52p-28f 0x1.5efb14p+0f : inexact-ok += clog downward dbl-64 0x3.2cdb84p-4 0xf.ae888p-4 : -0xe.fce52d8a2e47p-28 0x1.5efb122313271p+0 : inexact-ok += clog tonearest dbl-64 0x3.2cdb84p-4 0xf.ae888p-4 : -0xe.fce52d8a2e47p-28 0x1.5efb122313272p+0 : inexact-ok += clog towardzero dbl-64 0x3.2cdb84p-4 0xf.ae888p-4 : -0xe.fce52d8a2e468p-28 0x1.5efb122313271p+0 : inexact-ok += clog upward dbl-64 0x3.2cdb84p-4 0xf.ae888p-4 : -0xe.fce52d8a2e468p-28 0x1.5efb122313272p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da7p-28L 0x1.5efb1223132719d6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da7p-28L 0x1.5efb1223132719d6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6p-28L 0x1.5efb1223132719d6p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6p-28L 0x1.5efb1223132719d8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da7p-28L 0x1.5efb1223132719d6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da7p-28L 0x1.5efb1223132719d6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6p-28L 0x1.5efb1223132719d6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6p-28L 0x1.5efb1223132719d8p+0L : inexact-ok += clog downward ldbl-128 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6dcbb2c73d1868p-28L 0x1.5efb1223132719d6e8ecdcb02e34p+0L : inexact-ok += clog tonearest ldbl-128 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6dcbb2c73d1868p-28L 0x1.5efb1223132719d6e8ecdcb02e34p+0L : inexact-ok += clog towardzero ldbl-128 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6dcbb2c73d186p-28L 0x1.5efb1223132719d6e8ecdcb02e34p+0L : inexact-ok += clog upward ldbl-128 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6dcbb2c73d186p-28L 0x1.5efb1223132719d6e8ecdcb02e35p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6dcbb2c73d1cp-28L 0x1.5efb1223132719d6e8ecdcb02ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6dcbb2c73d18p-28L 0x1.5efb1223132719d6e8ecdcb02ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6dcbb2c73d18p-28L 0x1.5efb1223132719d6e8ecdcb02ep+0L : inexact-ok += clog upward ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae888p-4L : -0xe.fce52d8a2e46da6dcbb2c73d18p-28L 0x1.5efb1223132719d6e8ecdcb02e8p+0L : inexact-ok += clog downward dbl-64 0x3.2cdb84p-4 0xf.ae888f0455f6p-4 : -0x4.5053e047de038p-32 0x1.5efb1252c1c86p+0 : inexact-ok += clog tonearest dbl-64 0x3.2cdb84p-4 0xf.ae888f0455f6p-4 : -0x4.5053e047de034p-32 0x1.5efb1252c1c86p+0 : inexact-ok += clog towardzero dbl-64 0x3.2cdb84p-4 0xf.ae888f0455f6p-4 : -0x4.5053e047de034p-32 0x1.5efb1252c1c86p+0 : inexact-ok += clog upward dbl-64 0x3.2cdb84p-4 0xf.ae888f0455f6p-4 : -0x4.5053e047de034p-32 0x1.5efb1252c1c87p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03431p-32L 0x1.5efb1252c1c8635cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03431p-32L 0x1.5efb1252c1c8635cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de034308p-32L 0x1.5efb1252c1c8635cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de034308p-32L 0x1.5efb1252c1c8635ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03431p-32L 0x1.5efb1252c1c8635cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03431p-32L 0x1.5efb1252c1c8635cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de034308p-32L 0x1.5efb1252c1c8635cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de034308p-32L 0x1.5efb1252c1c8635ep+0L : inexact-ok += clog downward ldbl-128 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03430d57e33858e0b8p-32L 0x1.5efb1252c1c8635cd4ee1d5efcc5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03430d57e33858e0b4p-32L 0x1.5efb1252c1c8635cd4ee1d5efcc6p+0L : inexact-ok += clog towardzero ldbl-128 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03430d57e33858e0b4p-32L 0x1.5efb1252c1c8635cd4ee1d5efcc5p+0L : inexact-ok += clog upward ldbl-128 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03430d57e33858e0b4p-32L 0x1.5efb1252c1c8635cd4ee1d5efcc6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03430d57e33858e2p-32L 0x1.5efb1252c1c8635cd4ee1d5efc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03430d57e33858ep-32L 0x1.5efb1252c1c8635cd4ee1d5efdp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03430d57e33858ep-32L 0x1.5efb1252c1c8635cd4ee1d5efc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.2cdb84p-4L 0xf.ae888f0455f6p-4L : -0x4.5053e047de03430d57e33858ep-32L 0x1.5efb1252c1c8635cd4ee1d5efdp+0L : inexact-ok += clog downward dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae889p-4 : 0xf.6a8a674799a08p-32 0x1.5efb124092d45p+0 : inexact-ok += clog tonearest dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae889p-4 : 0xf.6a8a674799a08p-32 0x1.5efb124092d46p+0 : inexact-ok += clog towardzero dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae889p-4 : 0xf.6a8a674799a08p-32 0x1.5efb124092d45p+0 : inexact-ok += clog upward dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae889p-4 : 0xf.6a8a674799a1p-32 0x1.5efb124092d46p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad1p-32L 0x1.5efb124092d45cfcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad1p-32L 0x1.5efb124092d45cfcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad1p-32L 0x1.5efb124092d45cfcp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad2p-32L 0x1.5efb124092d45cfep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad1p-32L 0x1.5efb124092d45cfcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad1p-32L 0x1.5efb124092d45cfcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad1p-32L 0x1.5efb124092d45cfcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad2p-32L 0x1.5efb124092d45cfep+0L : inexact-ok += clog downward ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad12466ff7a5f5b8p-32L 0x1.5efb124092d45cfc2d3529445df8p+0L : inexact-ok += clog tonearest ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad12466ff7a5f5b8p-32L 0x1.5efb124092d45cfc2d3529445df9p+0L : inexact-ok += clog towardzero ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad12466ff7a5f5b8p-32L 0x1.5efb124092d45cfc2d3529445df8p+0L : inexact-ok += clog upward ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad12466ff7a5f5cp-32L 0x1.5efb124092d45cfc2d3529445df9p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad12466ff7a5f4p-32L 0x1.5efb124092d45cfc2d3529445d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad12466ff7a5f4p-32L 0x1.5efb124092d45cfc2d3529445ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad12466ff7a5f4p-32L 0x1.5efb124092d45cfc2d3529445d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae889p-4L : 0xf.6a8a674799a0ad12466ff7a5f8p-32L 0x1.5efb124092d45cfc2d3529445ep+0L : inexact-ok += clog downward dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae888p-4 : -0xe.b7dfef06b4d6p-28 0x1.5efb120dc51bdp+0 : inexact-ok += clog tonearest dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae888p-4 : -0xe.b7dfef06b4d58p-28 0x1.5efb120dc51bep+0 : inexact-ok += clog towardzero dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae888p-4 : -0xe.b7dfef06b4d58p-28 0x1.5efb120dc51bdp+0 : inexact-ok += clog upward dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae888p-4 : -0xe.b7dfef06b4d58p-28 0x1.5efb120dc51bep+0 : inexact-ok += clog downward ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc7p-28L 0x1.5efb120dc51bdb92p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc7p-28L 0x1.5efb120dc51bdb92p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6p-28L 0x1.5efb120dc51bdb92p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6p-28L 0x1.5efb120dc51bdb94p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc7p-28L 0x1.5efb120dc51bdb92p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc7p-28L 0x1.5efb120dc51bdb92p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6p-28L 0x1.5efb120dc51bdb92p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6p-28L 0x1.5efb120dc51bdb94p+0L : inexact-ok += clog downward ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6f87dffdf94a5p-28L 0x1.5efb120dc51bdb92cd7b42cd9d85p+0L : inexact-ok += clog tonearest ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6f87dffdf94a5p-28L 0x1.5efb120dc51bdb92cd7b42cd9d86p+0L : inexact-ok += clog towardzero ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6f87dffdf94a48p-28L 0x1.5efb120dc51bdb92cd7b42cd9d85p+0L : inexact-ok += clog upward ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6f87dffdf94a48p-28L 0x1.5efb120dc51bdb92cd7b42cd9d86p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6f87dffdf94cp-28L 0x1.5efb120dc51bdb92cd7b42cd9d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6f87dffdf94cp-28L 0x1.5efb120dc51bdb92cd7b42cd9d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6f87dffdf948p-28L 0x1.5efb120dc51bdb92cd7b42cd9d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae888p-4L : -0xe.b7dfef06b4d5bc6f87dffdf948p-28L 0x1.5efb120dc51bdb92cd7b42cd9ep+0L : inexact-ok += clog downward dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae888f0455f6p-4 : -0x3.2e00000000002p-100 0x1.5efb123d73bd3p+0 : inexact-ok += clog tonearest dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae888f0455f6p-4 : -0x3.2ep-100 0x1.5efb123d73bd3p+0 : inexact-ok += clog towardzero dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae888f0455f6p-4 : -0x3.2ep-100 0x1.5efb123d73bd3p+0 : inexact-ok += clog upward dbl-64 0x3.2cdb855bcb8d8p-4 0xf.ae888f0455f6p-4 : -0x3.2ep-100 0x1.5efb123d73bd4p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2e00000000000004p-100L 0x1.5efb123d73bd37e4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2ep-100L 0x1.5efb123d73bd37e4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2ep-100L 0x1.5efb123d73bd37e4p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2ep-100L 0x1.5efb123d73bd37e6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2e00000000000004p-100L 0x1.5efb123d73bd37e4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2ep-100L 0x1.5efb123d73bd37e4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2ep-100L 0x1.5efb123d73bd37e4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2ep-100L 0x1.5efb123d73bd37e6p+0L : inexact-ok += clog downward ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2e0000000000000000000000a1c4p-100L 0x1.5efb123d73bd37e4296172e7a96ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2e0000000000000000000000a1c4p-100L 0x1.5efb123d73bd37e4296172e7a96ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2e0000000000000000000000a1c2p-100L 0x1.5efb123d73bd37e4296172e7a96ep+0L : inexact-ok += clog upward ldbl-128 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2e0000000000000000000000a1c2p-100L 0x1.5efb123d73bd37e4296172e7a96fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2e0000000000000000000000a2p-100L 0x1.5efb123d73bd37e4296172e7a9p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2e0000000000000000000000a2p-100L 0x1.5efb123d73bd37e4296172e7a98p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2e0000000000000000000000a1p-100L 0x1.5efb123d73bd37e4296172e7a9p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.2cdb855bcb8d8p-4L 0xf.ae888f0455f6p-4L : -0x3.2e0000000000000000000000a1p-100L 0x1.5efb123d73bd37e4296172e7a98p+0L : inexact-ok +clog 0x15cfbd1990d1ffp-53 0x176a3973e09a9ap-53 += clog downward flt-32 0xa.e7de9p-4f 0xb.b51ccp-4f : 0x6.a0c5p-28f 0xd.22266p-4f : inexact-ok += clog tonearest flt-32 0xa.e7de9p-4f 0xb.b51ccp-4f : 0x6.a0c508p-28f 0xd.22266p-4f : inexact-ok += clog towardzero flt-32 0xa.e7de9p-4f 0xb.b51ccp-4f : 0x6.a0c5p-28f 0xd.22266p-4f : inexact-ok += clog upward flt-32 0xa.e7de9p-4f 0xb.b51ccp-4f : 0x6.a0c508p-28f 0xd.22267p-4f : inexact-ok += clog downward dbl-64 0xa.e7de9p-4 0xb.b51ccp-4 : 0x6.a0c505411ccd4p-28 0xd.222660fc51488p-4 : inexact-ok += clog tonearest dbl-64 0xa.e7de9p-4 0xb.b51ccp-4 : 0x6.a0c505411ccd8p-28 0xd.222660fc5149p-4 : inexact-ok += clog towardzero dbl-64 0xa.e7de9p-4 0xb.b51ccp-4 : 0x6.a0c505411ccd4p-28 0xd.222660fc51488p-4 : inexact-ok += clog upward dbl-64 0xa.e7de9p-4 0xb.b51ccp-4 : 0x6.a0c505411ccd8p-28 0xd.222660fc5149p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69ep-28L 0xd.222660fc5148e63p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e8p-28L 0xd.222660fc5148e64p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69ep-28L 0xd.222660fc5148e63p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e8p-28L 0xd.222660fc5148e64p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69ep-28L 0xd.222660fc5148e63p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e8p-28L 0xd.222660fc5148e64p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69ep-28L 0xd.222660fc5148e63p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e8p-28L 0xd.222660fc5148e64p-4L : inexact-ok += clog downward ldbl-128 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e57f63d167c30cp-28L 0xd.222660fc5148e63c9d6dd2b737ep-4L : inexact-ok += clog tonearest ldbl-128 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e57f63d167c30cp-28L 0xd.222660fc5148e63c9d6dd2b737e8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e57f63d167c30cp-28L 0xd.222660fc5148e63c9d6dd2b737ep-4L : inexact-ok += clog upward ldbl-128 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e57f63d167c31p-28L 0xd.222660fc5148e63c9d6dd2b737e8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e57f63d167c2p-28L 0xd.222660fc5148e63c9d6dd2b734p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e57f63d167c4p-28L 0xd.222660fc5148e63c9d6dd2b738p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e57f63d167c2p-28L 0xd.222660fc5148e63c9d6dd2b734p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.e7de9p-4L 0xb.b51ccp-4L : 0x6.a0c505411ccd69e57f63d167c4p-28L 0xd.222660fc5148e63c9d6dd2b738p-4L : inexact-ok += clog downward flt-32 0xa.e7de9p-4f 0xb.b51cbp-4f : -0x5.1457b8p-28f 0xd.22265p-4f : inexact-ok += clog tonearest flt-32 0xa.e7de9p-4f 0xb.b51cbp-4f : -0x5.1457bp-28f 0xd.22265p-4f : inexact-ok += clog towardzero flt-32 0xa.e7de9p-4f 0xb.b51cbp-4f : -0x5.1457bp-28f 0xd.22265p-4f : inexact-ok += clog upward flt-32 0xa.e7de9p-4f 0xb.b51cbp-4f : -0x5.1457bp-28f 0xd.22266p-4f : inexact-ok += clog downward dbl-64 0xa.e7de9p-4 0xb.b51cbp-4 : -0x5.1457b19cd0acp-28 0xd.2226561472b98p-4 : inexact-ok += clog tonearest dbl-64 0xa.e7de9p-4 0xb.b51cbp-4 : -0x5.1457b19cd0abcp-28 0xd.2226561472bap-4 : inexact-ok += clog towardzero dbl-64 0xa.e7de9p-4 0xb.b51cbp-4 : -0x5.1457b19cd0abcp-28 0xd.2226561472b98p-4 : inexact-ok += clog upward dbl-64 0xa.e7de9p-4 0xb.b51cbp-4 : -0x5.1457b19cd0abcp-28 0xd.2226561472bap-4 : inexact-ok += clog downward ldbl-96-intel 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc75p-28L 0xd.2226561472b9f47p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc75p-28L 0xd.2226561472b9f47p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc748p-28L 0xd.2226561472b9f47p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc748p-28L 0xd.2226561472b9f48p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc75p-28L 0xd.2226561472b9f47p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc75p-28L 0xd.2226561472b9f47p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc748p-28L 0xd.2226561472b9f47p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc748p-28L 0xd.2226561472b9f48p-4L : inexact-ok += clog downward ldbl-128 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc74efbf4bde310f8p-28L 0xd.2226561472b9f471e5939579ae9p-4L : inexact-ok += clog tonearest ldbl-128 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc74efbf4bde310f4p-28L 0xd.2226561472b9f471e5939579ae98p-4L : inexact-ok += clog towardzero ldbl-128 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc74efbf4bde310f4p-28L 0xd.2226561472b9f471e5939579ae9p-4L : inexact-ok += clog upward ldbl-128 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc74efbf4bde310f4p-28L 0xd.2226561472b9f471e5939579ae98p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc74efbf4bde312p-28L 0xd.2226561472b9f471e5939579acp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc74efbf4bde31p-28L 0xd.2226561472b9f471e5939579bp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc74efbf4bde31p-28L 0xd.2226561472b9f471e5939579acp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.e7de9p-4L 0xb.b51cbp-4L : -0x5.1457b19cd0abc74efbf4bde31p-28L 0xd.2226561472b9f471e5939579bp-4L : inexact-ok += clog downward dbl-64 0xa.e7de9p-4 0xb.b51cb9f04d4dp-4 : 0x2.315db40af1556p-28 0xd.22265cdaaaa68p-4 : inexact-ok += clog tonearest dbl-64 0xa.e7de9p-4 0xb.b51cb9f04d4dp-4 : 0x2.315db40af1558p-28 0xd.22265cdaaaa7p-4 : inexact-ok += clog towardzero dbl-64 0xa.e7de9p-4 0xb.b51cb9f04d4dp-4 : 0x2.315db40af1556p-28 0xd.22265cdaaaa68p-4 : inexact-ok += clog upward dbl-64 0xa.e7de9p-4 0xb.b51cb9f04d4dp-4 : 0x2.315db40af1558p-28 0xd.22265cdaaaa7p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706cp-28L 0xd.22265cdaaaa6f84p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155707p-28L 0xd.22265cdaaaa6f84p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706cp-28L 0xd.22265cdaaaa6f84p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155707p-28L 0xd.22265cdaaaa6f85p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706cp-28L 0xd.22265cdaaaa6f84p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155707p-28L 0xd.22265cdaaaa6f84p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706cp-28L 0xd.22265cdaaaa6f84p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155707p-28L 0xd.22265cdaaaa6f85p-4L : inexact-ok += clog downward ldbl-128 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706f744e4b1d58b4p-28L 0xd.22265cdaaaa6f846a661ecdb5b7p-4L : inexact-ok += clog tonearest ldbl-128 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706f744e4b1d58b4p-28L 0xd.22265cdaaaa6f846a661ecdb5b78p-4L : inexact-ok += clog towardzero ldbl-128 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706f744e4b1d58b4p-28L 0xd.22265cdaaaa6f846a661ecdb5b7p-4L : inexact-ok += clog upward ldbl-128 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706f744e4b1d58b6p-28L 0xd.22265cdaaaa6f846a661ecdb5b78p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706f744e4b1d58p-28L 0xd.22265cdaaaa6f846a661ecdb58p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706f744e4b1d59p-28L 0xd.22265cdaaaa6f846a661ecdb5cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706f744e4b1d58p-28L 0xd.22265cdaaaa6f846a661ecdb58p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.e7de9p-4L 0xb.b51cb9f04d4dp-4L : 0x2.315db40af155706f744e4b1d59p-28L 0xd.22265cdaaaa6f846a661ecdb5cp-4L : inexact-ok += clog downward flt-32 0xa.e7de8p-4f 0xb.b51ccp-4f : -0x4.471988p-28f 0xd.22266p-4f : inexact-ok += clog tonearest flt-32 0xa.e7de8p-4f 0xb.b51ccp-4f : -0x4.47198p-28f 0xd.22267p-4f : inexact-ok += clog towardzero flt-32 0xa.e7de8p-4f 0xb.b51ccp-4f : -0x4.47198p-28f 0xd.22266p-4f : inexact-ok += clog upward flt-32 0xa.e7de8p-4f 0xb.b51ccp-4f : -0x4.47198p-28f 0xd.22267p-4f : inexact-ok += clog downward dbl-64 0xa.e7de8p-4 0xb.b51ccp-4 : -0x4.47198124c8b3p-28 0xd.22266cb16e07p-4 : inexact-ok += clog tonearest dbl-64 0xa.e7de8p-4 0xb.b51ccp-4 : -0x4.47198124c8b3p-28 0xd.22266cb16e07p-4 : inexact-ok += clog towardzero dbl-64 0xa.e7de8p-4 0xb.b51ccp-4 : -0x4.47198124c8b2cp-28 0xd.22266cb16e07p-4 : inexact-ok += clog upward dbl-64 0xa.e7de8p-4 0xb.b51ccp-4 : -0x4.47198124c8b2cp-28 0xd.22266cb16e078p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e108p-28L 0xd.22266cb16e072dfp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e1p-28L 0xd.22266cb16e072ep-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e1p-28L 0xd.22266cb16e072dfp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e1p-28L 0xd.22266cb16e072ep-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e108p-28L 0xd.22266cb16e072dfp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e1p-28L 0xd.22266cb16e072ep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e1p-28L 0xd.22266cb16e072dfp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e1p-28L 0xd.22266cb16e072ep-4L : inexact-ok += clog downward ldbl-128 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e102f7f1d703fdbcp-28L 0xd.22266cb16e072dfc165f6f337338p-4L : inexact-ok += clog tonearest ldbl-128 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e102f7f1d703fdb8p-28L 0xd.22266cb16e072dfc165f6f337338p-4L : inexact-ok += clog towardzero ldbl-128 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e102f7f1d703fdb8p-28L 0xd.22266cb16e072dfc165f6f337338p-4L : inexact-ok += clog upward ldbl-128 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e102f7f1d703fdb8p-28L 0xd.22266cb16e072dfc165f6f33734p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e102f7f1d703fep-28L 0xd.22266cb16e072dfc165f6f337p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e102f7f1d703fep-28L 0xd.22266cb16e072dfc165f6f3374p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e102f7f1d703fcp-28L 0xd.22266cb16e072dfc165f6f337p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.e7de8p-4L 0xb.b51ccp-4L : -0x4.47198124c8b2e102f7f1d703fcp-28L 0xd.22266cb16e072dfc165f6f3374p-4L : inexact-ok += clog downward flt-32 0xa.e7de8p-4f 0xb.b51cbp-4f : -0xf.fc365p-28f 0xd.22266p-4f : inexact-ok += clog tonearest flt-32 0xa.e7de8p-4f 0xb.b51cbp-4f : -0xf.fc364p-28f 0xd.22266p-4f : inexact-ok += clog towardzero flt-32 0xa.e7de8p-4f 0xb.b51cbp-4f : -0xf.fc364p-28f 0xd.22266p-4f : inexact-ok += clog upward flt-32 0xa.e7de8p-4f 0xb.b51cbp-4f : -0xf.fc364p-28f 0xd.22267p-4f : inexact-ok += clog downward dbl-64 0xa.e7de8p-4 0xb.b51cbp-4 : -0xf.fc3647f86d6bp-28 0xd.222661c98f79p-4 : inexact-ok += clog tonearest dbl-64 0xa.e7de8p-4 0xb.b51cbp-4 : -0xf.fc3647f86d6bp-28 0xd.222661c98f798p-4 : inexact-ok += clog towardzero dbl-64 0xa.e7de8p-4 0xb.b51cbp-4 : -0xf.fc3647f86d6a8p-28 0xd.222661c98f79p-4 : inexact-ok += clog upward dbl-64 0xa.e7de8p-4 0xb.b51cbp-4 : -0xf.fc3647f86d6a8p-28 0xd.222661c98f798p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1fp-28L 0xd.222661c98f795e4p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1fp-28L 0xd.222661c98f795e4p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ep-28L 0xd.222661c98f795e4p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ep-28L 0xd.222661c98f795e5p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1fp-28L 0xd.222661c98f795e4p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1fp-28L 0xd.222661c98f795e4p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ep-28L 0xd.222661c98f795e4p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ep-28L 0xd.222661c98f795e5p-4L : inexact-ok += clog downward ldbl-128 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ecaf5d8147ee8p-28L 0xd.222661c98f795e44972104f917fp-4L : inexact-ok += clog tonearest ldbl-128 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ecaf5d8147ee8p-28L 0xd.222661c98f795e44972104f917f8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ecaf5d8147ee78p-28L 0xd.222661c98f795e44972104f917fp-4L : inexact-ok += clog upward ldbl-128 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ecaf5d8147ee78p-28L 0xd.222661c98f795e44972104f917f8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ecaf5d8147fp-28L 0xd.222661c98f795e44972104f914p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ecaf5d8147fp-28L 0xd.222661c98f795e44972104f918p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ecaf5d8147ecp-28L 0xd.222661c98f795e44972104f914p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.e7de8p-4L 0xb.b51cbp-4L : -0xf.fc3647f86d6ae1ecaf5d8147ecp-28L 0xd.222661c98f795e44972104f918p-4L : inexact-ok += clog downward dbl-64 0xa.e7de8p-4 0xb.b51cb9f04d4dp-4 : -0x8.b680d866c17b8p-28 0xd.2226688fc7658p-4 : inexact-ok += clog tonearest dbl-64 0xa.e7de8p-4 0xb.b51cb9f04d4dp-4 : -0x8.b680d866c17b8p-28 0xd.2226688fc7658p-4 : inexact-ok += clog towardzero dbl-64 0xa.e7de8p-4 0xb.b51cb9f04d4dp-4 : -0x8.b680d866c17bp-28 0xd.2226688fc7658p-4 : inexact-ok += clog upward dbl-64 0xa.e7de8p-4 0xb.b51cb9f04d4dp-4 : -0x8.b680d866c17bp-28 0xd.2226688fc766p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68dp-28L 0xd.2226688fc765adep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68cp-28L 0xd.2226688fc765adfp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68cp-28L 0xd.2226688fc765adep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68cp-28L 0xd.2226688fc765adfp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68dp-28L 0xd.2226688fc765adep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68cp-28L 0xd.2226688fc765adfp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68cp-28L 0xd.2226688fc765adep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68cp-28L 0xd.2226688fc765adfp-4L : inexact-ok += clog downward ldbl-128 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68c4706f4c8b4e28p-28L 0xd.2226688fc765ade9f0b3791b8a18p-4L : inexact-ok += clog tonearest ldbl-128 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68c4706f4c8b4e28p-28L 0xd.2226688fc765ade9f0b3791b8a2p-4L : inexact-ok += clog towardzero ldbl-128 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68c4706f4c8b4e2p-28L 0xd.2226688fc765ade9f0b3791b8a18p-4L : inexact-ok += clog upward ldbl-128 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68c4706f4c8b4e2p-28L 0xd.2226688fc765ade9f0b3791b8a2p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68c4706f4c8b5p-28L 0xd.2226688fc765ade9f0b3791b88p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68c4706f4c8b5p-28L 0xd.2226688fc765ade9f0b3791b8cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68c4706f4c8b4cp-28L 0xd.2226688fc765ade9f0b3791b88p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.e7de8p-4L 0xb.b51cb9f04d4dp-4L : -0x8.b680d866c17b68c4706f4c8b4cp-28L 0xd.2226688fc765ade9f0b3791b8cp-4L : inexact-ok += clog downward dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51ccp-4 : 0x4.6f67526d6397cp-28 0xd.22266356f3bb8p-4 : inexact-ok += clog tonearest dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51ccp-4 : 0x4.6f67526d6397cp-28 0xd.22266356f3bb8p-4 : inexact-ok += clog towardzero dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51ccp-4 : 0x4.6f67526d6397cp-28 0xd.22266356f3bb8p-4 : inexact-ok += clog upward dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51ccp-4 : 0x4.6f67526d6398p-28 0xd.22266356f3bcp-4 : inexact-ok += clog downward ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce8p-28L 0xd.22266356f3bbb68p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce88p-28L 0xd.22266356f3bbb69p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce8p-28L 0xd.22266356f3bbb68p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce88p-28L 0xd.22266356f3bbb69p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce8p-28L 0xd.22266356f3bbb68p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce88p-28L 0xd.22266356f3bbb69p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce8p-28L 0xd.22266356f3bbb68p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce88p-28L 0xd.22266356f3bbb69p-4L : inexact-ok += clog downward ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce84c19866bed2ap-28L 0xd.22266356f3bbb688ab58afbb6a28p-4L : inexact-ok += clog tonearest ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce84c19866bed2ap-28L 0xd.22266356f3bbb688ab58afbb6a3p-4L : inexact-ok += clog towardzero ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce84c19866bed2ap-28L 0xd.22266356f3bbb688ab58afbb6a28p-4L : inexact-ok += clog upward ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce84c19866bed2a4p-28L 0xd.22266356f3bbb688ab58afbb6a3p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce84c19866bed2p-28L 0xd.22266356f3bbb688ab58afbb68p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce84c19866bed2p-28L 0xd.22266356f3bbb688ab58afbb6cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce84c19866bed2p-28L 0xd.22266356f3bbb688ab58afbb68p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51ccp-4L : 0x4.6f67526d6397ce84c19866bed4p-28L 0xd.22266356f3bbb688ab58afbb6cp-4L : inexact-ok += clog downward dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51cbp-4 : -0x7.45b567a60f81p-28 0xd.2226586f152c8p-4 : inexact-ok += clog tonearest dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51cbp-4 : -0x7.45b567a60f81p-28 0xd.2226586f152dp-4 : inexact-ok += clog towardzero dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51cbp-4 : -0x7.45b567a60f80cp-28 0xd.2226586f152c8p-4 : inexact-ok += clog upward dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51cbp-4 : -0x7.45b567a60f80cp-28 0xd.2226586f152dp-4 : inexact-ok += clog downward ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e558p-28L 0xd.2226586f152cff1p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e558p-28L 0xd.2226586f152cff1p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e55p-28L 0xd.2226586f152cff1p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e55p-28L 0xd.2226586f152cff2p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e558p-28L 0xd.2226586f152cff1p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e558p-28L 0xd.2226586f152cff1p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e55p-28L 0xd.2226586f152cff1p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e55p-28L 0xd.2226586f152cff2p-4L : inexact-ok += clog downward ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e5557ebf25fdfa04p-28L 0xd.2226586f152cff115fccb4c9afd8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e5557ebf25fdfap-28L 0xd.2226586f152cff115fccb4c9afd8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e5557ebf25fdfap-28L 0xd.2226586f152cff115fccb4c9afd8p-4L : inexact-ok += clog upward ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e5557ebf25fdfap-28L 0xd.2226586f152cff115fccb4c9afep-4L : inexact-ok += clog downward ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e5557ebf25fdfcp-28L 0xd.2226586f152cff115fccb4c9acp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e5557ebf25fdfap-28L 0xd.2226586f152cff115fccb4c9bp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e5557ebf25fdfap-28L 0xd.2226586f152cff115fccb4c9acp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51cbp-4L : -0x7.45b567a60f80e5557ebf25fdfap-28L 0xd.2226586f152cff115fccb4c9bp-4L : inexact-ok += clog downward dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51cb9f04d4dp-4 : 0x1.49fffffffffffp-100 0xd.22265f354d198p-4 : inexact-ok += clog tonearest dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51cb9f04d4dp-4 : 0x1.4ap-100 0xd.22265f354d1ap-4 : inexact-ok += clog towardzero dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51cb9f04d4dp-4 : 0x1.49fffffffffffp-100 0xd.22265f354d198p-4 : inexact-ok += clog upward dbl-64 0xa.e7de8cc868ff8p-4 0xb.b51cb9f04d4dp-4 : 0x1.4ap-100 0xd.22265f354d1ap-4 : inexact-ok += clog downward ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49fffffffffffffep-100L 0xd.22265f354d19deap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.4ap-100L 0xd.22265f354d19debp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49fffffffffffffep-100L 0xd.22265f354d19deap-4L : inexact-ok += clog upward ldbl-96-intel 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.4ap-100L 0xd.22265f354d19debp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49fffffffffffffep-100L 0xd.22265f354d19deap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.4ap-100L 0xd.22265f354d19debp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49fffffffffffffep-100L 0xd.22265f354d19deap-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.4ap-100L 0xd.22265f354d19debp-4L : inexact-ok += clog downward ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49ffffffffffffffffffffffe569p-100L 0xd.22265f354d19deab3705fff18eep-4L : inexact-ok += clog tonearest ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49ffffffffffffffffffffffe56ap-100L 0xd.22265f354d19deab3705fff18eep-4L : inexact-ok += clog towardzero ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49ffffffffffffffffffffffe569p-100L 0xd.22265f354d19deab3705fff18eep-4L : inexact-ok += clog upward ldbl-128 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49ffffffffffffffffffffffe56ap-100L 0xd.22265f354d19deab3705fff18ee8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49ffffffffffffffffffffffe5p-100L 0xd.22265f354d19deab3705fff18cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49ffffffffffffffffffffffe58p-100L 0xd.22265f354d19deab3705fff19p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49ffffffffffffffffffffffe5p-100L 0xd.22265f354d19deab3705fff18cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.e7de8cc868ff8p-4L 0xb.b51cb9f04d4dp-4L : 0x1.49ffffffffffffffffffffffe58p-100L 0xd.22265f354d19deab3705fff19p-4L : inexact-ok +clog 0x1367a310575591p-54 0x3cfcc0a0541f60p-54 += clog downward flt-32 0x4.d9e8c8p-4f 0xf.3f303p-4f : 0x8.bb692p-28f 0x1.43436p+0f : inexact-ok += clog tonearest flt-32 0x4.d9e8c8p-4f 0xf.3f303p-4f : 0x8.bb692p-28f 0x1.43436p+0f : inexact-ok += clog towardzero flt-32 0x4.d9e8c8p-4f 0xf.3f303p-4f : 0x8.bb692p-28f 0x1.43436p+0f : inexact-ok += clog upward flt-32 0x4.d9e8c8p-4f 0xf.3f303p-4f : 0x8.bb693p-28f 0x1.434362p+0f : inexact-ok += clog downward dbl-64 0x4.d9e8c8p-4 0xf.3f303p-4 : 0x8.bb69253c03ac8p-28 0x1.434360bfe5259p+0 : inexact-ok += clog tonearest dbl-64 0x4.d9e8c8p-4 0xf.3f303p-4 : 0x8.bb69253c03ac8p-28 0x1.434360bfe525ap+0 : inexact-ok += clog towardzero dbl-64 0x4.d9e8c8p-4 0xf.3f303p-4 : 0x8.bb69253c03ac8p-28 0x1.434360bfe5259p+0 : inexact-ok += clog upward dbl-64 0x4.d9e8c8p-4 0xf.3f303p-4 : 0x8.bb69253c03adp-28 0x1.434360bfe525ap+0 : inexact-ok += clog downward ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ecp-28L 0x1.434360bfe5259a62p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8edp-28L 0x1.434360bfe5259a62p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ecp-28L 0x1.434360bfe5259a62p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8edp-28L 0x1.434360bfe5259a64p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ecp-28L 0x1.434360bfe5259a62p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8edp-28L 0x1.434360bfe5259a62p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ecp-28L 0x1.434360bfe5259a62p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8edp-28L 0x1.434360bfe5259a64p+0L : inexact-ok += clog downward ldbl-128 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ec868b22c381ap-28L 0x1.434360bfe5259a623c59641873e5p+0L : inexact-ok += clog tonearest ldbl-128 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ec868b22c381a08p-28L 0x1.434360bfe5259a623c59641873e5p+0L : inexact-ok += clog towardzero ldbl-128 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ec868b22c381ap-28L 0x1.434360bfe5259a623c59641873e5p+0L : inexact-ok += clog upward ldbl-128 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ec868b22c381a08p-28L 0x1.434360bfe5259a623c59641873e6p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ec868b22c3818p-28L 0x1.434360bfe5259a623c596418738p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ec868b22c381cp-28L 0x1.434360bfe5259a623c59641874p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ec868b22c3818p-28L 0x1.434360bfe5259a623c596418738p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f303p-4L : 0x8.bb69253c03ac8ec868b22c381cp-28L 0x1.434360bfe5259a623c59641874p+0L : inexact-ok += clog downward flt-32 0x4.d9e8c8p-4f 0xf.3f302p-4f : -0x6.83c708p-28f 0x1.43436p+0f : inexact-ok += clog tonearest flt-32 0x4.d9e8c8p-4f 0xf.3f302p-4f : -0x6.83c7p-28f 0x1.43436p+0f : inexact-ok += clog towardzero flt-32 0x4.d9e8c8p-4f 0xf.3f302p-4f : -0x6.83c7p-28f 0x1.43436p+0f : inexact-ok += clog upward flt-32 0x4.d9e8c8p-4f 0xf.3f302p-4f : -0x6.83c7p-28f 0x1.434362p+0f : inexact-ok += clog downward dbl-64 0x4.d9e8c8p-4 0xf.3f302p-4 : -0x6.83c700a712944p-28 0x1.4343607246992p+0 : inexact-ok += clog tonearest dbl-64 0x4.d9e8c8p-4 0xf.3f302p-4 : -0x6.83c700a71294p-28 0x1.4343607246992p+0 : inexact-ok += clog towardzero dbl-64 0x4.d9e8c8p-4 0xf.3f302p-4 : -0x6.83c700a71294p-28 0x1.4343607246992p+0 : inexact-ok += clog upward dbl-64 0x4.d9e8c8p-4 0xf.3f302p-4 : -0x6.83c700a71294p-28 0x1.4343607246993p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941adp-28L 0x1.4343607246992522p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8p-28L 0x1.4343607246992524p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8p-28L 0x1.4343607246992522p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8p-28L 0x1.4343607246992524p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941adp-28L 0x1.4343607246992522p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8p-28L 0x1.4343607246992524p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8p-28L 0x1.4343607246992522p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8p-28L 0x1.4343607246992524p+0L : inexact-ok += clog downward ldbl-128 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8bcba227334d4p-28L 0x1.4343607246992523f18132ae59f1p+0L : inexact-ok += clog tonearest ldbl-128 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8bcba227334dp-28L 0x1.4343607246992523f18132ae59f2p+0L : inexact-ok += clog towardzero ldbl-128 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8bcba227334dp-28L 0x1.4343607246992523f18132ae59f1p+0L : inexact-ok += clog upward ldbl-128 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8bcba227334dp-28L 0x1.4343607246992523f18132ae59f2p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8bcba227336p-28L 0x1.4343607246992523f18132ae598p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8bcba227334p-28L 0x1.4343607246992523f18132ae5ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8bcba227334p-28L 0x1.4343607246992523f18132ae598p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f302p-4L : -0x6.83c700a712941ac8bcba227334p-28L 0x1.4343607246992523f18132ae5ap+0L : inexact-ok += clog downward dbl-64 0x4.d9e8c8p-4 0xf.3f30281507d8p-4 : 0x1.2fdb7c981ed97p-28 0x1.434360997be59p+0 : inexact-ok += clog tonearest dbl-64 0x4.d9e8c8p-4 0xf.3f30281507d8p-4 : 0x1.2fdb7c981ed98p-28 0x1.434360997be59p+0 : inexact-ok += clog towardzero dbl-64 0x4.d9e8c8p-4 0xf.3f30281507d8p-4 : 0x1.2fdb7c981ed97p-28 0x1.434360997be59p+0 : inexact-ok += clog upward dbl-64 0x4.d9e8c8p-4 0xf.3f30281507d8p-4 : 0x1.2fdb7c981ed98p-28 0x1.434360997be5ap+0 : inexact-ok += clog downward ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66p-28L 0x1.434360997be597d4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66p-28L 0x1.434360997be597d4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66p-28L 0x1.434360997be597d4p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a68p-28L 0x1.434360997be597d6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66p-28L 0x1.434360997be597d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66p-28L 0x1.434360997be597d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66p-28L 0x1.434360997be597d4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a68p-28L 0x1.434360997be597d6p+0L : inexact-ok += clog downward ldbl-128 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66af4e85f3627dp-28L 0x1.434360997be597d41fc206a233d3p+0L : inexact-ok += clog tonearest ldbl-128 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66af4e85f3627ep-28L 0x1.434360997be597d41fc206a233d4p+0L : inexact-ok += clog towardzero ldbl-128 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66af4e85f3627dp-28L 0x1.434360997be597d41fc206a233d3p+0L : inexact-ok += clog upward ldbl-128 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66af4e85f3627ep-28L 0x1.434360997be597d41fc206a233d4p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66af4e85f362p-28L 0x1.434360997be597d41fc206a2338p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66af4e85f3628p-28L 0x1.434360997be597d41fc206a234p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66af4e85f362p-28L 0x1.434360997be597d41fc206a2338p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.d9e8c8p-4L 0xf.3f30281507d8p-4L : 0x1.2fdb7c981ed97a66af4e85f3628p-28L 0x1.434360997be597d41fc206a234p+0L : inexact-ok += clog downward flt-32 0x4.d9e8cp-4f 0xf.3f303p-4f : 0x6.4e74cp-28f 0x1.43436p+0f : inexact-ok += clog tonearest flt-32 0x4.d9e8cp-4f 0xf.3f303p-4f : 0x6.4e74c8p-28f 0x1.434362p+0f : inexact-ok += clog towardzero flt-32 0x4.d9e8cp-4f 0xf.3f303p-4f : 0x6.4e74cp-28f 0x1.43436p+0f : inexact-ok += clog upward flt-32 0x4.d9e8cp-4f 0xf.3f303p-4f : 0x6.4e74c8p-28f 0x1.434362p+0f : inexact-ok += clog downward dbl-64 0x4.d9e8cp-4 0xf.3f303p-4 : 0x6.4e74c583a7b54p-28 0x1.43436139dea6ap+0 : inexact-ok += clog tonearest dbl-64 0x4.d9e8cp-4 0xf.3f303p-4 : 0x6.4e74c583a7b54p-28 0x1.43436139dea6ap+0 : inexact-ok += clog towardzero dbl-64 0x4.d9e8cp-4 0xf.3f303p-4 : 0x6.4e74c583a7b54p-28 0x1.43436139dea6ap+0 : inexact-ok += clog upward dbl-64 0x4.d9e8cp-4 0xf.3f303p-4 : 0x6.4e74c583a7b58p-28 0x1.43436139dea6bp+0 : inexact-ok += clog downward ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c08p-28L 0x1.43436139dea6a7bcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c1p-28L 0x1.43436139dea6a7bep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c08p-28L 0x1.43436139dea6a7bcp+0L : inexact-ok += clog upward ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c1p-28L 0x1.43436139dea6a7bep+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c08p-28L 0x1.43436139dea6a7bcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c1p-28L 0x1.43436139dea6a7bep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c08p-28L 0x1.43436139dea6a7bcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c1p-28L 0x1.43436139dea6a7bep+0L : inexact-ok += clog downward ldbl-128 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c0ecfe465d6f92p-28L 0x1.43436139dea6a7bd1b0f2763322p+0L : inexact-ok += clog tonearest ldbl-128 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c0ecfe465d6f92p-28L 0x1.43436139dea6a7bd1b0f27633221p+0L : inexact-ok += clog towardzero ldbl-128 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c0ecfe465d6f92p-28L 0x1.43436139dea6a7bd1b0f2763322p+0L : inexact-ok += clog upward ldbl-128 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c0ecfe465d6f924p-28L 0x1.43436139dea6a7bd1b0f27633221p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c0ecfe465d6f8p-28L 0x1.43436139dea6a7bd1b0f276332p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c0ecfe465d6fap-28L 0x1.43436139dea6a7bd1b0f276332p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c0ecfe465d6f8p-28L 0x1.43436139dea6a7bd1b0f276332p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f303p-4L : 0x6.4e74c583a7b55c0ecfe465d6fap-28L 0x1.43436139dea6a7bd1b0f2763328p+0L : inexact-ok += clog downward flt-32 0x4.d9e8cp-4f 0xf.3f302p-4f : -0x8.f0bb7p-28f 0x1.43436p+0f : inexact-ok += clog tonearest flt-32 0x4.d9e8cp-4f 0xf.3f302p-4f : -0x8.f0bb6p-28f 0x1.43436p+0f : inexact-ok += clog towardzero flt-32 0x4.d9e8cp-4f 0xf.3f302p-4f : -0x8.f0bb6p-28f 0x1.43436p+0f : inexact-ok += clog upward flt-32 0x4.d9e8cp-4f 0xf.3f302p-4f : -0x8.f0bb6p-28f 0x1.434362p+0f : inexact-ok += clog downward dbl-64 0x4.d9e8cp-4 0xf.3f302p-4 : -0x8.f0bb64fee162p-28 0x1.434360ec401a9p+0 : inexact-ok += clog tonearest dbl-64 0x4.d9e8cp-4 0xf.3f302p-4 : -0x8.f0bb64fee1618p-28 0x1.434360ec401aap+0 : inexact-ok += clog towardzero dbl-64 0x4.d9e8cp-4 0xf.3f302p-4 : -0x8.f0bb64fee1618p-28 0x1.434360ec401a9p+0 : inexact-ok += clog upward dbl-64 0x4.d9e8cp-4 0xf.3f302p-4 : -0x8.f0bb64fee1618p-28 0x1.434360ec401aap+0 : inexact-ok += clog downward ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b3p-28L 0x1.434360ec401a9af6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b2p-28L 0x1.434360ec401a9af6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b2p-28L 0x1.434360ec401a9af6p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b2p-28L 0x1.434360ec401a9af8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b3p-28L 0x1.434360ec401a9af6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b2p-28L 0x1.434360ec401a9af6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b2p-28L 0x1.434360ec401a9af6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b2p-28L 0x1.434360ec401a9af8p+0L : inexact-ok += clog downward ldbl-128 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b241e2e4319818p-28L 0x1.434360ec401a9af60da817d8f7d4p+0L : inexact-ok += clog tonearest ldbl-128 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b241e2e4319818p-28L 0x1.434360ec401a9af60da817d8f7d4p+0L : inexact-ok += clog towardzero ldbl-128 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b241e2e43198178p-28L 0x1.434360ec401a9af60da817d8f7d4p+0L : inexact-ok += clog upward ldbl-128 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b241e2e43198178p-28L 0x1.434360ec401a9af60da817d8f7d5p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b241e2e431984p-28L 0x1.434360ec401a9af60da817d8f78p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b241e2e43198p-28L 0x1.434360ec401a9af60da817d8f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b241e2e43198p-28L 0x1.434360ec401a9af60da817d8f78p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f302p-4L : -0x8.f0bb64fee1618b241e2e43198p-28L 0x1.434360ec401a9af60da817d8f8p+0L : inexact-ok += clog downward dbl-64 0x4.d9e8cp-4 0xf.3f30281507d8p-4 : -0x1.3d18e569e2fc6p-28 0x1.434361137566dp+0 : inexact-ok += clog tonearest dbl-64 0x4.d9e8cp-4 0xf.3f30281507d8p-4 : -0x1.3d18e569e2fc6p-28 0x1.434361137566ep+0 : inexact-ok += clog towardzero dbl-64 0x4.d9e8cp-4 0xf.3f30281507d8p-4 : -0x1.3d18e569e2fc5p-28 0x1.434361137566dp+0 : inexact-ok += clog upward dbl-64 0x4.d9e8cp-4 0xf.3f30281507d8p-4 : -0x1.3d18e569e2fc5p-28 0x1.434361137566ep+0 : inexact-ok += clog downward ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a92p-28L 0x1.434361137566d8ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a9p-28L 0x1.434361137566d8e2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a9p-28L 0x1.434361137566d8ep+0L : inexact-ok += clog upward ldbl-96-intel 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a9p-28L 0x1.434361137566d8e2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a92p-28L 0x1.434361137566d8ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a9p-28L 0x1.434361137566d8e2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a9p-28L 0x1.434361137566d8ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a9p-28L 0x1.434361137566d8e2p+0L : inexact-ok += clog downward ldbl-128 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a904f3fb616ae83p-28L 0x1.434361137566d8e14d65fa7a40c4p+0L : inexact-ok += clog tonearest ldbl-128 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a904f3fb616ae82p-28L 0x1.434361137566d8e14d65fa7a40c4p+0L : inexact-ok += clog towardzero ldbl-128 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a904f3fb616ae82p-28L 0x1.434361137566d8e14d65fa7a40c4p+0L : inexact-ok += clog upward ldbl-128 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a904f3fb616ae82p-28L 0x1.434361137566d8e14d65fa7a40c5p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a904f3fb616afp-28L 0x1.434361137566d8e14d65fa7a408p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a904f3fb616ae8p-28L 0x1.434361137566d8e14d65fa7a41p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a904f3fb616ae8p-28L 0x1.434361137566d8e14d65fa7a408p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.d9e8cp-4L 0xf.3f30281507d8p-4L : -0x1.3d18e569e2fc5a904f3fb616ae8p-28L 0x1.434361137566d8e14d65fa7a41p+0L : inexact-ok += clog downward dbl-64 0x4.d9e8c415d5644p-4 0xf.3f303p-4 : 0x7.8b8da9c279698p-28 0x1.434360fb95019p+0 : inexact-ok += clog tonearest dbl-64 0x4.d9e8c415d5644p-4 0xf.3f303p-4 : 0x7.8b8da9c27969cp-28 0x1.434360fb9501ap+0 : inexact-ok += clog towardzero dbl-64 0x4.d9e8c415d5644p-4 0xf.3f303p-4 : 0x7.8b8da9c279698p-28 0x1.434360fb95019p+0 : inexact-ok += clog upward dbl-64 0x4.d9e8c415d5644p-4 0xf.3f303p-4 : 0x7.8b8da9c27969cp-28 0x1.434360fb9501ap+0 : inexact-ok += clog downward ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be3p-28L 0x1.434360fb95019e22p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be3p-28L 0x1.434360fb95019e24p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be3p-28L 0x1.434360fb95019e22p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be38p-28L 0x1.434360fb95019e24p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be3p-28L 0x1.434360fb95019e22p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be3p-28L 0x1.434360fb95019e24p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be3p-28L 0x1.434360fb95019e22p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be38p-28L 0x1.434360fb95019e24p+0L : inexact-ok += clog downward ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be33efa515935f3p-28L 0x1.434360fb95019e231754b6092e4fp+0L : inexact-ok += clog tonearest ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be33efa515935f3p-28L 0x1.434360fb95019e231754b6092e4fp+0L : inexact-ok += clog towardzero ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be33efa515935f3p-28L 0x1.434360fb95019e231754b6092e4fp+0L : inexact-ok += clog upward ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be33efa515935f34p-28L 0x1.434360fb95019e231754b6092e5p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be33efa515935ep-28L 0x1.434360fb95019e231754b6092ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be33efa515936p-28L 0x1.434360fb95019e231754b6092e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be33efa515935ep-28L 0x1.434360fb95019e231754b6092ep+0L : inexact-ok += clog upward ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f303p-4L : 0x7.8b8da9c27969be33efa515936p-28L 0x1.434360fb95019e231754b6092e8p+0L : inexact-ok += clog downward dbl-64 0x4.d9e8c415d5644p-4 0xf.3f302p-4 : -0x7.b3a27e63b866p-28 0x1.434360adf6755p+0 : inexact-ok += clog tonearest dbl-64 0x4.d9e8c415d5644p-4 0xf.3f302p-4 : -0x7.b3a27e63b866p-28 0x1.434360adf6756p+0 : inexact-ok += clog towardzero dbl-64 0x4.d9e8c415d5644p-4 0xf.3f302p-4 : -0x7.b3a27e63b865cp-28 0x1.434360adf6755p+0 : inexact-ok += clog upward dbl-64 0x4.d9e8c415d5644p-4 0xf.3f302p-4 : -0x7.b3a27e63b865cp-28 0x1.434360adf6756p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f26p-28L 0x1.434360adf6755c02p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f258p-28L 0x1.434360adf6755c04p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f258p-28L 0x1.434360adf6755c02p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f258p-28L 0x1.434360adf6755c04p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f26p-28L 0x1.434360adf6755c02p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f258p-28L 0x1.434360adf6755c04p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f258p-28L 0x1.434360adf6755c02p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f258p-28L 0x1.434360adf6755c04p+0L : inexact-ok += clog downward ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f2598bd27e0434b4p-28L 0x1.434360adf6755c034fa32ee79f3fp+0L : inexact-ok += clog tonearest ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f2598bd27e0434b4p-28L 0x1.434360adf6755c034fa32ee79f4p+0L : inexact-ok += clog towardzero ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f2598bd27e0434bp-28L 0x1.434360adf6755c034fa32ee79f3fp+0L : inexact-ok += clog upward ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f2598bd27e0434bp-28L 0x1.434360adf6755c034fa32ee79f4p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f2598bd27e0436p-28L 0x1.434360adf6755c034fa32ee79fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f2598bd27e0434p-28L 0x1.434360adf6755c034fa32ee79fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f2598bd27e0434p-28L 0x1.434360adf6755c034fa32ee79fp+0L : inexact-ok += clog upward ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f302p-4L : -0x7.b3a27e63b865f2598bd27e0434p-28L 0x1.434360adf6755c034fa32ee79f8p+0L : inexact-ok += clog downward dbl-64 0x4.d9e8c415d5644p-4 0xf.3f30281507d8p-4 : 0x1.07fffffffffffp-104 0x1.434360d52bc1bp+0 : inexact-ok += clog tonearest dbl-64 0x4.d9e8c415d5644p-4 0xf.3f30281507d8p-4 : 0x1.08p-104 0x1.434360d52bc1bp+0 : inexact-ok += clog towardzero dbl-64 0x4.d9e8c415d5644p-4 0xf.3f30281507d8p-4 : 0x1.07fffffffffffp-104 0x1.434360d52bc1bp+0 : inexact-ok += clog upward dbl-64 0x4.d9e8c415d5644p-4 0xf.3f30281507d8p-4 : 0x1.08p-104 0x1.434360d52bc1cp+0 : inexact-ok += clog downward ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07fffffffffffffep-104L 0x1.434360d52bc1b4ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.08p-104L 0x1.434360d52bc1b4e2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07fffffffffffffep-104L 0x1.434360d52bc1b4ep+0L : inexact-ok += clog upward ldbl-96-intel 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.08p-104L 0x1.434360d52bc1b4e2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07fffffffffffffep-104L 0x1.434360d52bc1b4ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.08p-104L 0x1.434360d52bc1b4e2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07fffffffffffffep-104L 0x1.434360d52bc1b4ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.08p-104L 0x1.434360d52bc1b4e2p+0L : inexact-ok += clog downward ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07fffffffffffffffffffffffeefp-104L 0x1.434360d52bc1b4e10b2ba6a60158p+0L : inexact-ok += clog tonearest ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07fffffffffffffffffffffffefp-104L 0x1.434360d52bc1b4e10b2ba6a60159p+0L : inexact-ok += clog towardzero ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07fffffffffffffffffffffffeefp-104L 0x1.434360d52bc1b4e10b2ba6a60158p+0L : inexact-ok += clog upward ldbl-128 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07fffffffffffffffffffffffefp-104L 0x1.434360d52bc1b4e10b2ba6a60159p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07fffffffffffffffffffffffe8p-104L 0x1.434360d52bc1b4e10b2ba6a601p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07ffffffffffffffffffffffffp-104L 0x1.434360d52bc1b4e10b2ba6a6018p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07fffffffffffffffffffffffe8p-104L 0x1.434360d52bc1b4e10b2ba6a601p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.d9e8c415d5644p-4L 0xf.3f30281507d8p-4L : 0x1.07ffffffffffffffffffffffffp-104L 0x1.434360d52bc1b4e10b2ba6a6018p+0L : inexact-ok +clog 0x55cb6d0c83af5p-55 0x7fe33c0c7c4e90p-55 += clog downward flt-32 0xa.b96dbp-8f 0xf.fc679p-4f : 0xe.76e47p-28f 0x1.876578p+0f : inexact-ok += clog tonearest flt-32 0xa.b96dbp-8f 0xf.fc679p-4f : 0xe.76e47p-28f 0x1.87657ap+0f : inexact-ok += clog towardzero flt-32 0xa.b96dbp-8f 0xf.fc679p-4f : 0xe.76e47p-28f 0x1.876578p+0f : inexact-ok += clog upward flt-32 0xa.b96dbp-8f 0xf.fc679p-4f : 0xe.76e48p-28f 0x1.87657ap+0f : inexact-ok += clog downward dbl-64 0xa.b96dbp-8 0xf.fc679p-4 : 0xe.76e475b47cb38p-28 0x1.876579e2800d8p+0 : inexact-ok += clog tonearest dbl-64 0xa.b96dbp-8 0xf.fc679p-4 : 0xe.76e475b47cb38p-28 0x1.876579e2800d9p+0 : inexact-ok += clog towardzero dbl-64 0xa.b96dbp-8 0xf.fc679p-4 : 0xe.76e475b47cb38p-28 0x1.876579e2800d8p+0 : inexact-ok += clog upward dbl-64 0xa.b96dbp-8 0xf.fc679p-4 : 0xe.76e475b47cb4p-28 0x1.876579e2800d9p+0 : inexact-ok += clog downward ldbl-96-intel 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c6p-28L 0x1.876579e2800d8ebep+0L : inexact-ok += clog tonearest ldbl-96-intel 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c6p-28L 0x1.876579e2800d8ebep+0L : inexact-ok += clog towardzero ldbl-96-intel 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c6p-28L 0x1.876579e2800d8ebep+0L : inexact-ok += clog upward ldbl-96-intel 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c7p-28L 0x1.876579e2800d8ecp+0L : inexact-ok += clog downward ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c6p-28L 0x1.876579e2800d8ebep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c6p-28L 0x1.876579e2800d8ebep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c6p-28L 0x1.876579e2800d8ebep+0L : inexact-ok += clog upward ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c7p-28L 0x1.876579e2800d8ecp+0L : inexact-ok += clog downward ldbl-128 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c634773a5ff61b8p-28L 0x1.876579e2800d8ebe5c27b0faf2afp+0L : inexact-ok += clog tonearest ldbl-128 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c634773a5ff61b8p-28L 0x1.876579e2800d8ebe5c27b0faf2afp+0L : inexact-ok += clog towardzero ldbl-128 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c634773a5ff61b8p-28L 0x1.876579e2800d8ebe5c27b0faf2afp+0L : inexact-ok += clog upward ldbl-128 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c634773a5ff61cp-28L 0x1.876579e2800d8ebe5c27b0faf2bp+0L : inexact-ok += clog downward ldbl-128ibm 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c634773a5ff6p-28L 0x1.876579e2800d8ebe5c27b0faf28p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c634773a5ff6p-28L 0x1.876579e2800d8ebe5c27b0faf28p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c634773a5ff6p-28L 0x1.876579e2800d8ebe5c27b0faf28p+0L : inexact-ok += clog upward ldbl-128ibm 0xa.b96dbp-8L 0xf.fc679p-4L : 0xe.76e475b47cb39c634773a5ff64p-28L 0x1.876579e2800d8ebe5c27b0faf3p+0L : inexact-ok += clog downward flt-32 0xa.b96dbp-8f 0xf.fc678p-4f : -0x1.858306p-28f 0x1.876578p+0f : inexact-ok += clog tonearest flt-32 0xa.b96dbp-8f 0xf.fc678p-4f : -0x1.858306p-28f 0x1.87657ap+0f : inexact-ok += clog towardzero flt-32 0xa.b96dbp-8f 0xf.fc678p-4f : -0x1.858304p-28f 0x1.876578p+0f : inexact-ok += clog upward flt-32 0xa.b96dbp-8f 0xf.fc678p-4f : -0x1.858304p-28f 0x1.87657ap+0f : inexact-ok += clog downward dbl-64 0xa.b96dbp-8 0xf.fc678p-4 : -0x1.8583055d0a772p-28 0x1.876579d7c69fep+0 : inexact-ok += clog tonearest dbl-64 0xa.b96dbp-8 0xf.fc678p-4 : -0x1.8583055d0a771p-28 0x1.876579d7c69fep+0 : inexact-ok += clog towardzero dbl-64 0xa.b96dbp-8 0xf.fc678p-4 : -0x1.8583055d0a771p-28 0x1.876579d7c69fep+0 : inexact-ok += clog upward dbl-64 0xa.b96dbp-8 0xf.fc678p-4 : -0x1.8583055d0a771p-28 0x1.876579d7c69ffp+0 : inexact-ok += clog downward ldbl-96-intel 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135cp-28L 0x1.876579d7c69fe76ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ap-28L 0x1.876579d7c69fe76cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ap-28L 0x1.876579d7c69fe76ap+0L : inexact-ok += clog upward ldbl-96-intel 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ap-28L 0x1.876579d7c69fe76cp+0L : inexact-ok += clog downward ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135cp-28L 0x1.876579d7c69fe76ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ap-28L 0x1.876579d7c69fe76cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ap-28L 0x1.876579d7c69fe76ap+0L : inexact-ok += clog upward ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ap-28L 0x1.876579d7c69fe76cp+0L : inexact-ok += clog downward ldbl-128 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ac90a3a4303c6p-28L 0x1.876579d7c69fe76b38bbce820751p+0L : inexact-ok += clog tonearest ldbl-128 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ac90a3a4303c5p-28L 0x1.876579d7c69fe76b38bbce820751p+0L : inexact-ok += clog towardzero ldbl-128 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ac90a3a4303c5p-28L 0x1.876579d7c69fe76b38bbce820751p+0L : inexact-ok += clog upward ldbl-128 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ac90a3a4303c5p-28L 0x1.876579d7c69fe76b38bbce820752p+0L : inexact-ok += clog downward ldbl-128ibm 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ac90a3a4304p-28L 0x1.876579d7c69fe76b38bbce8207p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ac90a3a4304p-28L 0x1.876579d7c69fe76b38bbce82078p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ac90a3a43038p-28L 0x1.876579d7c69fe76b38bbce8207p+0L : inexact-ok += clog upward ldbl-128ibm 0xa.b96dbp-8L 0xf.fc678p-4L : -0x1.8583055d0a77135ac90a3a43038p-28L 0x1.876579d7c69fe76b38bbce82078p+0L : inexact-ok += clog downward dbl-64 0xa.b96dbp-8 0xf.fc67818f89d2p-4 : 0x9.ad02ea7d0d44p-36 0x1.876579d8d26c6p+0 : inexact-ok += clog tonearest dbl-64 0xa.b96dbp-8 0xf.fc67818f89d2p-4 : 0x9.ad02ea7d0d448p-36 0x1.876579d8d26c6p+0 : inexact-ok += clog towardzero dbl-64 0xa.b96dbp-8 0xf.fc67818f89d2p-4 : 0x9.ad02ea7d0d44p-36 0x1.876579d8d26c6p+0 : inexact-ok += clog upward dbl-64 0xa.b96dbp-8 0xf.fc67818f89d2p-4 : 0x9.ad02ea7d0d448p-36 0x1.876579d8d26c7p+0 : inexact-ok += clog downward ldbl-96-intel 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445cap-36L 0x1.876579d8d26c6756p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445cap-36L 0x1.876579d8d26c6756p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445cap-36L 0x1.876579d8d26c6756p+0L : inexact-ok += clog upward ldbl-96-intel 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445cbp-36L 0x1.876579d8d26c6758p+0L : inexact-ok += clog downward ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445cap-36L 0x1.876579d8d26c6756p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445cap-36L 0x1.876579d8d26c6756p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445cap-36L 0x1.876579d8d26c6756p+0L : inexact-ok += clog upward ldbl-96-m68k 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445cbp-36L 0x1.876579d8d26c6758p+0L : inexact-ok += clog downward ldbl-128 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445ca3bcdf30eba34p-36L 0x1.876579d8d26c675600dbdb8a9a53p+0L : inexact-ok += clog tonearest ldbl-128 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445ca3bcdf30eba348p-36L 0x1.876579d8d26c675600dbdb8a9a54p+0L : inexact-ok += clog towardzero ldbl-128 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445ca3bcdf30eba34p-36L 0x1.876579d8d26c675600dbdb8a9a53p+0L : inexact-ok += clog upward ldbl-128 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445ca3bcdf30eba348p-36L 0x1.876579d8d26c675600dbdb8a9a54p+0L : inexact-ok += clog downward ldbl-128ibm 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445ca3bcdf30ebap-36L 0x1.876579d8d26c675600dbdb8a9ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445ca3bcdf30eba4p-36L 0x1.876579d8d26c675600dbdb8a9a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445ca3bcdf30ebap-36L 0x1.876579d8d26c675600dbdb8a9ap+0L : inexact-ok += clog upward ldbl-128ibm 0xa.b96dbp-8L 0xf.fc67818f89d2p-4L : 0x9.ad02ea7d0d445ca3bcdf30eba4p-36L 0x1.876579d8d26c675600dbdb8a9a8p+0L : inexact-ok += clog downward flt-32 0xa.b96dap-8f 0xf.fc679p-4f : 0xe.6c2bp-28f 0x1.876578p+0f : inexact-ok += clog tonearest flt-32 0xa.b96dap-8f 0xf.fc679p-4f : 0xe.6c2b1p-28f 0x1.87657ap+0f : inexact-ok += clog towardzero flt-32 0xa.b96dap-8f 0xf.fc679p-4f : 0xe.6c2bp-28f 0x1.876578p+0f : inexact-ok += clog upward flt-32 0xa.b96dap-8f 0xf.fc679p-4f : 0xe.6c2b1p-28f 0x1.87657ap+0f : inexact-ok += clog downward dbl-64 0xa.b96dap-8 0xf.fc679p-4 : 0xe.6c2b081fd9648p-28 0x1.876579f27c75p+0 : inexact-ok += clog tonearest dbl-64 0xa.b96dap-8 0xf.fc679p-4 : 0xe.6c2b081fd9648p-28 0x1.876579f27c75p+0 : inexact-ok += clog towardzero dbl-64 0xa.b96dap-8 0xf.fc679p-4 : 0xe.6c2b081fd9648p-28 0x1.876579f27c75p+0 : inexact-ok += clog upward dbl-64 0xa.b96dap-8 0xf.fc679p-4 : 0xe.6c2b081fd965p-28 0x1.876579f27c751p+0 : inexact-ok += clog downward ldbl-96-intel 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496dp-28L 0x1.876579f27c7501ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496dp-28L 0x1.876579f27c7501e2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496dp-28L 0x1.876579f27c7501ep+0L : inexact-ok += clog upward ldbl-96-intel 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496ep-28L 0x1.876579f27c7501e2p+0L : inexact-ok += clog downward ldbl-96-m68k 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496dp-28L 0x1.876579f27c7501ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496dp-28L 0x1.876579f27c7501e2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496dp-28L 0x1.876579f27c7501ep+0L : inexact-ok += clog upward ldbl-96-m68k 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496ep-28L 0x1.876579f27c7501e2p+0L : inexact-ok += clog downward ldbl-128 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496d6134c22bd5b1p-28L 0x1.876579f27c7501e1ca8e1d476b62p+0L : inexact-ok += clog tonearest ldbl-128 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496d6134c22bd5b1p-28L 0x1.876579f27c7501e1ca8e1d476b62p+0L : inexact-ok += clog towardzero ldbl-128 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496d6134c22bd5b1p-28L 0x1.876579f27c7501e1ca8e1d476b62p+0L : inexact-ok += clog upward ldbl-128 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496d6134c22bd5b18p-28L 0x1.876579f27c7501e1ca8e1d476b63p+0L : inexact-ok += clog downward ldbl-128ibm 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496d6134c22bd58p-28L 0x1.876579f27c7501e1ca8e1d476bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496d6134c22bd5cp-28L 0x1.876579f27c7501e1ca8e1d476b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496d6134c22bd58p-28L 0x1.876579f27c7501e1ca8e1d476bp+0L : inexact-ok += clog upward ldbl-128ibm 0xa.b96dap-8L 0xf.fc679p-4L : 0xe.6c2b081fd96496d6134c22bd5cp-28L 0x1.876579f27c7501e1ca8e1d476b8p+0L : inexact-ok += clog downward flt-32 0xa.b96dap-8f 0xf.fc678p-4f : -0x1.903c74p-28f 0x1.876578p+0f : inexact-ok += clog tonearest flt-32 0xa.b96dap-8f 0xf.fc678p-4f : -0x1.903c74p-28f 0x1.87657ap+0f : inexact-ok += clog towardzero flt-32 0xa.b96dap-8f 0xf.fc678p-4f : -0x1.903c72p-28f 0x1.876578p+0f : inexact-ok += clog upward flt-32 0xa.b96dap-8f 0xf.fc678p-4f : -0x1.903c72p-28f 0x1.87657ap+0f : inexact-ok += clog downward dbl-64 0xa.b96dap-8 0xf.fc678p-4 : -0x1.903c73071bcf6p-28 0x1.876579e7c3076p+0 : inexact-ok += clog tonearest dbl-64 0xa.b96dap-8 0xf.fc678p-4 : -0x1.903c73071bcf6p-28 0x1.876579e7c3077p+0 : inexact-ok += clog towardzero dbl-64 0xa.b96dap-8 0xf.fc678p-4 : -0x1.903c73071bcf5p-28 0x1.876579e7c3076p+0 : inexact-ok += clog upward dbl-64 0xa.b96dap-8 0xf.fc678p-4 : -0x1.903c73071bcf5p-28 0x1.876579e7c3077p+0 : inexact-ok += clog downward ldbl-96-intel 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf593ap-28L 0x1.876579e7c3076a8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf593ap-28L 0x1.876579e7c3076a8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf5938p-28L 0x1.876579e7c3076a8p+0L : inexact-ok += clog upward ldbl-96-intel 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf5938p-28L 0x1.876579e7c3076a82p+0L : inexact-ok += clog downward ldbl-96-m68k 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf593ap-28L 0x1.876579e7c3076a8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf593ap-28L 0x1.876579e7c3076a8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf5938p-28L 0x1.876579e7c3076a8p+0L : inexact-ok += clog upward ldbl-96-m68k 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf5938p-28L 0x1.876579e7c3076a82p+0L : inexact-ok += clog downward ldbl-128 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf59392cc56251b668p-28L 0x1.876579e7c3076a8046b951dc7d0bp+0L : inexact-ok += clog tonearest ldbl-128 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf59392cc56251b667p-28L 0x1.876579e7c3076a8046b951dc7d0cp+0L : inexact-ok += clog towardzero ldbl-128 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf59392cc56251b667p-28L 0x1.876579e7c3076a8046b951dc7d0bp+0L : inexact-ok += clog upward ldbl-128 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf59392cc56251b667p-28L 0x1.876579e7c3076a8046b951dc7d0cp+0L : inexact-ok += clog downward ldbl-128ibm 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf59392cc56251b68p-28L 0x1.876579e7c3076a8046b951dc7dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf59392cc56251b68p-28L 0x1.876579e7c3076a8046b951dc7dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf59392cc56251b6p-28L 0x1.876579e7c3076a8046b951dc7dp+0L : inexact-ok += clog upward ldbl-128ibm 0xa.b96dap-8L 0xf.fc678p-4L : -0x1.903c73071bcf59392cc56251b6p-28L 0x1.876579e7c3076a8046b951dc7d8p+0L : inexact-ok += clog downward dbl-64 0xa.b96dap-8 0xf.fc67818f89d2p-4 : -0x1.0c6abd7d2a609p-36 0x1.876579e8ced3ep+0 : inexact-ok += clog tonearest dbl-64 0xa.b96dap-8 0xf.fc67818f89d2p-4 : -0x1.0c6abd7d2a608p-36 0x1.876579e8ced3fp+0 : inexact-ok += clog towardzero dbl-64 0xa.b96dap-8 0xf.fc67818f89d2p-4 : -0x1.0c6abd7d2a608p-36 0x1.876579e8ced3ep+0 : inexact-ok += clog upward dbl-64 0xa.b96dap-8 0xf.fc67818f89d2p-4 : -0x1.0c6abd7d2a608p-36 0x1.876579e8ced3fp+0 : inexact-ok += clog downward ldbl-96-intel 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608712p-36L 0x1.876579e8ced3e8dcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608712p-36L 0x1.876579e8ced3e8dcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a60871p-36L 0x1.876579e8ced3e8dcp+0L : inexact-ok += clog upward ldbl-96-intel 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a60871p-36L 0x1.876579e8ced3e8dep+0L : inexact-ok += clog downward ldbl-96-m68k 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608712p-36L 0x1.876579e8ced3e8dcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608712p-36L 0x1.876579e8ced3e8dcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a60871p-36L 0x1.876579e8ced3e8dcp+0L : inexact-ok += clog upward ldbl-96-m68k 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a60871p-36L 0x1.876579e8ced3e8dep+0L : inexact-ok += clog downward ldbl-128 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608711d7c57a89a565p-36L 0x1.876579e8ced3e8dcec06079156edp+0L : inexact-ok += clog tonearest ldbl-128 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608711d7c57a89a564p-36L 0x1.876579e8ced3e8dcec06079156edp+0L : inexact-ok += clog towardzero ldbl-128 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608711d7c57a89a564p-36L 0x1.876579e8ced3e8dcec06079156edp+0L : inexact-ok += clog upward ldbl-128 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608711d7c57a89a564p-36L 0x1.876579e8ced3e8dcec06079156eep+0L : inexact-ok += clog downward ldbl-128ibm 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608711d7c57a89a58p-36L 0x1.876579e8ced3e8dcec060791568p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608711d7c57a89a58p-36L 0x1.876579e8ced3e8dcec06079157p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608711d7c57a89a5p-36L 0x1.876579e8ced3e8dcec060791568p+0L : inexact-ok += clog upward ldbl-128ibm 0xa.b96dap-8L 0xf.fc67818f89d2p-4L : -0x1.0c6abd7d2a608711d7c57a89a5p-36L 0x1.876579e8ced3e8dcec06079157p+0L : inexact-ok += clog downward dbl-64 0xa.b96da19075eap-8 0xf.fc679p-4 : 0xe.6d3772db72838p-28 0x1.876579f0ec591p+0 : inexact-ok += clog tonearest dbl-64 0xa.b96da19075eap-8 0xf.fc679p-4 : 0xe.6d3772db72838p-28 0x1.876579f0ec592p+0 : inexact-ok += clog towardzero dbl-64 0xa.b96da19075eap-8 0xf.fc679p-4 : 0xe.6d3772db72838p-28 0x1.876579f0ec591p+0 : inexact-ok += clog upward dbl-64 0xa.b96da19075eap-8 0xf.fc679p-4 : 0xe.6d3772db7284p-28 0x1.876579f0ec592p+0 : inexact-ok += clog downward ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283babp-28L 0x1.876579f0ec591822p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283babp-28L 0x1.876579f0ec591822p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283babp-28L 0x1.876579f0ec591822p+0L : inexact-ok += clog upward ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283bacp-28L 0x1.876579f0ec591824p+0L : inexact-ok += clog downward ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283babp-28L 0x1.876579f0ec591822p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283babp-28L 0x1.876579f0ec591822p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283babp-28L 0x1.876579f0ec591822p+0L : inexact-ok += clog upward ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283bacp-28L 0x1.876579f0ec591824p+0L : inexact-ok += clog downward ldbl-128 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283bab5190b091f675p-28L 0x1.876579f0ec5918227fe8f6f8a47cp+0L : inexact-ok += clog tonearest ldbl-128 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283bab5190b091f675p-28L 0x1.876579f0ec5918227fe8f6f8a47dp+0L : inexact-ok += clog towardzero ldbl-128 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283bab5190b091f675p-28L 0x1.876579f0ec5918227fe8f6f8a47cp+0L : inexact-ok += clog upward ldbl-128 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283bab5190b091f6758p-28L 0x1.876579f0ec5918227fe8f6f8a47dp+0L : inexact-ok += clog downward ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283bab5190b091f64p-28L 0x1.876579f0ec5918227fe8f6f8a4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283bab5190b091f68p-28L 0x1.876579f0ec5918227fe8f6f8a48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283bab5190b091f64p-28L 0x1.876579f0ec5918227fe8f6f8a4p+0L : inexact-ok += clog upward ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc679p-4L : 0xe.6d3772db7283bab5190b091f68p-28L 0x1.876579f0ec5918227fe8f6f8a48p+0L : inexact-ok += clog downward dbl-64 0xa.b96da19075eap-8 0xf.fc678p-4 : -0x1.8f3008496a537p-28 0x1.876579e632eb7p+0 : inexact-ok += clog tonearest dbl-64 0xa.b96da19075eap-8 0xf.fc678p-4 : -0x1.8f3008496a536p-28 0x1.876579e632eb8p+0 : inexact-ok += clog towardzero dbl-64 0xa.b96da19075eap-8 0xf.fc678p-4 : -0x1.8f3008496a536p-28 0x1.876579e632eb7p+0 : inexact-ok += clog upward dbl-64 0xa.b96da19075eap-8 0xf.fc678p-4 : -0x1.8f3008496a536p-28 0x1.876579e632eb8p+0 : inexact-ok += clog downward ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616cp-28L 0x1.876579e632eb7f3p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616cp-28L 0x1.876579e632eb7f32p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616ap-28L 0x1.876579e632eb7f3p+0L : inexact-ok += clog upward ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616ap-28L 0x1.876579e632eb7f32p+0L : inexact-ok += clog downward ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616cp-28L 0x1.876579e632eb7f3p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616cp-28L 0x1.876579e632eb7f32p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616ap-28L 0x1.876579e632eb7f3p+0L : inexact-ok += clog upward ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616ap-28L 0x1.876579e632eb7f32p+0L : inexact-ok += clog downward ldbl-128 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616bc0b58e4f08cfp-28L 0x1.876579e632eb7f31edfe5ab9ab9ap+0L : inexact-ok += clog tonearest ldbl-128 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616bc0b58e4f08cfp-28L 0x1.876579e632eb7f31edfe5ab9ab9bp+0L : inexact-ok += clog towardzero ldbl-128 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616bc0b58e4f08cep-28L 0x1.876579e632eb7f31edfe5ab9ab9ap+0L : inexact-ok += clog upward ldbl-128 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616bc0b58e4f08cep-28L 0x1.876579e632eb7f31edfe5ab9ab9bp+0L : inexact-ok += clog downward ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616bc0b58e4f09p-28L 0x1.876579e632eb7f31edfe5ab9ab8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616bc0b58e4f09p-28L 0x1.876579e632eb7f31edfe5ab9ab8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616bc0b58e4f088p-28L 0x1.876579e632eb7f31edfe5ab9ab8p+0L : inexact-ok += clog upward ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc678p-4L : -0x1.8f3008496a53616bc0b58e4f088p-28L 0x1.876579e632eb7f31edfe5ab9acp+0L : inexact-ok += clog downward dbl-64 0xa.b96da19075eap-8 0xf.fc67818f89d2p-4 : -0x1.0e00000000001p-104 0x1.876579e73eb7fp+0 : inexact-ok += clog tonearest dbl-64 0xa.b96da19075eap-8 0xf.fc67818f89d2p-4 : -0x1.0ep-104 0x1.876579e73eb8p+0 : inexact-ok += clog towardzero dbl-64 0xa.b96da19075eap-8 0xf.fc67818f89d2p-4 : -0x1.0ep-104 0x1.876579e73eb7fp+0 : inexact-ok += clog upward dbl-64 0xa.b96da19075eap-8 0xf.fc67818f89d2p-4 : -0x1.0ep-104 0x1.876579e73eb8p+0 : inexact-ok += clog downward ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0e00000000000002p-104L 0x1.876579e73eb7fdb4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0ep-104L 0x1.876579e73eb7fdb6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0ep-104L 0x1.876579e73eb7fdb4p+0L : inexact-ok += clog upward ldbl-96-intel 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0ep-104L 0x1.876579e73eb7fdb6p+0L : inexact-ok += clog downward ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0e00000000000002p-104L 0x1.876579e73eb7fdb4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0ep-104L 0x1.876579e73eb7fdb6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0ep-104L 0x1.876579e73eb7fdb4p+0L : inexact-ok += clog upward ldbl-96-m68k 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0ep-104L 0x1.876579e73eb7fdb6p+0L : inexact-ok += clog downward ldbl-128 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0e0000000000000000000000011dp-104L 0x1.876579e73eb7fdb58027d1a327a8p+0L : inexact-ok += clog tonearest ldbl-128 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0e0000000000000000000000011dp-104L 0x1.876579e73eb7fdb58027d1a327a9p+0L : inexact-ok += clog towardzero ldbl-128 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0e0000000000000000000000011cp-104L 0x1.876579e73eb7fdb58027d1a327a8p+0L : inexact-ok += clog upward ldbl-128 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0e0000000000000000000000011cp-104L 0x1.876579e73eb7fdb58027d1a327a9p+0L : inexact-ok += clog downward ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0e0000000000000000000000018p-104L 0x1.876579e73eb7fdb58027d1a3278p+0L : inexact-ok += clog tonearest ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0e000000000000000000000001p-104L 0x1.876579e73eb7fdb58027d1a3278p+0L : inexact-ok += clog towardzero ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0e000000000000000000000001p-104L 0x1.876579e73eb7fdb58027d1a3278p+0L : inexact-ok += clog upward ldbl-128ibm 0xa.b96da19075eap-8L 0xf.fc67818f89d2p-4L : -0x1.0e000000000000000000000001p-104L 0x1.876579e73eb7fdb58027d1a328p+0L : inexact-ok +clog 0x298c62cb546588a7p-63 0x7911b1dfcc4ecdaep-63 += clog downward flt-32 0x5.318c6p-4f 0xf.22364p-4f : 0x5.f1c198p-28f 0x1.3d7e76p+0f : inexact-ok += clog tonearest flt-32 0x5.318c6p-4f 0xf.22364p-4f : 0x5.f1c1ap-28f 0x1.3d7e78p+0f : inexact-ok += clog towardzero flt-32 0x5.318c6p-4f 0xf.22364p-4f : 0x5.f1c198p-28f 0x1.3d7e76p+0f : inexact-ok += clog upward flt-32 0x5.318c6p-4f 0xf.22364p-4f : 0x5.f1c1ap-28f 0x1.3d7e78p+0f : inexact-ok += clog downward dbl-64 0x5.318c6p-4 0xf.22364p-4 : 0x5.f1c19dcaa21acp-28 0x1.3d7e77257c8bfp+0 : inexact-ok += clog tonearest dbl-64 0x5.318c6p-4 0xf.22364p-4 : 0x5.f1c19dcaa21bp-28 0x1.3d7e77257c8bfp+0 : inexact-ok += clog towardzero dbl-64 0x5.318c6p-4 0xf.22364p-4 : 0x5.f1c19dcaa21acp-28 0x1.3d7e77257c8bfp+0 : inexact-ok += clog upward dbl-64 0x5.318c6p-4 0xf.22364p-4 : 0x5.f1c19dcaa21bp-28 0x1.3d7e77257c8cp+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afcep-28L 0x1.3d7e77257c8bf1bp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce8p-28L 0x1.3d7e77257c8bf1bp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afcep-28L 0x1.3d7e77257c8bf1bp+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce8p-28L 0x1.3d7e77257c8bf1b2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afcep-28L 0x1.3d7e77257c8bf1bp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce8p-28L 0x1.3d7e77257c8bf1bp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afcep-28L 0x1.3d7e77257c8bf1bp+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce8p-28L 0x1.3d7e77257c8bf1b2p+0L : inexact-ok += clog downward ldbl-128 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce59f7fa3be59ep-28L 0x1.3d7e77257c8bf1b07ce790048c94p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce59f7fa3be59e4p-28L 0x1.3d7e77257c8bf1b07ce790048c94p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce59f7fa3be59ep-28L 0x1.3d7e77257c8bf1b07ce790048c94p+0L : inexact-ok += clog upward ldbl-128 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce59f7fa3be59e4p-28L 0x1.3d7e77257c8bf1b07ce790048c95p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce59f7fa3be58p-28L 0x1.3d7e77257c8bf1b07ce790048c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce59f7fa3be5ap-28L 0x1.3d7e77257c8bf1b07ce790048c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce59f7fa3be58p-28L 0x1.3d7e77257c8bf1b07ce790048c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c6p-4L 0xf.22364p-4L : 0x5.f1c19dcaa21afce59f7fa3be5ap-28L 0x1.3d7e77257c8bf1b07ce790048dp+0L : inexact-ok += clog downward flt-32 0x5.318c6p-4f 0xf.22363p-4f : -0x9.3074ap-28f 0x1.3d7e76p+0f : inexact-ok += clog tonearest flt-32 0x5.318c6p-4f 0xf.22363p-4f : -0x9.3074ap-28f 0x1.3d7e76p+0f : inexact-ok += clog towardzero flt-32 0x5.318c6p-4f 0xf.22363p-4f : -0x9.30749p-28f 0x1.3d7e76p+0f : inexact-ok += clog upward flt-32 0x5.318c6p-4f 0xf.22363p-4f : -0x9.30749p-28f 0x1.3d7e78p+0f : inexact-ok += clog downward dbl-64 0x5.318c6p-4 0xf.22363p-4 : -0x9.30749d4715eep-28 0x1.3d7e76d263c5ep+0 : inexact-ok += clog tonearest dbl-64 0x5.318c6p-4 0xf.22363p-4 : -0x9.30749d4715eep-28 0x1.3d7e76d263c5ep+0 : inexact-ok += clog towardzero dbl-64 0x5.318c6p-4 0xf.22363p-4 : -0x9.30749d4715ed8p-28 0x1.3d7e76d263c5ep+0 : inexact-ok += clog upward dbl-64 0x5.318c6p-4 0xf.22363p-4 : -0x9.30749d4715ed8p-28 0x1.3d7e76d263c5fp+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec5p-28L 0x1.3d7e76d263c5e0d6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec4p-28L 0x1.3d7e76d263c5e0d6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec4p-28L 0x1.3d7e76d263c5e0d6p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec4p-28L 0x1.3d7e76d263c5e0d8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec5p-28L 0x1.3d7e76d263c5e0d6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec4p-28L 0x1.3d7e76d263c5e0d6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec4p-28L 0x1.3d7e76d263c5e0d6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec4p-28L 0x1.3d7e76d263c5e0d8p+0L : inexact-ok += clog downward ldbl-128 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec41b5e45290951p-28L 0x1.3d7e76d263c5e0d63622a90c0694p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec41b5e452909508p-28L 0x1.3d7e76d263c5e0d63622a90c0695p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec41b5e452909508p-28L 0x1.3d7e76d263c5e0d63622a90c0694p+0L : inexact-ok += clog upward ldbl-128 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec41b5e452909508p-28L 0x1.3d7e76d263c5e0d63622a90c0695p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec41b5e4529098p-28L 0x1.3d7e76d263c5e0d63622a90c068p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec41b5e4529094p-28L 0x1.3d7e76d263c5e0d63622a90c068p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec41b5e4529094p-28L 0x1.3d7e76d263c5e0d63622a90c068p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c6p-4L 0xf.22363p-4L : -0x9.30749d4715edec41b5e4529094p-28L 0x1.3d7e76d263c5e0d63622a90c07p+0L : inexact-ok += clog downward dbl-64 0x5.318c6p-4 0xf.22363bf989dap-4 : 0x2.23177b9f3329ap-28 0x1.3d7e771094cb9p+0 : inexact-ok += clog tonearest dbl-64 0x5.318c6p-4 0xf.22363bf989dap-4 : 0x2.23177b9f3329cp-28 0x1.3d7e771094cb9p+0 : inexact-ok += clog towardzero dbl-64 0x5.318c6p-4 0xf.22363bf989dap-4 : 0x2.23177b9f3329ap-28 0x1.3d7e771094cb9p+0 : inexact-ok += clog upward dbl-64 0x5.318c6p-4 0xf.22363bf989dap-4 : 0x2.23177b9f3329cp-28 0x1.3d7e771094cbap+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4d8p-28L 0x1.3d7e771094cb95fp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4dcp-28L 0x1.3d7e771094cb95fp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4d8p-28L 0x1.3d7e771094cb95fp+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4dcp-28L 0x1.3d7e771094cb95f2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4d8p-28L 0x1.3d7e771094cb95fp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4dcp-28L 0x1.3d7e771094cb95fp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4d8p-28L 0x1.3d7e771094cb95fp+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4dcp-28L 0x1.3d7e771094cb95f2p+0L : inexact-ok += clog downward ldbl-128 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4da3e901c327c9ep-28L 0x1.3d7e771094cb95f08430dca71144p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4da3e901c327c9ep-28L 0x1.3d7e771094cb95f08430dca71145p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4da3e901c327c9ep-28L 0x1.3d7e771094cb95f08430dca71144p+0L : inexact-ok += clog upward ldbl-128 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4da3e901c327cap-28L 0x1.3d7e771094cb95f08430dca71145p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4da3e901c327cp-28L 0x1.3d7e771094cb95f08430dca711p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4da3e901c327dp-28L 0x1.3d7e771094cb95f08430dca7118p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4da3e901c327cp-28L 0x1.3d7e771094cb95f08430dca711p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989dap-4L : 0x2.23177b9f3329b4da3e901c327dp-28L 0x1.3d7e771094cb95f08430dca7118p+0L : inexact-ok += clog downward dbl-64 0x5.318c6p-4 0xf.22363bf989d98p-4 : 0x2.23177b262177ep-28 0x1.3d7e771094cb9p+0 : inexact-ok += clog tonearest dbl-64 0x5.318c6p-4 0xf.22363bf989d98p-4 : 0x2.23177b262178p-28 0x1.3d7e771094cb9p+0 : inexact-ok += clog towardzero dbl-64 0x5.318c6p-4 0xf.22363bf989d98p-4 : 0x2.23177b262177ep-28 0x1.3d7e771094cb9p+0 : inexact-ok += clog upward dbl-64 0x5.318c6p-4 0xf.22363bf989d98p-4 : 0x2.23177b262178p-28 0x1.3d7e771094cbap+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f564p-28L 0x1.3d7e771094cb9356p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f564p-28L 0x1.3d7e771094cb9358p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f564p-28L 0x1.3d7e771094cb9356p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f568p-28L 0x1.3d7e771094cb9358p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f564p-28L 0x1.3d7e771094cb9356p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f564p-28L 0x1.3d7e771094cb9358p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f564p-28L 0x1.3d7e771094cb9356p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f568p-28L 0x1.3d7e771094cb9358p+0L : inexact-ok += clog downward ldbl-128 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f5656cfe1522069ep-28L 0x1.3d7e771094cb9357be018e3c9f85p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f5656cfe152206ap-28L 0x1.3d7e771094cb9357be018e3c9f86p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f5656cfe1522069ep-28L 0x1.3d7e771094cb9357be018e3c9f85p+0L : inexact-ok += clog upward ldbl-128 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f5656cfe152206ap-28L 0x1.3d7e771094cb9357be018e3c9f86p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f5656cfe152206p-28L 0x1.3d7e771094cb9357be018e3c9f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f5656cfe152207p-28L 0x1.3d7e771094cb9357be018e3c9f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f5656cfe152206p-28L 0x1.3d7e771094cb9357be018e3c9f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989d98p-4L : 0x2.23177b262177f5656cfe152207p-28L 0x1.3d7e771094cb9357be018e3cap+0L : inexact-ok += clog downward ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f8661948p-28L 0x1.3d7e771094cb946ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194cp-28L 0x1.3d7e771094cb946ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f8661948p-28L 0x1.3d7e771094cb946ep+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194cp-28L 0x1.3d7e771094cb947p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f8661948p-28L 0x1.3d7e771094cb946ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194cp-28L 0x1.3d7e771094cb946ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f8661948p-28L 0x1.3d7e771094cb946ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194cp-28L 0x1.3d7e771094cb947p+0L : inexact-ok += clog downward ldbl-128 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194afaff4988fad2p-28L 0x1.3d7e771094cb946ee53a6baa524ep+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194afaff4988fad4p-28L 0x1.3d7e771094cb946ee53a6baa524ep+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194afaff4988fad2p-28L 0x1.3d7e771094cb946ee53a6baa524ep+0L : inexact-ok += clog upward ldbl-128 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194afaff4988fad4p-28L 0x1.3d7e771094cb946ee53a6baa524fp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194afaff4988fap-28L 0x1.3d7e771094cb946ee53a6baa52p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194afaff4988fbp-28L 0x1.3d7e771094cb946ee53a6baa528p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194afaff4988fap-28L 0x1.3d7e771094cb946ee53a6baa52p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c6p-4L 0xf.22363bf989d9b5cp-4L : 0x2.23177b58f866194afaff4988fbp-28L 0x1.3d7e771094cb946ee53a6baa528p+0L : inexact-ok += clog downward flt-32 0x5.318c58p-4f 0xf.22364p-4f : 0x3.58fb7p-28f 0x1.3d7e76p+0f : inexact-ok += clog tonearest flt-32 0x5.318c58p-4f 0xf.22364p-4f : 0x3.58fb7p-28f 0x1.3d7e78p+0f : inexact-ok += clog towardzero flt-32 0x5.318c58p-4f 0xf.22364p-4f : 0x3.58fb7p-28f 0x1.3d7e76p+0f : inexact-ok += clog upward flt-32 0x5.318c58p-4f 0xf.22364p-4f : 0x3.58fb74p-28f 0x1.3d7e78p+0f : inexact-ok += clog downward dbl-64 0x5.318c58p-4 0xf.22364p-4 : 0x3.58fb714cb2d8p-28 0x1.3d7e779e8e3dap+0 : inexact-ok += clog tonearest dbl-64 0x5.318c58p-4 0xf.22364p-4 : 0x3.58fb714cb2d82p-28 0x1.3d7e779e8e3dbp+0 : inexact-ok += clog towardzero dbl-64 0x5.318c58p-4 0xf.22364p-4 : 0x3.58fb714cb2d8p-28 0x1.3d7e779e8e3dap+0 : inexact-ok += clog upward dbl-64 0x5.318c58p-4 0xf.22364p-4 : 0x3.58fb714cb2d82p-28 0x1.3d7e779e8e3dbp+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78p-28L 0x1.3d7e779e8e3dab6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78p-28L 0x1.3d7e779e8e3dab62p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78p-28L 0x1.3d7e779e8e3dab6p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c7cp-28L 0x1.3d7e779e8e3dab62p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78p-28L 0x1.3d7e779e8e3dab6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78p-28L 0x1.3d7e779e8e3dab62p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78p-28L 0x1.3d7e779e8e3dab6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c7cp-28L 0x1.3d7e779e8e3dab62p+0L : inexact-ok += clog downward ldbl-128 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78eb3b871d0096p-28L 0x1.3d7e779e8e3dab610076062a1949p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78eb3b871d0098p-28L 0x1.3d7e779e8e3dab610076062a194ap+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78eb3b871d0096p-28L 0x1.3d7e779e8e3dab610076062a1949p+0L : inexact-ok += clog upward ldbl-128 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78eb3b871d0098p-28L 0x1.3d7e779e8e3dab610076062a194ap+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78eb3b871dp-28L 0x1.3d7e779e8e3dab610076062a19p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78eb3b871d01p-28L 0x1.3d7e779e8e3dab610076062a198p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78eb3b871dp-28L 0x1.3d7e779e8e3dab610076062a19p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c58p-4L 0xf.22364p-4L : 0x3.58fb714cb2d81c78eb3b871d01p-28L 0x1.3d7e779e8e3dab610076062a198p+0L : inexact-ok += clog downward flt-32 0x5.318c58p-4f 0xf.22363p-4f : -0xb.c93adp-28f 0x1.3d7e76p+0f : inexact-ok += clog tonearest flt-32 0x5.318c58p-4f 0xf.22363p-4f : -0xb.c93adp-28f 0x1.3d7e78p+0f : inexact-ok += clog towardzero flt-32 0x5.318c58p-4f 0xf.22363p-4f : -0xb.c93acp-28f 0x1.3d7e76p+0f : inexact-ok += clog upward flt-32 0x5.318c58p-4f 0xf.22363p-4f : -0xb.c93acp-28f 0x1.3d7e78p+0f : inexact-ok += clog downward dbl-64 0x5.318c58p-4 0xf.22363p-4 : -0xb.c93aceae93ae8p-28 0x1.3d7e774b7577fp+0 : inexact-ok += clog tonearest dbl-64 0x5.318c58p-4 0xf.22363p-4 : -0xb.c93aceae93ae8p-28 0x1.3d7e774b7578p+0 : inexact-ok += clog towardzero dbl-64 0x5.318c58p-4 0xf.22363p-4 : -0xb.c93aceae93aep-28 0x1.3d7e774b7577fp+0 : inexact-ok += clog upward dbl-64 0x5.318c58p-4 0xf.22363p-4 : -0xb.c93aceae93aep-28 0x1.3d7e774b7578p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4dap-28L 0x1.3d7e774b7577ff8cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4dap-28L 0x1.3d7e774b7577ff8ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9p-28L 0x1.3d7e774b7577ff8cp+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9p-28L 0x1.3d7e774b7577ff8ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4dap-28L 0x1.3d7e774b7577ff8cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4dap-28L 0x1.3d7e774b7577ff8ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9p-28L 0x1.3d7e774b7577ff8cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9p-28L 0x1.3d7e774b7577ff8ep+0L : inexact-ok += clog downward ldbl-128 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9877c50505103p-28L 0x1.3d7e774b7577ff8da72bfc0fe696p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9877c50505103p-28L 0x1.3d7e774b7577ff8da72bfc0fe697p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9877c505051028p-28L 0x1.3d7e774b7577ff8da72bfc0fe696p+0L : inexact-ok += clog upward ldbl-128 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9877c505051028p-28L 0x1.3d7e774b7577ff8da72bfc0fe697p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9877c5050514p-28L 0x1.3d7e774b7577ff8da72bfc0fe68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9877c505051p-28L 0x1.3d7e774b7577ff8da72bfc0fe68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9877c505051p-28L 0x1.3d7e774b7577ff8da72bfc0fe68p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c58p-4L 0xf.22363p-4L : -0xb.c93aceae93ae4d9877c505051p-28L 0x1.3d7e774b7577ff8da72bfc0fe7p+0L : inexact-ok += clog downward dbl-64 0x5.318c58p-4 0xf.22363bf989dap-4 : -0x7.5aeb21b1b92ep-32 0x1.3d7e7789a67d6p+0 : inexact-ok += clog tonearest dbl-64 0x5.318c58p-4 0xf.22363bf989dap-4 : -0x7.5aeb21b1b92dcp-32 0x1.3d7e7789a67d7p+0 : inexact-ok += clog towardzero dbl-64 0x5.318c58p-4 0xf.22363bf989dap-4 : -0x7.5aeb21b1b92dcp-32 0x1.3d7e7789a67d6p+0 : inexact-ok += clog upward dbl-64 0x5.318c58p-4 0xf.22363bf989dap-4 : -0x7.5aeb21b1b92dcp-32 0x1.3d7e7789a67d7p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddadp-32L 0x1.3d7e7789a67d690ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddadp-32L 0x1.3d7e7789a67d690cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddac8p-32L 0x1.3d7e7789a67d690ap+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddac8p-32L 0x1.3d7e7789a67d690cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddadp-32L 0x1.3d7e7789a67d690ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddadp-32L 0x1.3d7e7789a67d690cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddac8p-32L 0x1.3d7e7789a67d690ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddac8p-32L 0x1.3d7e7789a67d690cp+0L : inexact-ok += clog downward ldbl-128 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddacfe10e64abcd7cp-32L 0x1.3d7e7789a67d690b8facefbbcb74p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddacfe10e64abcd7cp-32L 0x1.3d7e7789a67d690b8facefbbcb74p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddacfe10e64abcd78p-32L 0x1.3d7e7789a67d690b8facefbbcb74p+0L : inexact-ok += clog upward ldbl-128 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddacfe10e64abcd78p-32L 0x1.3d7e7789a67d690b8facefbbcb75p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddacfe10e64abcep-32L 0x1.3d7e7789a67d690b8facefbbcbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddacfe10e64abcep-32L 0x1.3d7e7789a67d690b8facefbbcb8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddacfe10e64abccp-32L 0x1.3d7e7789a67d690b8facefbbcbp+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989dap-4L : -0x7.5aeb21b1b92ddacfe10e64abccp-32L 0x1.3d7e7789a67d690b8facefbbcb8p+0L : inexact-ok += clog downward dbl-64 0x5.318c58p-4 0xf.22363bf989d98p-4 : -0x7.5aeb2942d44c8p-32 0x1.3d7e7789a67d6p+0 : inexact-ok += clog tonearest dbl-64 0x5.318c58p-4 0xf.22363bf989d98p-4 : -0x7.5aeb2942d44c4p-32 0x1.3d7e7789a67d6p+0 : inexact-ok += clog towardzero dbl-64 0x5.318c58p-4 0xf.22363bf989d98p-4 : -0x7.5aeb2942d44c4p-32 0x1.3d7e7789a67d6p+0 : inexact-ok += clog upward dbl-64 0x5.318c58p-4 0xf.22363bf989d98p-4 : -0x7.5aeb2942d44c4p-32 0x1.3d7e7789a67d7p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e8p-32L 0x1.3d7e7789a67d6672p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e8p-32L 0x1.3d7e7789a67d6672p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46ep-32L 0x1.3d7e7789a67d6672p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46ep-32L 0x1.3d7e7789a67d6674p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e8p-32L 0x1.3d7e7789a67d6672p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e8p-32L 0x1.3d7e7789a67d6672p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46ep-32L 0x1.3d7e7789a67d6672p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46ep-32L 0x1.3d7e7789a67d6674p+0L : inexact-ok += clog downward ldbl-128 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e4374575406024p-32L 0x1.3d7e7789a67d6672c980c988c475p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e437457540602p-32L 0x1.3d7e7789a67d6672c980c988c476p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e437457540602p-32L 0x1.3d7e7789a67d6672c980c988c475p+0L : inexact-ok += clog upward ldbl-128 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e437457540602p-32L 0x1.3d7e7789a67d6672c980c988c476p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e43745754062p-32L 0x1.3d7e7789a67d6672c980c988c4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e4374575406p-32L 0x1.3d7e7789a67d6672c980c988c48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e4374575406p-32L 0x1.3d7e7789a67d6672c980c988c4p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989d98p-4L : -0x7.5aeb2942d44c46e4374575406p-32L 0x1.3d7e7789a67d6672c980c988c48p+0L : inexact-ok += clog downward ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb261565690088p-32L 0x1.3d7e7789a67d6788p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb26156569008p-32L 0x1.3d7e7789a67d678ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb26156569008p-32L 0x1.3d7e7789a67d6788p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb26156569008p-32L 0x1.3d7e7789a67d678ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb261565690088p-32L 0x1.3d7e7789a67d6788p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb26156569008p-32L 0x1.3d7e7789a67d678ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb26156569008p-32L 0x1.3d7e7789a67d6788p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb26156569008p-32L 0x1.3d7e7789a67d678ap+0L : inexact-ok += clog downward ldbl-128 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb261565690081ad0b2ed14b94p-32L 0x1.3d7e7789a67d6789f0b8539331eap+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb261565690081ad0b2ed14b9p-32L 0x1.3d7e7789a67d6789f0b8539331eap+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb261565690081ad0b2ed14b9p-32L 0x1.3d7e7789a67d6789f0b8539331eap+0L : inexact-ok += clog upward ldbl-128 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb261565690081ad0b2ed14b9p-32L 0x1.3d7e7789a67d6789f0b8539331ebp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb261565690081ad0b2ed14cp-32L 0x1.3d7e7789a67d6789f0b85393318p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb261565690081ad0b2ed14cp-32L 0x1.3d7e7789a67d6789f0b8539332p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb261565690081ad0b2ed14ap-32L 0x1.3d7e7789a67d6789f0b85393318p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c58p-4L 0xf.22363bf989d9b5cp-4L : -0x7.5aeb261565690081ad0b2ed14ap-32L 0x1.3d7e7789a67d6789f0b8539332p+0L : inexact-ok += clog downward dbl-64 0x5.318c596a8cb14p-4 0xf.22364p-4 : 0x3.ceaa2384071ecp-28 0x1.3d7e77891f8bcp+0 : inexact-ok += clog tonearest dbl-64 0x5.318c596a8cb14p-4 0xf.22364p-4 : 0x3.ceaa2384071eep-28 0x1.3d7e77891f8bdp+0 : inexact-ok += clog towardzero dbl-64 0x5.318c596a8cb14p-4 0xf.22364p-4 : 0x3.ceaa2384071ecp-28 0x1.3d7e77891f8bcp+0 : inexact-ok += clog upward dbl-64 0x5.318c596a8cb14p-4 0xf.22364p-4 : 0x3.ceaa2384071eep-28 0x1.3d7e77891f8bdp+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edadp-28L 0x1.3d7e77891f8bce5ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad4p-28L 0x1.3d7e77891f8bce5cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edadp-28L 0x1.3d7e77891f8bce5ap+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad4p-28L 0x1.3d7e77891f8bce5cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edadp-28L 0x1.3d7e77891f8bce5ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad4p-28L 0x1.3d7e77891f8bce5cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edadp-28L 0x1.3d7e77891f8bce5ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad4p-28L 0x1.3d7e77891f8bce5cp+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad2982fde0781p-28L 0x1.3d7e77891f8bce5b7a17433c1827p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad2982fde0781p-28L 0x1.3d7e77891f8bce5b7a17433c1828p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad2982fde0781p-28L 0x1.3d7e77891f8bce5b7a17433c1827p+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad2982fde078102p-28L 0x1.3d7e77891f8bce5b7a17433c1828p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad2982fde0781p-28L 0x1.3d7e77891f8bce5b7a17433c18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad2982fde0781p-28L 0x1.3d7e77891f8bce5b7a17433c18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad2982fde0781p-28L 0x1.3d7e77891f8bce5b7a17433c18p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22364p-4L : 0x3.ceaa2384071edad2982fde0782p-28L 0x1.3d7e77891f8bce5b7a17433c188p+0L : inexact-ok += clog downward dbl-64 0x5.318c596a8cb14p-4 0xf.22363p-4 : -0xb.538c1b98a0948p-28 0x1.3d7e773606c61p+0 : inexact-ok += clog tonearest dbl-64 0x5.318c596a8cb14p-4 0xf.22363p-4 : -0xb.538c1b98a094p-28 0x1.3d7e773606c61p+0 : inexact-ok += clog towardzero dbl-64 0x5.318c596a8cb14p-4 0xf.22363p-4 : -0xb.538c1b98a094p-28 0x1.3d7e773606c61p+0 : inexact-ok += clog upward dbl-64 0x5.318c596a8cb14p-4 0xf.22363p-4 : -0xb.538c1b98a094p-28 0x1.3d7e773606c62p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d9p-28L 0x1.3d7e773606c610a4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d8p-28L 0x1.3d7e773606c610a6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d8p-28L 0x1.3d7e773606c610a4p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d8p-28L 0x1.3d7e773606c610a6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d9p-28L 0x1.3d7e773606c610a4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d8p-28L 0x1.3d7e773606c610a6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d8p-28L 0x1.3d7e773606c610a4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d8p-28L 0x1.3d7e773606c610a6p+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d87165c8480949p-28L 0x1.3d7e773606c610a5b693d65a56bfp+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d87165c84809488p-28L 0x1.3d7e773606c610a5b693d65a56bfp+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d87165c84809488p-28L 0x1.3d7e773606c610a5b693d65a56bfp+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d87165c84809488p-28L 0x1.3d7e773606c610a5b693d65a56cp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d87165c848098p-28L 0x1.3d7e773606c610a5b693d65a568p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d87165c848094p-28L 0x1.3d7e773606c610a5b693d65a568p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d87165c848094p-28L 0x1.3d7e773606c610a5b693d65a568p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363p-4L : -0xb.538c1b98a0941d87165c848094p-28L 0x1.3d7e773606c610a5b693d65a57p+0L : inexact-ok += clog downward dbl-64 0x5.318c596a8cb14p-4 0xf.22363bf989dap-4 : 0x5.43a4ff75332e8p-56 0x1.3d7e777437cb8p+0 : inexact-ok += clog tonearest dbl-64 0x5.318c596a8cb14p-4 0xf.22363bf989dap-4 : 0x5.43a4ff75332ecp-56 0x1.3d7e777437cb8p+0 : inexact-ok += clog towardzero dbl-64 0x5.318c596a8cb14p-4 0xf.22363bf989dap-4 : 0x5.43a4ff75332e8p-56 0x1.3d7e777437cb8p+0 : inexact-ok += clog upward dbl-64 0x5.318c596a8cb14p-4 0xf.22363bf989dap-4 : 0x5.43a4ff75332ecp-56 0x1.3d7e777437cb9p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac48p-56L 0x1.3d7e777437cb8786p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac48p-56L 0x1.3d7e777437cb8786p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac48p-56L 0x1.3d7e777437cb8786p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac5p-56L 0x1.3d7e777437cb8788p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac48p-56L 0x1.3d7e777437cb8786p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac48p-56L 0x1.3d7e777437cb8786p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac48p-56L 0x1.3d7e777437cb8786p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac5p-56L 0x1.3d7e777437cb8788p+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac49ae3d5c5a4e3p-56L 0x1.3d7e777437cb878635ca0b21711bp+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac49ae3d5c5a4e3p-56L 0x1.3d7e777437cb878635ca0b21711cp+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac49ae3d5c5a4e3p-56L 0x1.3d7e777437cb878635ca0b21711bp+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac49ae3d5c5a4e34p-56L 0x1.3d7e777437cb878635ca0b21711cp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac49ae3d5c5a4ep-56L 0x1.3d7e777437cb878635ca0b2171p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac49ae3d5c5a4ep-56L 0x1.3d7e777437cb878635ca0b2171p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac49ae3d5c5a4ep-56L 0x1.3d7e777437cb878635ca0b2171p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989dap-4L : 0x5.43a4ff75332eac49ae3d5c5a5p-56L 0x1.3d7e777437cb878635ca0b21718p+0L : inexact-ok += clog downward dbl-64 0x5.318c596a8cb14p-4 0xf.22363bf989d98p-4 : -0x2.4d761e8791be2p-56 0x1.3d7e777437cb8p+0 : inexact-ok += clog tonearest dbl-64 0x5.318c596a8cb14p-4 0xf.22363bf989d98p-4 : -0x2.4d761e8791be2p-56 0x1.3d7e777437cb8p+0 : inexact-ok += clog towardzero dbl-64 0x5.318c596a8cb14p-4 0xf.22363bf989d98p-4 : -0x2.4d761e8791bep-56 0x1.3d7e777437cb8p+0 : inexact-ok += clog upward dbl-64 0x5.318c596a8cb14p-4 0xf.22363bf989d98p-4 : -0x2.4d761e8791bep-56 0x1.3d7e777437cb9p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d5p-56L 0x1.3d7e777437cb84ecp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4cp-56L 0x1.3d7e777437cb84eep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4cp-56L 0x1.3d7e777437cb84ecp+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4cp-56L 0x1.3d7e777437cb84eep+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d5p-56L 0x1.3d7e777437cb84ecp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4cp-56L 0x1.3d7e777437cb84eep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4cp-56L 0x1.3d7e777437cb84ecp+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4cp-56L 0x1.3d7e777437cb84eep+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4d48befbfd4334p-56L 0x1.3d7e777437cb84ed6f9d55db1883p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4d48befbfd4334p-56L 0x1.3d7e777437cb84ed6f9d55db1883p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4d48befbfd4332p-56L 0x1.3d7e777437cb84ed6f9d55db1883p+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4d48befbfd4332p-56L 0x1.3d7e777437cb84ed6f9d55db1884p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4d48befbfd44p-56L 0x1.3d7e777437cb84ed6f9d55db188p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4d48befbfd43p-56L 0x1.3d7e777437cb84ed6f9d55db188p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4d48befbfd43p-56L 0x1.3d7e777437cb84ed6f9d55db188p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989d98p-4L : -0x2.4d761e8791be1d4d48befbfd43p-56L 0x1.3d7e777437cb84ed6f9d55db19p+0L : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578p-60L 0x1.3d7e777437cb8604p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f35781p-60L 0x1.3d7e777437cb8604p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578p-60L 0x1.3d7e777437cb8604p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f35781p-60L 0x1.3d7e777437cb8606p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578p-60L 0x1.3d7e777437cb8604p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f35781p-60L 0x1.3d7e777437cb8604p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578p-60L 0x1.3d7e777437cb8604p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f35781p-60L 0x1.3d7e777437cb8606p+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578094a7cf90ea678p-60L 0x1.3d7e777437cb860496d51bfa22bcp+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578094a7cf90ea678p-60L 0x1.3d7e777437cb860496d51bfa22bcp+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578094a7cf90ea678p-60L 0x1.3d7e777437cb860496d51bfa22bcp+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578094a7cf90ea68p-60L 0x1.3d7e777437cb860496d51bfa22bdp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578094a7cf90ea4p-60L 0x1.3d7e777437cb860496d51bfa228p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578094a7cf90ea8p-60L 0x1.3d7e777437cb860496d51bfa228p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578094a7cf90ea4p-60L 0x1.3d7e777437cb860496d51bfa228p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb14p-4L 0xf.22363bf989d9b5cp-4L : 0xd.ff8c49012f3578094a7cf90ea8p-60L 0x1.3d7e777437cb860496d51bfa23p+0L : inexact-ok += clog downward dbl-64 0x5.318c596a8cb1p-4 0xf.22364p-4 : 0x3.ceaa236f40ed6p-28 0x1.3d7e77891f8bdp+0 : inexact-ok += clog tonearest dbl-64 0x5.318c596a8cb1p-4 0xf.22364p-4 : 0x3.ceaa236f40ed8p-28 0x1.3d7e77891f8bdp+0 : inexact-ok += clog towardzero dbl-64 0x5.318c596a8cb1p-4 0xf.22364p-4 : 0x3.ceaa236f40ed6p-28 0x1.3d7e77891f8bdp+0 : inexact-ok += clog upward dbl-64 0x5.318c596a8cb1p-4 0xf.22364p-4 : 0x3.ceaa236f40ed8p-28 0x1.3d7e77891f8bep+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f08p-28L 0x1.3d7e77891f8bd224p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0cp-28L 0x1.3d7e77891f8bd224p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f08p-28L 0x1.3d7e77891f8bd224p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0cp-28L 0x1.3d7e77891f8bd226p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f08p-28L 0x1.3d7e77891f8bd224p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0cp-28L 0x1.3d7e77891f8bd224p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f08p-28L 0x1.3d7e77891f8bd224p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0cp-28L 0x1.3d7e77891f8bd226p+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0b6136d61e7bc2p-28L 0x1.3d7e77891f8bd22407a5764a4ed2p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0b6136d61e7bc2p-28L 0x1.3d7e77891f8bd22407a5764a4ed2p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0b6136d61e7bc2p-28L 0x1.3d7e77891f8bd22407a5764a4ed2p+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0b6136d61e7bc4p-28L 0x1.3d7e77891f8bd22407a5764a4ed3p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0b6136d61e7bp-28L 0x1.3d7e77891f8bd22407a5764a4e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0b6136d61e7cp-28L 0x1.3d7e77891f8bd22407a5764a4fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0b6136d61e7bp-28L 0x1.3d7e77891f8bd22407a5764a4e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22364p-4L : 0x3.ceaa236f40ed7f0b6136d61e7cp-28L 0x1.3d7e77891f8bd22407a5764a4fp+0L : inexact-ok += clog downward dbl-64 0x5.318c596a8cb1p-4 0xf.22363p-4 : -0xb.538c1bad66c6p-28 0x1.3d7e773606c61p+0 : inexact-ok += clog tonearest dbl-64 0x5.318c596a8cb1p-4 0xf.22363p-4 : -0xb.538c1bad66c58p-28 0x1.3d7e773606c61p+0 : inexact-ok += clog towardzero dbl-64 0x5.318c596a8cb1p-4 0xf.22363p-4 : -0xb.538c1bad66c58p-28 0x1.3d7e773606c61p+0 : inexact-ok += clog upward dbl-64 0x5.318c596a8cb1p-4 0xf.22363p-4 : -0xb.538c1bad66c58p-28 0x1.3d7e773606c62p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a0ap-28L 0x1.3d7e773606c6146ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a0ap-28L 0x1.3d7e773606c6146ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09p-28L 0x1.3d7e773606c6146ep+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09p-28L 0x1.3d7e773606c6147p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a0ap-28L 0x1.3d7e773606c6146ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a0ap-28L 0x1.3d7e773606c6146ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09p-28L 0x1.3d7e773606c6146ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09p-28L 0x1.3d7e773606c6147p+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09ac136440cfb08p-28L 0x1.3d7e773606c6146e4425319ffa55p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09ac136440cfbp-28L 0x1.3d7e773606c6146e4425319ffa56p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09ac136440cfbp-28L 0x1.3d7e773606c6146e4425319ffa55p+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09ac136440cfbp-28L 0x1.3d7e773606c6146e4425319ffa56p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09ac136440cfcp-28L 0x1.3d7e773606c6146e4425319ffap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09ac136440cfcp-28L 0x1.3d7e773606c6146e4425319ffa8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09ac136440cf8p-28L 0x1.3d7e773606c6146e4425319ffap+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363p-4L : -0xb.538c1bad66c5a09ac136440cf8p-28L 0x1.3d7e773606c6146e4425319ffa8p+0L : inexact-ok += clog downward dbl-64 0x5.318c596a8cb1p-4 0xf.22363bf989dap-4 : 0x3.f741e91a90026p-56 0x1.3d7e777437cb8p+0 : inexact-ok += clog tonearest dbl-64 0x5.318c596a8cb1p-4 0xf.22363bf989dap-4 : 0x3.f741e91a90028p-56 0x1.3d7e777437cb9p+0 : inexact-ok += clog towardzero dbl-64 0x5.318c596a8cb1p-4 0xf.22363bf989dap-4 : 0x3.f741e91a90026p-56 0x1.3d7e777437cb8p+0 : inexact-ok += clog upward dbl-64 0x5.318c596a8cb1p-4 0xf.22363bf989dap-4 : 0x3.f741e91a90028p-56 0x1.3d7e777437cb9p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027044p-56L 0x1.3d7e777437cb8b4ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027044p-56L 0x1.3d7e777437cb8b4ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027044p-56L 0x1.3d7e777437cb8b4ep+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027048p-56L 0x1.3d7e777437cb8b5p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027044p-56L 0x1.3d7e777437cb8b4ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027044p-56L 0x1.3d7e777437cb8b4ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027044p-56L 0x1.3d7e777437cb8b4ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027048p-56L 0x1.3d7e777437cb8b5p+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027045a448972a4ep-56L 0x1.3d7e777437cb8b4ec3590983e778p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027045a448972a4e02p-56L 0x1.3d7e777437cb8b4ec3590983e779p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027045a448972a4ep-56L 0x1.3d7e777437cb8b4ec3590983e778p+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027045a448972a4e02p-56L 0x1.3d7e777437cb8b4ec3590983e779p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027045a448972a4ep-56L 0x1.3d7e777437cb8b4ec3590983e7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027045a448972a4ep-56L 0x1.3d7e777437cb8b4ec3590983e78p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027045a448972a4ep-56L 0x1.3d7e777437cb8b4ec3590983e7p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989dap-4L : 0x3.f741e91a90027045a448972a4fp-56L 0x1.3d7e777437cb8b4ec3590983e78p+0L : inexact-ok += clog downward dbl-64 0x5.318c596a8cb1p-4 0xf.22363bf989d98p-4 : -0x3.99d934e234ea8p-56 0x1.3d7e777437cb8p+0 : inexact-ok += clog tonearest dbl-64 0x5.318c596a8cb1p-4 0xf.22363bf989d98p-4 : -0x3.99d934e234ea6p-56 0x1.3d7e777437cb9p+0 : inexact-ok += clog towardzero dbl-64 0x5.318c596a8cb1p-4 0xf.22363bf989d98p-4 : -0x3.99d934e234ea6p-56 0x1.3d7e777437cb8p+0 : inexact-ok += clog upward dbl-64 0x5.318c596a8cb1p-4 0xf.22363bf989d98p-4 : -0x3.99d934e234ea6p-56 0x1.3d7e777437cb9p+0 : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf8p-56L 0x1.3d7e777437cb88b4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf8p-56L 0x1.3d7e777437cb88b6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf4p-56L 0x1.3d7e777437cb88b4p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf4p-56L 0x1.3d7e777437cb88b6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf8p-56L 0x1.3d7e777437cb88b4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf8p-56L 0x1.3d7e777437cb88b6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf4p-56L 0x1.3d7e777437cb88b4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf4p-56L 0x1.3d7e777437cb88b6p+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf78c96ce532908p-56L 0x1.3d7e777437cb88b5fd2c543d8ef9p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf78c96ce532908p-56L 0x1.3d7e777437cb88b5fd2c543d8efap+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf78c96ce532906p-56L 0x1.3d7e777437cb88b5fd2c543d8ef9p+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf78c96ce532906p-56L 0x1.3d7e777437cb88b5fd2c543d8efap+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf78c96ce532ap-56L 0x1.3d7e777437cb88b5fd2c543d8e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf78c96ce5329p-56L 0x1.3d7e777437cb88b5fd2c543d8fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf78c96ce5329p-56L 0x1.3d7e777437cb88b5fd2c543d8e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989d98p-4L : -0x3.99d934e234ea6cf78c96ce5329p-56L 0x1.3d7e777437cb88b5fd2c543d8fp+0L : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe98p-60L 0x1.3d7e777437cb89ccp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe98p-60L 0x1.3d7e777437cb89cep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe9p-60L 0x1.3d7e777437cb89ccp+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe9p-60L 0x1.3d7e777437cb89cep+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe98p-60L 0x1.3d7e777437cb89ccp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe98p-60L 0x1.3d7e777437cb89cep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe9p-60L 0x1.3d7e777437cb89ccp+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe9p-60L 0x1.3d7e777437cb89cep+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe961e12abf91494p-60L 0x1.3d7e777437cb89cd24641a5c9927p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe961e12abf9149p-60L 0x1.3d7e777437cb89cd24641a5c9928p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe961e12abf9149p-60L 0x1.3d7e777437cb89cd24641a5c9927p+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe961e12abf9149p-60L 0x1.3d7e777437cb89cd24641a5c9928p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe961e12abf916p-60L 0x1.3d7e777437cb89cd24641a5c99p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe961e12abf914p-60L 0x1.3d7e777437cb89cd24641a5c99p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe961e12abf914p-60L 0x1.3d7e777437cb89cd24641a5c99p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb1p-4L 0xf.22363bf989d9b5cp-4L : -0x6.c6a51ca9038efe961e12abf914p-60L 0x1.3d7e777437cb89cd24641a5c998p+0L : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa237607929878p-28L 0x1.3d7e77891f8bd0e8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987cp-28L 0x1.3d7e77891f8bd0e8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa237607929878p-28L 0x1.3d7e77891f8bd0e8p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987cp-28L 0x1.3d7e77891f8bd0eap+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa237607929878p-28L 0x1.3d7e77891f8bd0e8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987cp-28L 0x1.3d7e77891f8bd0e8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa237607929878p-28L 0x1.3d7e77891f8bd0e8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987cp-28L 0x1.3d7e77891f8bd0eap+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987adba4f9febc76p-28L 0x1.3d7e77891f8bd0e81d7994a32bfcp+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987adba4f9febc78p-28L 0x1.3d7e77891f8bd0e81d7994a32bfcp+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987adba4f9febc76p-28L 0x1.3d7e77891f8bd0e81d7994a32bfcp+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987adba4f9febc78p-28L 0x1.3d7e77891f8bd0e81d7994a32bfdp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987adba4f9febcp-28L 0x1.3d7e77891f8bd0e81d7994a32b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987adba4f9febcp-28L 0x1.3d7e77891f8bd0e81d7994a32cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987adba4f9febcp-28L 0x1.3d7e77891f8bd0e81d7994a32b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22364p-4L : 0x3.ceaa23760792987adba4f9febdp-28L 0x1.3d7e77891f8bd0e81d7994a32cp+0L : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a6p-28L 0x1.3d7e773606c61332p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a6p-28L 0x1.3d7e773606c61332p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a5p-28L 0x1.3d7e773606c61332p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a5p-28L 0x1.3d7e773606c61334p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a6p-28L 0x1.3d7e773606c61332p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a6p-28L 0x1.3d7e773606c61332p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a5p-28L 0x1.3d7e773606c61332p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a5p-28L 0x1.3d7e773606c61334p+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a59d6fc5446f038p-28L 0x1.3d7e773606c6133259f8485ac379p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a59d6fc5446f03p-28L 0x1.3d7e773606c6133259f8485ac379p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a59d6fc5446f03p-28L 0x1.3d7e773606c6133259f8485ac379p+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a59d6fc5446f03p-28L 0x1.3d7e773606c6133259f8485ac37ap+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a59d6fc5446f4p-28L 0x1.3d7e773606c6133259f8485ac3p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a59d6fc5446fp-28L 0x1.3d7e773606c6133259f8485ac38p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a59d6fc5446fp-28L 0x1.3d7e773606c6133259f8485ac3p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363p-4L : -0xb.538c1ba6a0207a59d6fc5446fp-28L 0x1.3d7e773606c6133259f8485ac38p+0L : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c7p-56L 0x1.3d7e777437cb8a12p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c78p-56L 0x1.3d7e777437cb8a12p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c7p-56L 0x1.3d7e777437cb8a12p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c78p-56L 0x1.3d7e777437cb8a14p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c7p-56L 0x1.3d7e777437cb8a12p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c78p-56L 0x1.3d7e777437cb8a12p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c7p-56L 0x1.3d7e777437cb8a12p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c78p-56L 0x1.3d7e777437cb8a14p+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c75b17f6a95c708p-56L 0x1.3d7e777437cb8a12d92ce58ac9dcp+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c75b17f6a95c70cp-56L 0x1.3d7e777437cb8a12d92ce58ac9dcp+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c75b17f6a95c708p-56L 0x1.3d7e777437cb8a12d92ce58ac9dcp+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c75b17f6a95c70cp-56L 0x1.3d7e777437cb8a12d92ce58ac9ddp+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c75b17f6a95c6p-56L 0x1.3d7e777437cb8a12d92ce58ac98p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c75b17f6a95c8p-56L 0x1.3d7e777437cb8a12d92ce58acap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c75b17f6a95c6p-56L 0x1.3d7e777437cb8a12d92ce58ac98p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989dap-4L : 0x4.63ac3ae5203b5c75b17f6a95c8p-56L 0x1.3d7e777437cb8a12d92ce58acap+0L : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a6p-56L 0x1.3d7e777437cb877ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a6p-56L 0x1.3d7e777437cb877ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5cp-56L 0x1.3d7e777437cb877ap+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5cp-56L 0x1.3d7e777437cb877cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a6p-56L 0x1.3d7e777437cb877ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a6p-56L 0x1.3d7e777437cb877ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5cp-56L 0x1.3d7e777437cb877ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5cp-56L 0x1.3d7e777437cb877cp+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5ec77e6c1dd3a8p-56L 0x1.3d7e777437cb877a130030447154p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5ec77e6c1dd3a6p-56L 0x1.3d7e777437cb877a130030447155p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5ec77e6c1dd3a6p-56L 0x1.3d7e777437cb877a130030447154p+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5ec77e6c1dd3a6p-56L 0x1.3d7e777437cb877a130030447155p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5ec77e6c1dd4p-56L 0x1.3d7e777437cb877a1300304471p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5ec77e6c1dd4p-56L 0x1.3d7e777437cb877a13003044718p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5ec77e6c1dd3p-56L 0x1.3d7e777437cb877a1300304471p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989d98p-4L : -0x3.2d6ee317a4b17a5ec77e6c1dd3p-56L 0x1.3d7e777437cb877a13003044718p+0L : inexact-ok += clog downward ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.96p-120L 0x1.3d7e777437cb889p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.96p-120L 0x1.3d7e777437cb8892p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.95fffffffffffffep-120L 0x1.3d7e777437cb889p+0L : inexact-ok += clog upward ldbl-96-intel 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.95fffffffffffffep-120L 0x1.3d7e777437cb8892p+0L : inexact-ok += clog downward ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.96p-120L 0x1.3d7e777437cb889p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.96p-120L 0x1.3d7e777437cb8892p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.95fffffffffffffep-120L 0x1.3d7e777437cb889p+0L : inexact-ok += clog upward ldbl-96-m68k 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.95fffffffffffffep-120L 0x1.3d7e777437cb8892p+0L : inexact-ok += clog downward ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.96p-120L 0x1.3d7e777437cb88913a37f6637b86p+0L : inexact-ok += clog tonearest ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.96p-120L 0x1.3d7e777437cb88913a37f6637b87p+0L : inexact-ok += clog towardzero ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.95ffffffffffffffffffffffffffp-120L 0x1.3d7e777437cb88913a37f6637b86p+0L : inexact-ok += clog upward ldbl-128 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.95ffffffffffffffffffffffffffp-120L 0x1.3d7e777437cb88913a37f6637b87p+0L : inexact-ok += clog downward ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.96p-120L 0x1.3d7e777437cb88913a37f6637b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.96p-120L 0x1.3d7e777437cb88913a37f6637b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.95ffffffffffffffffffffffff8p-120L 0x1.3d7e777437cb88913a37f6637b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x5.318c596a8cb114ep-4L 0xf.22363bf989d9b5cp-4L : -0x1.95ffffffffffffffffffffffff8p-120L 0x1.3d7e777437cb88913a37f6637cp+0L : inexact-ok +clog 0x4d9c37e2b5cb4533p-63 0x65c98be2385a042ep-63 += clog downward flt-32 0x9.b387p-4f 0xc.b9318p-4f : 0x5.2e19f8p-28f 0xe.b5b1ep-4f : inexact-ok += clog tonearest flt-32 0x9.b387p-4f 0xc.b9318p-4f : 0x5.2e1ap-28f 0xe.b5b1fp-4f : inexact-ok += clog towardzero flt-32 0x9.b387p-4f 0xc.b9318p-4f : 0x5.2e19f8p-28f 0xe.b5b1ep-4f : inexact-ok += clog upward flt-32 0x9.b387p-4f 0xc.b9318p-4f : 0x5.2e1ap-28f 0xe.b5b1fp-4f : inexact-ok += clog downward dbl-64 0x9.b387p-4 0xc.b9318p-4 : 0x5.2e19fe52aaebp-28 0xe.b5b1ec5ec7568p-4 : inexact-ok += clog tonearest dbl-64 0x9.b387p-4 0xc.b9318p-4 : 0x5.2e19fe52aaebp-28 0xe.b5b1ec5ec7568p-4 : inexact-ok += clog towardzero dbl-64 0x9.b387p-4 0xc.b9318p-4 : 0x5.2e19fe52aaebp-28 0xe.b5b1ec5ec7568p-4 : inexact-ok += clog upward dbl-64 0x9.b387p-4 0xc.b9318p-4 : 0x5.2e19fe52aaeb4p-28 0xe.b5b1ec5ec757p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f1p-28L 0xe.b5b1ec5ec7568d2p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f18p-28L 0xe.b5b1ec5ec7568d3p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f1p-28L 0xe.b5b1ec5ec7568d2p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f18p-28L 0xe.b5b1ec5ec7568d3p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f1p-28L 0xe.b5b1ec5ec7568d2p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f18p-28L 0xe.b5b1ec5ec7568d3p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f1p-28L 0xe.b5b1ec5ec7568d2p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f18p-28L 0xe.b5b1ec5ec7568d3p-4L : inexact-ok += clog downward ldbl-128 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f14dbb85572dcc8p-28L 0xe.b5b1ec5ec7568d2c04ffd1a8b7b8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f14dbb85572dcccp-28L 0xe.b5b1ec5ec7568d2c04ffd1a8b7cp-4L : inexact-ok += clog towardzero ldbl-128 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f14dbb85572dcc8p-28L 0xe.b5b1ec5ec7568d2c04ffd1a8b7b8p-4L : inexact-ok += clog upward ldbl-128 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f14dbb85572dcccp-28L 0xe.b5b1ec5ec7568d2c04ffd1a8b7cp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f14dbb85572dcp-28L 0xe.b5b1ec5ec7568d2c04ffd1a8b4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f14dbb85572dcp-28L 0xe.b5b1ec5ec7568d2c04ffd1a8b8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f14dbb85572dcp-28L 0xe.b5b1ec5ec7568d2c04ffd1a8b4p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b387p-4L 0xc.b9318p-4L : 0x5.2e19fe52aaeb0f14dbb85572dep-28L 0xe.b5b1ec5ec7568d2c04ffd1a8b8p-4L : inexact-ok += clog downward flt-32 0x9.b387p-4f 0xc.b9317p-4f : -0x7.8b178p-28f 0xe.b5b1ep-4f : inexact-ok += clog tonearest flt-32 0x9.b387p-4f 0xc.b9317p-4f : -0x7.8b1778p-28f 0xe.b5b1ep-4f : inexact-ok += clog towardzero flt-32 0x9.b387p-4f 0xc.b9317p-4f : -0x7.8b1778p-28f 0xe.b5b1ep-4f : inexact-ok += clog upward flt-32 0x9.b387p-4f 0xc.b9317p-4f : -0x7.8b1778p-28f 0xe.b5b1fp-4f : inexact-ok += clog downward dbl-64 0x9.b387p-4 0xc.b9317p-4 : -0x7.8b177b8e6db34p-28 0xe.b5b1e2ab4055p-4 : inexact-ok += clog tonearest dbl-64 0x9.b387p-4 0xc.b9317p-4 : -0x7.8b177b8e6db34p-28 0xe.b5b1e2ab4055p-4 : inexact-ok += clog towardzero dbl-64 0x9.b387p-4 0xc.b9317p-4 : -0x7.8b177b8e6db3p-28 0xe.b5b1e2ab4055p-4 : inexact-ok += clog upward dbl-64 0x9.b387p-4 0xc.b9317p-4 : -0x7.8b177b8e6db3p-28 0xe.b5b1e2ab40558p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323cp-28L 0xe.b5b1e2ab40551e5p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323b8p-28L 0xe.b5b1e2ab40551e6p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323b8p-28L 0xe.b5b1e2ab40551e5p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323b8p-28L 0xe.b5b1e2ab40551e6p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323cp-28L 0xe.b5b1e2ab40551e5p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323b8p-28L 0xe.b5b1e2ab40551e6p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323b8p-28L 0xe.b5b1e2ab40551e5p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323b8p-28L 0xe.b5b1e2ab40551e6p-4L : inexact-ok += clog downward ldbl-128 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323ba97ea0df1af88p-28L 0xe.b5b1e2ab40551e5929571399019p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323ba97ea0df1af88p-28L 0xe.b5b1e2ab40551e5929571399019p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323ba97ea0df1af84p-28L 0xe.b5b1e2ab40551e5929571399019p-4L : inexact-ok += clog upward ldbl-128 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323ba97ea0df1af84p-28L 0xe.b5b1e2ab40551e59295713990198p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323ba97ea0df1bp-28L 0xe.b5b1e2ab40551e5929571399p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323ba97ea0df1bp-28L 0xe.b5b1e2ab40551e5929571399p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323ba97ea0df1aep-28L 0xe.b5b1e2ab40551e5929571399p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b387p-4L 0xc.b9317p-4L : -0x7.8b177b8e6db323ba97ea0df1aep-28L 0xe.b5b1e2ab40551e592957139904p-4L : inexact-ok += clog downward dbl-64 0x9.b387p-4 0xc.b9317c470b41p-4 : 0x2.384c5eca62d1ep-28 0xe.b5b1ea1cf911p-4 : inexact-ok += clog tonearest dbl-64 0x9.b387p-4 0xc.b9317c470b41p-4 : 0x2.384c5eca62d2p-28 0xe.b5b1ea1cf9118p-4 : inexact-ok += clog towardzero dbl-64 0x9.b387p-4 0xc.b9317c470b41p-4 : 0x2.384c5eca62d1ep-28 0xe.b5b1ea1cf911p-4 : inexact-ok += clog upward dbl-64 0x9.b387p-4 0xc.b9317c470b41p-4 : 0x2.384c5eca62d2p-28 0xe.b5b1ea1cf9118p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f67p-28L 0xe.b5b1ea1cf9117e8p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f674p-28L 0xe.b5b1ea1cf9117e9p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f67p-28L 0xe.b5b1ea1cf9117e8p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f674p-28L 0xe.b5b1ea1cf9117e9p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f67p-28L 0xe.b5b1ea1cf9117e8p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f674p-28L 0xe.b5b1ea1cf9117e9p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f67p-28L 0xe.b5b1ea1cf9117e8p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f674p-28L 0xe.b5b1ea1cf9117e9p-4L : inexact-ok += clog downward ldbl-128 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f672089240df7966p-28L 0xe.b5b1ea1cf9117e8ca70fe6ba3fep-4L : inexact-ok += clog tonearest ldbl-128 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f672089240df7966p-28L 0xe.b5b1ea1cf9117e8ca70fe6ba3fep-4L : inexact-ok += clog towardzero ldbl-128 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f672089240df7966p-28L 0xe.b5b1ea1cf9117e8ca70fe6ba3fep-4L : inexact-ok += clog upward ldbl-128 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f672089240df7968p-28L 0xe.b5b1ea1cf9117e8ca70fe6ba3fe8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f672089240df79p-28L 0xe.b5b1ea1cf9117e8ca70fe6ba3cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f672089240df79p-28L 0xe.b5b1ea1cf9117e8ca70fe6ba4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f672089240df79p-28L 0xe.b5b1ea1cf9117e8ca70fe6ba3cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b41p-4L : 0x2.384c5eca62d1f672089240df7ap-28L 0xe.b5b1ea1cf9117e8ca70fe6ba4p-4L : inexact-ok += clog downward dbl-64 0x9.b387p-4 0xc.b9317c470b408p-4 : 0x2.384c5e6499462p-28 0xe.b5b1ea1cf911p-4 : inexact-ok += clog tonearest dbl-64 0x9.b387p-4 0xc.b9317c470b408p-4 : 0x2.384c5e6499464p-28 0xe.b5b1ea1cf911p-4 : inexact-ok += clog towardzero dbl-64 0x9.b387p-4 0xc.b9317c470b408p-4 : 0x2.384c5e6499462p-28 0xe.b5b1ea1cf911p-4 : inexact-ok += clog upward dbl-64 0x9.b387p-4 0xc.b9317c470b408p-4 : 0x2.384c5e6499464p-28 0xe.b5b1ea1cf9118p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e6499463078p-28L 0xe.b5b1ea1cf91130fp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e6499463078p-28L 0xe.b5b1ea1cf91130fp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e6499463078p-28L 0xe.b5b1ea1cf91130fp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e649946307cp-28L 0xe.b5b1ea1cf91131p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e6499463078p-28L 0xe.b5b1ea1cf91130fp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e6499463078p-28L 0xe.b5b1ea1cf91130fp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e6499463078p-28L 0xe.b5b1ea1cf91130fp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e649946307cp-28L 0xe.b5b1ea1cf91131p-4L : inexact-ok += clog downward ldbl-128 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e649946307860024bd8adf8p-28L 0xe.b5b1ea1cf91130f06f256ff2a6ap-4L : inexact-ok += clog tonearest ldbl-128 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e649946307860024bd8adf8p-28L 0xe.b5b1ea1cf91130f06f256ff2a6ap-4L : inexact-ok += clog towardzero ldbl-128 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e649946307860024bd8adf8p-28L 0xe.b5b1ea1cf91130f06f256ff2a6ap-4L : inexact-ok += clog upward ldbl-128 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e649946307860024bd8adfap-28L 0xe.b5b1ea1cf91130f06f256ff2a6a8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e649946307860024bd8adp-28L 0xe.b5b1ea1cf91130f06f256ff2a4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e649946307860024bd8aep-28L 0xe.b5b1ea1cf91130f06f256ff2a8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e649946307860024bd8adp-28L 0xe.b5b1ea1cf91130f06f256ff2a4p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b408p-4L : 0x2.384c5e649946307860024bd8aep-28L 0xe.b5b1ea1cf91130f06f256ff2a8p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dcp-28L 0xe.b5b1ea1cf911346p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dcp-28L 0xe.b5b1ea1cf911347p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dcp-28L 0xe.b5b1ea1cf911346p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7ep-28L 0xe.b5b1ea1cf911347p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dcp-28L 0xe.b5b1ea1cf911346p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dcp-28L 0xe.b5b1ea1cf911347p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dcp-28L 0xe.b5b1ea1cf911346p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7ep-28L 0xe.b5b1ea1cf911347p-4L : inexact-ok += clog downward ldbl-128 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dd1714c92b2edep-28L 0xe.b5b1ea1cf911346cf3a878489e18p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dd1714c92b2eep-28L 0xe.b5b1ea1cf911346cf3a878489e18p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dd1714c92b2edep-28L 0xe.b5b1ea1cf911346cf3a878489e18p-4L : inexact-ok += clog upward ldbl-128 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dd1714c92b2eep-28L 0xe.b5b1ea1cf911346cf3a878489e2p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dd1714c92b2ep-28L 0xe.b5b1ea1cf911346cf3a878489cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dd1714c92b2fp-28L 0xe.b5b1ea1cf911346cf3a87848ap-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dd1714c92b2ep-28L 0xe.b5b1ea1cf911346cf3a878489cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b387p-4L 0xc.b9317c470b4085cp-4L : 0x2.384c5e692bd3f7dd1714c92b2fp-28L 0xe.b5b1ea1cf911346cf3a87848ap-4L : inexact-ok += clog downward flt-32 0x9.b386fp-4f 0xc.b9318p-4f : -0x4.856dp-28f 0xe.b5b1fp-4f : inexact-ok += clog tonearest flt-32 0x9.b386fp-4f 0xc.b9318p-4f : -0x4.856cf8p-28f 0xe.b5b2p-4f : inexact-ok += clog towardzero flt-32 0x9.b386fp-4f 0xc.b9318p-4f : -0x4.856cf8p-28f 0xe.b5b1fp-4f : inexact-ok += clog upward flt-32 0x9.b386fp-4f 0xc.b9318p-4f : -0x4.856cf8p-28f 0xe.b5b2p-4f : inexact-ok += clog downward dbl-64 0x9.b386fp-4 0xc.b9318p-4 : -0x4.856cf9470f23p-28 0xe.b5b1f917f8d6p-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fp-4 0xc.b9318p-4 : -0x4.856cf9470f23p-28 0xe.b5b1f917f8d6p-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fp-4 0xc.b9318p-4 : -0x4.856cf9470f22cp-28 0xe.b5b1f917f8d6p-4 : inexact-ok += clog upward dbl-64 0x9.b386fp-4 0xc.b9318p-4 : -0x4.856cf9470f22cp-28 0xe.b5b1f917f8d68p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc6p-28L 0xe.b5b1f917f8d607p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc6p-28L 0xe.b5b1f917f8d6071p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc58p-28L 0xe.b5b1f917f8d607p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc58p-28L 0xe.b5b1f917f8d6071p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc6p-28L 0xe.b5b1f917f8d607p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc6p-28L 0xe.b5b1f917f8d6071p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc58p-28L 0xe.b5b1f917f8d607p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc58p-28L 0xe.b5b1f917f8d6071p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc5c916277e38d4cp-28L 0xe.b5b1f917f8d60709e82f8bec4a8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc5c916277e38d48p-28L 0xe.b5b1f917f8d60709e82f8bec4a8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc5c916277e38d48p-28L 0xe.b5b1f917f8d60709e82f8bec4a8p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc5c916277e38d48p-28L 0xe.b5b1f917f8d60709e82f8bec4a88p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc5c916277e38ep-28L 0xe.b5b1f917f8d60709e82f8bec48p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc5c916277e38ep-28L 0xe.b5b1f917f8d60709e82f8bec4cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc5c916277e38cp-28L 0xe.b5b1f917f8d60709e82f8bec48p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fp-4L 0xc.b9318p-4L : -0x4.856cf9470f22fc5c916277e38cp-28L 0xe.b5b1f917f8d60709e82f8bec4cp-4L : inexact-ok += clog downward flt-32 0x9.b386fp-4f 0xc.b9317p-4f : -0x1.13e9eap-24f 0xe.b5b1ep-4f : inexact-ok += clog tonearest flt-32 0x9.b386fp-4f 0xc.b9317p-4f : -0x1.13e9e8p-24f 0xe.b5b1fp-4f : inexact-ok += clog towardzero flt-32 0x9.b386fp-4f 0xc.b9317p-4f : -0x1.13e9e8p-24f 0xe.b5b1ep-4f : inexact-ok += clog upward flt-32 0x9.b386fp-4f 0xc.b9317p-4f : -0x1.13e9e8p-24f 0xe.b5b1fp-4f : inexact-ok += clog downward dbl-64 0x9.b386fp-4 0xc.b9317p-4 : -0x1.13e9e829605dbp-24 0xe.b5b1ef6471d88p-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fp-4 0xc.b9317p-4 : -0x1.13e9e829605dbp-24 0xe.b5b1ef6471d9p-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fp-4 0xc.b9317p-4 : -0x1.13e9e829605dap-24 0xe.b5b1ef6471d88p-4 : inexact-ok += clog upward dbl-64 0x9.b386fp-4 0xc.b9317p-4 : -0x1.13e9e829605dap-24 0xe.b5b1ef6471d9p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba8p-24L 0xe.b5b1ef6471d8d48p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6p-24L 0xe.b5b1ef6471d8d49p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6p-24L 0xe.b5b1ef6471d8d48p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6p-24L 0xe.b5b1ef6471d8d49p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba8p-24L 0xe.b5b1ef6471d8d48p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6p-24L 0xe.b5b1ef6471d8d49p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6p-24L 0xe.b5b1ef6471d8d48p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6p-24L 0xe.b5b1ef6471d8d49p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6be303b8c3696p-24L 0xe.b5b1ef6471d8d48a981a73758bd8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6be303b8c3695p-24L 0xe.b5b1ef6471d8d48a981a73758bd8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6be303b8c3695p-24L 0xe.b5b1ef6471d8d48a981a73758bd8p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6be303b8c3695p-24L 0xe.b5b1ef6471d8d48a981a73758bep-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6be303b8c37p-24L 0xe.b5b1ef6471d8d48a981a737588p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6be303b8c368p-24L 0xe.b5b1ef6471d8d48a981a73758cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6be303b8c368p-24L 0xe.b5b1ef6471d8d48a981a737588p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fp-4L 0xc.b9317p-4L : -0x1.13e9e829605daba6be303b8c368p-24L 0xe.b5b1ef6471d8d48a981a73758cp-4L : inexact-ok += clog downward dbl-64 0x9.b386fp-4 0xc.b9317c470b41p-4 : -0x7.7b3a9c664c5c4p-28 0xe.b5b1f6d62a918p-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fp-4 0xc.b9317c470b41p-4 : -0x7.7b3a9c664c5cp-28 0xe.b5b1f6d62a92p-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fp-4 0xc.b9317c470b41p-4 : -0x7.7b3a9c664c5cp-28 0xe.b5b1f6d62a918p-4 : inexact-ok += clog upward dbl-64 0x9.b386fp-4 0xc.b9317c470b41p-4 : -0x7.7b3a9c664c5cp-28 0xe.b5b1f6d62a92p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c095p-28L 0xe.b5b1f6d62a91f4bp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c095p-28L 0xe.b5b1f6d62a91f4bp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c0948p-28L 0xe.b5b1f6d62a91f4bp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c0948p-28L 0xe.b5b1f6d62a91f4cp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c095p-28L 0xe.b5b1f6d62a91f4bp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c095p-28L 0xe.b5b1f6d62a91f4bp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c0948p-28L 0xe.b5b1f6d62a91f4bp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c0948p-28L 0xe.b5b1f6d62a91f4cp-4L : inexact-ok += clog downward ldbl-128 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c094dba5b3ef6c0d4p-28L 0xe.b5b1f6d62a91f4b0c0cc466f8c6p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c094dba5b3ef6c0dp-28L 0xe.b5b1f6d62a91f4b0c0cc466f8c6p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c094dba5b3ef6c0dp-28L 0xe.b5b1f6d62a91f4b0c0cc466f8c6p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c094dba5b3ef6c0dp-28L 0xe.b5b1f6d62a91f4b0c0cc466f8c68p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c094dba5b3ef6c2p-28L 0xe.b5b1f6d62a91f4b0c0cc466f8cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c094dba5b3ef6cp-28L 0xe.b5b1f6d62a91f4b0c0cc466f8cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c094dba5b3ef6cp-28L 0xe.b5b1f6d62a91f4b0c0cc466f8cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b41p-4L : -0x7.7b3a9c664c5c094dba5b3ef6cp-28L 0xe.b5b1f6d62a91f4b0c0cc466f9p-4L : inexact-ok += clog downward dbl-64 0x9.b386fp-4 0xc.b9317c470b408p-4 : -0x7.7b3a9ccc15e88p-28 0xe.b5b1f6d62a918p-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fp-4 0xc.b9317c470b408p-4 : -0x7.7b3a9ccc15e84p-28 0xe.b5b1f6d62a918p-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fp-4 0xc.b9317c470b408p-4 : -0x7.7b3a9ccc15e84p-28 0xe.b5b1f6d62a918p-4 : inexact-ok += clog upward dbl-64 0x9.b386fp-4 0xc.b9317c470b408p-4 : -0x7.7b3a9ccc15e84p-28 0xe.b5b1f6d62a92p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab8p-28L 0xe.b5b1f6d62a91a71p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab8p-28L 0xe.b5b1f6d62a91a71p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84abp-28L 0xe.b5b1f6d62a91a71p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84abp-28L 0xe.b5b1f6d62a91a72p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab8p-28L 0xe.b5b1f6d62a91a71p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab8p-28L 0xe.b5b1f6d62a91a71p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84abp-28L 0xe.b5b1f6d62a91a71p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84abp-28L 0xe.b5b1f6d62a91a72p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab653781612a51p-28L 0xe.b5b1f6d62a91a7148903b2446958p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab653781612a50cp-28L 0xe.b5b1f6d62a91a7148903b2446958p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab653781612a50cp-28L 0xe.b5b1f6d62a91a7148903b2446958p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab653781612a50cp-28L 0xe.b5b1f6d62a91a7148903b244696p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab653781612a6p-28L 0xe.b5b1f6d62a91a7148903b24468p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab653781612a6p-28L 0xe.b5b1f6d62a91a7148903b24468p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab653781612a4p-28L 0xe.b5b1f6d62a91a7148903b24468p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b408p-4L : -0x7.7b3a9ccc15e84ab653781612a4p-28L 0xe.b5b1f6d62a91a7148903b2446cp-4L : inexact-ok += clog downward ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc8p-28L 0xe.b5b1f6d62a91aa9p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc8p-28L 0xe.b5b1f6d62a91aa9p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dcp-28L 0xe.b5b1f6d62a91aa9p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dcp-28L 0xe.b5b1f6d62a91aaap-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc8p-28L 0xe.b5b1f6d62a91aa9p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc8p-28L 0xe.b5b1f6d62a91aa9p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dcp-28L 0xe.b5b1f6d62a91aa9p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dcp-28L 0xe.b5b1f6d62a91aaap-4L : inexact-ok += clog downward ldbl-128 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc620974498316p-28L 0xe.b5b1f6d62a91aa910d8534ec598p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc620974498316p-28L 0xe.b5b1f6d62a91aa910d8534ec598p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc620974498315cp-28L 0xe.b5b1f6d62a91aa910d8534ec598p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc620974498315cp-28L 0xe.b5b1f6d62a91aa910d8534ec5988p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc62097449832p-28L 0xe.b5b1f6d62a91aa910d8534ec58p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc62097449832p-28L 0xe.b5b1f6d62a91aa910d8534ec58p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc6209744983p-28L 0xe.b5b1f6d62a91aa910d8534ec58p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fp-4L 0xc.b9317c470b4085cp-4L : -0x7.7b3a9cc7835a7dc6209744983p-28L 0xe.b5b1f6d62a91aa910d8534ec5cp-4L : inexact-ok += clog downward dbl-64 0x9.b386fc56b969p-4 0xc.b9318p-4 : 0x2.f5cda0f21f028p-28 0xe.b5b1ef481cdap-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fc56b969p-4 0xc.b9318p-4 : 0x2.f5cda0f21f028p-28 0xe.b5b1ef481cdap-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fc56b969p-4 0xc.b9318p-4 : 0x2.f5cda0f21f028p-28 0xe.b5b1ef481cdap-4 : inexact-ok += clog upward dbl-64 0x9.b386fc56b969p-4 0xc.b9318p-4 : 0x2.f5cda0f21f02ap-28 0xe.b5b1ef481cda8p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f028528p-28L 0xe.b5b1ef481cda364p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852cp-28L 0xe.b5b1ef481cda365p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f028528p-28L 0xe.b5b1ef481cda364p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852cp-28L 0xe.b5b1ef481cda365p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f028528p-28L 0xe.b5b1ef481cda364p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852cp-28L 0xe.b5b1ef481cda365p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f028528p-28L 0xe.b5b1ef481cda364p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852cp-28L 0xe.b5b1ef481cda365p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852b407e50d74fcap-28L 0xe.b5b1ef481cda364bda010366d2ep-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852b407e50d74fcap-28L 0xe.b5b1ef481cda364bda010366d2ep-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852b407e50d74fcap-28L 0xe.b5b1ef481cda364bda010366d2ep-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852b407e50d74fccp-28L 0xe.b5b1ef481cda364bda010366d2e8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852b407e50d74fp-28L 0xe.b5b1ef481cda364bda010366dp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852b407e50d75p-28L 0xe.b5b1ef481cda364bda010366d4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852b407e50d74fp-28L 0xe.b5b1ef481cda364bda010366dp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9318p-4L : 0x2.f5cda0f21f02852b407e50d75p-28L 0xe.b5b1ef481cda364bda010366d4p-4L : inexact-ok += clog downward dbl-64 0x9.b386fc56b969p-4 0xc.b9317p-4 : -0x9.c363dc76cfccp-28 0xe.b5b1e59495d98p-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fc56b969p-4 0xc.b9317p-4 : -0x9.c363dc76cfcb8p-28 0xe.b5b1e59495d98p-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fc56b969p-4 0xc.b9317p-4 : -0x9.c363dc76cfcb8p-28 0xe.b5b1e59495d98p-4 : inexact-ok += clog upward dbl-64 0x9.b386fc56b969p-4 0xc.b9317p-4 : -0x9.c363dc76cfcb8p-28 0xe.b5b1e59495dap-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fbp-28L 0xe.b5b1e59495d9bf9p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fbp-28L 0xe.b5b1e59495d9bfap-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fap-28L 0xe.b5b1e59495d9bf9p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fap-28L 0xe.b5b1e59495d9bfap-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fbp-28L 0xe.b5b1e59495d9bf9p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fbp-28L 0xe.b5b1e59495d9bfap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fap-28L 0xe.b5b1e59495d9bf9p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fap-28L 0xe.b5b1e59495d9bfap-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fa9180d65c2cc7p-28L 0xe.b5b1e59495d9bf98883ec7ce0c8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fa9180d65c2cc7p-28L 0xe.b5b1e59495d9bf98883ec7ce0c88p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fa9180d65c2cc68p-28L 0xe.b5b1e59495d9bf98883ec7ce0c8p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fa9180d65c2cc68p-28L 0xe.b5b1e59495d9bf98883ec7ce0c88p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fa9180d65c2dp-28L 0xe.b5b1e59495d9bf98883ec7ce0cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fa9180d65c2ccp-28L 0xe.b5b1e59495d9bf98883ec7ce0cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fa9180d65c2ccp-28L 0xe.b5b1e59495d9bf98883ec7ce0cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317p-4L : -0x9.c363dc76cfcb9fa9180d65c2ccp-28L 0xe.b5b1e59495d9bf98883ec7ce1p-4L : inexact-ok += clog downward dbl-64 0x9.b386fc56b969p-4 0xc.b9317c470b41p-4 : 0x9.78ea03b0c9c88p-56 0xe.b5b1ed064e95p-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fc56b969p-4 0xc.b9317c470b41p-4 : 0x9.78ea03b0c9c88p-56 0xe.b5b1ed064e958p-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fc56b969p-4 0xc.b9317c470b41p-4 : 0x9.78ea03b0c9c88p-56 0xe.b5b1ed064e95p-4 : inexact-ok += clog upward dbl-64 0x9.b386fc56b969p-4 0xc.b9317c470b41p-4 : 0x9.78ea03b0c9c9p-56 0xe.b5b1ed064e958p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a64p-56L 0xe.b5b1ed064e95616p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a64p-56L 0xe.b5b1ed064e95616p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a64p-56L 0xe.b5b1ed064e95616p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a65p-56L 0xe.b5b1ed064e95617p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a64p-56L 0xe.b5b1ed064e95616p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a64p-56L 0xe.b5b1ed064e95616p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a64p-56L 0xe.b5b1ed064e95616p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a65p-56L 0xe.b5b1ed064e95617p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a6466f8431537778p-56L 0xe.b5b1ed064e956166a44fb7d366cp-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a6466f8431537778p-56L 0xe.b5b1ed064e956166a44fb7d366cp-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a6466f8431537778p-56L 0xe.b5b1ed064e956166a44fb7d366cp-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a6466f843153778p-56L 0xe.b5b1ed064e956166a44fb7d366c8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a6466f84315374p-56L 0xe.b5b1ed064e956166a44fb7d364p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a6466f84315378p-56L 0xe.b5b1ed064e956166a44fb7d368p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a6466f84315374p-56L 0xe.b5b1ed064e956166a44fb7d364p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b41p-4L : 0x9.78ea03b0c9c8a6466f84315378p-56L 0xe.b5b1ed064e956166a44fb7d368p-4L : inexact-ok += clog downward dbl-64 0x9.b386fc56b969p-4 0xc.b9317c470b408p-4 : 0x3.1c51458d44288p-56 0xe.b5b1ed064e95p-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fc56b969p-4 0xc.b9317c470b408p-4 : 0x3.1c51458d4428ap-56 0xe.b5b1ed064e95p-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fc56b969p-4 0xc.b9317c470b408p-4 : 0x3.1c51458d44288p-56 0xe.b5b1ed064e95p-4 : inexact-ok += clog upward dbl-64 0x9.b386fc56b969p-4 0xc.b9317c470b408p-4 : 0x3.1c51458d4428ap-56 0xe.b5b1ed064e958p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d4428965p-56L 0xe.b5b1ed064e9513cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289654p-56L 0xe.b5b1ed064e9513dp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d4428965p-56L 0xe.b5b1ed064e9513cp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289654p-56L 0xe.b5b1ed064e9513dp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d4428965p-56L 0xe.b5b1ed064e9513cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289654p-56L 0xe.b5b1ed064e9513dp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d4428965p-56L 0xe.b5b1ed064e9513cp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289654p-56L 0xe.b5b1ed064e9513dp-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289652f67dac69d8eep-56L 0xe.b5b1ed064e9513ca6c6d0208229p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289652f67dac69d8eep-56L 0xe.b5b1ed064e9513ca6c6d0208229p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289652f67dac69d8eep-56L 0xe.b5b1ed064e9513ca6c6d0208229p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289652f67dac69d8fp-56L 0xe.b5b1ed064e9513ca6c6d02082298p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289652f67dac69d8p-56L 0xe.b5b1ed064e9513ca6c6d02082p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289652f67dac69d9p-56L 0xe.b5b1ed064e9513ca6c6d020824p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289652f67dac69d8p-56L 0xe.b5b1ed064e9513ca6c6d02082p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b408p-4L : 0x3.1c51458d44289652f67dac69d9p-56L 0xe.b5b1ed064e9513ca6c6d020824p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94764p-56L 0xe.b5b1ed064e95174p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94768p-56L 0xe.b5b1ed064e95174p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94764p-56L 0xe.b5b1ed064e95174p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94768p-56L 0xe.b5b1ed064e95175p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94764p-56L 0xe.b5b1ed064e95174p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94768p-56L 0xe.b5b1ed064e95174p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94764p-56L 0xe.b5b1ed064e95174p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94768p-56L 0xe.b5b1ed064e95175p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94767719a457ca1fcp-56L 0xe.b5b1ed064e951746f0efb132c43p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94767719a457ca1fcp-56L 0xe.b5b1ed064e951746f0efb132c438p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94767719a457ca1fcp-56L 0xe.b5b1ed064e951746f0efb132c43p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94767719a457ca1fep-56L 0xe.b5b1ed064e951746f0efb132c438p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94767719a457ca1p-56L 0xe.b5b1ed064e951746f0efb132c4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94767719a457ca2p-56L 0xe.b5b1ed064e951746f0efb132c4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94767719a457ca1p-56L 0xe.b5b1ed064e951746f0efb132c4p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b969p-4L 0xc.b9317c470b4085cp-4L : 0x3.657a2217dca94767719a457ca2p-56L 0xe.b5b1ed064e951746f0efb132c8p-4L : inexact-ok += clog downward dbl-64 0x9.b386fc56b9688p-4 0xc.b9318p-4 : 0x2.f5cda0a482caap-28 0xe.b5b1ef481cda8p-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fc56b9688p-4 0xc.b9318p-4 : 0x2.f5cda0a482cacp-28 0xe.b5b1ef481cda8p-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fc56b9688p-4 0xc.b9318p-4 : 0x2.f5cda0a482caap-28 0xe.b5b1ef481cda8p-4 : inexact-ok += clog upward dbl-64 0x9.b386fc56b9688p-4 0xc.b9318p-4 : 0x2.f5cda0a482cacp-28 0xe.b5b1ef481cdbp-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2cp-28L 0xe.b5b1ef481cda9c1p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2cp-28L 0xe.b5b1ef481cda9c1p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2cp-28L 0xe.b5b1ef481cda9c1p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf3p-28L 0xe.b5b1ef481cda9c2p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2cp-28L 0xe.b5b1ef481cda9c1p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2cp-28L 0xe.b5b1ef481cda9c1p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2cp-28L 0xe.b5b1ef481cda9c1p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf3p-28L 0xe.b5b1ef481cda9c2p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2d1e362e031f7p-28L 0xe.b5b1ef481cda9c1565db598f2fd8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2d1e362e031f72p-28L 0xe.b5b1ef481cda9c1565db598f2fd8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2d1e362e031f7p-28L 0xe.b5b1ef481cda9c1565db598f2fd8p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2d1e362e031f72p-28L 0xe.b5b1ef481cda9c1565db598f2fep-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2d1e362e031fp-28L 0xe.b5b1ef481cda9c1565db598f2cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2d1e362e031fp-28L 0xe.b5b1ef481cda9c1565db598f3p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2d1e362e031fp-28L 0xe.b5b1ef481cda9c1565db598f2cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9318p-4L : 0x2.f5cda0a482cabf2d1e362e032p-28L 0xe.b5b1ef481cda9c1565db598f3p-4L : inexact-ok += clog downward dbl-64 0x9.b386fc56b9688p-4 0xc.b9317p-4 : -0x9.c363dcc46c04p-28 0xe.b5b1e59495dap-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fc56b9688p-4 0xc.b9317p-4 : -0x9.c363dcc46c04p-28 0xe.b5b1e59495dap-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fc56b9688p-4 0xc.b9317p-4 : -0x9.c363dcc46c038p-28 0xe.b5b1e59495dap-4 : inexact-ok += clog upward dbl-64 0x9.b386fc56b9688p-4 0xc.b9317p-4 : -0x9.c363dcc46c038p-28 0xe.b5b1e59495da8p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e12p-28L 0xe.b5b1e59495da256p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e11p-28L 0xe.b5b1e59495da256p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e11p-28L 0xe.b5b1e59495da256p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e11p-28L 0xe.b5b1e59495da257p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e12p-28L 0xe.b5b1e59495da256p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e11p-28L 0xe.b5b1e59495da256p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e11p-28L 0xe.b5b1e59495da256p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e11p-28L 0xe.b5b1e59495da257p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e1162b07e8c3f0cp-28L 0xe.b5b1e59495da2562143b009285b8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e1162b07e8c3f0cp-28L 0xe.b5b1e59495da2562143b009285cp-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e1162b07e8c3f0b8p-28L 0xe.b5b1e59495da2562143b009285b8p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e1162b07e8c3f0b8p-28L 0xe.b5b1e59495da2562143b009285cp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e1162b07e8c3f4p-28L 0xe.b5b1e59495da2562143b009284p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e1162b07e8c3fp-28L 0xe.b5b1e59495da2562143b009284p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e1162b07e8c3fp-28L 0xe.b5b1e59495da2562143b009284p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317p-4L : -0x9.c363dcc46c03e1162b07e8c3fp-28L 0xe.b5b1e59495da2562143b009288p-4L : inexact-ok += clog downward dbl-64 0x9.b386fc56b9688p-4 0xc.b9317c470b41p-4 : 0x4.9f2685856d148p-56 0xe.b5b1ed064e958p-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fc56b9688p-4 0xc.b9317c470b41p-4 : 0x4.9f2685856d148p-56 0xe.b5b1ed064e96p-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fc56b9688p-4 0xc.b9317c470b41p-4 : 0x4.9f2685856d148p-56 0xe.b5b1ed064e958p-4 : inexact-ok += clog upward dbl-64 0x9.b386fc56b9688p-4 0xc.b9317c470b41p-4 : 0x4.9f2685856d14cp-56 0xe.b5b1ed064e96p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aap-56L 0xe.b5b1ed064e95c73p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aap-56L 0xe.b5b1ed064e95c73p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aap-56L 0xe.b5b1ed064e95c73p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aa8p-56L 0xe.b5b1ed064e95c74p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aap-56L 0xe.b5b1ed064e95c73p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aap-56L 0xe.b5b1ed064e95c73p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aap-56L 0xe.b5b1ed064e95c73p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aa8p-56L 0xe.b5b1ed064e95c74p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aa3daf42cf09b98p-56L 0xe.b5b1ed064e95c7303031f02d692p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aa3daf42cf09b98p-56L 0xe.b5b1ed064e95c7303031f02d6928p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aa3daf42cf09b98p-56L 0xe.b5b1ed064e95c7303031f02d692p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aa3daf42cf09b9cp-56L 0xe.b5b1ed064e95c7303031f02d6928p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aa3daf42cf09ap-56L 0xe.b5b1ed064e95c7303031f02d68p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aa3daf42cf09cp-56L 0xe.b5b1ed064e95c7303031f02d68p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aa3daf42cf09ap-56L 0xe.b5b1ed064e95c7303031f02d68p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b41p-4L : 0x4.9f2685856d148aa3daf42cf09cp-56L 0xe.b5b1ed064e95c7303031f02d6cp-4L : inexact-ok += clog downward dbl-64 0x9.b386fc56b9688p-4 0xc.b9317c470b408p-4 : -0x1.bd72389e188bdp-56 0xe.b5b1ed064e95p-4 : inexact-ok += clog tonearest dbl-64 0x9.b386fc56b9688p-4 0xc.b9317c470b408p-4 : -0x1.bd72389e188bcp-56 0xe.b5b1ed064e958p-4 : inexact-ok += clog towardzero dbl-64 0x9.b386fc56b9688p-4 0xc.b9317c470b408p-4 : -0x1.bd72389e188bcp-56 0xe.b5b1ed064e95p-4 : inexact-ok += clog upward dbl-64 0x9.b386fc56b9688p-4 0xc.b9317c470b408p-4 : -0x1.bd72389e188bcp-56 0xe.b5b1ed064e958p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc308p-56L 0xe.b5b1ed064e95799p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc308p-56L 0xe.b5b1ed064e95799p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc306p-56L 0xe.b5b1ed064e95799p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc306p-56L 0xe.b5b1ed064e9579ap-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc308p-56L 0xe.b5b1ed064e95799p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc308p-56L 0xe.b5b1ed064e95799p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc306p-56L 0xe.b5b1ed064e95799p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc306p-56L 0xe.b5b1ed064e9579ap-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc307164bcc1aa94ap-56L 0xe.b5b1ed064e957993f84f3a6226p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc307164bcc1aa949p-56L 0xe.b5b1ed064e957993f84f3a622608p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc307164bcc1aa949p-56L 0xe.b5b1ed064e957993f84f3a6226p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc307164bcc1aa949p-56L 0xe.b5b1ed064e957993f84f3a622608p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc307164bcc1aa98p-56L 0xe.b5b1ed064e957993f84f3a6224p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc307164bcc1aa98p-56L 0xe.b5b1ed064e957993f84f3a6228p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc307164bcc1aa9p-56L 0xe.b5b1ed064e957993f84f3a6224p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b408p-4L : -0x1.bd72389e188bc307164bcc1aa9p-56L 0xe.b5b1ed064e957993f84f3a6228p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2ep-56L 0xe.b5b1ed064e957d1p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cp-56L 0xe.b5b1ed064e957d1p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cp-56L 0xe.b5b1ed064e957d1p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cp-56L 0xe.b5b1ed064e957d2p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2ep-56L 0xe.b5b1ed064e957d1p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cp-56L 0xe.b5b1ed064e957d1p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cp-56L 0xe.b5b1ed064e957d1p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cp-56L 0xe.b5b1ed064e957d2p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cdd489e505d2ep-56L 0xe.b5b1ed064e957d107cd1e98cc798p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cdd489e505d2ep-56L 0xe.b5b1ed064e957d107cd1e98cc7ap-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cdd489e505d2dp-56L 0xe.b5b1ed064e957d107cd1e98cc798p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cdd489e505d2dp-56L 0xe.b5b1ed064e957d107cd1e98cc7ap-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cdd489e505d8p-56L 0xe.b5b1ed064e957d107cd1e98cc4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cdd489e505dp-56L 0xe.b5b1ed064e957d107cd1e98cc8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cdd489e505dp-56L 0xe.b5b1ed064e957d107cd1e98cc4p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b9688p-4L 0xc.b9317c470b4085cp-4L : -0x1.74495c13800b0f2cdd489e505dp-56L 0xe.b5b1ed064e957d107cd1e98cc8p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c8p-28L 0xe.b5b1ef481cda7d9p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c8p-28L 0xe.b5b1ef481cda7d9p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c8p-28L 0xe.b5b1ef481cda7d9p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077ccp-28L 0xe.b5b1ef481cda7dap-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c8p-28L 0xe.b5b1ef481cda7d9p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c8p-28L 0xe.b5b1ef481cda7d9p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c8p-28L 0xe.b5b1ef481cda7d9p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077ccp-28L 0xe.b5b1ef481cda7dap-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c90efd320046fep-28L 0xe.b5b1ef481cda7d91392da43a959p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c90efd320047p-28L 0xe.b5b1ef481cda7d91392da43a959p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c90efd320046fep-28L 0xe.b5b1ef481cda7d91392da43a959p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c90efd320047p-28L 0xe.b5b1ef481cda7d91392da43a9598p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c90efd320046p-28L 0xe.b5b1ef481cda7d91392da43a94p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c90efd320047p-28L 0xe.b5b1ef481cda7d91392da43a94p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c90efd320046p-28L 0xe.b5b1ef481cda7d91392da43a94p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9318p-4L : 0x2.f5cda0bbc76077c90efd320047p-28L 0xe.b5b1ef481cda7d91392da43a98p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e038p-28L 0xe.b5b1e59495da06dp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e038p-28L 0xe.b5b1e59495da06ep-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e037p-28L 0xe.b5b1e59495da06dp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e037p-28L 0xe.b5b1e59495da06ep-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e038p-28L 0xe.b5b1e59495da06dp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e038p-28L 0xe.b5b1e59495da06ep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e037p-28L 0xe.b5b1e59495da06dp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e037p-28L 0xe.b5b1e59495da06ep-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e0378b7976a714ecp-28L 0xe.b5b1e59495da06dde783228d9df8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e0378b7976a714ecp-28L 0xe.b5b1e59495da06dde783228d9ep-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e0378b7976a714eb8p-28L 0xe.b5b1e59495da06dde783228d9df8p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e0378b7976a714eb8p-28L 0xe.b5b1e59495da06dde783228d9ep-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e0378b7976a715p-28L 0xe.b5b1e59495da06dde783228d9cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e0378b7976a715p-28L 0xe.b5b1e59495da06dde783228d9cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e0378b7976a714cp-28L 0xe.b5b1e59495da06dde783228d9cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317p-4L : -0x9.c363dcad276e0378b7976a714cp-28L 0xe.b5b1e59495da06dde783228dap-4L : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882p-56L 0xe.b5b1ed064e95a8ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f8828p-56L 0xe.b5b1ed064e95a8bp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882p-56L 0xe.b5b1ed064e95a8ap-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f8828p-56L 0xe.b5b1ed064e95a8bp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882p-56L 0xe.b5b1ed064e95a8ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f8828p-56L 0xe.b5b1ed064e95a8bp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882p-56L 0xe.b5b1ed064e95a8ap-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f8828p-56L 0xe.b5b1ed064e95a8bp-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882599a072c5e68cp-56L 0xe.b5b1ed064e95a8ac0381ddc86c8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882599a072c5e68cp-56L 0xe.b5b1ed064e95a8ac0381ddc86c88p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882599a072c5e68cp-56L 0xe.b5b1ed064e95a8ac0381ddc86c8p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882599a072c5e69p-56L 0xe.b5b1ed064e95a8ac0381ddc86c88p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882599a072c5e6p-56L 0xe.b5b1ed064e95a8ac0381ddc86cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882599a072c5e6p-56L 0xe.b5b1ed064e95a8ac0381ddc86cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882599a072c5e6p-56L 0xe.b5b1ed064e95a8ac0381ddc86cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b41p-4L : 0x6.136fe198ed1f882599a072c5e8p-56L 0xe.b5b1ed064e95a8ac0381ddc87p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b305p-60L 0xe.b5b1ed064e955bp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b3048p-60L 0xe.b5b1ed064e955b1p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b3048p-60L 0xe.b5b1ed064e955bp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b3048p-60L 0xe.b5b1ed064e955b1p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b305p-60L 0xe.b5b1ed064e955bp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b3048p-60L 0xe.b5b1ed064e955b1p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b3048p-60L 0xe.b5b1ed064e955bp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b3048p-60L 0xe.b5b1ed064e955b1p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b30496544cb4478f8p-60L 0xe.b5b1ed064e955b0fcb9f27fd291p-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b30496544cb4478f8p-60L 0xe.b5b1ed064e955b0fcb9f27fd2918p-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b30496544cb4478f4p-60L 0xe.b5b1ed064e955b0fcb9f27fd291p-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b30496544cb4478f4p-60L 0xe.b5b1ed064e955b0fcb9f27fd2918p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b30496544cb447ap-60L 0xe.b5b1ed064e955b0fcb9f27fd28p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b30496544cb4478p-60L 0xe.b5b1ed064e955b0fcb9f27fd28p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b30496544cb4478p-60L 0xe.b5b1ed064e955b0fcb9f27fd28p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b408p-4L : -0x4.928dc8a9880b30496544cb4478p-60L 0xe.b5b1ed064e955b0fcb9f27fd2cp-4L : inexact-ok += clog downward ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.9ffffffffffffffp-124L 0xe.b5b1ed064e955e8p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.ap-124L 0xe.b5b1ed064e955e9p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.9ffffffffffffffp-124L 0xe.b5b1ed064e955e8p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.ap-124L 0xe.b5b1ed064e955e9p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.9ffffffffffffffp-124L 0xe.b5b1ed064e955e8p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.ap-124L 0xe.b5b1ed064e955e9p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.9ffffffffffffffp-124L 0xe.b5b1ed064e955e8p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.ap-124L 0xe.b5b1ed064e955e9p-4L : inexact-ok += clog downward ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.9ffffffffffffffffffffffffff8p-124L 0xe.b5b1ed064e955e8c5021d727cabp-4L : inexact-ok += clog tonearest ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.ap-124L 0xe.b5b1ed064e955e8c5021d727cabp-4L : inexact-ok += clog towardzero ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.9ffffffffffffffffffffffffff8p-124L 0xe.b5b1ed064e955e8c5021d727cabp-4L : inexact-ok += clog upward ldbl-128 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.ap-124L 0xe.b5b1ed064e955e8c5021d727cab8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.9ffffffffffffffffffffffffcp-124L 0xe.b5b1ed064e955e8c5021d727c8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.ap-124L 0xe.b5b1ed064e955e8c5021d727ccp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.9ffffffffffffffffffffffffcp-124L 0xe.b5b1ed064e955e8c5021d727c8p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.b386fc56b968a66p-4L 0xc.b9317c470b4085cp-4L : 0xd.ap-124L 0xe.b5b1ed064e955e8c5021d727ccp-4L : inexact-ok +clog 0x602fd5037c4792efp-64 0xed3e2086dcca80b8p-64 += clog downward flt-32 0x6.02fd58p-4f 0xe.d3e21p-4f : 0x9.f0ba7p-28f 0x1.2f8446p+0f : inexact-ok += clog tonearest flt-32 0x6.02fd58p-4f 0xe.d3e21p-4f : 0x9.f0ba7p-28f 0x1.2f8446p+0f : inexact-ok += clog towardzero flt-32 0x6.02fd58p-4f 0xe.d3e21p-4f : 0x9.f0ba7p-28f 0x1.2f8446p+0f : inexact-ok += clog upward flt-32 0x6.02fd58p-4f 0xe.d3e21p-4f : 0x9.f0ba8p-28f 0x1.2f8448p+0f : inexact-ok += clog downward dbl-64 0x6.02fd58p-4 0xe.d3e21p-4 : 0x9.f0ba73d30859p-28 0x1.2f84463c035f8p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd58p-4 0xe.d3e21p-4 : 0x9.f0ba73d30859p-28 0x1.2f84463c035f9p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd58p-4 0xe.d3e21p-4 : 0x9.f0ba73d30859p-28 0x1.2f84463c035f8p+0 : inexact-ok += clog upward dbl-64 0x6.02fd58p-4 0xe.d3e21p-4 : 0x9.f0ba73d308598p-28 0x1.2f84463c035f9p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d30859144p-28L 0x1.2f84463c035f8b76p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d30859144p-28L 0x1.2f84463c035f8b78p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d30859144p-28L 0x1.2f84463c035f8b76p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d30859145p-28L 0x1.2f84463c035f8b78p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d30859144p-28L 0x1.2f84463c035f8b76p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d30859144p-28L 0x1.2f84463c035f8b78p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d30859144p-28L 0x1.2f84463c035f8b76p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d30859145p-28L 0x1.2f84463c035f8b78p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d308591444eb3b62a293c8p-28L 0x1.2f84463c035f8b77038d2511607cp+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d308591444eb3b62a293dp-28L 0x1.2f84463c035f8b77038d2511607dp+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d308591444eb3b62a293c8p-28L 0x1.2f84463c035f8b77038d2511607cp+0L : inexact-ok += clog upward ldbl-128 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d308591444eb3b62a293dp-28L 0x1.2f84463c035f8b77038d2511607dp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d308591444eb3b62a29p-28L 0x1.2f84463c035f8b77038d25116p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d308591444eb3b62a294p-28L 0x1.2f84463c035f8b77038d2511608p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d308591444eb3b62a29p-28L 0x1.2f84463c035f8b77038d25116p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e21p-4L : 0x9.f0ba73d308591444eb3b62a294p-28L 0x1.2f84463c035f8b77038d2511608p+0L : inexact-ok += clog downward flt-32 0x6.02fd58p-4f 0xe.d3e2p-4f : -0x4.e3279p-28f 0x1.2f8444p+0f : inexact-ok += clog tonearest flt-32 0x6.02fd58p-4f 0xe.d3e2p-4f : -0x4.e3279p-28f 0x1.2f8446p+0f : inexact-ok += clog towardzero flt-32 0x6.02fd58p-4f 0xe.d3e2p-4f : -0x4.e32788p-28f 0x1.2f8444p+0f : inexact-ok += clog upward flt-32 0x6.02fd58p-4f 0xe.d3e2p-4f : -0x4.e32788p-28f 0x1.2f8446p+0f : inexact-ok += clog downward dbl-64 0x6.02fd58p-4 0xe.d3e2p-4 : -0x4.e3278f7e2cba8p-28 0x1.2f8445dbd38a2p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd58p-4 0xe.d3e2p-4 : -0x4.e3278f7e2cba4p-28 0x1.2f8445dbd38a3p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd58p-4 0xe.d3e2p-4 : -0x4.e3278f7e2cba4p-28 0x1.2f8445dbd38a2p+0 : inexact-ok += clog upward dbl-64 0x6.02fd58p-4 0xe.d3e2p-4 : -0x4.e3278f7e2cba4p-28 0x1.2f8445dbd38a3p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5abp-28L 0x1.2f8445dbd38a29d6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5abp-28L 0x1.2f8445dbd38a29d8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aa8p-28L 0x1.2f8445dbd38a29d6p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aa8p-28L 0x1.2f8445dbd38a29d8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5abp-28L 0x1.2f8445dbd38a29d6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5abp-28L 0x1.2f8445dbd38a29d8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aa8p-28L 0x1.2f8445dbd38a29d6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aa8p-28L 0x1.2f8445dbd38a29d8p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aafcee71eef89ccp-28L 0x1.2f8445dbd38a29d7902cb1afd837p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aafcee71eef89ccp-28L 0x1.2f8445dbd38a29d7902cb1afd838p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aafcee71eef89c8p-28L 0x1.2f8445dbd38a29d7902cb1afd837p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aafcee71eef89c8p-28L 0x1.2f8445dbd38a29d7902cb1afd838p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aafcee71eef8ap-28L 0x1.2f8445dbd38a29d7902cb1afd8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aafcee71eef8ap-28L 0x1.2f8445dbd38a29d7902cb1afd8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aafcee71eef88p-28L 0x1.2f8445dbd38a29d7902cb1afd8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2p-4L : -0x4.e3278f7e2cba5aafcee71eef88p-28L 0x1.2f8445dbd38a29d7902cb1afd88p+0L : inexact-ok += clog downward dbl-64 0x6.02fd58p-4 0xe.d3e2086dcca88p-4 : 0x2.ec8a90f87782ep-28 0x1.2f84460e7f892p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd58p-4 0xe.d3e2086dcca88p-4 : 0x2.ec8a90f87782ep-28 0x1.2f84460e7f892p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd58p-4 0xe.d3e2086dcca88p-4 : 0x2.ec8a90f87782ep-28 0x1.2f84460e7f892p+0 : inexact-ok += clog upward dbl-64 0x6.02fd58p-4 0xe.d3e2086dcca88p-4 : 0x2.ec8a90f87783p-28 0x1.2f84460e7f893p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e558p-28L 0x1.2f84460e7f89256p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55cp-28L 0x1.2f84460e7f892562p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e558p-28L 0x1.2f84460e7f89256p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55cp-28L 0x1.2f84460e7f892562p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e558p-28L 0x1.2f84460e7f89256p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55cp-28L 0x1.2f84460e7f892562p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e558p-28L 0x1.2f84460e7f89256p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55cp-28L 0x1.2f84460e7f892562p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55bc68103a584eep-28L 0x1.2f84460e7f892561362bc0b199e1p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55bc68103a584fp-28L 0x1.2f84460e7f892561362bc0b199e2p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55bc68103a584eep-28L 0x1.2f84460e7f892561362bc0b199e1p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55bc68103a584fp-28L 0x1.2f84460e7f892561362bc0b199e2p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55bc68103a584p-28L 0x1.2f84460e7f892561362bc0b1998p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55bc68103a585p-28L 0x1.2f84460e7f892561362bc0b19ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55bc68103a584p-28L 0x1.2f84460e7f892561362bc0b1998p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca88p-4L : 0x2.ec8a90f87782e55bc68103a585p-28L 0x1.2f84460e7f892561362bc0b19ap+0L : inexact-ok += clog downward dbl-64 0x6.02fd58p-4 0xe.d3e2086dcca8p-4 : 0x2.ec8a9081d872cp-28 0x1.2f84460e7f892p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd58p-4 0xe.d3e2086dcca8p-4 : 0x2.ec8a9081d872cp-28 0x1.2f84460e7f892p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd58p-4 0xe.d3e2086dcca8p-4 : 0x2.ec8a9081d872cp-28 0x1.2f84460e7f892p+0 : inexact-ok += clog upward dbl-64 0x6.02fd58p-4 0xe.d3e2086dcca8p-4 : 0x2.ec8a9081d872ep-28 0x1.2f84460e7f893p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd48p-28L 0x1.2f84460e7f89225ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd48p-28L 0x1.2f84460e7f89226p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd48p-28L 0x1.2f84460e7f89225ep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd4cp-28L 0x1.2f84460e7f89226p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd48p-28L 0x1.2f84460e7f89225ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd48p-28L 0x1.2f84460e7f89226p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd48p-28L 0x1.2f84460e7f89225ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd4cp-28L 0x1.2f84460e7f89226p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd488041b48ab97p-28L 0x1.2f84460e7f89225fb780d9f16dabp+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd488041b48ab97p-28L 0x1.2f84460e7f89225fb780d9f16dabp+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd488041b48ab97p-28L 0x1.2f84460e7f89225fb780d9f16dabp+0L : inexact-ok += clog upward ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd488041b48ab972p-28L 0x1.2f84460e7f89225fb780d9f16dacp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd488041b48ab9p-28L 0x1.2f84460e7f89225fb780d9f16d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd488041b48ab9p-28L 0x1.2f84460e7f89225fb780d9f16d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd488041b48ab9p-28L 0x1.2f84460e7f89225fb780d9f16d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca8p-4L : 0x2.ec8a9081d872cd488041b48abap-28L 0x1.2f84460e7f89225fb780d9f16ep+0L : inexact-ok += clog downward ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f7p-28L 0x1.2f84460e7f8922a4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f74p-28L 0x1.2f84460e7f8922a4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f7p-28L 0x1.2f84460e7f8922a4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f74p-28L 0x1.2f84460e7f8922a6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f7p-28L 0x1.2f84460e7f8922a4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f74p-28L 0x1.2f84460e7f8922a4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f7p-28L 0x1.2f84460e7f8922a4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f74p-28L 0x1.2f84460e7f8922a6p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f723b9182b1f2c2p-28L 0x1.2f84460e7f8922a4d9e234acb1a6p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f723b9182b1f2c2p-28L 0x1.2f84460e7f8922a4d9e234acb1a6p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f723b9182b1f2c2p-28L 0x1.2f84460e7f8922a4d9e234acb1a6p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f723b9182b1f2c4p-28L 0x1.2f84460e7f8922a4d9e234acb1a7p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f723b9182b1f2p-28L 0x1.2f84460e7f8922a4d9e234acb18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f723b9182b1f3p-28L 0x1.2f84460e7f8922a4d9e234acb18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f723b9182b1f2p-28L 0x1.2f84460e7f8922a4d9e234acb18p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd58p-4L 0xe.d3e2086dcca80b8p-4L : 0x2.ec8a908c80bd3f723b9182b1f3p-28L 0x1.2f84460e7f8922a4d9e234acb2p+0L : inexact-ok += clog downward flt-32 0x6.02fd5p-4f 0xe.d3e21p-4f : 0x6.ef3bc8p-28f 0x1.2f8446p+0f : inexact-ok += clog tonearest flt-32 0x6.02fd5p-4f 0xe.d3e21p-4f : 0x6.ef3bdp-28f 0x1.2f8446p+0f : inexact-ok += clog towardzero flt-32 0x6.02fd5p-4f 0xe.d3e21p-4f : 0x6.ef3bc8p-28f 0x1.2f8446p+0f : inexact-ok += clog upward flt-32 0x6.02fd5p-4f 0xe.d3e21p-4f : 0x6.ef3bdp-28f 0x1.2f8448p+0f : inexact-ok += clog downward dbl-64 0x6.02fd5p-4 0xe.d3e21p-4 : 0x6.ef3bccfe9a19cp-28 0x1.2f8446b2a26f8p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5p-4 0xe.d3e21p-4 : 0x6.ef3bccfe9a1ap-28 0x1.2f8446b2a26f9p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5p-4 0xe.d3e21p-4 : 0x6.ef3bccfe9a19cp-28 0x1.2f8446b2a26f8p+0 : inexact-ok += clog upward dbl-64 0x6.02fd5p-4 0xe.d3e21p-4 : 0x6.ef3bccfe9a1ap-28 0x1.2f8446b2a26f9p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7p-28L 0x1.2f8446b2a26f8e5ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f708p-28L 0x1.2f8446b2a26f8e5cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7p-28L 0x1.2f8446b2a26f8e5ap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f708p-28L 0x1.2f8446b2a26f8e5cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7p-28L 0x1.2f8446b2a26f8e5ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f708p-28L 0x1.2f8446b2a26f8e5cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7p-28L 0x1.2f8446b2a26f8e5ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f708p-28L 0x1.2f8446b2a26f8e5cp+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7053601ce4d2b4cp-28L 0x1.2f8446b2a26f8e5b88af38f0349ap+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7053601ce4d2b5p-28L 0x1.2f8446b2a26f8e5b88af38f0349ap+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7053601ce4d2b4cp-28L 0x1.2f8446b2a26f8e5b88af38f0349ap+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7053601ce4d2b5p-28L 0x1.2f8446b2a26f8e5b88af38f0349bp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7053601ce4d2ap-28L 0x1.2f8446b2a26f8e5b88af38f0348p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7053601ce4d2cp-28L 0x1.2f8446b2a26f8e5b88af38f0348p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7053601ce4d2ap-28L 0x1.2f8446b2a26f8e5b88af38f0348p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e21p-4L : 0x6.ef3bccfe9a19f7053601ce4d2cp-28L 0x1.2f8446b2a26f8e5b88af38f035p+0L : inexact-ok += clog downward flt-32 0x6.02fd5p-4f 0xe.d3e2p-4f : -0x7.e4a64p-28f 0x1.2f8446p+0f : inexact-ok += clog tonearest flt-32 0x6.02fd5p-4f 0xe.d3e2p-4f : -0x7.e4a638p-28f 0x1.2f8446p+0f : inexact-ok += clog towardzero flt-32 0x6.02fd5p-4f 0xe.d3e2p-4f : -0x7.e4a638p-28f 0x1.2f8446p+0f : inexact-ok += clog upward flt-32 0x6.02fd5p-4f 0xe.d3e2p-4f : -0x7.e4a638p-28f 0x1.2f8448p+0f : inexact-ok += clog downward dbl-64 0x6.02fd5p-4 0xe.d3e2p-4 : -0x7.e4a63be4d4fbcp-28 0x1.2f844652729a8p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5p-4 0xe.d3e2p-4 : -0x7.e4a63be4d4fb8p-28 0x1.2f844652729a9p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5p-4 0xe.d3e2p-4 : -0x7.e4a63be4d4fb8p-28 0x1.2f844652729a8p+0 : inexact-ok += clog upward dbl-64 0x6.02fd5p-4 0xe.d3e2p-4 : -0x7.e4a63be4d4fb8p-28 0x1.2f844652729a9p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a8p-28L 0x1.2f844652729a8898p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78p-28L 0x1.2f844652729a8898p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78p-28L 0x1.2f844652729a8898p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78p-28L 0x1.2f844652729a889ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a8p-28L 0x1.2f844652729a8898p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78p-28L 0x1.2f844652729a8898p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78p-28L 0x1.2f844652729a8898p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78p-28L 0x1.2f844652729a889ap+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78bff56ffe8e88p-28L 0x1.2f844652729a88982c67a554b807p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78bff56ffe8e84p-28L 0x1.2f844652729a88982c67a554b808p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78bff56ffe8e84p-28L 0x1.2f844652729a88982c67a554b807p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78bff56ffe8e84p-28L 0x1.2f844652729a88982c67a554b808p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78bff56ffe9p-28L 0x1.2f844652729a88982c67a554b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78bff56ffe8ep-28L 0x1.2f844652729a88982c67a554b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78bff56ffe8ep-28L 0x1.2f844652729a88982c67a554b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2p-4L : -0x7.e4a63be4d4fb8a78bff56ffe8ep-28L 0x1.2f844652729a88982c67a554b88p+0L : inexact-ok += clog downward dbl-64 0x6.02fd5p-4 0xe.d3e2086dcca88p-4 : -0x1.4f4187ed84d31p-32 0x1.2f8446851e995p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5p-4 0xe.d3e2086dcca88p-4 : -0x1.4f4187ed84d3p-32 0x1.2f8446851e995p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5p-4 0xe.d3e2086dcca88p-4 : -0x1.4f4187ed84d3p-32 0x1.2f8446851e995p+0 : inexact-ok += clog upward dbl-64 0x6.02fd5p-4 0xe.d3e2086dcca88p-4 : -0x1.4f4187ed84d3p-32 0x1.2f8446851e996p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30588p-32L 0x1.2f8446851e9953bcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586p-32L 0x1.2f8446851e9953bep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586p-32L 0x1.2f8446851e9953bcp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586p-32L 0x1.2f8446851e9953bep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30588p-32L 0x1.2f8446851e9953bcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586p-32L 0x1.2f8446851e9953bep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586p-32L 0x1.2f8446851e9953bcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586p-32L 0x1.2f8446851e9953bep+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586fcf8e00dde35p-32L 0x1.2f8446851e9953bd64727f6c3e91p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586fcf8e00dde34p-32L 0x1.2f8446851e9953bd64727f6c3e91p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586fcf8e00dde34p-32L 0x1.2f8446851e9953bd64727f6c3e91p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586fcf8e00dde34p-32L 0x1.2f8446851e9953bd64727f6c3e92p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586fcf8e00dde8p-32L 0x1.2f8446851e9953bd64727f6c3e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586fcf8e00ddep-32L 0x1.2f8446851e9953bd64727f6c3e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586fcf8e00ddep-32L 0x1.2f8446851e9953bd64727f6c3e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca88p-4L : -0x1.4f4187ed84d30586fcf8e00ddep-32L 0x1.2f8446851e9953bd64727f6c3fp+0L : inexact-ok += clog downward dbl-64 0x6.02fd5p-4 0xe.d3e2086dcca8p-4 : -0x1.4f418f5775d75p-32 0x1.2f8446851e995p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5p-4 0xe.d3e2086dcca8p-4 : -0x1.4f418f5775d75p-32 0x1.2f8446851e995p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5p-4 0xe.d3e2086dcca8p-4 : -0x1.4f418f5775d74p-32 0x1.2f8446851e995p+0 : inexact-ok += clog upward dbl-64 0x6.02fd5p-4 0xe.d3e2086dcca8p-4 : -0x1.4f418f5775d74p-32 0x1.2f8446851e996p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fdap-32L 0x1.2f8446851e9950bap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd8p-32L 0x1.2f8446851e9950bcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd8p-32L 0x1.2f8446851e9950bap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd8p-32L 0x1.2f8446851e9950bcp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fdap-32L 0x1.2f8446851e9950bap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd8p-32L 0x1.2f8446851e9950bcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd8p-32L 0x1.2f8446851e9950bap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd8p-32L 0x1.2f8446851e9950bcp+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd861c4da60a414p-32L 0x1.2f8446851e9950bbe5ca778ccb0bp+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd861c4da60a413p-32L 0x1.2f8446851e9950bbe5ca778ccb0cp+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd861c4da60a413p-32L 0x1.2f8446851e9950bbe5ca778ccb0bp+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd861c4da60a413p-32L 0x1.2f8446851e9950bbe5ca778ccb0cp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd861c4da60a48p-32L 0x1.2f8446851e9950bbe5ca778ccbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd861c4da60a4p-32L 0x1.2f8446851e9950bbe5ca778ccbp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd861c4da60a4p-32L 0x1.2f8446851e9950bbe5ca778ccbp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca8p-4L : -0x1.4f418f5775d74fd861c4da60a4p-32L 0x1.2f8446851e9950bbe5ca778ccb8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2cp-32L 0x1.2f8446851e9951p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2cp-32L 0x1.2f8446851e995102p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2ap-32L 0x1.2f8446851e9951p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2ap-32L 0x1.2f8446851e995102p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2cp-32L 0x1.2f8446851e9951p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2cp-32L 0x1.2f8446851e995102p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2ap-32L 0x1.2f8446851e9951p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2ap-32L 0x1.2f8446851e995102p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2b11b4a6262148p-32L 0x1.2f8446851e995101082b9041de6ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2b11b4a6262148p-32L 0x1.2f8446851e995101082b9041de6fp+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2b11b4a6262147p-32L 0x1.2f8446851e995101082b9041de6ep+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2b11b4a6262147p-32L 0x1.2f8446851e995101082b9041de6fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2b11b4a626218p-32L 0x1.2f8446851e995101082b9041dep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2b11b4a626218p-32L 0x1.2f8446851e995101082b9041de8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2b11b4a62621p-32L 0x1.2f8446851e995101082b9041dep+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.4f418eacf12fed2b11b4a62621p-32L 0x1.2f8446851e995101082b9041de8p+0L : inexact-ok += clog downward dbl-64 0x6.02fd5037c4794p-4 0xe.d3e21p-4 : 0x7.042fe5dd71cfcp-28 0x1.2f8446af6788cp+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5037c4794p-4 0xe.d3e21p-4 : 0x7.042fe5dd71cfcp-28 0x1.2f8446af6788cp+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5037c4794p-4 0xe.d3e21p-4 : 0x7.042fe5dd71cfcp-28 0x1.2f8446af6788cp+0 : inexact-ok += clog upward dbl-64 0x6.02fd5037c4794p-4 0xe.d3e21p-4 : 0x7.042fe5dd71dp-28 0x1.2f8446af6788dp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccb8p-28L 0x1.2f8446af6788c0ccp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfcccp-28L 0x1.2f8446af6788c0cep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccb8p-28L 0x1.2f8446af6788c0ccp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfcccp-28L 0x1.2f8446af6788c0cep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccb8p-28L 0x1.2f8446af6788c0ccp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfcccp-28L 0x1.2f8446af6788c0cep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccb8p-28L 0x1.2f8446af6788c0ccp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfcccp-28L 0x1.2f8446af6788c0cep+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccbf7ad714d6ee1cp-28L 0x1.2f8446af6788c0cd7672cbbe3faap+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccbf7ad714d6ee2p-28L 0x1.2f8446af6788c0cd7672cbbe3faap+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccbf7ad714d6ee1cp-28L 0x1.2f8446af6788c0cd7672cbbe3faap+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccbf7ad714d6ee2p-28L 0x1.2f8446af6788c0cd7672cbbe3fabp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccbf7ad714d6eep-28L 0x1.2f8446af6788c0cd7672cbbe3f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccbf7ad714d6eep-28L 0x1.2f8446af6788c0cd7672cbbe3f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccbf7ad714d6eep-28L 0x1.2f8446af6788c0cd7672cbbe3f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e21p-4L : 0x7.042fe5dd71cfccbf7ad714d6fp-28L 0x1.2f8446af6788c0cd7672cbbe4p+0L : inexact-ok += clog downward dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2p-4 : -0x7.cfb222df2724p-28 0x1.2f84464f37b3bp+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2p-4 : -0x7.cfb222df2724p-28 0x1.2f84464f37b3cp+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2p-4 : -0x7.cfb222df2723cp-28 0x1.2f84464f37b3bp+0 : inexact-ok += clog upward dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2p-4 : -0x7.cfb222df2723cp-28 0x1.2f84464f37b3cp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f4p-28L 0x1.2f84464f37b3b888p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f4p-28L 0x1.2f84464f37b3b88ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3f8p-28L 0x1.2f84464f37b3b888p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3f8p-28L 0x1.2f84464f37b3b88ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f4p-28L 0x1.2f84464f37b3b888p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f4p-28L 0x1.2f84464f37b3b88ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3f8p-28L 0x1.2f84464f37b3b888p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3f8p-28L 0x1.2f84464f37b3b88ap+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3fe54541efeeccp-28L 0x1.2f84464f37b3b889c10a6a64b454p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3fe54541efeecbcp-28L 0x1.2f84464f37b3b889c10a6a64b455p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3fe54541efeecbcp-28L 0x1.2f84464f37b3b889c10a6a64b454p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3fe54541efeecbcp-28L 0x1.2f84464f37b3b889c10a6a64b455p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3fe54541efeeep-28L 0x1.2f84464f37b3b889c10a6a64b4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3fe54541efeecp-28L 0x1.2f84464f37b3b889c10a6a64b48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3fe54541efeecp-28L 0x1.2f84464f37b3b889c10a6a64b4p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2p-4L : -0x7.cfb222df2723f3fe54541efeecp-28L 0x1.2f84464f37b3b889c10a6a64b48p+0L : inexact-ok += clog downward dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2086dcca88p-4 : 0x7.25ff5efeaf2a8p-56 0x1.2f844681e3b28p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2086dcca88p-4 : 0x7.25ff5efeaf2acp-56 0x1.2f844681e3b28p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2086dcca88p-4 : 0x7.25ff5efeaf2a8p-56 0x1.2f844681e3b28p+0 : inexact-ok += clog upward dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2086dcca88p-4 : 0x7.25ff5efeaf2acp-56 0x1.2f844681e3b29p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4ep-56L 0x1.2f844681e3b285p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e8p-56L 0x1.2f844681e3b285p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4ep-56L 0x1.2f844681e3b285p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e8p-56L 0x1.2f844681e3b28502p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4ep-56L 0x1.2f844681e3b285p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e8p-56L 0x1.2f844681e3b285p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4ep-56L 0x1.2f844681e3b285p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e8p-56L 0x1.2f844681e3b28502p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e664fdde6a65dp-56L 0x1.2f844681e3b285005003fc9ccb85p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e664fdde6a65d4p-56L 0x1.2f844681e3b285005003fc9ccb86p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e664fdde6a65dp-56L 0x1.2f844681e3b285005003fc9ccb85p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e664fdde6a65d4p-56L 0x1.2f844681e3b285005003fc9ccb86p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e664fdde6a64p-56L 0x1.2f844681e3b285005003fc9ccb8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e664fdde6a66p-56L 0x1.2f844681e3b285005003fc9ccb8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e664fdde6a64p-56L 0x1.2f844681e3b285005003fc9ccb8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca88p-4L : 0x7.25ff5efeaf2ab4e664fdde6a66p-56L 0x1.2f844681e3b285005003fc9cccp+0L : inexact-ok += clog downward dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2086dcca8p-4 : -0x4.3f1a53837293cp-60 0x1.2f844681e3b28p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2086dcca8p-4 : -0x4.3f1a538372938p-60 0x1.2f844681e3b28p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2086dcca8p-4 : -0x4.3f1a538372938p-60 0x1.2f844681e3b28p+0 : inexact-ok += clog upward dbl-64 0x6.02fd5037c4794p-4 0xe.d3e2086dcca8p-4 : -0x4.3f1a538372938p-60 0x1.2f844681e3b29p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a538372938128p-60L 0x1.2f844681e3b281fep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812p-60L 0x1.2f844681e3b281fep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812p-60L 0x1.2f844681e3b281fep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812p-60L 0x1.2f844681e3b282p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a538372938128p-60L 0x1.2f844681e3b281fep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812p-60L 0x1.2f844681e3b281fep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812p-60L 0x1.2f844681e3b281fep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812p-60L 0x1.2f844681e3b282p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812086093eb58f28p-60L 0x1.2f844681e3b281fed15be0ba8efap+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812086093eb58f24p-60L 0x1.2f844681e3b281fed15be0ba8efbp+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812086093eb58f24p-60L 0x1.2f844681e3b281fed15be0ba8efap+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812086093eb58f24p-60L 0x1.2f844681e3b281fed15be0ba8efbp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812086093eb59p-60L 0x1.2f844681e3b281fed15be0ba8e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812086093eb59p-60L 0x1.2f844681e3b281fed15be0ba8fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812086093eb58ep-60L 0x1.2f844681e3b281fed15be0ba8e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca8p-4L : -0x4.3f1a53837293812086093eb58ep-60L 0x1.2f844681e3b281fed15be0ba8fp+0L : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b7885419p-60L 0x1.2f844681e3b28242p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b7885419p-60L 0x1.2f844681e3b28244p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b7885419p-60L 0x1.2f844681e3b28242p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b78854198p-60L 0x1.2f844681e3b28244p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b7885419p-60L 0x1.2f844681e3b28242p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b7885419p-60L 0x1.2f844681e3b28244p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b7885419p-60L 0x1.2f844681e3b28242p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b78854198p-60L 0x1.2f844681e3b28244p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b78854190685dc12f7edp-60L 0x1.2f844681e3b28243f3bcfb3be26cp+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b78854190685dc12f7edp-60L 0x1.2f844681e3b28243f3bcfb3be26dp+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b78854190685dc12f7edp-60L 0x1.2f844681e3b28243f3bcfb3be26cp+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b78854190685dc12f7ed4p-60L 0x1.2f844681e3b28243f3bcfb3be26dp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b78854190685dc12f7ep-60L 0x1.2f844681e3b28243f3bcfb3be2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b78854190685dc12f7ep-60L 0x1.2f844681e3b28243f3bcfb3be28p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b78854190685dc12f7ep-60L 0x1.2f844681e3b28243f3bcfb3be2p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c4794p-4L 0xe.d3e2086dcca80b8p-4L : 0x6.6930228b78854190685dc12f8p-60L 0x1.2f844681e3b28243f3bcfb3be28p+0L : inexact-ok += clog downward dbl-64 0x6.02fd5037c479p-4 0xe.d3e21p-4 : 0x7.042fe5c565da8p-28 0x1.2f8446af6788cp+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5037c479p-4 0xe.d3e21p-4 : 0x7.042fe5c565dacp-28 0x1.2f8446af6788cp+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5037c479p-4 0xe.d3e21p-4 : 0x7.042fe5c565da8p-28 0x1.2f8446af6788cp+0 : inexact-ok += clog upward dbl-64 0x6.02fd5037c479p-4 0xe.d3e21p-4 : 0x7.042fe5c565dacp-28 0x1.2f8446af6788dp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0fp-28L 0x1.2f8446af6788c482p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f8p-28L 0x1.2f8446af6788c482p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0fp-28L 0x1.2f8446af6788c482p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f8p-28L 0x1.2f8446af6788c484p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0fp-28L 0x1.2f8446af6788c482p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f8p-28L 0x1.2f8446af6788c482p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0fp-28L 0x1.2f8446af6788c482p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f8p-28L 0x1.2f8446af6788c484p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f77575c581c608p-28L 0x1.2f8446af6788c4826ef38b741fa3p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f77575c581c60cp-28L 0x1.2f8446af6788c4826ef38b741fa4p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f77575c581c608p-28L 0x1.2f8446af6788c4826ef38b741fa3p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f77575c581c60cp-28L 0x1.2f8446af6788c4826ef38b741fa4p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f77575c581c6p-28L 0x1.2f8446af6788c4826ef38b741f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f77575c581c6p-28L 0x1.2f8446af6788c4826ef38b741f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f77575c581c6p-28L 0x1.2f8446af6788c4826ef38b741f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e21p-4L : 0x7.042fe5c565daa0f77575c581c8p-28L 0x1.2f8446af6788c4826ef38b742p+0L : inexact-ok += clog downward dbl-64 0x6.02fd5037c479p-4 0xe.d3e2p-4 : -0x7.cfb222f733198p-28 0x1.2f84464f37b3bp+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5037c479p-4 0xe.d3e2p-4 : -0x7.cfb222f733194p-28 0x1.2f84464f37b3cp+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5037c479p-4 0xe.d3e2p-4 : -0x7.cfb222f733194p-28 0x1.2f84464f37b3bp+0 : inexact-ok += clog upward dbl-64 0x6.02fd5037c479p-4 0xe.d3e2p-4 : -0x7.cfb222f733194p-28 0x1.2f84464f37b3cp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c6p-28L 0x1.2f84464f37b3bc3ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c58p-28L 0x1.2f84464f37b3bc3ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c58p-28L 0x1.2f84464f37b3bc3ep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c58p-28L 0x1.2f84464f37b3bc4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c6p-28L 0x1.2f84464f37b3bc3ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c58p-28L 0x1.2f84464f37b3bc3ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c58p-28L 0x1.2f84464f37b3bc3ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c58p-28L 0x1.2f84464f37b3bc4p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c5829b9cdd64f48p-28L 0x1.2f84464f37b3bc3eb98e08fb4edp+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c5829b9cdd64f44p-28L 0x1.2f84464f37b3bc3eb98e08fb4ed1p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c5829b9cdd64f44p-28L 0x1.2f84464f37b3bc3eb98e08fb4edp+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c5829b9cdd64f44p-28L 0x1.2f84464f37b3bc3eb98e08fb4ed1p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c5829b9cdd65p-28L 0x1.2f84464f37b3bc3eb98e08fb4e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c5829b9cdd65p-28L 0x1.2f84464f37b3bc3eb98e08fb4fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c5829b9cdd64ep-28L 0x1.2f84464f37b3bc3eb98e08fb4e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2p-4L : -0x7.cfb222f733194c5829b9cdd64ep-28L 0x1.2f84464f37b3bc3eb98e08fb4fp+0L : inexact-ok += clog downward dbl-64 0x6.02fd5037c479p-4 0xe.d3e2086dcca88p-4 : 0x5.a5400af0be0c8p-56 0x1.2f844681e3b28p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5037c479p-4 0xe.d3e2086dcca88p-4 : 0x5.a5400af0be0c8p-56 0x1.2f844681e3b29p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5037c479p-4 0xe.d3e2086dcca88p-4 : 0x5.a5400af0be0c8p-56 0x1.2f844681e3b28p+0 : inexact-ok += clog upward dbl-64 0x6.02fd5037c479p-4 0xe.d3e2086dcca88p-4 : 0x5.a5400af0be0ccp-56 0x1.2f844681e3b29p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c802p-56L 0x1.2f844681e3b288b4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c802p-56L 0x1.2f844681e3b288b6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c802p-56L 0x1.2f844681e3b288b4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c8028p-56L 0x1.2f844681e3b288b6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c802p-56L 0x1.2f844681e3b288b4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c802p-56L 0x1.2f844681e3b288b6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c802p-56L 0x1.2f844681e3b288b4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c8028p-56L 0x1.2f844681e3b288b6p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c8020d3f478c5afbp-56L 0x1.2f844681e3b288b54886180ff576p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c8020d3f478c5afb4p-56L 0x1.2f844681e3b288b54886180ff576p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c8020d3f478c5afbp-56L 0x1.2f844681e3b288b54886180ff576p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c8020d3f478c5afb4p-56L 0x1.2f844681e3b288b54886180ff577p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c8020d3f478c5aep-56L 0x1.2f844681e3b288b54886180ff5p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c8020d3f478c5bp-56L 0x1.2f844681e3b288b54886180ff58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c8020d3f478c5aep-56L 0x1.2f844681e3b288b54886180ff5p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca88p-4L : 0x5.a5400af0be0c8020d3f478c5bp-56L 0x1.2f844681e3b288b54886180ff58p+0L : inexact-ok += clog downward dbl-64 0x6.02fd5037c479p-4 0xe.d3e2086dcca8p-4 : -0x1.c4b0f94628479p-56 0x1.2f844681e3b28p+0 : inexact-ok += clog tonearest dbl-64 0x6.02fd5037c479p-4 0xe.d3e2086dcca8p-4 : -0x1.c4b0f94628478p-56 0x1.2f844681e3b28p+0 : inexact-ok += clog towardzero dbl-64 0x6.02fd5037c479p-4 0xe.d3e2086dcca8p-4 : -0x1.c4b0f94628478p-56 0x1.2f844681e3b28p+0 : inexact-ok += clog upward dbl-64 0x6.02fd5037c479p-4 0xe.d3e2086dcca8p-4 : -0x1.c4b0f94628478p-56 0x1.2f844681e3b29p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f94628478322p-56L 0x1.2f844681e3b285b2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f9462847832p-56L 0x1.2f844681e3b285b4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f9462847832p-56L 0x1.2f844681e3b285b2p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f9462847832p-56L 0x1.2f844681e3b285b4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f94628478322p-56L 0x1.2f844681e3b285b2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f9462847832p-56L 0x1.2f844681e3b285b4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f9462847832p-56L 0x1.2f844681e3b285b2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f9462847832p-56L 0x1.2f844681e3b285b4p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f94628478320816a97716d74p-56L 0x1.2f844681e3b285b3c9ddfc2db902p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f94628478320816a97716d73p-56L 0x1.2f844681e3b285b3c9ddfc2db902p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f94628478320816a97716d73p-56L 0x1.2f844681e3b285b3c9ddfc2db902p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f94628478320816a97716d73p-56L 0x1.2f844681e3b285b3c9ddfc2db903p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f94628478320816a97716d8p-56L 0x1.2f844681e3b285b3c9ddfc2db9p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f94628478320816a97716d8p-56L 0x1.2f844681e3b285b3c9ddfc2db9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f94628478320816a97716dp-56L 0x1.2f844681e3b285b3c9ddfc2db9p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca8p-4L : -0x1.c4b0f94628478320816a97716dp-56L 0x1.2f844681e3b285b3c9ddfc2db98p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f6p-56L 0x1.2f844681e3b285f8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4p-56L 0x1.2f844681e3b285f8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4p-56L 0x1.2f844681e3b285f8p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4p-56L 0x1.2f844681e3b285fap+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f6p-56L 0x1.2f844681e3b285f8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4p-56L 0x1.2f844681e3b285f8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4p-56L 0x1.2f844681e3b285f8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4p-56L 0x1.2f844681e3b285fap+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4e5ac1943dd06p-56L 0x1.2f844681e3b285f8ec3f16af0c72p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4e5ac1943dd06p-56L 0x1.2f844681e3b285f8ec3f16af0c72p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4e5ac1943dd05p-56L 0x1.2f844681e3b285f8ec3f16af0c72p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4e5ac1943dd05p-56L 0x1.2f844681e3b285f8ec3f16af0c73p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4e5ac1943dd8p-56L 0x1.2f844681e3b285f8ec3f16af0cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4e5ac1943ddp-56L 0x1.2f844681e3b285f8ec3f16af0c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4e5ac1943ddp-56L 0x1.2f844681e3b285f8ec3f16af0cp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c479p-4L 0xe.d3e2086dcca80b8p-4L : -0x1.1a2c51e53995f4f4e5ac1943ddp-56L 0x1.2f844681e3b285f8ec3f16af0c8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafdp-28L 0x1.2f8446af6788c1cap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafdp-28L 0x1.2f8446af6788c1cap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafdp-28L 0x1.2f8446af6788c1cap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafd8p-28L 0x1.2f8446af6788c1ccp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafdp-28L 0x1.2f8446af6788c1cap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafdp-28L 0x1.2f8446af6788c1cap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafdp-28L 0x1.2f8446af6788c1cap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafd8p-28L 0x1.2f8446af6788c1ccp+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafd36767d17a7d6p-28L 0x1.2f8446af6788c1ca75b31eda7c9fp+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafd36767d17a7d6p-28L 0x1.2f8446af6788c1ca75b31eda7cap+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafd36767d17a7d6p-28L 0x1.2f8446af6788c1ca75b31eda7c9fp+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafd36767d17a7d64p-28L 0x1.2f8446af6788c1ca75b31eda7cap+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafd36767d17a7cp-28L 0x1.2f8446af6788c1ca75b31eda7c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafd36767d17a7ep-28L 0x1.2f8446af6788c1ca75b31eda7c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafd36767d17a7cp-28L 0x1.2f8446af6788c1ca75b31eda7c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e21p-4L : 0x7.042fe5d7089fafd36767d17a7ep-28L 0x1.2f8446af6788c1ca75b31eda7dp+0L : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541cdp-28L 0x1.2f84464f37b3b986p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541cdp-28L 0x1.2f84464f37b3b986p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541cc8p-28L 0x1.2f84464f37b3b986p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541cc8p-28L 0x1.2f84464f37b3b988p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541cdp-28L 0x1.2f84464f37b3b986p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541cdp-28L 0x1.2f84464f37b3b986p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541cc8p-28L 0x1.2f84464f37b3b986p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541cc8p-28L 0x1.2f84464f37b3b988p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541ccc47788cd1d5a8p-28L 0x1.2f84464f37b3b986c04b816c5b03p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541ccc47788cd1d5a4p-28L 0x1.2f84464f37b3b986c04b816c5b03p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541ccc47788cd1d5a4p-28L 0x1.2f84464f37b3b986c04b816c5b03p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541ccc47788cd1d5a4p-28L 0x1.2f84464f37b3b986c04b816c5b04p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541ccc47788cd1d6p-28L 0x1.2f84464f37b3b986c04b816c5bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541ccc47788cd1d6p-28L 0x1.2f84464f37b3b986c04b816c5bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541ccc47788cd1d4p-28L 0x1.2f84464f37b3b986c04b816c5bp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2p-4L : -0x7.cfb222e590541ccc47788cd1d4p-28L 0x1.2f84464f37b3b986c04b816c5b8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a2663p-56L 0x1.2f844681e3b285fcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26638p-56L 0x1.2f844681e3b285fep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a2663p-56L 0x1.2f844681e3b285fcp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26638p-56L 0x1.2f844681e3b285fep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a2663p-56L 0x1.2f844681e3b285fcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26638p-56L 0x1.2f844681e3b285fep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a2663p-56L 0x1.2f844681e3b285fcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26638p-56L 0x1.2f844681e3b285fep+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26635594592a6aaa4p-56L 0x1.2f844681e3b285fd4f44ac6e3f73p+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26635594592a6aaa8p-56L 0x1.2f844681e3b285fd4f44ac6e3f73p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26635594592a6aaa4p-56L 0x1.2f844681e3b285fd4f44ac6e3f73p+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26635594592a6aaa8p-56L 0x1.2f844681e3b285fd4f44ac6e3f74p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26635594592a6aap-56L 0x1.2f844681e3b285fd4f44ac6e3fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26635594592a6aap-56L 0x1.2f844681e3b285fd4f44ac6e3f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26635594592a6aap-56L 0x1.2f844681e3b285fd4f44ac6e3fp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca88p-4L : 0x6.bf6c5cd5f7a26635594592a6acp-56L 0x1.2f844681e3b285fd4f44ac6e3f8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb5p-60L 0x1.2f844681e3b282fap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb4p-60L 0x1.2f844681e3b282fcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb4p-60L 0x1.2f844681e3b282fap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb4p-60L 0x1.2f844681e3b282fcp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb5p-60L 0x1.2f844681e3b282fap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb4p-60L 0x1.2f844681e3b282fcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb4p-60L 0x1.2f844681e3b282fap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb4p-60L 0x1.2f844681e3b282fcp+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb403f309c66992p-60L 0x1.2f844681e3b282fbd09c908c02eep+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb403f309c66992p-60L 0x1.2f844681e3b282fbd09c908c02eep+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb403f309c669918p-60L 0x1.2f844681e3b282fbd09c908c02eep+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb403f309c669918p-60L 0x1.2f844681e3b282fbd09c908c02efp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb403f309c669cp-60L 0x1.2f844681e3b282fbd09c908c028p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb403f309c6698p-60L 0x1.2f844681e3b282fbd09c908c03p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb403f309c6698p-60L 0x1.2f844681e3b282fbd09c908c028p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca8p-4L : -0xa.a84a760eeb18cb403f309c6698p-60L 0x1.2f844681e3b282fbd09c908c03p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f8p-124L 0x1.2f844681e3b2834p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f8p-124L 0x1.2f844681e3b2834p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f7fffffffffffff8p-124L 0x1.2f844681e3b2834p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f7fffffffffffff8p-124L 0x1.2f844681e3b28342p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f8p-124L 0x1.2f844681e3b2834p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f8p-124L 0x1.2f844681e3b2834p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f7fffffffffffff8p-124L 0x1.2f844681e3b2834p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f7fffffffffffff8p-124L 0x1.2f844681e3b28342p+0L : inexact-ok += clog downward ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f8p-124L 0x1.2f844681e3b28340f2fdab0d565fp+0L : inexact-ok += clog tonearest ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f8p-124L 0x1.2f844681e3b28340f2fdab0d566p+0L : inexact-ok += clog towardzero ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f7fffffffffffffffffffffffffcp-124L 0x1.2f844681e3b28340f2fdab0d565fp+0L : inexact-ok += clog upward ldbl-128 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f7fffffffffffffffffffffffffcp-124L 0x1.2f844681e3b28340f2fdab0d566p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f8p-124L 0x1.2f844681e3b28340f2fdab0d56p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f8p-124L 0x1.2f844681e3b28340f2fdab0d568p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f7fffffffffffffffffffffffep-124L 0x1.2f844681e3b28340f2fdab0d56p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.02fd5037c4792efp-4L 0xe.d3e2086dcca80b8p-4L : -0x4.f7fffffffffffffffffffffffep-124L 0x1.2f844681e3b28340f2fdab0d568p+0L : inexact-ok +clog 0x6b10b4f3520217b6p-64 0xe8893cbb449253a1p-64 += clog downward flt-32 0x6.b10b5p-4f 0xe.8893dp-4f : 0x4.3bc408p-28f 0x1.23a9a6p+0f : inexact-ok += clog tonearest flt-32 0x6.b10b5p-4f 0xe.8893dp-4f : 0x4.3bc41p-28f 0x1.23a9a8p+0f : inexact-ok += clog towardzero flt-32 0x6.b10b5p-4f 0xe.8893dp-4f : 0x4.3bc408p-28f 0x1.23a9a6p+0f : inexact-ok += clog upward flt-32 0x6.b10b5p-4f 0xe.8893dp-4f : 0x4.3bc41p-28f 0x1.23a9a8p+0f : inexact-ok += clog downward dbl-64 0x6.b10b5p-4 0xe.8893dp-4 : 0x4.3bc40ee13eb9p-28 0x1.23a9a7477924p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b5p-4 0xe.8893dp-4 : 0x4.3bc40ee13eb9p-28 0x1.23a9a7477924p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b5p-4 0xe.8893dp-4 : 0x4.3bc40ee13eb9p-28 0x1.23a9a7477924p+0 : inexact-ok += clog upward dbl-64 0x6.b10b5p-4 0xe.8893dp-4 : 0x4.3bc40ee13eb94p-28 0x1.23a9a74779241p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90cap-28L 0x1.23a9a747792404d2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90cap-28L 0x1.23a9a747792404d2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90cap-28L 0x1.23a9a747792404d2p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90ca8p-28L 0x1.23a9a747792404d4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90cap-28L 0x1.23a9a747792404d2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90cap-28L 0x1.23a9a747792404d2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90cap-28L 0x1.23a9a747792404d2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90ca8p-28L 0x1.23a9a747792404d4p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90ca1e0675e6f2e94p-28L 0x1.23a9a747792404d2e87a2cf82415p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90ca1e0675e6f2e94p-28L 0x1.23a9a747792404d2e87a2cf82416p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90ca1e0675e6f2e94p-28L 0x1.23a9a747792404d2e87a2cf82415p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90ca1e0675e6f2e98p-28L 0x1.23a9a747792404d2e87a2cf82416p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90ca1e0675e6f2ep-28L 0x1.23a9a747792404d2e87a2cf824p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90ca1e0675e6f2ep-28L 0x1.23a9a747792404d2e87a2cf824p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90ca1e0675e6f2ep-28L 0x1.23a9a747792404d2e87a2cf824p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b5p-4L 0xe.8893dp-4L : 0x4.3bc40ee13eb90ca1e0675e6f3p-28L 0x1.23a9a747792404d2e87a2cf8248p+0L : inexact-ok += clog downward flt-32 0x6.b10b5p-4f 0xe.8893cp-4f : -0xa.4ccfcp-28f 0x1.23a9a6p+0f : inexact-ok += clog tonearest flt-32 0x6.b10b5p-4f 0xe.8893cp-4f : -0xa.4ccfcp-28f 0x1.23a9a6p+0f : inexact-ok += clog towardzero flt-32 0x6.b10b5p-4f 0xe.8893cp-4f : -0xa.4ccfbp-28f 0x1.23a9a6p+0f : inexact-ok += clog upward flt-32 0x6.b10b5p-4f 0xe.8893cp-4f : -0xa.4ccfbp-28f 0x1.23a9a8p+0f : inexact-ok += clog downward dbl-64 0x6.b10b5p-4 0xe.8893cp-4 : -0xa.4ccfbea1746cp-28 0x1.23a9a6dc686edp+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b5p-4 0xe.8893cp-4 : -0xa.4ccfbea1746b8p-28 0x1.23a9a6dc686eep+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b5p-4 0xe.8893cp-4 : -0xa.4ccfbea1746b8p-28 0x1.23a9a6dc686edp+0 : inexact-ok += clog upward dbl-64 0x6.b10b5p-4 0xe.8893cp-4 : -0xa.4ccfbea1746b8p-28 0x1.23a9a6dc686eep+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dbp-28L 0x1.23a9a6dc686edc3ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dbp-28L 0x1.23a9a6dc686edc3ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dap-28L 0x1.23a9a6dc686edc3ap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dap-28L 0x1.23a9a6dc686edc3cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dbp-28L 0x1.23a9a6dc686edc3ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dbp-28L 0x1.23a9a6dc686edc3ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dap-28L 0x1.23a9a6dc686edc3ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dap-28L 0x1.23a9a6dc686edc3cp+0L : inexact-ok += clog downward ldbl-128 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dae4654c8664378p-28L 0x1.23a9a6dc686edc3a949b82698317p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dae4654c866437p-28L 0x1.23a9a6dc686edc3a949b82698318p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dae4654c866437p-28L 0x1.23a9a6dc686edc3a949b82698317p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dae4654c866437p-28L 0x1.23a9a6dc686edc3a949b82698318p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dae4654c86644p-28L 0x1.23a9a6dc686edc3a949b826983p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dae4654c86644p-28L 0x1.23a9a6dc686edc3a949b826983p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dae4654c8664p-28L 0x1.23a9a6dc686edc3a949b826983p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cp-4L : -0xa.4ccfbea1746b8dae4654c8664p-28L 0x1.23a9a6dc686edc3a949b8269838p+0L : inexact-ok += clog downward dbl-64 0x6.b10b5p-4 0xe.8893cbb449258p-4 : 0x5.4d8cfa85e5b54p-32 0x1.23a9a72aba50ep+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b5p-4 0xe.8893cbb449258p-4 : 0x5.4d8cfa85e5b58p-32 0x1.23a9a72aba50fp+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b5p-4 0xe.8893cbb449258p-4 : 0x5.4d8cfa85e5b54p-32 0x1.23a9a72aba50ep+0 : inexact-ok += clog upward dbl-64 0x6.b10b5p-4 0xe.8893cbb449258p-4 : 0x5.4d8cfa85e5b58p-32 0x1.23a9a72aba50fp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b38p-32L 0x1.23a9a72aba50e86ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b4p-32L 0x1.23a9a72aba50e87p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b38p-32L 0x1.23a9a72aba50e86ep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b4p-32L 0x1.23a9a72aba50e87p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b38p-32L 0x1.23a9a72aba50e86ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b4p-32L 0x1.23a9a72aba50e87p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b38p-32L 0x1.23a9a72aba50e86ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b4p-32L 0x1.23a9a72aba50e87p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b3e57b3afafd4c8p-32L 0x1.23a9a72aba50e86f64babaa49ee7p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b3e57b3afafd4c8p-32L 0x1.23a9a72aba50e86f64babaa49ee8p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b3e57b3afafd4c8p-32L 0x1.23a9a72aba50e86f64babaa49ee7p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b3e57b3afafd4ccp-32L 0x1.23a9a72aba50e86f64babaa49ee8p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b3e57b3afafd4p-32L 0x1.23a9a72aba50e86f64babaa49e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b3e57b3afafd4p-32L 0x1.23a9a72aba50e86f64babaa49fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b3e57b3afafd4p-32L 0x1.23a9a72aba50e86f64babaa49e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb449258p-4L : 0x5.4d8cfa85e5b56b3e57b3afafd6p-32L 0x1.23a9a72aba50e86f64babaa49fp+0L : inexact-ok += clog downward dbl-64 0x6.b10b5p-4 0xe.8893cbb44925p-4 : 0x5.4d8cf3419bcfcp-32 0x1.23a9a72aba50ep+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b5p-4 0xe.8893cbb44925p-4 : 0x5.4d8cf3419bcfcp-32 0x1.23a9a72aba50ep+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b5p-4 0xe.8893cbb44925p-4 : 0x5.4d8cf3419bcfcp-32 0x1.23a9a72aba50ep+0 : inexact-ok += clog upward dbl-64 0x6.b10b5p-4 0xe.8893cbb44925p-4 : 0x5.4d8cf3419bdp-32 0x1.23a9a72aba50fp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde28p-32L 0x1.23a9a72aba50e516p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde28p-32L 0x1.23a9a72aba50e516p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde28p-32L 0x1.23a9a72aba50e516p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde3p-32L 0x1.23a9a72aba50e518p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde28p-32L 0x1.23a9a72aba50e516p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde28p-32L 0x1.23a9a72aba50e516p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde28p-32L 0x1.23a9a72aba50e516p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde3p-32L 0x1.23a9a72aba50e518p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde2bbd35e11dbf54p-32L 0x1.23a9a72aba50e516df12de20c724p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde2bbd35e11dbf58p-32L 0x1.23a9a72aba50e516df12de20c724p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde2bbd35e11dbf54p-32L 0x1.23a9a72aba50e516df12de20c724p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde2bbd35e11dbf58p-32L 0x1.23a9a72aba50e516df12de20c725p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde2bbd35e11dbep-32L 0x1.23a9a72aba50e516df12de20c7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde2bbd35e11dcp-32L 0x1.23a9a72aba50e516df12de20c7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde2bbd35e11dbep-32L 0x1.23a9a72aba50e516df12de20c7p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb44925p-4L : 0x5.4d8cf3419bcfde2bbd35e11dcp-32L 0x1.23a9a72aba50e516df12de20c78p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec8p-32L 0x1.23a9a72aba50e69ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec8p-32L 0x1.23a9a72aba50e69cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec8p-32L 0x1.23a9a72aba50e69ap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51edp-32L 0x1.23a9a72aba50e69cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec8p-32L 0x1.23a9a72aba50e69ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec8p-32L 0x1.23a9a72aba50e69cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec8p-32L 0x1.23a9a72aba50e69ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51edp-32L 0x1.23a9a72aba50e69cp+0L : inexact-ok += clog downward ldbl-128 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec9cd8f5a8c4f6p-32L 0x1.23a9a72aba50e69b66b3a3081569p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec9cd8f5a8c4f6p-32L 0x1.23a9a72aba50e69b66b3a308156ap+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec9cd8f5a8c4f6p-32L 0x1.23a9a72aba50e69b66b3a3081569p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec9cd8f5a8c4f64p-32L 0x1.23a9a72aba50e69b66b3a308156ap+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec9cd8f5a8c4ep-32L 0x1.23a9a72aba50e69b66b3a30815p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec9cd8f5a8c5p-32L 0x1.23a9a72aba50e69b66b3a308158p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec9cd8f5a8c4ep-32L 0x1.23a9a72aba50e69b66b3a30815p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b5p-4L 0xe.8893cbb449253a1p-4L : 0x5.4d8cf68d75d51ec9cd8f5a8c5p-32L 0x1.23a9a72aba50e69b66b3a308158p+0L : inexact-ok += clog downward flt-32 0x6.b10b48p-4f 0xe.8893dp-4f : 0xe.33e69p-32f 0x1.23a9a6p+0f : inexact-ok += clog tonearest flt-32 0x6.b10b48p-4f 0xe.8893dp-4f : 0xe.33e6ap-32f 0x1.23a9a8p+0f : inexact-ok += clog towardzero flt-32 0x6.b10b48p-4f 0xe.8893dp-4f : 0xe.33e69p-32f 0x1.23a9a6p+0f : inexact-ok += clog upward flt-32 0x6.b10b48p-4f 0xe.8893dp-4f : 0xe.33e6ap-32f 0x1.23a9a8p+0f : inexact-ok += clog downward dbl-64 0x6.b10b48p-4 0xe.8893dp-4 : 0xe.33e69f3648408p-32 0x1.23a9a7bbbdc25p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b48p-4 0xe.8893dp-4 : 0xe.33e69f364841p-32 0x1.23a9a7bbbdc26p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b48p-4 0xe.8893dp-4 : 0xe.33e69f3648408p-32 0x1.23a9a7bbbdc25p+0 : inexact-ok += clog upward dbl-64 0x6.b10b48p-4 0xe.8893dp-4 : 0xe.33e69f364841p-32 0x1.23a9a7bbbdc26p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db6p-32L 0x1.23a9a7bbbdc25f9cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db7p-32L 0x1.23a9a7bbbdc25f9cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db6p-32L 0x1.23a9a7bbbdc25f9cp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db7p-32L 0x1.23a9a7bbbdc25f9ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db6p-32L 0x1.23a9a7bbbdc25f9cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db7p-32L 0x1.23a9a7bbbdc25f9cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db6p-32L 0x1.23a9a7bbbdc25f9cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db7p-32L 0x1.23a9a7bbbdc25f9ep+0L : inexact-ok += clog downward ldbl-128 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db68090ad8e897f8p-32L 0x1.23a9a7bbbdc25f9c201269381ed2p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db68090ad8e898p-32L 0x1.23a9a7bbbdc25f9c201269381ed3p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db68090ad8e897f8p-32L 0x1.23a9a7bbbdc25f9c201269381ed2p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db68090ad8e898p-32L 0x1.23a9a7bbbdc25f9c201269381ed3p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db68090ad8e894p-32L 0x1.23a9a7bbbdc25f9c201269381e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db68090ad8e898p-32L 0x1.23a9a7bbbdc25f9c201269381fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db68090ad8e894p-32L 0x1.23a9a7bbbdc25f9c201269381e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b48p-4L 0xe.8893dp-4L : 0xe.33e69f364840db68090ad8e898p-32L 0x1.23a9a7bbbdc25f9c201269381fp+0L : inexact-ok += clog downward flt-32 0x6.b10b48p-4f 0xe.8893cp-4f : -0xd.a5557p-28f 0x1.23a9a6p+0f : inexact-ok += clog tonearest flt-32 0x6.b10b48p-4f 0xe.8893cp-4f : -0xd.a5557p-28f 0x1.23a9a8p+0f : inexact-ok += clog towardzero flt-32 0x6.b10b48p-4f 0xe.8893cp-4f : -0xd.a5556p-28f 0x1.23a9a6p+0f : inexact-ok += clog upward flt-32 0x6.b10b48p-4f 0xe.8893cp-4f : -0xd.a5556p-28f 0x1.23a9a8p+0f : inexact-ok += clog downward dbl-64 0x6.b10b48p-4 0xe.8893cp-4 : -0xd.a55569a357388p-28 0x1.23a9a750ad0d8p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b48p-4 0xe.8893cp-4 : -0xd.a55569a357388p-28 0x1.23a9a750ad0d9p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b48p-4 0xe.8893cp-4 : -0xd.a55569a35738p-28 0x1.23a9a750ad0d8p+0 : inexact-ok += clog upward dbl-64 0x6.b10b48p-4 0xe.8893cp-4 : -0xd.a55569a35738p-28 0x1.23a9a750ad0d9p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738764p-28L 0x1.23a9a750ad0d8a3cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763p-28L 0x1.23a9a750ad0d8a3cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763p-28L 0x1.23a9a750ad0d8a3cp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763p-28L 0x1.23a9a750ad0d8a3ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738764p-28L 0x1.23a9a750ad0d8a3cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763p-28L 0x1.23a9a750ad0d8a3cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763p-28L 0x1.23a9a750ad0d8a3cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763p-28L 0x1.23a9a750ad0d8a3ep+0L : inexact-ok += clog downward ldbl-128 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763021689cb5967p-28L 0x1.23a9a750ad0d8a3cd41ac4dd6a1p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763021689cb5967p-28L 0x1.23a9a750ad0d8a3cd41ac4dd6a1p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763021689cb59668p-28L 0x1.23a9a750ad0d8a3cd41ac4dd6a1p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763021689cb59668p-28L 0x1.23a9a750ad0d8a3cd41ac4dd6a11p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763021689cb598p-28L 0x1.23a9a750ad0d8a3cd41ac4dd6ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763021689cb598p-28L 0x1.23a9a750ad0d8a3cd41ac4dd6ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763021689cb594p-28L 0x1.23a9a750ad0d8a3cd41ac4dd6ap+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cp-4L : -0xd.a55569a35738763021689cb594p-28L 0x1.23a9a750ad0d8a3cd41ac4dd6a8p+0L : inexact-ok += clog downward dbl-64 0x6.b10b48p-4 0xe.8893cbb449258p-4 : -0x3.03acd6e7415d6p-28 0x1.23a9a79efeef5p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b48p-4 0xe.8893cbb449258p-4 : -0x3.03acd6e7415d4p-28 0x1.23a9a79efeef6p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b48p-4 0xe.8893cbb449258p-4 : -0x3.03acd6e7415d4p-28 0x1.23a9a79efeef5p+0 : inexact-ok += clog upward dbl-64 0x6.b10b48p-4 0xe.8893cbb449258p-4 : -0x3.03acd6e7415d4p-28 0x1.23a9a79efeef6p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b14p-28L 0x1.23a9a79efeef599p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1p-28L 0x1.23a9a79efeef599p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1p-28L 0x1.23a9a79efeef599p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1p-28L 0x1.23a9a79efeef5992p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b14p-28L 0x1.23a9a79efeef599p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1p-28L 0x1.23a9a79efeef599p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1p-28L 0x1.23a9a79efeef599p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1p-28L 0x1.23a9a79efeef5992p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1131bb97df40c4p-28L 0x1.23a9a79efeef5990b0b42444ef58p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1131bb97df40c4p-28L 0x1.23a9a79efeef5990b0b42444ef58p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1131bb97df40c2p-28L 0x1.23a9a79efeef5990b0b42444ef58p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1131bb97df40c2p-28L 0x1.23a9a79efeef5990b0b42444ef59p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1131bb97df41p-28L 0x1.23a9a79efeef5990b0b42444efp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1131bb97df41p-28L 0x1.23a9a79efeef5990b0b42444ef8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1131bb97df4p-28L 0x1.23a9a79efeef5990b0b42444efp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb449258p-4L : -0x3.03acd6e7415d4b1131bb97df4p-28L 0x1.23a9a79efeef5990b0b42444ef8p+0L : inexact-ok += clog downward dbl-64 0x6.b10b48p-4 0xe.8893cbb44925p-4 : -0x3.03acd75b85fbep-28 0x1.23a9a79efeef5p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b48p-4 0xe.8893cbb44925p-4 : -0x3.03acd75b85fbep-28 0x1.23a9a79efeef5p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b48p-4 0xe.8893cbb44925p-4 : -0x3.03acd75b85fbcp-28 0x1.23a9a79efeef5p+0 : inexact-ok += clog upward dbl-64 0x6.b10b48p-4 0xe.8893cbb44925p-4 : -0x3.03acd75b85fbcp-28 0x1.23a9a79efeef6p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd484p-28L 0x1.23a9a79efeef5638p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd484p-28L 0x1.23a9a79efeef5638p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd48p-28L 0x1.23a9a79efeef5638p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd48p-28L 0x1.23a9a79efeef563ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd484p-28L 0x1.23a9a79efeef5638p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd484p-28L 0x1.23a9a79efeef5638p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd48p-28L 0x1.23a9a79efeef5638p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd48p-28L 0x1.23a9a79efeef563ap+0L : inexact-ok += clog downward ldbl-128 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd482a0063eff7844p-28L 0x1.23a9a79efeef56382b0ee189564bp+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd482a0063eff7844p-28L 0x1.23a9a79efeef56382b0ee189564cp+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd482a0063eff7842p-28L 0x1.23a9a79efeef56382b0ee189564bp+0L : inexact-ok += clog upward ldbl-128 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd482a0063eff7842p-28L 0x1.23a9a79efeef56382b0ee189564cp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd482a0063eff79p-28L 0x1.23a9a79efeef56382b0ee18956p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd482a0063eff78p-28L 0x1.23a9a79efeef56382b0ee189568p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd482a0063eff78p-28L 0x1.23a9a79efeef56382b0ee18956p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb44925p-4L : -0x3.03acd75b85fbd482a0063eff78p-28L 0x1.23a9a79efeef56382b0ee189568p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6cp-28L 0x1.23a9a79efeef57bcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6cp-28L 0x1.23a9a79efeef57bcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a68p-28L 0x1.23a9a79efeef57bcp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a68p-28L 0x1.23a9a79efeef57bep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6cp-28L 0x1.23a9a79efeef57bcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6cp-28L 0x1.23a9a79efeef57bcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a68p-28L 0x1.23a9a79efeef57bcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a68p-28L 0x1.23a9a79efeef57bep+0L : inexact-ok += clog downward ldbl-128 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6a0bde4f6e51dcp-28L 0x1.23a9a79efeef57bcb2ae786eaf1ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6a0bde4f6e51dcp-28L 0x1.23a9a79efeef57bcb2ae786eaf1ep+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6a0bde4f6e51dap-28L 0x1.23a9a79efeef57bcb2ae786eaf1ep+0L : inexact-ok += clog upward ldbl-128 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6a0bde4f6e51dap-28L 0x1.23a9a79efeef57bcb2ae786eaf1fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6a0bde4f6e52p-28L 0x1.23a9a79efeef57bcb2ae786eafp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6a0bde4f6e52p-28L 0x1.23a9a79efeef57bcb2ae786eafp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6a0bde4f6e51p-28L 0x1.23a9a79efeef57bcb2ae786eafp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b48p-4L 0xe.8893cbb449253a1p-4L : -0x3.03acd726c85b6a6a0bde4f6e51p-28L 0x1.23a9a79efeef57bcb2ae786eaf8p+0L : inexact-ok += clog downward dbl-64 0x6.b10b4f3520218p-4 0xe.8893dp-4 : 0x3.e6eb3fa3b8efp-28 0x1.23a9a752fd9e3p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b4f3520218p-4 0xe.8893dp-4 : 0x3.e6eb3fa3b8efp-28 0x1.23a9a752fd9e4p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b4f3520218p-4 0xe.8893dp-4 : 0x3.e6eb3fa3b8efp-28 0x1.23a9a752fd9e3p+0 : inexact-ok += clog upward dbl-64 0x6.b10b4f3520218p-4 0xe.8893dp-4 : 0x3.e6eb3fa3b8ef2p-28 0x1.23a9a752fd9e4p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8p-28L 0x1.23a9a752fd9e3b8ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8p-28L 0x1.23a9a752fd9e3b8ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8p-28L 0x1.23a9a752fd9e3b8ep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09bcp-28L 0x1.23a9a752fd9e3b9p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8p-28L 0x1.23a9a752fd9e3b8ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8p-28L 0x1.23a9a752fd9e3b8ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8p-28L 0x1.23a9a752fd9e3b8ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09bcp-28L 0x1.23a9a752fd9e3b9p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8cc1610936f4cp-28L 0x1.23a9a752fd9e3b8e5bf02086e1d5p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8cc1610936f4cp-28L 0x1.23a9a752fd9e3b8e5bf02086e1d6p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8cc1610936f4cp-28L 0x1.23a9a752fd9e3b8e5bf02086e1d5p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8cc1610936f4ep-28L 0x1.23a9a752fd9e3b8e5bf02086e1d6p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8cc1610936fp-28L 0x1.23a9a752fd9e3b8e5bf02086e18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8cc1610936fp-28L 0x1.23a9a752fd9e3b8e5bf02086e2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8cc1610936fp-28L 0x1.23a9a752fd9e3b8e5bf02086e18p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893dp-4L : 0x3.e6eb3fa3b8ef09b8cc1610937p-28L 0x1.23a9a752fd9e3b8e5bf02086e2p+0L : inexact-ok += clog downward dbl-64 0x6.b10b4f3520218p-4 0xe.8893cp-4 : -0xa.a1a88e791e268p-28 0x1.23a9a6e7ece91p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b4f3520218p-4 0xe.8893cp-4 : -0xa.a1a88e791e26p-28 0x1.23a9a6e7ece92p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b4f3520218p-4 0xe.8893cp-4 : -0xa.a1a88e791e26p-28 0x1.23a9a6e7ece91p+0 : inexact-ok += clog upward dbl-64 0x6.b10b4f3520218p-4 0xe.8893cp-4 : -0xa.a1a88e791e26p-28 0x1.23a9a6e7ece92p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e26221p-28L 0x1.23a9a6e7ece91b34p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e26221p-28L 0x1.23a9a6e7ece91b34p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e2622p-28L 0x1.23a9a6e7ece91b34p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e2622p-28L 0x1.23a9a6e7ece91b36p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e26221p-28L 0x1.23a9a6e7ece91b34p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e26221p-28L 0x1.23a9a6e7ece91b34p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e2622p-28L 0x1.23a9a6e7ece91b34p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e2622p-28L 0x1.23a9a6e7ece91b36p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e262209efd28872f1c8p-28L 0x1.23a9a6e7ece91b3480f3df085d32p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e262209efd28872f1c8p-28L 0x1.23a9a6e7ece91b3480f3df085d33p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e262209efd28872f1cp-28L 0x1.23a9a6e7ece91b3480f3df085d32p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e262209efd28872f1cp-28L 0x1.23a9a6e7ece91b3480f3df085d33p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e262209efd28872f4p-28L 0x1.23a9a6e7ece91b3480f3df085dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e262209efd28872fp-28L 0x1.23a9a6e7ece91b3480f3df085dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e262209efd28872fp-28L 0x1.23a9a6e7ece91b3480f3df085dp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cp-4L : -0xa.a1a88e791e262209efd28872fp-28L 0x1.23a9a6e7ece91b3480f3df085d8p+0L : inexact-ok += clog downward dbl-64 0x6.b10b4f3520218p-4 0xe.8893cbb449258p-4 : 0x4.1762b4c4e67p-56 0x1.23a9a7363ecb2p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b4f3520218p-4 0xe.8893cbb449258p-4 : 0x4.1762b4c4e6704p-56 0x1.23a9a7363ecb2p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b4f3520218p-4 0xe.8893cbb449258p-4 : 0x4.1762b4c4e67p-56 0x1.23a9a7363ecb2p+0 : inexact-ok += clog upward dbl-64 0x6.b10b4f3520218p-4 0xe.8893cbb449258p-4 : 0x4.1762b4c4e6704p-56 0x1.23a9a7363ecb3p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f4p-56L 0x1.23a9a7363ecb216p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f4p-56L 0x1.23a9a7363ecb2162p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f4p-56L 0x1.23a9a7363ecb216p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f48p-56L 0x1.23a9a7363ecb2162p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f4p-56L 0x1.23a9a7363ecb216p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f4p-56L 0x1.23a9a7363ecb2162p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f4p-56L 0x1.23a9a7363ecb216p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f48p-56L 0x1.23a9a7363ecb2162p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f42c7774e84b044p-56L 0x1.23a9a7363ecb216179767407c6d9p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f42c7774e84b048p-56L 0x1.23a9a7363ecb216179767407c6dap+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f42c7774e84b044p-56L 0x1.23a9a7363ecb216179767407c6d9p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f42c7774e84b048p-56L 0x1.23a9a7363ecb216179767407c6dap+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f42c7774e84bp-56L 0x1.23a9a7363ecb216179767407c68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f42c7774e84bp-56L 0x1.23a9a7363ecb216179767407c7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f42c7774e84bp-56L 0x1.23a9a7363ecb216179767407c68p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb449258p-4L : 0x4.1762b4c4e6702f42c7774e84b2p-56L 0x1.23a9a7363ecb216179767407c7p+0L : inexact-ok += clog downward dbl-64 0x6.b10b4f3520218p-4 0xe.8893cbb44925p-4 : -0x3.2ce731153e228p-56 0x1.23a9a7363ecb1p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b4f3520218p-4 0xe.8893cbb44925p-4 : -0x3.2ce731153e226p-56 0x1.23a9a7363ecb2p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b4f3520218p-4 0xe.8893cbb44925p-4 : -0x3.2ce731153e226p-56 0x1.23a9a7363ecb1p+0 : inexact-ok += clog upward dbl-64 0x6.b10b4f3520218p-4 0xe.8893cbb44925p-4 : -0x3.2ce731153e226p-56 0x1.23a9a7363ecb2p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a18p-56L 0x1.23a9a7363ecb1e08p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a14p-56L 0x1.23a9a7363ecb1e08p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a14p-56L 0x1.23a9a7363ecb1e08p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a14p-56L 0x1.23a9a7363ecb1e0ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a18p-56L 0x1.23a9a7363ecb1e08p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a14p-56L 0x1.23a9a7363ecb1e08p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a14p-56L 0x1.23a9a7363ecb1e08p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a14p-56L 0x1.23a9a7363ecb1e0ap+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a154b70285fe982p-56L 0x1.23a9a7363ecb1e08f3ced977b61cp+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a154b70285fe98p-56L 0x1.23a9a7363ecb1e08f3ced977b61dp+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a154b70285fe98p-56L 0x1.23a9a7363ecb1e08f3ced977b61cp+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a154b70285fe98p-56L 0x1.23a9a7363ecb1e08f3ced977b61dp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a154b70285feap-56L 0x1.23a9a7363ecb1e08f3ced977b6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a154b70285feap-56L 0x1.23a9a7363ecb1e08f3ced977b6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a154b70285fe9p-56L 0x1.23a9a7363ecb1e08f3ced977b6p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb44925p-4L : -0x3.2ce731153e226a154b70285fe9p-56L 0x1.23a9a7363ecb1e08f3ced977b68p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1ep-60L 0x1.23a9a7363ecb1f8cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1ep-60L 0x1.23a9a7363ecb1f8ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1ep-60L 0x1.23a9a7363ecb1f8cp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae2p-60L 0x1.23a9a7363ecb1f8ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1ep-60L 0x1.23a9a7363ecb1f8cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1ep-60L 0x1.23a9a7363ecb1f8ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1ep-60L 0x1.23a9a7363ecb1f8cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae2p-60L 0x1.23a9a7363ecb1f8ep+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1e2afe78fbdcc5p-60L 0x1.23a9a7363ecb1f8d7b6f80744fbap+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1e2afe78fbdcc5p-60L 0x1.23a9a7363ecb1f8d7b6f80744fbbp+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1e2afe78fbdcc5p-60L 0x1.23a9a7363ecb1f8d7b6f80744fbap+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1e2afe78fbdcc6p-60L 0x1.23a9a7363ecb1f8d7b6f80744fbbp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1e2afe78fbdc8p-60L 0x1.23a9a7363ecb1f8d7b6f80744f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1e2afe78fbddp-60L 0x1.23a9a7363ecb1f8d7b6f80744f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1e2afe78fbdc8p-60L 0x1.23a9a7363ecb1f8d7b6f80744f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520218p-4L 0xe.8893cbb449253a1p-4L : 0x1.ef2d44e55b49ae1e2afe78fbddp-60L 0x1.23a9a7363ecb1f8d7b6f80745p+0L : inexact-ok += clog downward dbl-64 0x6.b10b4f3520214p-4 0xe.8893dp-4 : 0x3.e6eb3f88f4c1cp-28 0x1.23a9a752fd9e3p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b4f3520214p-4 0xe.8893dp-4 : 0x3.e6eb3f88f4c1ep-28 0x1.23a9a752fd9e4p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b4f3520214p-4 0xe.8893dp-4 : 0x3.e6eb3f88f4c1cp-28 0x1.23a9a752fd9e3p+0 : inexact-ok += clog upward dbl-64 0x6.b10b4f3520214p-4 0xe.8893dp-4 : 0x3.e6eb3f88f4c1ep-28 0x1.23a9a752fd9e4p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9fp-28L 0x1.23a9a752fd9e3f3p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f4p-28L 0x1.23a9a752fd9e3f3p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9fp-28L 0x1.23a9a752fd9e3f3p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f4p-28L 0x1.23a9a752fd9e3f32p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9fp-28L 0x1.23a9a752fd9e3f3p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f4p-28L 0x1.23a9a752fd9e3f3p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9fp-28L 0x1.23a9a752fd9e3f3p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f4p-28L 0x1.23a9a752fd9e3f32p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f277b036cd1e68p-28L 0x1.23a9a752fd9e3f3080e25ad8887ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f277b036cd1e68p-28L 0x1.23a9a752fd9e3f3080e25ad8887ep+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f277b036cd1e68p-28L 0x1.23a9a752fd9e3f3080e25ad8887ep+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f277b036cd1e6ap-28L 0x1.23a9a752fd9e3f3080e25ad8887fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f277b036cd1ep-28L 0x1.23a9a752fd9e3f3080e25ad888p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f277b036cd1ep-28L 0x1.23a9a752fd9e3f3080e25ad8888p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f277b036cd1ep-28L 0x1.23a9a752fd9e3f3080e25ad888p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893dp-4L : 0x3.e6eb3f88f4c1d9f277b036cd1fp-28L 0x1.23a9a752fd9e3f3080e25ad8888p+0L : inexact-ok += clog downward dbl-64 0x6.b10b4f3520214p-4 0xe.8893cp-4 : -0xa.a1a88e93e254p-28 0x1.23a9a6e7ece91p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b4f3520214p-4 0xe.8893cp-4 : -0xa.a1a88e93e2538p-28 0x1.23a9a6e7ece92p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b4f3520214p-4 0xe.8893cp-4 : -0xa.a1a88e93e2538p-28 0x1.23a9a6e7ece91p+0 : inexact-ok += clog upward dbl-64 0x6.b10b4f3520214p-4 0xe.8893cp-4 : -0xa.a1a88e93e2538p-28 0x1.23a9a6e7ece92p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253828p-28L 0x1.23a9a6e7ece91ed6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827p-28L 0x1.23a9a6e7ece91ed6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827p-28L 0x1.23a9a6e7ece91ed6p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827p-28L 0x1.23a9a6e7ece91ed8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253828p-28L 0x1.23a9a6e7ece91ed6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827p-28L 0x1.23a9a6e7ece91ed6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827p-28L 0x1.23a9a6e7ece91ed6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827p-28L 0x1.23a9a6e7ece91ed8p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827088feaf1fd358p-28L 0x1.23a9a6e7ece91ed6a5e8b3224188p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827088feaf1fd35p-28L 0x1.23a9a6e7ece91ed6a5e8b3224189p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827088feaf1fd35p-28L 0x1.23a9a6e7ece91ed6a5e8b3224188p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827088feaf1fd35p-28L 0x1.23a9a6e7ece91ed6a5e8b3224189p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827088feaf1fd4p-28L 0x1.23a9a6e7ece91ed6a5e8b322418p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827088feaf1fd4p-28L 0x1.23a9a6e7ece91ed6a5e8b322418p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827088feaf1fdp-28L 0x1.23a9a6e7ece91ed6a5e8b322418p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cp-4L : -0xa.a1a88e93e253827088feaf1fdp-28L 0x1.23a9a6e7ece91ed6a5e8b32242p+0L : inexact-ok += clog downward dbl-64 0x6.b10b4f3520214p-4 0xe.8893cbb449258p-4 : 0x2.6b1fe0f79e67ep-56 0x1.23a9a7363ecb2p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b4f3520214p-4 0xe.8893cbb449258p-4 : 0x2.6b1fe0f79e67ep-56 0x1.23a9a7363ecb2p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b4f3520214p-4 0xe.8893cbb449258p-4 : 0x2.6b1fe0f79e67ep-56 0x1.23a9a7363ecb2p+0 : inexact-ok += clog upward dbl-64 0x6.b10b4f3520214p-4 0xe.8893cbb449258p-4 : 0x2.6b1fe0f79e68p-56 0x1.23a9a7363ecb3p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e224p-56L 0x1.23a9a7363ecb2502p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e228p-56L 0x1.23a9a7363ecb2504p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e224p-56L 0x1.23a9a7363ecb2502p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e228p-56L 0x1.23a9a7363ecb2504p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e224p-56L 0x1.23a9a7363ecb2502p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e228p-56L 0x1.23a9a7363ecb2504p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e224p-56L 0x1.23a9a7363ecb2502p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e228p-56L 0x1.23a9a7363ecb2504p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e226acd21a464af4p-56L 0x1.23a9a7363ecb25039e69611a1022p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e226acd21a464af6p-56L 0x1.23a9a7363ecb25039e69611a1022p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e226acd21a464af4p-56L 0x1.23a9a7363ecb25039e69611a1022p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e226acd21a464af6p-56L 0x1.23a9a7363ecb25039e69611a1023p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e226acd21a464ap-56L 0x1.23a9a7363ecb25039e69611a1p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e226acd21a464bp-56L 0x1.23a9a7363ecb25039e69611a1p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e226acd21a464ap-56L 0x1.23a9a7363ecb25039e69611a1p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb449258p-4L : 0x2.6b1fe0f79e67e226acd21a464bp-56L 0x1.23a9a7363ecb25039e69611a108p+0L : inexact-ok += clog downward dbl-64 0x6.b10b4f3520214p-4 0xe.8893cbb44925p-4 : -0x4.d92a04e2862bp-56 0x1.23a9a7363ecb2p+0 : inexact-ok += clog tonearest dbl-64 0x6.b10b4f3520214p-4 0xe.8893cbb44925p-4 : -0x4.d92a04e2862acp-56 0x1.23a9a7363ecb2p+0 : inexact-ok += clog towardzero dbl-64 0x6.b10b4f3520214p-4 0xe.8893cbb44925p-4 : -0x4.d92a04e2862acp-56 0x1.23a9a7363ecb2p+0 : inexact-ok += clog upward dbl-64 0x6.b10b4f3520214p-4 0xe.8893cbb44925p-4 : -0x4.d92a04e2862acp-56 0x1.23a9a7363ecb3p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf88p-56L 0x1.23a9a7363ecb21aap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf8p-56L 0x1.23a9a7363ecb21acp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf8p-56L 0x1.23a9a7363ecb21aap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf8p-56L 0x1.23a9a7363ecb21acp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf88p-56L 0x1.23a9a7363ecb21aap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf8p-56L 0x1.23a9a7363ecb21acp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf8p-56L 0x1.23a9a7363ecb21aap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf8p-56L 0x1.23a9a7363ecb21acp+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf81886a41d336a8p-56L 0x1.23a9a7363ecb21ab18c1c689ff7ap+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf81886a41d336a4p-56L 0x1.23a9a7363ecb21ab18c1c689ff7ap+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf81886a41d336a4p-56L 0x1.23a9a7363ecb21ab18c1c689ff7ap+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf81886a41d336a4p-56L 0x1.23a9a7363ecb21ab18c1c689ff7bp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf81886a41d338p-56L 0x1.23a9a7363ecb21ab18c1c689ffp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf81886a41d336p-56L 0x1.23a9a7363ecb21ab18c1c689ff8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf81886a41d336p-56L 0x1.23a9a7363ecb21ab18c1c689ffp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb44925p-4L : -0x4.d92a04e2862acf81886a41d336p-56L 0x1.23a9a7363ecb21ab18c1c689ff8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf84p-56L 0x1.23a9a7363ecb232ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf84p-56L 0x1.23a9a7363ecb233p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf82p-56L 0x1.23a9a7363ecb232ep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf82p-56L 0x1.23a9a7363ecb233p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf84p-56L 0x1.23a9a7363ecb232ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf84p-56L 0x1.23a9a7363ecb233p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf82p-56L 0x1.23a9a7363ecb232ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf82p-56L 0x1.23a9a7363ecb233p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf8300b76f6aef73p-56L 0x1.23a9a7363ecb232fa0626d86990ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf8300b76f6aef73p-56L 0x1.23a9a7363ecb232fa0626d86990ep+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf8300b76f6aef72p-56L 0x1.23a9a7363ecb232fa0626d86990ep+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf8300b76f6aef72p-56L 0x1.23a9a7363ecb232fa0626d86990fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf8300b76f6aef8p-56L 0x1.23a9a7363ecb232fa0626d8699p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf8300b76f6aef8p-56L 0x1.23a9a7363ecb232fa0626d8699p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf8300b76f6aefp-56L 0x1.23a9a7363ecb232fa0626d8699p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520214p-4L 0xe.8893cbb449253a1p-4L : -0x1.8d4fff7ef253bf8300b76f6aefp-56L 0x1.23a9a7363ecb232fa0626d86998p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4p-28L 0x1.23a9a752fd9e3bdp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4p-28L 0x1.23a9a752fd9e3bd2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4p-28L 0x1.23a9a752fd9e3bdp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c8p-28L 0x1.23a9a752fd9e3bd2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4p-28L 0x1.23a9a752fd9e3bdp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4p-28L 0x1.23a9a752fd9e3bd2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4p-28L 0x1.23a9a752fd9e3bdp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c8p-28L 0x1.23a9a752fd9e3bd2p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4f6fcaec23e66p-28L 0x1.23a9a752fd9e3bd1939ba1bdc86p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4f6fcaec23e66p-28L 0x1.23a9a752fd9e3bd1939ba1bdc86p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4f6fcaec23e66p-28L 0x1.23a9a752fd9e3bd1939ba1bdc86p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4f6fcaec23e68p-28L 0x1.23a9a752fd9e3bd1939ba1bdc861p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4f6fcaec23ep-28L 0x1.23a9a752fd9e3bd1939ba1bdc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4f6fcaec23ep-28L 0x1.23a9a752fd9e3bd1939ba1bdc88p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4f6fcaec23ep-28L 0x1.23a9a752fd9e3bd1939ba1bdc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893dp-4L : 0x3.e6eb3fa1c9c1c5c4f6fcaec23fp-28L 0x1.23a9a752fd9e3bd1939ba1bdc88p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53699p-28L 0x1.23a9a6e7ece91b76p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698p-28L 0x1.23a9a6e7ece91b78p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698p-28L 0x1.23a9a6e7ece91b76p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698p-28L 0x1.23a9a6e7ece91b78p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53699p-28L 0x1.23a9a6e7ece91b76p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698p-28L 0x1.23a9a6e7ece91b78p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698p-28L 0x1.23a9a6e7ece91b76p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698p-28L 0x1.23a9a6e7ece91b78p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698159e43ed2cc28p-28L 0x1.23a9a6e7ece91b77b89f905c3c32p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698159e43ed2cc28p-28L 0x1.23a9a6e7ece91b77b89f905c3c32p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698159e43ed2cc2p-28L 0x1.23a9a6e7ece91b77b89f905c3c32p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698159e43ed2cc2p-28L 0x1.23a9a6e7ece91b77b89f905c3c33p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698159e43ed2dp-28L 0x1.23a9a6e7ece91b77b89f905c3cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698159e43ed2ccp-28L 0x1.23a9a6e7ece91b77b89f905c3cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698159e43ed2ccp-28L 0x1.23a9a6e7ece91b77b89f905c3cp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cp-4L : -0xa.a1a88e7b0d53698159e43ed2ccp-28L 0x1.23a9a6e7ece91b77b89f905c3c8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9554p-56L 0x1.23a9a7363ecb21a4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9558p-56L 0x1.23a9a7363ecb21a4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9554p-56L 0x1.23a9a7363ecb21a4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9558p-56L 0x1.23a9a7363ecb21a6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9554p-56L 0x1.23a9a7363ecb21a4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9558p-56L 0x1.23a9a7363ecb21a4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9554p-56L 0x1.23a9a7363ecb21a4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9558p-56L 0x1.23a9a7363ecb21a6p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9556f9c96e778daep-56L 0x1.23a9a7363ecb21a4b12202299925p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9556f9c96e778daep-56L 0x1.23a9a7363ecb21a4b12202299925p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9556f9c96e778daep-56L 0x1.23a9a7363ecb21a4b12202299925p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9556f9c96e778dbp-56L 0x1.23a9a7363ecb21a4b12202299926p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9556f9c96e778dp-56L 0x1.23a9a7363ecb21a4b122022999p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9556f9c96e778ep-56L 0x1.23a9a7363ecb21a4b122022999p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9556f9c96e778dp-56L 0x1.23a9a7363ecb21a4b122022999p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449258p-4L : 0x3.f86fe07690bb9556f9c96e778ep-56L 0x1.23a9a7363ecb21a4b1220229998p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c4p-56L 0x1.23a9a7363ecb1e4cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c4p-56L 0x1.23a9a7363ecb1e4cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705cp-56L 0x1.23a9a7363ecb1e4cp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705cp-56L 0x1.23a9a7363ecb1e4ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c4p-56L 0x1.23a9a7363ecb1e4cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c4p-56L 0x1.23a9a7363ecb1e4cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705cp-56L 0x1.23a9a7363ecb1e4cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705cp-56L 0x1.23a9a7363ecb1e4ep+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c2e3992afd5edep-56L 0x1.23a9a7363ecb1e4c2b7a67998869p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c2e3992afd5edcp-56L 0x1.23a9a7363ecb1e4c2b7a6799886ap+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c2e3992afd5edcp-56L 0x1.23a9a7363ecb1e4c2b7a67998869p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c2e3992afd5edcp-56L 0x1.23a9a7363ecb1e4c2b7a6799886ap+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c2e3992afd5fp-56L 0x1.23a9a7363ecb1e4c2b7a679988p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c2e3992afd5fp-56L 0x1.23a9a7363ecb1e4c2b7a6799888p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c2e3992afd5ep-56L 0x1.23a9a7363ecb1e4c2b7a679988p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb44925p-4L : -0x3.4bda056393d705c2e3992afd5ep-56L 0x1.23a9a7363ecb1e4c2b7a6799888p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.27fffffffffffff8p-124L 0x1.23a9a7363ecb1fdp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.28p-124L 0x1.23a9a7363ecb1fdp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.27fffffffffffff8p-124L 0x1.23a9a7363ecb1fdp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.28p-124L 0x1.23a9a7363ecb1fd2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.27fffffffffffff8p-124L 0x1.23a9a7363ecb1fdp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.28p-124L 0x1.23a9a7363ecb1fdp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.27fffffffffffff8p-124L 0x1.23a9a7363ecb1fdp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.28p-124L 0x1.23a9a7363ecb1fd2p+0L : inexact-ok += clog downward ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.27fffffffffffffffffffffffffcp-124L 0x1.23a9a7363ecb1fd0b31b0e962206p+0L : inexact-ok += clog tonearest ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.28p-124L 0x1.23a9a7363ecb1fd0b31b0e962207p+0L : inexact-ok += clog towardzero ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.27fffffffffffffffffffffffffcp-124L 0x1.23a9a7363ecb1fd0b31b0e962206p+0L : inexact-ok += clog upward ldbl-128 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.28p-124L 0x1.23a9a7363ecb1fd0b31b0e962207p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.27fffffffffffffffffffffffep-124L 0x1.23a9a7363ecb1fd0b31b0e9622p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.28p-124L 0x1.23a9a7363ecb1fd0b31b0e9622p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.27fffffffffffffffffffffffep-124L 0x1.23a9a7363ecb1fd0b31b0e9622p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.b10b4f3520217b6p-4L 0xe.8893cbb449253a1p-4L : 0x5.28p-124L 0x1.23a9a7363ecb1fd0b31b0e96228p+0L : inexact-ok +clog 0x81b7efa81fc35ad1p-65 0x1ef4b835f1c79d812p-65 += clog downward flt-32 0x4.0dbf8p-4f 0xf.7a5c2p-4f : 0x5.8f3a18p-28f 0x1.508cc4p+0f : inexact-ok += clog tonearest flt-32 0x4.0dbf8p-4f 0xf.7a5c2p-4f : 0x5.8f3a2p-28f 0x1.508cc6p+0f : inexact-ok += clog towardzero flt-32 0x4.0dbf8p-4f 0xf.7a5c2p-4f : 0x5.8f3a18p-28f 0x1.508cc4p+0f : inexact-ok += clog upward flt-32 0x4.0dbf8p-4f 0xf.7a5c2p-4f : 0x5.8f3a2p-28f 0x1.508cc6p+0f : inexact-ok += clog downward dbl-64 0x4.0dbf8p-4 0xf.7a5c2p-4 : 0x5.8f3a1e11798dp-28 0x1.508cc52fddc24p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf8p-4 0xf.7a5c2p-4 : 0x5.8f3a1e11798dp-28 0x1.508cc52fddc25p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf8p-4 0xf.7a5c2p-4 : 0x5.8f3a1e11798dp-28 0x1.508cc52fddc24p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf8p-4 0xf.7a5c2p-4 : 0x5.8f3a1e11798d4p-28 0x1.508cc52fddc25p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15fp-28L 0x1.508cc52fddc24fe6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15fp-28L 0x1.508cc52fddc24fe6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15fp-28L 0x1.508cc52fddc24fe6p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15f8p-28L 0x1.508cc52fddc24fe8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15fp-28L 0x1.508cc52fddc24fe6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15fp-28L 0x1.508cc52fddc24fe6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15fp-28L 0x1.508cc52fddc24fe6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15f8p-28L 0x1.508cc52fddc24fe8p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15f38d5e379da09p-28L 0x1.508cc52fddc24fe6d557acd1460cp+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15f38d5e379da09p-28L 0x1.508cc52fddc24fe6d557acd1460cp+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15f38d5e379da09p-28L 0x1.508cc52fddc24fe6d557acd1460cp+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15f38d5e379da094p-28L 0x1.508cc52fddc24fe6d557acd1460dp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15f38d5e379dap-28L 0x1.508cc52fddc24fe6d557acd146p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15f38d5e379dap-28L 0x1.508cc52fddc24fe6d557acd146p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15f38d5e379dap-28L 0x1.508cc52fddc24fe6d557acd146p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c2p-4L : 0x5.8f3a1e11798d15f38d5e379da2p-28L 0x1.508cc52fddc24fe6d557acd1468p+0L : inexact-ok += clog downward flt-32 0x4.0dbf8p-4f 0xf.7a5c1p-4f : -0x9.eb22p-28f 0x1.508cc4p+0f : inexact-ok += clog tonearest flt-32 0x4.0dbf8p-4f 0xf.7a5c1p-4f : -0x9.eb22p-28f 0x1.508cc4p+0f : inexact-ok += clog towardzero flt-32 0x4.0dbf8p-4f 0xf.7a5c1p-4f : -0x9.eb21fp-28f 0x1.508cc4p+0f : inexact-ok += clog upward flt-32 0x4.0dbf8p-4f 0xf.7a5c1p-4f : -0x9.eb21fp-28f 0x1.508cc6p+0f : inexact-ok += clog downward dbl-64 0x4.0dbf8p-4 0xf.7a5c1p-4 : -0x9.eb21fe2605b28p-28 0x1.508cc4ef01ca3p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf8p-4 0xf.7a5c1p-4 : -0x9.eb21fe2605b2p-28 0x1.508cc4ef01ca4p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf8p-4 0xf.7a5c1p-4 : -0x9.eb21fe2605b2p-28 0x1.508cc4ef01ca3p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf8p-4 0xf.7a5c1p-4 : -0x9.eb21fe2605b2p-28 0x1.508cc4ef01ca4p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2322p-28L 0x1.508cc4ef01ca3e3ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2322p-28L 0x1.508cc4ef01ca3e3cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321p-28L 0x1.508cc4ef01ca3e3ap+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321p-28L 0x1.508cc4ef01ca3e3cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2322p-28L 0x1.508cc4ef01ca3e3ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2322p-28L 0x1.508cc4ef01ca3e3cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321p-28L 0x1.508cc4ef01ca3e3ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321p-28L 0x1.508cc4ef01ca3e3cp+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321c4c0474ac3178p-28L 0x1.508cc4ef01ca3e3b484deba28a18p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321c4c0474ac3178p-28L 0x1.508cc4ef01ca3e3b484deba28a18p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321c4c0474ac317p-28L 0x1.508cc4ef01ca3e3b484deba28a18p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321c4c0474ac317p-28L 0x1.508cc4ef01ca3e3b484deba28a19p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321c4c0474ac34p-28L 0x1.508cc4ef01ca3e3b484deba28ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321c4c0474ac3p-28L 0x1.508cc4ef01ca3e3b484deba28ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321c4c0474ac3p-28L 0x1.508cc4ef01ca3e3b484deba28ap+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1p-4L : -0x9.eb21fe2605b2321c4c0474ac3p-28L 0x1.508cc4ef01ca3e3b484deba28a8p+0L : inexact-ok += clog downward dbl-64 0x4.0dbf8p-4 0xf.7a5c1af8e3cfp-4 : 0xb.21c88ec8986ap-32 0x1.508cc51b7c325p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf8p-4 0xf.7a5c1af8e3cfp-4 : 0xb.21c88ec8986a8p-32 0x1.508cc51b7c325p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf8p-4 0xf.7a5c1af8e3cfp-4 : 0xb.21c88ec8986ap-32 0x1.508cc51b7c325p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf8p-4 0xf.7a5c1af8e3cfp-4 : 0xb.21c88ec8986a8p-32 0x1.508cc51b7c326p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499p-32L 0x1.508cc51b7c3253cap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a49ap-32L 0x1.508cc51b7c3253cap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499p-32L 0x1.508cc51b7c3253cap+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a49ap-32L 0x1.508cc51b7c3253ccp+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499p-32L 0x1.508cc51b7c3253cap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a49ap-32L 0x1.508cc51b7c3253cap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499p-32L 0x1.508cc51b7c3253cap+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a49ap-32L 0x1.508cc51b7c3253ccp+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499ccf9b229062dp-32L 0x1.508cc51b7c3253cafe91ce5da191p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499ccf9b229062dp-32L 0x1.508cc51b7c3253cafe91ce5da191p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499ccf9b229062dp-32L 0x1.508cc51b7c3253cafe91ce5da191p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499ccf9b229062d8p-32L 0x1.508cc51b7c3253cafe91ce5da192p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499ccf9b22906p-32L 0x1.508cc51b7c3253cafe91ce5da18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499ccf9b229064p-32L 0x1.508cc51b7c3253cafe91ce5da18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499ccf9b22906p-32L 0x1.508cc51b7c3253cafe91ce5da18p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3cfp-4L : 0xb.21c88ec8986a499ccf9b229064p-32L 0x1.508cc51b7c3253cafe91ce5da2p+0L : inexact-ok += clog downward dbl-64 0x4.0dbf8p-4 0xf.7a5c1af8e3ce8p-4 : 0xb.21c8870b6a5dp-32 0x1.508cc51b7c325p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf8p-4 0xf.7a5c1af8e3ce8p-4 : 0xb.21c8870b6a5d8p-32 0x1.508cc51b7c325p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf8p-4 0xf.7a5c1af8e3ce8p-4 : 0xb.21c8870b6a5dp-32 0x1.508cc51b7c325p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf8p-4 0xf.7a5c1af8e3ce8p-4 : 0xb.21c8870b6a5d8p-32 0x1.508cc51b7c326p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d797p-32L 0x1.508cc51b7c3251c4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d797p-32L 0x1.508cc51b7c3251c4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d797p-32L 0x1.508cc51b7c3251c4p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d798p-32L 0x1.508cc51b7c3251c6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d797p-32L 0x1.508cc51b7c3251c4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d797p-32L 0x1.508cc51b7c3251c4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d797p-32L 0x1.508cc51b7c3251c4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d798p-32L 0x1.508cc51b7c3251c6p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d7977c339e10c09p-32L 0x1.508cc51b7c3251c41ed1fb7dceafp+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d7977c339e10c09p-32L 0x1.508cc51b7c3251c41ed1fb7dcebp+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d7977c339e10c09p-32L 0x1.508cc51b7c3251c41ed1fb7dceafp+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d7977c339e10c0908p-32L 0x1.508cc51b7c3251c41ed1fb7dcebp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d7977c339e10c08p-32L 0x1.508cc51b7c3251c41ed1fb7dce8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d7977c339e10c08p-32L 0x1.508cc51b7c3251c41ed1fb7dce8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d7977c339e10c08p-32L 0x1.508cc51b7c3251c41ed1fb7dce8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3ce8p-4L : 0xb.21c8870b6a5d7977c339e10c0cp-32L 0x1.508cc51b7c3251c41ed1fb7dcfp+0L : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637affp-32L 0x1.508cc51b7c3252c8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637affp-32L 0x1.508cc51b7c3252cap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637affp-32L 0x1.508cc51b7c3252c8p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637bp-32L 0x1.508cc51b7c3252cap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637affp-32L 0x1.508cc51b7c3252c8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637affp-32L 0x1.508cc51b7c3252cap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637affp-32L 0x1.508cc51b7c3252c8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637bp-32L 0x1.508cc51b7c3252cap+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637aff4731f68290d28p-32L 0x1.508cc51b7c3252c9d66d9cbaf3f1p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637aff4731f68290d3p-32L 0x1.508cc51b7c3252c9d66d9cbaf3f2p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637aff4731f68290d28p-32L 0x1.508cc51b7c3252c9d66d9cbaf3f1p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637aff4731f68290d3p-32L 0x1.508cc51b7c3252c9d66d9cbaf3f2p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637aff4731f68290cp-32L 0x1.508cc51b7c3252c9d66d9cbaf38p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637aff4731f68290cp-32L 0x1.508cc51b7c3252c9d66d9cbaf4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637aff4731f68290cp-32L 0x1.508cc51b7c3252c9d66d9cbaf38p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf8p-4L 0xf.7a5c1af8e3cec09p-4L : 0xb.21c88af2b637aff4731f68291p-32L 0x1.508cc51b7c3252c9d66d9cbaf4p+0L : inexact-ok += clog downward flt-32 0x4.0dbf78p-4f 0xf.7a5c2p-4f : 0x3.885a6p-28f 0x1.508cc4p+0f : inexact-ok += clog tonearest flt-32 0x4.0dbf78p-4f 0xf.7a5c2p-4f : 0x3.885a6p-28f 0x1.508cc6p+0f : inexact-ok += clog towardzero flt-32 0x4.0dbf78p-4f 0xf.7a5c2p-4f : 0x3.885a6p-28f 0x1.508cc4p+0f : inexact-ok += clog upward flt-32 0x4.0dbf78p-4f 0xf.7a5c2p-4f : 0x3.885a64p-28f 0x1.508cc6p+0f : inexact-ok += clog downward dbl-64 0x4.0dbf78p-4 0xf.7a5c2p-4 : 0x3.885a61385418ep-28 0x1.508cc5abb0a3p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf78p-4 0xf.7a5c2p-4 : 0x3.885a61385419p-28 0x1.508cc5abb0a31p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf78p-4 0xf.7a5c2p-4 : 0x3.885a61385418ep-28 0x1.508cc5abb0a3p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf78p-4 0xf.7a5c2p-4 : 0x3.885a61385419p-28 0x1.508cc5abb0a31p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa34p-28L 0x1.508cc5abb0a30988p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa38p-28L 0x1.508cc5abb0a3098ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa34p-28L 0x1.508cc5abb0a30988p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa38p-28L 0x1.508cc5abb0a3098ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa34p-28L 0x1.508cc5abb0a30988p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa38p-28L 0x1.508cc5abb0a3098ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa34p-28L 0x1.508cc5abb0a30988p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa38p-28L 0x1.508cc5abb0a3098ap+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa36f2f6caa32e06p-28L 0x1.508cc5abb0a30989ba85589834f1p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa36f2f6caa32e06p-28L 0x1.508cc5abb0a30989ba85589834f2p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa36f2f6caa32e06p-28L 0x1.508cc5abb0a30989ba85589834f1p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa36f2f6caa32e08p-28L 0x1.508cc5abb0a30989ba85589834f2p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa36f2f6caa32ep-28L 0x1.508cc5abb0a30989ba855898348p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa36f2f6caa32ep-28L 0x1.508cc5abb0a30989ba85589835p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa36f2f6caa32ep-28L 0x1.508cc5abb0a30989ba855898348p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c2p-4L : 0x3.885a61385418fa36f2f6caa32fp-28L 0x1.508cc5abb0a30989ba85589835p+0L : inexact-ok += clog downward flt-32 0x4.0dbf78p-4f 0xf.7a5c1p-4f : -0xb.f201cp-28f 0x1.508cc4p+0f : inexact-ok += clog tonearest flt-32 0x4.0dbf78p-4f 0xf.7a5c1p-4f : -0xb.f201cp-28f 0x1.508cc6p+0f : inexact-ok += clog towardzero flt-32 0x4.0dbf78p-4f 0xf.7a5c1p-4f : -0xb.f201bp-28f 0x1.508cc4p+0f : inexact-ok += clog upward flt-32 0x4.0dbf78p-4f 0xf.7a5c1p-4f : -0xb.f201bp-28f 0x1.508cc6p+0f : inexact-ok += clog downward dbl-64 0x4.0dbf78p-4 0xf.7a5c1p-4 : -0xb.f201beeb0ed7p-28 0x1.508cc56ad4ab6p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf78p-4 0xf.7a5c1p-4 : -0xb.f201beeb0ed7p-28 0x1.508cc56ad4ab6p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf78p-4 0xf.7a5c1p-4 : -0xb.f201beeb0ed68p-28 0x1.508cc56ad4ab6p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf78p-4 0xf.7a5c1p-4 : -0xb.f201beeb0ed68p-28 0x1.508cc56ad4ab7p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e26p-28L 0x1.508cc56ad4ab676ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e25p-28L 0x1.508cc56ad4ab677p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e25p-28L 0x1.508cc56ad4ab676ep+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e25p-28L 0x1.508cc56ad4ab677p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e26p-28L 0x1.508cc56ad4ab676ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e25p-28L 0x1.508cc56ad4ab677p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e25p-28L 0x1.508cc56ad4ab676ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e25p-28L 0x1.508cc56ad4ab677p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e2576270b6c1f4p-28L 0x1.508cc56ad4ab676f74bfbd71573ap+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e2576270b6c1f3f8p-28L 0x1.508cc56ad4ab676f74bfbd71573ap+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e2576270b6c1f3f8p-28L 0x1.508cc56ad4ab676f74bfbd71573ap+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e2576270b6c1f3f8p-28L 0x1.508cc56ad4ab676f74bfbd71573bp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e2576270b6c1f4p-28L 0x1.508cc56ad4ab676f74bfbd7157p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e2576270b6c1f4p-28L 0x1.508cc56ad4ab676f74bfbd7157p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e2576270b6c1fp-28L 0x1.508cc56ad4ab676f74bfbd7157p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1p-4L : -0xb.f201beeb0ed6e2576270b6c1fp-28L 0x1.508cc56ad4ab676f74bfbd71578p+0L : inexact-ok += clog downward dbl-64 0x4.0dbf78p-4 0xf.7a5c1af8e3cfp-4 : -0x1.54c33528112ffp-28 0x1.508cc5974f133p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf78p-4 0xf.7a5c1af8e3cfp-4 : -0x1.54c33528112fep-28 0x1.508cc5974f133p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf78p-4 0xf.7a5c1af8e3cfp-4 : -0x1.54c33528112fep-28 0x1.508cc5974f133p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf78p-4 0xf.7a5c1af8e3cfp-4 : -0x1.54c33528112fep-28 0x1.508cc5974f134p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0fp-28L 0x1.508cc5974f13307cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eep-28L 0x1.508cc5974f13307cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eep-28L 0x1.508cc5974f13307cp+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eep-28L 0x1.508cc5974f13307ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0fp-28L 0x1.508cc5974f13307cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eep-28L 0x1.508cc5974f13307cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eep-28L 0x1.508cc5974f13307cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eep-28L 0x1.508cc5974f13307ep+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eeac486d2c1a48p-28L 0x1.508cc5974f13307cde1408808b77p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eeac486d2c1a47p-28L 0x1.508cc5974f13307cde1408808b78p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eeac486d2c1a47p-28L 0x1.508cc5974f13307cde1408808b77p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eeac486d2c1a47p-28L 0x1.508cc5974f13307cde1408808b78p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eeac486d2c1a8p-28L 0x1.508cc5974f13307cde1408808bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eeac486d2c1a8p-28L 0x1.508cc5974f13307cde1408808b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eeac486d2c1ap-28L 0x1.508cc5974f13307cde1408808bp+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3cfp-4L : -0x1.54c33528112fe0eeac486d2c1ap-28L 0x1.508cc5974f13307cde1408808b8p+0L : inexact-ok += clog downward dbl-64 0x4.0dbf78p-4 0xf.7a5c1af8e3ce8p-4 : -0x1.54c335a3e410dp-28 0x1.508cc5974f132p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf78p-4 0xf.7a5c1af8e3ce8p-4 : -0x1.54c335a3e410dp-28 0x1.508cc5974f133p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf78p-4 0xf.7a5c1af8e3ce8p-4 : -0x1.54c335a3e410cp-28 0x1.508cc5974f132p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf78p-4 0xf.7a5c1af8e3ce8p-4 : -0x1.54c335a3e410cp-28 0x1.508cc5974f133p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd52p-28L 0x1.508cc5974f132e74p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd5p-28L 0x1.508cc5974f132e76p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd5p-28L 0x1.508cc5974f132e74p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd5p-28L 0x1.508cc5974f132e76p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd52p-28L 0x1.508cc5974f132e74p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd5p-28L 0x1.508cc5974f132e76p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd5p-28L 0x1.508cc5974f132e74p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd5p-28L 0x1.508cc5974f132e76p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd501a829e8fd6adp-28L 0x1.508cc5974f132e75fe57b22af1a5p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd501a829e8fd6acp-28L 0x1.508cc5974f132e75fe57b22af1a6p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd501a829e8fd6acp-28L 0x1.508cc5974f132e75fe57b22af1a5p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd501a829e8fd6acp-28L 0x1.508cc5974f132e75fe57b22af1a6p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd501a829e8fd7p-28L 0x1.508cc5974f132e75fe57b22af18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd501a829e8fd68p-28L 0x1.508cc5974f132e75fe57b22af18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd501a829e8fd68p-28L 0x1.508cc5974f132e75fe57b22af18p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3ce8p-4L : -0x1.54c335a3e410cd501a829e8fd68p-28L 0x1.508cc5974f132e75fe57b22af2p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a16p-28L 0x1.508cc5974f132f7ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a16p-28L 0x1.508cc5974f132f7cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a14p-28L 0x1.508cc5974f132f7ap+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a14p-28L 0x1.508cc5974f132f7cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a16p-28L 0x1.508cc5974f132f7ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a16p-28L 0x1.508cc5974f132f7cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a14p-28L 0x1.508cc5974f132f7ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a14p-28L 0x1.508cc5974f132f7cp+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a1575c914d755c7p-28L 0x1.508cc5974f132f7bb5f19136dedfp+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a1575c914d755c7p-28L 0x1.508cc5974f132f7bb5f19136deep+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a1575c914d755c6p-28L 0x1.508cc5974f132f7bb5f19136dedfp+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a1575c914d755c6p-28L 0x1.508cc5974f132f7bb5f19136deep+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a1575c914d756p-28L 0x1.508cc5974f132f7bb5f19136de8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a1575c914d756p-28L 0x1.508cc5974f132f7bb5f19136dfp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a1575c914d7558p-28L 0x1.508cc5974f132f7bb5f19136de8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf78p-4L 0xf.7a5c1af8e3cec09p-4L : -0x1.54c335656f531a1575c914d7558p-28L 0x1.508cc5974f132f7bb5f19136dfp+0L : inexact-ok += clog downward dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c2p-4 : 0x4.dd1d95d918f68p-28 0x1.508cc55a5ee28p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c2p-4 : 0x4.dd1d95d918f68p-28 0x1.508cc55a5ee28p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c2p-4 : 0x4.dd1d95d918f68p-28 0x1.508cc55a5ee28p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c2p-4 : 0x4.dd1d95d918f6cp-28 0x1.508cc55a5ee29p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f68248p-28L 0x1.508cc55a5ee282e6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f68248p-28L 0x1.508cc55a5ee282e6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f68248p-28L 0x1.508cc55a5ee282e6p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f6825p-28L 0x1.508cc55a5ee282e8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f68248p-28L 0x1.508cc55a5ee282e6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f68248p-28L 0x1.508cc55a5ee282e6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f68248p-28L 0x1.508cc55a5ee282e6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f6825p-28L 0x1.508cc55a5ee282e8p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f6824a0436e3c86aap-28L 0x1.508cc55a5ee282e6d9398ed0a57p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f6824a0436e3c86aa4p-28L 0x1.508cc55a5ee282e6d9398ed0a571p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f6824a0436e3c86aap-28L 0x1.508cc55a5ee282e6d9398ed0a57p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f6824a0436e3c86aa4p-28L 0x1.508cc55a5ee282e6d9398ed0a571p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f6824a0436e3c86ap-28L 0x1.508cc55a5ee282e6d9398ed0a5p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f6824a0436e3c86ap-28L 0x1.508cc55a5ee282e6d9398ed0a58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f6824a0436e3c86ap-28L 0x1.508cc55a5ee282e6d9398ed0a5p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c2p-4L : 0x4.dd1d95d918f6824a0436e3c86cp-28L 0x1.508cc55a5ee282e6d9398ed0a58p+0L : inexact-ok += clog downward dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1p-4 : -0xa.9d3e87b6ffff8p-28 0x1.508cc51982ea9p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1p-4 : -0xa.9d3e87b6ffff8p-28 0x1.508cc51982ea9p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1p-4 : -0xa.9d3e87b6ffffp-28 0x1.508cc51982ea9p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1p-4 : -0xa.9d3e87b6ffffp-28 0x1.508cc51982eaap+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff659p-28L 0x1.508cc51982ea9786p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff658p-28L 0x1.508cc51982ea9788p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff658p-28L 0x1.508cc51982ea9786p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff658p-28L 0x1.508cc51982ea9788p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff659p-28L 0x1.508cc51982ea9786p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff658p-28L 0x1.508cc51982ea9788p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff658p-28L 0x1.508cc51982ea9786p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff658p-28L 0x1.508cc51982ea9788p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff65842e128c6e9e18p-28L 0x1.508cc51982ea978764e812a12789p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff65842e128c6e9e1p-28L 0x1.508cc51982ea978764e812a1278ap+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff65842e128c6e9e1p-28L 0x1.508cc51982ea978764e812a12789p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff65842e128c6e9e1p-28L 0x1.508cc51982ea978764e812a1278ap+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff65842e128c6eap-28L 0x1.508cc51982ea978764e812a1278p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff65842e128c6eap-28L 0x1.508cc51982ea978764e812a1278p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff65842e128c6e9cp-28L 0x1.508cc51982ea978764e812a1278p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1p-4L : -0xa.9d3e87b6ffff65842e128c6e9cp-28L 0x1.508cc51982ea978764e812a128p+0L : inexact-ok += clog downward dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1af8e3cfp-4 : 0x4.7dfc4fc12c1ccp-56 0x1.508cc545fd529p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1af8e3cfp-4 : 0x4.7dfc4fc12c1dp-56 0x1.508cc545fd529p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1af8e3cfp-4 : 0x4.7dfc4fc12c1ccp-56 0x1.508cc545fd529p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1af8e3cfp-4 : 0x4.7dfc4fc12c1dp-56 0x1.508cc545fd52ap+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebdp-56L 0x1.508cc545fd5292d2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebdp-56L 0x1.508cc545fd5292d4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebdp-56L 0x1.508cc545fd5292d2p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebd8p-56L 0x1.508cc545fd5292d4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebdp-56L 0x1.508cc545fd5292d2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebdp-56L 0x1.508cc545fd5292d4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebdp-56L 0x1.508cc545fd5292d2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebd8p-56L 0x1.508cc545fd5292d4p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebd21d2366dcdc8p-56L 0x1.508cc545fd5292d3ceebbc199a73p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebd21d2366dcdc84p-56L 0x1.508cc545fd5292d3ceebbc199a73p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebd21d2366dcdc8p-56L 0x1.508cc545fd5292d3ceebbc199a73p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebd21d2366dcdc84p-56L 0x1.508cc545fd5292d3ceebbc199a74p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebd21d2366dcdcp-56L 0x1.508cc545fd5292d3ceebbc199ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebd21d2366dcdcp-56L 0x1.508cc545fd5292d3ceebbc199a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebd21d2366dcdcp-56L 0x1.508cc545fd5292d3ceebbc199ap+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cfp-4L : 0x4.7dfc4fc12c1cebd21d2366dcdep-56L 0x1.508cc545fd5292d3ceebbc199a8p+0L : inexact-ok += clog downward dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1af8e3ce8p-4 : -0x3.3f31bdbb45ca8p-56 0x1.508cc545fd529p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1af8e3ce8p-4 : -0x3.3f31bdbb45ca6p-56 0x1.508cc545fd529p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1af8e3ce8p-4 : -0x3.3f31bdbb45ca6p-56 0x1.508cc545fd529p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf7d40fe1bp-4 0xf.7a5c1af8e3ce8p-4 : -0x3.3f31bdbb45ca6p-56 0x1.508cc545fd52ap+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8cp-56L 0x1.508cc545fd5290ccp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8cp-56L 0x1.508cc545fd5290ccp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a88p-56L 0x1.508cc545fd5290ccp+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a88p-56L 0x1.508cc545fd5290cep+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8cp-56L 0x1.508cc545fd5290ccp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8cp-56L 0x1.508cc545fd5290ccp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a88p-56L 0x1.508cc545fd5290ccp+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a88p-56L 0x1.508cc545fd5290cep+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8ac3f76ffd66cep-56L 0x1.508cc545fd5290ccef2d1b9a8cf5p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8ac3f76ffd66cep-56L 0x1.508cc545fd5290ccef2d1b9a8cf6p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8ac3f76ffd66ccp-56L 0x1.508cc545fd5290ccef2d1b9a8cf5p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8ac3f76ffd66ccp-56L 0x1.508cc545fd5290ccef2d1b9a8cf6p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8ac3f76ffd67p-56L 0x1.508cc545fd5290ccef2d1b9a8c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8ac3f76ffd67p-56L 0x1.508cc545fd5290ccef2d1b9a8dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8ac3f76ffd66p-56L 0x1.508cc545fd5290ccef2d1b9a8c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.3f31bdbb45ca6a8ac3f76ffd66p-56L 0x1.508cc545fd5290ccef2d1b9a8dp+0L : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddp-60L 0x1.508cc545fd5291d2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bdep-60L 0x1.508cc545fd5291d2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddp-60L 0x1.508cc545fd5291d2p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bdep-60L 0x1.508cc545fd5291d4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddp-60L 0x1.508cc545fd5291d2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bdep-60L 0x1.508cc545fd5291d2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddp-60L 0x1.508cc545fd5291d2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bdep-60L 0x1.508cc545fd5291d4p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddc63782592caa8p-60L 0x1.508cc545fd5291d2a6c8224ea2a7p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddc63782592caa8p-60L 0x1.508cc545fd5291d2a6c8224ea2a7p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddc63782592caa8p-60L 0x1.508cc545fd5291d2a6c8224ea2a7p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddc63782592cabp-60L 0x1.508cc545fd5291d2a6c8224ea2a8p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddc63782592c8p-60L 0x1.508cc545fd5291d2a6c8224ea28p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddc63782592ccp-60L 0x1.508cc545fd5291d2a6c8224ea28p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddc63782592c8p-60L 0x1.508cc545fd5291d2a6c8224ea28p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1bp-4L 0xf.7a5c1af8e3cec09p-4L : 0xa.81a1cd21f296bddc63782592ccp-60L 0x1.508cc545fd5291d2a6c8224ea3p+0L : inexact-ok += clog downward dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c2p-4 : 0x4.dd1d95c8e1f88p-28 0x1.508cc55a5ee28p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c2p-4 : 0x4.dd1d95c8e1f88p-28 0x1.508cc55a5ee28p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c2p-4 : 0x4.dd1d95c8e1f88p-28 0x1.508cc55a5ee28p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c2p-4 : 0x4.dd1d95c8e1f8cp-28 0x1.508cc55a5ee29p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f8972p-28L 0x1.508cc55a5ee286c4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f8972p-28L 0x1.508cc55a5ee286c6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f8972p-28L 0x1.508cc55a5ee286c4p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f89728p-28L 0x1.508cc55a5ee286c6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f8972p-28L 0x1.508cc55a5ee286c4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f8972p-28L 0x1.508cc55a5ee286c6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f8972p-28L 0x1.508cc55a5ee286c4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f89728p-28L 0x1.508cc55a5ee286c6p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f89721b5e177951b84p-28L 0x1.508cc55a5ee286c5703f3491c69p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f89721b5e177951b88p-28L 0x1.508cc55a5ee286c5703f3491c69p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f89721b5e177951b84p-28L 0x1.508cc55a5ee286c5703f3491c69p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f89721b5e177951b88p-28L 0x1.508cc55a5ee286c5703f3491c691p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f89721b5e177951ap-28L 0x1.508cc55a5ee286c5703f3491c68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f89721b5e177951cp-28L 0x1.508cc55a5ee286c5703f3491c68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f89721b5e177951ap-28L 0x1.508cc55a5ee286c5703f3491c68p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c2p-4L : 0x4.dd1d95c8e1f89721b5e177951cp-28L 0x1.508cc55a5ee286c5703f3491c7p+0L : inexact-ok += clog downward dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1p-4 : -0xa.9d3e87c736fd8p-28 0x1.508cc51982ea9p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1p-4 : -0xa.9d3e87c736fd8p-28 0x1.508cc51982eaap+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1p-4 : -0xa.9d3e87c736fdp-28 0x1.508cc51982ea9p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1p-4 : -0xa.9d3e87c736fdp-28 0x1.508cc51982eaap+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd701p-28L 0x1.508cc51982ea9b64p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd701p-28L 0x1.508cc51982ea9b66p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd7p-28L 0x1.508cc51982ea9b64p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd7p-28L 0x1.508cc51982ea9b66p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd701p-28L 0x1.508cc51982ea9b64p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd701p-28L 0x1.508cc51982ea9b66p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd7p-28L 0x1.508cc51982ea9b64p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd7p-28L 0x1.508cc51982ea9b66p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd700b99f3d2ea3578p-28L 0x1.508cc51982ea9b65fbf134ec825ap+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd700b99f3d2ea357p-28L 0x1.508cc51982ea9b65fbf134ec825bp+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd700b99f3d2ea357p-28L 0x1.508cc51982ea9b65fbf134ec825ap+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd700b99f3d2ea357p-28L 0x1.508cc51982ea9b65fbf134ec825bp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd700b99f3d2ea38p-28L 0x1.508cc51982ea9b65fbf134ec82p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd700b99f3d2ea34p-28L 0x1.508cc51982ea9b65fbf134ec828p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd700b99f3d2ea34p-28L 0x1.508cc51982ea9b65fbf134ec82p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1p-4L : -0xa.9d3e87c736fd700b99f3d2ea34p-28L 0x1.508cc51982ea9b65fbf134ec828p+0L : inexact-ok += clog downward dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1af8e3cfp-4 : 0x3.7a8c7070ec962p-56 0x1.508cc545fd529p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1af8e3cfp-4 : 0x3.7a8c7070ec964p-56 0x1.508cc545fd529p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1af8e3cfp-4 : 0x3.7a8c7070ec962p-56 0x1.508cc545fd529p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1af8e3cfp-4 : 0x3.7a8c7070ec964p-56 0x1.508cc545fd52ap+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be4p-56L 0x1.508cc545fd5296b2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be8p-56L 0x1.508cc545fd5296b2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be4p-56L 0x1.508cc545fd5296b2p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be8p-56L 0x1.508cc545fd5296b4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be4p-56L 0x1.508cc545fd5296b2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be8p-56L 0x1.508cc545fd5296b2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be4p-56L 0x1.508cc545fd5296b2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be8p-56L 0x1.508cc545fd5296b4p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be60b3523a61586p-56L 0x1.508cc545fd5296b265f27a528e14p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be60b3523a61586p-56L 0x1.508cc545fd5296b265f27a528e14p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be60b3523a61586p-56L 0x1.508cc545fd5296b265f27a528e14p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be60b3523a61588p-56L 0x1.508cc545fd5296b265f27a528e15p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be60b3523a615p-56L 0x1.508cc545fd5296b265f27a528ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be60b3523a616p-56L 0x1.508cc545fd5296b265f27a528ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be60b3523a615p-56L 0x1.508cc545fd5296b265f27a528ep+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cfp-4L : 0x3.7a8c7070ec963be60b3523a616p-56L 0x1.508cc545fd5296b265f27a528e8p+0L : inexact-ok += clog downward dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1af8e3ce8p-4 : -0x4.42a19d0b85514p-56 0x1.508cc545fd529p+0 : inexact-ok += clog tonearest dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1af8e3ce8p-4 : -0x4.42a19d0b85514p-56 0x1.508cc545fd529p+0 : inexact-ok += clog towardzero dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1af8e3ce8p-4 : -0x4.42a19d0b8551p-56 0x1.508cc545fd529p+0 : inexact-ok += clog upward dbl-64 0x4.0dbf7d40fe1acp-4 0xf.7a5c1af8e3ce8p-4 : -0x4.42a19d0b8551p-56 0x1.508cc545fd52ap+0 : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a28p-56L 0x1.508cc545fd5294aap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a28p-56L 0x1.508cc545fd5294acp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2p-56L 0x1.508cc545fd5294aap+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2p-56L 0x1.508cc545fd5294acp+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a28p-56L 0x1.508cc545fd5294aap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a28p-56L 0x1.508cc545fd5294acp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2p-56L 0x1.508cc545fd5294aap+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2p-56L 0x1.508cc545fd5294acp+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2664a35d041bccp-56L 0x1.508cc545fd5294ab8633d9d380b2p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2664a35d041bc8p-56L 0x1.508cc545fd5294ab8633d9d380b3p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2664a35d041bc8p-56L 0x1.508cc545fd5294ab8633d9d380b2p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2664a35d041bc8p-56L 0x1.508cc545fd5294ab8633d9d380b3p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2664a35d041cp-56L 0x1.508cc545fd5294ab8633d9d3808p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2664a35d041cp-56L 0x1.508cc545fd5294ab8633d9d3808p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2664a35d041ap-56L 0x1.508cc545fd5294ab8633d9d3808p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3ce8p-4L : -0x4.42a19d0b85512a2664a35d041ap-56L 0x1.508cc545fd5294ab8633d9d381p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd48p-60L 0x1.508cc545fd5295bp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd48p-60L 0x1.508cc545fd5295b2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd4p-60L 0x1.508cc545fd5295bp+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd4p-60L 0x1.508cc545fd5295b2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd48p-60L 0x1.508cc545fd5295bp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd48p-60L 0x1.508cc545fd5295b2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd4p-60L 0x1.508cc545fd5295bp+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd4p-60L 0x1.508cc545fd5295b2p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd46d9500668739p-60L 0x1.508cc545fd5295b13dcee0879656p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd46d9500668739p-60L 0x1.508cc545fd5295b13dcee0879656p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd46d9500668738cp-60L 0x1.508cc545fd5295b13dcee0879656p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd46d9500668738cp-60L 0x1.508cc545fd5295b13dcee0879657p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd46d950066874p-60L 0x1.508cc545fd5295b13dcee08796p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd46d950066874p-60L 0x1.508cc545fd5295b13dcee087968p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd46d950066872p-60L 0x1.508cc545fd5295b13dcee08796p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1acp-4L 0xf.7a5c1af8e3cec09p-4L : -0x5.b55c27e205d4bd46d950066872p-60L 0x1.508cc545fd5295b13dcee087968p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb88p-28L 0x1.508cc55a5ee28568p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb88p-28L 0x1.508cc55a5ee28568p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb88p-28L 0x1.508cc55a5ee28568p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb9p-28L 0x1.508cc55a5ee2856ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb88p-28L 0x1.508cc55a5ee28568p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb88p-28L 0x1.508cc55a5ee28568p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb88p-28L 0x1.508cc55a5ee28568p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb9p-28L 0x1.508cc55a5ee2856ap+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb8b467530d98758p-28L 0x1.508cc55a5ee28568b354579728c6p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb8b467530d98758p-28L 0x1.508cc55a5ee28568b354579728c6p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb8b467530d98758p-28L 0x1.508cc55a5ee28568b354579728c6p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb8b467530d9875cp-28L 0x1.508cc55a5ee28568b354579728c7p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb8b467530d986p-28L 0x1.508cc55a5ee28568b3545797288p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb8b467530d988p-28L 0x1.508cc55a5ee28568b354579729p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb8b467530d986p-28L 0x1.508cc55a5ee28568b3545797288p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c2p-4L : 0x4.dd1d95ce9754bb8b467530d988p-28L 0x1.508cc55a5ee28568b354579729p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a140ap-28L 0x1.508cc51982ea9a08p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a1409p-28L 0x1.508cc51982ea9a0ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a1409p-28L 0x1.508cc51982ea9a08p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a1409p-28L 0x1.508cc51982ea9a0ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a140ap-28L 0x1.508cc51982ea9a08p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a1409p-28L 0x1.508cc51982ea9a0ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a1409p-28L 0x1.508cc51982ea9a08p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a1409p-28L 0x1.508cc51982ea9a0ap+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a14096ad193d6d176p-28L 0x1.508cc51982ea9a093f051db9bb01p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a14096ad193d6d1758p-28L 0x1.508cc51982ea9a093f051db9bb01p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a14096ad193d6d1758p-28L 0x1.508cc51982ea9a093f051db9bb01p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a14096ad193d6d1758p-28L 0x1.508cc51982ea9a093f051db9bb02p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a14096ad193d6d18p-28L 0x1.508cc51982ea9a093f051db9bbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a14096ad193d6d18p-28L 0x1.508cc51982ea9a093f051db9bbp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a14096ad193d6d14p-28L 0x1.508cc51982ea9a093f051db9bbp+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1p-4L : -0xa.9d3e87c181a14096ad193d6d14p-28L 0x1.508cc51982ea9a093f051db9bb8p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fcp-56L 0x1.508cc545fd529554p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fcp-56L 0x1.508cc545fd529556p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fcp-56L 0x1.508cc545fd529554p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf385p-56L 0x1.508cc545fd529556p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fcp-56L 0x1.508cc545fd529554p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fcp-56L 0x1.508cc545fd529556p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fcp-56L 0x1.508cc545fd529554p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf385p-56L 0x1.508cc545fd529556p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fdd4bdc5ee8862p-56L 0x1.508cc545fd529555a9073a9ac14ep+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fdd4bdc5ee8862p-56L 0x1.508cc545fd529555a9073a9ac14ep+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fdd4bdc5ee8862p-56L 0x1.508cc545fd529555a9073a9ac14ep+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fdd4bdc5ee8864p-56L 0x1.508cc545fd529555a9073a9ac14fp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fdd4bdc5ee88p-56L 0x1.508cc545fd529555a9073a9ac1p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fdd4bdc5ee88p-56L 0x1.508cc545fd529555a9073a9ac18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fdd4bdc5ee88p-56L 0x1.508cc545fd529555a9073a9ac1p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cfp-4L : 0x3.d5e232ef0cf384fdd4bdc5ee89p-56L 0x1.508cc545fd529555a9073a9ac18p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db8cp-56L 0x1.508cc545fd52934ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88p-56L 0x1.508cc545fd52934ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88p-56L 0x1.508cc545fd52934ep+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88p-56L 0x1.508cc545fd52935p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db8cp-56L 0x1.508cc545fd52934ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88p-56L 0x1.508cc545fd52934ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88p-56L 0x1.508cc545fd52934ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88p-56L 0x1.508cc545fd52935p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88ecfa3553555ap-56L 0x1.508cc545fd52934ec9489a1bb3e2p+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88ecfa35535558p-56L 0x1.508cc545fd52934ec9489a1bb3e3p+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88ecfa35535558p-56L 0x1.508cc545fd52934ec9489a1bb3e2p+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88ecfa35535558p-56L 0x1.508cc545fd52934ec9489a1bb3e3p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88ecfa355356p-56L 0x1.508cc545fd52934ec9489a1bb38p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88ecfa355355p-56L 0x1.508cc545fd52934ec9489a1bb4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88ecfa355355p-56L 0x1.508cc545fd52934ec9489a1bb38p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3ce8p-4L : -0x3.e74bda8d64f3db88ecfa355355p-56L 0x1.508cc545fd52934ec9489a1bb4p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.6p-128L 0x1.508cc545fd529454p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.6p-128L 0x1.508cc545fd529454p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.5ffffffffffffffcp-128L 0x1.508cc545fd529454p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.5ffffffffffffffcp-128L 0x1.508cc545fd529456p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.6p-128L 0x1.508cc545fd529454p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.6p-128L 0x1.508cc545fd529454p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.5ffffffffffffffcp-128L 0x1.508cc545fd529454p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.5ffffffffffffffcp-128L 0x1.508cc545fd529456p+0L : inexact-ok += clog downward ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.6p-128L 0x1.508cc545fd52945480e3a0cfc98bp+0L : inexact-ok += clog tonearest ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.6p-128L 0x1.508cc545fd52945480e3a0cfc98cp+0L : inexact-ok += clog towardzero ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.5ffffffffffffffffffffffffffep-128L 0x1.508cc545fd52945480e3a0cfc98bp+0L : inexact-ok += clog upward ldbl-128 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.5ffffffffffffffffffffffffffep-128L 0x1.508cc545fd52945480e3a0cfc98cp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.6p-128L 0x1.508cc545fd52945480e3a0cfc98p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.6p-128L 0x1.508cc545fd52945480e3a0cfc98p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.5fffffffffffffffffffffffffp-128L 0x1.508cc545fd52945480e3a0cfc98p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.0dbf7d40fe1ad688p-4L 0xf.7a5c1af8e3cec09p-4L : -0x3.5fffffffffffffffffffffffffp-128L 0x1.508cc545fd52945480e3a0cfcap+0L : inexact-ok +clog 0x3f96469050f650869c2p-75 0x6f16b2c9c8b05988335p-75 += clog downward flt-32 0x7.f2c8d8p-4f 0xd.e2d66p-4f : 0x8.d7b6cp-28f 0x1.0d0908p+0f : inexact-ok += clog tonearest flt-32 0x7.f2c8d8p-4f 0xd.e2d66p-4f : 0x8.d7b6dp-28f 0x1.0d090ap+0f : inexact-ok += clog towardzero flt-32 0x7.f2c8d8p-4f 0xd.e2d66p-4f : 0x8.d7b6cp-28f 0x1.0d0908p+0f : inexact-ok += clog upward flt-32 0x7.f2c8d8p-4f 0xd.e2d66p-4f : 0x8.d7b6dp-28f 0x1.0d090ap+0f : inexact-ok += clog downward dbl-64 0x7.f2c8d8p-4 0xd.e2d66p-4 : 0x8.d7b6cd1cece8p-28 0x1.0d09096930b56p+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d8p-4 0xd.e2d66p-4 : 0x8.d7b6cd1cece8p-28 0x1.0d09096930b57p+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d8p-4 0xd.e2d66p-4 : 0x8.d7b6cd1cece8p-28 0x1.0d09096930b56p+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d8p-4 0xd.e2d66p-4 : 0x8.d7b6cd1cece88p-28 0x1.0d09096930b57p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece8253p-28L 0x1.0d09096930b56d14p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece8253p-28L 0x1.0d09096930b56d16p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece8253p-28L 0x1.0d09096930b56d14p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece8254p-28L 0x1.0d09096930b56d16p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece8253p-28L 0x1.0d09096930b56d14p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece8253p-28L 0x1.0d09096930b56d16p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece8253p-28L 0x1.0d09096930b56d14p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece8254p-28L 0x1.0d09096930b56d16p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece82532003a66cb1a8p-28L 0x1.0d09096930b56d15daeb340c375ap+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece82532003a66cb1a88p-28L 0x1.0d09096930b56d15daeb340c375ap+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece82532003a66cb1a8p-28L 0x1.0d09096930b56d15daeb340c375ap+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece82532003a66cb1a88p-28L 0x1.0d09096930b56d15daeb340c375bp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece82532003a66cb18p-28L 0x1.0d09096930b56d15daeb340c37p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece82532003a66cb1cp-28L 0x1.0d09096930b56d15daeb340c378p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece82532003a66cb18p-28L 0x1.0d09096930b56d15daeb340c37p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d66p-4L : 0x8.d7b6cd1cece82532003a66cb1cp-28L 0x1.0d09096930b56d15daeb340c378p+0L : inexact-ok += clog downward flt-32 0x7.f2c8d8p-4f 0xd.e2d65p-4f : -0x5.0b1f88p-28f 0x1.0d0908p+0f : inexact-ok += clog tonearest flt-32 0x7.f2c8d8p-4f 0xd.e2d65p-4f : -0x5.0b1f88p-28f 0x1.0d0908p+0f : inexact-ok += clog towardzero flt-32 0x7.f2c8d8p-4f 0xd.e2d65p-4f : -0x5.0b1f8p-28f 0x1.0d0908p+0f : inexact-ok += clog upward flt-32 0x7.f2c8d8p-4f 0xd.e2d65p-4f : -0x5.0b1f8p-28f 0x1.0d090ap+0f : inexact-ok += clog downward dbl-64 0x7.f2c8d8p-4 0xd.e2d65p-4 : -0x5.0b1f8796fb704p-28 0x1.0d0908ea0428p+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d8p-4 0xd.e2d65p-4 : -0x5.0b1f8796fb7p-28 0x1.0d0908ea04281p+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d8p-4 0xd.e2d65p-4 : -0x5.0b1f8796fb7p-28 0x1.0d0908ea0428p+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d8p-4 0xd.e2d65p-4 : -0x5.0b1f8796fb7p-28 0x1.0d0908ea04281p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb70017p-28L 0x1.0d0908ea04280b48p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb700168p-28L 0x1.0d0908ea04280b48p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb700168p-28L 0x1.0d0908ea04280b48p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb700168p-28L 0x1.0d0908ea04280b4ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb70017p-28L 0x1.0d0908ea04280b48p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb700168p-28L 0x1.0d0908ea04280b48p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb700168p-28L 0x1.0d0908ea04280b48p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb700168p-28L 0x1.0d0908ea04280b4ap+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb7001684f3a6cf6f714p-28L 0x1.0d0908ea04280b485fd3935838aep+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb7001684f3a6cf6f714p-28L 0x1.0d0908ea04280b485fd3935838afp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb7001684f3a6cf6f71p-28L 0x1.0d0908ea04280b485fd3935838aep+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb7001684f3a6cf6f71p-28L 0x1.0d0908ea04280b485fd3935838afp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb7001684f3a6cf6f8p-28L 0x1.0d0908ea04280b485fd39358388p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb7001684f3a6cf6f8p-28L 0x1.0d0908ea04280b485fd39358388p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb7001684f3a6cf6f6p-28L 0x1.0d0908ea04280b485fd39358388p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65p-4L : -0x5.0b1f8796fb7001684f3a6cf6f6p-28L 0x1.0d0908ea04280b485fd3935839p+0L : inexact-ok += clog downward dbl-64 0x7.f2c8d8p-4 0xd.e2d65939160b8p-4 : 0x2.f604467af2716p-28 0x1.0d09093352f59p+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d8p-4 0xd.e2d65939160b8p-4 : 0x2.f604467af2716p-28 0x1.0d09093352f5ap+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d8p-4 0xd.e2d65939160b8p-4 : 0x2.f604467af2716p-28 0x1.0d09093352f59p+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d8p-4 0xd.e2d65939160b8p-4 : 0x2.f604467af2718p-28 0x1.0d09093352f5ap+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167bp-28L 0x1.0d09093352f59d94p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b4p-28L 0x1.0d09093352f59d96p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167bp-28L 0x1.0d09093352f59d94p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b4p-28L 0x1.0d09093352f59d96p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167bp-28L 0x1.0d09093352f59d94p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b4p-28L 0x1.0d09093352f59d96p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167bp-28L 0x1.0d09093352f59d94p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b4p-28L 0x1.0d09093352f59d96p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b38459dd74688cp-28L 0x1.0d09093352f59d9583875a06f691p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b38459dd74688ep-28L 0x1.0d09093352f59d9583875a06f692p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b38459dd74688cp-28L 0x1.0d09093352f59d9583875a06f691p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b38459dd74688ep-28L 0x1.0d09093352f59d9583875a06f692p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b38459dd7468p-28L 0x1.0d09093352f59d9583875a06f68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b38459dd7469p-28L 0x1.0d09093352f59d9583875a06f68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b38459dd7468p-28L 0x1.0d09093352f59d9583875a06f68p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b8p-4L : 0x2.f604467af27167b38459dd7469p-28L 0x1.0d09093352f59d9583875a06f7p+0L : inexact-ok += clog downward dbl-64 0x7.f2c8d8p-4 0xd.e2d65939160bp-4 : 0x2.f604460bdbbecp-28 0x1.0d09093352f59p+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d8p-4 0xd.e2d65939160bp-4 : 0x2.f604460bdbbecp-28 0x1.0d09093352f5ap+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d8p-4 0xd.e2d65939160bp-4 : 0x2.f604460bdbbecp-28 0x1.0d09093352f59p+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d8p-4 0xd.e2d65939160bp-4 : 0x2.f604460bdbbeep-28 0x1.0d09093352f5ap+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708p-28L 0x1.0d09093352f5999cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708p-28L 0x1.0d09093352f5999cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708p-28L 0x1.0d09093352f5999cp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec70cp-28L 0x1.0d09093352f5999ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708p-28L 0x1.0d09093352f5999cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708p-28L 0x1.0d09093352f5999cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708p-28L 0x1.0d09093352f5999cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec70cp-28L 0x1.0d09093352f5999ep+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708b5ff787ff4c2p-28L 0x1.0d09093352f5999c1f1cd29700dep+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708b5ff787ff4c4p-28L 0x1.0d09093352f5999c1f1cd29700dfp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708b5ff787ff4c2p-28L 0x1.0d09093352f5999c1f1cd29700dep+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708b5ff787ff4c4p-28L 0x1.0d09093352f5999c1f1cd29700dfp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708b5ff787ff4p-28L 0x1.0d09093352f5999c1f1cd297008p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708b5ff787ff5p-28L 0x1.0d09093352f5999c1f1cd29701p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708b5ff787ff4p-28L 0x1.0d09093352f5999c1f1cd297008p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160bp-4L : 0x2.f604460bdbbec708b5ff787ff5p-28L 0x1.0d09093352f5999c1f1cd29701p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fedcp-28L 0x1.0d09093352f59b22p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051feep-28L 0x1.0d09093352f59b22p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fedcp-28L 0x1.0d09093352f59b22p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051feep-28L 0x1.0d09093352f59b24p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fedcp-28L 0x1.0d09093352f59b22p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051feep-28L 0x1.0d09093352f59b22p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fedcp-28L 0x1.0d09093352f59b22p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051feep-28L 0x1.0d09093352f59b24p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fede2e581bbcec42p-28L 0x1.0d09093352f59b2216ba27c0caf2p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fede2e581bbcec42p-28L 0x1.0d09093352f59b2216ba27c0caf3p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fede2e581bbcec42p-28L 0x1.0d09093352f59b2216ba27c0caf2p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fede2e581bbcec44p-28L 0x1.0d09093352f59b2216ba27c0caf3p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fede2e581bbcecp-28L 0x1.0d09093352f59b2216ba27c0ca8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fede2e581bbcecp-28L 0x1.0d09093352f59b2216ba27c0cbp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fede2e581bbcecp-28L 0x1.0d09093352f59b2216ba27c0ca8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b311p-4L : 0x2.f60446367051fede2e581bbcedp-28L 0x1.0d09093352f59b2216ba27c0cbp+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f2888p-28L 0x1.0d09093352f59b2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288cp-28L 0x1.0d09093352f59b22p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f2888p-28L 0x1.0d09093352f59b2p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288cp-28L 0x1.0d09093352f59b22p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f2888p-28L 0x1.0d09093352f59b2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288cp-28L 0x1.0d09093352f59b22p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f2888p-28L 0x1.0d09093352f59b2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288cp-28L 0x1.0d09093352f59b22p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288a18fe5068b90ep-28L 0x1.0d09093352f59b21978d9a6fdcf3p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288a18fe5068b90ep-28L 0x1.0d09093352f59b21978d9a6fdcf4p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288a18fe5068b90ep-28L 0x1.0d09093352f59b21978d9a6fdcf3p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288a18fe5068b91p-28L 0x1.0d09093352f59b21978d9a6fdcf4p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288a18fe5068b9p-28L 0x1.0d09093352f59b21978d9a6fdc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288a18fe5068b9p-28L 0x1.0d09093352f59b21978d9a6fddp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288a18fe5068b9p-28L 0x1.0d09093352f59b21978d9a6fdc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b31p-4L : 0x2.f6044636626f288a18fe5068bap-28L 0x1.0d09093352f59b21978d9a6fddp+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.f6044636680037b58e0d6f8b5b0ep-28L 0x1.0d09093352f59b21ca88d6966e5cp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.f6044636680037b58e0d6f8b5b0ep-28L 0x1.0d09093352f59b21ca88d6966e5cp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.f6044636680037b58e0d6f8b5b0ep-28L 0x1.0d09093352f59b21ca88d6966e5cp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.f6044636680037b58e0d6f8b5b1p-28L 0x1.0d09093352f59b21ca88d6966e5dp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.f6044636680037b58e0d6f8b5bp-28L 0x1.0d09093352f59b21ca88d6966ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.f6044636680037b58e0d6f8b5bp-28L 0x1.0d09093352f59b21ca88d6966e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.f6044636680037b58e0d6f8b5bp-28L 0x1.0d09093352f59b21ca88d6966ep+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.f6044636680037b58e0d6f8b5cp-28L 0x1.0d09093352f59b21ca88d6966e8p+0L : inexact-ok += clog downward flt-32 0x7.f2c8dp-4f 0xd.e2d66p-4f : 0x4.de526p-28f 0x1.0d0908p+0f : inexact-ok += clog tonearest flt-32 0x7.f2c8dp-4f 0xd.e2d66p-4f : 0x4.de5268p-28f 0x1.0d090ap+0f : inexact-ok += clog towardzero flt-32 0x7.f2c8dp-4f 0xd.e2d66p-4f : 0x4.de526p-28f 0x1.0d0908p+0f : inexact-ok += clog upward flt-32 0x7.f2c8dp-4f 0xd.e2d66p-4f : 0x4.de5268p-28f 0x1.0d090ap+0f : inexact-ok += clog downward dbl-64 0x7.f2c8dp-4 0xd.e2d66p-4 : 0x4.de526684c59cp-28 0x1.0d0909d84768p+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8dp-4 0xd.e2d66p-4 : 0x4.de526684c59c4p-28 0x1.0d0909d847681p+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8dp-4 0xd.e2d66p-4 : 0x4.de526684c59cp-28 0x1.0d0909d84768p+0 : inexact-ok += clog upward dbl-64 0x7.f2c8dp-4 0xd.e2d66p-4 : 0x4.de526684c59c4p-28 0x1.0d0909d847681p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b68p-28L 0x1.0d0909d847680de2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b7p-28L 0x1.0d0909d847680de4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b68p-28L 0x1.0d0909d847680de2p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b7p-28L 0x1.0d0909d847680de4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b68p-28L 0x1.0d0909d847680de2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b7p-28L 0x1.0d0909d847680de4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b68p-28L 0x1.0d0909d847680de2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b7p-28L 0x1.0d0909d847680de4p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b6e0c5b8eab497cp-28L 0x1.0d0909d847680de387901ad66e71p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b6e0c5b8eab498p-28L 0x1.0d0909d847680de387901ad66e72p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b6e0c5b8eab497cp-28L 0x1.0d0909d847680de387901ad66e71p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b6e0c5b8eab498p-28L 0x1.0d0909d847680de387901ad66e72p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b6e0c5b8eab48p-28L 0x1.0d0909d847680de387901ad66ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b6e0c5b8eab4ap-28L 0x1.0d0909d847680de387901ad66e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b6e0c5b8eab48p-28L 0x1.0d0909d847680de387901ad66ep+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d66p-4L : 0x4.de526684c59c2b6e0c5b8eab4ap-28L 0x1.0d0909d847680de387901ad66e8p+0L : inexact-ok += clog downward flt-32 0x7.f2c8dp-4f 0xd.e2d65p-4f : -0x9.0484p-28f 0x1.0d0908p+0f : inexact-ok += clog tonearest flt-32 0x7.f2c8dp-4f 0xd.e2d65p-4f : -0x9.0483fp-28f 0x1.0d090ap+0f : inexact-ok += clog towardzero flt-32 0x7.f2c8dp-4f 0xd.e2d65p-4f : -0x9.0483fp-28f 0x1.0d0908p+0f : inexact-ok += clog upward flt-32 0x7.f2c8dp-4f 0xd.e2d65p-4f : -0x9.0483fp-28f 0x1.0d090ap+0f : inexact-ok += clog downward dbl-64 0x7.f2c8dp-4 0xd.e2d65p-4 : -0x9.0483f51515b88p-28 0x1.0d0909591adaep+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8dp-4 0xd.e2d65p-4 : -0x9.0483f51515b8p-28 0x1.0d0909591adafp+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8dp-4 0xd.e2d65p-4 : -0x9.0483f51515b8p-28 0x1.0d0909591adaep+0 : inexact-ok += clog upward dbl-64 0x7.f2c8dp-4 0xd.e2d65p-4 : -0x9.0483f51515b8p-28 0x1.0d0909591adafp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809cp-28L 0x1.0d0909591adaece8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809bp-28L 0x1.0d0909591adaece8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809bp-28L 0x1.0d0909591adaece8p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809bp-28L 0x1.0d0909591adaeceap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809cp-28L 0x1.0d0909591adaece8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809bp-28L 0x1.0d0909591adaece8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809bp-28L 0x1.0d0909591adaece8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809bp-28L 0x1.0d0909591adaeceap+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809b1ed7340e1bfc8p-28L 0x1.0d0909591adaece8d09222cf271cp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809b1ed7340e1bfcp-28L 0x1.0d0909591adaece8d09222cf271cp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809b1ed7340e1bfcp-28L 0x1.0d0909591adaece8d09222cf271cp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809b1ed7340e1bfcp-28L 0x1.0d0909591adaece8d09222cf271dp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809b1ed7340e1cp-28L 0x1.0d0909591adaece8d09222cf27p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809b1ed7340e1cp-28L 0x1.0d0909591adaece8d09222cf27p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809b1ed7340e1bcp-28L 0x1.0d0909591adaece8d09222cf27p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65p-4L : -0x9.0483f51515b809b1ed7340e1bcp-28L 0x1.0d0909591adaece8d09222cf278p+0L : inexact-ok += clog downward dbl-64 0x7.f2c8dp-4 0xd.e2d65939160b8p-4 : -0x1.0360230932742p-28 0x1.0d0909a269a85p+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8dp-4 0xd.e2d65939160b8p-4 : -0x1.0360230932742p-28 0x1.0d0909a269a86p+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8dp-4 0xd.e2d65939160b8p-4 : -0x1.0360230932741p-28 0x1.0d0909a269a85p+0 : inexact-ok += clog upward dbl-64 0x7.f2c8dp-4 0xd.e2d65939160b8p-4 : -0x1.0360230932741p-28 0x1.0d0909a269a86p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f16p-28L 0x1.0d0909a269a859d8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f16p-28L 0x1.0d0909a269a859d8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f14p-28L 0x1.0d0909a269a859d8p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f14p-28L 0x1.0d0909a269a859dap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f16p-28L 0x1.0d0909a269a859d8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f16p-28L 0x1.0d0909a269a859d8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f14p-28L 0x1.0d0909a269a859d8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f14p-28L 0x1.0d0909a269a859dap+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f15268eed3252fcp-28L 0x1.0d0909a269a859d81dcc20c114cap+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f15268eed3252fbp-28L 0x1.0d0909a269a859d81dcc20c114cap+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f15268eed3252fbp-28L 0x1.0d0909a269a859d81dcc20c114cap+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f15268eed3252fbp-28L 0x1.0d0909a269a859d81dcc20c114cbp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f15268eed3253p-28L 0x1.0d0909a269a859d81dcc20c1148p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f15268eed3253p-28L 0x1.0d0909a269a859d81dcc20c115p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f15268eed32528p-28L 0x1.0d0909a269a859d81dcc20c1148p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b8p-4L : -0x1.0360230932741f15268eed32528p-28L 0x1.0d0909a269a859d81dcc20c115p+0L : inexact-ok += clog downward dbl-64 0x7.f2c8dp-4 0xd.e2d65939160bp-4 : -0x1.036023784927p-28 0x1.0d0909a269a85p+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8dp-4 0xd.e2d65939160bp-4 : -0x1.036023784926fp-28 0x1.0d0909a269a85p+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8dp-4 0xd.e2d65939160bp-4 : -0x1.036023784926fp-28 0x1.0d0909a269a85p+0 : inexact-ok += clog upward dbl-64 0x7.f2c8dp-4 0xd.e2d65939160bp-4 : -0x1.036023784926fp-28 0x1.0d0909a269a86p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6fp-28L 0x1.0d0909a269a855dep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6fp-28L 0x1.0d0909a269a855dep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6eep-28L 0x1.0d0909a269a855dep+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6eep-28L 0x1.0d0909a269a855ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6fp-28L 0x1.0d0909a269a855dep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6fp-28L 0x1.0d0909a269a855dep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6eep-28L 0x1.0d0909a269a855dep+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6eep-28L 0x1.0d0909a269a855ep+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6ef8cbffdcba8f5p-28L 0x1.0d0909a269a855deb9639fe73fe2p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6ef8cbffdcba8f5p-28L 0x1.0d0909a269a855deb9639fe73fe3p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6ef8cbffdcba8f4p-28L 0x1.0d0909a269a855deb9639fe73fe2p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6ef8cbffdcba8f4p-28L 0x1.0d0909a269a855deb9639fe73fe3p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6ef8cbffdcba9p-28L 0x1.0d0909a269a855deb9639fe73f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6ef8cbffdcba9p-28L 0x1.0d0909a269a855deb9639fe74p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6ef8cbffdcba88p-28L 0x1.0d0909a269a855deb9639fe73f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160bp-4L : -0x1.036023784926f6ef8cbffdcba88p-28L 0x1.0d0909a269a855deb9639fe74p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f4p-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2p-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2p-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2p-28L 0x1.0d0909a269a85766p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f4p-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2p-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2p-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2p-28L 0x1.0d0909a269a85766p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2f65432041dcbp-28L 0x1.0d0909a269a85764b1002e4abea4p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2f65432041dcap-28L 0x1.0d0909a269a85764b1002e4abea4p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2f65432041dcap-28L 0x1.0d0909a269a85764b1002e4abea4p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2f65432041dcap-28L 0x1.0d0909a269a85764b1002e4abea5p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2f65432041ep-28L 0x1.0d0909a269a85764b1002e4abe8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2f65432041ep-28L 0x1.0d0909a269a85764b1002e4abe8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2f65432041d8p-28L 0x1.0d0909a269a85764b1002e4abe8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b311p-4L : -0x1.0360234db493a9f2f65432041d8p-28L 0x1.0d0909a269a85764b1002e4abfp+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804ep-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804ep-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804cp-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804cp-28L 0x1.0d0909a269a85766p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804ep-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804ep-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804cp-28L 0x1.0d0909a269a85764p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804cp-28L 0x1.0d0909a269a85766p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804df1a0f82dc59bp-28L 0x1.0d0909a269a8576431d3a13aa369p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804df1a0f82dc59bp-28L 0x1.0d0909a269a8576431d3a13aa36ap+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804df1a0f82dc59ap-28L 0x1.0d0909a269a8576431d3a13aa369p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804df1a0f82dc59ap-28L 0x1.0d0909a269a8576431d3a13aa36ap+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804df1a0f82dc6p-28L 0x1.0d0909a269a8576431d3a13aa3p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804df1a0f82dc58p-28L 0x1.0d0909a269a8576431d3a13aa38p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804df1a0f82dc58p-28L 0x1.0d0909a269a8576431d3a13aa3p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b31p-4L : -0x1.0360234dc276804df1a0f82dc58p-28L 0x1.0d0909a269a8576431d3a13aa38p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.0360234dbce5711fb8a3513d51bcp-28L 0x1.0d0909a269a8576464cedd473854p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.0360234dbce5711fb8a3513d51bcp-28L 0x1.0d0909a269a8576464cedd473854p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.0360234dbce5711fb8a3513d51bbp-28L 0x1.0d0909a269a8576464cedd473854p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.0360234dbce5711fb8a3513d51bbp-28L 0x1.0d0909a269a8576464cedd473855p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.0360234dbce5711fb8a3513d52p-28L 0x1.0d0909a269a8576464cedd4738p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.0360234dbce5711fb8a3513d518p-28L 0x1.0d0909a269a8576464cedd47388p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.0360234dbce5711fb8a3513d518p-28L 0x1.0d0909a269a8576464cedd4738p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.0360234dbce5711fb8a3513d518p-28L 0x1.0d0909a269a8576464cedd47388p+0L : inexact-ok += clog downward dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d66p-4 : 0x5.e1b2892b40268p-28 0x1.0d0909bbf5337p+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d66p-4 : 0x5.e1b2892b40268p-28 0x1.0d0909bbf5337p+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d66p-4 : 0x5.e1b2892b40268p-28 0x1.0d0909bbf5337p+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d66p-4 : 0x5.e1b2892b4026cp-28 0x1.0d0909bbf5338p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b40268748p-28L 0x1.0d0909bbf5337394p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b40268748p-28L 0x1.0d0909bbf5337396p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b40268748p-28L 0x1.0d0909bbf5337394p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b4026875p-28L 0x1.0d0909bbf5337396p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b40268748p-28L 0x1.0d0909bbf5337394p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b40268748p-28L 0x1.0d0909bbf5337396p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b40268748p-28L 0x1.0d0909bbf5337394p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b4026875p-28L 0x1.0d0909bbf5337396p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b4026874a1e81734d1f34p-28L 0x1.0d0909bbf5337395ae52ed78fe65p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b4026874a1e81734d1f38p-28L 0x1.0d0909bbf5337395ae52ed78fe65p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b4026874a1e81734d1f34p-28L 0x1.0d0909bbf5337395ae52ed78fe65p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b4026874a1e81734d1f38p-28L 0x1.0d0909bbf5337395ae52ed78fe66p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b4026874a1e81734d1ep-28L 0x1.0d0909bbf5337395ae52ed78fep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b4026874a1e81734d2p-28L 0x1.0d0909bbf5337395ae52ed78fe8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b4026874a1e81734d1ep-28L 0x1.0d0909bbf5337395ae52ed78fep+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d66p-4L : 0x5.e1b2892b4026874a1e81734d2p-28L 0x1.0d0909bbf5337395ae52ed78fe8p+0L : inexact-ok += clog downward dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65p-4 : -0x8.0123d0ac64728p-28 0x1.0d09093cc8a64p+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65p-4 : -0x8.0123d0ac6472p-28 0x1.0d09093cc8a64p+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65p-4 : -0x8.0123d0ac6472p-28 0x1.0d09093cc8a64p+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65p-4 : -0x8.0123d0ac6472p-28 0x1.0d09093cc8a65p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723ccp-28L 0x1.0d09093cc8a64214p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cbp-28L 0x1.0d09093cc8a64214p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cbp-28L 0x1.0d09093cc8a64214p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cbp-28L 0x1.0d09093cc8a64216p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723ccp-28L 0x1.0d09093cc8a64214p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cbp-28L 0x1.0d09093cc8a64214p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cbp-28L 0x1.0d09093cc8a64214p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cbp-28L 0x1.0d09093cc8a64216p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cb60a2227014ebp-28L 0x1.0d09093cc8a6421445501382b925p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cb60a2227014ea8p-28L 0x1.0d09093cc8a6421445501382b925p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cb60a2227014ea8p-28L 0x1.0d09093cc8a6421445501382b925p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cb60a2227014ea8p-28L 0x1.0d09093cc8a6421445501382b926p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cb60a2227015p-28L 0x1.0d09093cc8a6421445501382b9p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cb60a2227015p-28L 0x1.0d09093cc8a6421445501382b9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cb60a2227014cp-28L 0x1.0d09093cc8a6421445501382b9p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65p-4L : -0x8.0123d0ac64723cb60a2227014cp-28L 0x1.0d09093cc8a6421445501382b98p+0L : inexact-ok += clog downward dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65939160b8p-4 : 0x5.bf9b874300a68p-56 0x1.0d0909861773bp+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65939160b8p-4 : 0x5.bf9b874300a68p-56 0x1.0d0909861773cp+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65939160b8p-4 : 0x5.bf9b874300a68p-56 0x1.0d0909861773bp+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65939160b8p-4 : 0x5.bf9b874300a6cp-56 0x1.0d0909861773cp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686fp-56L 0x1.0d0909861773b88ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f8p-56L 0x1.0d0909861773b88ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686fp-56L 0x1.0d0909861773b88ap+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f8p-56L 0x1.0d0909861773b88cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686fp-56L 0x1.0d0909861773b88ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f8p-56L 0x1.0d0909861773b88ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686fp-56L 0x1.0d0909861773b88ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f8p-56L 0x1.0d0909861773b88cp+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f483450eebeb38p-56L 0x1.0d0909861773b88a4d4c2e4c47e9p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f483450eebeb38p-56L 0x1.0d0909861773b88a4d4c2e4c47e9p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f483450eebeb38p-56L 0x1.0d0909861773b88a4d4c2e4c47e9p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f483450eebeb3cp-56L 0x1.0d0909861773b88a4d4c2e4c47eap+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f483450eebeap-56L 0x1.0d0909861773b88a4d4c2e4c478p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f483450eebecp-56L 0x1.0d0909861773b88a4d4c2e4c48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f483450eebeap-56L 0x1.0d0909861773b88a4d4c2e4c478p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b8p-4L : 0x5.bf9b874300a686f483450eebecp-56L 0x1.0d0909861773b88a4d4c2e4c48p+0L : inexact-ok += clog downward dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65939160bp-4 : -0x1.31cfa5598a5fp-56 0x1.0d0909861773bp+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65939160bp-4 : -0x1.31cfa5598a5fp-56 0x1.0d0909861773bp+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65939160bp-4 : -0x1.31cfa5598a5efp-56 0x1.0d0909861773bp+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d20a1eca4p-4 0xd.e2d65939160bp-4 : -0x1.31cfa5598a5efp-56 0x1.0d0909861773cp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96ep-56L 0x1.0d0909861773b49p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96ep-56L 0x1.0d0909861773b49p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96cp-56L 0x1.0d0909861773b49p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96cp-56L 0x1.0d0909861773b492p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96ep-56L 0x1.0d0909861773b49p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96ep-56L 0x1.0d0909861773b49p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96cp-56L 0x1.0d0909861773b49p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96cp-56L 0x1.0d0909861773b492p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96d50706c2d509fp-56L 0x1.0d0909861773b490e8e3293ce2dbp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96d50706c2d509ep-56L 0x1.0d0909861773b490e8e3293ce2dbp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96d50706c2d509ep-56L 0x1.0d0909861773b490e8e3293ce2dbp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96d50706c2d509ep-56L 0x1.0d0909861773b490e8e3293ce2dcp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96d50706c2d51p-56L 0x1.0d0909861773b490e8e3293ce28p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96d50706c2d508p-56L 0x1.0d0909861773b490e8e3293ce3p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96d50706c2d508p-56L 0x1.0d0909861773b490e8e3293ce28p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160bp-4L : -0x1.31cfa5598a5ef96d50706c2d508p-56L 0x1.0d0909861773b490e8e3293ce3p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863ep-56L 0x1.0d0909861773b618p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863ep-56L 0x1.0d0909861773b618p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cdb24f7bfd83ep-56L 0x1.0d0909861773b616e07fea4d697dp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cdb24f7bfd83fp-56L 0x1.0d0909861773b616e07fea4d697ep+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cdb24f7bfd83ep-56L 0x1.0d0909861773b616e07fea4d697dp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cdb24f7bfd83fp-56L 0x1.0d0909861773b616e07fea4d697ep+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cdb24f7bfd8p-56L 0x1.0d0909861773b616e07fea4d69p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cdb24f7bfd8p-56L 0x1.0d0909861773b616e07fea4d698p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cdb24f7bfd8p-56L 0x1.0d0909861773b616e07fea4d69p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b311p-4L : 0x1.77798f1ff66a863cdb24f7bfd88p-56L 0x1.0d0909861773b616e07fea4d698p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258ep-56L 0x1.0d0909861773b618p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258cp-56L 0x1.0d0909861773b616p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258ep-56L 0x1.0d0909861773b618p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258c55a023ea2b0ap-56L 0x1.0d0909861773b61661535d2cc791p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258c55a023ea2b0bp-56L 0x1.0d0909861773b61661535d2cc791p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258c55a023ea2b0ap-56L 0x1.0d0909861773b61661535d2cc791p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258c55a023ea2b0bp-56L 0x1.0d0909861773b61661535d2cc792p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258c55a023ea2bp-56L 0x1.0d0909861773b61661535d2cc78p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258c55a023ea2bp-56L 0x1.0d0909861773b61661535d2cc78p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258c55a023ea2bp-56L 0x1.0d0909861773b61661535d2cc78p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31p-4L : 0x1.769b61ba62d9258c55a023ea2b8p-56L 0x1.0d0909861773b61661535d2cc8p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31066ap-4L : 0x1.76f472ad3b214cef193614fba33bp-56L 0x1.0d0909861773b616944e993ffc7ap+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31066ap-4L : 0x1.76f472ad3b214cef193614fba33cp-56L 0x1.0d0909861773b616944e993ffc7bp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31066ap-4L : 0x1.76f472ad3b214cef193614fba33bp-56L 0x1.0d0909861773b616944e993ffc7ap+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31066ap-4L : 0x1.76f472ad3b214cef193614fba33cp-56L 0x1.0d0909861773b616944e993ffc7bp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31066ap-4L : 0x1.76f472ad3b214cef193614fba3p-56L 0x1.0d0909861773b616944e993ffcp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31066ap-4L : 0x1.76f472ad3b214cef193614fba3p-56L 0x1.0d0909861773b616944e993ffc8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31066ap-4L : 0x1.76f472ad3b214cef193614fba3p-56L 0x1.0d0909861773b616944e993ffcp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca4p-4L 0xd.e2d65939160b31066ap-4L : 0x1.76f472ad3b214cef193614fba38p-56L 0x1.0d0909861773b616944e993ffc8p+0L : inexact-ok += clog downward dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d66p-4 : 0x5.e1b2890b75034p-28 0x1.0d0909bbf5337p+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d66p-4 : 0x5.e1b2890b75034p-28 0x1.0d0909bbf5337p+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d66p-4 : 0x5.e1b2890b75034p-28 0x1.0d0909bbf5337p+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d66p-4 : 0x5.e1b2890b75038p-28 0x1.0d0909bbf5338p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b7503568p-28L 0x1.0d0909bbf533770ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b7503568p-28L 0x1.0d0909bbf533770ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b7503568p-28L 0x1.0d0909bbf533770ep+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b75035688p-28L 0x1.0d0909bbf533771p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b7503568p-28L 0x1.0d0909bbf533770ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b7503568p-28L 0x1.0d0909bbf533770ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b7503568p-28L 0x1.0d0909bbf533770ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b75035688p-28L 0x1.0d0909bbf533771p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b75035681902676d0263cp-28L 0x1.0d0909bbf533770e63e8601713bbp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b75035681902676d0264p-28L 0x1.0d0909bbf533770e63e8601713bbp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b75035681902676d0263cp-28L 0x1.0d0909bbf533770e63e8601713bbp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b75035681902676d0264p-28L 0x1.0d0909bbf533770e63e8601713bcp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b75035681902676d026p-28L 0x1.0d0909bbf533770e63e86017138p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b75035681902676d026p-28L 0x1.0d0909bbf533770e63e86017138p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b75035681902676d026p-28L 0x1.0d0909bbf533770e63e86017138p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d66p-4L : 0x5.e1b2890b75035681902676d028p-28L 0x1.0d0909bbf533770e63e8601714p+0L : inexact-ok += clog downward dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65p-4 : -0x8.0123d0cc2f96p-28 0x1.0d09093cc8a64p+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65p-4 : -0x8.0123d0cc2f958p-28 0x1.0d09093cc8a64p+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65p-4 : -0x8.0123d0cc2f958p-28 0x1.0d09093cc8a64p+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65p-4 : -0x8.0123d0cc2f958p-28 0x1.0d09093cc8a65p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4bp-28L 0x1.0d09093cc8a6458cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4bp-28L 0x1.0d09093cc8a6458cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ap-28L 0x1.0d09093cc8a6458cp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ap-28L 0x1.0d09093cc8a6458ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4bp-28L 0x1.0d09093cc8a6458cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4bp-28L 0x1.0d09093cc8a6458cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ap-28L 0x1.0d09093cc8a6458cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ap-28L 0x1.0d09093cc8a6458ep+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ae305d6ad8265p-28L 0x1.0d09093cc8a6458cfae78cb6f043p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ae305d6ad82648p-28L 0x1.0d09093cc8a6458cfae78cb6f043p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ae305d6ad82648p-28L 0x1.0d09093cc8a6458cfae78cb6f043p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ae305d6ad82648p-28L 0x1.0d09093cc8a6458cfae78cb6f044p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ae305d6ad828p-28L 0x1.0d09093cc8a6458cfae78cb6fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ae305d6ad828p-28L 0x1.0d09093cc8a6458cfae78cb6f08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ae305d6ad824p-28L 0x1.0d09093cc8a6458cfae78cb6fp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65p-4L : -0x8.0123d0cc2f95a4ae305d6ad824p-28L 0x1.0d09093cc8a6458cfae78cb6f08p+0L : inexact-ok += clog downward dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65939160b8p-4 : 0x3.c2e952c078f4p-56 0x1.0d0909861773bp+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65939160b8p-4 : 0x3.c2e952c078f42p-56 0x1.0d0909861773cp+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65939160b8p-4 : 0x3.c2e952c078f4p-56 0x1.0d0909861773bp+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65939160b8p-4 : 0x3.c2e952c078f42p-56 0x1.0d0909861773cp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411d8p-56L 0x1.0d0909861773bc02p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411dcp-56L 0x1.0d0909861773bc04p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411d8p-56L 0x1.0d0909861773bc02p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411dcp-56L 0x1.0d0909861773bc04p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411d8p-56L 0x1.0d0909861773bc02p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411dcp-56L 0x1.0d0909861773bc04p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411d8p-56L 0x1.0d0909861773bc02p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411dcp-56L 0x1.0d0909861773bc04p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411da219969b5d97ap-56L 0x1.0d0909861773bc0302e27c91caa8p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411da219969b5d97cp-56L 0x1.0d0909861773bc0302e27c91caa8p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411da219969b5d97ap-56L 0x1.0d0909861773bc0302e27c91caa8p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411da219969b5d97cp-56L 0x1.0d0909861773bc0302e27c91caa9p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411da219969b5d9p-56L 0x1.0d0909861773bc0302e27c91ca8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411da219969b5d9p-56L 0x1.0d0909861773bc0302e27c91ca8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411da219969b5d9p-56L 0x1.0d0909861773bc0302e27c91ca8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b8p-4L : 0x3.c2e952c078f411da219969b5dap-56L 0x1.0d0909861773bc0302e27c91cbp+0L : inexact-ok += clog downward dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65939160bp-4 : -0x3.2e81d9dc1211ap-56 0x1.0d0909861773bp+0 : inexact-ok += clog tonearest dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65939160bp-4 : -0x3.2e81d9dc12118p-56 0x1.0d0909861773cp+0 : inexact-ok += clog towardzero dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65939160bp-4 : -0x3.2e81d9dc12118p-56 0x1.0d0909861773bp+0 : inexact-ok += clog upward dbl-64 0x7.f2c8d20a1ecap-4 0xd.e2d65939160bp-4 : -0x3.2e81d9dc12118p-56 0x1.0d0909861773cp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a2p-56L 0x1.0d0909861773b808p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a2p-56L 0x1.0d0909861773b80ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1cp-56L 0x1.0d0909861773b808p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1cp-56L 0x1.0d0909861773b80ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a2p-56L 0x1.0d0909861773b808p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a2p-56L 0x1.0d0909861773b80ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1cp-56L 0x1.0d0909861773b808p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1cp-56L 0x1.0d0909861773b80ap+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1f7e0750cc187ep-56L 0x1.0d0909861773b8099e79778265aap+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1f7e0750cc187ep-56L 0x1.0d0909861773b8099e79778265aap+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1f7e0750cc187cp-56L 0x1.0d0909861773b8099e79778265aap+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1f7e0750cc187cp-56L 0x1.0d0909861773b8099e79778265abp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1f7e0750cc19p-56L 0x1.0d0909861773b8099e797782658p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1f7e0750cc18p-56L 0x1.0d0909861773b8099e797782658p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1f7e0750cc18p-56L 0x1.0d0909861773b8099e797782658p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160bp-4L : -0x3.2e81d9dc12118a1f7e0750cc18p-56L 0x1.0d0909861773b8099e79778266p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe2p-60L 0x1.0d0909861773b98ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe2p-60L 0x1.0d0909861773b99p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1p-60L 0x1.0d0909861773b98ep+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1p-60L 0x1.0d0909861773b99p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe2p-60L 0x1.0d0909861773b98ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe2p-60L 0x1.0d0909861773b99p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1p-60L 0x1.0d0909861773b98ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1p-60L 0x1.0d0909861773b99p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1c3686130ec948p-60L 0x1.0d0909861773b98f96163892ec46p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1c3686130ec948p-60L 0x1.0d0909861773b98f96163892ec47p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1c3686130ec94p-60L 0x1.0d0909861773b98f96163892ec46p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1c3686130ec94p-60L 0x1.0d0909861773b98f96163892ec47p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1c3686130eccp-60L 0x1.0d0909861773b98f96163892ecp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1c3686130ec8p-60L 0x1.0d0909861773b98f96163892ec8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1c3686130ec8p-60L 0x1.0d0909861773b98f96163892ecp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b311p-4L : -0x8.538a5629147ffe1c3686130ec8p-60L 0x1.0d0909861773b98f96163892ec8p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96096p-60L 0x1.0d0909861773b98ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96096p-60L 0x1.0d0909861773b99p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095p-60L 0x1.0d0909861773b98ep+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095p-60L 0x1.0d0909861773b99p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96096p-60L 0x1.0d0909861773b98ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96096p-60L 0x1.0d0909861773b99p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095p-60L 0x1.0d0909861773b98ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095p-60L 0x1.0d0909861773b99p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095bbe6b26e86df8p-60L 0x1.0d0909861773b98f16e9ab724a5ap+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095bbe6b26e86dfp-60L 0x1.0d0909861773b98f16e9ab724a5ap+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095bbe6b26e86dfp-60L 0x1.0d0909861773b98f16e9ab724a5ap+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095bbe6b26e86dfp-60L 0x1.0d0909861773b98f16e9ab724a5bp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095bbe6b26e87p-60L 0x1.0d0909861773b98f16e9ab724ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095bbe6b26e86cp-60L 0x1.0d0909861773b98f16e9ab724a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095bbe6b26e86cp-60L 0x1.0d0909861773b98f16e9ab724ap+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31p-4L : -0x8.616d2c824d96095bbe6b26e86cp-60L 0x1.0d0909861773b98f16e9ab724a8p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31066ap-4L : -0x8.5bdc1d54c91393196597d774543p-60L 0x1.0d0909861773b98f49e4e7857f43p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31066ap-4L : -0x8.5bdc1d54c91393196597d774543p-60L 0x1.0d0909861773b98f49e4e7857f44p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31066ap-4L : -0x8.5bdc1d54c91393196597d7745428p-60L 0x1.0d0909861773b98f49e4e7857f43p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31066ap-4L : -0x8.5bdc1d54c91393196597d7745428p-60L 0x1.0d0909861773b98f49e4e7857f44p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31066ap-4L : -0x8.5bdc1d54c91393196597d77458p-60L 0x1.0d0909861773b98f49e4e7857fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31066ap-4L : -0x8.5bdc1d54c91393196597d77454p-60L 0x1.0d0909861773b98f49e4e7857f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31066ap-4L : -0x8.5bdc1d54c91393196597d77454p-60L 0x1.0d0909861773b98f49e4e7857fp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1ecap-4L 0xd.e2d65939160b31066ap-4L : -0x8.5bdc1d54c91393196597d77454p-60L 0x1.0d0909861773b98f49e4e7857f8p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b98p-28L 0x1.0d0909bbf5337626p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b98p-28L 0x1.0d0909bbf5337626p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978589d9c71843p-28L 0x1.0d0909bbf53376247f1e2b0cb8dcp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978589d9c71843p-28L 0x1.0d0909bbf53376247f1e2b0cb8dcp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978589d9c71843p-28L 0x1.0d0909bbf53376247f1e2b0cb8dcp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978589d9c718434p-28L 0x1.0d0909bbf53376247f1e2b0cb8ddp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978589d9c7184p-28L 0x1.0d0909bbf53376247f1e2b0cb88p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978589d9c7184p-28L 0x1.0d0909bbf53376247f1e2b0cb9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978589d9c7184p-28L 0x1.0d0909bbf53376247f1e2b0cb88p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d66p-4L : 0x5.e1b28913d319b978589d9c7186p-28L 0x1.0d0909bbf53376247f1e2b0cb9p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f334p-28L 0x1.0d09093cc8a644a2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f333p-28L 0x1.0d09093cc8a644a4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f333p-28L 0x1.0d09093cc8a644a2p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f333p-28L 0x1.0d09093cc8a644a4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f334p-28L 0x1.0d09093cc8a644a2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f333p-28L 0x1.0d09093cc8a644a4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f333p-28L 0x1.0d09093cc8a644a2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f333p-28L 0x1.0d09093cc8a644a4p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f3331414d9e6f8168p-28L 0x1.0d09093cc8a644a3161ccf30d24p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f3331414d9e6f816p-28L 0x1.0d09093cc8a644a3161ccf30d24p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f3331414d9e6f816p-28L 0x1.0d09093cc8a644a3161ccf30d24p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f3331414d9e6f816p-28L 0x1.0d09093cc8a644a3161ccf30d241p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f3331414d9e6f84p-28L 0x1.0d09093cc8a644a3161ccf30d2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f3331414d9e6f8p-28L 0x1.0d09093cc8a644a3161ccf30d28p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f3331414d9e6f8p-28L 0x1.0d09093cc8a644a3161ccf30d2p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d17f3331414d9e6f8p-28L 0x1.0d09093cc8a644a3161ccf30d28p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8ap-56L 0x1.0d0909861773bb18p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8ap-56L 0x1.0d0909861773bb1ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8ap-56L 0x1.0d0909861773bb18p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8a8p-56L 0x1.0d0909861773bb1ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8ap-56L 0x1.0d0909861773bb18p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8ap-56L 0x1.0d0909861773bb1ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8ap-56L 0x1.0d0909861773bb18p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8a8p-56L 0x1.0d0909861773bb1ap+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8a2d2aca619aaccp-56L 0x1.0d0909861773bb191e180db83f5dp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8a2d2aca619aaccp-56L 0x1.0d0909861773bb191e180db83f5ep+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8a2d2aca619aaccp-56L 0x1.0d0909861773bb191e180db83f5dp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8a2d2aca619aadp-56L 0x1.0d0909861773bb191e180db83f5ep+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8a2d2aca619aap-56L 0x1.0d0909861773bb191e180db83fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8a2d2aca619aap-56L 0x1.0d0909861773bb191e180db83f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8a2d2aca619aap-56L 0x1.0d0909861773bb191e180db83fp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b8p-4L : 0x4.48cab952536aa8a2d2aca619acp-56L 0x1.0d0909861773bb191e180db83f8p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec14p-56L 0x1.0d0909861773b71ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec14p-56L 0x1.0d0909861773b72p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec1p-56L 0x1.0d0909861773b71ep+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec1p-56L 0x1.0d0909861773b72p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec14p-56L 0x1.0d0909861773b71ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec14p-56L 0x1.0d0909861773b72p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec1p-56L 0x1.0d0909861773b71ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec1p-56L 0x1.0d0909861773b72p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec13b9a90a98184p-56L 0x1.0d0909861773b71fb9af08a8da5bp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec13b9a90a98183ep-56L 0x1.0d0909861773b71fb9af08a8da5cp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec13b9a90a98183ep-56L 0x1.0d0909861773b71fb9af08a8da5bp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec13b9a90a98183ep-56L 0x1.0d0909861773b71fb9af08a8da5cp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec13b9a90a9819p-56L 0x1.0d0909861773b71fb9af08a8dap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec13b9a90a9818p-56L 0x1.0d0909861773b71fb9af08a8da8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec13b9a90a9818p-56L 0x1.0d0909861773b71fb9af08a8dap+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160bp-4L : -0x2.a8a0734a379aec13b9a90a9818p-56L 0x1.0d0909861773b71fb9af08a8da8p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616bp-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616bp-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616bp-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616cp-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616bp-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616bp-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616bp-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616cp-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616b30c1e0279dbf8p-68L 0x1.0d0909861773b8a5b14bc9b960f9p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616b30c1e0279dcp-68L 0x1.0d0909861773b8a5b14bc9b960fap+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616b30c1e0279dbf8p-68L 0x1.0d0909861773b8a5b14bc9b960f9p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616b30c1e0279dcp-68L 0x1.0d0909861773b8a5b14bc9b960fap+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616b30c1e0279d8p-68L 0x1.0d0909861773b8a5b14bc9b9608p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616b30c1e0279dcp-68L 0x1.0d0909861773b8a5b14bc9b961p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616b30c1e0279d8p-68L 0x1.0d0909861773b8a5b14bc9b9608p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b311p-4L : 0xa.8c12f492e9b616b30c1e0279dcp-68L 0x1.0d0909861773b8a5b14bc9b961p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a5p-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a5p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4cp-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4cp-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a5p-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a5p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4cp-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4cp-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4eb25fc38a72c8p-68L 0x1.0d0909861773b8a5321f3c98bf0dp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4eb25fc38a72c8p-68L 0x1.0d0909861773b8a5321f3c98bf0dp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4eb25fc38a72c6p-68L 0x1.0d0909861773b8a5321f3c98bf0dp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4eb25fc38a72c6p-68L 0x1.0d0909861773b8a5321f3c98bf0ep+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4eb25fc38a73p-68L 0x1.0d0909861773b8a5321f3c98bfp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4eb25fc38a73p-68L 0x1.0d0909861773b8a5321f3c98bfp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4eb25fc38a72p-68L 0x1.0d0909861773b8a5321f3c98bfp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31p-4L : -0x3.56c364a62c551a4eb25fc38a72p-68L 0x1.0d0909861773b8a5321f3c98bf8p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.3a4bc8de5621223799b7c6f12988p-68L 0x1.0d0909861773b8a5651a78abf3f6p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.3a4bc8de5621223799b7c6f1298ap-68L 0x1.0d0909861773b8a5651a78abf3f7p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.3a4bc8de5621223799b7c6f12988p-68L 0x1.0d0909861773b8a5651a78abf3f6p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.3a4bc8de5621223799b7c6f1298ap-68L 0x1.0d0909861773b8a5651a78abf3f7p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.3a4bc8de5621223799b7c6f129p-68L 0x1.0d0909861773b8a5651a78abf38p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.3a4bc8de5621223799b7c6f12ap-68L 0x1.0d0909861773b8a5651a78abf4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.3a4bc8de5621223799b7c6f129p-68L 0x1.0d0909861773b8a5651a78abf38p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d8p-4L 0xd.e2d65939160b31066ap-4L : 0x2.3a4bc8de5621223799b7c6f12ap-68L 0x1.0d0909861773b8a5651a78abf4p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf20551p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf20551p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf20551p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf205518p-28L 0x1.0d0909bbf5337626p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf20551p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf20551p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf20551p-28L 0x1.0d0909bbf5337624p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf205518p-28L 0x1.0d0909bbf5337626p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf2055123f8bd115cc0cp-28L 0x1.0d0909bbf5337624ee34ddbb0c9fp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf2055123f8bd115cc1p-28L 0x1.0d0909bbf5337624ee34ddbb0c9fp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf2055123f8bd115cc0cp-28L 0x1.0d0909bbf5337624ee34ddbb0c9fp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf2055123f8bd115cc1p-28L 0x1.0d0909bbf5337624ee34ddbb0cap+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf2055123f8bd115ccp-28L 0x1.0d0909bbf5337624ee34ddbb0c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf2055123f8bd115ccp-28L 0x1.0d0909bbf5337624ee34ddbb0c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf2055123f8bd115ccp-28L 0x1.0d0909bbf5337624ee34ddbb0c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d66p-4L : 0x5.e1b28913cf2055123f8bd115cep-28L 0x1.0d0909bbf5337624ee34ddbb0dp+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d57897ap-28L 0x1.0d09093cc8a644a2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d57897ap-28L 0x1.0d09093cc8a644a4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979p-28L 0x1.0d09093cc8a644a2p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979p-28L 0x1.0d09093cc8a644a4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d57897ap-28L 0x1.0d09093cc8a644a2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d57897ap-28L 0x1.0d09093cc8a644a4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979p-28L 0x1.0d09093cc8a644a2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979p-28L 0x1.0d09093cc8a644a4p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979e405265d424cp-28L 0x1.0d09093cc8a644a38533821ff8c7p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979e405265d424cp-28L 0x1.0d09093cc8a644a38533821ff8c7p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979e405265d424b8p-28L 0x1.0d09093cc8a644a38533821ff8c7p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979e405265d424b8p-28L 0x1.0d09093cc8a644a38533821ff8c8p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979e405265d428p-28L 0x1.0d09093cc8a644a38533821ff88p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979e405265d424p-28L 0x1.0d09093cc8a644a38533821ff9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979e405265d424p-28L 0x1.0d09093cc8a644a38533821ff88p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65p-4L : -0x8.0123d0c3d578979e405265d424p-28L 0x1.0d09093cc8a644a38533821ff9p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b25p-56L 0x1.0d0909861773bb18p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b258p-56L 0x1.0d0909861773bb1ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b25p-56L 0x1.0d0909861773bb18p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b258p-56L 0x1.0d0909861773bb1ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b25p-56L 0x1.0d0909861773bb18p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b258p-56L 0x1.0d0909861773bb1ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b25p-56L 0x1.0d0909861773bb18p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b258p-56L 0x1.0d0909861773bb1ap+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b2546cd84c35e1acp-56L 0x1.0d0909861773bb198d2ec082080ep+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b2546cd84c35e1bp-56L 0x1.0d0909861773bb198d2ec082080ep+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b2546cd84c35e1acp-56L 0x1.0d0909861773bb198d2ec082080ep+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b2546cd84c35e1bp-56L 0x1.0d0909861773bb198d2ec082080fp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b2546cd84c35ep-56L 0x1.0d0909861773bb198d2ec08208p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b2546cd84c35e2p-56L 0x1.0d0909861773bb198d2ec08208p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b2546cd84c35ep-56L 0x1.0d0909861773bb198d2ec08208p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b8p-4L : 0x4.488b230bc319b2546cd84c35e2p-56L 0x1.0d0909861773bb198d2ec082088p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe268p-56L 0x1.0d0909861773b72p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe264p-56L 0x1.0d0909861773b72p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe264p-56L 0x1.0d0909861773b72p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe264p-56L 0x1.0d0909861773b722p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe268p-56L 0x1.0d0909861773b72p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe264p-56L 0x1.0d0909861773b72p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe264p-56L 0x1.0d0909861773b72p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe264p-56L 0x1.0d0909861773b722p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe2659276e1e3ce74p-56L 0x1.0d0909861773b72028c5bb72a30cp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe2659276e1e3ce72p-56L 0x1.0d0909861773b72028c5bb72a30cp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe2659276e1e3ce72p-56L 0x1.0d0909861773b72028c5bb72a30cp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe2659276e1e3ce72p-56L 0x1.0d0909861773b72028c5bb72a30dp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe2659276e1e3cfp-56L 0x1.0d0909861773b72028c5bb72a3p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe2659276e1e3cep-56L 0x1.0d0909861773b72028c5bb72a3p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe2659276e1e3cep-56L 0x1.0d0909861773b72028c5bb72a3p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160bp-4L : -0x2.a8e00990c7ebe2659276e1e3cep-56L 0x1.0d0909861773b72028c5bb72a38p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e48p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e5p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e48p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e5p-68L 0x1.0d0909861773b8a8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e48p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e5p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e48p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e5p-68L 0x1.0d0909861773b8a8p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e4d4cbc5e729f64p-68L 0x1.0d0909861773b8a620627c8329aap+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e4d4cbc5e729f64p-68L 0x1.0d0909861773b8a620627c8329aap+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e4d4cbc5e729f64p-68L 0x1.0d0909861773b8a620627c8329aap+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e4d4cbc5e729f68p-68L 0x1.0d0909861773b8a620627c8329abp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e4d4cbc5e729ep-68L 0x1.0d0909861773b8a620627c83298p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e4d4cbc5e72ap-68L 0x1.0d0909861773b8a620627c83298p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e4d4cbc5e729ep-68L 0x1.0d0909861773b8a620627c83298p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b311p-4L : 0x6.92ae8b8dda510e4d4cbc5e72ap-68L 0x1.0d0909861773b8a620627c832ap+0L : inexact-ok += clog downward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22cp-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22b8p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22b8p-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22b8p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22cp-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22b8p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22b8p-68L 0x1.0d0909861773b8a4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22b8p-68L 0x1.0d0909861773b8a6p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22bb57b46261899p-68L 0x1.0d0909861773b8a5a135ef6287bdp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22bb57b46261898cp-68L 0x1.0d0909861773b8a5a135ef6287bdp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22bb57b46261898cp-68L 0x1.0d0909861773b8a5a135ef6287bdp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22bb57b46261898cp-68L 0x1.0d0909861773b8a5a135ef6287bep+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22bb57b462618ap-68L 0x1.0d0909861773b8a5a135ef62878p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22bb57b462618ap-68L 0x1.0d0909861773b8a5a135ef62878p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22bb57b4626188p-68L 0x1.0d0909861773b8a5a135ef62878p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31p-4L : -0x7.5027cdab3bba22bb57b4626188p-68L 0x1.0d0909861773b8a5a135ef6288p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.bf18a026b943e63247ae501a5a67p-68L 0x1.0d0909861773b8a5d4312b75bca6p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.bf18a026b943e63247ae501a5a67p-68L 0x1.0d0909861773b8a5d4312b75bca7p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.bf18a026b943e63247ae501a5a66p-68L 0x1.0d0909861773b8a5d4312b75bca6p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.bf18a026b943e63247ae501a5a66p-68L 0x1.0d0909861773b8a5d4312b75bca7p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.bf18a026b943e63247ae501a5a8p-68L 0x1.0d0909861773b8a5d4312b75bc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.bf18a026b943e63247ae501a5a8p-68L 0x1.0d0909861773b8a5d4312b75bc8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.bf18a026b943e63247ae501a5ap-68L 0x1.0d0909861773b8a5d4312b75bc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10dp-4L 0xd.e2d65939160b31066ap-4L : -0x1.bf18a026b943e63247ae501a5ap-68L 0x1.0d0909861773b8a5d4312b75bdp+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d66p-4L : 0x5.e1b28913d0df6db11d9022f39a38p-28L 0x1.0d0909bbf5337624bd63643570cfp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d66p-4L : 0x5.e1b28913d0df6db11d9022f39a3cp-28L 0x1.0d0909bbf5337624bd63643570dp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d66p-4L : 0x5.e1b28913d0df6db11d9022f39a38p-28L 0x1.0d0909bbf5337624bd63643570cfp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d66p-4L : 0x5.e1b28913d0df6db11d9022f39a3cp-28L 0x1.0d0909bbf5337624bd63643570dp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d66p-4L : 0x5.e1b28913d0df6db11d9022f39ap-28L 0x1.0d0909bbf5337624bd636435708p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d66p-4L : 0x5.e1b28913d0df6db11d9022f39ap-28L 0x1.0d0909bbf5337624bd63643571p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d66p-4L : 0x5.e1b28913d0df6db11d9022f39ap-28L 0x1.0d0909bbf5337624bd636435708p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d66p-4L : 0x5.e1b28913d0df6db11d9022f39cp-28L 0x1.0d0909bbf5337624bd63643571p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d3b97efc5a40cc346b38p-28L 0x1.0d09093cc8a644a35462087de059p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d3b97efc5a40cc346b3p-28L 0x1.0d09093cc8a644a35462087de059p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d3b97efc5a40cc346b3p-28L 0x1.0d09093cc8a644a35462087de059p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d3b97efc5a40cc346b3p-28L 0x1.0d09093cc8a644a35462087de05ap+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d3b97efc5a40cc346cp-28L 0x1.0d09093cc8a644a35462087dep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d3b97efc5a40cc346cp-28L 0x1.0d09093cc8a644a35462087de08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d3b97efc5a40cc3468p-28L 0x1.0d09093cc8a644a35462087dep+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65p-4L : -0x8.0123d0c3d3b97efc5a40cc3468p-28L 0x1.0d09093cc8a644a35462087de08p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b8p-4L : 0x4.48a71495c5854691e0941fbfab2cp-56L 0x1.0d0909861773bb195c5d46f05b5cp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b8p-4L : 0x4.48a71495c5854691e0941fbfab2cp-56L 0x1.0d0909861773bb195c5d46f05b5dp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b8p-4L : 0x4.48a71495c5854691e0941fbfab2cp-56L 0x1.0d0909861773bb195c5d46f05b5cp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b8p-4L : 0x4.48a71495c5854691e0941fbfab3p-56L 0x1.0d0909861773bb195c5d46f05b5dp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b8p-4L : 0x4.48a71495c5854691e0941fbfaap-56L 0x1.0d0909861773bb195c5d46f05bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b8p-4L : 0x4.48a71495c5854691e0941fbfacp-56L 0x1.0d0909861773bb195c5d46f05b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b8p-4L : 0x4.48a71495c5854691e0941fbfaap-56L 0x1.0d0909861773bb195c5d46f05bp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b8p-4L : 0x4.48a71495c5854691e0941fbfacp-56L 0x1.0d0909861773bb195c5d46f05b8p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160bp-4L : -0x2.a8c41806c5804e269ab46abdd944p-56L 0x1.0d0909861773b71ff7f441e0f65ap+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160bp-4L : -0x2.a8c41806c5804e269ab46abdd944p-56L 0x1.0d0909861773b71ff7f441e0f65bp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160bp-4L : -0x2.a8c41806c5804e269ab46abdd942p-56L 0x1.0d0909861773b71ff7f441e0f65ap+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160bp-4L : -0x2.a8c41806c5804e269ab46abdd942p-56L 0x1.0d0909861773b71ff7f441e0f65bp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160bp-4L : -0x2.a8c41806c5804e269ab46abddap-56L 0x1.0d0909861773b71ff7f441e0f6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160bp-4L : -0x2.a8c41806c5804e269ab46abdd9p-56L 0x1.0d0909861773b71ff7f441e0f68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160bp-4L : -0x2.a8c41806c5804e269ab46abdd9p-56L 0x1.0d0909861773b71ff7f441e0f6p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160bp-4L : -0x2.a8c41806c5804e269ab46abdd9p-56L 0x1.0d0909861773b71ff7f441e0f68p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b311p-4L : 0x8.51c72bb49394f47dc3775a01987p-68L 0x1.0d0909861773b8a5ef9102f17cf8p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b311p-4L : 0x8.51c72bb49394f47dc3775a01987p-68L 0x1.0d0909861773b8a5ef9102f17cf9p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b311p-4L : 0x8.51c72bb49394f47dc3775a01987p-68L 0x1.0d0909861773b8a5ef9102f17cf8p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b311p-4L : 0x8.51c72bb49394f47dc3775a019878p-68L 0x1.0d0909861773b8a5ef9102f17cf9p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b311p-4L : 0x8.51c72bb49394f47dc3775a0198p-68L 0x1.0d0909861773b8a5ef9102f17c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b311p-4L : 0x8.51c72bb49394f47dc3775a0198p-68L 0x1.0d0909861773b8a5ef9102f17dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b311p-4L : 0x8.51c72bb49394f47dc3775a0198p-68L 0x1.0d0909861773b8a5ef9102f17c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b311p-4L : 0x8.51c72bb49394f47dc3775a019cp-68L 0x1.0d0909861773b8a5ef9102f17dp+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31p-4L : -0x5.910f2d8482763c87d8ec1f9a392p-68L 0x1.0d0909861773b8a5706475d0db0bp+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31p-4L : -0x5.910f2d8482763c87d8ec1f9a392p-68L 0x1.0d0909861773b8a5706475d0db0cp+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31p-4L : -0x5.910f2d8482763c87d8ec1f9a391cp-68L 0x1.0d0909861773b8a5706475d0db0bp+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31p-4L : -0x5.910f2d8482763c87d8ec1f9a391cp-68L 0x1.0d0909861773b8a5706475d0db0cp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31p-4L : -0x5.910f2d8482763c87d8ec1f9a3ap-68L 0x1.0d0909861773b8a5706475d0dbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31p-4L : -0x5.910f2d8482763c87d8ec1f9a3ap-68L 0x1.0d0909861773b8a5706475d0dbp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31p-4L : -0x5.910f2d8482763c87d8ec1f9a38p-68L 0x1.0d0909861773b8a5706475d0dbp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31p-4L : -0x5.910f2d8482763c87d8ec1f9a38p-68L 0x1.0d0909861773b8a5706475d0db8p+0L : inexact-ok += clog downward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31066ap-4L : -0x6p-152L 0x1.0d0909861773b8a5a35fb1e40ff5p+0L : inexact-ok += clog tonearest ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31066ap-4L : -0x6p-152L 0x1.0d0909861773b8a5a35fb1e40ff5p+0L : inexact-ok += clog towardzero ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31066ap-4L : -0x5.fffffffffffffffffffffffffffcp-152L 0x1.0d0909861773b8a5a35fb1e40ff5p+0L : inexact-ok += clog upward ldbl-128 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31066ap-4L : -0x5.fffffffffffffffffffffffffffcp-152L 0x1.0d0909861773b8a5a35fb1e40ff6p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31066ap-4L : -0x6p-152L 0x1.0d0909861773b8a5a35fb1e40f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31066ap-4L : -0x6p-152L 0x1.0d0909861773b8a5a35fb1e41p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31066ap-4L : -0x5.fffffffffffffffffffffffffep-152L 0x1.0d0909861773b8a5a35fb1e40f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.f2c8d20a1eca10d384p-4L 0xd.e2d65939160b31066ap-4L : -0x5.fffffffffffffffffffffffffep-152L 0x1.0d0909861773b8a5a35fb1e41p+0L : inexact-ok +clog 0x3157fc1d73233e580c8p-75 0x761b52ccd435d7c7f5fp-75 += clog downward flt-32 0x6.2aff88p-4f 0xe.c36a6p-4f : 0x7.911ed8p-28f 0x1.2cd006p+0f : inexact-ok += clog tonearest flt-32 0x6.2aff88p-4f 0xe.c36a6p-4f : 0x7.911eep-28f 0x1.2cd008p+0f : inexact-ok += clog towardzero flt-32 0x6.2aff88p-4f 0xe.c36a6p-4f : 0x7.911ed8p-28f 0x1.2cd006p+0f : inexact-ok += clog upward flt-32 0x6.2aff88p-4f 0xe.c36a6p-4f : 0x7.911eep-28f 0x1.2cd008p+0f : inexact-ok += clog downward dbl-64 0x6.2aff88p-4 0xe.c36a6p-4 : 0x7.911ede6be0bc8p-28 0x1.2cd007d60b2b3p+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff88p-4 0xe.c36a6p-4 : 0x7.911ede6be0bc8p-28 0x1.2cd007d60b2b4p+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff88p-4 0xe.c36a6p-4 : 0x7.911ede6be0bc8p-28 0x1.2cd007d60b2b3p+0 : inexact-ok += clog upward dbl-64 0x6.2aff88p-4 0xe.c36a6p-4 : 0x7.911ede6be0bccp-28 0x1.2cd007d60b2b4p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85dp-28L 0x1.2cd007d60b2b3ec2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85dp-28L 0x1.2cd007d60b2b3ec4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85dp-28L 0x1.2cd007d60b2b3ec2p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85d8p-28L 0x1.2cd007d60b2b3ec4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85dp-28L 0x1.2cd007d60b2b3ec2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85dp-28L 0x1.2cd007d60b2b3ec4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85dp-28L 0x1.2cd007d60b2b3ec2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85d8p-28L 0x1.2cd007d60b2b3ec4p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85d29e678b9bc518p-28L 0x1.2cd007d60b2b3ec33c5aade591cfp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85d29e678b9bc518p-28L 0x1.2cd007d60b2b3ec33c5aade591cfp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85d29e678b9bc518p-28L 0x1.2cd007d60b2b3ec33c5aade591cfp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85d29e678b9bc51cp-28L 0x1.2cd007d60b2b3ec33c5aade591dp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85d29e678b9bc4p-28L 0x1.2cd007d60b2b3ec33c5aade5918p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85d29e678b9bc6p-28L 0x1.2cd007d60b2b3ec33c5aade592p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85d29e678b9bc4p-28L 0x1.2cd007d60b2b3ec33c5aade5918p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a6p-4L : 0x7.911ede6be0bc85d29e678b9bc6p-28L 0x1.2cd007d60b2b3ec33c5aade592p+0L : inexact-ok += clog downward flt-32 0x6.2aff88p-4f 0xe.c36a5p-4f : -0x7.324b8p-28f 0x1.2cd006p+0f : inexact-ok += clog tonearest flt-32 0x6.2aff88p-4f 0xe.c36a5p-4f : -0x7.324b78p-28f 0x1.2cd008p+0f : inexact-ok += clog towardzero flt-32 0x6.2aff88p-4f 0xe.c36a5p-4f : -0x7.324b78p-28f 0x1.2cd006p+0f : inexact-ok += clog upward flt-32 0x6.2aff88p-4f 0xe.c36a5p-4f : -0x7.324b78p-28f 0x1.2cd008p+0f : inexact-ok += clog downward dbl-64 0x6.2aff88p-4 0xe.c36a5p-4 : -0x7.324b793ca0224p-28 0x1.2cd007735b32cp+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff88p-4 0xe.c36a5p-4 : -0x7.324b793ca0224p-28 0x1.2cd007735b32cp+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff88p-4 0xe.c36a5p-4 : -0x7.324b793ca022p-28 0x1.2cd007735b32cp+0 : inexact-ok += clog upward dbl-64 0x6.2aff88p-4 0xe.c36a5p-4 : -0x7.324b793ca022p-28 0x1.2cd007735b32dp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca0223658p-28L 0x1.2cd007735b32c10cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca0223658p-28L 0x1.2cd007735b32c10cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365p-28L 0x1.2cd007735b32c10cp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365p-28L 0x1.2cd007735b32c10ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca0223658p-28L 0x1.2cd007735b32c10cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca0223658p-28L 0x1.2cd007735b32c10cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365p-28L 0x1.2cd007735b32c10cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365p-28L 0x1.2cd007735b32c10ep+0L : inexact-ok += clog downward ldbl-128 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365405a5d03f2384p-28L 0x1.2cd007735b32c10c1e0cdcbf0f47p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365405a5d03f2384p-28L 0x1.2cd007735b32c10c1e0cdcbf0f48p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365405a5d03f238p-28L 0x1.2cd007735b32c10c1e0cdcbf0f47p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365405a5d03f238p-28L 0x1.2cd007735b32c10c1e0cdcbf0f48p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365405a5d03f24p-28L 0x1.2cd007735b32c10c1e0cdcbf0fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365405a5d03f24p-28L 0x1.2cd007735b32c10c1e0cdcbf0f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365405a5d03f22p-28L 0x1.2cd007735b32c10c1e0cdcbf0fp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a5p-4L : -0x7.324b793ca022365405a5d03f22p-28L 0x1.2cd007735b32c10c1e0cdcbf0f8p+0L : inexact-ok += clog downward dbl-64 0x6.2aff88p-4 0xe.c36a599a86bbp-4 : 0x1.aa358a1dc51f7p-28 0x1.2cd007ae974b5p+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff88p-4 0xe.c36a599a86bbp-4 : 0x1.aa358a1dc51f8p-28 0x1.2cd007ae974b6p+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff88p-4 0xe.c36a599a86bbp-4 : 0x1.aa358a1dc51f7p-28 0x1.2cd007ae974b5p+0 : inexact-ok += clog upward dbl-64 0x6.2aff88p-4 0xe.c36a599a86bbp-4 : 0x1.aa358a1dc51f8p-28 0x1.2cd007ae974b6p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e34p-28L 0x1.2cd007ae974b588p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e36p-28L 0x1.2cd007ae974b588p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e34p-28L 0x1.2cd007ae974b588p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e36p-28L 0x1.2cd007ae974b5882p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e34p-28L 0x1.2cd007ae974b588p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e36p-28L 0x1.2cd007ae974b588p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e34p-28L 0x1.2cd007ae974b588p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e36p-28L 0x1.2cd007ae974b5882p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e35e0e68da9c965p-28L 0x1.2cd007ae974b58808e1659c2b187p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e35e0e68da9c965p-28L 0x1.2cd007ae974b58808e1659c2b188p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e35e0e68da9c965p-28L 0x1.2cd007ae974b58808e1659c2b187p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e35e0e68da9c966p-28L 0x1.2cd007ae974b58808e1659c2b188p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e35e0e68da9c9p-28L 0x1.2cd007ae974b58808e1659c2b18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e35e0e68da9c98p-28L 0x1.2cd007ae974b58808e1659c2b18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e35e0e68da9c9p-28L 0x1.2cd007ae974b58808e1659c2b18p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86bbp-4L : 0x1.aa358a1dc51f7e35e0e68da9c98p-28L 0x1.2cd007ae974b58808e1659c2b2p+0L : inexact-ok += clog downward dbl-64 0x6.2aff88p-4 0xe.c36a599a86ba8p-4 : 0x1.aa3589a7a9cccp-28 0x1.2cd007ae974b5p+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff88p-4 0xe.c36a599a86ba8p-4 : 0x1.aa3589a7a9ccdp-28 0x1.2cd007ae974b5p+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff88p-4 0xe.c36a599a86ba8p-4 : 0x1.aa3589a7a9cccp-28 0x1.2cd007ae974b5p+0 : inexact-ok += clog upward dbl-64 0x6.2aff88p-4 0xe.c36a599a86ba8p-4 : 0x1.aa3589a7a9ccdp-28 0x1.2cd007ae974b6p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f4p-28L 0x1.2cd007ae974b556ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f6p-28L 0x1.2cd007ae974b556cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f4p-28L 0x1.2cd007ae974b556ap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f6p-28L 0x1.2cd007ae974b556cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f4p-28L 0x1.2cd007ae974b556ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f6p-28L 0x1.2cd007ae974b556cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f4p-28L 0x1.2cd007ae974b556ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f6p-28L 0x1.2cd007ae974b556cp+0L : inexact-ok += clog downward ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f5f06fc59f5bf2p-28L 0x1.2cd007ae974b556b0e52fe102891p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f5f06fc59f5bf2p-28L 0x1.2cd007ae974b556b0e52fe102892p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f5f06fc59f5bf2p-28L 0x1.2cd007ae974b556b0e52fe102891p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f5f06fc59f5bf3p-28L 0x1.2cd007ae974b556b0e52fe102892p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f5f06fc59f5b8p-28L 0x1.2cd007ae974b556b0e52fe10288p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f5f06fc59f5cp-28L 0x1.2cd007ae974b556b0e52fe10288p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f5f06fc59f5b8p-28L 0x1.2cd007ae974b556b0e52fe10288p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86ba8p-4L : 0x1.aa3589a7a9ccc9f5f06fc59f5cp-28L 0x1.2cd007ae974b556b0e52fe1029p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85ap-28L 0x1.2cd007ae974b5854p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85ap-28L 0x1.2cd007ae974b5856p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85ap-28L 0x1.2cd007ae974b5854p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85cp-28L 0x1.2cd007ae974b5856p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85ap-28L 0x1.2cd007ae974b5854p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85ap-28L 0x1.2cd007ae974b5856p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85ap-28L 0x1.2cd007ae974b5854p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85cp-28L 0x1.2cd007ae974b5856p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85a61c02153467fp-28L 0x1.2cd007ae974b58556119aabeee0bp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85a61c02153468p-28L 0x1.2cd007ae974b58556119aabeee0cp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85a61c02153467fp-28L 0x1.2cd007ae974b58556119aabeee0bp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85a61c02153468p-28L 0x1.2cd007ae974b58556119aabeee0cp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85a61c0215346p-28L 0x1.2cd007ae974b58556119aabeeep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85a61c02153468p-28L 0x1.2cd007ae974b58556119aabeeep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85a61c0215346p-28L 0x1.2cd007ae974b58556119aabeeep+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf9p-4L : 0x1.aa358a174fa0f85a61c02153468p-28L 0x1.2cd007ae974b58556119aabeee8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e02p-28L 0x1.2cd007ae974b5854p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e04p-28L 0x1.2cd007ae974b5854p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e02p-28L 0x1.2cd007ae974b5854p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e04p-28L 0x1.2cd007ae974b5856p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e02p-28L 0x1.2cd007ae974b5854p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e04p-28L 0x1.2cd007ae974b5854p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e02p-28L 0x1.2cd007ae974b5854p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e04p-28L 0x1.2cd007ae974b5856p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e03d9c212a24e95p-28L 0x1.2cd007ae974b5854fe69b25377bap+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e03d9c212a24e96p-28L 0x1.2cd007ae974b5854fe69b25377bap+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e03d9c212a24e95p-28L 0x1.2cd007ae974b5854fe69b25377bap+0L : inexact-ok += clog upward ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e03d9c212a24e96p-28L 0x1.2cd007ae974b5854fe69b25377bbp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e03d9c212a24e8p-28L 0x1.2cd007ae974b5854fe69b253778p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e03d9c212a24e8p-28L 0x1.2cd007ae974b5854fe69b253778p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e03d9c212a24e8p-28L 0x1.2cd007ae974b5854fe69b253778p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf8fp-4L : 0x1.aa358a1740dd8e03d9c212a24fp-28L 0x1.2cd007ae974b5854fe69b25378p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf8febep-4L : 0x1.aa358a174e77db9e544f486b9d6ap-28L 0x1.2cd007ae974b5855595795577b5ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf8febep-4L : 0x1.aa358a174e77db9e544f486b9d6bp-28L 0x1.2cd007ae974b5855595795577b5ep+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf8febep-4L : 0x1.aa358a174e77db9e544f486b9d6ap-28L 0x1.2cd007ae974b5855595795577b5ep+0L : inexact-ok += clog upward ldbl-128 0x6.2aff88p-4L 0xe.c36a599a86baf8febep-4L : 0x1.aa358a174e77db9e544f486b9d6bp-28L 0x1.2cd007ae974b5855595795577b5fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf8febep-4L : 0x1.aa358a174e77db9e544f486b9dp-28L 0x1.2cd007ae974b5855595795577bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf8febep-4L : 0x1.aa358a174e77db9e544f486b9d8p-28L 0x1.2cd007ae974b5855595795577b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf8febep-4L : 0x1.aa358a174e77db9e544f486b9dp-28L 0x1.2cd007ae974b5855595795577bp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff88p-4L 0xe.c36a599a86baf8febep-4L : 0x1.aa358a174e77db9e544f486b9d8p-28L 0x1.2cd007ae974b5855595795577b8p+0L : inexact-ok += clog downward flt-32 0x6.2aff8p-4f 0xe.c36a6p-4f : 0x4.7b9f18p-28f 0x1.2cd008p+0f : inexact-ok += clog tonearest flt-32 0x6.2aff8p-4f 0xe.c36a6p-4f : 0x4.7b9f2p-28f 0x1.2cd008p+0f : inexact-ok += clog towardzero flt-32 0x6.2aff8p-4f 0xe.c36a6p-4f : 0x4.7b9f18p-28f 0x1.2cd008p+0f : inexact-ok += clog upward flt-32 0x6.2aff8p-4f 0xe.c36a6p-4f : 0x4.7b9f2p-28f 0x1.2cd00ap+0f : inexact-ok += clog downward dbl-64 0x6.2aff8p-4 0xe.c36a6p-4 : 0x4.7b9f1ebe754b8p-28 0x1.2cd0084c267dep+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff8p-4 0xe.c36a6p-4 : 0x4.7b9f1ebe754bcp-28 0x1.2cd0084c267dep+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff8p-4 0xe.c36a6p-4 : 0x4.7b9f1ebe754b8p-28 0x1.2cd0084c267dep+0 : inexact-ok += clog upward dbl-64 0x6.2aff8p-4 0xe.c36a6p-4 : 0x4.7b9f1ebe754bcp-28 0x1.2cd0084c267dfp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd9p-28L 0x1.2cd0084c267de5dp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd9p-28L 0x1.2cd0084c267de5dp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd9p-28L 0x1.2cd0084c267de5dp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd98p-28L 0x1.2cd0084c267de5d2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd9p-28L 0x1.2cd0084c267de5dp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd9p-28L 0x1.2cd0084c267de5dp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd9p-28L 0x1.2cd0084c267de5dp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd98p-28L 0x1.2cd0084c267de5d2p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd92718f77c2cep-28L 0x1.2cd0084c267de5d0af528fd8b295p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd92718f77c2cep-28L 0x1.2cd0084c267de5d0af528fd8b295p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd92718f77c2cep-28L 0x1.2cd0084c267de5d0af528fd8b295p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd92718f77c2ce04p-28L 0x1.2cd0084c267de5d0af528fd8b296p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd92718f77c2cep-28L 0x1.2cd0084c267de5d0af528fd8b28p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd92718f77c2cep-28L 0x1.2cd0084c267de5d0af528fd8b28p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd92718f77c2cep-28L 0x1.2cd0084c267de5d0af528fd8b28p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a6p-4L : 0x4.7b9f1ebe754bbd92718f77c2dp-28L 0x1.2cd0084c267de5d0af528fd8b3p+0L : inexact-ok += clog downward flt-32 0x6.2aff8p-4f 0xe.c36a5p-4f : -0xa.47cb4p-28f 0x1.2cd006p+0f : inexact-ok += clog tonearest flt-32 0x6.2aff8p-4f 0xe.c36a5p-4f : -0xa.47cb4p-28f 0x1.2cd008p+0f : inexact-ok += clog towardzero flt-32 0x6.2aff8p-4f 0xe.c36a5p-4f : -0xa.47cb3p-28f 0x1.2cd006p+0f : inexact-ok += clog upward flt-32 0x6.2aff8p-4f 0xe.c36a5p-4f : -0xa.47cb3p-28f 0x1.2cd008p+0f : inexact-ok += clog downward dbl-64 0x6.2aff8p-4 0xe.c36a5p-4 : -0xa.47cb3e9b00318p-28 0x1.2cd007e97685cp+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff8p-4 0xe.c36a5p-4 : -0xa.47cb3e9b00318p-28 0x1.2cd007e97685cp+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff8p-4 0xe.c36a5p-4 : -0xa.47cb3e9b0031p-28 0x1.2cd007e97685cp+0 : inexact-ok += clog upward dbl-64 0x6.2aff8p-4 0xe.c36a5p-4 : -0xa.47cb3e9b0031p-28 0x1.2cd007e97685dp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314edp-28L 0x1.2cd007e97685c20ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314edp-28L 0x1.2cd007e97685c20ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecp-28L 0x1.2cd007e97685c20ep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecp-28L 0x1.2cd007e97685c21p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314edp-28L 0x1.2cd007e97685c20ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314edp-28L 0x1.2cd007e97685c20ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecp-28L 0x1.2cd007e97685c20ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecp-28L 0x1.2cd007e97685c21p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecd8bc1ce46f66p-28L 0x1.2cd007e97685c20e5e073459cc3ap+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecd8bc1ce46f66p-28L 0x1.2cd007e97685c20e5e073459cc3ap+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecd8bc1ce46f658p-28L 0x1.2cd007e97685c20e5e073459cc3ap+0L : inexact-ok += clog upward ldbl-128 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecd8bc1ce46f658p-28L 0x1.2cd007e97685c20e5e073459cc3bp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecd8bc1ce46f8p-28L 0x1.2cd007e97685c20e5e073459ccp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecd8bc1ce46f8p-28L 0x1.2cd007e97685c20e5e073459ccp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecd8bc1ce46f4p-28L 0x1.2cd007e97685c20e5e073459ccp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a5p-4L : -0xa.47cb3e9b00314ecd8bc1ce46f4p-28L 0x1.2cd007e97685c20e5e073459cc8p+0L : inexact-ok += clog downward dbl-64 0x6.2aff8p-4 0xe.c36a599a86bbp-4 : -0x1.6b4a37d61a35dp-28 0x1.2cd00824b29e2p+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff8p-4 0xe.c36a599a86bbp-4 : -0x1.6b4a37d61a35dp-28 0x1.2cd00824b29e2p+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff8p-4 0xe.c36a599a86bbp-4 : -0x1.6b4a37d61a35cp-28 0x1.2cd00824b29e2p+0 : inexact-ok += clog upward dbl-64 0x6.2aff8p-4 0xe.c36a599a86bbp-4 : -0x1.6b4a37d61a35cp-28 0x1.2cd00824b29e3p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35ccdp-28L 0x1.2cd00824b29e2384p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35cccep-28L 0x1.2cd00824b29e2384p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35cccep-28L 0x1.2cd00824b29e2384p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35cccep-28L 0x1.2cd00824b29e2386p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35ccdp-28L 0x1.2cd00824b29e2384p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35cccep-28L 0x1.2cd00824b29e2384p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35cccep-28L 0x1.2cd00824b29e2384p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35cccep-28L 0x1.2cd00824b29e2386p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35ccce023c53970f66p-28L 0x1.2cd00824b29e2384510107045a0bp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35ccce023c53970f65p-28L 0x1.2cd00824b29e2384510107045a0bp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35ccce023c53970f65p-28L 0x1.2cd00824b29e2384510107045a0bp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35ccce023c53970f65p-28L 0x1.2cd00824b29e2384510107045a0cp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35ccce023c53970f8p-28L 0x1.2cd00824b29e2384510107045ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35ccce023c53970f8p-28L 0x1.2cd00824b29e2384510107045ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35ccce023c53970fp-28L 0x1.2cd00824b29e2384510107045ap+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86bbp-4L : -0x1.6b4a37d61a35ccce023c53970fp-28L 0x1.2cd00824b29e2384510107045a8p+0L : inexact-ok += clog downward dbl-64 0x6.2aff8p-4 0xe.c36a599a86ba8p-4 : -0x1.6b4a384c3588bp-28 0x1.2cd00824b29e2p+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff8p-4 0xe.c36a599a86ba8p-4 : -0x1.6b4a384c3588bp-28 0x1.2cd00824b29e2p+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff8p-4 0xe.c36a599a86ba8p-4 : -0x1.6b4a384c3588ap-28 0x1.2cd00824b29e2p+0 : inexact-ok += clog upward dbl-64 0x6.2aff8p-4 0xe.c36a599a86ba8p-4 : -0x1.6b4a384c3588ap-28 0x1.2cd00824b29e3p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae96p-28L 0x1.2cd00824b29e206ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae96p-28L 0x1.2cd00824b29e206ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae94p-28L 0x1.2cd00824b29e206ep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae94p-28L 0x1.2cd00824b29e207p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae96p-28L 0x1.2cd00824b29e206ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae96p-28L 0x1.2cd00824b29e206ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae94p-28L 0x1.2cd00824b29e206ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae94p-28L 0x1.2cd00824b29e207p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae959799b7d7ca28p-28L 0x1.2cd00824b29e206ed1407af838dbp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae959799b7d7ca28p-28L 0x1.2cd00824b29e206ed1407af838dcp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae959799b7d7ca27p-28L 0x1.2cd00824b29e206ed1407af838dbp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae959799b7d7ca27p-28L 0x1.2cd00824b29e206ed1407af838dcp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae959799b7d7ca8p-28L 0x1.2cd00824b29e206ed1407af8388p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae959799b7d7cap-28L 0x1.2cd00824b29e206ed1407af839p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae959799b7d7cap-28L 0x1.2cd00824b29e206ed1407af8388p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86ba8p-4L : -0x1.6b4a384c3588ae959799b7d7cap-28L 0x1.2cd00824b29e206ed1407af839p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45528p-28L 0x1.2cd00824b29e2358p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526p-28L 0x1.2cd00824b29e235ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526p-28L 0x1.2cd00824b29e2358p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526p-28L 0x1.2cd00824b29e235ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45528p-28L 0x1.2cd00824b29e2358p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526p-28L 0x1.2cd00824b29e235ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526p-28L 0x1.2cd00824b29e2358p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526p-28L 0x1.2cd00824b29e235ap+0L : inexact-ok += clog downward ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526ec675c788a6dp-28L 0x1.2cd00824b29e235924047f5bb03bp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526ec675c788a6dp-28L 0x1.2cd00824b29e235924047f5bb03cp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526ec675c788a6cp-28L 0x1.2cd00824b29e235924047f5bb03bp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526ec675c788a6cp-28L 0x1.2cd00824b29e235924047f5bb03cp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526ec675c788a8p-28L 0x1.2cd00824b29e235924047f5bbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526ec675c788a8p-28L 0x1.2cd00824b29e235924047f5bbp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526ec675c788ap-28L 0x1.2cd00824b29e235924047f5bbp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf9p-4L : -0x1.6b4a37dc8fb45526ec675c788ap-28L 0x1.2cd00824b29e235924047f5bb08p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf84p-28L 0x1.2cd00824b29e2358p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf84p-28L 0x1.2cd00824b29e2358p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf82p-28L 0x1.2cd00824b29e2358p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf82p-28L 0x1.2cd00824b29e235ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf84p-28L 0x1.2cd00824b29e2358p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf84p-28L 0x1.2cd00824b29e2358p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf82p-28L 0x1.2cd00824b29e2358p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf82p-28L 0x1.2cd00824b29e235ap+0L : inexact-ok += clog downward ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf83255a07fd092p-28L 0x1.2cd00824b29e2358c154874a2eb7p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf83255a07fd092p-28L 0x1.2cd00824b29e2358c154874a2eb8p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf83255a07fd091fp-28L 0x1.2cd00824b29e2358c154874a2eb7p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf83255a07fd091fp-28L 0x1.2cd00824b29e2358c154874a2eb8p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf83255a07fd098p-28L 0x1.2cd00824b29e2358c154874a2e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf83255a07fd09p-28L 0x1.2cd00824b29e2358c154874a2e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf83255a07fd09p-28L 0x1.2cd00824b29e2358c154874a2e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf8fp-4L : -0x1.6b4a37dc9e77bf83255a07fd09p-28L 0x1.2cd00824b29e2358c154874a2fp+0L : inexact-ok += clog downward ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf8febep-4L : -0x1.6b4a37dc90dd71e36c617034547bp-28L 0x1.2cd00824b29e23591c4269fb4fedp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf8febep-4L : -0x1.6b4a37dc90dd71e36c617034547ap-28L 0x1.2cd00824b29e23591c4269fb4fedp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf8febep-4L : -0x1.6b4a37dc90dd71e36c617034547ap-28L 0x1.2cd00824b29e23591c4269fb4fedp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff8p-4L 0xe.c36a599a86baf8febep-4L : -0x1.6b4a37dc90dd71e36c617034547ap-28L 0x1.2cd00824b29e23591c4269fb4feep+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf8febep-4L : -0x1.6b4a37dc90dd71e36c617034548p-28L 0x1.2cd00824b29e23591c4269fb4f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf8febep-4L : -0x1.6b4a37dc90dd71e36c617034548p-28L 0x1.2cd00824b29e23591c4269fb5p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf8febep-4L : -0x1.6b4a37dc90dd71e36c61703454p-28L 0x1.2cd00824b29e23591c4269fb4f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff8p-4L 0xe.c36a599a86baf8febep-4L : -0x1.6b4a37dc90dd71e36c61703454p-28L 0x1.2cd00824b29e23591c4269fb5p+0L : inexact-ok += clog downward dbl-64 0x6.2aff83ae6468p-4 0xe.c36a6p-4 : 0x5.e6e955a36fa0cp-28 0x1.2cd00815cda24p+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff83ae6468p-4 0xe.c36a6p-4 : 0x5.e6e955a36fa1p-28 0x1.2cd00815cda24p+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff83ae6468p-4 0xe.c36a6p-4 : 0x5.e6e955a36fa0cp-28 0x1.2cd00815cda24p+0 : inexact-ok += clog upward dbl-64 0x6.2aff83ae6468p-4 0xe.c36a6p-4 : 0x5.e6e955a36fa1p-28 0x1.2cd00815cda25p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0ede8p-28L 0x1.2cd00815cda246e6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0ede8p-28L 0x1.2cd00815cda246e6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0ede8p-28L 0x1.2cd00815cda246e6p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0edfp-28L 0x1.2cd00815cda246e8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0ede8p-28L 0x1.2cd00815cda246e6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0ede8p-28L 0x1.2cd00815cda246e6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0ede8p-28L 0x1.2cd00815cda246e6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0edfp-28L 0x1.2cd00815cda246e8p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0edebc95f7c68d954p-28L 0x1.2cd00815cda246e63160b554f738p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0edebc95f7c68d958p-28L 0x1.2cd00815cda246e63160b554f739p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0edebc95f7c68d954p-28L 0x1.2cd00815cda246e63160b554f738p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0edebc95f7c68d958p-28L 0x1.2cd00815cda246e63160b554f739p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0edebc95f7c68d8p-28L 0x1.2cd00815cda246e63160b554f7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0edebc95f7c68dap-28L 0x1.2cd00815cda246e63160b554f7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0edebc95f7c68d8p-28L 0x1.2cd00815cda246e63160b554f7p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a6p-4L : 0x5.e6e955a36fa0edebc95f7c68dap-28L 0x1.2cd00815cda246e63160b554f78p+0L : inexact-ok += clog downward dbl-64 0x6.2aff83ae6468p-4 0xe.c36a5p-4 : -0x8.dc81051799ebp-28 0x1.2cd007b31da9fp+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff83ae6468p-4 0xe.c36a5p-4 : -0x8.dc81051799ea8p-28 0x1.2cd007b31daap+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff83ae6468p-4 0xe.c36a5p-4 : -0x8.dc81051799ea8p-28 0x1.2cd007b31da9fp+0 : inexact-ok += clog upward dbl-64 0x6.2aff83ae6468p-4 0xe.c36a5p-4 : -0x8.dc81051799ea8p-28 0x1.2cd007b31daap+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe2p-28L 0x1.2cd007b31da9f9bep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe1p-28L 0x1.2cd007b31da9f9cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe1p-28L 0x1.2cd007b31da9f9bep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe1p-28L 0x1.2cd007b31da9f9cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe2p-28L 0x1.2cd007b31da9f9bep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe1p-28L 0x1.2cd007b31da9f9cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe1p-28L 0x1.2cd007b31da9f9bep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe1p-28L 0x1.2cd007b31da9f9cp+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe17f7fd0ebc3a3p-28L 0x1.2cd007b31da9f9bf1db548edbc81p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe17f7fd0ebc3a3p-28L 0x1.2cd007b31da9f9bf1db548edbc81p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe17f7fd0ebc3a28p-28L 0x1.2cd007b31da9f9bf1db548edbc81p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe17f7fd0ebc3a28p-28L 0x1.2cd007b31da9f9bf1db548edbc82p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe17f7fd0ebc3cp-28L 0x1.2cd007b31da9f9bf1db548edbc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe17f7fd0ebc3cp-28L 0x1.2cd007b31da9f9bf1db548edbc8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe17f7fd0ebc38p-28L 0x1.2cd007b31da9f9bf1db548edbc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a5p-4L : -0x8.dc81051799eabe17f7fd0ebc38p-28L 0x1.2cd007b31da9f9bf1db548edbdp+0L : inexact-ok += clog downward dbl-64 0x6.2aff83ae6468p-4 0xe.c36a599a86bbp-4 : 0x1.ae47bd52db6c7p-56 0x1.2cd007ee59c27p+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff83ae6468p-4 0xe.c36a599a86bbp-4 : 0x1.ae47bd52db6c8p-56 0x1.2cd007ee59c27p+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff83ae6468p-4 0xe.c36a599a86bbp-4 : 0x1.ae47bd52db6c7p-56 0x1.2cd007ee59c27p+0 : inexact-ok += clog upward dbl-64 0x6.2aff83ae6468p-4 0xe.c36a599a86bbp-4 : 0x1.ae47bd52db6c8p-56 0x1.2cd007ee59c28p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2cp-56L 0x1.2cd007ee59c2740cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2cp-56L 0x1.2cd007ee59c2740ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2cp-56L 0x1.2cd007ee59c2740cp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2ep-56L 0x1.2cd007ee59c2740ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2cp-56L 0x1.2cd007ee59c2740cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2cp-56L 0x1.2cd007ee59c2740ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2cp-56L 0x1.2cd007ee59c2740cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2ep-56L 0x1.2cd007ee59c2740ep+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2ccaebe316e65fp-56L 0x1.2cd007ee59c2740d8468f13945c4p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2ccaebe316e65fp-56L 0x1.2cd007ee59c2740d8468f13945c5p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2ccaebe316e65fp-56L 0x1.2cd007ee59c2740d8468f13945c4p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2ccaebe316e66p-56L 0x1.2cd007ee59c2740d8468f13945c5p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2ccaebe316e6p-56L 0x1.2cd007ee59c2740d8468f139458p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2ccaebe316e68p-56L 0x1.2cd007ee59c2740d8468f13946p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2ccaebe316e6p-56L 0x1.2cd007ee59c2740d8468f139458p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86bbp-4L : 0x1.ae47bd52db6c7d2ccaebe316e68p-56L 0x1.2cd007ee59c2740d8468f13946p+0L : inexact-ok += clog downward dbl-64 0x6.2aff83ae6468p-4 0xe.c36a599a86ba8p-4 : -0x5.b36d6f7a67f14p-56 0x1.2cd007ee59c27p+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff83ae6468p-4 0xe.c36a599a86ba8p-4 : -0x5.b36d6f7a67f1p-56 0x1.2cd007ee59c27p+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff83ae6468p-4 0xe.c36a599a86ba8p-4 : -0x5.b36d6f7a67f1p-56 0x1.2cd007ee59c27p+0 : inexact-ok += clog upward dbl-64 0x6.2aff83ae6468p-4 0xe.c36a599a86ba8p-4 : -0x5.b36d6f7a67f1p-56 0x1.2cd007ee59c28p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f10088p-56L 0x1.2cd007ee59c270f8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f1008p-56L 0x1.2cd007ee59c270f8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f1008p-56L 0x1.2cd007ee59c270f8p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f1008p-56L 0x1.2cd007ee59c270fap+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f10088p-56L 0x1.2cd007ee59c270f8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f1008p-56L 0x1.2cd007ee59c270f8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f1008p-56L 0x1.2cd007ee59c270f8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f1008p-56L 0x1.2cd007ee59c270fap+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f100800893755b8c74p-56L 0x1.2cd007ee59c270f804a71a0711b8p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f100800893755b8c74p-56L 0x1.2cd007ee59c270f804a71a0711b8p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f100800893755b8c7p-56L 0x1.2cd007ee59c270f804a71a0711b8p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f100800893755b8c7p-56L 0x1.2cd007ee59c270f804a71a0711b9p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f100800893755b8ep-56L 0x1.2cd007ee59c270f804a71a07118p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f100800893755b8cp-56L 0x1.2cd007ee59c270f804a71a07118p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f100800893755b8cp-56L 0x1.2cd007ee59c270f804a71a07118p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86ba8p-4L : -0x5.b36d6f7a67f100800893755b8cp-56L 0x1.2cd007ee59c270f804a71a0712p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176p-56L 0x1.2cd007ee59c273e2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176p-56L 0x1.2cd007ee59c273e2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176p-56L 0x1.2cd007ee59c273e2p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6178p-56L 0x1.2cd007ee59c273e4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176p-56L 0x1.2cd007ee59c273e2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176p-56L 0x1.2cd007ee59c273e2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176p-56L 0x1.2cd007ee59c273e2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6178p-56L 0x1.2cd007ee59c273e4p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176f84d27457e83p-56L 0x1.2cd007ee59c273e2576c577486edp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176f84d27457e84p-56L 0x1.2cd007ee59c273e2576c577486edp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176f84d27457e83p-56L 0x1.2cd007ee59c273e2576c577486edp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176f84d27457e84p-56L 0x1.2cd007ee59c273e2576c577486eep+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176f84d27457e8p-56L 0x1.2cd007ee59c273e2576c5774868p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176f84d27457e8p-56L 0x1.2cd007ee59c273e2576c577487p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176f84d27457e8p-56L 0x1.2cd007ee59c273e2576c5774868p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf9p-4L : 0x1.46efd4dfa1bd6176f84d27457fp-56L 0x1.2cd007ee59c273e2576c577487p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c8p-56L 0x1.2cd007ee59c273ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5cap-56L 0x1.2cd007ee59c273e2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c8p-56L 0x1.2cd007ee59c273ep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5cap-56L 0x1.2cd007ee59c273e2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c8p-56L 0x1.2cd007ee59c273ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5cap-56L 0x1.2cd007ee59c273e2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c8p-56L 0x1.2cd007ee59c273ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5cap-56L 0x1.2cd007ee59c273e2p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c9c348f71c42bdp-56L 0x1.2cd007ee59c273e1f4bc5f39a0a6p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c9c348f71c42bdp-56L 0x1.2cd007ee59c273e1f4bc5f39a0a7p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c9c348f71c42bdp-56L 0x1.2cd007ee59c273e1f4bc5f39a0a6p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c9c348f71c42bep-56L 0x1.2cd007ee59c273e1f4bc5f39a0a7p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c9c348f71c428p-56L 0x1.2cd007ee59c273e1f4bc5f39a08p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c9c348f71c428p-56L 0x1.2cd007ee59c273e1f4bc5f39a08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c9c348f71c428p-56L 0x1.2cd007ee59c273e1f4bc5f39a08p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8fp-4L : 0x1.46039e3a0814f5c9c348f71c43p-56L 0x1.2cd007ee59c273e1f4bc5f39a1p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8febep-4L : 0x1.46dd4313dd0903fffa88b7092dffp-56L 0x1.2cd007ee59c273e24faa4210e592p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8febep-4L : 0x1.46dd4313dd0903fffa88b7092ep-56L 0x1.2cd007ee59c273e24faa4210e593p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8febep-4L : 0x1.46dd4313dd0903fffa88b7092dffp-56L 0x1.2cd007ee59c273e24faa4210e592p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8febep-4L : 0x1.46dd4313dd0903fffa88b7092ep-56L 0x1.2cd007ee59c273e24faa4210e593p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8febep-4L : 0x1.46dd4313dd0903fffa88b7092d8p-56L 0x1.2cd007ee59c273e24faa4210e58p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8febep-4L : 0x1.46dd4313dd0903fffa88b7092ep-56L 0x1.2cd007ee59c273e24faa4210e58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8febep-4L : 0x1.46dd4313dd0903fffa88b7092d8p-56L 0x1.2cd007ee59c273e24faa4210e58p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6468p-4L 0xe.c36a599a86baf8febep-4L : 0x1.46dd4313dd0903fffa88b7092ep-56L 0x1.2cd007ee59c273e24faa4210e6p+0L : inexact-ok += clog downward dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a6p-4 : 0x5.e6e9558ac3a2cp-28 0x1.2cd00815cda24p+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a6p-4 : 0x5.e6e9558ac3a3p-28 0x1.2cd00815cda25p+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a6p-4 : 0x5.e6e9558ac3a2cp-28 0x1.2cd00815cda24p+0 : inexact-ok += clog upward dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a6p-4 : 0x5.e6e9558ac3a3p-28 0x1.2cd00815cda25p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f16p-28L 0x1.2cd00815cda24a96p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f168p-28L 0x1.2cd00815cda24a98p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f16p-28L 0x1.2cd00815cda24a96p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f168p-28L 0x1.2cd00815cda24a98p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f16p-28L 0x1.2cd00815cda24a96p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f168p-28L 0x1.2cd00815cda24a98p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f16p-28L 0x1.2cd00815cda24a96p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f168p-28L 0x1.2cd00815cda24a98p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f165d6e3ddbf5c44p-28L 0x1.2cd00815cda24a970bf5fc44264cp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f165d6e3ddbf5c44p-28L 0x1.2cd00815cda24a970bf5fc44264dp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f165d6e3ddbf5c44p-28L 0x1.2cd00815cda24a970bf5fc44264cp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f165d6e3ddbf5c48p-28L 0x1.2cd00815cda24a970bf5fc44264dp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f165d6e3ddbf5cp-28L 0x1.2cd00815cda24a970bf5fc4426p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f165d6e3ddbf5cp-28L 0x1.2cd00815cda24a970bf5fc44268p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f165d6e3ddbf5cp-28L 0x1.2cd00815cda24a970bf5fc4426p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a6p-4L : 0x5.e6e9558ac3a2f165d6e3ddbf5ep-28L 0x1.2cd00815cda24a970bf5fc44268p+0L : inexact-ok += clog downward dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a5p-4 : -0x8.dc81053045e9p-28 0x1.2cd007b31da9fp+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a5p-4 : -0x8.dc81053045e9p-28 0x1.2cd007b31daap+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a5p-4 : -0x8.dc81053045e88p-28 0x1.2cd007b31da9fp+0 : inexact-ok += clog upward dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a5p-4 : -0x8.dc81053045e88p-28 0x1.2cd007b31daap+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e83p-28L 0x1.2cd007b31da9fd6ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e82p-28L 0x1.2cd007b31da9fd7p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e82p-28L 0x1.2cd007b31da9fd6ep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e82p-28L 0x1.2cd007b31da9fd7p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e83p-28L 0x1.2cd007b31da9fd6ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e82p-28L 0x1.2cd007b31da9fd7p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e82p-28L 0x1.2cd007b31da9fd6ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e82p-28L 0x1.2cd007b31da9fd7p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e8258f6a3ae024c8p-28L 0x1.2cd007b31da9fd6ff84d5f8353cep+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e8258f6a3ae024cp-28L 0x1.2cd007b31da9fd6ff84d5f8353cep+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e8258f6a3ae024cp-28L 0x1.2cd007b31da9fd6ff84d5f8353cep+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e8258f6a3ae024cp-28L 0x1.2cd007b31da9fd6ff84d5f8353cfp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e8258f6a3ae028p-28L 0x1.2cd007b31da9fd6ff84d5f83538p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e8258f6a3ae024p-28L 0x1.2cd007b31da9fd6ff84d5f8354p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e8258f6a3ae024p-28L 0x1.2cd007b31da9fd6ff84d5f83538p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a5p-4L : -0x8.dc81053045e8e8258f6a3ae024p-28L 0x1.2cd007b31da9fd6ff84d5f8354p+0L : inexact-ok += clog downward dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a599a86bbp-4 : 0x2.387dc67425286p-60 0x1.2cd007ee59c27p+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a599a86bbp-4 : 0x2.387dc67425288p-60 0x1.2cd007ee59c27p+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a599a86bbp-4 : 0x2.387dc67425286p-60 0x1.2cd007ee59c27p+0 : inexact-ok += clog upward dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a599a86bbp-4 : 0x2.387dc67425288p-60 0x1.2cd007ee59c28p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fbp-60L 0x1.2cd007ee59c277bep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fbp-60L 0x1.2cd007ee59c277bep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fbp-60L 0x1.2cd007ee59c277bep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fb4p-60L 0x1.2cd007ee59c277cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fbp-60L 0x1.2cd007ee59c277bep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fbp-60L 0x1.2cd007ee59c277bep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fbp-60L 0x1.2cd007ee59c277bep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fb4p-60L 0x1.2cd007ee59c277cp+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fb1191a19133d82p-60L 0x1.2cd007ee59c277be5eff57daf47ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fb1191a19133d82p-60L 0x1.2cd007ee59c277be5eff57daf47ep+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fb1191a19133d82p-60L 0x1.2cd007ee59c277be5eff57daf47ep+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fb1191a19133d84p-60L 0x1.2cd007ee59c277be5eff57daf47fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fb1191a19133dp-60L 0x1.2cd007ee59c277be5eff57daf4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fb1191a19133ep-60L 0x1.2cd007ee59c277be5eff57daf48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fb1191a19133dp-60L 0x1.2cd007ee59c277be5eff57daf4p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86bbp-4L : 0x2.387dc67425287fb1191a19133ep-60L 0x1.2cd007ee59c277be5eff57daf48p+0L : inexact-ok += clog downward dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a599a86ba8p-4 : -0x7.3e2d5066010b4p-56 0x1.2cd007ee59c27p+0 : inexact-ok += clog tonearest dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a599a86ba8p-4 : -0x7.3e2d5066010bp-56 0x1.2cd007ee59c27p+0 : inexact-ok += clog towardzero dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a599a86ba8p-4 : -0x7.3e2d5066010bp-56 0x1.2cd007ee59c27p+0 : inexact-ok += clog upward dbl-64 0x6.2aff83ae6467cp-4 0xe.c36a599a86ba8p-4 : -0x7.3e2d5066010bp-56 0x1.2cd007ee59c28p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c78p-56L 0x1.2cd007ee59c274a8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c78p-56L 0x1.2cd007ee59c274a8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7p-56L 0x1.2cd007ee59c274a8p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7p-56L 0x1.2cd007ee59c274aap+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c78p-56L 0x1.2cd007ee59c274a8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c78p-56L 0x1.2cd007ee59c274a8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7p-56L 0x1.2cd007ee59c274a8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7p-56L 0x1.2cd007ee59c274aap+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7594608ad43754p-56L 0x1.2cd007ee59c274a8df3d80a8c088p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7594608ad4375p-56L 0x1.2cd007ee59c274a8df3d80a8c088p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7594608ad4375p-56L 0x1.2cd007ee59c274a8df3d80a8c088p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7594608ad4375p-56L 0x1.2cd007ee59c274a8df3d80a8c089p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7594608ad438p-56L 0x1.2cd007ee59c274a8df3d80a8c08p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7594608ad438p-56L 0x1.2cd007ee59c274a8df3d80a8c08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7594608ad436p-56L 0x1.2cd007ee59c274a8df3d80a8c08p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86ba8p-4L : -0x7.3e2d5066010b0c7594608ad436p-56L 0x1.2cd007ee59c274a8df3d80a8c1p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f98p-60L 0x1.2cd007ee59c27792p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f98p-60L 0x1.2cd007ee59c27794p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9p-60L 0x1.2cd007ee59c27792p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9p-60L 0x1.2cd007ee59c27794p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f98p-60L 0x1.2cd007ee59c27792p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f98p-60L 0x1.2cd007ee59c27794p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9p-60L 0x1.2cd007ee59c27792p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9p-60L 0x1.2cd007ee59c27794p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9768f61d77d8c4p-60L 0x1.2cd007ee59c277933202be1635a7p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9768f61d77d8cp-60L 0x1.2cd007ee59c277933202be1635a8p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9768f61d77d8cp-60L 0x1.2cd007ee59c277933202be1635a7p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9768f61d77d8cp-60L 0x1.2cd007ee59c277933202be1635a8p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9768f61d77dap-60L 0x1.2cd007ee59c277933202be16358p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9768f61d77d8p-60L 0x1.2cd007ee59c277933202be16358p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9768f61d77d8p-60L 0x1.2cd007ee59c277933202be16358p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf9p-4L : -0x4.3d00c0bf75c94f9768f61d77d8p-60L 0x1.2cd007ee59c277933202be1636p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500aap-60L 0x1.2cd007ee59c27792p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a98p-60L 0x1.2cd007ee59c27792p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a98p-60L 0x1.2cd007ee59c27792p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a98p-60L 0x1.2cd007ee59c27794p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500aap-60L 0x1.2cd007ee59c27792p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a98p-60L 0x1.2cd007ee59c27792p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a98p-60L 0x1.2cd007ee59c27792p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a98p-60L 0x1.2cd007ee59c27794p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a9840de05b37b1cp-60L 0x1.2cd007ee59c27792cf52c5db4f61p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a9840de05b37b18p-60L 0x1.2cd007ee59c27792cf52c5db4f61p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a9840de05b37b18p-60L 0x1.2cd007ee59c27792cf52c5db4f61p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a9840de05b37b18p-60L 0x1.2cd007ee59c27792cf52c5db4f62p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a9840de05b37cp-60L 0x1.2cd007ee59c27792cf52c5db4fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a9840de05b37cp-60L 0x1.2cd007ee59c27792cf52c5db4f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a9840de05b37ap-60L 0x1.2cd007ee59c27792cf52c5db4fp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8fp-4L : -0x4.4bc42b1910500a9840de05b37ap-60L 0x1.2cd007ee59c27792cf52c5db4f8p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8febep-4L : -0x4.3e29dd7bc10f270ad986f7cab3f4p-60L 0x1.2cd007ee59c277932a40a8b2944dp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8febep-4L : -0x4.3e29dd7bc10f270ad986f7cab3f4p-60L 0x1.2cd007ee59c277932a40a8b2944dp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8febep-4L : -0x4.3e29dd7bc10f270ad986f7cab3fp-60L 0x1.2cd007ee59c277932a40a8b2944dp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8febep-4L : -0x4.3e29dd7bc10f270ad986f7cab3fp-60L 0x1.2cd007ee59c277932a40a8b2944ep+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8febep-4L : -0x4.3e29dd7bc10f270ad986f7cab4p-60L 0x1.2cd007ee59c277932a40a8b294p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8febep-4L : -0x4.3e29dd7bc10f270ad986f7cab4p-60L 0x1.2cd007ee59c277932a40a8b2948p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8febep-4L : -0x4.3e29dd7bc10f270ad986f7cab2p-60L 0x1.2cd007ee59c277932a40a8b294p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cp-4L 0xe.c36a599a86baf8febep-4L : -0x4.3e29dd7bc10f270ad986f7cab2p-60L 0x1.2cd007ee59c277932a40a8b2948p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f04481888p-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448189p-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f04481888p-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448189p-28L 0x1.2cd00815cda249f6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f04481888p-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448189p-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f04481888p-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448189p-28L 0x1.2cd00815cda249f6p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448188c6d4f5fa32b5cp-28L 0x1.2cd00815cda249f43049016a2c4ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448188c6d4f5fa32b6p-28L 0x1.2cd00815cda249f43049016a2c4ep+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448188c6d4f5fa32b5cp-28L 0x1.2cd00815cda249f43049016a2c4ep+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448188c6d4f5fa32b6p-28L 0x1.2cd00815cda249f43049016a2c4fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448188c6d4f5fa32ap-28L 0x1.2cd00815cda249f43049016a2cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448188c6d4f5fa32cp-28L 0x1.2cd00815cda249f43049016a2c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448188c6d4f5fa32ap-28L 0x1.2cd00815cda249f43049016a2cp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a6p-4L : 0x5.e6e9558f0448188c6d4f5fa32cp-28L 0x1.2cd00815cda249f43049016a2c8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b93p-28L 0x1.2cd007b31da9fcccp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b92p-28L 0x1.2cd007b31da9fccep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b92p-28L 0x1.2cd007b31da9fcccp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b92p-28L 0x1.2cd007b31da9fccep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b93p-28L 0x1.2cd007b31da9fcccp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b92p-28L 0x1.2cd007b31da9fccep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b92p-28L 0x1.2cd007b31da9fcccp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b92p-28L 0x1.2cd007b31da9fccep+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b925f7b096799b98p-28L 0x1.2cd007b31da9fccd1c9fe89ecb19p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b925f7b096799b98p-28L 0x1.2cd007b31da9fccd1c9fe89ecb19p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b925f7b096799b9p-28L 0x1.2cd007b31da9fccd1c9fe89ecb19p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b925f7b096799b9p-28L 0x1.2cd007b31da9fccd1c9fe89ecb1ap+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b925f7b096799cp-28L 0x1.2cd007b31da9fccd1c9fe89ecbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b925f7b096799cp-28L 0x1.2cd007b31da9fccd1c9fe89ecbp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b925f7b0967998p-28L 0x1.2cd007b31da9fccd1c9fe89ecbp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a5p-4L : -0x8.dc81052c0543b925f7b0967998p-28L 0x1.2cd007b31da9fccd1c9fe89ecb8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde1620908p-60L 0x1.2cd007ee59c2771ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162091p-60L 0x1.2cd007ee59c2771cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde1620908p-60L 0x1.2cd007ee59c2771ap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162091p-60L 0x1.2cd007ee59c2771cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde1620908p-60L 0x1.2cd007ee59c2771ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162091p-60L 0x1.2cd007ee59c2771cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde1620908p-60L 0x1.2cd007ee59c2771ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162091p-60L 0x1.2cd007ee59c2771cp+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162090f12aaac11b844p-60L 0x1.2cd007ee59c2771b83522b6a563fp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162090f12aaac11b848p-60L 0x1.2cd007ee59c2771b83522b6a564p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162090f12aaac11b844p-60L 0x1.2cd007ee59c2771b83522b6a563fp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162090f12aaac11b848p-60L 0x1.2cd007ee59c2771b83522b6a564p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162090f12aaac11b8p-60L 0x1.2cd007ee59c2771b83522b6a56p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162090f12aaac11b8p-60L 0x1.2cd007ee59c2771b83522b6a56p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162090f12aaac11b8p-60L 0x1.2cd007ee59c2771b83522b6a56p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86bbp-4L : 0x6.7922f0bde162090f12aaac11bap-60L 0x1.2cd007ee59c2771b83522b6a568p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ff8p-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ffp-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ffp-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ffp-56L 0x1.2cd007ee59c27408p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ff8p-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ffp-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ffp-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ffp-56L 0x1.2cd007ee59c27408p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ff3342176dc0eap-56L 0x1.2cd007ee59c27406039054382245p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ff3342176dc0e9cp-56L 0x1.2cd007ee59c27406039054382246p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ff3342176dc0e9cp-56L 0x1.2cd007ee59c27406039054382245p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ff3342176dc0e9cp-56L 0x1.2cd007ee59c27406039054382246p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ff3342176dc1p-56L 0x1.2cd007ee59c274060390543822p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ff3342176dc0ep-56L 0x1.2cd007ee59c2740603905438228p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ff3342176dc0ep-56L 0x1.2cd007ee59c274060390543822p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa22fdc165476ff3342176dc0ep-56L 0x1.2cd007ee59c2740603905438228p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d358p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d358p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d358p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d3584p-68L 0x1.2cd007ee59c276f2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d358p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d358p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d358p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d3584p-68L 0x1.2cd007ee59c276f2p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d35812bbef5dac664p-68L 0x1.2cd007ee59c276f0565591a59769p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d35812bbef5dac664p-68L 0x1.2cd007ee59c276f0565591a59769p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d35812bbef5dac664p-68L 0x1.2cd007ee59c276f0565591a59769p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d35812bbef5dac666p-68L 0x1.2cd007ee59c276f0565591a5976ap+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d35812bbef5dac6p-68L 0x1.2cd007ee59c276f0565591a597p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d35812bbef5dac6p-68L 0x1.2cd007ee59c276f0565591a5978p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d35812bbef5dac6p-68L 0x1.2cd007ee59c276f0565591a597p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf9p-4L : 0x3.a4698a46703d35812bbef5dac7p-68L 0x1.2cd007ee59c276f0565591a5978p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc38p-68L 0x1.2cd007ee59c276eep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc38p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37p-68L 0x1.2cd007ee59c276eep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc38p-68L 0x1.2cd007ee59c276eep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc38p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37p-68L 0x1.2cd007ee59c276eep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37dbadd30370f48p-68L 0x1.2cd007ee59c276eff3a5996ab122p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37dbadd30370f4p-68L 0x1.2cd007ee59c276eff3a5996ab123p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37dbadd30370f4p-68L 0x1.2cd007ee59c276eff3a5996ab122p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37dbadd30370f4p-68L 0x1.2cd007ee59c276eff3a5996ab123p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37dbadd30371p-68L 0x1.2cd007ee59c276eff3a5996ab1p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37dbadd30371p-68L 0x1.2cd007ee59c276eff3a5996ab1p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37dbadd30370cp-68L 0x1.2cd007ee59c276eff3a5996ab1p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8fp-4L : -0xb.1f00cf54167dc37dbadd30370cp-68L 0x1.2cd007ee59c276eff3a5996ab18p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8febep-4L : 0x2.7b4ccdfb2a65c2ae8a1ebe31908cp-68L 0x1.2cd007ee59c276f04e937c41f60ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8febep-4L : 0x2.7b4ccdfb2a65c2ae8a1ebe31908cp-68L 0x1.2cd007ee59c276f04e937c41f60fp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8febep-4L : 0x2.7b4ccdfb2a65c2ae8a1ebe31908cp-68L 0x1.2cd007ee59c276f04e937c41f60ep+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8febep-4L : 0x2.7b4ccdfb2a65c2ae8a1ebe31908ep-68L 0x1.2cd007ee59c276f04e937c41f60fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8febep-4L : 0x2.7b4ccdfb2a65c2ae8a1ebe319p-68L 0x1.2cd007ee59c276f04e937c41f6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8febep-4L : 0x2.7b4ccdfb2a65c2ae8a1ebe3191p-68L 0x1.2cd007ee59c276f04e937c41f6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8febep-4L : 0x2.7b4ccdfb2a65c2ae8a1ebe319p-68L 0x1.2cd007ee59c276f04e937c41f6p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb08p-4L 0xe.c36a599a86baf8febep-4L : 0x2.7b4ccdfb2a65c2ae8a1ebe3191p-68L 0x1.2cd007ee59c276f04e937c41f68p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298c8p-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298dp-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298c8p-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298dp-28L 0x1.2cd00815cda249f6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298c8p-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298dp-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298c8p-28L 0x1.2cd00815cda249f4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298dp-28L 0x1.2cd00815cda249f6p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298ccdc911036b5dcp-28L 0x1.2cd00815cda249f4a66454130a34p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298ccdc911036b5dcp-28L 0x1.2cd00815cda249f4a66454130a34p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298ccdc911036b5dcp-28L 0x1.2cd00815cda249f4a66454130a34p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298ccdc911036b5ep-28L 0x1.2cd00815cda249f4a66454130a35p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298ccdc911036b4p-28L 0x1.2cd00815cda249f4a66454130ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298ccdc911036b6p-28L 0x1.2cd00815cda249f4a66454130ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298ccdc911036b4p-28L 0x1.2cd00815cda249f4a66454130ap+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a6p-4L : 0x5.e6e9558f013298ccdc911036b6p-28L 0x1.2cd00815cda249f4a66454130a8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938fp-28L 0x1.2cd007b31da9fcccp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938fp-28L 0x1.2cd007b31da9fccep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938ep-28L 0x1.2cd007b31da9fcccp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938ep-28L 0x1.2cd007b31da9fccep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938fp-28L 0x1.2cd007b31da9fcccp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938fp-28L 0x1.2cd007b31da9fccep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938ep-28L 0x1.2cd007b31da9fcccp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938ep-28L 0x1.2cd007b31da9fccep+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938eb39638417c068p-28L 0x1.2cd007b31da9fccd92bb3ba19dccp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938eb39638417c068p-28L 0x1.2cd007b31da9fccd92bb3ba19dccp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938eb39638417c06p-28L 0x1.2cd007b31da9fccd92bb3ba19dccp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938eb39638417c06p-28L 0x1.2cd007b31da9fccd92bb3ba19dcdp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938eb39638417c4p-28L 0x1.2cd007b31da9fccd92bb3ba19d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938eb39638417cp-28L 0x1.2cd007b31da9fccd92bb3ba19ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938eb39638417cp-28L 0x1.2cd007b31da9fccd92bb3ba19d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a5p-4L : -0x8.dc81052c085938eb39638417cp-28L 0x1.2cd007b31da9fccd92bb3ba19ep+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd528p-60L 0x1.2cd007ee59c2771ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd53p-60L 0x1.2cd007ee59c2771cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd528p-60L 0x1.2cd007ee59c2771ap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd53p-60L 0x1.2cd007ee59c2771cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd528p-60L 0x1.2cd007ee59c2771ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd53p-60L 0x1.2cd007ee59c2771cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd528p-60L 0x1.2cd007ee59c2771ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd53p-60L 0x1.2cd007ee59c2771cp+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd52c0ee4f5280e74p-60L 0x1.2cd007ee59c2771bf96d7e372a75p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd52c0ee4f5280e74p-60L 0x1.2cd007ee59c2771bf96d7e372a75p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd52c0ee4f5280e74p-60L 0x1.2cd007ee59c2771bf96d7e372a75p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd52c0ee4f5280e78p-60L 0x1.2cd007ee59c2771bf96d7e372a76p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd52c0ee4f5280ep-60L 0x1.2cd007ee59c2771bf96d7e372ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd52c0ee4f5280ep-60L 0x1.2cd007ee59c2771bf96d7e372a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd52c0ee4f5280ep-60L 0x1.2cd007ee59c2771bf96d7e372ap+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86bbp-4L : 0x6.760d70fc0a2fd52c0ee4f5281p-60L 0x1.2cd007ee59c2771bf96d7e372a8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba9338p-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba9338p-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba933p-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba933p-56L 0x1.2cd007ee59c27408p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba9338p-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba9338p-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba933p-56L 0x1.2cd007ee59c27406p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba933p-56L 0x1.2cd007ee59c27408p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba93343cd820a5279cp-56L 0x1.2cd007ee59c2740679aba704f67bp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba93343cd820a52798p-56L 0x1.2cd007ee59c2740679aba704f67cp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba93343cd820a52798p-56L 0x1.2cd007ee59c2740679aba704f67bp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba93343cd820a52798p-56L 0x1.2cd007ee59c2740679aba704f67cp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba93343cd820a528p-56L 0x1.2cd007ee59c2740679aba704f6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba93343cd820a528p-56L 0x1.2cd007ee59c2740679aba704f68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba93343cd820a526p-56L 0x1.2cd007ee59c2740679aba704f6p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86ba8p-4L : -0x6.fa5455bd82ba93343cd820a526p-56L 0x1.2cd007ee59c2740679aba704f68p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094fffp-72L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e095p-72L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094fffp-72L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e095p-72L 0x1.2cd007ee59c276f2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094fffp-72L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e095p-72L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094fffp-72L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e095p-72L 0x1.2cd007ee59c276f2p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094ffffb037d0261fcp-72L 0x1.2cd007ee59c276f0cc70e4726b9ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094ffffb037d0261fcp-72L 0x1.2cd007ee59c276f0cc70e4726b9fp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094ffffb037d0261fcp-72L 0x1.2cd007ee59c276f0cc70e4726b9ep+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094ffffb037d0261fc8p-72L 0x1.2cd007ee59c276f0cc70e4726b9fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094ffffb037d0261cp-72L 0x1.2cd007ee59c276f0cc70e4726b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094ffffb037d0262p-72L 0x1.2cd007ee59c276f0cc70e4726b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094ffffb037d0261cp-72L 0x1.2cd007ee59c276f0cc70e4726b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf9p-4L : 0x8.ee9c86f3e094ffffb037d0262p-72L 0x1.2cd007ee59c276f0cc70e4726cp+0L : inexact-ok += clog downward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a91p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9p-68L 0x1.2cd007ee59c276f2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a91p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9p-68L 0x1.2cd007ee59c276fp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9p-68L 0x1.2cd007ee59c276f2p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9049c8d45c47068p-68L 0x1.2cd007ee59c276f069c0ec378558p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9049c8d45c47068p-68L 0x1.2cd007ee59c276f069c0ec378558p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9049c8d45c4706p-68L 0x1.2cd007ee59c276f069c0ec378558p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9049c8d45c4706p-68L 0x1.2cd007ee59c276f069c0ec378559p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9049c8d45c474p-68L 0x1.2cd007ee59c276f069c0ec3785p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9049c8d45c47p-68L 0x1.2cd007ee59c276f069c0ec37858p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9049c8d45c47p-68L 0x1.2cd007ee59c276f069c0ec3785p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8fp-4L : -0xe.3480912b48b1a9049c8d45c47p-68L 0x1.2cd007ee59c276f069c0ec37858p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8febep-4L : -0x9.a32f3dc07ce22d31925f5788e3a8p-72L 0x1.2cd007ee59c276f0c4aecf0eca44p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8febep-4L : -0x9.a32f3dc07ce22d31925f5788e3ap-72L 0x1.2cd007ee59c276f0c4aecf0eca45p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8febep-4L : -0x9.a32f3dc07ce22d31925f5788e3ap-72L 0x1.2cd007ee59c276f0c4aecf0eca44p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8febep-4L : -0x9.a32f3dc07ce22d31925f5788e3ap-72L 0x1.2cd007ee59c276f0c4aecf0eca45p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8febep-4L : -0x9.a32f3dc07ce22d31925f5788e4p-72L 0x1.2cd007ee59c276f0c4aecf0ecap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8febep-4L : -0x9.a32f3dc07ce22d31925f5788e4p-72L 0x1.2cd007ee59c276f0c4aecf0eca8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8febep-4L : -0x9.a32f3dc07ce22d31925f5788ep-72L 0x1.2cd007ee59c276f0c4aecf0ecap+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cbp-4L 0xe.c36a599a86baf8febep-4L : -0x9.a32f3dc07ce22d31925f5788ep-72L 0x1.2cd007ee59c276f0c4aecf0eca8p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a6p-4L : 0x5.e6e9558f01cccbc046d63bb9e494p-28L 0x1.2cd00815cda249f48f52fdee0eddp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a6p-4L : 0x5.e6e9558f01cccbc046d63bb9e498p-28L 0x1.2cd00815cda249f48f52fdee0eddp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a6p-4L : 0x5.e6e9558f01cccbc046d63bb9e494p-28L 0x1.2cd00815cda249f48f52fdee0eddp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a6p-4L : 0x5.e6e9558f01cccbc046d63bb9e498p-28L 0x1.2cd00815cda249f48f52fdee0edep+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a6p-4L : 0x5.e6e9558f01cccbc046d63bb9e4p-28L 0x1.2cd00815cda249f48f52fdee0e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a6p-4L : 0x5.e6e9558f01cccbc046d63bb9e4p-28L 0x1.2cd00815cda249f48f52fdee0fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a6p-4L : 0x5.e6e9558f01cccbc046d63bb9e4p-28L 0x1.2cd00815cda249f48f52fdee0e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a6p-4L : 0x5.e6e9558f01cccbc046d63bb9e6p-28L 0x1.2cd00815cda249f48f52fdee0fp+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a5p-4L : -0x8.dc81052c07bf05f6b28e91aedd7p-28L 0x1.2cd007b31da9fccd7ba9e56b10a5p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a5p-4L : -0x8.dc81052c07bf05f6b28e91aedd7p-28L 0x1.2cd007b31da9fccd7ba9e56b10a5p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a5p-4L : -0x8.dc81052c07bf05f6b28e91aedd68p-28L 0x1.2cd007b31da9fccd7ba9e56b10a5p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a5p-4L : -0x8.dc81052c07bf05f6b28e91aedd68p-28L 0x1.2cd007b31da9fccd7ba9e56b10a6p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a5p-4L : -0x8.dc81052c07bf05f6b28e91aeep-28L 0x1.2cd007b31da9fccd7ba9e56b108p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a5p-4L : -0x8.dc81052c07bf05f6b28e91aedcp-28L 0x1.2cd007b31da9fccd7ba9e56b108p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a5p-4L : -0x8.dc81052c07bf05f6b28e91aedcp-28L 0x1.2cd007b31da9fccd7ba9e56b108p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a5p-4L : -0x8.dc81052c07bf05f6b28e91aedcp-28L 0x1.2cd007b31da9fccd7ba9e56b11p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86bbp-4L : 0x6.76a7a3efe637a34e6569058c12f4p-60L 0x1.2cd007ee59c2771be25c280b2902p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86bbp-4L : 0x6.76a7a3efe637a34e6569058c12f4p-60L 0x1.2cd007ee59c2771be25c280b2903p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86bbp-4L : 0x6.76a7a3efe637a34e6569058c12f4p-60L 0x1.2cd007ee59c2771be25c280b2902p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86bbp-4L : 0x6.76a7a3efe637a34e6569058c12f8p-60L 0x1.2cd007ee59c2771be25c280b2903p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86bbp-4L : 0x6.76a7a3efe637a34e6569058c12p-60L 0x1.2cd007ee59c2771be25c280b29p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86bbp-4L : 0x6.76a7a3efe637a34e6569058c12p-60L 0x1.2cd007ee59c2771be25c280b29p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86bbp-4L : 0x6.76a7a3efe637a34e6569058c12p-60L 0x1.2cd007ee59c2771be25c280b29p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86bbp-4L : 0x6.76a7a3efe637a34e6569058c14p-60L 0x1.2cd007ee59c2771be25c280b298p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa4ab28e44fa16518927fc513aa4p-56L 0x1.2cd007ee59c27406629a50d8f509p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa4ab28e44fa16518927fc513aa4p-56L 0x1.2cd007ee59c27406629a50d8f509p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa4ab28e44fa16518927fc513aap-56L 0x1.2cd007ee59c27406629a50d8f509p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa4ab28e44fa16518927fc513aap-56L 0x1.2cd007ee59c27406629a50d8f50ap+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa4ab28e44fa16518927fc513cp-56L 0x1.2cd007ee59c27406629a50d8f5p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa4ab28e44fa16518927fc513ap-56L 0x1.2cd007ee59c27406629a50d8f5p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa4ab28e44fa16518927fc513ap-56L 0x1.2cd007ee59c27406629a50d8f5p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86ba8p-4L : -0x6.fa4ab28e44fa16518927fc513ap-56L 0x1.2cd007ee59c27406629a50d8f58p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf9p-4L : 0x1.291cbc4b45d772d2fdfac4fdf9cfp-68L 0x1.2cd007ee59c276f0b55f8e466a2cp+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf9p-4L : 0x1.291cbc4b45d772d2fdfac4fdf9dp-68L 0x1.2cd007ee59c276f0b55f8e466a2cp+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf9p-4L : 0x1.291cbc4b45d772d2fdfac4fdf9cfp-68L 0x1.2cd007ee59c276f0b55f8e466a2cp+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf9p-4L : 0x1.291cbc4b45d772d2fdfac4fdf9dp-68L 0x1.2cd007ee59c276f0b55f8e466a2dp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf9p-4L : 0x1.291cbc4b45d772d2fdfac4fdf98p-68L 0x1.2cd007ee59c276f0b55f8e466ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf9p-4L : 0x1.291cbc4b45d772d2fdfac4fdfap-68L 0x1.2cd007ee59c276f0b55f8e466ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf9p-4L : 0x1.291cbc4b45d772d2fdfac4fdf98p-68L 0x1.2cd007ee59c276f0b55f8e466ap+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf9p-4L : 0x1.291cbc4b45d772d2fdfac4fdfap-68L 0x1.2cd007ee59c276f0b55f8e466a8p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8fp-4L : -0xd.9a4d9d4f40e386307d06372d7f38p-68L 0x1.2cd007ee59c276f052af960b83e5p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8fp-4L : -0xd.9a4d9d4f40e386307d06372d7f38p-68L 0x1.2cd007ee59c276f052af960b83e6p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8fp-4L : -0xd.9a4d9d4f40e386307d06372d7f3p-68L 0x1.2cd007ee59c276f052af960b83e5p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8fp-4L : -0xd.9a4d9d4f40e386307d06372d7f3p-68L 0x1.2cd007ee59c276f052af960b83e6p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8fp-4L : -0xd.9a4d9d4f40e386307d06372d8p-68L 0x1.2cd007ee59c276f052af960b838p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8fp-4L : -0xd.9a4d9d4f40e386307d06372d8p-68L 0x1.2cd007ee59c276f052af960b84p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8fp-4L : -0xd.9a4d9d4f40e386307d06372d7cp-68L 0x1.2cd007ee59c276f052af960b838p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8fp-4L : -0xd.9a4d9d4f40e386307d06372d7cp-68L 0x1.2cd007ee59c276f052af960b84p+0L : inexact-ok += clog downward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8febep-4L : 0x3.01fffffffffffffffffffffffffep-144L 0x1.2cd007ee59c276f0ad9d78e2c8d2p+0L : inexact-ok += clog tonearest ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8febep-4L : 0x3.02p-144L 0x1.2cd007ee59c276f0ad9d78e2c8d2p+0L : inexact-ok += clog towardzero ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8febep-4L : 0x3.01fffffffffffffffffffffffffep-144L 0x1.2cd007ee59c276f0ad9d78e2c8d2p+0L : inexact-ok += clog upward ldbl-128 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8febep-4L : 0x3.02p-144L 0x1.2cd007ee59c276f0ad9d78e2c8d3p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8febep-4L : 0x3.01ffffffffffffffffffffffffp-144L 0x1.2cd007ee59c276f0ad9d78e2c88p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8febep-4L : 0x3.02p-144L 0x1.2cd007ee59c276f0ad9d78e2c9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8febep-4L : 0x3.01ffffffffffffffffffffffffp-144L 0x1.2cd007ee59c276f0ad9d78e2c88p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.2aff83ae6467cb019p-4L 0xe.c36a599a86baf8febep-4L : 0x3.02p-144L 0x1.2cd007ee59c276f0ad9d78e2c9p+0L : inexact-ok +clog 0x155f8afc4c48685bf63610p-85 0x17d0cf2652cdbeb1294e19p-85 += clog downward flt-32 0xa.afc58p-4f 0xb.e867ap-4f : 0xa.ca831p-28f 0xd.6e29dp-4f : inexact-ok += clog tonearest flt-32 0xa.afc58p-4f 0xb.e867ap-4f : 0xa.ca832p-28f 0xd.6e29ep-4f : inexact-ok += clog towardzero flt-32 0xa.afc58p-4f 0xb.e867ap-4f : 0xa.ca831p-28f 0xd.6e29dp-4f : inexact-ok += clog upward flt-32 0xa.afc58p-4f 0xb.e867ap-4f : 0xa.ca832p-28f 0xd.6e29ep-4f : inexact-ok += clog downward dbl-64 0xa.afc58p-4 0xb.e867ap-4 : 0xa.ca8318b8d8ebp-28 0xd.6e29d86aa4d98p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc58p-4 0xb.e867ap-4 : 0xa.ca8318b8d8eb8p-28 0xd.6e29d86aa4dap-4 : inexact-ok += clog towardzero dbl-64 0xa.afc58p-4 0xb.e867ap-4 : 0xa.ca8318b8d8ebp-28 0xd.6e29d86aa4d98p-4 : inexact-ok += clog upward dbl-64 0xa.afc58p-4 0xb.e867ap-4 : 0xa.ca8318b8d8eb8p-28 0xd.6e29d86aa4dap-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70dp-28L 0xd.6e29d86aa4d9c52p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70dp-28L 0xd.6e29d86aa4d9c52p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70dp-28L 0xd.6e29d86aa4d9c52p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70ep-28L 0xd.6e29d86aa4d9c53p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70dp-28L 0xd.6e29d86aa4d9c52p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70dp-28L 0xd.6e29d86aa4d9c52p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70dp-28L 0xd.6e29d86aa4d9c52p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70ep-28L 0xd.6e29d86aa4d9c53p-4L : inexact-ok += clog downward ldbl-128 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70d6e912bfbc7c4p-28L 0xd.6e29d86aa4d9c520b8159114fb6p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70d6e912bfbc7c48p-28L 0xd.6e29d86aa4d9c520b8159114fb6p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70d6e912bfbc7c4p-28L 0xd.6e29d86aa4d9c520b8159114fb6p-4L : inexact-ok += clog upward ldbl-128 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70d6e912bfbc7c48p-28L 0xd.6e29d86aa4d9c520b8159114fb68p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70d6e912bfbc7cp-28L 0xd.6e29d86aa4d9c520b8159114f8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70d6e912bfbc7cp-28L 0xd.6e29d86aa4d9c520b8159114fcp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70d6e912bfbc7cp-28L 0xd.6e29d86aa4d9c520b8159114f8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc58p-4L 0xb.e867ap-4L : 0xa.ca8318b8d8eb70d6e912bfbc8p-28L 0xd.6e29d86aa4d9c520b8159114fcp-4L : inexact-ok += clog downward flt-32 0xa.afc58p-4f 0xb.e8679p-4f : -0x1.1de47ap-28f 0xd.6e29cp-4f : inexact-ok += clog tonearest flt-32 0xa.afc58p-4f 0xb.e8679p-4f : -0x1.1de478p-28f 0xd.6e29dp-4f : inexact-ok += clog towardzero flt-32 0xa.afc58p-4f 0xb.e8679p-4f : -0x1.1de478p-28f 0xd.6e29cp-4f : inexact-ok += clog upward flt-32 0xa.afc58p-4f 0xb.e8679p-4f : -0x1.1de478p-28f 0xd.6e29dp-4f : inexact-ok += clog downward dbl-64 0xa.afc58p-4 0xb.e8679p-4 : -0x1.1de47813f468p-28 0xd.6e29cdbadf6p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc58p-4 0xb.e8679p-4 : -0x1.1de47813f467fp-28 0xd.6e29cdbadf6p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc58p-4 0xb.e8679p-4 : -0x1.1de47813f467fp-28 0xd.6e29cdbadf6p-4 : inexact-ok += clog upward dbl-64 0xa.afc58p-4 0xb.e8679p-4 : -0x1.1de47813f467fp-28 0xd.6e29cdbadf608p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33cp-28L 0xd.6e29cdbadf603b4p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33ap-28L 0xd.6e29cdbadf603b5p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33ap-28L 0xd.6e29cdbadf603b4p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33ap-28L 0xd.6e29cdbadf603b5p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33cp-28L 0xd.6e29cdbadf603b4p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33ap-28L 0xd.6e29cdbadf603b5p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33ap-28L 0xd.6e29cdbadf603b4p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33ap-28L 0xd.6e29cdbadf603b5p-4L : inexact-ok += clog downward ldbl-128 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33aec90195c1c11p-28L 0xd.6e29cdbadf603b4b4b803abd78fp-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33aec90195c1c11p-28L 0xd.6e29cdbadf603b4b4b803abd78f8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33aec90195c1c1p-28L 0xd.6e29cdbadf603b4b4b803abd78fp-4L : inexact-ok += clog upward ldbl-128 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33aec90195c1c1p-28L 0xd.6e29cdbadf603b4b4b803abd78f8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33aec90195c1c8p-28L 0xd.6e29cdbadf603b4b4b803abd78p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33aec90195c1cp-28L 0xd.6e29cdbadf603b4b4b803abd78p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33aec90195c1cp-28L 0xd.6e29cdbadf603b4b4b803abd78p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc58p-4L 0xb.e8679p-4L : -0x1.1de47813f467f33aec90195c1cp-28L 0xd.6e29cdbadf603b4b4b803abd7cp-4L : inexact-ok += clog downward dbl-64 0xa.afc58p-4 0xb.e867932966df8p-4 : 0x1.3c7f0c8320dfep-28 0xd.6e29cfd77b88p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc58p-4 0xb.e867932966df8p-4 : 0x1.3c7f0c8320dffp-28 0xd.6e29cfd77b88p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc58p-4 0xb.e867932966df8p-4 : 0x1.3c7f0c8320dfep-28 0xd.6e29cfd77b88p-4 : inexact-ok += clog upward dbl-64 0xa.afc58p-4 0xb.e867932966df8p-4 : 0x1.3c7f0c8320dffp-28 0xd.6e29cfd77b888p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1ap-28L 0xd.6e29cfd77b8821ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1ap-28L 0xd.6e29cfd77b8821ap-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1ap-28L 0xd.6e29cfd77b8821ap-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1cp-28L 0xd.6e29cfd77b8821bp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1ap-28L 0xd.6e29cfd77b8821ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1ap-28L 0xd.6e29cfd77b8821ap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1ap-28L 0xd.6e29cfd77b8821ap-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1cp-28L 0xd.6e29cfd77b8821bp-4L : inexact-ok += clog downward ldbl-128 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1a2a115e5360f1p-28L 0xd.6e29cfd77b8821a013c0a7fd24bp-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1a2a115e5360f1p-28L 0xd.6e29cfd77b8821a013c0a7fd24bp-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1a2a115e5360f1p-28L 0xd.6e29cfd77b8821a013c0a7fd24bp-4L : inexact-ok += clog upward ldbl-128 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1a2a115e5360f2p-28L 0xd.6e29cfd77b8821a013c0a7fd24b8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1a2a115e53608p-28L 0xd.6e29cfd77b8821a013c0a7fd24p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1a2a115e5361p-28L 0xd.6e29cfd77b8821a013c0a7fd24p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1a2a115e53608p-28L 0xd.6e29cfd77b8821a013c0a7fd24p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df8p-4L : 0x1.3c7f0c8320dfef1a2a115e5361p-28L 0xd.6e29cfd77b8821a013c0a7fd28p-4L : inexact-ok += clog downward dbl-64 0xa.afc58p-4 0xb.e867932966dfp-4 : 0x1.3c7f0c23dda36p-28 0xd.6e29cfd77b878p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc58p-4 0xb.e867932966dfp-4 : 0x1.3c7f0c23dda36p-28 0xd.6e29cfd77b88p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc58p-4 0xb.e867932966dfp-4 : 0x1.3c7f0c23dda36p-28 0xd.6e29cfd77b878p-4 : inexact-ok += clog upward dbl-64 0xa.afc58p-4 0xb.e867932966dfp-4 : 0x1.3c7f0c23dda37p-28 0xd.6e29cfd77b88p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36486p-28L 0xd.6e29cfd77b87cc2p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36488p-28L 0xd.6e29cfd77b87cc2p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36486p-28L 0xd.6e29cfd77b87cc2p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36488p-28L 0xd.6e29cfd77b87cc3p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36486p-28L 0xd.6e29cfd77b87cc2p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36488p-28L 0xd.6e29cfd77b87cc2p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36486p-28L 0xd.6e29cfd77b87cc2p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36488p-28L 0xd.6e29cfd77b87cc3p-4L : inexact-ok += clog downward ldbl-128 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36487bbce0b59584ep-28L 0xd.6e29cfd77b87cc21e7cdde42a458p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36487bbce0b59584fp-28L 0xd.6e29cfd77b87cc21e7cdde42a46p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36487bbce0b59584ep-28L 0xd.6e29cfd77b87cc21e7cdde42a458p-4L : inexact-ok += clog upward ldbl-128 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36487bbce0b59584fp-28L 0xd.6e29cfd77b87cc21e7cdde42a46p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36487bbce0b5958p-28L 0xd.6e29cfd77b87cc21e7cdde42a4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36487bbce0b59588p-28L 0xd.6e29cfd77b87cc21e7cdde42a4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36487bbce0b5958p-28L 0xd.6e29cfd77b87cc21e7cdde42a4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966dfp-4L : 0x1.3c7f0c23dda36487bbce0b59588p-28L 0xd.6e29cfd77b87cc21e7cdde42a8p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f78p-28L 0xd.6e29cfd77b88075p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f7ap-28L 0xd.6e29cfd77b88075p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f78p-28L 0xd.6e29cfd77b88075p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f7ap-28L 0xd.6e29cfd77b88076p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f78p-28L 0xd.6e29cfd77b88075p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f7ap-28L 0xd.6e29cfd77b88075p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f78p-28L 0xd.6e29cfd77b88075p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f7ap-28L 0xd.6e29cfd77b88076p-4L : inexact-ok += clog downward ldbl-128 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f799ea6344df8ep-28L 0xd.6e29cfd77b88075383bbb86f062p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f799ea6344df8ep-28L 0xd.6e29cfd77b88075383bbb86f062p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f799ea6344df8ep-28L 0xd.6e29cfd77b88075383bbb86f062p-4L : inexact-ok += clog upward ldbl-128 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f799ea6344df8e1p-28L 0xd.6e29cfd77b88075383bbb86f0628p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f799ea6344df88p-28L 0xd.6e29cfd77b88075383bbb86f04p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f799ea6344df9p-28L 0xd.6e29cfd77b88075383bbb86f08p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f799ea6344df88p-28L 0xd.6e29cfd77b88075383bbb86f04p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df58ap-4L : 0x1.3c7f0c65d2f10f799ea6344df9p-28L 0xd.6e29cfd77b88075383bbb86f08p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e8p-28L 0xd.6e29cfd77b88074p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e8p-28L 0xd.6e29cfd77b88075p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e8p-28L 0xd.6e29cfd77b88074p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7eap-28L 0xd.6e29cfd77b88075p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e8p-28L 0xd.6e29cfd77b88074p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e8p-28L 0xd.6e29cfd77b88075p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e8p-28L 0xd.6e29cfd77b88074p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7eap-28L 0xd.6e29cfd77b88075p-4L : inexact-ok += clog downward ldbl-128 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e84c586be6403bp-28L 0xd.6e29cfd77b880748d3f63a15cedp-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e84c586be6403cp-28L 0xd.6e29cfd77b880748d3f63a15cedp-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e84c586be6403bp-28L 0xd.6e29cfd77b880748d3f63a15cedp-4L : inexact-ok += clog upward ldbl-128 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e84c586be6403cp-28L 0xd.6e29cfd77b880748d3f63a15ced8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e84c586be64p-28L 0xd.6e29cfd77b880748d3f63a15ccp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e84c586be64p-28L 0xd.6e29cfd77b880748d3f63a15dp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e84c586be64p-28L 0xd.6e29cfd77b880748d3f63a15ccp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df589p-4L : 0x1.3c7f0c65c708a7e84c586be6408p-28L 0xd.6e29cfd77b880748d3f63a15dp-4L : inexact-ok += clog downward ldbl-128 0xa.afc58p-4L 0xb.e867932966df5894a70c8p-4L : 0x1.3c7f0c65ca7f14d32ea07228adbap-28L 0xd.6e29cfd77b88074bef7a90552a88p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc58p-4L 0xb.e867932966df5894a70c8p-4L : 0x1.3c7f0c65ca7f14d32ea07228adbbp-28L 0xd.6e29cfd77b88074bef7a90552a9p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc58p-4L 0xb.e867932966df5894a70c8p-4L : 0x1.3c7f0c65ca7f14d32ea07228adbap-28L 0xd.6e29cfd77b88074bef7a90552a88p-4L : inexact-ok += clog upward ldbl-128 0xa.afc58p-4L 0xb.e867932966df5894a70c8p-4L : 0x1.3c7f0c65ca7f14d32ea07228adbbp-28L 0xd.6e29cfd77b88074bef7a90552a9p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df5894a70c8p-4L : 0x1.3c7f0c65ca7f14d32ea07228ad8p-28L 0xd.6e29cfd77b88074bef7a905528p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df5894a70c8p-4L : 0x1.3c7f0c65ca7f14d32ea07228ad8p-28L 0xd.6e29cfd77b88074bef7a90552cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df5894a70c8p-4L : 0x1.3c7f0c65ca7f14d32ea07228ad8p-28L 0xd.6e29cfd77b88074bef7a905528p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc58p-4L 0xb.e867932966df5894a70c8p-4L : 0x1.3c7f0c65ca7f14d32ea07228aep-28L 0xd.6e29cfd77b88074bef7a90552cp-4L : inexact-ok += clog downward flt-32 0xa.afc57p-4f 0xb.e867ap-4f : 0x1.abda7ep-32f 0xd.6e29ep-4f : inexact-ok += clog tonearest flt-32 0xa.afc57p-4f 0xb.e867ap-4f : 0x1.abda8p-32f 0xd.6e29ep-4f : inexact-ok += clog towardzero flt-32 0xa.afc57p-4f 0xb.e867ap-4f : 0x1.abda7ep-32f 0xd.6e29ep-4f : inexact-ok += clog upward flt-32 0xa.afc57p-4f 0xb.e867ap-4f : 0x1.abda8p-32f 0xd.6e29fp-4f : inexact-ok += clog downward dbl-64 0xa.afc57p-4 0xb.e867ap-4 : 0x1.abda7ffd34ed5p-32 0xd.6e29e4530c718p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57p-4 0xb.e867ap-4 : 0x1.abda7ffd34ed6p-32 0xd.6e29e4530c718p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57p-4 0xb.e867ap-4 : 0x1.abda7ffd34ed5p-32 0xd.6e29e4530c718p-4 : inexact-ok += clog upward dbl-64 0xa.afc57p-4 0xb.e867ap-4 : 0x1.abda7ffd34ed6p-32 0xd.6e29e4530c72p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e86p-32L 0xd.6e29e4530c71a94p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e88p-32L 0xd.6e29e4530c71a94p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e86p-32L 0xd.6e29e4530c71a94p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e88p-32L 0xd.6e29e4530c71a95p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e86p-32L 0xd.6e29e4530c71a94p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e88p-32L 0xd.6e29e4530c71a94p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e86p-32L 0xd.6e29e4530c71a94p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e88p-32L 0xd.6e29e4530c71a95p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e87f97888f6494p-32L 0xd.6e29e4530c71a9417bc2fc87d3bp-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e87f97888f6494p-32L 0xd.6e29e4530c71a9417bc2fc87d3b8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e87f97888f6494p-32L 0xd.6e29e4530c71a9417bc2fc87d3bp-4L : inexact-ok += clog upward ldbl-128 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e87f97888f64941p-32L 0xd.6e29e4530c71a9417bc2fc87d3b8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e87f97888f649p-32L 0xd.6e29e4530c71a9417bc2fc87dp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e87f97888f6498p-32L 0xd.6e29e4530c71a9417bc2fc87d4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e87f97888f649p-32L 0xd.6e29e4530c71a9417bc2fc87dp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57p-4L 0xb.e867ap-4L : 0x1.abda7ffd34ed5e87f97888f6498p-32L 0xd.6e29e4530c71a9417bc2fc87d4p-4L : inexact-ok += clog downward flt-32 0xa.afc57p-4f 0xb.e8679p-4f : -0xb.cdaap-28f 0xd.6e29dp-4f : inexact-ok += clog tonearest flt-32 0xa.afc57p-4f 0xb.e8679p-4f : -0xb.cdaap-28f 0xd.6e29ep-4f : inexact-ok += clog towardzero flt-32 0xa.afc57p-4f 0xb.e8679p-4f : -0xb.cda9fp-28f 0xd.6e29dp-4f : inexact-ok += clog upward flt-32 0xa.afc57p-4f 0xb.e8679p-4f : -0xb.cda9fp-28f 0xd.6e29ep-4f : inexact-ok += clog downward dbl-64 0xa.afc57p-4 0xb.e8679p-4 : -0xb.cda9f8b51d4c8p-28 0xd.6e29d9a346f98p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57p-4 0xb.e8679p-4 : -0xb.cda9f8b51d4c8p-28 0xd.6e29d9a346fap-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57p-4 0xb.e8679p-4 : -0xb.cda9f8b51d4cp-28 0xd.6e29d9a346f98p-4 : inexact-ok += clog upward dbl-64 0xa.afc57p-4 0xb.e8679p-4 : -0xb.cda9f8b51d4cp-28 0xd.6e29d9a346fap-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c439p-28L 0xd.6e29d9a346f9d8ep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c438p-28L 0xd.6e29d9a346f9d8fp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c438p-28L 0xd.6e29d9a346f9d8ep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c438p-28L 0xd.6e29d9a346f9d8fp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c439p-28L 0xd.6e29d9a346f9d8ep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c438p-28L 0xd.6e29d9a346f9d8fp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c438p-28L 0xd.6e29d9a346f9d8ep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c438p-28L 0xd.6e29d9a346f9d8fp-4L : inexact-ok += clog downward ldbl-128 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c4382f04fdfe5c06p-28L 0xd.6e29d9a346f9d8e870161fcaafd8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c4382f04fdfe5c06p-28L 0xd.6e29d9a346f9d8e870161fcaafd8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c4382f04fdfe5c058p-28L 0xd.6e29d9a346f9d8e870161fcaafd8p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c4382f04fdfe5c058p-28L 0xd.6e29d9a346f9d8e870161fcaafep-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c4382f04fdfe5c4p-28L 0xd.6e29d9a346f9d8e870161fcaacp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c4382f04fdfe5cp-28L 0xd.6e29d9a346f9d8e870161fcabp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c4382f04fdfe5cp-28L 0xd.6e29d9a346f9d8e870161fcaacp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57p-4L 0xb.e8679p-4L : -0xb.cda9f8b51d4c4382f04fdfe5cp-28L 0xd.6e29d9a346f9d8e870161fcabp-4L : inexact-ok += clog downward dbl-64 0xa.afc57p-4 0xb.e867932966df8p-4 : -0x9.734670f958448p-28 0xd.6e29dbbfe321p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57p-4 0xb.e867932966df8p-4 : -0x9.734670f958448p-28 0xd.6e29dbbfe3218p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57p-4 0xb.e867932966df8p-4 : -0x9.734670f95844p-28 0xd.6e29dbbfe321p-4 : inexact-ok += clog upward dbl-64 0xa.afc57p-4 0xb.e867932966df8p-4 : -0x9.734670f95844p-28 0xd.6e29dbbfe3218p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844649p-28L 0xd.6e29dbbfe32167fp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844649p-28L 0xd.6e29dbbfe32168p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648p-28L 0xd.6e29dbbfe32167fp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648p-28L 0xd.6e29dbbfe32168p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844649p-28L 0xd.6e29dbbfe32167fp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844649p-28L 0xd.6e29dbbfe32168p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648p-28L 0xd.6e29dbbfe32167fp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648p-28L 0xd.6e29dbbfe32168p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648bddc0fa618e5p-28L 0xd.6e29dbbfe32167ff825ddf4d751p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648bddc0fa618e48p-28L 0xd.6e29dbbfe32167ff825ddf4d7518p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648bddc0fa618e48p-28L 0xd.6e29dbbfe32167ff825ddf4d751p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648bddc0fa618e48p-28L 0xd.6e29dbbfe32167ff825ddf4d7518p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648bddc0fa619p-28L 0xd.6e29dbbfe32167ff825ddf4d74p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648bddc0fa619p-28L 0xd.6e29dbbfe32167ff825ddf4d74p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648bddc0fa618cp-28L 0xd.6e29dbbfe32167ff825ddf4d74p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df8p-4L : -0x9.734670f95844648bddc0fa618cp-28L 0xd.6e29dbbfe32167ff825ddf4d78p-4L : inexact-ok += clog downward dbl-64 0xa.afc57p-4 0xb.e867932966dfp-4 : -0x9.734671589b818p-28 0xd.6e29dbbfe321p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57p-4 0xb.e867932966dfp-4 : -0x9.734671589b818p-28 0xd.6e29dbbfe321p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57p-4 0xb.e867932966dfp-4 : -0x9.734671589b81p-28 0xd.6e29dbbfe321p-4 : inexact-ok += clog upward dbl-64 0xa.afc57p-4 0xb.e867932966dfp-4 : -0x9.734671589b81p-28 0xd.6e29dbbfe3218p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e6p-28L 0xd.6e29dbbfe321128p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e6p-28L 0xd.6e29dbbfe321128p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5p-28L 0xd.6e29dbbfe321128p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5p-28L 0xd.6e29dbbfe321129p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e6p-28L 0xd.6e29dbbfe321128p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e6p-28L 0xd.6e29dbbfe321128p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5p-28L 0xd.6e29dbbfe321128p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5p-28L 0xd.6e29dbbfe321129p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5f6680d1eedd4p-28L 0xd.6e29dbbfe32112815678e175cedp-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5f6680d1eedd38p-28L 0xd.6e29dbbfe32112815678e175ced8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5f6680d1eedd38p-28L 0xd.6e29dbbfe32112815678e175cedp-4L : inexact-ok += clog upward ldbl-128 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5f6680d1eedd38p-28L 0xd.6e29dbbfe32112815678e175ced8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5f6680d1eeep-28L 0xd.6e29dbbfe32112815678e175ccp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5f6680d1eedcp-28L 0xd.6e29dbbfe32112815678e175dp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5f6680d1eedcp-28L 0xd.6e29dbbfe32112815678e175ccp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966dfp-4L : -0x9.734671589b816e5f6680d1eedcp-28L 0xd.6e29dbbfe32112815678e175dp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b6p-28L 0xd.6e29dbbfe3214dbp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b5p-28L 0xd.6e29dbbfe3214dbp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b5p-28L 0xd.6e29dbbfe3214dbp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b5p-28L 0xd.6e29dbbfe3214dcp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b6p-28L 0xd.6e29dbbfe3214dbp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b5p-28L 0xd.6e29dbbfe3214dbp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b5p-28L 0xd.6e29dbbfe3214dbp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b5p-28L 0xd.6e29dbbfe3214dcp-4L : inexact-ok += clog downward ldbl-128 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b51b011f22f439p-28L 0xd.6e29dbbfe3214db2f25d2e375f18p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b51b011f22f4388p-28L 0xd.6e29dbbfe3214db2f25d2e375f2p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b51b011f22f4388p-28L 0xd.6e29dbbfe3214db2f25d2e375f18p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b51b011f22f4388p-28L 0xd.6e29dbbfe3214db2f25d2e375f2p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b51b011f22f44p-28L 0xd.6e29dbbfe3214db2f25d2e375cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b51b011f22f44p-28L 0xd.6e29dbbfe3214db2f25d2e376p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b51b011f22f4p-28L 0xd.6e29dbbfe3214db2f25d2e375cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df58ap-4L : -0x9.73467116a6336b51b011f22f4p-28L 0xd.6e29dbbfe3214db2f25d2e376p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd3p-28L 0xd.6e29dbbfe3214dap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2fp-28L 0xd.6e29dbbfe3214dbp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2fp-28L 0xd.6e29dbbfe3214dap-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2fp-28L 0xd.6e29dbbfe3214dbp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd3p-28L 0xd.6e29dbbfe3214dap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2fp-28L 0xd.6e29dbbfe3214dbp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2fp-28L 0xd.6e29dbbfe3214dap-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2fp-28L 0xd.6e29dbbfe3214dbp-4L : inexact-ok += clog downward ldbl-128 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2f2ea830a278e98p-28L 0xd.6e29dbbfe3214da84297b197a428p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2f2ea830a278e98p-28L 0xd.6e29dbbfe3214da84297b197a428p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2f2ea830a278e9p-28L 0xd.6e29dbbfe3214da84297b197a428p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2f2ea830a278e9p-28L 0xd.6e29dbbfe3214da84297b197a43p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2f2ea830a279p-28L 0xd.6e29dbbfe3214da84297b197a4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2f2ea830a279p-28L 0xd.6e29dbbfe3214da84297b197a4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2f2ea830a278cp-28L 0xd.6e29dbbfe3214da84297b197a4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df589p-4L : -0x9.73467116b21bd2f2ea830a278cp-28L 0xd.6e29dbbfe3214da84297b197a8p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57p-4L 0xb.e867932966df5894a70c8p-4L : -0x9.73467116aea56603681ed216f16p-28L 0xd.6e29dbbfe3214dab5e1c07569f7p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57p-4L 0xb.e867932966df5894a70c8p-4L : -0x9.73467116aea56603681ed216f16p-28L 0xd.6e29dbbfe3214dab5e1c07569f7p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57p-4L 0xb.e867932966df5894a70c8p-4L : -0x9.73467116aea56603681ed216f158p-28L 0xd.6e29dbbfe3214dab5e1c07569f7p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57p-4L 0xb.e867932966df5894a70c8p-4L : -0x9.73467116aea56603681ed216f158p-28L 0xd.6e29dbbfe3214dab5e1c07569f78p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df5894a70c8p-4L : -0x9.73467116aea56603681ed216f4p-28L 0xd.6e29dbbfe3214dab5e1c07569cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df5894a70c8p-4L : -0x9.73467116aea56603681ed216fp-28L 0xd.6e29dbbfe3214dab5e1c0756ap-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df5894a70c8p-4L : -0x9.73467116aea56603681ed216fp-28L 0xd.6e29dbbfe3214dab5e1c07569cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57p-4L 0xb.e867932966df5894a70c8p-4L : -0x9.73467116aea56603681ed216fp-28L 0xd.6e29dbbfe3214dab5e1c0756ap-4L : inexact-ok += clog downward dbl-64 0xa.afc57e2624348p-4 0xb.e867ap-4 : 0x9.8e040e03d7e18p-28 0xd.6e29d9cb4ee38p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57e2624348p-4 0xb.e867ap-4 : 0x9.8e040e03d7e18p-28 0xd.6e29d9cb4ee4p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57e2624348p-4 0xb.e867ap-4 : 0x9.8e040e03d7e18p-28 0xd.6e29d9cb4ee38p-4 : inexact-ok += clog upward dbl-64 0xa.afc57e2624348p-4 0xb.e867ap-4 : 0x9.8e040e03d7e2p-28 0xd.6e29d9cb4ee4p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e192p-28L 0xd.6e29d9cb4ee3ecfp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e192p-28L 0xd.6e29d9cb4ee3ecfp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e192p-28L 0xd.6e29d9cb4ee3ecfp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e1921p-28L 0xd.6e29d9cb4ee3edp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e192p-28L 0xd.6e29d9cb4ee3ecfp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e192p-28L 0xd.6e29d9cb4ee3ecfp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e192p-28L 0xd.6e29d9cb4ee3ecfp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e1921p-28L 0xd.6e29d9cb4ee3edp-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e1920284c89f8f87c8p-28L 0xd.6e29d9cb4ee3ecf0db1eb7e1d6e8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e1920284c89f8f87dp-28L 0xd.6e29d9cb4ee3ecf0db1eb7e1d6fp-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e1920284c89f8f87c8p-28L 0xd.6e29d9cb4ee3ecf0db1eb7e1d6e8p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e1920284c89f8f87dp-28L 0xd.6e29d9cb4ee3ecf0db1eb7e1d6fp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e1920284c89f8f84p-28L 0xd.6e29d9cb4ee3ecf0db1eb7e1d4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e1920284c89f8f88p-28L 0xd.6e29d9cb4ee3ecf0db1eb7e1d8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e1920284c89f8f84p-28L 0xd.6e29d9cb4ee3ecf0db1eb7e1d4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867ap-4L : 0x9.8e040e03d7e1920284c89f8f88p-28L 0xd.6e29d9cb4ee3ecf0db1eb7e1d8p-4L : inexact-ok += clog downward dbl-64 0xa.afc57e2624348p-4 0xb.e8679p-4 : -0x2.5a6384a00e87ap-28 0xd.6e29cf1b896a8p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57e2624348p-4 0xb.e8679p-4 : -0x2.5a6384a00e878p-28 0xd.6e29cf1b896a8p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57e2624348p-4 0xb.e8679p-4 : -0x2.5a6384a00e878p-28 0xd.6e29cf1b896a8p-4 : inexact-ok += clog upward dbl-64 0xa.afc57e2624348p-4 0xb.e8679p-4 : -0x2.5a6384a00e878p-28 0xd.6e29cf1b896bp-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b4p-28L 0xd.6e29cf1b896a962p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b4p-28L 0xd.6e29cf1b896a963p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788bp-28L 0xd.6e29cf1b896a962p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788bp-28L 0xd.6e29cf1b896a963p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b4p-28L 0xd.6e29cf1b896a962p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b4p-28L 0xd.6e29cf1b896a963p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788bp-28L 0xd.6e29cf1b896a962p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788bp-28L 0xd.6e29cf1b896a963p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b3ba219ac1e336p-28L 0xd.6e29cf1b896a962e8aeb975a78p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b3ba219ac1e334p-28L 0xd.6e29cf1b896a962e8aeb975a78p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b3ba219ac1e334p-28L 0xd.6e29cf1b896a962e8aeb975a78p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b3ba219ac1e334p-28L 0xd.6e29cf1b896a962e8aeb975a7808p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b3ba219ac1e4p-28L 0xd.6e29cf1b896a962e8aeb975a78p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b3ba219ac1e3p-28L 0xd.6e29cf1b896a962e8aeb975a78p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b3ba219ac1e3p-28L 0xd.6e29cf1b896a962e8aeb975a78p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e8679p-4L : -0x2.5a6384a00e8788b3ba219ac1e3p-28L 0xd.6e29cf1b896a962e8aeb975a7cp-4L : inexact-ok += clog downward dbl-64 0xa.afc57e2624348p-4 0xb.e867932966df8p-4 : 0x5.41e79e5155f2p-56 0xd.6e29d1382592p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57e2624348p-4 0xb.e867932966df8p-4 : 0x5.41e79e5155f24p-56 0xd.6e29d13825928p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57e2624348p-4 0xb.e867932966df8p-4 : 0x5.41e79e5155f2p-56 0xd.6e29d1382592p-4 : inexact-ok += clog upward dbl-64 0xa.afc57e2624348p-4 0xb.e867932966df8p-4 : 0x5.41e79e5155f24p-56 0xd.6e29d13825928p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f22458p-56L 0xd.6e29d1382592726p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f22458p-56L 0xd.6e29d1382592727p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f22458p-56L 0xd.6e29d1382592726p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f2246p-56L 0xd.6e29d1382592727p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f22458p-56L 0xd.6e29d1382592726p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f22458p-56L 0xd.6e29d1382592727p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f22458p-56L 0xd.6e29d1382592726p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f2246p-56L 0xd.6e29d1382592727p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f2245bfc60de3e33ap-56L 0xd.6e29d1382592726b94a974193acp-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f2245bfc60de3e33a4p-56L 0xd.6e29d1382592726b94a974193ac8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f2245bfc60de3e33ap-56L 0xd.6e29d1382592726b94a974193acp-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f2245bfc60de3e33a4p-56L 0xd.6e29d1382592726b94a974193ac8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f2245bfc60de3e32p-56L 0xd.6e29d1382592726b94a9741938p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f2245bfc60de3e34p-56L 0xd.6e29d1382592726b94a974193cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f2245bfc60de3e32p-56L 0xd.6e29d1382592726b94a9741938p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df8p-4L : 0x5.41e79e5155f2245bfc60de3e34p-56L 0xd.6e29d1382592726b94a974193cp-4L : inexact-ok += clog downward dbl-64 0xa.afc57e2624348p-4 0xb.e867932966dfp-4 : -0xb.24c2b435d7d68p-60 0xd.6e29d1382592p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57e2624348p-4 0xb.e867932966dfp-4 : -0xb.24c2b435d7d6p-60 0xd.6e29d1382592p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57e2624348p-4 0xb.e867932966dfp-4 : -0xb.24c2b435d7d6p-60 0xd.6e29d1382592p-4 : inexact-ok += clog upward dbl-64 0xa.afc57e2624348p-4 0xb.e867932966dfp-4 : -0xb.24c2b435d7d6p-60 0xd.6e29d13825928p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607dp-60L 0xd.6e29d13825921cep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607cp-60L 0xd.6e29d13825921cfp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607cp-60L 0xd.6e29d13825921cep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607cp-60L 0xd.6e29d13825921cfp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607dp-60L 0xd.6e29d13825921cep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607cp-60L 0xd.6e29d13825921cfp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607cp-60L 0xd.6e29d13825921cep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607cp-60L 0xd.6e29d13825921cfp-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607c2e02d365518f8p-60L 0xd.6e29d13825921ced68b842f79848p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607c2e02d365518f8p-60L 0xd.6e29d13825921ced68b842f79848p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607c2e02d365518fp-60L 0xd.6e29d13825921ced68b842f79848p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607c2e02d365518fp-60L 0xd.6e29d13825921ced68b842f7985p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607c2e02d36551cp-60L 0xd.6e29d13825921ced68b842f798p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607c2e02d365518p-60L 0xd.6e29d13825921ced68b842f798p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607c2e02d365518p-60L 0xd.6e29d13825921ced68b842f798p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966dfp-4L : -0xb.24c2b435d7d607c2e02d365518p-60L 0xd.6e29d13825921ced68b842f79cp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96f8p-56L 0xd.6e29d1382592581p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fcp-56L 0xd.6e29d1382592582p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96f8p-56L 0xd.6e29d1382592581p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fcp-56L 0xd.6e29d1382592582p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96f8p-56L 0xd.6e29d1382592581p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fcp-56L 0xd.6e29d1382592582p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96f8p-56L 0xd.6e29d1382592581p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fcp-56L 0xd.6e29d1382592582p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fa8d796ed3c74ep-56L 0xd.6e29d1382592581f04a5023c227p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fa8d796ed3c75p-56L 0xd.6e29d1382592581f04a5023c2278p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fa8d796ed3c74ep-56L 0xd.6e29d1382592581f04a5023c227p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fa8d796ed3c75p-56L 0xd.6e29d1382592581f04a5023c2278p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fa8d796ed3c7p-56L 0xd.6e29d1382592581f04a5023c2p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fa8d796ed3c7p-56L 0xd.6e29d1382592581f04a5023c24p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fa8d796ed3c7p-56L 0xd.6e29d1382592581f04a5023c2p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df58ap-4L : 0x3.6d08b00ed7bf96fa8d796ed3c8p-56L 0xd.6e29d1382592581f04a5023c24p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a5292908p-56L 0xd.6e29d1382592581p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290cp-56L 0xd.6e29d1382592581p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a5292908p-56L 0xd.6e29d1382592581p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290cp-56L 0xd.6e29d1382592582p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a5292908p-56L 0xd.6e29d1382592581p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290cp-56L 0xd.6e29d1382592581p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a5292908p-56L 0xd.6e29d1382592581p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290cp-56L 0xd.6e29d1382592582p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290a1cddebcc6972p-56L 0xd.6e29d1382592581454df8415fe4p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290a1cddebcc6972p-56L 0xd.6e29d1382592581454df8415fe4p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290a1cddebcc6972p-56L 0xd.6e29d1382592581454df8415fe4p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290a1cddebcc6974p-56L 0xd.6e29d1382592581454df8415fe48p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290a1cddebcc69p-56L 0xd.6e29d1382592581454df8415fcp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290a1cddebcc69p-56L 0xd.6e29d1382592581454df8416p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290a1cddebcc69p-56L 0xd.6e29d1382592581454df8415fcp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df589p-4L : 0x3.6c4a2995a529290a1cddebcc6ap-56L 0xd.6e29d1382592581454df8416p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df5894a70c8p-4L : 0x3.6c8190645bdd76273c82d40f5e6ep-56L 0xd.6e29d138259258177063da467ffp-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df5894a70c8p-4L : 0x3.6c8190645bdd76273c82d40f5e6ep-56L 0xd.6e29d138259258177063da467ff8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df5894a70c8p-4L : 0x3.6c8190645bdd76273c82d40f5e6ep-56L 0xd.6e29d138259258177063da467ffp-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624348p-4L 0xb.e867932966df5894a70c8p-4L : 0x3.6c8190645bdd76273c82d40f5e7p-56L 0xd.6e29d138259258177063da467ff8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df5894a70c8p-4L : 0x3.6c8190645bdd76273c82d40f5ep-56L 0xd.6e29d138259258177063da467cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df5894a70c8p-4L : 0x3.6c8190645bdd76273c82d40f5ep-56L 0xd.6e29d138259258177063da468p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df5894a70c8p-4L : 0x3.6c8190645bdd76273c82d40f5ep-56L 0xd.6e29d138259258177063da467cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624348p-4L 0xb.e867932966df5894a70c8p-4L : 0x3.6c8190645bdd76273c82d40f5fp-56L 0xd.6e29d138259258177063da468p-4L : inexact-ok += clog downward dbl-64 0xa.afc57e262434p-4 0xb.e867ap-4 : 0x9.8e040dae59b6p-28 0xd.6e29d9cb4ee4p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57e262434p-4 0xb.e867ap-4 : 0x9.8e040dae59b6p-28 0xd.6e29d9cb4ee48p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57e262434p-4 0xb.e867ap-4 : 0x9.8e040dae59b6p-28 0xd.6e29d9cb4ee4p-4 : inexact-ok += clog upward dbl-64 0xa.afc57e262434p-4 0xb.e867ap-4 : 0x9.8e040dae59b68p-28 0xd.6e29d9cb4ee48p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ep-28L 0xd.6e29d9cb4ee44c3p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606fp-28L 0xd.6e29d9cb4ee44c3p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ep-28L 0xd.6e29d9cb4ee44c3p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606fp-28L 0xd.6e29d9cb4ee44c4p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ep-28L 0xd.6e29d9cb4ee44c3p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606fp-28L 0xd.6e29d9cb4ee44c3p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ep-28L 0xd.6e29d9cb4ee44c3p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606fp-28L 0xd.6e29d9cb4ee44c4p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ecff38092e199p-28L 0xd.6e29d9cb4ee44c3417acf123b998p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ecff38092e1998p-28L 0xd.6e29d9cb4ee44c3417acf123b998p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ecff38092e199p-28L 0xd.6e29d9cb4ee44c3417acf123b998p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ecff38092e1998p-28L 0xd.6e29d9cb4ee44c3417acf123b9ap-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ecff38092e18p-28L 0xd.6e29d9cb4ee44c3417acf123b8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ecff38092e18p-28L 0xd.6e29d9cb4ee44c3417acf123b8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ecff38092e18p-28L 0xd.6e29d9cb4ee44c3417acf123b8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867ap-4L : 0x9.8e040dae59b606ecff38092e1cp-28L 0xd.6e29d9cb4ee44c3417acf123bcp-4L : inexact-ok += clog downward dbl-64 0xa.afc57e262434p-4 0xb.e8679p-4 : -0x2.5a6384f58cb3ap-28 0xd.6e29cf1b896a8p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57e262434p-4 0xb.e8679p-4 : -0x2.5a6384f58cb3ap-28 0xd.6e29cf1b896bp-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57e262434p-4 0xb.e8679p-4 : -0x2.5a6384f58cb38p-28 0xd.6e29cf1b896a8p-4 : inexact-ok += clog upward dbl-64 0xa.afc57e262434p-4 0xb.e8679p-4 : -0x2.5a6384f58cb38p-28 0xd.6e29cf1b896bp-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930cp-28L 0xd.6e29cf1b896af57p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930cp-28L 0xd.6e29cf1b896af57p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb39308p-28L 0xd.6e29cf1b896af57p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb39308p-28L 0xd.6e29cf1b896af58p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930cp-28L 0xd.6e29cf1b896af57p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930cp-28L 0xd.6e29cf1b896af57p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb39308p-28L 0xd.6e29cf1b896af57p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb39308p-28L 0xd.6e29cf1b896af58p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930a59b66c170778p-28L 0xd.6e29cf1b896af571c7879c7f121p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930a59b66c170778p-28L 0xd.6e29cf1b896af571c7879c7f121p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930a59b66c170776p-28L 0xd.6e29cf1b896af571c7879c7f121p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930a59b66c170776p-28L 0xd.6e29cf1b896af571c7879c7f1218p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930a59b66c1708p-28L 0xd.6e29cf1b896af571c7879c7f1p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930a59b66c1707p-28L 0xd.6e29cf1b896af571c7879c7f14p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930a59b66c1707p-28L 0xd.6e29cf1b896af571c7879c7f1p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e8679p-4L : -0x2.5a6384f58cb3930a59b66c1707p-28L 0xd.6e29cf1b896af571c7879c7f14p-4L : inexact-ok += clog downward dbl-64 0xa.afc57e262434p-4 0xb.e867932966df8p-4 : -0x1.5fb20c1bc27e1p-60 0xd.6e29d13825928p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57e262434p-4 0xb.e867932966df8p-4 : -0x1.5fb20c1bc27ep-60 0xd.6e29d1382593p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57e262434p-4 0xb.e867932966df8p-4 : -0x1.5fb20c1bc27ep-60 0xd.6e29d13825928p-4 : inexact-ok += clog upward dbl-64 0xa.afc57e262434p-4 0xb.e867932966df8p-4 : -0x1.5fb20c1bc27ep-60 0xd.6e29d1382593p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e002p-60L 0xd.6e29d1382592d1ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001ep-60L 0xd.6e29d1382592d1bp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001ep-60L 0xd.6e29d1382592d1ap-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001ep-60L 0xd.6e29d1382592d1bp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e002p-60L 0xd.6e29d1382592d1ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001ep-60L 0xd.6e29d1382592d1bp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001ep-60L 0xd.6e29d1382592d1ap-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001ep-60L 0xd.6e29d1382592d1bp-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001e329b908f682ap-60L 0xd.6e29d1382592d1aed142bf5034dp-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001e329b908f6829p-60L 0xd.6e29d1382592d1aed142bf5034d8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001e329b908f6829p-60L 0xd.6e29d1382592d1aed142bf5034dp-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001e329b908f6829p-60L 0xd.6e29d1382592d1aed142bf5034d8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001e329b908f688p-60L 0xd.6e29d1382592d1aed142bf5034p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001e329b908f68p-60L 0xd.6e29d1382592d1aed142bf5034p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001e329b908f68p-60L 0xd.6e29d1382592d1aed142bf5034p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df8p-4L : -0x1.5fb20c1bc27e001e329b908f68p-60L 0xd.6e29d1382592d1aed142bf5038p-4L : inexact-ok += clog downward dbl-64 0xa.afc57e262434p-4 0xb.e867932966dfp-4 : -0x6.0a2eea566f97cp-56 0xd.6e29d1382592p-4 : inexact-ok += clog tonearest dbl-64 0xa.afc57e262434p-4 0xb.e867932966dfp-4 : -0x6.0a2eea566f97cp-56 0xd.6e29d13825928p-4 : inexact-ok += clog towardzero dbl-64 0xa.afc57e262434p-4 0xb.e867932966dfp-4 : -0x6.0a2eea566f978p-56 0xd.6e29d1382592p-4 : inexact-ok += clog upward dbl-64 0xa.afc57e262434p-4 0xb.e867932966dfp-4 : -0x6.0a2eea566f978p-56 0xd.6e29d13825928p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a48p-56L 0xd.6e29d13825927c3p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a478p-56L 0xd.6e29d13825927c3p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a478p-56L 0xd.6e29d13825927c3p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a478p-56L 0xd.6e29d13825927c4p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a48p-56L 0xd.6e29d13825927c3p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a478p-56L 0xd.6e29d13825927c3p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a478p-56L 0xd.6e29d13825927c3p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a478p-56L 0xd.6e29d13825927c4p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a47a9aaef5096538p-56L 0xd.6e29d13825927c30a5518e2e92c8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a47a9aaef5096538p-56L 0xd.6e29d13825927c30a5518e2e92dp-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a47a9aaef5096534p-56L 0xd.6e29d13825927c30a5518e2e92c8p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a47a9aaef5096534p-56L 0xd.6e29d13825927c30a5518e2e92dp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a47a9aaef50966p-56L 0xd.6e29d13825927c30a5518e2e9p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a47a9aaef50966p-56L 0xd.6e29d13825927c30a5518e2e94p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a47a9aaef50964p-56L 0xd.6e29d13825927c30a5518e2e9p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966dfp-4L : -0x6.0a2eea566f97a47a9aaef50964p-56L 0xd.6e29d13825927c30a5518e2e94p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f6p-56L 0xd.6e29d1382592b76p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f6p-56L 0xd.6e29d1382592b76p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f4p-56L 0xd.6e29d1382592b76p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f4p-56L 0xd.6e29d1382592b77p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f6p-56L 0xd.6e29d1382592b76p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f6p-56L 0xd.6e29d1382592b76p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f4p-56L 0xd.6e29d1382592b76p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f4p-56L 0xd.6e29d1382592b77p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f5f57b39c37752p-56L 0xd.6e29d1382592b762413e4d731ca8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f5f57b39c37752p-56L 0xd.6e29d1382592b762413e4d731ca8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f5f57b39c37751p-56L 0xd.6e29d1382592b762413e4d731ca8p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f5f57b39c37751p-56L 0xd.6e29d1382592b762413e4d731cbp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f5f57b39c3778p-56L 0xd.6e29d1382592b762413e4d731cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f5f57b39c3778p-56L 0xd.6e29d1382592b762413e4d731cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f5f57b39c377p-56L 0xd.6e29d1382592b762413e4d731cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df58ap-4L : -0x1.eada0f043a5a80f5f57b39c377p-56L 0xd.6e29d1382592b762413e4d732p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eefp-56L 0xd.6e29d1382592b75p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeeep-56L 0xd.6e29d1382592b75p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeeep-56L 0xd.6e29d1382592b75p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeeep-56L 0xd.6e29d1382592b76p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eefp-56L 0xd.6e29d1382592b75p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeeep-56L 0xd.6e29d1382592b75p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeeep-56L 0xd.6e29d1382592b75p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeeep-56L 0xd.6e29d1382592b76p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeee5a2860fc20ccp-56L 0xd.6e29d1382592b7579178cf4cf87p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeee5a2860fc20ccp-56L 0xd.6e29d1382592b7579178cf4cf878p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeee5a2860fc20cbp-56L 0xd.6e29d1382592b7579178cf4cf87p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeee5a2860fc20cbp-56L 0xd.6e29d1382592b7579178cf4cf878p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeee5a2860fc21p-56L 0xd.6e29d1382592b7579178cf4cf8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeee5a2860fc21p-56L 0xd.6e29d1382592b7579178cf4cf8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeee5a2860fc208p-56L 0xd.6e29d1382592b7579178cf4cf8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df589p-4L : -0x1.eb98957d6cf0eeee5a2860fc208p-56L 0xd.6e29d1382592b7579178cf4cfcp-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.eb612eaeb63ca1ceea7560dd4e1dp-56L 0xd.6e29d1382592b75aacfd257d7a28p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.eb612eaeb63ca1ceea7560dd4e1cp-56L 0xd.6e29d1382592b75aacfd257d7a28p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.eb612eaeb63ca1ceea7560dd4e1cp-56L 0xd.6e29d1382592b75aacfd257d7a28p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e262434p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.eb612eaeb63ca1ceea7560dd4e1cp-56L 0xd.6e29d1382592b75aacfd257d7a3p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.eb612eaeb63ca1ceea7560dd4e8p-56L 0xd.6e29d1382592b75aacfd257d78p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.eb612eaeb63ca1ceea7560dd4ep-56L 0xd.6e29d1382592b75aacfd257d7cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.eb612eaeb63ca1ceea7560dd4ep-56L 0xd.6e29d1382592b75aacfd257d78p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e262434p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.eb612eaeb63ca1ceea7560dd4ep-56L 0xd.6e29d1382592b75aacfd257d7cp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dacep-28L 0xd.6e29d9cb4ee429fp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dacfp-28L 0xd.6e29d9cb4ee429fp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dacep-28L 0xd.6e29d9cb4ee429fp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dacfp-28L 0xd.6e29d9cb4ee42ap-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dacep-28L 0xd.6e29d9cb4ee429fp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dacfp-28L 0xd.6e29d9cb4ee429fp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dacep-28L 0xd.6e29d9cb4ee429fp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dacfp-28L 0xd.6e29d9cb4ee42ap-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dace8bb37f2849aep-28L 0xd.6e29d9cb4ee429f7ede9d4900ba8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dace8bb37f2849ae8p-28L 0xd.6e29d9cb4ee429f7ede9d4900bbp-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dace8bb37f2849aep-28L 0xd.6e29d9cb4ee429f7ede9d4900ba8p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dace8bb37f2849ae8p-28L 0xd.6e29d9cb4ee429f7ede9d4900bbp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dace8bb37f28498p-28L 0xd.6e29d9cb4ee429f7ede9d49008p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dace8bb37f2849cp-28L 0xd.6e29d9cb4ee429f7ede9d4900cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dace8bb37f28498p-28L 0xd.6e29d9cb4ee429f7ede9d49008p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867ap-4L : 0x9.8e040dcd130dace8bb37f2849cp-28L 0xd.6e29d9cb4ee429f7ede9d4900cp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf54p-28L 0xd.6e29cf1b896ad33p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf54p-28L 0xd.6e29cf1b896ad33p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf5p-28L 0xd.6e29cf1b896ad33p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf5p-28L 0xd.6e29cf1b896ad34p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf54p-28L 0xd.6e29cf1b896ad33p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf54p-28L 0xd.6e29cf1b896ad33p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf5p-28L 0xd.6e29cf1b896ad33p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf5p-28L 0xd.6e29cf1b896ad34p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf53385cfd90f034p-28L 0xd.6e29cf1b896ad3359dbf8aa5ea38p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf53385cfd90f032p-28L 0xd.6e29cf1b896ad3359dbf8aa5ea4p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf53385cfd90f032p-28L 0xd.6e29cf1b896ad3359dbf8aa5ea38p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf53385cfd90f032p-28L 0xd.6e29cf1b896ad3359dbf8aa5ea4p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf53385cfd90f1p-28L 0xd.6e29cf1b896ad3359dbf8aa5e8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf53385cfd90fp-28L 0xd.6e29cf1b896ad3359dbf8aa5ecp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf53385cfd90fp-28L 0xd.6e29cf1b896ad3359dbf8aa5e8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e8679p-4L : -0x2.5a6384d6d35bbf53385cfd90fp-28L 0xd.6e29cf1b896ad3359dbf8aa5ecp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4p-56L 0xd.6e29d1382592af7p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4p-56L 0xd.6e29d1382592af7p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4p-56L 0xd.6e29d1382592af7p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c6p-56L 0xd.6e29d1382592af8p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4p-56L 0xd.6e29d1382592af7p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4p-56L 0xd.6e29d1382592af7p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4p-56L 0xd.6e29d1382592af7p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c6p-56L 0xd.6e29d1382592af8p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4910e29215413p-56L 0xd.6e29d1382592af72a77ba848728p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4910e29215414p-56L 0xd.6e29d1382592af72a77ba848728p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4910e29215413p-56L 0xd.6e29d1382592af72a77ba848728p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4910e29215414p-56L 0xd.6e29d1382592af72a77ba8487288p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4910e292154p-56L 0xd.6e29d1382592af72a77ba8487p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4910e292154p-56L 0xd.6e29d1382592af72a77ba84874p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4910e292154p-56L 0xd.6e29d1382592af72a77ba8487p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df8p-4L : 0x1.d59a5be91e5978c4910e2921548p-56L 0xd.6e29d1382592af72a77ba84874p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d8p-56L 0xd.6e29d138259259fp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d8p-56L 0xd.6e29d138259259fp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634dp-56L 0xd.6e29d138259259fp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634dp-56L 0xd.6e29d13825925ap-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d8p-56L 0xd.6e29d138259259fp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d8p-56L 0xd.6e29d138259259fp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634dp-56L 0xd.6e29d138259259fp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634dp-56L 0xd.6e29d13825925ap-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d673bf0525b67p-56L 0xd.6e29d138259259f47b8a7726d05p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d673bf0525b67p-56L 0xd.6e29d138259259f47b8a7726d05p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d673bf0525b66cp-56L 0xd.6e29d138259259f47b8a7726d05p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d673bf0525b66cp-56L 0xd.6e29d138259259f47b8a7726d058p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d673bf0525b8p-56L 0xd.6e29d138259259f47b8a7726dp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d673bf0525b6p-56L 0xd.6e29d138259259f47b8a7726dp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d673bf0525b6p-56L 0xd.6e29d138259259f47b8a7726dp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966dfp-4L : -0x4.1e996dab951634d673bf0525b6p-56L 0xd.6e29d138259259f47b8a7726d4p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded931p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded931p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded931p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded932p-68L 0xd.6e29d1382592953p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded931p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded931p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded931p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded932p-68L 0xd.6e29d1382592953p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded93176c69f9ab661p-68L 0xd.6e29d138259295261777366b5a48p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded93176c69f9ab661p-68L 0xd.6e29d138259295261777366b5a48p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded93176c69f9ab661p-68L 0xd.6e29d138259295261777366b5a48p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded93176c69f9ab6618p-68L 0xd.6e29d138259295261777366b5a5p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded93176c69f9ab64p-68L 0xd.6e29d138259295261777366b58p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded93176c69f9ab68p-68L 0xd.6e29d138259295261777366b5cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded93176c69f9ab64p-68L 0xd.6e29d138259295261777366b58p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df58ap-4L : 0xb.b6da6a026ded93176c69f9ab68p-68L 0xd.6e29d138259295261777366b5cp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c5784p-72L 0xd.6e29d1382592951p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c578p-72L 0xd.6e29d1382592952p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c578p-72L 0xd.6e29d1382592951p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c578p-72L 0xd.6e29d1382592952p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c5784p-72L 0xd.6e29d1382592951p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c578p-72L 0xd.6e29d1382592952p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c578p-72L 0xd.6e29d1382592951p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c578p-72L 0xd.6e29d1382592952p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c57800997579746d8p-72L 0xd.6e29d1382592951b67b1b845361p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c57800997579746d8p-72L 0xd.6e29d1382592951b67b1b8453618p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c57800997579746d6p-72L 0xd.6e29d1382592951b67b1b845361p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c57800997579746d6p-72L 0xd.6e29d1382592951b67b1b8453618p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c57800997579747p-72L 0xd.6e29d1382592951b67b1b84534p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c57800997579747p-72L 0xd.6e29d1382592951b67b1b84538p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c57800997579746p-72L 0xd.6e29d1382592951b67b1b84534p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df589p-4L : -0x3.18d2926f8f1c57800997579746p-72L 0xd.6e29d1382592951b67b1b84538p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df5894a70c8p-4L : 0x3.44dfc2444be02436de5f4776c0ap-68L 0xd.6e29d1382592951e83360e75b7c8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df5894a70c8p-4L : 0x3.44dfc2444be02436de5f4776c0ap-68L 0xd.6e29d1382592951e83360e75b7c8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df5894a70c8p-4L : 0x3.44dfc2444be02436de5f4776c0ap-68L 0xd.6e29d1382592951e83360e75b7c8p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342ep-4L 0xb.e867932966df5894a70c8p-4L : 0x3.44dfc2444be02436de5f4776c0a2p-68L 0xd.6e29d1382592951e83360e75b7dp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df5894a70c8p-4L : 0x3.44dfc2444be02436de5f4776cp-68L 0xd.6e29d1382592951e83360e75b4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df5894a70c8p-4L : 0x3.44dfc2444be02436de5f4776c1p-68L 0xd.6e29d1382592951e83360e75b8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df5894a70c8p-4L : 0x3.44dfc2444be02436de5f4776cp-68L 0xd.6e29d1382592951e83360e75b4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342ep-4L 0xb.e867932966df5894a70c8p-4L : 0x3.44dfc2444be02436de5f4776c1p-68L 0xd.6e29d1382592951e83360e75b8p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77p-28L 0xd.6e29d9cb4ee42ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77p-28L 0xd.6e29d9cb4ee42ap-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77p-28L 0xd.6e29d9cb4ee42ap-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de78p-28L 0xd.6e29d9cb4ee42a1p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77p-28L 0xd.6e29d9cb4ee42ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77p-28L 0xd.6e29d9cb4ee42ap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77p-28L 0xd.6e29d9cb4ee42ap-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de78p-28L 0xd.6e29d9cb4ee42a1p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77758874073c038p-28L 0xd.6e29d9cb4ee42a03d651665733e8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77758874073c04p-28L 0xd.6e29d9cb4ee42a03d651665733e8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77758874073c038p-28L 0xd.6e29d9cb4ee42a03d651665733e8p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77758874073c04p-28L 0xd.6e29d9cb4ee42a03d651665733fp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77758874073cp-28L 0xd.6e29d9cb4ee42a03d65166573p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77758874073cp-28L 0xd.6e29d9cb4ee42a03d651665734p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77758874073cp-28L 0xd.6e29d9cb4ee42a03d65166573p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867ap-4L : 0x9.8e040dcd085de77758874073c4p-28L 0xd.6e29d9cb4ee42a03d651665734p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d8p-28L 0xd.6e29cf1b896ad34p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d4p-28L 0xd.6e29cf1b896ad34p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d4p-28L 0xd.6e29cf1b896ad34p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d4p-28L 0xd.6e29cf1b896ad35p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d8p-28L 0xd.6e29cf1b896ad34p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d4p-28L 0xd.6e29cf1b896ad34p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d4p-28L 0xd.6e29cf1b896ad34p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d4p-28L 0xd.6e29cf1b896ad35p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d48330f029295p-28L 0xd.6e29cf1b896ad34186271e268edp-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d48330f029294ep-28L 0xd.6e29cf1b896ad34186271e268edp-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d48330f029294ep-28L 0xd.6e29cf1b896ad34186271e268edp-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d48330f029294ep-28L 0xd.6e29cf1b896ad34186271e268ed8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d48330f0292ap-28L 0xd.6e29cf1b896ad34186271e268cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d48330f02929p-28L 0xd.6e29cf1b896ad34186271e269p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d48330f02929p-28L 0xd.6e29cf1b896ad34186271e268cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e8679p-4L : -0x2.5a6384d6de0b84d48330f02929p-28L 0xd.6e29cf1b896ad34186271e269p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584p-56L 0xd.6e29d1382592af7p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584p-56L 0xd.6e29d1382592af8p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584p-56L 0xd.6e29d1382592af7p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73586p-56L 0xd.6e29d1382592af8p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584p-56L 0xd.6e29d1382592af7p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584p-56L 0xd.6e29d1382592af8p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584p-56L 0xd.6e29d1382592af7p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73586p-56L 0xd.6e29d1382592af8p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584246ac167e50bp-56L 0xd.6e29d1382592af7e8fe33b71d96p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584246ac167e50cp-56L 0xd.6e29d1382592af7e8fe33b71d96p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584246ac167e50bp-56L 0xd.6e29d1382592af7e8fe33b71d96p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584246ac167e50cp-56L 0xd.6e29d1382592af7e8fe33b71d968p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584246ac167e5p-56L 0xd.6e29d1382592af7e8fe33b71d8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584246ac167e5p-56L 0xd.6e29d1382592af7e8fe33b71d8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584246ac167e5p-56L 0xd.6e29d1382592af7e8fe33b71d8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df8p-4L : 0x1.d4ef5f913bf73584246ac167e58p-56L 0xd.6e29d1382592af7e8fe33b71dcp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778782p-56L 0xd.6e29d13825925ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778782p-56L 0xd.6e29d13825925ap-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a0377787818p-56L 0xd.6e29d13825925ap-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a0377787818p-56L 0xd.6e29d13825925a1p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778782p-56L 0xd.6e29d13825925ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778782p-56L 0xd.6e29d13825925ap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a0377787818p-56L 0xd.6e29d13825925ap-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a0377787818p-56L 0xd.6e29d13825925a1p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778781ed47411107118p-56L 0xd.6e29d13825925a0063f20a503728p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778781ed47411107114p-56L 0xd.6e29d13825925a0063f20a50373p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778781ed47411107114p-56L 0xd.6e29d13825925a0063f20a503728p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778781ed47411107114p-56L 0xd.6e29d13825925a0063f20a50373p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778781ed474111072p-56L 0xd.6e29d13825925a0063f20a5034p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778781ed474111072p-56L 0xd.6e29d13825925a0063f20a5038p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778781ed47411107p-56L 0xd.6e29d13825925a0063f20a5034p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966dfp-4L : -0x4.1f446a037778781ed47411107p-56L 0xd.6e29d13825925a0063f20a5038p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96526p-68L 0xd.6e29d1382592953p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96528p-68L 0xd.6e29d1382592953p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96526p-68L 0xd.6e29d1382592953p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96528p-68L 0xd.6e29d1382592954p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96526p-68L 0xd.6e29d1382592953p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96528p-68L 0xd.6e29d1382592953p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96526p-68L 0xd.6e29d1382592953p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96528p-68L 0xd.6e29d1382592954p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96527ef1a401abaccp-68L 0xd.6e29d13825929531ffdec994c128p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96527ef1a401abacdp-68L 0xd.6e29d13825929531ffdec994c128p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96527ef1a401abaccp-68L 0xd.6e29d13825929531ffdec994c128p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96527ef1a401abacdp-68L 0xd.6e29d13825929531ffdec994c13p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96527ef1a401aba8p-68L 0xd.6e29d13825929531ffdec994cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96527ef1a401abbp-68L 0xd.6e29d13825929531ffdec994cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96527ef1a401aba8p-68L 0xd.6e29d13825929531ffdec994cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df58ap-4L : 0x1.0714ebdc49b96527ef1a401abbp-68L 0xd.6e29d13825929531ffdec994c4p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f38p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f37p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f37p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f37p-68L 0xd.6e29d1382592953p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f38p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f37p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f37p-68L 0xd.6e29d1382592952p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f37p-68L 0xd.6e29d1382592953p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f377660c776cb6fp-68L 0xd.6e29d1382592952750194b6e9cfp-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f377660c776cb6fp-68L 0xd.6e29d1382592952750194b6e9cf8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f377660c776cb6e8p-68L 0xd.6e29d1382592952750194b6e9cfp-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f377660c776cb6e8p-68L 0xd.6e29d1382592952750194b6e9cf8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f377660c776cb8p-68L 0xd.6e29d1382592952750194b6e9cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f377660c776cb8p-68L 0xd.6e29d1382592952750194b6e9cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f377660c776cb4p-68L 0xd.6e29d1382592952750194b6e9cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df589p-4L : -0xa.e152a74d1d25f377660c776cb4p-68L 0xd.6e29d1382592952750194b6eap-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df5894a70c8p-4L : -0x7.6ae5bbe1d85409c3e6f78ac4c67cp-68L 0xd.6e29d1382592952a6b9da19f1ea8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df5894a70c8p-4L : -0x7.6ae5bbe1d85409c3e6f78ac4c678p-68L 0xd.6e29d1382592952a6b9da19f1ea8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df5894a70c8p-4L : -0x7.6ae5bbe1d85409c3e6f78ac4c678p-68L 0xd.6e29d1382592952a6b9da19f1ea8p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfp-4L 0xb.e867932966df5894a70c8p-4L : -0x7.6ae5bbe1d85409c3e6f78ac4c678p-68L 0xd.6e29d1382592952a6b9da19f1ebp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df5894a70c8p-4L : -0x7.6ae5bbe1d85409c3e6f78ac4c8p-68L 0xd.6e29d1382592952a6b9da19f1cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df5894a70c8p-4L : -0x7.6ae5bbe1d85409c3e6f78ac4c6p-68L 0xd.6e29d1382592952a6b9da19f2p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df5894a70c8p-4L : -0x7.6ae5bbe1d85409c3e6f78ac4c6p-68L 0xd.6e29d1382592952a6b9da19f1cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfp-4L 0xb.e867932966df5894a70c8p-4L : -0x7.6ae5bbe1d85409c3e6f78ac4c6p-68L 0xd.6e29d1382592952a6b9da19f2p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867ap-4L : 0x9.8e040dcd0fc8cd2a5e6ff6642bd8p-28L 0xd.6e29d9cb4ee429fb926c0f247f48p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867ap-4L : 0x9.8e040dcd0fc8cd2a5e6ff6642bd8p-28L 0xd.6e29d9cb4ee429fb926c0f247f48p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867ap-4L : 0x9.8e040dcd0fc8cd2a5e6ff6642bd8p-28L 0xd.6e29d9cb4ee429fb926c0f247f48p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867ap-4L : 0x9.8e040dcd0fc8cd2a5e6ff6642bep-28L 0xd.6e29d9cb4ee429fb926c0f247f5p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867ap-4L : 0x9.8e040dcd0fc8cd2a5e6ff66428p-28L 0xd.6e29d9cb4ee429fb926c0f247cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867ap-4L : 0x9.8e040dcd0fc8cd2a5e6ff6642cp-28L 0xd.6e29d9cb4ee429fb926c0f248p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867ap-4L : 0x9.8e040dcd0fc8cd2a5e6ff66428p-28L 0xd.6e29d9cb4ee429fb926c0f247cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867ap-4L : 0x9.8e040dcd0fc8cd2a5e6ff6642cp-28L 0xd.6e29d9cb4ee429fb926c0f248p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e8679p-4L : -0x2.5a6384d6d6a09f1672d04e4d280ep-28L 0xd.6e29cf1b896ad3394241c5c16adp-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e8679p-4L : -0x2.5a6384d6d6a09f1672d04e4d280ep-28L 0xd.6e29cf1b896ad3394241c5c16ad8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e8679p-4L : -0x2.5a6384d6d6a09f1672d04e4d280cp-28L 0xd.6e29cf1b896ad3394241c5c16adp-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e8679p-4L : -0x2.5a6384d6d6a09f1672d04e4d280cp-28L 0xd.6e29cf1b896ad3394241c5c16ad8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e8679p-4L : -0x2.5a6384d6d6a09f1672d04e4d29p-28L 0xd.6e29cf1b896ad3394241c5c168p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e8679p-4L : -0x2.5a6384d6d6a09f1672d04e4d28p-28L 0xd.6e29cf1b896ad3394241c5c16cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e8679p-4L : -0x2.5a6384d6d6a09f1672d04e4d28p-28L 0xd.6e29cf1b896ad3394241c5c168p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e8679p-4L : -0x2.5a6384d6d6a09f1672d04e4d28p-28L 0xd.6e29cf1b896ad3394241c5c16cp-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df8p-4L : 0x1.d5660decfa14bac30d6fb4df6ef2p-56L 0xd.6e29d1382592af764bfde349433p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df8p-4L : 0x1.d5660decfa14bac30d6fb4df6ef2p-56L 0xd.6e29d1382592af764bfde3494338p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df8p-4L : 0x1.d5660decfa14bac30d6fb4df6ef2p-56L 0xd.6e29d1382592af764bfde349433p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df8p-4L : 0x1.d5660decfa14bac30d6fb4df6ef3p-56L 0xd.6e29d1382592af764bfde3494338p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df8p-4L : 0x1.d5660decfa14bac30d6fb4df6e8p-56L 0xd.6e29d1382592af764bfde3494p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df8p-4L : 0x1.d5660decfa14bac30d6fb4df6fp-56L 0xd.6e29d1382592af764bfde34944p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df8p-4L : 0x1.d5660decfa14bac30d6fb4df6e8p-56L 0xd.6e29d1382592af764bfde3494p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df8p-4L : 0x1.d5660decfa14bac30d6fb4df6fp-56L 0xd.6e29d1382592af764bfde34944p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966dfp-4L : -0x4.1ecdbba7b95af2da663324e91decp-56L 0xd.6e29d138259259f8200cb227a1p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966dfp-4L : -0x4.1ecdbba7b95af2da663324e91decp-56L 0xd.6e29d138259259f8200cb227a1p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966dfp-4L : -0x4.1ecdbba7b95af2da663324e91de8p-56L 0xd.6e29d138259259f8200cb227a1p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966dfp-4L : -0x4.1ecdbba7b95af2da663324e91de8p-56L 0xd.6e29d138259259f8200cb227a108p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966dfp-4L : -0x4.1ecdbba7b95af2da663324e91ep-56L 0xd.6e29d138259259f8200cb227ap-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966dfp-4L : -0x4.1ecdbba7b95af2da663324e91ep-56L 0xd.6e29d138259259f8200cb227ap-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966dfp-4L : -0x4.1ecdbba7b95af2da663324e91cp-56L 0xd.6e29d138259259f8200cb227ap-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966dfp-4L : -0x4.1ecdbba7b95af2da663324e91cp-56L 0xd.6e29d138259259f8200cb227a4p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df58ap-4L : 0x8.71faa7be220d6ee4017db9ebbf78p-68L 0xd.6e29d13825929529bbf9716c2af8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df58ap-4L : 0x8.71faa7be220d6ee4017db9ebbf8p-68L 0xd.6e29d13825929529bbf9716c2bp-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df58ap-4L : 0x8.71faa7be220d6ee4017db9ebbf78p-68L 0xd.6e29d13825929529bbf9716c2af8p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df58ap-4L : 0x8.71faa7be220d6ee4017db9ebbf8p-68L 0xd.6e29d13825929529bbf9716c2bp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df58ap-4L : 0x8.71faa7be220d6ee4017db9ebbcp-68L 0xd.6e29d13825929529bbf9716c28p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df58ap-4L : 0x8.71faa7be220d6ee4017db9ebcp-68L 0xd.6e29d13825929529bbf9716c2cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df58ap-4L : 0x8.71faa7be220d6ee4017db9ebbcp-68L 0xd.6e29d13825929529bbf9716c28p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df58ap-4L : 0x8.71faa7be220d6ee4017db9ebcp-68L 0xd.6e29d13825929529bbf9716c2cp-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df589p-4L : -0x3.766ceb6b44d1e9b049310c3c1fb6p-68L 0xd.6e29d1382592951f0c33f34606c8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df589p-4L : -0x3.766ceb6b44d1e9b049310c3c1fb6p-68L 0xd.6e29d1382592951f0c33f34606c8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df589p-4L : -0x3.766ceb6b44d1e9b049310c3c1fb4p-68L 0xd.6e29d1382592951f0c33f34606c8p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df589p-4L : -0x3.766ceb6b44d1e9b049310c3c1fb4p-68L 0xd.6e29d1382592951f0c33f34606dp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df589p-4L : -0x3.766ceb6b44d1e9b049310c3c2p-68L 0xd.6e29d1382592951f0c33f34604p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df589p-4L : -0x3.766ceb6b44d1e9b049310c3c2p-68L 0xd.6e29d1382592951f0c33f34608p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df589p-4L : -0x3.766ceb6b44d1e9b049310c3c1fp-68L 0xd.6e29d1382592951f0c33f34604p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df589p-4L : -0x3.766ceb6b44d1e9b049310c3c1fp-68L 0xd.6e29d1382592951f0c33f34608p-4L : inexact-ok += clog downward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.1ep-164L 0xd.6e29d1382592952227b849768878p-4L : inexact-ok += clog tonearest ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.1ep-164L 0xd.6e29d1382592952227b84976888p-4L : inexact-ok += clog towardzero ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.1dffffffffffffffffffffffffffp-164L 0xd.6e29d1382592952227b849768878p-4L : inexact-ok += clog upward ldbl-128 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.1dffffffffffffffffffffffffffp-164L 0xd.6e29d1382592952227b84976888p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.1ep-164L 0xd.6e29d1382592952227b8497688p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.1ep-164L 0xd.6e29d1382592952227b8497688p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.1dffffffffffffffffffffffff8p-164L 0xd.6e29d1382592952227b8497688p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.afc57e2624342dfb1b08p-4L 0xb.e867932966df5894a70c8p-4L : -0x1.1dffffffffffffffffffffffff8p-164L 0xd.6e29d1382592952227b849768cp-4L : inexact-ok +clog 0x13836d58a13448d750b4b9p-85 0x195ca7bc3ab4f9161edbe6p-85 += clog downward flt-32 0x9.c1b6bp-4f 0xc.ae53ep-4f : 0x3.bdcde4p-28f 0xe.a3d35p-4f : inexact-ok += clog tonearest flt-32 0x9.c1b6bp-4f 0xc.ae53ep-4f : 0x3.bdcde8p-28f 0xe.a3d36p-4f : inexact-ok += clog towardzero flt-32 0x9.c1b6bp-4f 0xc.ae53ep-4f : 0x3.bdcde4p-28f 0xe.a3d35p-4f : inexact-ok += clog upward flt-32 0x9.c1b6bp-4f 0xc.ae53ep-4f : 0x3.bdcde8p-28f 0xe.a3d36p-4f : inexact-ok += clog downward dbl-64 0x9.c1b6bp-4 0xc.ae53ep-4 : 0x3.bdcde720072e6p-28 0xe.a3d35c4f416f8p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6bp-4 0xc.ae53ep-4 : 0x3.bdcde720072e6p-28 0xe.a3d35c4f417p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6bp-4 0xc.ae53ep-4 : 0x3.bdcde720072e6p-28 0xe.a3d35c4f416f8p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6bp-4 0xc.ae53ep-4 : 0x3.bdcde720072e8p-28 0xe.a3d35c4f417p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fcp-28L 0xe.a3d35c4f416fc5ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e63p-28L 0xe.a3d35c4f416fc5bp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fcp-28L 0xe.a3d35c4f416fc5ap-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e63p-28L 0xe.a3d35c4f416fc5bp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fcp-28L 0xe.a3d35c4f416fc5ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e63p-28L 0xe.a3d35c4f416fc5bp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fcp-28L 0xe.a3d35c4f416fc5ap-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e63p-28L 0xe.a3d35c4f416fc5bp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fea2640d2f668p-28L 0xe.a3d35c4f416fc5ad2dda6e7e9fc8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fea2640d2f6682p-28L 0xe.a3d35c4f416fc5ad2dda6e7e9fdp-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fea2640d2f668p-28L 0xe.a3d35c4f416fc5ad2dda6e7e9fc8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fea2640d2f6682p-28L 0xe.a3d35c4f416fc5ad2dda6e7e9fdp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fea2640d2f66p-28L 0xe.a3d35c4f416fc5ad2dda6e7e9cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fea2640d2f67p-28L 0xe.a3d35c4f416fc5ad2dda6e7eap-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fea2640d2f66p-28L 0xe.a3d35c4f416fc5ad2dda6e7e9cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53ep-4L : 0x3.bdcde720072e62fea2640d2f67p-28L 0xe.a3d35c4f416fc5ad2dda6e7eap-4L : inexact-ok += clog downward flt-32 0x9.c1b6bp-4f 0xc.ae53dp-4f : -0x8.f086p-28f 0xe.a3d35p-4f : inexact-ok += clog tonearest flt-32 0x9.c1b6bp-4f 0xc.ae53dp-4f : -0x8.f085fp-28f 0xe.a3d35p-4f : inexact-ok += clog towardzero flt-32 0x9.c1b6bp-4f 0xc.ae53dp-4f : -0x8.f085fp-28f 0xe.a3d35p-4f : inexact-ok += clog upward flt-32 0x9.c1b6bp-4f 0xc.ae53dp-4f : -0x8.f085fp-28f 0xe.a3d36p-4f : inexact-ok += clog downward dbl-64 0x9.c1b6bp-4 0xc.ae53dp-4 : -0x8.f085f4fea5aa8p-28 0xe.a3d3528d8abc8p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6bp-4 0xc.ae53dp-4 : -0x8.f085f4fea5aap-28 0xe.a3d3528d8abc8p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6bp-4 0xc.ae53dp-4 : -0x8.f085f4fea5aap-28 0xe.a3d3528d8abc8p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6bp-4 0xc.ae53dp-4 : -0x8.f085f4fea5aap-28 0xe.a3d3528d8abdp-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39cp-28L 0xe.a3d3528d8abc9a3p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39cp-28L 0xe.a3d3528d8abc9a3p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bp-28L 0xe.a3d3528d8abc9a3p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bp-28L 0xe.a3d3528d8abc9a4p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39cp-28L 0xe.a3d3528d8abc9a3p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39cp-28L 0xe.a3d3528d8abc9a3p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bp-28L 0xe.a3d3528d8abc9a3p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bp-28L 0xe.a3d3528d8abc9a4p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bf32b21b2e2c58p-28L 0xe.a3d3528d8abc9a367eabc57224c8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bf32b21b2e2c58p-28L 0xe.a3d3528d8abc9a367eabc57224dp-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bf32b21b2e2c5p-28L 0xe.a3d3528d8abc9a367eabc57224c8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bf32b21b2e2c5p-28L 0xe.a3d3528d8abc9a367eabc57224dp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bf32b21b2e3p-28L 0xe.a3d3528d8abc9a367eabc57224p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bf32b21b2e2cp-28L 0xe.a3d3528d8abc9a367eabc57224p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bf32b21b2e2cp-28L 0xe.a3d3528d8abc9a367eabc57224p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53dp-4L : -0x8.f085f4fea5aa39bf32b21b2e2cp-28L 0xe.a3d3528d8abc9a367eabc57228p-4L : inexact-ok += clog downward dbl-64 0x9.c1b6bp-4 0xc.ae53de1d5a7dp-4 : 0x2.3f471b7b5edb4p-28 0xe.a3d35b28f0e3p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6bp-4 0xc.ae53de1d5a7dp-4 : 0x2.3f471b7b5edb4p-28 0xe.a3d35b28f0e3p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6bp-4 0xc.ae53de1d5a7dp-4 : 0x2.3f471b7b5edb4p-28 0xe.a3d35b28f0e3p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6bp-4 0xc.ae53de1d5a7dp-4 : 0x2.3f471b7b5edb6p-28 0xe.a3d35b28f0e38p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798p-28L 0xe.a3d35b28f0e32fdp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798p-28L 0xe.a3d35b28f0e32fdp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798p-28L 0xe.a3d35b28f0e32fdp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb479cp-28L 0xe.a3d35b28f0e32fep-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798p-28L 0xe.a3d35b28f0e32fdp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798p-28L 0xe.a3d35b28f0e32fdp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798p-28L 0xe.a3d35b28f0e32fdp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb479cp-28L 0xe.a3d35b28f0e32fep-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798fe09e1c258acp-28L 0xe.a3d35b28f0e32fd6f5064c8bc2ap-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798fe09e1c258aep-28L 0xe.a3d35b28f0e32fd6f5064c8bc2ap-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798fe09e1c258acp-28L 0xe.a3d35b28f0e32fd6f5064c8bc2ap-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798fe09e1c258aep-28L 0xe.a3d35b28f0e32fd6f5064c8bc2a8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798fe09e1c258p-28L 0xe.a3d35b28f0e32fd6f5064c8bcp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798fe09e1c259p-28L 0xe.a3d35b28f0e32fd6f5064c8bc4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798fe09e1c258p-28L 0xe.a3d35b28f0e32fd6f5064c8bcp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7dp-4L : 0x2.3f471b7b5edb4798fe09e1c259p-28L 0xe.a3d35b28f0e32fd6f5064c8bc4p-4L : inexact-ok += clog downward dbl-64 0x9.c1b6bp-4 0xc.ae53de1d5a7c8p-4 : 0x2.3f471b15ec3c6p-28 0xe.a3d35b28f0e28p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6bp-4 0xc.ae53de1d5a7c8p-4 : 0x2.3f471b15ec3c8p-28 0xe.a3d35b28f0e3p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6bp-4 0xc.ae53de1d5a7c8p-4 : 0x2.3f471b15ec3c6p-28 0xe.a3d35b28f0e28p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6bp-4 0xc.ae53de1d5a7c8p-4 : 0x2.3f471b15ec3c8p-28 0xe.a3d35b28f0e3p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732cp-28L 0xe.a3d35b28f0e2e1cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732cp-28L 0xe.a3d35b28f0e2e1dp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732cp-28L 0xe.a3d35b28f0e2e1cp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c733p-28L 0xe.a3d35b28f0e2e1dp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732cp-28L 0xe.a3d35b28f0e2e1cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732cp-28L 0xe.a3d35b28f0e2e1dp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732cp-28L 0xe.a3d35b28f0e2e1cp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c733p-28L 0xe.a3d35b28f0e2e1dp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732d3e3303c882a6p-28L 0xe.a3d35b28f0e2e1c93f9c395ad8b8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732d3e3303c882a6p-28L 0xe.a3d35b28f0e2e1c93f9c395ad8b8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732d3e3303c882a6p-28L 0xe.a3d35b28f0e2e1c93f9c395ad8b8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732d3e3303c882a8p-28L 0xe.a3d35b28f0e2e1c93f9c395ad8cp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732d3e3303c882p-28L 0xe.a3d35b28f0e2e1c93f9c395ad8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732d3e3303c883p-28L 0xe.a3d35b28f0e2e1c93f9c395ad8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732d3e3303c882p-28L 0xe.a3d35b28f0e2e1c93f9c395ad8p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8p-4L : 0x2.3f471b15ec3c732d3e3303c883p-28L 0xe.a3d35b28f0e2e1c93f9c395adcp-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d48p-28L 0xe.a3d35b28f0e2e88p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d48p-28L 0xe.a3d35b28f0e2e89p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d48p-28L 0xe.a3d35b28f0e2e88p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d4cp-28L 0xe.a3d35b28f0e2e89p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d48p-28L 0xe.a3d35b28f0e2e88p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d48p-28L 0xe.a3d35b28f0e2e89p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d48p-28L 0xe.a3d35b28f0e2e88p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d4cp-28L 0xe.a3d35b28f0e2e89p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d490e27801435fap-28L 0xe.a3d35b28f0e2e8882eea04437318p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d490e27801435fcp-28L 0xe.a3d35b28f0e2e8882eea04437318p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d490e27801435fap-28L 0xe.a3d35b28f0e2e8882eea04437318p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d490e27801435fcp-28L 0xe.a3d35b28f0e2e8882eea0443732p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d490e27801435p-28L 0xe.a3d35b28f0e2e8882eea04437p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d490e27801436p-28L 0xe.a3d35b28f0e2e8882eea044374p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d490e27801435p-28L 0xe.a3d35b28f0e2e8882eea04437p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x2.3f471b1eb0c46d490e27801436p-28L 0xe.a3d35b28f0e2e8882eea044374p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196cp-28L 0xe.a3d35b28f0e2e87p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416197p-28L 0xe.a3d35b28f0e2e88p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196cp-28L 0xe.a3d35b28f0e2e87p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416197p-28L 0xe.a3d35b28f0e2e88p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196cp-28L 0xe.a3d35b28f0e2e87p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416197p-28L 0xe.a3d35b28f0e2e88p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196cp-28L 0xe.a3d35b28f0e2e87p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416197p-28L 0xe.a3d35b28f0e2e88p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196e80af852ae344p-28L 0xe.a3d35b28f0e2e87e6d3357010cf8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196e80af852ae346p-28L 0xe.a3d35b28f0e2e87e6d3357010dp-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196e80af852ae344p-28L 0xe.a3d35b28f0e2e87e6d3357010cf8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196e80af852ae346p-28L 0xe.a3d35b28f0e2e87e6d3357010dp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196e80af852ae3p-28L 0xe.a3d35b28f0e2e87e6d3357010cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196e80af852ae3p-28L 0xe.a3d35b28f0e2e87e6d3357010cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196e80af852ae3p-28L 0xe.a3d35b28f0e2e87e6d3357010cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8bp-4L : 0x2.3f471b1ea416196e80af852ae4p-28L 0xe.a3d35b28f0e2e87e6d3357011p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x2.3f471b1eb050ac3e3fbb0651291cp-28L 0xe.a3d35b28f0e2e887d5da73f20868p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x2.3f471b1eb050ac3e3fbb0651291ep-28L 0xe.a3d35b28f0e2e887d5da73f2087p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x2.3f471b1eb050ac3e3fbb0651291cp-28L 0xe.a3d35b28f0e2e887d5da73f20868p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x2.3f471b1eb050ac3e3fbb0651291ep-28L 0xe.a3d35b28f0e2e887d5da73f2087p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x2.3f471b1eb050ac3e3fbb065129p-28L 0xe.a3d35b28f0e2e887d5da73f208p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x2.3f471b1eb050ac3e3fbb065129p-28L 0xe.a3d35b28f0e2e887d5da73f208p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x2.3f471b1eb050ac3e3fbb065129p-28L 0xe.a3d35b28f0e2e887d5da73f208p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6bp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x2.3f471b1eb050ac3e3fbb06512ap-28L 0xe.a3d35b28f0e2e887d5da73f20cp-4L : inexact-ok += clog downward flt-32 0x9.c1b6ap-4f 0xc.ae53ep-4f : -0x6.03e8c8p-28f 0xe.a3d36p-4f : inexact-ok += clog tonearest flt-32 0x9.c1b6ap-4f 0xc.ae53ep-4f : -0x6.03e8cp-28f 0xe.a3d37p-4f : inexact-ok += clog towardzero flt-32 0x9.c1b6ap-4f 0xc.ae53ep-4f : -0x6.03e8cp-28f 0xe.a3d36p-4f : inexact-ok += clog upward flt-32 0x9.c1b6ap-4f 0xc.ae53ep-4f : -0x6.03e8cp-28f 0xe.a3d37p-4f : inexact-ok += clog downward dbl-64 0x9.c1b6ap-4 0xc.ae53ep-4 : -0x6.03e8c242ef85cp-28 0xe.a3d368fd95518p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ap-4 0xc.ae53ep-4 : -0x6.03e8c242ef85cp-28 0xe.a3d368fd95518p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ap-4 0xc.ae53ep-4 : -0x6.03e8c242ef858p-28 0xe.a3d368fd95518p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ap-4 0xc.ae53ep-4 : -0x6.03e8c242ef858p-28 0xe.a3d368fd9552p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a4p-28L 0xe.a3d368fd955193p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a4p-28L 0xe.a3d368fd955193p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3f8p-28L 0xe.a3d368fd955193p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3f8p-28L 0xe.a3d368fd9551931p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a4p-28L 0xe.a3d368fd955193p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a4p-28L 0xe.a3d368fd955193p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3f8p-28L 0xe.a3d368fd955193p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3f8p-28L 0xe.a3d368fd9551931p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3fd5bb5fc2b90bp-28L 0xe.a3d368fd95519307a33926d57fep-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3fd5bb5fc2b90acp-28L 0xe.a3d368fd95519307a33926d57fe8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3fd5bb5fc2b90acp-28L 0xe.a3d368fd95519307a33926d57fep-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3fd5bb5fc2b90acp-28L 0xe.a3d368fd95519307a33926d57fe8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3fd5bb5fc2b92p-28L 0xe.a3d368fd95519307a33926d57cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3fd5bb5fc2b9p-28L 0xe.a3d368fd95519307a33926d58p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3fd5bb5fc2b9p-28L 0xe.a3d368fd95519307a33926d57cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53ep-4L : -0x6.03e8c242ef85a3fd5bb5fc2b9p-28L 0xe.a3d368fd95519307a33926d58p-4L : inexact-ok += clog downward flt-32 0x9.c1b6ap-4f 0xc.ae53dp-4f : -0x1.2b23ccp-24f 0xe.a3d35p-4f : inexact-ok += clog tonearest flt-32 0x9.c1b6ap-4f 0xc.ae53dp-4f : -0x1.2b23cap-24f 0xe.a3d36p-4f : inexact-ok += clog towardzero flt-32 0x9.c1b6ap-4f 0xc.ae53dp-4f : -0x1.2b23cap-24f 0xe.a3d35p-4f : inexact-ok += clog upward flt-32 0x9.c1b6ap-4f 0xc.ae53dp-4f : -0x1.2b23cap-24f 0xe.a3d36p-4f : inexact-ok += clog downward dbl-64 0x9.c1b6ap-4 0xc.ae53dp-4 : -0x1.2b23cadd8c9fep-24 0xe.a3d35f3bdea28p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ap-4 0xc.ae53dp-4 : -0x1.2b23cadd8c9fdp-24 0xe.a3d35f3bdea28p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ap-4 0xc.ae53dp-4 : -0x1.2b23cadd8c9fdp-24 0xe.a3d35f3bdea28p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ap-4 0xc.ae53dp-4 : -0x1.2b23cadd8c9fdp-24 0xe.a3d35f3bdea3p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd254p-24L 0xe.a3d35f3bdea2816p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd252p-24L 0xe.a3d35f3bdea2816p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd252p-24L 0xe.a3d35f3bdea2816p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd252p-24L 0xe.a3d35f3bdea2817p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd254p-24L 0xe.a3d35f3bdea2816p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd252p-24L 0xe.a3d35f3bdea2816p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd252p-24L 0xe.a3d35f3bdea2816p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd252p-24L 0xe.a3d35f3bdea2817p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd2526ab2fa9390a7p-24L 0xe.a3d35f3bdea28163554c21c19788p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd2526ab2fa9390a6p-24L 0xe.a3d35f3bdea28163554c21c1979p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd2526ab2fa9390a6p-24L 0xe.a3d35f3bdea28163554c21c19788p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd2526ab2fa9390a6p-24L 0xe.a3d35f3bdea28163554c21c1979p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd2526ab2fa9391p-24L 0xe.a3d35f3bdea28163554c21c194p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd2526ab2fa93908p-24L 0xe.a3d35f3bdea28163554c21c198p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd2526ab2fa93908p-24L 0xe.a3d35f3bdea28163554c21c194p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53dp-4L : -0x1.2b23cadd8c9fd2526ab2fa93908p-24L 0xe.a3d35f3bdea28163554c21c198p-4L : inexact-ok += clog downward dbl-64 0x9.c1b6ap-4 0xc.ae53de1d5a7dp-4 : -0x7.826f8fba1e114p-28 0xe.a3d367d744c5p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ap-4 0xc.ae53de1d5a7dp-4 : -0x7.826f8fba1e114p-28 0xe.a3d367d744c58p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ap-4 0xc.ae53de1d5a7dp-4 : -0x7.826f8fba1e11p-28 0xe.a3d367d744c5p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ap-4 0xc.ae53de1d5a7dp-4 : -0x7.826f8fba1e11p-28 0xe.a3d367d744c58p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f88p-28L 0xe.a3d367d744c578ep-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f88p-28L 0xe.a3d367d744c578ep-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f8p-28L 0xe.a3d367d744c578ep-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f8p-28L 0xe.a3d367d744c578fp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f88p-28L 0xe.a3d367d744c578ep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f88p-28L 0xe.a3d367d744c578ep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f8p-28L 0xe.a3d367d744c578ep-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f8p-28L 0xe.a3d367d744c578fp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f869161ba29d1bcp-28L 0xe.a3d367d744c578e5b8984c69c9f8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f869161ba29d1bcp-28L 0xe.a3d367d744c578e5b8984c69cap-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f869161ba29d1b8p-28L 0xe.a3d367d744c578e5b8984c69c9f8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f869161ba29d1b8p-28L 0xe.a3d367d744c578e5b8984c69cap-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f869161ba29d2p-28L 0xe.a3d367d744c578e5b8984c69c8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f869161ba29d2p-28L 0xe.a3d367d744c578e5b8984c69c8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f869161ba29dp-28L 0xe.a3d367d744c578e5b8984c69c8p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7dp-4L : -0x7.826f8fba1e112f869161ba29dp-28L 0xe.a3d367d744c578e5b8984c69ccp-4L : inexact-ok += clog downward dbl-64 0x9.c1b6ap-4 0xc.ae53de1d5a7c8p-4 : -0x7.826f901f90b08p-28 0xe.a3d367d744c5p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ap-4 0xc.ae53de1d5a7c8p-4 : -0x7.826f901f90b08p-28 0xe.a3d367d744c5p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ap-4 0xc.ae53de1d5a7c8p-4 : -0x7.826f901f90b04p-28 0xe.a3d367d744c5p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ap-4 0xc.ae53de1d5a7c8p-4 : -0x7.826f901f90b04p-28 0xe.a3d367d744c58p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fbp-28L 0xe.a3d367d744c52adp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fa8p-28L 0xe.a3d367d744c52aep-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fa8p-28L 0xe.a3d367d744c52adp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fa8p-28L 0xe.a3d367d744c52aep-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fbp-28L 0xe.a3d367d744c52adp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fa8p-28L 0xe.a3d367d744c52aep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fa8p-28L 0xe.a3d367d744c52adp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fa8p-28L 0xe.a3d367d744c52aep-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fabbdd57dec442p-28L 0xe.a3d367d744c52ad8034f07cc0ffp-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fabbdd57dec442p-28L 0xe.a3d367d744c52ad8034f07cc0ffp-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fabbdd57dec441cp-28L 0xe.a3d367d744c52ad8034f07cc0ffp-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fabbdd57dec441cp-28L 0xe.a3d367d744c52ad8034f07cc0ff8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fabbdd57dec46p-28L 0xe.a3d367d744c52ad8034f07cc0cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fabbdd57dec44p-28L 0xe.a3d367d744c52ad8034f07cc1p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fabbdd57dec44p-28L 0xe.a3d367d744c52ad8034f07cc0cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8p-4L : -0x7.826f901f90b07fabbdd57dec44p-28L 0xe.a3d367d744c52ad8034f07cc1p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287aep-28L 0xe.a3d367d744c5319p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287aep-28L 0xe.a3d367d744c5319p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ad8p-28L 0xe.a3d367d744c5319p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ad8p-28L 0xe.a3d367d744c531ap-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287aep-28L 0xe.a3d367d744c5319p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287aep-28L 0xe.a3d367d744c5319p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ad8p-28L 0xe.a3d367d744c5319p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ad8p-28L 0xe.a3d367d744c531ap-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ade875df24499fcp-28L 0xe.a3d367d744c53196f299fcda31c8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ade875df24499fcp-28L 0xe.a3d367d744c53196f299fcda31c8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ade875df24499f8p-28L 0xe.a3d367d744c53196f299fcda31c8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ade875df24499f8p-28L 0xe.a3d367d744c53196f299fcda31dp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ade875df2449ap-28L 0xe.a3d367d744c53196f299fcda3p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ade875df2449ap-28L 0xe.a3d367d744c53196f299fcda3p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ade875df24498p-28L 0xe.a3d367d744c53196f299fcda3p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x7.826f9016cc287ade875df24498p-28L 0xe.a3d367d744c53196f299fcda34p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cedp-28L 0xe.a3d367d744c5318p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec8p-28L 0xe.a3d367d744c5319p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec8p-28L 0xe.a3d367d744c5318p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec8p-28L 0xe.a3d367d744c5319p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cedp-28L 0xe.a3d367d744c5318p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec8p-28L 0xe.a3d367d744c5319p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec8p-28L 0xe.a3d367d744c5318p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec8p-28L 0xe.a3d367d744c5319p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec88c0380caa5c8p-28L 0xe.a3d367d744c5318d30e353b19e1p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec88c0380caa5c4p-28L 0xe.a3d367d744c5318d30e353b19e18p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec88c0380caa5c4p-28L 0xe.a3d367d744c5318d30e353b19e1p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec88c0380caa5c4p-28L 0xe.a3d367d744c5318d30e353b19e18p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec88c0380caa6p-28L 0xe.a3d367d744c5318d30e353b19cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec88c0380caa6p-28L 0xe.a3d367d744c5318d30e353b1ap-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec88c0380caa4p-28L 0xe.a3d367d744c5318d30e353b19cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.826f9016d8d6cec88c0380caa4p-28L 0xe.a3d367d744c5318d30e353b1ap-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x7.826f9016cc9c3be9e2f67cbfa4e4p-28L 0xe.a3d367d744c53196998a6cae361p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x7.826f9016cc9c3be9e2f67cbfa4ep-28L 0xe.a3d367d744c53196998a6cae3618p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x7.826f9016cc9c3be9e2f67cbfa4ep-28L 0xe.a3d367d744c53196998a6cae361p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x7.826f9016cc9c3be9e2f67cbfa4ep-28L 0xe.a3d367d744c53196998a6cae3618p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x7.826f9016cc9c3be9e2f67cbfa6p-28L 0xe.a3d367d744c53196998a6cae34p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x7.826f9016cc9c3be9e2f67cbfa4p-28L 0xe.a3d367d744c53196998a6cae38p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x7.826f9016cc9c3be9e2f67cbfa4p-28L 0xe.a3d367d744c53196998a6cae34p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x7.826f9016cc9c3be9e2f67cbfa4p-28L 0xe.a3d367d744c53196998a6cae38p-4L : inexact-ok += clog downward dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53ep-4 : 0x1.7e86cc7931d4ep-28 0xe.a3d35f3af4988p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53ep-4 : 0x1.7e86cc7931d4ep-28 0xe.a3d35f3af4988p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53ep-4 : 0x1.7e86cc7931d4ep-28 0xe.a3d35f3af4988p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53ep-4 : 0x1.7e86cc7931d4fp-28 0xe.a3d35f3af499p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77ep-28L 0xe.a3d35f3af4989cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e78p-28L 0xe.a3d35f3af4989cp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77ep-28L 0xe.a3d35f3af4989cp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e78p-28L 0xe.a3d35f3af4989c1p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77ep-28L 0xe.a3d35f3af4989cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e78p-28L 0xe.a3d35f3af4989cp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77ep-28L 0xe.a3d35f3af4989cp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e78p-28L 0xe.a3d35f3af4989c1p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77fe5f9a29a93bcp-28L 0xe.a3d35f3af4989c0683e4faba24dp-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77fe5f9a29a93bdp-28L 0xe.a3d35f3af4989c0683e4faba24dp-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77fe5f9a29a93bcp-28L 0xe.a3d35f3af4989c0683e4faba24dp-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77fe5f9a29a93bdp-28L 0xe.a3d35f3af4989c0683e4faba24d8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77fe5f9a29a938p-28L 0xe.a3d35f3af4989c0683e4faba24p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77fe5f9a29a938p-28L 0xe.a3d35f3af4989c0683e4faba24p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77fe5f9a29a938p-28L 0xe.a3d35f3af4989c0683e4faba24p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53ep-4L : 0x1.7e86cc7931d4e77fe5f9a29a94p-28L 0xe.a3d35f3af4989c0683e4faba28p-4L : inexact-ok += clog downward dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53dp-4 : -0xb.2fcd13355d88p-28 0xe.a3d355793de6p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53dp-4 : -0xb.2fcd13355d88p-28 0xe.a3d355793de68p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53dp-4 : -0xb.2fcd13355d878p-28 0xe.a3d355793de6p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53dp-4 : -0xb.2fcd13355d878p-28 0xe.a3d355793de68p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc7p-28L 0xe.a3d355793de6625p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc7p-28L 0xe.a3d355793de6626p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6p-28L 0xe.a3d355793de6625p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6p-28L 0xe.a3d355793de6626p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc7p-28L 0xe.a3d355793de6625p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc7p-28L 0xe.a3d355793de6626p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6p-28L 0xe.a3d355793de6625p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6p-28L 0xe.a3d355793de6626p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6c4bd36e948fcp-28L 0xe.a3d355793de6625bcc9ee2382db8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6c4bd36e948fcp-28L 0xe.a3d355793de6625bcc9ee2382db8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6c4bd36e948fb8p-28L 0xe.a3d355793de6625bcc9ee2382db8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6c4bd36e948fb8p-28L 0xe.a3d355793de6625bcc9ee2382dcp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6c4bd36e949p-28L 0xe.a3d355793de6625bcc9ee2382cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6c4bd36e949p-28L 0xe.a3d355793de6625bcc9ee2382cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6c4bd36e948cp-28L 0xe.a3d355793de6625bcc9ee2382cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53dp-4L : -0xb.2fcd13355d87dc6c4bd36e948cp-28L 0xe.a3d355793de6625bcc9ee2383p-4L : inexact-ok += clog downward dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53de1d5a7dp-4 : 0x6.916215f7081e4p-56 0xe.a3d35e14a40cp-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53de1d5a7dp-4 : 0x6.916215f7081e8p-56 0xe.a3d35e14a40cp-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53de1d5a7dp-4 : 0x6.916215f7081e4p-56 0xe.a3d35e14a40cp-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53de1d5a7dp-4 : 0x6.916215f7081e8p-56 0xe.a3d35e14a40c8p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74d8p-56L 0xe.a3d35e14a40c22ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74ep-56L 0xe.a3d35e14a40c22bp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74d8p-56L 0xe.a3d35e14a40c22ap-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74ep-56L 0xe.a3d35e14a40c22bp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74d8p-56L 0xe.a3d35e14a40c22ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74ep-56L 0xe.a3d35e14a40c22bp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74d8p-56L 0xe.a3d35e14a40c22ap-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74ep-56L 0xe.a3d35e14a40c22bp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74dcd6b5f4f45a98p-56L 0xe.a3d35e14a40c22ae31061af49fa8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74dcd6b5f4f45a9cp-56L 0xe.a3d35e14a40c22ae31061af49fa8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74dcd6b5f4f45a98p-56L 0xe.a3d35e14a40c22ae31061af49fa8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74dcd6b5f4f45a9cp-56L 0xe.a3d35e14a40c22ae31061af49fbp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74dcd6b5f4f45ap-56L 0xe.a3d35e14a40c22ae31061af49cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74dcd6b5f4f45ap-56L 0xe.a3d35e14a40c22ae31061af4ap-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74dcd6b5f4f45ap-56L 0xe.a3d35e14a40c22ae31061af49cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7dp-4L : 0x6.916215f7081e74dcd6b5f4f45cp-56L 0xe.a3d35e14a40c22ae31061af4ap-4L : inexact-ok += clog downward dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53de1d5a7c8p-4 : 0x3.a3826e85ae03ep-60 0xe.a3d35e14a40b8p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53de1d5a7c8p-4 : 0x3.a3826e85ae04p-60 0xe.a3d35e14a40cp-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53de1d5a7c8p-4 : 0x3.a3826e85ae03ep-60 0xe.a3d35e14a40b8p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ac509a248p-4 0xc.ae53de1d5a7c8p-4 : 0x3.a3826e85ae04p-60 0xe.a3d35e14a40cp-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2cp-60L 0xe.a3d35e14a40bd4ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2cp-60L 0xe.a3d35e14a40bd4ap-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2cp-60L 0xe.a3d35e14a40bd4ap-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff3p-60L 0xe.a3d35e14a40bd4bp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2cp-60L 0xe.a3d35e14a40bd4ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2cp-60L 0xe.a3d35e14a40bd4ap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2cp-60L 0xe.a3d35e14a40bd4ap-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff3p-60L 0xe.a3d35e14a40bd4bp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2c2820dab40d3p-60L 0xe.a3d35e14a40bd4a07ba396237db8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2c2820dab40d3p-60L 0xe.a3d35e14a40bd4a07ba396237dcp-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2c2820dab40d3p-60L 0xe.a3d35e14a40bd4a07ba396237db8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2c2820dab40d32p-60L 0xe.a3d35e14a40bd4a07ba396237dcp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2c2820dab40dp-60L 0xe.a3d35e14a40bd4a07ba396237cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2c2820dab40dp-60L 0xe.a3d35e14a40bd4a07ba396237cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2c2820dab40dp-60L 0xe.a3d35e14a40bd4a07ba396237cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8p-4L : 0x3.a3826e85ae03ff2c2820dab40ep-60L 0xe.a3d35e14a40bd4a07ba396238p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940ebp-60L 0xe.a3d35e14a40bdb5p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940ebp-60L 0xe.a3d35e14a40bdb6p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940ebp-60L 0xe.a3d35e14a40bdb5p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940ecp-60L 0xe.a3d35e14a40bdb6p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940ebp-60L 0xe.a3d35e14a40bdb5p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940ebp-60L 0xe.a3d35e14a40bdb6p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940ebp-60L 0xe.a3d35e14a40bdb5p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940ecp-60L 0xe.a3d35e14a40bdb6p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940eb453d7e5094a9p-60L 0xe.a3d35e14a40bdb5f6af0b9de10fp-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940eb453d7e5094a98p-60L 0xe.a3d35e14a40bdb5f6af0b9de10fp-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940eb453d7e5094a9p-60L 0xe.a3d35e14a40bdb5f6af0b9de10fp-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940eb453d7e5094a98p-60L 0xe.a3d35e14a40bdb5f6af0b9de10f8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940eb453d7e50948p-60L 0xe.a3d35e14a40bdb5f6af0b9de1p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940eb453d7e5094cp-60L 0xe.a3d35e14a40bdb5f6af0b9de1p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940eb453d7e50948p-60L 0xe.a3d35e14a40bdb5f6af0b9de1p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b1p-4L : 0xc.680a6b17f9940eb453d7e5094cp-60L 0xe.a3d35e14a40bdb5f6af0b9de14p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923p-60L 0xe.a3d35e14a40bdb5p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39924p-60L 0xe.a3d35e14a40bdb5p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923p-60L 0xe.a3d35e14a40bdb5p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39924p-60L 0xe.a3d35e14a40bdb6p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923p-60L 0xe.a3d35e14a40bdb5p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39924p-60L 0xe.a3d35e14a40bdb5p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923p-60L 0xe.a3d35e14a40bdb5p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39924p-60L 0xe.a3d35e14a40bdb6p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923cec338ef8457p-60L 0xe.a3d35e14a40bdb55a93a0d8d76c8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923cec338ef84578p-60L 0xe.a3d35e14a40bdb55a93a0d8d76dp-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923cec338ef8457p-60L 0xe.a3d35e14a40bdb55a93a0d8d76c8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923cec338ef84578p-60L 0xe.a3d35e14a40bdb55a93a0d8d76dp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923cec338ef844p-60L 0xe.a3d35e14a40bdb55a93a0d8d74p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923cec338ef844p-60L 0xe.a3d35e14a40bdb55a93a0d8d78p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923cec338ef844p-60L 0xe.a3d35e14a40bdb55a93a0d8d74p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8bp-4L : 0xc.5b5c1739dc39923cec338ef848p-60L 0xe.a3d35e14a40bdb55a93a0d8d78p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xc.6796aa0d0aa3bd2b0d3731e342c8p-60L 0xe.a3d35e14a40bdb5f11e12995457p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xc.6796aa0d0aa3bd2b0d3731e342dp-60L 0xe.a3d35e14a40bdb5f11e12995457p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xc.6796aa0d0aa3bd2b0d3731e342c8p-60L 0xe.a3d35e14a40bdb5f11e12995457p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xc.6796aa0d0aa3bd2b0d3731e342dp-60L 0xe.a3d35e14a40bdb5f11e129954578p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xc.6796aa0d0aa3bd2b0d3731e34p-60L 0xe.a3d35e14a40bdb5f11e1299544p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xc.6796aa0d0aa3bd2b0d3731e344p-60L 0xe.a3d35e14a40bdb5f11e1299544p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xc.6796aa0d0aa3bd2b0d3731e34p-60L 0xe.a3d35e14a40bdb5f11e1299544p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a248p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xc.6796aa0d0aa3bd2b0d3731e344p-60L 0xe.a3d35e14a40bdb5f11e1299548p-4L : inexact-ok += clog downward dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53ep-4 : 0x1.7e86cc2b241f9p-28 0xe.a3d35f3af499p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53ep-4 : 0x1.7e86cc2b241f9p-28 0xe.a3d35f3af499p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53ep-4 : 0x1.7e86cc2b241f9p-28 0xe.a3d35f3af499p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53ep-4 : 0x1.7e86cc2b241fap-28 0xe.a3d35f3af4998p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938ep-28L 0xe.a3d35f3af499017p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f939p-28L 0xe.a3d35f3af499018p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938ep-28L 0xe.a3d35f3af499017p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f939p-28L 0xe.a3d35f3af499018p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938ep-28L 0xe.a3d35f3af499017p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f939p-28L 0xe.a3d35f3af499018p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938ep-28L 0xe.a3d35f3af499017p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f939p-28L 0xe.a3d35f3af499018p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938f469a83c6f408p-28L 0xe.a3d35f3af499017922d207eb9f7p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938f469a83c6f408p-28L 0xe.a3d35f3af499017922d207eb9f7p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938f469a83c6f408p-28L 0xe.a3d35f3af499017922d207eb9f7p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938f469a83c6f409p-28L 0xe.a3d35f3af499017922d207eb9f78p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938f469a83c6f4p-28L 0xe.a3d35f3af499017922d207eb9cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938f469a83c6f4p-28L 0xe.a3d35f3af499017922d207ebap-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938f469a83c6f4p-28L 0xe.a3d35f3af499017922d207eb9cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53ep-4L : 0x1.7e86cc2b241f938f469a83c6f48p-28L 0xe.a3d35f3af499017922d207ebap-4L : inexact-ok += clog downward dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53dp-4 : -0xb.2fcd13836b3ep-28 0xe.a3d355793de68p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53dp-4 : -0xb.2fcd13836b3d8p-28 0xe.a3d355793de7p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53dp-4 : -0xb.2fcd13836b3d8p-28 0xe.a3d355793de68p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53dp-4 : -0xb.2fcd13836b3d8p-28 0xe.a3d355793de7p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac2p-28L 0xe.a3d355793de6c7cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac1p-28L 0xe.a3d355793de6c7dp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac1p-28L 0xe.a3d355793de6c7cp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac1p-28L 0xe.a3d355793de6c7dp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac2p-28L 0xe.a3d355793de6c7cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac1p-28L 0xe.a3d355793de6c7dp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac1p-28L 0xe.a3d355793de6c7cp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac1p-28L 0xe.a3d355793de6c7dp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac16580f05a9b4p-28L 0xe.a3d355793de6c7ce6bacbdfc72b8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac16580f05a9b4p-28L 0xe.a3d355793de6c7ce6bacbdfc72cp-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac16580f05a9b3f8p-28L 0xe.a3d355793de6c7ce6bacbdfc72b8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac16580f05a9b3f8p-28L 0xe.a3d355793de6c7ce6bacbdfc72cp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac16580f05a9b4p-28L 0xe.a3d355793de6c7ce6bacbdfc7p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac16580f05a9b4p-28L 0xe.a3d355793de6c7ce6bacbdfc74p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac16580f05a9bp-28L 0xe.a3d355793de6c7ce6bacbdfc7p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53dp-4L : -0xb.2fcd13836b3dac16580f05a9bp-28L 0xe.a3d355793de6c7ce6bacbdfc74p-4L : inexact-ok += clog downward dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53de1d5a7dp-4 : 0x1.b086bfcebb0c7p-56 0xe.a3d35e14a40c8p-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53de1d5a7dp-4 : 0x1.b086bfcebb0c8p-56 0xe.a3d35e14a40c8p-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53de1d5a7dp-4 : 0x1.b086bfcebb0c7p-56 0xe.a3d35e14a40c8p-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53de1d5a7dp-4 : 0x1.b086bfcebb0c8p-56 0xe.a3d35e14a40dp-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d24p-56L 0xe.a3d35e14a40c882p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d26p-56L 0xe.a3d35e14a40c882p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d24p-56L 0xe.a3d35e14a40c882p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d26p-56L 0xe.a3d35e14a40c883p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d24p-56L 0xe.a3d35e14a40c882p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d26p-56L 0xe.a3d35e14a40c882p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d24p-56L 0xe.a3d35e14a40c882p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d26p-56L 0xe.a3d35e14a40c883p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d2538f1b8ec93e3p-56L 0xe.a3d35e14a40c8820cff705c8846p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d2538f1b8ec93e3p-56L 0xe.a3d35e14a40c8820cff705c8846p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d2538f1b8ec93e3p-56L 0xe.a3d35e14a40c8820cff705c8846p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d2538f1b8ec93e4p-56L 0xe.a3d35e14a40c8820cff705c88468p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d2538f1b8ec938p-56L 0xe.a3d35e14a40c8820cff705c884p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d2538f1b8ec94p-56L 0xe.a3d35e14a40c8820cff705c884p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d2538f1b8ec938p-56L 0xe.a3d35e14a40c8820cff705c884p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7dp-4L : 0x1.b086bfcebb0c7d2538f1b8ec94p-56L 0xe.a3d35e14a40c8820cff705c888p-4L : inexact-ok += clog downward dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53de1d5a7c8p-4 : -0x4.a6a32f3ff232p-56 0xe.a3d35e14a40cp-4 : inexact-ok += clog tonearest dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53de1d5a7c8p-4 : -0x4.a6a32f3ff232p-56 0xe.a3d35e14a40cp-4 : inexact-ok += clog towardzero dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53de1d5a7c8p-4 : -0x4.a6a32f3ff231cp-56 0xe.a3d35e14a40cp-4 : inexact-ok += clog upward dbl-64 0x9.c1b6ac509a24p-4 0xc.ae53de1d5a7c8p-4 : -0x4.a6a32f3ff231cp-56 0xe.a3d35e14a40c8p-4 : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5a8p-56L 0xe.a3d35e14a40c3a1p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5ap-56L 0xe.a3d35e14a40c3a1p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5ap-56L 0xe.a3d35e14a40c3a1p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5ap-56L 0xe.a3d35e14a40c3a2p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5a8p-56L 0xe.a3d35e14a40c3a1p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5ap-56L 0xe.a3d35e14a40c3a1p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5ap-56L 0xe.a3d35e14a40c3a1p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5ap-56L 0xe.a3d35e14a40c3a2p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5a191834bb3cf2cp-56L 0xe.a3d35e14a40c3a131a9480f76378p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5a191834bb3cf2cp-56L 0xe.a3d35e14a40c3a131a9480f7638p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5a191834bb3cf28p-56L 0xe.a3d35e14a40c3a131a9480f76378p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5a191834bb3cf28p-56L 0xe.a3d35e14a40c3a131a9480f7638p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5a191834bb3dp-56L 0xe.a3d35e14a40c3a131a9480f76p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5a191834bb3dp-56L 0xe.a3d35e14a40c3a131a9480f764p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5a191834bb3cep-56L 0xe.a3d35e14a40c3a131a9480f76p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8p-4L : -0x4.a6a32f3ff231f5a191834bb3cep-56L 0xe.a3d35e14a40c3a131a9480f764p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef58p-56L 0xe.a3d35e14a40c40dp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef5p-56L 0xe.a3d35e14a40c40dp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef5p-56L 0xe.a3d35e14a40c40dp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef5p-56L 0xe.a3d35e14a40c40ep-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef58p-56L 0xe.a3d35e14a40c40dp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef5p-56L 0xe.a3d35e14a40c40dp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef5p-56L 0xe.a3d35e14a40c40dp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef5p-56L 0xe.a3d35e14a40c40ep-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef505b877a654ffcp-56L 0xe.a3d35e14a40c40d209e1a4b1f698p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef505b877a654ff8p-56L 0xe.a3d35e14a40c40d209e1a4b1f698p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef505b877a654ff8p-56L 0xe.a3d35e14a40c40d209e1a4b1f698p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef505b877a654ff8p-56L 0xe.a3d35e14a40c40d209e1a4b1f6ap-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef505b877a655p-56L 0xe.a3d35e14a40c40d209e1a4b1f4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef505b877a655p-56L 0xe.a3d35e14a40c40d209e1a4b1f8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef505b877a654ep-56L 0xe.a3d35e14a40c40d209e1a4b1f4p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.1a5aaf76cd78ef505b877a654ep-56L 0xe.a3d35e14a40c40d209e1a4b1f8p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e972p-56L 0xe.a3d35e14a40c40cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e972p-56L 0xe.a3d35e14a40c40dp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e9718p-56L 0xe.a3d35e14a40c40cp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e9718p-56L 0xe.a3d35e14a40c40dp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e972p-56L 0xe.a3d35e14a40c40cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e972p-56L 0xe.a3d35e14a40c40dp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e9718p-56L 0xe.a3d35e14a40c40cp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e9718p-56L 0xe.a3d35e14a40c40dp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e971f8d9887ea0b38p-56L 0xe.a3d35e14a40c40c8482af8615c7p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e971f8d9887ea0b34p-56L 0xe.a3d35e14a40c40c8482af8615c78p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e971f8d9887ea0b34p-56L 0xe.a3d35e14a40c40c8482af8615c7p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e971f8d9887ea0b34p-56L 0xe.a3d35e14a40c40c8482af8615c78p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e971f8d9887ea0cp-56L 0xe.a3d35e14a40c40c8482af8615cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e971f8d9887ea0cp-56L 0xe.a3d35e14a40c40c8482af8615cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e971f8d9887ea0ap-56L 0xe.a3d35e14a40c40c8482af8615cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8bp-4L : -0x4.1b2594b4af4e971f8d9887ea0ap-56L 0xe.a3d35e14a40c40c8482af8616p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x4.1a61eb877c67f46936878de4788cp-56L 0xe.a3d35e14a40c40d1b0d214692b18p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x4.1a61eb877c67f46936878de4788cp-56L 0xe.a3d35e14a40c40d1b0d214692b18p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x4.1a61eb877c67f46936878de47888p-56L 0xe.a3d35e14a40c40d1b0d214692b18p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x4.1a61eb877c67f46936878de47888p-56L 0xe.a3d35e14a40c40d1b0d214692b2p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x4.1a61eb877c67f46936878de47ap-56L 0xe.a3d35e14a40c40d1b0d2146928p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x4.1a61eb877c67f46936878de478p-56L 0xe.a3d35e14a40c40d1b0d214692cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x4.1a61eb877c67f46936878de478p-56L 0xe.a3d35e14a40c40d1b0d2146928p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a24p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x4.1a61eb877c67f46936878de478p-56L 0xe.a3d35e14a40c40d1b0d214692cp-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010cp-28L 0xe.a3d35f3af498ac1p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010ep-28L 0xe.a3d35f3af498ac2p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010cp-28L 0xe.a3d35f3af498ac1p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010ep-28L 0xe.a3d35f3af498ac2p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010cp-28L 0xe.a3d35f3af498ac1p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010ep-28L 0xe.a3d35f3af498ac2p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010cp-28L 0xe.a3d35f3af498ac1p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010ep-28L 0xe.a3d35f3af498ac2p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010dd6af18d11f38p-28L 0xe.a3d35f3af498ac1fd45d58f21eap-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010dd6af18d11f38p-28L 0xe.a3d35f3af498ac1fd45d58f21ea8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010dd6af18d11f38p-28L 0xe.a3d35f3af498ac1fd45d58f21eap-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010dd6af18d11f39p-28L 0xe.a3d35f3af498ac1fd45d58f21ea8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010dd6af18d11fp-28L 0xe.a3d35f3af498ac1fd45d58f21cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010dd6af18d11fp-28L 0xe.a3d35f3af498ac1fd45d58f22p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010dd6af18d11fp-28L 0xe.a3d35f3af498ac1fd45d58f21cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53ep-4L : 0x1.7e86cc6ccee8010dd6af18d11f8p-28L 0xe.a3d35f3af498ac1fd45d58f22p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d69p-28L 0xe.a3d355793de6727p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d68p-28L 0xe.a3d355793de6727p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d68p-28L 0xe.a3d355793de6727p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d68p-28L 0xe.a3d355793de6728p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d69p-28L 0xe.a3d355793de6727p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d68p-28L 0xe.a3d355793de6727p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d68p-28L 0xe.a3d355793de6727p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d68p-28L 0xe.a3d355793de6728p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d680a80474f369b8p-28L 0xe.a3d355793de672751d1c753832e8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d680a80474f369b8p-28L 0xe.a3d355793de672751d1c753832fp-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d680a80474f369bp-28L 0xe.a3d355793de672751d1c753832e8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d680a80474f369bp-28L 0xe.a3d355793de672751d1c753832fp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d680a80474f36cp-28L 0xe.a3d355793de672751d1c75383p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d680a80474f368p-28L 0xe.a3d355793de672751d1c753834p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d680a80474f368p-28L 0xe.a3d355793de672751d1c75383p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53dp-4L : -0xb.2fcd1341c074d680a80474f368p-28L 0xe.a3d355793de672751d1c753834p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379dp-56L 0xe.a3d35e14a40c32cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d8p-56L 0xe.a3d35e14a40c32cp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379dp-56L 0xe.a3d35e14a40c32cp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d8p-56L 0xe.a3d35e14a40c32dp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379dp-56L 0xe.a3d35e14a40c32cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d8p-56L 0xe.a3d35e14a40c32cp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379dp-56L 0xe.a3d35e14a40c32cp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d8p-56L 0xe.a3d35e14a40c32dp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d501584a16c518p-56L 0xe.a3d35e14a40c32c7817f16387f9p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d501584a16c51cp-56L 0xe.a3d35e14a40c32c7817f16387f9p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d501584a16c518p-56L 0xe.a3d35e14a40c32c7817f16387f9p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d501584a16c51cp-56L 0xe.a3d35e14a40c32c7817f16387f98p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d501584a16c4p-56L 0xe.a3d35e14a40c32c7817f16387cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d501584a16c6p-56L 0xe.a3d35e14a40c32c7817f16388p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d501584a16c4p-56L 0xe.a3d35e14a40c32c7817f16387cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7dp-4L : 0x5.cb33476ae2e379d501584a16c6p-56L 0xe.a3d35e14a40c32c7817f16388p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e7p-60L 0xe.a3d35e14a40be4bp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e6p-60L 0xe.a3d35e14a40be4cp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e6p-60L 0xe.a3d35e14a40be4bp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e6p-60L 0xe.a3d35e14a40be4cp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e7p-60L 0xe.a3d35e14a40be4bp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e6p-60L 0xe.a3d35e14a40be4cp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e6p-60L 0xe.a3d35e14a40be4bp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e6p-60L 0xe.a3d35e14a40be4cp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e63947b27a4e93p-60L 0xe.a3d35e14a40be4b9cc1c91675dc8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e63947b27a4e93p-60L 0xe.a3d35e14a40be4b9cc1c91675ddp-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e63947b27a4e928p-60L 0xe.a3d35e14a40be4b9cc1c91675dc8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e63947b27a4e928p-60L 0xe.a3d35e14a40be4b9cc1c91675ddp-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e63947b27a4ecp-60L 0xe.a3d35e14a40be4b9cc1c91675cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e63947b27a4e8p-60L 0xe.a3d35e14a40be4b9cc1c91675cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e63947b27a4e8p-60L 0xe.a3d35e14a40be4b9cc1c91675cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8p-4L : -0x8.bf6a7a3ca5ac4e63947b27a4e8p-60L 0xe.a3d35e14a40be4b9cc1c91676p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7c8p-68L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7dp-68L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7c8p-68L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7dp-68L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7c8p-68L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7dp-68L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7c8p-68L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7dp-68L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7ce5d581ddc26bp-68L 0xe.a3d35e14a40beb78bb69b521f1p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7ce5d581ddc26b4p-68L 0xe.a3d35e14a40beb78bb69b521f1p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7ce5d581ddc26bp-68L 0xe.a3d35e14a40beb78bb69b521f1p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7ce5d581ddc26b4p-68L 0xe.a3d35e14a40beb78bb69b521f108p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7ce5d581ddc26p-68L 0xe.a3d35e14a40beb78bb69b521fp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7ce5d581ddc26p-68L 0xe.a3d35e14a40beb78bb69b521fp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7ce5d581ddc26p-68L 0xe.a3d35e14a40beb78bb69b521fp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b1p-4L : 0x5.1d8255a5e3ceb7ce5d581ddc28p-68L 0xe.a3d35e14a40beb78bb69b521f4p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add34p-68L 0xe.a3d35e14a40beb6p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add338p-68L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add338p-68L 0xe.a3d35e14a40beb6p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add338p-68L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add34p-68L 0xe.a3d35e14a40beb6p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add338p-68L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add338p-68L 0xe.a3d35e14a40beb6p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add338p-68L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add33b93d61db8effp-68L 0xe.a3d35e14a40beb6ef9b308d156d8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add33b93d61db8efecp-68L 0xe.a3d35e14a40beb6ef9b308d156ep-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add33b93d61db8efecp-68L 0xe.a3d35e14a40beb6ef9b308d156d8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add33b93d61db8efecp-68L 0xe.a3d35e14a40beb6ef9b308d156ep-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add33b93d61db8fp-68L 0xe.a3d35e14a40beb6ef9b308d154p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add33b93d61db8fp-68L 0xe.a3d35e14a40beb6ef9b308d158p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add33b93d61db8eep-68L 0xe.a3d35e14a40beb6ef9b308d154p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8bp-4L : -0x7.90d1887776add33b93d61db8eep-68L 0xe.a3d35e14a40beb6ef9b308d158p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x4.a9c14ab6f37d2dd483b3e4e0598cp-68L 0xe.a3d35e14a40beb78625a24d9258p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x4.a9c14ab6f37d2dd483b3e4e0599p-68L 0xe.a3d35e14a40beb78625a24d9258p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x4.a9c14ab6f37d2dd483b3e4e0598cp-68L 0xe.a3d35e14a40beb78625a24d9258p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x4.a9c14ab6f37d2dd483b3e4e0599p-68L 0xe.a3d35e14a40beb78625a24d92588p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x4.a9c14ab6f37d2dd483b3e4e058p-68L 0xe.a3d35e14a40beb78625a24d924p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x4.a9c14ab6f37d2dd483b3e4e05ap-68L 0xe.a3d35e14a40beb78625a24d924p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x4.a9c14ab6f37d2dd483b3e4e058p-68L 0xe.a3d35e14a40beb78625a24d924p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bbp-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0x4.a9c14ab6f37d2dd483b3e4e05ap-68L 0xe.a3d35e14a40beb78625a24d928p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a62p-28L 0xe.a3d35f3af498ac2p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a64p-28L 0xe.a3d35f3af498ac3p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a62p-28L 0xe.a3d35f3af498ac2p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a64p-28L 0xe.a3d35f3af498ac3p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a62p-28L 0xe.a3d35f3af498ac2p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a64p-28L 0xe.a3d35f3af498ac3p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a62p-28L 0xe.a3d35f3af498ac2p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a64p-28L 0xe.a3d35f3af498ac3p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a63589b2ce2144fp-28L 0xe.a3d35f3af498ac2c82b13693c4dp-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a63589b2ce2145p-28L 0xe.a3d35f3af498ac2c82b13693c4d8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a63589b2ce2144fp-28L 0xe.a3d35f3af498ac2c82b13693c4dp-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a63589b2ce2145p-28L 0xe.a3d35f3af498ac2c82b13693c4d8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a63589b2ce214p-28L 0xe.a3d35f3af498ac2c82b13693c4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a63589b2ce2148p-28L 0xe.a3d35f3af498ac2c82b13693c4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a63589b2ce214p-28L 0xe.a3d35f3af498ac2c82b13693c4p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53ep-4L : 0x1.7e86cc6cc5264a63589b2ce2148p-28L 0xe.a3d35f3af498ac2c82b13693c8p-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d4p-28L 0xe.a3d355793de6728p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d4p-28L 0xe.a3d355793de6728p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3p-28L 0xe.a3d355793de6728p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3p-28L 0xe.a3d355793de6729p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d4p-28L 0xe.a3d355793de6728p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d4p-28L 0xe.a3d355793de6728p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3p-28L 0xe.a3d355793de6728p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3p-28L 0xe.a3d355793de6729p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3a9d45fc717cd8p-28L 0xe.a3d355793de67281cb7056f3ab7p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3a9d45fc717cdp-28L 0xe.a3d355793de67281cb7056f3ab78p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3a9d45fc717cdp-28L 0xe.a3d355793de67281cb7056f3ab7p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3a9d45fc717cdp-28L 0xe.a3d355793de67281cb7056f3ab78p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3a9d45fc718p-28L 0xe.a3d355793de67281cb7056f3a8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3a9d45fc717cp-28L 0xe.a3d355793de67281cb7056f3acp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3a9d45fc717cp-28L 0xe.a3d355793de67281cb7056f3a8p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53dp-4L : -0xb.2fcd1341ca368d3a9d45fc717cp-28L 0xe.a3d355793de67281cb7056f3acp-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d79p-56L 0xe.a3d35e14a40c32dp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d798p-56L 0xe.a3d35e14a40c32dp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d79p-56L 0xe.a3d35e14a40c32dp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d798p-56L 0xe.a3d35e14a40c32ep-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d79p-56L 0xe.a3d35e14a40c32dp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d798p-56L 0xe.a3d35e14a40c32dp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d79p-56L 0xe.a3d35e14a40c32dp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d798p-56L 0xe.a3d35e14a40c32ep-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d795575d49b6ae08p-56L 0xe.a3d35e14a40c32d42fd2f455da1p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d795575d49b6ae08p-56L 0xe.a3d35e14a40c32d42fd2f455da1p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d795575d49b6ae08p-56L 0xe.a3d35e14a40c32d42fd2f455da1p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d795575d49b6ae0cp-56L 0xe.a3d35e14a40c32d42fd2f455da18p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d795575d49b6aep-56L 0xe.a3d35e14a40c32d42fd2f455d8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d795575d49b6aep-56L 0xe.a3d35e14a40c32d42fd2f455dcp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d795575d49b6aep-56L 0xe.a3d35e14a40c32d42fd2f455d8p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7dp-4L : 0x5.ca972c001dd9d795575d49b6bp-56L 0xe.a3d35e14a40c32d42fd2f455dcp-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672ep-60L 0xe.a3d35e14a40be4cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672ep-60L 0xe.a3d35e14a40be4cp-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672dp-60L 0xe.a3d35e14a40be4cp-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672dp-60L 0xe.a3d35e14a40be4dp-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672ep-60L 0xe.a3d35e14a40be4cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672ep-60L 0xe.a3d35e14a40be4cp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672dp-60L 0xe.a3d35e14a40be4cp-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672dp-60L 0xe.a3d35e14a40be4dp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672d9ed97afe108e8p-60L 0xe.a3d35e14a40be4c67a706f84b848p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672d9ed97afe108e8p-60L 0xe.a3d35e14a40be4c67a706f84b85p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672d9ed97afe108ep-60L 0xe.a3d35e14a40be4c67a706f84b848p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672d9ed97afe108ep-60L 0xe.a3d35e14a40be4c67a706f84b85p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672d9ed97afe10cp-60L 0xe.a3d35e14a40be4c67a706f84b8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672d9ed97afe108p-60L 0xe.a3d35e14a40be4c67a706f84b8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672d9ed97afe108p-60L 0xe.a3d35e14a40be4c67a706f84b8p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c92c30e8f64672d9ed97afe108p-60L 0xe.a3d35e14a40be4c67a706f84bcp-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3ep-68L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d8p-68L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d8p-68L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d8p-68L 0xe.a3d35e14a40beb9p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3ep-68L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d8p-68L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d8p-68L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d8p-68L 0xe.a3d35e14a40beb9p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d958af5cf13bfp-68L 0xe.a3d35e14a40beb8569bd933f4b78p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d958af5cf13bfp-68L 0xe.a3d35e14a40beb8569bd933f4b8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d958af5cf13becp-68L 0xe.a3d35e14a40beb8569bd933f4b78p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d958af5cf13becp-68L 0xe.a3d35e14a40beb8569bd933f4b8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d958af5cf13cp-68L 0xe.a3d35e14a40beb8569bd933f48p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d958af5cf13cp-68L 0xe.a3d35e14a40beb8569bd933f4cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d958af5cf13ap-68L 0xe.a3d35e14a40beb8569bd933f48p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b1p-4L : -0x4.a43456aab655b3d958af5cf13ap-68L 0xe.a3d35e14a40beb8569bd933f4cp-4L : inexact-ok += clog downward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23fp-64L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog tonearest ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23fp-64L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog towardzero ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23eep-64L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog upward ldbl-96-intel 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23eep-64L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog downward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23fp-64L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23fp-64L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23eep-64L 0xe.a3d35e14a40beb7p-4L : inexact-ok += clog upward ldbl-96-m68k 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23eep-64L 0xe.a3d35e14a40beb8p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23ef2c10b28cda86p-64L 0xe.a3d35e14a40beb7ba806e6eeb158p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23ef2c10b28cda86p-64L 0xe.a3d35e14a40beb7ba806e6eeb158p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23ef2c10b28cda85p-64L 0xe.a3d35e14a40beb7ba806e6eeb158p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23ef2c10b28cda85p-64L 0xe.a3d35e14a40beb7ba806e6eeb16p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23ef2c10b28cdbp-64L 0xe.a3d35e14a40beb7ba806e6eebp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23ef2c10b28cda8p-64L 0xe.a3d35e14a40beb7ba806e6eebp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23ef2c10b28cda8p-64L 0xe.a3d35e14a40beb7ba806e6eebp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8bp-4L : -0x1.1528834c810d23ef2c10b28cda8p-64L 0xe.a3d35e14a40beb7ba806e6eeb4p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x5.17f56199a6a73dd3bf7fa686993cp-68L 0xe.a3d35e14a40beb8510ae02f67ff8p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x5.17f56199a6a73dd3bf7fa686993cp-68L 0xe.a3d35e14a40beb8510ae02f68p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x5.17f56199a6a73dd3bf7fa6869938p-68L 0xe.a3d35e14a40beb8510ae02f67ff8p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x5.17f56199a6a73dd3bf7fa6869938p-68L 0xe.a3d35e14a40beb8510ae02f68p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x5.17f56199a6a73dd3bf7fa6869ap-68L 0xe.a3d35e14a40beb8510ae02f67cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x5.17f56199a6a73dd3bf7fa6869ap-68L 0xe.a3d35e14a40beb8510ae02f68p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x5.17f56199a6a73dd3bf7fa68698p-68L 0xe.a3d35e14a40beb8510ae02f67cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246bap-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : -0x5.17f56199a6a73dd3bf7fa68698p-68L 0xe.a3d35e14a40beb8510ae02f68p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53ep-4L : 0x1.7e86cc6cca3e3fc3feb3fbcbe5dcp-28L 0xe.a3d35f3af498ac25e3e9602f6b28p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53ep-4L : 0x1.7e86cc6cca3e3fc3feb3fbcbe5dcp-28L 0xe.a3d35f3af498ac25e3e9602f6b28p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53ep-4L : 0x1.7e86cc6cca3e3fc3feb3fbcbe5dcp-28L 0xe.a3d35f3af498ac25e3e9602f6b28p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53ep-4L : 0x1.7e86cc6cca3e3fc3feb3fbcbe5ddp-28L 0xe.a3d35f3af498ac25e3e9602f6b3p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53ep-4L : 0x1.7e86cc6cca3e3fc3feb3fbcbe58p-28L 0xe.a3d35f3af498ac25e3e9602f68p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53ep-4L : 0x1.7e86cc6cca3e3fc3feb3fbcbe6p-28L 0xe.a3d35f3af498ac25e3e9602f6cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53ep-4L : 0x1.7e86cc6cca3e3fc3feb3fbcbe58p-28L 0xe.a3d35f3af498ac25e3e9602f68p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53ep-4L : 0x1.7e86cc6cca3e3fc3feb3fbcbe6p-28L 0xe.a3d35f3af498ac25e3e9602f6cp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53dp-4L : -0xb.2fcd1341c51e97d1e43e9635775p-28L 0xe.a3d355793de6727b2ca87e6b3fap-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53dp-4L : -0xb.2fcd1341c51e97d1e43e96357748p-28L 0xe.a3d355793de6727b2ca87e6b3fa8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53dp-4L : -0xb.2fcd1341c51e97d1e43e96357748p-28L 0xe.a3d355793de6727b2ca87e6b3fap-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53dp-4L : -0xb.2fcd1341c51e97d1e43e96357748p-28L 0xe.a3d355793de6727b2ca87e6b3fa8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53dp-4L : -0xb.2fcd1341c51e97d1e43e963578p-28L 0xe.a3d355793de6727b2ca87e6b3cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53dp-4L : -0xb.2fcd1341c51e97d1e43e963578p-28L 0xe.a3d355793de6727b2ca87e6b4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53dp-4L : -0xb.2fcd1341c51e97d1e43e963574p-28L 0xe.a3d355793de6727b2ca87e6b3cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53dp-4L : -0xb.2fcd1341c51e97d1e43e963574p-28L 0xe.a3d355793de6727b2ca87e6b4p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7dp-4L : 0x5.cae8ab5637744205846ecced9658p-56L 0xe.a3d35e14a40c32cd910b1db0eb98p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7dp-4L : 0x5.cae8ab5637744205846ecced965cp-56L 0xe.a3d35e14a40c32cd910b1db0eb98p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7dp-4L : 0x5.cae8ab5637744205846ecced9658p-56L 0xe.a3d35e14a40c32cd910b1db0eb98p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7dp-4L : 0x5.cae8ab5637744205846ecced965cp-56L 0xe.a3d35e14a40c32cd910b1db0ebap-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7dp-4L : 0x5.cae8ab5637744205846ecced96p-56L 0xe.a3d35e14a40c32cd910b1db0e8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7dp-4L : 0x5.cae8ab5637744205846ecced96p-56L 0xe.a3d35e14a40c32cd910b1db0ecp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7dp-4L : 0x5.cae8ab5637744205846ecced96p-56L 0xe.a3d35e14a40c32cd910b1db0e8p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7dp-4L : 0x5.cae8ab5637744205846ecced98p-56L 0xe.a3d35e14a40c32cd910b1db0ecp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c4143b875c9fcb96850af0fd5198p-60L 0xe.a3d35e14a40be4bfdba898dfc9dp-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c4143b875c9fcb96850af0fd519p-60L 0xe.a3d35e14a40be4bfdba898dfc9d8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c4143b875c9fcb96850af0fd519p-60L 0xe.a3d35e14a40be4bfdba898dfc9dp-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c4143b875c9fcb96850af0fd519p-60L 0xe.a3d35e14a40be4bfdba898dfc9d8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c4143b875c9fcb96850af0fd54p-60L 0xe.a3d35e14a40be4bfdba898dfc8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c4143b875c9fcb96850af0fd5p-60L 0xe.a3d35e14a40be4bfdba898dfc8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c4143b875c9fcb96850af0fd5p-60L 0xe.a3d35e14a40be4bfdba898dfc8p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8p-4L : -0x8.c4143b875c9fcb96850af0fd5p-60L 0xe.a3d35e14a40be4bfdba898dfccp-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b1p-4L : 0x7.3c10aeef05189fa1d1cf9451f758p-72L 0xe.a3d35e14a40beb7ecaf5bc9a5d08p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b1p-4L : 0x7.3c10aeef05189fa1d1cf9451f758p-72L 0xe.a3d35e14a40beb7ecaf5bc9a5d08p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b1p-4L : 0x7.3c10aeef05189fa1d1cf9451f758p-72L 0xe.a3d35e14a40beb7ecaf5bc9a5d08p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b1p-4L : 0x7.3c10aeef05189fa1d1cf9451f75cp-72L 0xe.a3d35e14a40beb7ecaf5bc9a5d1p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b1p-4L : 0x7.3c10aeef05189fa1d1cf9451f6p-72L 0xe.a3d35e14a40beb7ecaf5bc9a5cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b1p-4L : 0x7.3c10aeef05189fa1d1cf9451f8p-72L 0xe.a3d35e14a40beb7ecaf5bc9a5cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b1p-4L : 0x7.3c10aeef05189fa1d1cf9451f6p-72L 0xe.a3d35e14a40beb7ecaf5bc9a5cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b1p-4L : 0x7.3c10aeef05189fa1d1cf9451f8p-72L 0xe.a3d35e14a40beb7ecaf5bc9a6p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8bp-4L : -0xc.3a92d32e6a2b011738504128a6b8p-68L 0xe.a3d35e14a40beb75093f1049c2ep-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8bp-4L : -0xc.3a92d32e6a2b011738504128a6bp-68L 0xe.a3d35e14a40beb75093f1049c2e8p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8bp-4L : -0xc.3a92d32e6a2b011738504128a6bp-68L 0xe.a3d35e14a40beb75093f1049c2ep-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8bp-4L : -0xc.3a92d32e6a2b011738504128a6bp-68L 0xe.a3d35e14a40beb75093f1049c2e8p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8bp-4L : -0xc.3a92d32e6a2b011738504128a8p-68L 0xe.a3d35e14a40beb75093f1049cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8bp-4L : -0xc.3a92d32e6a2b011738504128a8p-68L 0xe.a3d35e14a40beb75093f1049c4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8bp-4L : -0xc.3a92d32e6a2b011738504128a4p-68L 0xe.a3d35e14a40beb75093f1049cp-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8bp-4L : -0xc.3a92d32e6a2b011738504128a4p-68L 0xe.a3d35e14a40beb75093f1049c4p-4L : inexact-ok += clog downward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xa.9ffffffffffffffffffffffffff8p-168L 0xe.a3d35e14a40beb7e71e62c519188p-4L : inexact-ok += clog tonearest ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xa.ap-168L 0xe.a3d35e14a40beb7e71e62c519188p-4L : inexact-ok += clog towardzero ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xa.9ffffffffffffffffffffffffff8p-168L 0xe.a3d35e14a40beb7e71e62c519188p-4L : inexact-ok += clog upward ldbl-128 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xa.ap-168L 0xe.a3d35e14a40beb7e71e62c51919p-4L : inexact-ok += clog downward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xa.9ffffffffffffffffffffffffcp-168L 0xe.a3d35e14a40beb7e71e62c519p-4L : inexact-ok += clog tonearest ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xa.ap-168L 0xe.a3d35e14a40beb7e71e62c519p-4L : inexact-ok += clog towardzero ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xa.9ffffffffffffffffffffffffcp-168L 0xe.a3d35e14a40beb7e71e62c519p-4L : inexact-ok += clog upward ldbl-128ibm 0x9.c1b6ac509a246ba85a5c8p-4L 0xc.ae53de1d5a7c8b0f6df3p-4L : 0xa.ap-168L 0xe.a3d35e14a40beb7e71e62c5194p-4L : inexact-ok +clog 0x1df515eb171a808b9e400266p-95 0x7c71eb0cd4688dfe98581c77p-95 += clog downward flt-32 0x3.bea2cp-4f 0xf.8e3d7p-4f : 0xe.9bb0fp-28f 0x1.55a5fp+0f : inexact-ok += clog tonearest flt-32 0x3.bea2cp-4f 0xf.8e3d7p-4f : 0xe.9bb1p-28f 0x1.55a5f2p+0f : inexact-ok += clog towardzero flt-32 0x3.bea2cp-4f 0xf.8e3d7p-4f : 0xe.9bb0fp-28f 0x1.55a5fp+0f : inexact-ok += clog upward flt-32 0x3.bea2cp-4f 0xf.8e3d7p-4f : 0xe.9bb1p-28f 0x1.55a5f2p+0f : inexact-ok += clog downward dbl-64 0x3.bea2cp-4 0xf.8e3d7p-4 : 0xe.9bb0faa99f448p-28 0x1.55a5f13b5e51ap+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2cp-4 0xf.8e3d7p-4 : 0xe.9bb0faa99f448p-28 0x1.55a5f13b5e51ap+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2cp-4 0xf.8e3d7p-4 : 0xe.9bb0faa99f448p-28 0x1.55a5f13b5e51ap+0 : inexact-ok += clog upward dbl-64 0x3.bea2cp-4 0xf.8e3d7p-4 : 0xe.9bb0faa99f45p-28 0x1.55a5f13b5e51bp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abp-28L 0x1.55a5f13b5e51a6c8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449acp-28L 0x1.55a5f13b5e51a6cap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abp-28L 0x1.55a5f13b5e51a6c8p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449acp-28L 0x1.55a5f13b5e51a6cap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abp-28L 0x1.55a5f13b5e51a6c8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449acp-28L 0x1.55a5f13b5e51a6cap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abp-28L 0x1.55a5f13b5e51a6c8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449acp-28L 0x1.55a5f13b5e51a6cap+0L : inexact-ok += clog downward ldbl-128 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abaf893e78069bp-28L 0x1.55a5f13b5e51a6c9a23b246099f6p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abaf893e78069b8p-28L 0x1.55a5f13b5e51a6c9a23b246099f7p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abaf893e78069bp-28L 0x1.55a5f13b5e51a6c9a23b246099f6p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abaf893e78069b8p-28L 0x1.55a5f13b5e51a6c9a23b246099f7p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abaf893e78068p-28L 0x1.55a5f13b5e51a6c9a23b2460998p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abaf893e78068p-28L 0x1.55a5f13b5e51a6c9a23b24609ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abaf893e78068p-28L 0x1.55a5f13b5e51a6c9a23b2460998p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d7p-4L : 0xe.9bb0faa99f449abaf893e7806cp-28L 0x1.55a5f13b5e51a6c9a23b24609ap+0L : inexact-ok += clog downward flt-32 0x3.bea2cp-4f 0xf.8e3d6p-4f : -0xf.28c61p-32f 0x1.55a5fp+0f : inexact-ok += clog tonearest flt-32 0x3.bea2cp-4f 0xf.8e3d6p-4f : -0xf.28c6p-32f 0x1.55a5fp+0f : inexact-ok += clog towardzero flt-32 0x3.bea2cp-4f 0xf.8e3d6p-4f : -0xf.28c6p-32f 0x1.55a5fp+0f : inexact-ok += clog upward flt-32 0x3.bea2cp-4f 0xf.8e3d6p-4f : -0xf.28c6p-32f 0x1.55a5f2p+0f : inexact-ok += clog downward dbl-64 0x3.bea2cp-4 0xf.8e3d6p-4 : -0xf.28c600e5cdb3p-32 0x1.55a5f0ff7425dp+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2cp-4 0xf.8e3d6p-4 : -0xf.28c600e5cdb28p-32 0x1.55a5f0ff7425ep+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2cp-4 0xf.8e3d6p-4 : -0xf.28c600e5cdb28p-32 0x1.55a5f0ff7425dp+0 : inexact-ok += clog upward dbl-64 0x3.bea2cp-4 0xf.8e3d6p-4 : -0xf.28c600e5cdb28p-32 0x1.55a5f0ff7425ep+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b5p-32L 0x1.55a5f0ff7425d9fp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b5p-32L 0x1.55a5f0ff7425d9f2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b4p-32L 0x1.55a5f0ff7425d9fp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b4p-32L 0x1.55a5f0ff7425d9f2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b5p-32L 0x1.55a5f0ff7425d9fp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b5p-32L 0x1.55a5f0ff7425d9f2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b4p-32L 0x1.55a5f0ff7425d9fp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b4p-32L 0x1.55a5f0ff7425d9f2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b48df1f0cad0fc8p-32L 0x1.55a5f0ff7425d9f1486758272a97p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b48df1f0cad0fcp-32L 0x1.55a5f0ff7425d9f1486758272a97p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b48df1f0cad0fcp-32L 0x1.55a5f0ff7425d9f1486758272a97p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b48df1f0cad0fcp-32L 0x1.55a5f0ff7425d9f1486758272a98p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b48df1f0cad1p-32L 0x1.55a5f0ff7425d9f1486758272a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b48df1f0cad1p-32L 0x1.55a5f0ff7425d9f1486758272a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b48df1f0cad0cp-32L 0x1.55a5f0ff7425d9f1486758272a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d6p-4L : -0xf.28c600e5cdb28b48df1f0cad0cp-32L 0x1.55a5f0ff7425d9f1486758272bp+0L : inexact-ok += clog downward dbl-64 0x3.bea2cp-4 0xf.8e3d619a8d12p-4 : 0x9.c99abc77993p-32 0x1.55a5f1057586cp+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2cp-4 0xf.8e3d619a8d12p-4 : 0x9.c99abc77993p-32 0x1.55a5f1057586cp+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2cp-4 0xf.8e3d619a8d12p-4 : 0x9.c99abc77993p-32 0x1.55a5f1057586cp+0 : inexact-ok += clog upward dbl-64 0x3.bea2cp-4 0xf.8e3d619a8d12p-4 : 0x9.c99abc7799308p-32 0x1.55a5f1057586dp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc779930161p-32L 0x1.55a5f1057586c49cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc779930161p-32L 0x1.55a5f1057586c49cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc779930161p-32L 0x1.55a5f1057586c49cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc779930162p-32L 0x1.55a5f1057586c49ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc779930161p-32L 0x1.55a5f1057586c49cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc779930161p-32L 0x1.55a5f1057586c49cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc779930161p-32L 0x1.55a5f1057586c49cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc779930162p-32L 0x1.55a5f1057586c49ep+0L : inexact-ok += clog downward ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc7799301615b25865f23758p-32L 0x1.55a5f1057586c49cbc52ba9e7e0fp+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc7799301615b25865f2376p-32L 0x1.55a5f1057586c49cbc52ba9e7e1p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc7799301615b25865f23758p-32L 0x1.55a5f1057586c49cbc52ba9e7e0fp+0L : inexact-ok += clog upward ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc7799301615b25865f2376p-32L 0x1.55a5f1057586c49cbc52ba9e7e1p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc7799301615b25865f234p-32L 0x1.55a5f1057586c49cbc52ba9e7ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc7799301615b25865f238p-32L 0x1.55a5f1057586c49cbc52ba9e7ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc7799301615b25865f234p-32L 0x1.55a5f1057586c49cbc52ba9e7ep+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d12p-4L : 0x9.c99abc7799301615b25865f238p-32L 0x1.55a5f1057586c49cbc52ba9e7e8p+0L : inexact-ok += clog downward dbl-64 0x3.bea2cp-4 0xf.8e3d619a8d118p-4 : 0x9.c99ab4b07a7f8p-32 0x1.55a5f1057586cp+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2cp-4 0xf.8e3d619a8d118p-4 : 0x9.c99ab4b07a8p-32 0x1.55a5f1057586cp+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2cp-4 0xf.8e3d619a8d118p-4 : 0x9.c99ab4b07a7f8p-32 0x1.55a5f1057586cp+0 : inexact-ok += clog upward dbl-64 0x3.bea2cp-4 0xf.8e3d619a8d118p-4 : 0x9.c99ab4b07a8p-32 0x1.55a5f1057586dp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe1p-32L 0x1.55a5f1057586c2bcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe11p-32L 0x1.55a5f1057586c2bep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe1p-32L 0x1.55a5f1057586c2bcp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe11p-32L 0x1.55a5f1057586c2bep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe1p-32L 0x1.55a5f1057586c2bcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe11p-32L 0x1.55a5f1057586c2bep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe1p-32L 0x1.55a5f1057586c2bcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe11p-32L 0x1.55a5f1057586c2bep+0L : inexact-ok += clog downward ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe10f66daccc1b93p-32L 0x1.55a5f1057586c2bd6af2df4527f8p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe10f66daccc1b93p-32L 0x1.55a5f1057586c2bd6af2df4527f8p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe10f66daccc1b93p-32L 0x1.55a5f1057586c2bd6af2df4527f8p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe10f66daccc1b938p-32L 0x1.55a5f1057586c2bd6af2df4527f9p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe10f66daccc1b8p-32L 0x1.55a5f1057586c2bd6af2df45278p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe10f66daccc1b8p-32L 0x1.55a5f1057586c2bd6af2df4528p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe10f66daccc1b8p-32L 0x1.55a5f1057586c2bd6af2df45278p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d118p-4L : 0x9.c99ab4b07a7fe10f66daccc1bcp-32L 0x1.55a5f1057586c2bd6af2df4528p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f8p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f8p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f8p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f9p-32L 0x1.55a5f1057586c3aep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f8p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f8p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f8p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f9p-32L 0x1.55a5f1057586c3aep+0L : inexact-ok += clog downward ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f854b0dd9957bf8p-32L 0x1.55a5f1057586c3ac9bce74fafcb2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f854b0dd9957cp-32L 0x1.55a5f1057586c3ac9bce74fafcb2p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f854b0dd9957bf8p-32L 0x1.55a5f1057586c3ac9bce74fafcb2p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f854b0dd9957cp-32L 0x1.55a5f1057586c3ac9bce74fafcb3p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f854b0dd99578p-32L 0x1.55a5f1057586c3ac9bce74fafc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f854b0dd9957cp-32L 0x1.55a5f1057586c3ac9bce74fafc8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f854b0dd99578p-32L 0x1.55a5f1057586c3ac9bce74fafc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfep-4L : 0x9.c99ab89218104f854b0dd9957cp-32L 0x1.55a5f1057586c3ac9bce74fafdp+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c798p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c798p-32L 0x1.55a5f1057586c3aep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c798p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797p-32L 0x1.55a5f1057586c3acp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c798p-32L 0x1.55a5f1057586c3aep+0L : inexact-ok += clog downward ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797eaa4469e01c08p-32L 0x1.55a5f1057586c3ac5fe448ff9187p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797eaa4469e01c08p-32L 0x1.55a5f1057586c3ac5fe448ff9187p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797eaa4469e01c08p-32L 0x1.55a5f1057586c3ac5fe448ff9187p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797eaa4469e01c1p-32L 0x1.55a5f1057586c3ac5fe448ff9188p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797eaa4469e01cp-32L 0x1.55a5f1057586c3ac5fe448ff918p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797eaa4469e01cp-32L 0x1.55a5f1057586c3ac5fe448ff918p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797eaa4469e01cp-32L 0x1.55a5f1057586c3ac5fe448ff918p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfdp-4L : 0x9.c99ab8911f2c797eaa4469e02p-32L 0x1.55a5f1057586c3ac5fe448ff92p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x9.c99ab8914e82859c479b26a487f8p-32L 0x1.55a5f1057586c3ac6b496f8fdfccp+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x9.c99ab8914e82859c479b26a488p-32L 0x1.55a5f1057586c3ac6b496f8fdfcdp+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x9.c99ab8914e82859c479b26a487f8p-32L 0x1.55a5f1057586c3ac6b496f8fdfccp+0L : inexact-ok += clog upward ldbl-128 0x3.bea2cp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x9.c99ab8914e82859c479b26a488p-32L 0x1.55a5f1057586c3ac6b496f8fdfcdp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x9.c99ab8914e82859c479b26a484p-32L 0x1.55a5f1057586c3ac6b496f8fdf8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x9.c99ab8914e82859c479b26a488p-32L 0x1.55a5f1057586c3ac6b496f8fep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x9.c99ab8914e82859c479b26a484p-32L 0x1.55a5f1057586c3ac6b496f8fdf8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2cp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x9.c99ab8914e82859c479b26a488p-32L 0x1.55a5f1057586c3ac6b496f8fep+0L : inexact-ok += clog downward flt-32 0x3.bea2bcp-4f 0xf.8e3d7p-4f : 0xd.ac084p-28f 0x1.55a5fp+0f : inexact-ok += clog tonearest flt-32 0x3.bea2bcp-4f 0xf.8e3d7p-4f : 0xd.ac085p-28f 0x1.55a5f2p+0f : inexact-ok += clog towardzero flt-32 0x3.bea2bcp-4f 0xf.8e3d7p-4f : 0xd.ac084p-28f 0x1.55a5fp+0f : inexact-ok += clog upward flt-32 0x3.bea2bcp-4f 0xf.8e3d7p-4f : 0xd.ac085p-28f 0x1.55a5f2p+0f : inexact-ok += clog downward dbl-64 0x3.bea2bcp-4 0xf.8e3d7p-4 : 0xd.ac084cd138cap-28 0x1.55a5f1799746fp+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bcp-4 0xf.8e3d7p-4 : 0xd.ac084cd138cap-28 0x1.55a5f1799747p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bcp-4 0xf.8e3d7p-4 : 0xd.ac084cd138cap-28 0x1.55a5f1799746fp+0 : inexact-ok += clog upward dbl-64 0x3.bea2bcp-4 0xf.8e3d7p-4 : 0xd.ac084cd138ca8p-28 0x1.55a5f1799747p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c6p-28L 0x1.55a5f1799746f8cep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c6p-28L 0x1.55a5f1799746f8dp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c6p-28L 0x1.55a5f1799746f8cep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c7p-28L 0x1.55a5f1799746f8dp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c6p-28L 0x1.55a5f1799746f8cep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c6p-28L 0x1.55a5f1799746f8dp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c6p-28L 0x1.55a5f1799746f8cep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c7p-28L 0x1.55a5f1799746f8dp+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c640111ba83619p-28L 0x1.55a5f1799746f8cf0741db069048p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c640111ba83619p-28L 0x1.55a5f1799746f8cf0741db069048p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c640111ba83619p-28L 0x1.55a5f1799746f8cf0741db069048p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c640111ba836198p-28L 0x1.55a5f1799746f8cf0741db069049p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c640111ba836p-28L 0x1.55a5f1799746f8cf0741db069p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c640111ba836p-28L 0x1.55a5f1799746f8cf0741db06908p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c640111ba836p-28L 0x1.55a5f1799746f8cf0741db069p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d7p-4L : 0xd.ac084cd138ca0c640111ba8364p-28L 0x1.55a5f1799746f8cf0741db06908p+0L : inexact-ok += clog downward flt-32 0x3.bea2bcp-4f 0xf.8e3d6p-4f : -0x1.e2351p-28f 0x1.55a5fp+0f : inexact-ok += clog tonearest flt-32 0x3.bea2bcp-4f 0xf.8e3d6p-4f : -0x1.e2351p-28f 0x1.55a5f2p+0f : inexact-ok += clog towardzero flt-32 0x3.bea2bcp-4f 0xf.8e3d6p-4f : -0x1.e2350ep-28f 0x1.55a5fp+0f : inexact-ok += clog upward flt-32 0x3.bea2bcp-4f 0xf.8e3d6p-4f : -0x1.e2350ep-28f 0x1.55a5f2p+0f : inexact-ok += clog downward dbl-64 0x3.bea2bcp-4 0xf.8e3d6p-4 : -0x1.e2350fb8c4bdap-28 0x1.55a5f13dad1b6p+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bcp-4 0xf.8e3d6p-4 : -0x1.e2350fb8c4bdap-28 0x1.55a5f13dad1b6p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bcp-4 0xf.8e3d6p-4 : -0x1.e2350fb8c4bd9p-28 0x1.55a5f13dad1b6p+0 : inexact-ok += clog upward dbl-64 0x3.bea2bcp-4 0xf.8e3d6p-4 : -0x1.e2350fb8c4bd9p-28 0x1.55a5f13dad1b7p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ecp-28L 0x1.55a5f13dad1b64f2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ecp-28L 0x1.55a5f13dad1b64f4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebep-28L 0x1.55a5f13dad1b64f2p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebep-28L 0x1.55a5f13dad1b64f4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ecp-28L 0x1.55a5f13dad1b64f2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ecp-28L 0x1.55a5f13dad1b64f4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebep-28L 0x1.55a5f13dad1b64f2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebep-28L 0x1.55a5f13dad1b64f4p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebfedc82e26e8a5p-28L 0x1.55a5f13dad1b64f3ca0f913f2cc4p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebfedc82e26e8a5p-28L 0x1.55a5f13dad1b64f3ca0f913f2cc5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebfedc82e26e8a4p-28L 0x1.55a5f13dad1b64f3ca0f913f2cc4p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebfedc82e26e8a4p-28L 0x1.55a5f13dad1b64f3ca0f913f2cc5p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebfedc82e26e9p-28L 0x1.55a5f13dad1b64f3ca0f913f2c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebfedc82e26e88p-28L 0x1.55a5f13dad1b64f3ca0f913f2dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebfedc82e26e88p-28L 0x1.55a5f13dad1b64f3ca0f913f2c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d6p-4L : -0x1.e2350fb8c4bd9ebfedc82e26e88p-28L 0x1.55a5f13dad1b64f3ca0f913f2dp+0L : inexact-ok += clog downward dbl-64 0x3.bea2bcp-4 0xf.8e3d619a8d12p-4 : -0x5.30f03b438de7cp-32 0x1.55a5f143ae7c4p+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bcp-4 0xf.8e3d619a8d12p-4 : -0x5.30f03b438de78p-32 0x1.55a5f143ae7c5p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bcp-4 0xf.8e3d619a8d12p-4 : -0x5.30f03b438de78p-32 0x1.55a5f143ae7c4p+0 : inexact-ok += clog upward dbl-64 0x3.bea2bcp-4 0xf.8e3d619a8d12p-4 : -0x5.30f03b438de78p-32 0x1.55a5f143ae7c5p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de79588p-32L 0x1.55a5f143ae7c49e8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de79588p-32L 0x1.55a5f143ae7c49e8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958p-32L 0x1.55a5f143ae7c49e8p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958p-32L 0x1.55a5f143ae7c49eap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de79588p-32L 0x1.55a5f143ae7c49e8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de79588p-32L 0x1.55a5f143ae7c49e8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958p-32L 0x1.55a5f143ae7c49e8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958p-32L 0x1.55a5f143ae7c49eap+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958427a5294444p-32L 0x1.55a5f143ae7c49e8f1823e2919dbp+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958427a5294444p-32L 0x1.55a5f143ae7c49e8f1823e2919dcp+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958427a5294443fcp-32L 0x1.55a5f143ae7c49e8f1823e2919dbp+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958427a5294443fcp-32L 0x1.55a5f143ae7c49e8f1823e2919dcp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958427a5294444p-32L 0x1.55a5f143ae7c49e8f1823e29198p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958427a5294444p-32L 0x1.55a5f143ae7c49e8f1823e291ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958427a5294442p-32L 0x1.55a5f143ae7c49e8f1823e29198p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d12p-4L : -0x5.30f03b438de7958427a5294442p-32L 0x1.55a5f143ae7c49e8f1823e291ap+0L : inexact-ok += clog downward dbl-64 0x3.bea2bcp-4 0xf.8e3d619a8d118p-4 : -0x5.30f0430aac98cp-32 0x1.55a5f143ae7c4p+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bcp-4 0xf.8e3d619a8d118p-4 : -0x5.30f0430aac98cp-32 0x1.55a5f143ae7c5p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bcp-4 0xf.8e3d619a8d118p-4 : -0x5.30f0430aac988p-32 0x1.55a5f143ae7c4p+0 : inexact-ok += clog upward dbl-64 0x3.bea2bcp-4 0xf.8e3d619a8d118p-4 : -0x5.30f0430aac988p-32 0x1.55a5f143ae7c5p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b39p-32L 0x1.55a5f143ae7c4808p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b388p-32L 0x1.55a5f143ae7c480ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b388p-32L 0x1.55a5f143ae7c4808p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b388p-32L 0x1.55a5f143ae7c480ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b39p-32L 0x1.55a5f143ae7c4808p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b388p-32L 0x1.55a5f143ae7c480ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b388p-32L 0x1.55a5f143ae7c4808p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b388p-32L 0x1.55a5f143ae7c480ap+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b38b28210b408accp-32L 0x1.55a5f143ae7c4809a0242ab8aa07p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b38b28210b408ac8p-32L 0x1.55a5f143ae7c4809a0242ab8aa07p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b38b28210b408ac8p-32L 0x1.55a5f143ae7c4809a0242ab8aa07p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b38b28210b408ac8p-32L 0x1.55a5f143ae7c4809a0242ab8aa08p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b38b28210b408cp-32L 0x1.55a5f143ae7c4809a0242ab8aap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b38b28210b408ap-32L 0x1.55a5f143ae7c4809a0242ab8aap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b38b28210b408ap-32L 0x1.55a5f143ae7c4809a0242ab8aap+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d118p-4L : -0x5.30f0430aac98b38b28210b408ap-32L 0x1.55a5f143ae7c4809a0242ab8aa8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0dp-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0dp-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0c8p-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0c8p-32L 0x1.55a5f143ae7c48fap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0dp-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0dp-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0c8p-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0c8p-32L 0x1.55a5f143ae7c48fap+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0cf299c19991408p-32L 0x1.55a5f143ae7c48f8d0fedcec05d9p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0cf299c19991404p-32L 0x1.55a5f143ae7c48f8d0fedcec05d9p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0cf299c19991404p-32L 0x1.55a5f143ae7c48f8d0fedcec05d9p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0cf299c19991404p-32L 0x1.55a5f143ae7c48f8d0fedcec05dap+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0cf299c199916p-32L 0x1.55a5f143ae7c48f8d0fedcec058p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0cf299c199914p-32L 0x1.55a5f143ae7c48f8d0fedcec06p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0cf299c199914p-32L 0x1.55a5f143ae7c48f8d0fedcec058p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfep-4L : -0x5.30f03f290f07d0cf299c199914p-32L 0x1.55a5f143ae7c48f8d0fedcec06p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6f8p-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6fp-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6fp-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6fp-32L 0x1.55a5f143ae7c48fap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6f8p-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6fp-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6fp-32L 0x1.55a5f143ae7c48f8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6fp-32L 0x1.55a5f143ae7c48fap+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6f2ea7c29178d74p-32L 0x1.55a5f143ae7c48f89514b12997cbp+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6f2ea7c29178d7p-32L 0x1.55a5f143ae7c48f89514b12997cbp+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6f2ea7c29178d7p-32L 0x1.55a5f143ae7c48f89514b12997cbp+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6f2ea7c29178d7p-32L 0x1.55a5f143ae7c48f89514b12997ccp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6f2ea7c29178ep-32L 0x1.55a5f143ae7c48f89514b129978p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6f2ea7c29178ep-32L 0x1.55a5f143ae7c48f89514b12998p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6f2ea7c29178cp-32L 0x1.55a5f143ae7c48f89514b129978p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfdp-4L : -0x5.30f03f2a07eba6f2ea7c29178cp-32L 0x1.55a5f143ae7c48f89514b12998p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x5.30f03f29d8959acfc314a4b6ca7cp-32L 0x1.55a5f143ae7c48f8a079d7af0f6p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x5.30f03f29d8959acfc314a4b6ca7cp-32L 0x1.55a5f143ae7c48f8a079d7af0f61p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x5.30f03f29d8959acfc314a4b6ca78p-32L 0x1.55a5f143ae7c48f8a079d7af0f6p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x5.30f03f29d8959acfc314a4b6ca78p-32L 0x1.55a5f143ae7c48f8a079d7af0f61p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x5.30f03f29d8959acfc314a4b6ccp-32L 0x1.55a5f143ae7c48f8a079d7af0fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x5.30f03f29d8959acfc314a4b6cap-32L 0x1.55a5f143ae7c48f8a079d7af0f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x5.30f03f29d8959acfc314a4b6cap-32L 0x1.55a5f143ae7c48f8a079d7af0fp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bcp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x5.30f03f29d8959acfc314a4b6cap-32L 0x1.55a5f143ae7c48f8a079d7af0f8p+0L : inexact-ok += clog downward dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d7p-4 : 0xd.ff175035ed1cp-28 0x1.55a5f16406c62p+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d7p-4 : 0xd.ff175035ed1c8p-28 0x1.55a5f16406c63p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d7p-4 : 0xd.ff175035ed1cp-28 0x1.55a5f16406c62p+0 : inexact-ok += clog upward dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d7p-4 : 0xd.ff175035ed1c8p-28 0x1.55a5f16406c63p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593p-28L 0x1.55a5f16406c62a5ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c594p-28L 0x1.55a5f16406c62a5ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593p-28L 0x1.55a5f16406c62a5ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c594p-28L 0x1.55a5f16406c62a5cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593p-28L 0x1.55a5f16406c62a5ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c594p-28L 0x1.55a5f16406c62a5ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593p-28L 0x1.55a5f16406c62a5ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c594p-28L 0x1.55a5f16406c62a5cp+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593c0b190360e058p-28L 0x1.55a5f16406c62a5a390cb381a4e6p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593c0b190360e058p-28L 0x1.55a5f16406c62a5a390cb381a4e7p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593c0b190360e058p-28L 0x1.55a5f16406c62a5a390cb381a4e6p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593c0b190360e06p-28L 0x1.55a5f16406c62a5a390cb381a4e7p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593c0b190360ep-28L 0x1.55a5f16406c62a5a390cb381a48p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593c0b190360ep-28L 0x1.55a5f16406c62a5a390cb381a5p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593c0b190360ep-28L 0x1.55a5f16406c62a5a390cb381a48p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d7p-4L : 0xd.ff175035ed1c593c0b190360e4p-28L 0x1.55a5f16406c62a5a390cb381a5p+0L : inexact-ok += clog downward dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d6p-4 : -0x1.8f260bb28f7cdp-28 0x1.55a5f1281c9a8p+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d6p-4 : -0x1.8f260bb28f7cdp-28 0x1.55a5f1281c9a8p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d6p-4 : -0x1.8f260bb28f7ccp-28 0x1.55a5f1281c9a8p+0 : inexact-ok += clog upward dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d6p-4 : -0x1.8f260bb28f7ccp-28 0x1.55a5f1281c9a9p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdep-28L 0x1.55a5f1281c9a82bep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcp-28L 0x1.55a5f1281c9a82bep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcp-28L 0x1.55a5f1281c9a82bep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcp-28L 0x1.55a5f1281c9a82cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdep-28L 0x1.55a5f1281c9a82bep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcp-28L 0x1.55a5f1281c9a82bep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcp-28L 0x1.55a5f1281c9a82bep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcp-28L 0x1.55a5f1281c9a82cp+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcd9d3d48527f5p-28L 0x1.55a5f1281c9a82bed4e09178c29p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcd9d3d48527f4p-28L 0x1.55a5f1281c9a82bed4e09178c291p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcd9d3d48527f4p-28L 0x1.55a5f1281c9a82bed4e09178c29p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcd9d3d48527f4p-28L 0x1.55a5f1281c9a82bed4e09178c291p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcd9d3d48528p-28L 0x1.55a5f1281c9a82bed4e09178c28p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcd9d3d48528p-28L 0x1.55a5f1281c9a82bed4e09178c28p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcd9d3d485278p-28L 0x1.55a5f1281c9a82bed4e09178c28p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d6p-4L : -0x1.8f260bb28f7ccbdcd9d3d485278p-28L 0x1.55a5f1281c9a82bed4e09178c3p+0L : inexact-ok += clog downward dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d619a8d12p-4 : 0x4.1cc4a6ea438bcp-56 0x1.55a5f12e1dfb6p+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d619a8d12p-4 : 0x4.1cc4a6ea438cp-56 0x1.55a5f12e1dfb7p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d619a8d12p-4 : 0x4.1cc4a6ea438bcp-56 0x1.55a5f12e1dfb6p+0 : inexact-ok += clog upward dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d619a8d12p-4 : 0x4.1cc4a6ea438cp-56 0x1.55a5f12e1dfb7p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf11p-56L 0x1.55a5f12e1dfb69aep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf118p-56L 0x1.55a5f12e1dfb69aep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf11p-56L 0x1.55a5f12e1dfb69aep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf118p-56L 0x1.55a5f12e1dfb69bp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf11p-56L 0x1.55a5f12e1dfb69aep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf118p-56L 0x1.55a5f12e1dfb69aep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf11p-56L 0x1.55a5f12e1dfb69aep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf118p-56L 0x1.55a5f12e1dfb69bp+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf1169f2d1aa14d94p-56L 0x1.55a5f12e1dfb69aec65f151702c4p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf1169f2d1aa14d98p-56L 0x1.55a5f12e1dfb69aec65f151702c4p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf1169f2d1aa14d94p-56L 0x1.55a5f12e1dfb69aec65f151702c4p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf1169f2d1aa14d98p-56L 0x1.55a5f12e1dfb69aec65f151702c5p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf1169f2d1aa14cp-56L 0x1.55a5f12e1dfb69aec65f1517028p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf1169f2d1aa14ep-56L 0x1.55a5f12e1dfb69aec65f151703p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf1169f2d1aa14cp-56L 0x1.55a5f12e1dfb69aec65f1517028p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d12p-4L : 0x4.1cc4a6ea438bf1169f2d1aa14ep-56L 0x1.55a5f12e1dfb69aec65f151703p+0L : inexact-ok += clog downward dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d619a8d118p-4 : -0x3.aa5a09e302fdp-56 0x1.55a5f12e1dfb6p+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d619a8d118p-4 : -0x3.aa5a09e302fcep-56 0x1.55a5f12e1dfb6p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d619a8d118p-4 : -0x3.aa5a09e302fcep-56 0x1.55a5f12e1dfb6p+0 : inexact-ok += clog upward dbl-64 0x3.bea2bd62e3502p-4 0xf.8e3d619a8d118p-4 : -0x3.aa5a09e302fcep-56 0x1.55a5f12e1dfb7p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb7p-56L 0x1.55a5f12e1dfb67cep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb7p-56L 0x1.55a5f12e1dfb67dp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6cp-56L 0x1.55a5f12e1dfb67cep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6cp-56L 0x1.55a5f12e1dfb67dp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb7p-56L 0x1.55a5f12e1dfb67cep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb7p-56L 0x1.55a5f12e1dfb67dp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6cp-56L 0x1.55a5f12e1dfb67cep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6cp-56L 0x1.55a5f12e1dfb67dp+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6f77f01e85e526p-56L 0x1.55a5f12e1dfb67cf750063a55ab5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6f77f01e85e526p-56L 0x1.55a5f12e1dfb67cf750063a55ab5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6f77f01e85e524p-56L 0x1.55a5f12e1dfb67cf750063a55ab5p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6f77f01e85e524p-56L 0x1.55a5f12e1dfb67cf750063a55ab6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6f77f01e85e6p-56L 0x1.55a5f12e1dfb67cf750063a55a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6f77f01e85e5p-56L 0x1.55a5f12e1dfb67cf750063a55a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6f77f01e85e5p-56L 0x1.55a5f12e1dfb67cf750063a55a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d118p-4L : -0x3.aa5a09e302fceb6f77f01e85e5p-56L 0x1.55a5f12e1dfb67cf750063a55bp+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bcp-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bcp-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bcp-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bc4p-60L 0x1.55a5f12e1dfb68cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bcp-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bcp-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bcp-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bc4p-60L 0x1.55a5f12e1dfb68cp+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bc13ea3f9365124p-60L 0x1.55a5f12e1dfb68bea5db64b1d256p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bc13ea3f9365126p-60L 0x1.55a5f12e1dfb68bea5db64b1d256p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bc13ea3f9365124p-60L 0x1.55a5f12e1dfb68bea5db64b1d256p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bc13ea3f9365126p-60L 0x1.55a5f12e1dfb68bea5db64b1d257p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bc13ea3f93651p-60L 0x1.55a5f12e1dfb68bea5db64b1d2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bc13ea3f93651p-60L 0x1.55a5f12e1dfb68bea5db64b1d28p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bc13ea3f93651p-60L 0x1.55a5f12e1dfb68bea5db64b1d2p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfep-4L : 0x3.74386d76cf5e7bc13ea3f93652p-60L 0x1.55a5f12e1dfb68bea5db64b1d28p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a08p-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a08p-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a08p-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a0cp-60L 0x1.55a5f12e1dfb68cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a08p-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a08p-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a08p-60L 0x1.55a5f12e1dfb68bep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a0cp-60L 0x1.55a5f12e1dfb68cp+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a080ed78cc4ca1cp-60L 0x1.55a5f12e1dfb68be69f138dba421p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a080ed78cc4ca1cp-60L 0x1.55a5f12e1dfb68be69f138dba421p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a080ed78cc4ca1cp-60L 0x1.55a5f12e1dfb68be69f138dba421p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a080ed78cc4ca1ep-60L 0x1.55a5f12e1dfb68be69f138dba422p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a080ed78cc4cap-60L 0x1.55a5f12e1dfb68be69f138dba4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a080ed78cc4cap-60L 0x1.55a5f12e1dfb68be69f138dba4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a080ed78cc4cap-60L 0x1.55a5f12e1dfb68be69f138dba4p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfdp-4L : 0x3.64aa301534d16a080ed78cc4cbp-60L 0x1.55a5f12e1dfb68be69f138dba48p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x3.679f90d7489088e3833e9965ca36p-60L 0x1.55a5f12e1dfb68be75565f64dd56p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x3.679f90d7489088e3833e9965ca36p-60L 0x1.55a5f12e1dfb68be75565f64dd57p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x3.679f90d7489088e3833e9965ca36p-60L 0x1.55a5f12e1dfb68be75565f64dd56p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x3.679f90d7489088e3833e9965ca38p-60L 0x1.55a5f12e1dfb68be75565f64dd57p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x3.679f90d7489088e3833e9965cap-60L 0x1.55a5f12e1dfb68be75565f64ddp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x3.679f90d7489088e3833e9965cap-60L 0x1.55a5f12e1dfb68be75565f64dd8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x3.679f90d7489088e3833e9965cap-60L 0x1.55a5f12e1dfb68be75565f64ddp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3502p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0x3.679f90d7489088e3833e9965cbp-60L 0x1.55a5f12e1dfb68be75565f64dd8p+0L : inexact-ok += clog downward dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d7p-4 : 0xd.ff17502e6fd68p-28 0x1.55a5f16406c62p+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d7p-4 : 0xd.ff17502e6fd7p-28 0x1.55a5f16406c63p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d7p-4 : 0xd.ff17502e6fd68p-28 0x1.55a5f16406c62p+0 : inexact-ok += clog upward dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d7p-4 : 0xd.ff17502e6fd7p-28 0x1.55a5f16406c63p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb9p-28L 0x1.55a5f16406c62c4cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb9p-28L 0x1.55a5f16406c62c4cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb9p-28L 0x1.55a5f16406c62c4cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6ebap-28L 0x1.55a5f16406c62c4ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb9p-28L 0x1.55a5f16406c62c4cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb9p-28L 0x1.55a5f16406c62c4cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb9p-28L 0x1.55a5f16406c62c4cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6ebap-28L 0x1.55a5f16406c62c4ep+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb90a42ed340c458p-28L 0x1.55a5f16406c62c4c00b74c9cc5bap+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb90a42ed340c458p-28L 0x1.55a5f16406c62c4c00b74c9cc5bap+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb90a42ed340c458p-28L 0x1.55a5f16406c62c4c00b74c9cc5bap+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb90a42ed340c46p-28L 0x1.55a5f16406c62c4c00b74c9cc5bbp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb90a42ed340c4p-28L 0x1.55a5f16406c62c4c00b74c9cc58p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb90a42ed340c4p-28L 0x1.55a5f16406c62c4c00b74c9cc58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb90a42ed340c4p-28L 0x1.55a5f16406c62c4c00b74c9cc58p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d7p-4L : 0xd.ff17502e6fd6eb90a42ed340c8p-28L 0x1.55a5f16406c62c4c00b74c9cc6p+0L : inexact-ok += clog downward dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d6p-4 : -0x1.8f260bba0cc25p-28 0x1.55a5f1281c9a8p+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d6p-4 : -0x1.8f260bba0cc25p-28 0x1.55a5f1281c9a8p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d6p-4 : -0x1.8f260bba0cc24p-28 0x1.55a5f1281c9a8p+0 : inexact-ok += clog upward dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d6p-4 : -0x1.8f260bba0cc24p-28 0x1.55a5f1281c9a9p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc2481ap-28L 0x1.55a5f1281c9a84bp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc24818p-28L 0x1.55a5f1281c9a84bp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc24818p-28L 0x1.55a5f1281c9a84bp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc24818p-28L 0x1.55a5f1281c9a84b2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc2481ap-28L 0x1.55a5f1281c9a84bp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc24818p-28L 0x1.55a5f1281c9a84bp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc24818p-28L 0x1.55a5f1281c9a84bp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc24818p-28L 0x1.55a5f1281c9a84b2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc248184bfb6528dc45p-28L 0x1.55a5f1281c9a84b09c8cf27cc88ap+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc248184bfb6528dc44p-28L 0x1.55a5f1281c9a84b09c8cf27cc88ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc248184bfb6528dc44p-28L 0x1.55a5f1281c9a84b09c8cf27cc88ap+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc248184bfb6528dc44p-28L 0x1.55a5f1281c9a84b09c8cf27cc88bp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc248184bfb6528dc8p-28L 0x1.55a5f1281c9a84b09c8cf27cc88p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc248184bfb6528dc8p-28L 0x1.55a5f1281c9a84b09c8cf27cc88p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc248184bfb6528dcp-28L 0x1.55a5f1281c9a84b09c8cf27cc88p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d6p-4L : -0x1.8f260bba0cc248184bfb6528dcp-28L 0x1.55a5f1281c9a84b09c8cf27cc9p+0L : inexact-ok += clog downward dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d619a8d12p-4 : 0x3.a4f04f3de721ep-56 0x1.55a5f12e1dfb6p+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d619a8d12p-4 : 0x3.a4f04f3de722p-56 0x1.55a5f12e1dfb7p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d619a8d12p-4 : 0x3.a4f04f3de721ep-56 0x1.55a5f12e1dfb6p+0 : inexact-ok += clog upward dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d619a8d12p-4 : 0x3.a4f04f3de722p-56 0x1.55a5f12e1dfb7p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8p-56L 0x1.55a5f12e1dfb6bap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8p-56L 0x1.55a5f12e1dfb6bap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8p-56L 0x1.55a5f12e1dfb6bap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2bcp-56L 0x1.55a5f12e1dfb6ba2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8p-56L 0x1.55a5f12e1dfb6bap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8p-56L 0x1.55a5f12e1dfb6bap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8p-56L 0x1.55a5f12e1dfb6bap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2bcp-56L 0x1.55a5f12e1dfb6ba2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8195d7098780cp-56L 0x1.55a5f12e1dfb6ba08e0b4868a4f5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8195d7098780ep-56L 0x1.55a5f12e1dfb6ba08e0b4868a4f5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8195d7098780cp-56L 0x1.55a5f12e1dfb6ba08e0b4868a4f5p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8195d7098780ep-56L 0x1.55a5f12e1dfb6ba08e0b4868a4f6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8195d709878p-56L 0x1.55a5f12e1dfb6ba08e0b4868a48p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8195d709878p-56L 0x1.55a5f12e1dfb6ba08e0b4868a5p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8195d709878p-56L 0x1.55a5f12e1dfb6ba08e0b4868a48p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d12p-4L : 0x3.a4f04f3de721f2b8195d709879p-56L 0x1.55a5f12e1dfb6ba08e0b4868a5p+0L : inexact-ok += clog downward dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d619a8d118p-4 : -0x4.222e618f5f67p-56 0x1.55a5f12e1dfb6p+0 : inexact-ok += clog tonearest dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d619a8d118p-4 : -0x4.222e618f5f67p-56 0x1.55a5f12e1dfb7p+0 : inexact-ok += clog towardzero dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d619a8d118p-4 : -0x4.222e618f5f66cp-56 0x1.55a5f12e1dfb6p+0 : inexact-ok += clog upward dbl-64 0x3.bea2bd62e35p-4 0xf.8e3d619a8d118p-4 : -0x4.222e618f5f66cp-56 0x1.55a5f12e1dfb7p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f118p-56L 0x1.55a5f12e1dfb69cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f118p-56L 0x1.55a5f12e1dfb69c2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f11p-56L 0x1.55a5f12e1dfb69cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f11p-56L 0x1.55a5f12e1dfb69c2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f118p-56L 0x1.55a5f12e1dfb69cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f118p-56L 0x1.55a5f12e1dfb69c2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f11p-56L 0x1.55a5f12e1dfb69cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f11p-56L 0x1.55a5f12e1dfb69c2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f1160366cc4542f4p-56L 0x1.55a5f12e1dfb69c13cac96f6fcf4p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f1160366cc4542fp-56L 0x1.55a5f12e1dfb69c13cac96f6fcf4p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f1160366cc4542fp-56L 0x1.55a5f12e1dfb69c13cac96f6fcf4p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f1160366cc4542fp-56L 0x1.55a5f12e1dfb69c13cac96f6fcf5p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f1160366cc4544p-56L 0x1.55a5f12e1dfb69c13cac96f6fc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f1160366cc4542p-56L 0x1.55a5f12e1dfb69c13cac96f6fdp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f1160366cc4542p-56L 0x1.55a5f12e1dfb69c13cac96f6fc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d118p-4L : -0x4.222e618f5f66f1160366cc4542p-56L 0x1.55a5f12e1dfb69c13cac96f6fdp+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a488p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a488p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a48p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a48p-60L 0x1.55a5f12e1dfb6ab2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a488p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a488p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a48p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a48p-60L 0x1.55a5f12e1dfb6ab2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a4846ba5611a226p-60L 0x1.55a5f12e1dfb6ab06d879803748ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a4846ba5611a226p-60L 0x1.55a5f12e1dfb6ab06d879803748fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a4846ba5611a225cp-60L 0x1.55a5f12e1dfb6ab06d879803748ep+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a4846ba5611a225cp-60L 0x1.55a5f12e1dfb6ab06d879803748fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a4846ba5611a24p-60L 0x1.55a5f12e1dfb6ab06d879803748p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a4846ba5611a22p-60L 0x1.55a5f12e1dfb6ab06d879803748p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a4846ba5611a22p-60L 0x1.55a5f12e1dfb6ab06d879803748p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfep-4L : -0x4.090d0d4ef741a4846ba5611a22p-60L 0x1.55a5f12e1dfb6ab06d87980375p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb65p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb65p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb648p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb648p-60L 0x1.55a5f12e1dfb6ab2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb65p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb65p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb648p-60L 0x1.55a5f12e1dfb6abp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb648p-60L 0x1.55a5f12e1dfb6ab2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb64c2b7d1b93167cp-60L 0x1.55a5f12e1dfb6ab0319d6c2d4659p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb64c2b7d1b931678p-60L 0x1.55a5f12e1dfb6ab0319d6c2d465ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb64c2b7d1b931678p-60L 0x1.55a5f12e1dfb6ab0319d6c2d4659p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb64c2b7d1b931678p-60L 0x1.55a5f12e1dfb6ab0319d6c2d465ap+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb64c2b7d1b9318p-60L 0x1.55a5f12e1dfb6ab0319d6c2d46p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb64c2b7d1b9316p-60L 0x1.55a5f12e1dfb6ab0319d6c2d468p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb64c2b7d1b9316p-60L 0x1.55a5f12e1dfb6ab0319d6c2d46p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfdp-4L : -0x4.189b4ab091ceb64c2b7d1b9316p-60L 0x1.55a5f12e1dfb6ab0319d6c2d468p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x4.15a5e9ee7e0f976df20dab7ea94p-60L 0x1.55a5f12e1dfb6ab03d0292b67f8ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x4.15a5e9ee7e0f976df20dab7ea93cp-60L 0x1.55a5f12e1dfb6ab03d0292b67f8fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x4.15a5e9ee7e0f976df20dab7ea93cp-60L 0x1.55a5f12e1dfb6ab03d0292b67f8ep+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x4.15a5e9ee7e0f976df20dab7ea93cp-60L 0x1.55a5f12e1dfb6ab03d0292b67f8fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x4.15a5e9ee7e0f976df20dab7eaap-60L 0x1.55a5f12e1dfb6ab03d0292b67f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x4.15a5e9ee7e0f976df20dab7eaap-60L 0x1.55a5f12e1dfb6ab03d0292b67f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x4.15a5e9ee7e0f976df20dab7ea8p-60L 0x1.55a5f12e1dfb6ab03d0292b67f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e35p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x4.15a5e9ee7e0f976df20dab7ea8p-60L 0x1.55a5f12e1dfb6ab03d0292b68p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e98p-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e98p-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e98p-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e99p-28L 0x1.55a5f16406c62b3ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e98p-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e98p-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e98p-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e99p-28L 0x1.55a5f16406c62b3ep+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e981403046afaec8p-28L 0x1.55a5f16406c62b3c8230e0db59f2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e981403046afaedp-28L 0x1.55a5f16406c62b3c8230e0db59f3p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e981403046afaec8p-28L 0x1.55a5f16406c62b3c8230e0db59f2p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e981403046afaedp-28L 0x1.55a5f16406c62b3c8230e0db59f3p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e981403046afacp-28L 0x1.55a5f16406c62b3c8230e0db598p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e981403046afbp-28L 0x1.55a5f16406c62b3c8230e0db5ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e981403046afacp-28L 0x1.55a5f16406c62b3c8230e0db598p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d7p-4L : 0xd.ff1750328589e981403046afbp-28L 0x1.55a5f16406c62b3c8230e0db5ap+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f4238p-28L 0x1.55a5f1281c9a83ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f4236p-28L 0x1.55a5f1281c9a83a2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f4236p-28L 0x1.55a5f1281c9a83ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f4236p-28L 0x1.55a5f1281c9a83a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f4238p-28L 0x1.55a5f1281c9a83ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f4236p-28L 0x1.55a5f1281c9a83a2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f4236p-28L 0x1.55a5f1281c9a83ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f4236p-28L 0x1.55a5f1281c9a83a2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f42365fd897f62be8p-28L 0x1.55a5f1281c9a83a11e058e12f6c7p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f42365fd897f62be8p-28L 0x1.55a5f1281c9a83a11e058e12f6c8p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f42365fd897f62be7p-28L 0x1.55a5f1281c9a83a11e058e12f6c7p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f42365fd897f62be7p-28L 0x1.55a5f1281c9a83a11e058e12f6c8p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f42365fd897f62cp-28L 0x1.55a5f1281c9a83a11e058e12f68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f42365fd897f62cp-28L 0x1.55a5f1281c9a83a11e058e12f7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f42365fd897f62b8p-28L 0x1.55a5f1281c9a83a11e058e12f68p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f70f42365fd897f62b8p-28L 0x1.55a5f1281c9a83a11e058e12f7p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941ap-56L 0x1.55a5f12e1dfb6a9p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a4p-56L 0x1.55a5f12e1dfb6a92p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941ap-56L 0x1.55a5f12e1dfb6a9p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a4p-56L 0x1.55a5f12e1dfb6a92p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941ap-56L 0x1.55a5f12e1dfb6a9p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a4p-56L 0x1.55a5f12e1dfb6a92p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941ap-56L 0x1.55a5f12e1dfb6a9p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a4p-56L 0x1.55a5f12e1dfb6a92p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a35d8b2ad50766p-56L 0x1.55a5f12e1dfb6a910f83fceb3edfp+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a35d8b2ad50766p-56L 0x1.55a5f12e1dfb6a910f83fceb3edfp+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a35d8b2ad50766p-56L 0x1.55a5f12e1dfb6a910f83fceb3edfp+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a35d8b2ad50768p-56L 0x1.55a5f12e1dfb6a910f83fceb3eep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a35d8b2ad507p-56L 0x1.55a5f12e1dfb6a910f83fceb3e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a35d8b2ad507p-56L 0x1.55a5f12e1dfb6a910f83fceb3fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a35d8b2ad507p-56L 0x1.55a5f12e1dfb6a910f83fceb3e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d12p-4L : 0x3.e64b7f8f490941a35d8b2ad508p-56L 0x1.55a5f12e1dfb6a910f83fceb3fp+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e34p-56L 0x1.55a5f12e1dfb68bp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e34p-56L 0x1.55a5f12e1dfb68b2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e3p-56L 0x1.55a5f12e1dfb68bp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e3p-56L 0x1.55a5f12e1dfb68b2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e34p-56L 0x1.55a5f12e1dfb68bp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e34p-56L 0x1.55a5f12e1dfb68b2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e3p-56L 0x1.55a5f12e1dfb68bp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e3p-56L 0x1.55a5f12e1dfb68b2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e321723daa2458ep-56L 0x1.55a5f12e1dfb68b1be254b7996d6p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e321723daa2458ep-56L 0x1.55a5f12e1dfb68b1be254b7996d7p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e321723daa2458cp-56L 0x1.55a5f12e1dfb68b1be254b7996d6p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e321723daa2458cp-56L 0x1.55a5f12e1dfb68b1be254b7996d7p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e321723daa246p-56L 0x1.55a5f12e1dfb68b1be254b79968p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e321723daa246p-56L 0x1.55a5f12e1dfb68b1be254b7997p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e321723daa245p-56L 0x1.55a5f12e1dfb68b1be254b79968p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d3313dfd7f9e321723daa245p-56L 0x1.55a5f12e1dfb68b1be254b7997p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fp-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a05p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fp-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a05p-68L 0x1.55a5f12e1dfb69a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fp-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a05p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fp-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a05p-68L 0x1.55a5f12e1dfb69a2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fa8052bfdc8bdp-68L 0x1.55a5f12e1dfb69a0ef004c860e74p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fa8052bfdc8bdp-68L 0x1.55a5f12e1dfb69a0ef004c860e75p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fa8052bfdc8bdp-68L 0x1.55a5f12e1dfb69a0ef004c860e74p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fa8052bfdc8bd8p-68L 0x1.55a5f12e1dfb69a0ef004c860e75p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fa8052bfdc88p-68L 0x1.55a5f12e1dfb69a0ef004c860ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fa8052bfdc8cp-68L 0x1.55a5f12e1dfb69a0ef004c860e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fa8052bfdc88p-68L 0x1.55a5f12e1dfb69a0ef004c860ep+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfep-4L : 0xc.a5f7c727336a04fa8052bfdc8cp-68L 0x1.55a5f12e1dfb69a0ef004c860e8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad8p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4p-68L 0x1.55a5f12e1dfb69a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad8p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4p-68L 0x1.55a5f12e1dfb69a2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4073d4a4ab188p-68L 0x1.55a5f12e1dfb69a0b31620afe03fp+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4073d4a4ab188p-68L 0x1.55a5f12e1dfb69a0b31620afe03fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4073d4a4ab186p-68L 0x1.55a5f12e1dfb69a0b31620afe03fp+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4073d4a4ab186p-68L 0x1.55a5f12e1dfb69a0b31620afe04p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4073d4a4ab2p-68L 0x1.55a5f12e1dfb69a0b31620afep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4073d4a4ab2p-68L 0x1.55a5f12e1dfb69a0b31620afep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4073d4a4ab1p-68L 0x1.55a5f12e1dfb69a0b31620afep+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.e8459a7359a7bad4073d4a4ab1p-68L 0x1.55a5f12e1dfb69a0b31620afe08p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0xd.1b27a0657721e2b17f8c4e248388p-76L 0x1.55a5f12e1dfb69a0be7b47391974p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0xd.1b27a0657721e2b17f8c4e24839p-76L 0x1.55a5f12e1dfb69a0be7b47391975p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0xd.1b27a0657721e2b17f8c4e248388p-76L 0x1.55a5f12e1dfb69a0be7b47391974p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0xd.1b27a0657721e2b17f8c4e24839p-76L 0x1.55a5f12e1dfb69a0be7b47391975p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0xd.1b27a0657721e2b17f8c4e248p-76L 0x1.55a5f12e1dfb69a0be7b473919p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0xd.1b27a0657721e2b17f8c4e2484p-76L 0x1.55a5f12e1dfb69a0be7b4739198p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0xd.1b27a0657721e2b17f8c4e248p-76L 0x1.55a5f12e1dfb69a0be7b473919p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501174p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : 0xd.1b27a0657721e2b17f8c4e2484p-76L 0x1.55a5f12e1dfb69a0be7b4739198p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40dp-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40dp-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40dp-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40ep-28L 0x1.55a5f16406c62b3ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40dp-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40dp-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40dp-28L 0x1.55a5f16406c62b3cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40ep-28L 0x1.55a5f16406c62b3ep+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40d38ac369695868p-28L 0x1.55a5f16406c62b3cc069d62e7d56p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40d38ac36969587p-28L 0x1.55a5f16406c62b3cc069d62e7d57p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40d38ac369695868p-28L 0x1.55a5f16406c62b3cc069d62e7d56p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40d38ac36969587p-28L 0x1.55a5f16406c62b3cc069d62e7d57p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40d38ac3696958p-28L 0x1.55a5f16406c62b3cc069d62e7dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40d38ac3696958p-28L 0x1.55a5f16406c62b3cc069d62e7d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40d38ac3696958p-28L 0x1.55a5f16406c62b3cc069d62e7dp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d7p-4L : 0xd.ff175032849a40d38ac369695cp-28L 0x1.55a5f16406c62b3cc069d62e7d8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae6p-28L 0x1.55a5f1281c9a83ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae6p-28L 0x1.55a5f1281c9a83a2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae4p-28L 0x1.55a5f1281c9a83ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae4p-28L 0x1.55a5f1281c9a83a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae6p-28L 0x1.55a5f1281c9a83ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae6p-28L 0x1.55a5f1281c9a83a2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae4p-28L 0x1.55a5f1281c9a83ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae4p-28L 0x1.55a5f1281c9a83a2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae5e746dce892bdp-28L 0x1.55a5f1281c9a83a15c3e839f1748p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae5e746dce892bcp-28L 0x1.55a5f1281c9a83a15c3e839f1749p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae5e746dce892bcp-28L 0x1.55a5f1281c9a83a15c3e839f1748p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae5e746dce892bcp-28L 0x1.55a5f1281c9a83a15c3e839f1749p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae5e746dce893p-28L 0x1.55a5f1281c9a83a15c3e839f17p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae5e746dce8928p-28L 0x1.55a5f1281c9a83a15c3e839f178p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae5e746dce8928p-28L 0x1.55a5f1281c9a83a15c3e839f17p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f7feeae5e746dce8928p-28L 0x1.55a5f1281c9a83a15c3e839f178p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db46p-56L 0x1.55a5f12e1dfb6a9p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db464p-56L 0x1.55a5f12e1dfb6a92p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db46p-56L 0x1.55a5f12e1dfb6a9p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db464p-56L 0x1.55a5f12e1dfb6a92p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db46p-56L 0x1.55a5f12e1dfb6a9p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db464p-56L 0x1.55a5f12e1dfb6a92p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db46p-56L 0x1.55a5f12e1dfb6a9p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db464p-56L 0x1.55a5f12e1dfb6a92p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db4638c9493a5e31cp-56L 0x1.55a5f12e1dfb6a914dbcf271a913p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db4638c9493a5e31cp-56L 0x1.55a5f12e1dfb6a914dbcf271a913p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db4638c9493a5e31cp-56L 0x1.55a5f12e1dfb6a914dbcf271a913p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db4638c9493a5e31ep-56L 0x1.55a5f12e1dfb6a914dbcf271a914p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db4638c9493a5e3p-56L 0x1.55a5f12e1dfb6a914dbcf271a9p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db4638c9493a5e3p-56L 0x1.55a5f12e1dfb6a914dbcf271a9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db4638c9493a5e3p-56L 0x1.55a5f12e1dfb6a914dbcf271a9p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d12p-4L : 0x3.e63c8504537db4638c9493a5e4p-56L 0x1.55a5f12e1dfb6a914dbcf271a98p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b74p-56L 0x1.55a5f12e1dfb68bp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b74p-56L 0x1.55a5f12e1dfb68b2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b7p-56L 0x1.55a5f12e1dfb68bp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b7p-56L 0x1.55a5f12e1dfb68b2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b74p-56L 0x1.55a5f12e1dfb68bp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b74p-56L 0x1.55a5f12e1dfb68b2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b7p-56L 0x1.55a5f12e1dfb68bp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b7p-56L 0x1.55a5f12e1dfb68b2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b72d11b26b1e0aap-56L 0x1.55a5f12e1dfb68b1fc5e4100010ap+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b72d11b26b1e0a8p-56L 0x1.55a5f12e1dfb68b1fc5e4100010bp+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b72d11b26b1e0a8p-56L 0x1.55a5f12e1dfb68b1fc5e4100010ap+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b72d11b26b1e0a8p-56L 0x1.55a5f12e1dfb68b1fc5e4100010bp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b72d11b26b1e1p-56L 0x1.55a5f12e1dfb68b1fc5e410001p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b72d11b26b1e1p-56L 0x1.55a5f12e1dfb68b1fc5e410001p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b72d11b26b1ep-56L 0x1.55a5f12e1dfb68b1fc5e410001p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d118p-4L : -0x3.e0e22bc8f30b2b72d11b26b1ep-56L 0x1.55a5f12e1dfb68b1fc5e4100018p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a9600ap-68L 0x1.55a5f12e1dfb69a2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a9600ap-68L 0x1.55a5f12e1dfb69a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a9600ap-68L 0x1.55a5f12e1dfb69a2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a9600ap-68L 0x1.55a5f12e1dfb69a2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009f6d35f65f82dp-68L 0x1.55a5f12e1dfb69a12d39420c78a8p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009f6d35f65f82dp-68L 0x1.55a5f12e1dfb69a12d39420c78a9p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009f6d35f65f82dp-68L 0x1.55a5f12e1dfb69a12d39420c78a8p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009f6d35f65f82d8p-68L 0x1.55a5f12e1dfb69a12d39420c78a9p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009f6d35f65f8p-68L 0x1.55a5f12e1dfb69a12d39420c788p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009f6d35f65f84p-68L 0x1.55a5f12e1dfb69a12d39420c788p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009f6d35f65f8p-68L 0x1.55a5f12e1dfb69a12d39420c788p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfep-4L : 0xb.b64f17ce7a96009f6d35f65f84p-68L 0x1.55a5f12e1dfb69a12d39420c79p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf34p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf3p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf3p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf3p-68L 0x1.55a5f12e1dfb69a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf34p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf3p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf3p-68L 0x1.55a5f12e1dfb69ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf3p-68L 0x1.55a5f12e1dfb69a2p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf30ec5b7d88a82cp-68L 0x1.55a5f12e1dfb69a0f14f16364a73p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf30ec5b7d88a82ap-68L 0x1.55a5f12e1dfb69a0f14f16364a74p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf30ec5b7d88a82ap-68L 0x1.55a5f12e1dfb69a0f14f16364a73p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf30ec5b7d88a82ap-68L 0x1.55a5f12e1dfb69a0f14f16364a74p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf30ec5b7d88a9p-68L 0x1.55a5f12e1dfb69a0f14f16364ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf30ec5b7d88a8p-68L 0x1.55a5f12e1dfb69a0f14f16364a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf30ec5b7d88a8p-68L 0x1.55a5f12e1dfb69a0f14f16364ap+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfdp-4L : -0x3.d7ee49cc127bbf30ec5b7d88a8p-68L 0x1.55a5f12e1dfb69a0f14f16364a8p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0xe.28d87b8535ce279dafd9a81647bp-72L 0x1.55a5f12e1dfb69a0fcb43cbf83a9p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0xe.28d87b8535ce279dafd9a81647bp-72L 0x1.55a5f12e1dfb69a0fcb43cbf83a9p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0xe.28d87b8535ce279dafd9a81647a8p-72L 0x1.55a5f12e1dfb69a0fcb43cbf83a9p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0xe.28d87b8535ce279dafd9a81647a8p-72L 0x1.55a5f12e1dfb69a0fcb43cbf83aap+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0xe.28d87b8535ce279dafd9a81648p-72L 0x1.55a5f12e1dfb69a0fcb43cbf838p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0xe.28d87b8535ce279dafd9a81648p-72L 0x1.55a5f12e1dfb69a0fcb43cbf838p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0xe.28d87b8535ce279dafd9a81644p-72L 0x1.55a5f12e1dfb69a0fcb43cbf838p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e350117p-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0xe.28d87b8535ce279dafd9a81644p-72L 0x1.55a5f12e1dfb69a0fcb43cbf84p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d7p-4L : 0xd.ff175032857cce59b6b8d79eeeep-28L 0x1.55a5f16406c62b3c8597f99c00fep+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d7p-4L : 0xd.ff175032857cce59b6b8d79eeee8p-28L 0x1.55a5f16406c62b3c8597f99c00ffp+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d7p-4L : 0xd.ff175032857cce59b6b8d79eeeep-28L 0x1.55a5f16406c62b3c8597f99c00fep+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d7p-4L : 0xd.ff175032857cce59b6b8d79eeee8p-28L 0x1.55a5f16406c62b3c8597f99c00ffp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d7p-4L : 0xd.ff175032857cce59b6b8d79eecp-28L 0x1.55a5f16406c62b3c8597f99c008p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d7p-4L : 0xd.ff175032857cce59b6b8d79efp-28L 0x1.55a5f16406c62b3c8597f99c01p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d7p-4L : 0xd.ff175032857cce59b6b8d79eecp-28L 0x1.55a5f16406c62b3c8597f99c008p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d7p-4L : 0xd.ff175032857cce59b6b8d79efp-28L 0x1.55a5f16406c62b3c8597f99c01p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f71c5d5e02cbf7c4d9c3p-28L 0x1.55a5f1281c9a83a1216ca6d6bba7p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f71c5d5e02cbf7c4d9c2p-28L 0x1.55a5f1281c9a83a1216ca6d6bba7p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f71c5d5e02cbf7c4d9c2p-28L 0x1.55a5f1281c9a83a1216ca6d6bba7p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f71c5d5e02cbf7c4d9c2p-28L 0x1.55a5f1281c9a83a1216ca6d6bba8p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f71c5d5e02cbf7c4dap-28L 0x1.55a5f1281c9a83a1216ca6d6bb8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f71c5d5e02cbf7c4dap-28L 0x1.55a5f1281c9a83a1216ca6d6bb8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f71c5d5e02cbf7c4d98p-28L 0x1.55a5f1281c9a83a1216ca6d6bb8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d6p-4L : -0x1.8f260bb5f71c5d5e02cbf7c4d98p-28L 0x1.55a5f1281c9a83a1216ca6d6bcp+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d12p-4L : 0x3.e64aaddccf02ea3145c388c3af78p-56L 0x1.55a5f12e1dfb6a9112eb15aeb3c7p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d12p-4L : 0x3.e64aaddccf02ea3145c388c3af78p-56L 0x1.55a5f12e1dfb6a9112eb15aeb3c7p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d12p-4L : 0x3.e64aaddccf02ea3145c388c3af78p-56L 0x1.55a5f12e1dfb6a9112eb15aeb3c7p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d12p-4L : 0x3.e64aaddccf02ea3145c388c3af7ap-56L 0x1.55a5f12e1dfb6a9112eb15aeb3c8p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d12p-4L : 0x3.e64aaddccf02ea3145c388c3afp-56L 0x1.55a5f12e1dfb6a9112eb15aeb38p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d12p-4L : 0x3.e64aaddccf02ea3145c388c3afp-56L 0x1.55a5f12e1dfb6a9112eb15aeb4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d12p-4L : 0x3.e64aaddccf02ea3145c388c3afp-56L 0x1.55a5f12e1dfb6a9112eb15aeb38p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d12p-4L : 0x3.e64aaddccf02ea3145c388c3bp-56L 0x1.55a5f12e1dfb6a9112eb15aeb4p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d402f07785f5a43ba97521266cp-56L 0x1.55a5f12e1dfb68b1c18c643d0bbep+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d402f07785f5a43ba97521266cp-56L 0x1.55a5f12e1dfb68b1c18c643d0bbep+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d402f07785f5a43ba97521266ap-56L 0x1.55a5f12e1dfb68b1c18c643d0bbep+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d402f07785f5a43ba97521266ap-56L 0x1.55a5f12e1dfb68b1c18c643d0bbfp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d402f07785f5a43ba9752127p-56L 0x1.55a5f12e1dfb68b1c18c643d0b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d402f07785f5a43ba9752126p-56L 0x1.55a5f12e1dfb68b1c18c643d0b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d402f07785f5a43ba9752126p-56L 0x1.55a5f12e1dfb68b1c18c643d0b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d118p-4L : -0x3.e0d402f07785f5a43ba9752126p-56L 0x1.55a5f12e1dfb68b1c18c643d0cp+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfep-4L : 0xc.98dc9f86cdf2e317e3765c60015p-68L 0x1.55a5f12e1dfb69a0f2676549835cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfep-4L : 0xc.98dc9f86cdf2e317e3765c60015p-68L 0x1.55a5f12e1dfb69a0f2676549835cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfep-4L : 0xc.98dc9f86cdf2e317e3765c60015p-68L 0x1.55a5f12e1dfb69a0f2676549835cp+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfep-4L : 0xc.98dc9f86cdf2e317e3765c600158p-68L 0x1.55a5f12e1dfb69a0f2676549835dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfep-4L : 0xc.98dc9f86cdf2e317e3765c6p-68L 0x1.55a5f12e1dfb69a0f267654983p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfep-4L : 0xc.98dc9f86cdf2e317e3765c6p-68L 0x1.55a5f12e1dfb69a0f2676549838p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfep-4L : 0xc.98dc9f86cdf2e317e3765c6p-68L 0x1.55a5f12e1dfb69a0f267654983p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfep-4L : 0xc.98dc9f86cdf2e317e3765c6004p-68L 0x1.55a5f12e1dfb69a0f2676549838p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.f560c213bf1edcb6bd959ea24decp-68L 0x1.55a5f12e1dfb69a0b67d39735527p+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.f560c213bf1edcb6bd959ea24decp-68L 0x1.55a5f12e1dfb69a0b67d39735527p+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.f560c213bf1edcb6bd959ea24deap-68L 0x1.55a5f12e1dfb69a0b67d39735527p+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.f560c213bf1edcb6bd959ea24deap-68L 0x1.55a5f12e1dfb69a0b67d39735528p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.f560c213bf1edcb6bd959ea24ep-68L 0x1.55a5f12e1dfb69a0b67d397355p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.f560c213bf1edcb6bd959ea24ep-68L 0x1.55a5f12e1dfb69a0b67d397355p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.f560c213bf1edcb6bd959ea24dp-68L 0x1.55a5f12e1dfb69a0b67d397355p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfdp-4L : -0x2.f560c213bf1edcb6bd959ea24dp-68L 0x1.55a5f12e1dfb69a0b67d3973558p+0L : inexact-ok += clog downward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x1.6p-188L 0x1.55a5f12e1dfb69a0c1e25ffc8e5cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x1.6p-188L 0x1.55a5f12e1dfb69a0c1e25ffc8e5dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x1.5fffffffffffffffffffffffffffp-188L 0x1.55a5f12e1dfb69a0c1e25ffc8e5cp+0L : inexact-ok += clog upward ldbl-128 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x1.5fffffffffffffffffffffffffffp-188L 0x1.55a5f12e1dfb69a0c1e25ffc8e5dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x1.6p-188L 0x1.55a5f12e1dfb69a0c1e25ffc8ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x1.6p-188L 0x1.55a5f12e1dfb69a0c1e25ffc8e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x1.5fffffffffffffffffffffffff8p-188L 0x1.55a5f12e1dfb69a0c1e25ffc8ep+0L : inexact-ok += clog upward ldbl-128ibm 0x3.bea2bd62e3501173c8004ccp-4L 0xf.8e3d619a8d11bfd30b038eep-4L : -0x1.5fffffffffffffffffffffffff8p-188L 0x1.55a5f12e1dfb69a0c1e25ffc8e8p+0L : inexact-ok +clog 0xe33f66c9542ca25cc43c867p-95 0x7f35a68ebd3704a43c465864p-95 += clog downward flt-32 0x1.c67ecep-4f 0xf.e6b4ep-4f : 0xe.1e198p-28f 0x1.75a8c6p+0f : inexact-ok += clog tonearest flt-32 0x1.c67ecep-4f 0xf.e6b4ep-4f : 0xe.1e198p-28f 0x1.75a8c8p+0f : inexact-ok += clog towardzero flt-32 0x1.c67ecep-4f 0xf.e6b4ep-4f : 0xe.1e198p-28f 0x1.75a8c6p+0f : inexact-ok += clog upward flt-32 0x1.c67ecep-4f 0xf.e6b4ep-4f : 0xe.1e199p-28f 0x1.75a8c8p+0f : inexact-ok += clog downward dbl-64 0x1.c67ecep-4 0xf.e6b4ep-4 : 0xe.1e1981ab1ab58p-28 0x1.75a8c70c2e29ep+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecep-4 0xf.e6b4ep-4 : 0xe.1e1981ab1ab6p-28 0x1.75a8c70c2e29ep+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecep-4 0xf.e6b4ep-4 : 0xe.1e1981ab1ab58p-28 0x1.75a8c70c2e29ep+0 : inexact-ok += clog upward dbl-64 0x1.c67ecep-4 0xf.e6b4ep-4 : 0xe.1e1981ab1ab6p-28 0x1.75a8c70c2e29fp+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1dp-28L 0x1.75a8c70c2e29e03p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1dp-28L 0x1.75a8c70c2e29e032p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1dp-28L 0x1.75a8c70c2e29e03p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1ep-28L 0x1.75a8c70c2e29e032p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1dp-28L 0x1.75a8c70c2e29e03p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1dp-28L 0x1.75a8c70c2e29e032p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1dp-28L 0x1.75a8c70c2e29e03p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1ep-28L 0x1.75a8c70c2e29e032p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1d6860fdf80cb58p-28L 0x1.75a8c70c2e29e03139092b11f2e1p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1d6860fdf80cb58p-28L 0x1.75a8c70c2e29e03139092b11f2e2p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1d6860fdf80cb58p-28L 0x1.75a8c70c2e29e03139092b11f2e1p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1d6860fdf80cb6p-28L 0x1.75a8c70c2e29e03139092b11f2e2p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1d6860fdf80c8p-28L 0x1.75a8c70c2e29e03139092b11f28p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1d6860fdf80ccp-28L 0x1.75a8c70c2e29e03139092b11f3p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1d6860fdf80c8p-28L 0x1.75a8c70c2e29e03139092b11f28p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4ep-4L : 0xe.1e1981ab1ab5f1d6860fdf80ccp-28L 0x1.75a8c70c2e29e03139092b11f3p+0L : inexact-ok += clog downward flt-32 0x1.c67ecep-4f 0xf.e6b4dp-4f : -0x1.c89b4cp-28f 0x1.75a8c6p+0f : inexact-ok += clog tonearest flt-32 0x1.c67ecep-4f 0xf.e6b4dp-4f : -0x1.c89b4ap-28f 0x1.75a8c6p+0f : inexact-ok += clog towardzero flt-32 0x1.c67ecep-4f 0xf.e6b4dp-4f : -0x1.c89b4ap-28f 0x1.75a8c6p+0f : inexact-ok += clog upward flt-32 0x1.c67ecep-4f 0xf.e6b4dp-4f : -0x1.c89b4ap-28f 0x1.75a8c8p+0f : inexact-ok += clog downward dbl-64 0x1.c67ecep-4 0xf.e6b4dp-4 : -0x1.c89b4a12e6996p-28 0x1.75a8c6efc63d1p+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecep-4 0xf.e6b4dp-4 : -0x1.c89b4a12e6996p-28 0x1.75a8c6efc63d1p+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecep-4 0xf.e6b4dp-4 : -0x1.c89b4a12e6995p-28 0x1.75a8c6efc63d1p+0 : inexact-ok += clog upward dbl-64 0x1.c67ecep-4 0xf.e6b4dp-4 : -0x1.c89b4a12e6995p-28 0x1.75a8c6efc63d2p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d9ap-28L 0x1.75a8c6efc63d1616p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d9ap-28L 0x1.75a8c6efc63d1616p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d98p-28L 0x1.75a8c6efc63d1616p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d98p-28L 0x1.75a8c6efc63d1618p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d9ap-28L 0x1.75a8c6efc63d1616p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d9ap-28L 0x1.75a8c6efc63d1616p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d98p-28L 0x1.75a8c6efc63d1616p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d98p-28L 0x1.75a8c6efc63d1618p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d99768d8c077706p-28L 0x1.75a8c6efc63d1616f2d82e59a20fp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d99768d8c077706p-28L 0x1.75a8c6efc63d1616f2d82e59a20fp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d99768d8c077705p-28L 0x1.75a8c6efc63d1616f2d82e59a20fp+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d99768d8c077705p-28L 0x1.75a8c6efc63d1616f2d82e59a21p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d99768d8c07778p-28L 0x1.75a8c6efc63d1616f2d82e59a2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d99768d8c0777p-28L 0x1.75a8c6efc63d1616f2d82e59a2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d99768d8c0777p-28L 0x1.75a8c6efc63d1616f2d82e59a2p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4dp-4L : -0x1.c89b4a12e6995d99768d8c0777p-28L 0x1.75a8c6efc63d1616f2d82e59a28p+0L : inexact-ok += clog downward dbl-64 0x1.c67ecep-4 0xf.e6b4d1d7a6e1p-4 : 0xc.21fa165b35a6p-36 0x1.75a8c6f30b98ap+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecep-4 0xf.e6b4d1d7a6e1p-4 : 0xc.21fa165b35a68p-36 0x1.75a8c6f30b98bp+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecep-4 0xf.e6b4d1d7a6e1p-4 : 0xc.21fa165b35a6p-36 0x1.75a8c6f30b98ap+0 : inexact-ok += clog upward dbl-64 0x1.c67ecep-4 0xf.e6b4d1d7a6e1p-4 : 0xc.21fa165b35a68p-36 0x1.75a8c6f30b98bp+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1p-36L 0x1.75a8c6f30b98a922p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c2p-36L 0x1.75a8c6f30b98a922p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1p-36L 0x1.75a8c6f30b98a922p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c2p-36L 0x1.75a8c6f30b98a924p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1p-36L 0x1.75a8c6f30b98a922p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c2p-36L 0x1.75a8c6f30b98a922p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1p-36L 0x1.75a8c6f30b98a922p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c2p-36L 0x1.75a8c6f30b98a924p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1f5de18c47483p-36L 0x1.75a8c6f30b98a922d760389874b2p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1f5de18c47483p-36L 0x1.75a8c6f30b98a922d760389874b3p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1f5de18c47483p-36L 0x1.75a8c6f30b98a922d760389874b2p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1f5de18c474838p-36L 0x1.75a8c6f30b98a922d760389874b3p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1f5de18c4748p-36L 0x1.75a8c6f30b98a922d7603898748p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1f5de18c4748p-36L 0x1.75a8c6f30b98a922d7603898748p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1f5de18c4748p-36L 0x1.75a8c6f30b98a922d7603898748p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e1p-4L : 0xc.21fa165b35a66c1f5de18c474cp-36L 0x1.75a8c6f30b98a922d760389875p+0L : inexact-ok += clog downward dbl-64 0x1.c67ecep-4 0xf.e6b4d1d7a6e08p-4 : 0xc.21f997258f18p-36 0x1.75a8c6f30b98ap+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecep-4 0xf.e6b4d1d7a6e08p-4 : 0xc.21f997258f188p-36 0x1.75a8c6f30b98bp+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecep-4 0xf.e6b4d1d7a6e08p-4 : 0xc.21f997258f18p-36 0x1.75a8c6f30b98ap+0 : inexact-ok += clog upward dbl-64 0x1.c67ecep-4 0xf.e6b4d1d7a6e08p-4 : 0xc.21f997258f188p-36 0x1.75a8c6f30b98bp+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fdp-36L 0x1.75a8c6f30b98a83ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fdp-36L 0x1.75a8c6f30b98a84p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fdp-36L 0x1.75a8c6f30b98a83ep+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fep-36L 0x1.75a8c6f30b98a84p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fdp-36L 0x1.75a8c6f30b98a83ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fdp-36L 0x1.75a8c6f30b98a84p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fdp-36L 0x1.75a8c6f30b98a83ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fep-36L 0x1.75a8c6f30b98a84p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fd513c2d1012218p-36L 0x1.75a8c6f30b98a83f97f939f118ebp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fd513c2d101222p-36L 0x1.75a8c6f30b98a83f97f939f118ecp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fd513c2d1012218p-36L 0x1.75a8c6f30b98a83f97f939f118ebp+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fd513c2d101222p-36L 0x1.75a8c6f30b98a83f97f939f118ecp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fd513c2d1012p-36L 0x1.75a8c6f30b98a83f97f939f1188p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fd513c2d10124p-36L 0x1.75a8c6f30b98a83f97f939f119p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fd513c2d1012p-36L 0x1.75a8c6f30b98a83f97f939f1188p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e08p-4L : 0xc.21f997258f186fd513c2d10124p-36L 0x1.75a8c6f30b98a83f97f939f119p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefp-36L 0x1.75a8c6f30b98a864p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79ffp-36L 0x1.75a8c6f30b98a864p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefp-36L 0x1.75a8c6f30b98a864p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79ffp-36L 0x1.75a8c6f30b98a866p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefp-36L 0x1.75a8c6f30b98a864p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79ffp-36L 0x1.75a8c6f30b98a864p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefp-36L 0x1.75a8c6f30b98a864p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79ffp-36L 0x1.75a8c6f30b98a866p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefc832e571b1928p-36L 0x1.75a8c6f30b98a8641988a599bb8ap+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefc832e571b1928p-36L 0x1.75a8c6f30b98a8641988a599bb8bp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefc832e571b1928p-36L 0x1.75a8c6f30b98a8641988a599bb8ap+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefc832e571b193p-36L 0x1.75a8c6f30b98a8641988a599bb8bp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefc832e571b18p-36L 0x1.75a8c6f30b98a8641988a599bb8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefc832e571b18p-36L 0x1.75a8c6f30b98a8641988a599bb8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefc832e571b18p-36L 0x1.75a8c6f30b98a8641988a599bb8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0949p-4L : 0xc.21f9ab950d79fefc832e571b1cp-36L 0x1.75a8c6f30b98a8641988a599bcp+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3p-36L 0x1.75a8c6f30b98a862p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d4p-36L 0x1.75a8c6f30b98a864p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3p-36L 0x1.75a8c6f30b98a862p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d4p-36L 0x1.75a8c6f30b98a864p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3p-36L 0x1.75a8c6f30b98a862p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d4p-36L 0x1.75a8c6f30b98a864p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3p-36L 0x1.75a8c6f30b98a862p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d4p-36L 0x1.75a8c6f30b98a864p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3cf9e4e8ddb62p-36L 0x1.75a8c6f30b98a863fd20b8b9e69fp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3cf9e4e8ddb62p-36L 0x1.75a8c6f30b98a863fd20b8b9e69fp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3cf9e4e8ddb62p-36L 0x1.75a8c6f30b98a863fd20b8b9e69fp+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3cf9e4e8ddb628p-36L 0x1.75a8c6f30b98a863fd20b8b9e6ap+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3cf9e4e8ddb4p-36L 0x1.75a8c6f30b98a863fd20b8b9e68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3cf9e4e8ddb8p-36L 0x1.75a8c6f30b98a863fd20b8b9e68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3cf9e4e8ddb4p-36L 0x1.75a8c6f30b98a863fd20b8b9e68p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948p-4L : 0xc.21f9ab8526c52d3cf9e4e8ddb8p-36L 0x1.75a8c6f30b98a863fd20b8b9e7p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xc.21f9ab8ca3a7157a0475f4ba74f8p-36L 0x1.75a8c6f30b98a8640a810c3600e1p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xc.21f9ab8ca3a7157a0475f4ba74f8p-36L 0x1.75a8c6f30b98a8640a810c3600e1p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xc.21f9ab8ca3a7157a0475f4ba74f8p-36L 0x1.75a8c6f30b98a8640a810c3600e1p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xc.21f9ab8ca3a7157a0475f4ba75p-36L 0x1.75a8c6f30b98a8640a810c3600e2p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xc.21f9ab8ca3a7157a0475f4ba74p-36L 0x1.75a8c6f30b98a8640a810c36008p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xc.21f9ab8ca3a7157a0475f4ba74p-36L 0x1.75a8c6f30b98a8640a810c3601p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xc.21f9ab8ca3a7157a0475f4ba74p-36L 0x1.75a8c6f30b98a8640a810c36008p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xc.21f9ab8ca3a7157a0475f4ba78p-36L 0x1.75a8c6f30b98a8640a810c3601p+0L : inexact-ok += clog downward flt-32 0x1.c67eccp-4f 0xf.e6b4ep-4f : 0xd.e549ap-28f 0x1.75a8c6p+0f : inexact-ok += clog tonearest flt-32 0x1.c67eccp-4f 0xf.e6b4ep-4f : 0xd.e549bp-28f 0x1.75a8c8p+0f : inexact-ok += clog towardzero flt-32 0x1.c67eccp-4f 0xf.e6b4ep-4f : 0xd.e549ap-28f 0x1.75a8c6p+0f : inexact-ok += clog upward flt-32 0x1.c67eccp-4f 0xf.e6b4ep-4f : 0xd.e549bp-28f 0x1.75a8c8p+0f : inexact-ok += clog downward dbl-64 0x1.c67eccp-4 0xf.e6b4ep-4 : 0xd.e549a86e92798p-28 0x1.75a8c72bfb936p+0 : inexact-ok += clog tonearest dbl-64 0x1.c67eccp-4 0xf.e6b4ep-4 : 0xd.e549a86e92798p-28 0x1.75a8c72bfb937p+0 : inexact-ok += clog towardzero dbl-64 0x1.c67eccp-4 0xf.e6b4ep-4 : 0xd.e549a86e92798p-28 0x1.75a8c72bfb936p+0 : inexact-ok += clog upward dbl-64 0x1.c67eccp-4 0xf.e6b4ep-4 : 0xd.e549a86e927ap-28 0x1.75a8c72bfb937p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e9279872p-28L 0x1.75a8c72bfb936882p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e9279872p-28L 0x1.75a8c72bfb936884p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e9279872p-28L 0x1.75a8c72bfb936882p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e9279873p-28L 0x1.75a8c72bfb936884p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e9279872p-28L 0x1.75a8c72bfb936882p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e9279872p-28L 0x1.75a8c72bfb936884p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e9279872p-28L 0x1.75a8c72bfb936882p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e9279873p-28L 0x1.75a8c72bfb936884p+0L : inexact-ok += clog downward ldbl-128 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e92798720ffb50cf60558p-28L 0x1.75a8c72bfb936883048b7dc2cfa8p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e92798720ffb50cf6056p-28L 0x1.75a8c72bfb936883048b7dc2cfa9p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e92798720ffb50cf60558p-28L 0x1.75a8c72bfb936883048b7dc2cfa8p+0L : inexact-ok += clog upward ldbl-128 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e92798720ffb50cf6056p-28L 0x1.75a8c72bfb936883048b7dc2cfa9p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e92798720ffb50cf604p-28L 0x1.75a8c72bfb936883048b7dc2cf8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e92798720ffb50cf604p-28L 0x1.75a8c72bfb936883048b7dc2cf8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e92798720ffb50cf604p-28L 0x1.75a8c72bfb936883048b7dc2cf8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4ep-4L : 0xd.e549a86e92798720ffb50cf608p-28L 0x1.75a8c72bfb936883048b7dc2dp+0L : inexact-ok += clog downward flt-32 0x1.c67eccp-4f 0xf.e6b4dp-4f : -0x2.016b24p-28f 0x1.75a8c6p+0f : inexact-ok += clog tonearest flt-32 0x1.c67eccp-4f 0xf.e6b4dp-4f : -0x2.016b24p-28f 0x1.75a8c8p+0f : inexact-ok += clog towardzero flt-32 0x1.c67eccp-4f 0xf.e6b4dp-4f : -0x2.016b2p-28f 0x1.75a8c6p+0f : inexact-ok += clog upward flt-32 0x1.c67eccp-4f 0xf.e6b4dp-4f : -0x2.016b2p-28f 0x1.75a8c8p+0f : inexact-ok += clog downward dbl-64 0x1.c67eccp-4 0xf.e6b4dp-4 : -0x2.016b23c05ae92p-28 0x1.75a8c70f93a6bp+0 : inexact-ok += clog tonearest dbl-64 0x1.c67eccp-4 0xf.e6b4dp-4 : -0x2.016b23c05ae92p-28 0x1.75a8c70f93a6cp+0 : inexact-ok += clog towardzero dbl-64 0x1.c67eccp-4 0xf.e6b4dp-4 : -0x2.016b23c05ae9p-28 0x1.75a8c70f93a6bp+0 : inexact-ok += clog upward dbl-64 0x1.c67eccp-4 0xf.e6b4dp-4 : -0x2.016b23c05ae9p-28 0x1.75a8c70f93a6cp+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91cap-28L 0x1.75a8c70f93a6bd9ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9cp-28L 0x1.75a8c70f93a6bdap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9cp-28L 0x1.75a8c70f93a6bd9ep+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9cp-28L 0x1.75a8c70f93a6bdap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91cap-28L 0x1.75a8c70f93a6bd9ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9cp-28L 0x1.75a8c70f93a6bdap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9cp-28L 0x1.75a8c70f93a6bd9ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9cp-28L 0x1.75a8c70f93a6bdap+0L : inexact-ok += clog downward ldbl-128 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9c8bc56c3009d2p-28L 0x1.75a8c70f93a6bd9f04c3fe7b35ap+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9c8bc56c3009d2p-28L 0x1.75a8c70f93a6bd9f04c3fe7b35a1p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9c8bc56c3009dp-28L 0x1.75a8c70f93a6bd9f04c3fe7b35ap+0L : inexact-ok += clog upward ldbl-128 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9c8bc56c3009dp-28L 0x1.75a8c70f93a6bd9f04c3fe7b35a1p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9c8bc56c300ap-28L 0x1.75a8c70f93a6bd9f04c3fe7b358p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9c8bc56c300ap-28L 0x1.75a8c70f93a6bd9f04c3fe7b358p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9c8bc56c3009p-28L 0x1.75a8c70f93a6bd9f04c3fe7b358p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4dp-4L : -0x2.016b23c05ae91c9c8bc56c3009p-28L 0x1.75a8c70f93a6bd9f04c3fe7b36p+0L : inexact-ok += clog downward dbl-64 0x1.c67eccp-4 0xf.e6b4d1d7a6e1p-4 : -0x2.caddf8a185acap-32 0x1.75a8c712d9024p+0 : inexact-ok += clog tonearest dbl-64 0x1.c67eccp-4 0xf.e6b4d1d7a6e1p-4 : -0x2.caddf8a185acap-32 0x1.75a8c712d9025p+0 : inexact-ok += clog towardzero dbl-64 0x1.c67eccp-4 0xf.e6b4d1d7a6e1p-4 : -0x2.caddf8a185ac8p-32 0x1.75a8c712d9024p+0 : inexact-ok += clog upward dbl-64 0x1.c67eccp-4 0xf.e6b4d1d7a6e1p-4 : -0x2.caddf8a185ac8p-32 0x1.75a8c712d9025p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9408p-32L 0x1.75a8c712d9024d12p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404p-32L 0x1.75a8c712d9024d12p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404p-32L 0x1.75a8c712d9024d12p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404p-32L 0x1.75a8c712d9024d14p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9408p-32L 0x1.75a8c712d9024d12p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404p-32L 0x1.75a8c712d9024d12p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404p-32L 0x1.75a8c712d9024d12p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404p-32L 0x1.75a8c712d9024d14p+0L : inexact-ok += clog downward ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404d1414dcb88eep-32L 0x1.75a8c712d9024d12d6062cebf95ep+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404d1414dcb88ecp-32L 0x1.75a8c712d9024d12d6062cebf95ep+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404d1414dcb88ecp-32L 0x1.75a8c712d9024d12d6062cebf95ep+0L : inexact-ok += clog upward ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404d1414dcb88ecp-32L 0x1.75a8c712d9024d12d6062cebf95fp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404d1414dcb89p-32L 0x1.75a8c712d9024d12d6062cebf9p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404d1414dcb89p-32L 0x1.75a8c712d9024d12d6062cebf98p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404d1414dcb88p-32L 0x1.75a8c712d9024d12d6062cebf9p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e1p-4L : -0x2.caddf8a185ac9404d1414dcb88p-32L 0x1.75a8c712d9024d12d6062cebf98p+0L : inexact-ok += clog downward dbl-64 0x1.c67eccp-4 0xf.e6b4d1d7a6e08p-4 : -0x2.cade0094e015cp-32 0x1.75a8c712d9024p+0 : inexact-ok += clog tonearest dbl-64 0x1.c67eccp-4 0xf.e6b4d1d7a6e08p-4 : -0x2.cade0094e015ap-32 0x1.75a8c712d9025p+0 : inexact-ok += clog towardzero dbl-64 0x1.c67eccp-4 0xf.e6b4d1d7a6e08p-4 : -0x2.cade0094e015ap-32 0x1.75a8c712d9024p+0 : inexact-ok += clog upward dbl-64 0x1.c67eccp-4 0xf.e6b4d1d7a6e08p-4 : -0x2.cade0094e015ap-32 0x1.75a8c712d9025p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac4p-32L 0x1.75a8c712d9024c2ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac4p-32L 0x1.75a8c712d9024c3p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3cp-32L 0x1.75a8c712d9024c2ep+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3cp-32L 0x1.75a8c712d9024c3p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac4p-32L 0x1.75a8c712d9024c2ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac4p-32L 0x1.75a8c712d9024c3p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3cp-32L 0x1.75a8c712d9024c2ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3cp-32L 0x1.75a8c712d9024c3p+0L : inexact-ok += clog downward ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3f7fcde43fad98p-32L 0x1.75a8c712d9024c2f96a027f6d19dp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3f7fcde43fad98p-32L 0x1.75a8c712d9024c2f96a027f6d19dp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3f7fcde43fad96p-32L 0x1.75a8c712d9024c2f96a027f6d19dp+0L : inexact-ok += clog upward ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3f7fcde43fad96p-32L 0x1.75a8c712d9024c2f96a027f6d19ep+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3f7fcde43faep-32L 0x1.75a8c712d9024c2f96a027f6d18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3f7fcde43faep-32L 0x1.75a8c712d9024c2f96a027f6d18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3f7fcde43fadp-32L 0x1.75a8c712d9024c2f96a027f6d18p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e08p-4L : -0x2.cade0094e015ac3f7fcde43fadp-32L 0x1.75a8c712d9024c2f96a027f6d2p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3cp-32L 0x1.75a8c712d9024c54p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3cp-32L 0x1.75a8c712d9024c54p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a38p-32L 0x1.75a8c712d9024c54p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a38p-32L 0x1.75a8c712d9024c56p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3cp-32L 0x1.75a8c712d9024c54p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3cp-32L 0x1.75a8c712d9024c54p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a38p-32L 0x1.75a8c712d9024c54p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a38p-32L 0x1.75a8c712d9024c56p+0L : inexact-ok += clog downward ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3b127f592fffb8p-32L 0x1.75a8c712d9024c54182f6b82b3ap+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3b127f592fffb6p-32L 0x1.75a8c712d9024c54182f6b82b3a1p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3b127f592fffb6p-32L 0x1.75a8c712d9024c54182f6b82b3ap+0L : inexact-ok += clog upward ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3b127f592fffb6p-32L 0x1.75a8c712d9024c54182f6b82b3a1p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3b127f593p-32L 0x1.75a8c712d9024c54182f6b82b38p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3b127f593p-32L 0x1.75a8c712d9024c54182f6b82b38p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3b127f592fffp-32L 0x1.75a8c712d9024c54182f6b82b38p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0949p-4L : -0x2.caddff4de82f8a3b127f592fffp-32L 0x1.75a8c712d9024c54182f6b82b4p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad76p-32L 0x1.75a8c712d9024c52p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad76p-32L 0x1.75a8c712d9024c54p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75cp-32L 0x1.75a8c712d9024c52p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75cp-32L 0x1.75a8c712d9024c54p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad76p-32L 0x1.75a8c712d9024c52p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad76p-32L 0x1.75a8c712d9024c54p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75cp-32L 0x1.75a8c712d9024c52p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75cp-32L 0x1.75a8c712d9024c54p+0L : inexact-ok += clog downward ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75e19d52d692dep-32L 0x1.75a8c712d9024c53fbc77ec214fbp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75e19d52d692dep-32L 0x1.75a8c712d9024c53fbc77ec214fcp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75e19d52d692ddep-32L 0x1.75a8c712d9024c53fbc77ec214fbp+0L : inexact-ok += clog upward ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75e19d52d692ddep-32L 0x1.75a8c712d9024c53fbc77ec214fcp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75e19d52d692ep-32L 0x1.75a8c712d9024c53fbc77ec2148p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75e19d52d692ep-32L 0x1.75a8c712d9024c53fbc77ec215p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75e19d52d692dp-32L 0x1.75a8c712d9024c53fbc77ec2148p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948p-4L : -0x2.caddff4ee69ad75e19d52d692dp-32L 0x1.75a8c712d9024c53fbc77ec215p+0L : inexact-ok += clog downward ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.caddff4e6eccb8d6f660969574e8p-32L 0x1.75a8c712d9024c540927d22f7ca5p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.caddff4e6eccb8d6f660969574e6p-32L 0x1.75a8c712d9024c540927d22f7ca5p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.caddff4e6eccb8d6f660969574e6p-32L 0x1.75a8c712d9024c540927d22f7ca5p+0L : inexact-ok += clog upward ldbl-128 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.caddff4e6eccb8d6f660969574e6p-32L 0x1.75a8c712d9024c540927d22f7ca6p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.caddff4e6eccb8d6f660969575p-32L 0x1.75a8c712d9024c540927d22f7c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.caddff4e6eccb8d6f660969575p-32L 0x1.75a8c712d9024c540927d22f7c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.caddff4e6eccb8d6f660969574p-32L 0x1.75a8c712d9024c540927d22f7c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67eccp-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.caddff4e6eccb8d6f660969574p-32L 0x1.75a8c712d9024c540927d22f7dp+0L : inexact-ok += clog downward dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4ep-4 : 0xe.11f78816250f8p-28 0x1.75a8c712f8d69p+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4ep-4 : 0xe.11f78816250f8p-28 0x1.75a8c712f8d6ap+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4ep-4 : 0xe.11f78816250f8p-28 0x1.75a8c712f8d69p+0 : inexact-ok += clog upward dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4ep-4 : 0xe.11f78816251p-28 0x1.75a8c712f8d6ap+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973p-28L 0x1.75a8c712f8d6999ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f974p-28L 0x1.75a8c712f8d6999ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973p-28L 0x1.75a8c712f8d6999ap+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f974p-28L 0x1.75a8c712f8d6999cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973p-28L 0x1.75a8c712f8d6999ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f974p-28L 0x1.75a8c712f8d6999ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973p-28L 0x1.75a8c712f8d6999ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f974p-28L 0x1.75a8c712f8d6999cp+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973ae75920ead4dp-28L 0x1.75a8c712f8d6999a291281ad7138p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973ae75920ead4d8p-28L 0x1.75a8c712f8d6999a291281ad7138p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973ae75920ead4dp-28L 0x1.75a8c712f8d6999a291281ad7138p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973ae75920ead4d8p-28L 0x1.75a8c712f8d6999a291281ad7139p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973ae75920ead4p-28L 0x1.75a8c712f8d6999a291281ad71p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973ae75920ead4p-28L 0x1.75a8c712f8d6999a291281ad71p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973ae75920ead4p-28L 0x1.75a8c712f8d6999a291281ad71p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4ep-4L : 0xe.11f78816250f973ae75920ead8p-28L 0x1.75a8c712f8d6999a291281ad718p+0L : inexact-ok += clog downward dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4dp-4 : -0x1.d4bd43bff9d6dp-28 0x1.75a8c6f690e9dp+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4dp-4 : -0x1.d4bd43bff9d6cp-28 0x1.75a8c6f690e9dp+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4dp-4 : -0x1.d4bd43bff9d6cp-28 0x1.75a8c6f690e9dp+0 : inexact-ok += clog upward dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4dp-4 : -0x1.d4bd43bff9d6cp-28 0x1.75a8c6f690e9ep+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c074p-28L 0x1.75a8c6f690e9d62ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c074p-28L 0x1.75a8c6f690e9d62ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c072p-28L 0x1.75a8c6f690e9d62ap+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c072p-28L 0x1.75a8c6f690e9d62cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c074p-28L 0x1.75a8c6f690e9d62ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c074p-28L 0x1.75a8c6f690e9d62ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c072p-28L 0x1.75a8c6f690e9d62ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c072p-28L 0x1.75a8c6f690e9d62cp+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c073e20d53507ebcp-28L 0x1.75a8c6f690e9d62a48c10c4373c3p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c073e20d53507ebcp-28L 0x1.75a8c6f690e9d62a48c10c4373c4p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c073e20d53507ebbp-28L 0x1.75a8c6f690e9d62a48c10c4373c3p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c073e20d53507ebbp-28L 0x1.75a8c6f690e9d62a48c10c4373c4p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c073e20d53507fp-28L 0x1.75a8c6f690e9d62a48c10c43738p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c073e20d53507e8p-28L 0x1.75a8c6f690e9d62a48c10c4374p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c073e20d53507e8p-28L 0x1.75a8c6f690e9d62a48c10c43738p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4dp-4L : -0x1.d4bd43bff9d6c073e20d53507e8p-28L 0x1.75a8c6f690e9d62a48c10c4374p+0L : inexact-ok += clog downward dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4d1d7a6e1p-4 : 0x6.c0edadb594f48p-56 0x1.75a8c6f9d6456p+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4d1d7a6e1p-4 : 0x6.c0edadb594f4cp-56 0x1.75a8c6f9d6457p+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4d1d7a6e1p-4 : 0x6.c0edadb594f48p-56 0x1.75a8c6f9d6456p+0 : inexact-ok += clog upward dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4d1d7a6e1p-4 : 0x6.c0edadb594f4cp-56 0x1.75a8c6f9d6457p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aeep-56L 0x1.75a8c6f9d645687p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aeep-56L 0x1.75a8c6f9d6456872p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aeep-56L 0x1.75a8c6f9d645687p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aee8p-56L 0x1.75a8c6f9d6456872p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aeep-56L 0x1.75a8c6f9d645687p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aeep-56L 0x1.75a8c6f9d6456872p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aeep-56L 0x1.75a8c6f9d645687p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aee8p-56L 0x1.75a8c6f9d6456872p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aee3767a418d034p-56L 0x1.75a8c6f9d6456871afabeccdb4dep+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aee3767a418d034p-56L 0x1.75a8c6f9d6456871afabeccdb4dfp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aee3767a418d034p-56L 0x1.75a8c6f9d6456871afabeccdb4dep+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aee3767a418d0344p-56L 0x1.75a8c6f9d6456871afabeccdb4dfp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aee3767a418d02p-56L 0x1.75a8c6f9d6456871afabeccdb48p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aee3767a418d04p-56L 0x1.75a8c6f9d6456871afabeccdb5p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aee3767a418d02p-56L 0x1.75a8c6f9d6456871afabeccdb48p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.c0edadb594f4aee3767a418d04p-56L 0x1.75a8c6f9d6456871afabeccdb5p+0L : inexact-ok += clog downward dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4d1d7a6e08p-4 : -0x1.326cbb363e7b9p-56 0x1.75a8c6f9d6456p+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4d1d7a6e08p-4 : -0x1.326cbb363e7b8p-56 0x1.75a8c6f9d6456p+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4d1d7a6e08p-4 : -0x1.326cbb363e7b8p-56 0x1.75a8c6f9d6456p+0 : inexact-ok += clog upward dbl-64 0x1.c67ecd92a8595p-4 0xf.e6b4d1d7a6e08p-4 : -0x1.326cbb363e7b8p-56 0x1.75a8c6f9d6457p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84fp-56L 0x1.75a8c6f9d645678ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eep-56L 0x1.75a8c6f9d645678ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eep-56L 0x1.75a8c6f9d645678ep+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eep-56L 0x1.75a8c6f9d645679p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84fp-56L 0x1.75a8c6f9d645678ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eep-56L 0x1.75a8c6f9d645678ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eep-56L 0x1.75a8c6f9d645678ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eep-56L 0x1.75a8c6f9d645679p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eec81dbc2c0c4cp-56L 0x1.75a8c6f9d645678e70452379883bp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eec81dbc2c0c4bp-56L 0x1.75a8c6f9d645678e70452379883cp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eec81dbc2c0c4bp-56L 0x1.75a8c6f9d645678e70452379883bp+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eec81dbc2c0c4bp-56L 0x1.75a8c6f9d645678e70452379883cp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eec81dbc2c0c8p-56L 0x1.75a8c6f9d645678e7045237988p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eec81dbc2c0c8p-56L 0x1.75a8c6f9d645678e7045237988p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eec81dbc2c0cp-56L 0x1.75a8c6f9d645678e7045237988p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.326cbb363e7b84eec81dbc2c0cp-56L 0x1.75a8c6f9d645678e70452379888p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599cp-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599cp-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599cp-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599ep-60L 0x1.75a8c6f9d64567b4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599cp-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599cp-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599cp-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599ep-60L 0x1.75a8c6f9d64567b4p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599c275a4aaebe15p-60L 0x1.75a8c6f9d64567b2f1d486912de8p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599c275a4aaebe16p-60L 0x1.75a8c6f9d64567b2f1d486912de8p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599c275a4aaebe15p-60L 0x1.75a8c6f9d64567b2f1d486912de8p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599c275a4aaebe16p-60L 0x1.75a8c6f9d64567b2f1d486912de9p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599c275a4aaebep-60L 0x1.75a8c6f9d64567b2f1d486912d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599c275a4aaebep-60L 0x1.75a8c6f9d64567b2f1d486912ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599c275a4aaebep-60L 0x1.75a8c6f9d64567b2f1d486912d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x1.48b2ae4a3dbe599c275a4aaebe8p-60L 0x1.75a8c6f9d64567b2f1d486912ep+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790ap-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790ap-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790ap-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790cp-60L 0x1.75a8c6f9d64567b4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790ap-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790ap-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790ap-60L 0x1.75a8c6f9d64567b2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790cp-60L 0x1.75a8c6f9d64567b4p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790a1ce2d64ef197p-60L 0x1.75a8c6f9d64567b2d56c99b80362p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790a1ce2d64ef197p-60L 0x1.75a8c6f9d64567b2d56c99b80363p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790a1ce2d64ef197p-60L 0x1.75a8c6f9d64567b2d56c99b80362p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790a1ce2d64ef198p-60L 0x1.75a8c6f9d64567b2d56c99b80363p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790a1ce2d64ef18p-60L 0x1.75a8c6f9d64567b2d56c99b803p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790a1ce2d64ef18p-60L 0x1.75a8c6f9d64567b2d56c99b8038p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790a1ce2d64ef18p-60L 0x1.75a8c6f9d64567b2d56c99b803p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948p-4L : 0x1.38cbf9786617790a1ce2d64ef2p-60L 0x1.75a8c6f9d64567b2d56c99b8038p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.4048db60ae7d29c4985e1abf010cp-60L 0x1.75a8c6f9d64567b2e2cced30fa1ap+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.4048db60ae7d29c4985e1abf010dp-60L 0x1.75a8c6f9d64567b2e2cced30fa1bp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.4048db60ae7d29c4985e1abf010cp-60L 0x1.75a8c6f9d64567b2e2cced30fa1ap+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.4048db60ae7d29c4985e1abf010dp-60L 0x1.75a8c6f9d64567b2e2cced30fa1bp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.4048db60ae7d29c4985e1abf01p-60L 0x1.75a8c6f9d64567b2e2cced30fap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.4048db60ae7d29c4985e1abf01p-60L 0x1.75a8c6f9d64567b2e2cced30fap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.4048db60ae7d29c4985e1abf01p-60L 0x1.75a8c6f9d64567b2e2cced30fap+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8595p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.4048db60ae7d29c4985e1abf018p-60L 0x1.75a8c6f9d64567b2e2cced30fa8p+0L : inexact-ok += clog downward dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4ep-4 : 0xe.11f788145e908p-28 0x1.75a8c712f8d69p+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4ep-4 : 0xe.11f788145e91p-28 0x1.75a8c712f8d6ap+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4ep-4 : 0xe.11f788145e908p-28 0x1.75a8c712f8d69p+0 : inexact-ok += clog upward dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4ep-4 : 0xe.11f788145e91p-28 0x1.75a8c712f8d6ap+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90cccp-28L 0x1.75a8c712f8d69a98p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90cccp-28L 0x1.75a8c712f8d69a98p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90cccp-28L 0x1.75a8c712f8d69a98p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90ccdp-28L 0x1.75a8c712f8d69a9ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90cccp-28L 0x1.75a8c712f8d69a98p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90cccp-28L 0x1.75a8c712f8d69a98p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90cccp-28L 0x1.75a8c712f8d69a98p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90ccdp-28L 0x1.75a8c712f8d69a9ap+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90ccc799a10da688bp-28L 0x1.75a8c712f8d69a98945ec2364623p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90ccc799a10da688b8p-28L 0x1.75a8c712f8d69a98945ec2364623p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90ccc799a10da688bp-28L 0x1.75a8c712f8d69a98945ec2364623p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90ccc799a10da688b8p-28L 0x1.75a8c712f8d69a98945ec2364624p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90ccc799a10da688p-28L 0x1.75a8c712f8d69a98945ec23646p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90ccc799a10da688p-28L 0x1.75a8c712f8d69a98945ec23646p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90ccc799a10da688p-28L 0x1.75a8c712f8d69a98945ec23646p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4ep-4L : 0xe.11f788145e90ccc799a10da68cp-28L 0x1.75a8c712f8d69a98945ec236468p+0L : inexact-ok += clog downward dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4dp-4 : -0x1.d4bd43c1c0559p-28 0x1.75a8c6f690e9dp+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4dp-4 : -0x1.d4bd43c1c0559p-28 0x1.75a8c6f690e9dp+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4dp-4 : -0x1.d4bd43c1c0558p-28 0x1.75a8c6f690e9dp+0 : inexact-ok += clog upward dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4dp-4 : -0x1.d4bd43c1c0558p-28 0x1.75a8c6f690e9ep+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e7p-28L 0x1.75a8c6f690e9d728p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6ep-28L 0x1.75a8c6f690e9d728p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6ep-28L 0x1.75a8c6f690e9d728p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6ep-28L 0x1.75a8c6f690e9d72ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e7p-28L 0x1.75a8c6f690e9d728p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6ep-28L 0x1.75a8c6f690e9d728p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6ep-28L 0x1.75a8c6f690e9d728p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6ep-28L 0x1.75a8c6f690e9d72ap+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6e90611e270a96p-28L 0x1.75a8c6f690e9d728b40e467e7bf4p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6e90611e270a95p-28L 0x1.75a8c6f690e9d728b40e467e7bf5p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6e90611e270a95p-28L 0x1.75a8c6f690e9d728b40e467e7bf4p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6e90611e270a95p-28L 0x1.75a8c6f690e9d728b40e467e7bf5p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6e90611e270bp-28L 0x1.75a8c6f690e9d728b40e467e7b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6e90611e270a8p-28L 0x1.75a8c6f690e9d728b40e467e7cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6e90611e270a8p-28L 0x1.75a8c6f690e9d728b40e467e7b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c1c0558e6e90611e270a8p-28L 0x1.75a8c6f690e9d728b40e467e7cp+0L : inexact-ok += clog downward dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4d1d7a6e1p-4 : 0x6.a485c0dc6a6fp-56 0x1.75a8c6f9d6456p+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4d1d7a6e1p-4 : 0x6.a485c0dc6a6fp-56 0x1.75a8c6f9d6457p+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4d1d7a6e1p-4 : 0x6.a485c0dc6a6fp-56 0x1.75a8c6f9d6456p+0 : inexact-ok += clog upward dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4d1d7a6e1p-4 : 0x6.a485c0dc6a6f4p-56 0x1.75a8c6f9d6457p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bd8p-56L 0x1.75a8c6f9d645697p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bep-56L 0x1.75a8c6f9d645697p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bd8p-56L 0x1.75a8c6f9d645697p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bep-56L 0x1.75a8c6f9d6456972p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bd8p-56L 0x1.75a8c6f9d645697p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bep-56L 0x1.75a8c6f9d645697p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bd8p-56L 0x1.75a8c6f9d645697p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bep-56L 0x1.75a8c6f9d6456972p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bdfff50aea4199cp-56L 0x1.75a8c6f9d64569701af90a4822e1p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bdfff50aea4199cp-56L 0x1.75a8c6f9d64569701af90a4822e1p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bdfff50aea4199cp-56L 0x1.75a8c6f9d64569701af90a4822e1p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bdfff50aea419ap-56L 0x1.75a8c6f9d64569701af90a4822e2p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bdfff50aea418p-56L 0x1.75a8c6f9d64569701af90a48228p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bdfff50aea41ap-56L 0x1.75a8c6f9d64569701af90a4823p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bdfff50aea418p-56L 0x1.75a8c6f9d64569701af90a48228p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.a485c0dc6a6f1bdfff50aea41ap-56L 0x1.75a8c6f9d64569701af90a4823p+0L : inexact-ok += clog downward dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4d1d7a6e08p-4 : -0x1.4ed4a80f69012p-56 0x1.75a8c6f9d6456p+0 : inexact-ok += clog tonearest dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4d1d7a6e08p-4 : -0x1.4ed4a80f69012p-56 0x1.75a8c6f9d6457p+0 : inexact-ok += clog towardzero dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4d1d7a6e08p-4 : -0x1.4ed4a80f69011p-56 0x1.75a8c6f9d6456p+0 : inexact-ok += clog upward dbl-64 0x1.c67ecd92a8594p-4 0xf.e6b4d1d7a6e08p-4 : -0x1.4ed4a80f69011p-56 0x1.75a8c6f9d6457p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b6p-56L 0x1.75a8c6f9d645688cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b6p-56L 0x1.75a8c6f9d645688cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b4p-56L 0x1.75a8c6f9d645688cp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b4p-56L 0x1.75a8c6f9d645688ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b6p-56L 0x1.75a8c6f9d645688cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b6p-56L 0x1.75a8c6f9d645688cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b4p-56L 0x1.75a8c6f9d645688cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b4p-56L 0x1.75a8c6f9d645688ep+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b5ef972efdd902p-56L 0x1.75a8c6f9d645688cdb9240f3f646p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b5ef972efdd902p-56L 0x1.75a8c6f9d645688cdb9240f3f646p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b5ef972efdd901p-56L 0x1.75a8c6f9d645688cdb9240f3f646p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b5ef972efdd901p-56L 0x1.75a8c6f9d645688cdb9240f3f647p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b5ef972efdd98p-56L 0x1.75a8c6f9d645688cdb9240f3f6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b5ef972efdd9p-56L 0x1.75a8c6f9d645688cdb9240f3f68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b5ef972efdd9p-56L 0x1.75a8c6f9d645688cdb9240f3f6p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.4ed4a80f690119b5ef972efdd9p-56L 0x1.75a8c6f9d645688cdb9240f3f68p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d8p-64L 0x1.75a8c6f9d64568bp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d8p-64L 0x1.75a8c6f9d64568b2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4dp-64L 0x1.75a8c6f9d64568bp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4dp-64L 0x1.75a8c6f9d64568b2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d8p-64L 0x1.75a8c6f9d64568bp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d8p-64L 0x1.75a8c6f9d64568b2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4dp-64L 0x1.75a8c6f9d64568bp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4dp-64L 0x1.75a8c6f9d64568b2p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d550f94e9757d4p-64L 0x1.75a8c6f9d64568b15d21a40b9bf1p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d550f94e9757dp-64L 0x1.75a8c6f9d64568b15d21a40b9bf2p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d550f94e9757dp-64L 0x1.75a8c6f9d64568b15d21a40b9bf1p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d550f94e9757dp-64L 0x1.75a8c6f9d64568b15d21a40b9bf2p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d550f94e9758p-64L 0x1.75a8c6f9d64568b15d21a40b9b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d550f94e9758p-64L 0x1.75a8c6f9d64568b15d21a40b9cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d550f94e9756p-64L 0x1.75a8c6f9d64568b15d21a40b9b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0949p-4L : -0x7.dcc1f486a9aee4d550f94e9756p-64L 0x1.75a8c6f9d64568b15d21a40b9cp+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee3p-64L 0x1.75a8c6f9d64568bp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee3p-64L 0x1.75a8c6f9d64568b2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2p-64L 0x1.75a8c6f9d64568bp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2p-64L 0x1.75a8c6f9d64568b2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee3p-64L 0x1.75a8c6f9d64568bp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee3p-64L 0x1.75a8c6f9d64568b2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2p-64L 0x1.75a8c6f9d64568bp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2p-64L 0x1.75a8c6f9d64568b2p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2e6e7a90913c2p-64L 0x1.75a8c6f9d64568b140b9b732716bp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2e6e7a90913c2p-64L 0x1.75a8c6f9d64568b140b9b732716cp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2e6e7a90913c18p-64L 0x1.75a8c6f9d64568b140b9b732716bp+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2e6e7a90913c18p-64L 0x1.75a8c6f9d64568b140b9b732716cp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2e6e7a90914p-64L 0x1.75a8c6f9d64568b140b9b73271p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2e6e7a90913cp-64L 0x1.75a8c6f9d64568b140b9b732718p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2e6e7a90913cp-64L 0x1.75a8c6f9d64568b140b9b73271p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x8.db2d41a4241cee2e6e7a90913cp-64L 0x1.75a8c6f9d64568b140b9b732718p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x8.635f231f9dc1e26c206a10b8bcp-64L 0x1.75a8c6f9d64568b14e1a0aab6824p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x8.635f231f9dc1e26c206a10b8bcp-64L 0x1.75a8c6f9d64568b14e1a0aab6824p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x8.635f231f9dc1e26c206a10b8bbf8p-64L 0x1.75a8c6f9d64568b14e1a0aab6824p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x8.635f231f9dc1e26c206a10b8bbf8p-64L 0x1.75a8c6f9d64568b14e1a0aab6825p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x8.635f231f9dc1e26c206a10b8bcp-64L 0x1.75a8c6f9d64568b14e1a0aab68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x8.635f231f9dc1e26c206a10b8bcp-64L 0x1.75a8c6f9d64568b14e1a0aab68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x8.635f231f9dc1e26c206a10b8b8p-64L 0x1.75a8c6f9d64568b14e1a0aab68p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a8594p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x8.635f231f9dc1e26c206a10b8b8p-64L 0x1.75a8c6f9d64568b14e1a0aab688p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d4015p-28L 0x1.75a8c712f8d69a4cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d4015p-28L 0x1.75a8c712f8d69a4ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d4015p-28L 0x1.75a8c712f8d69a4cp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d4016p-28L 0x1.75a8c712f8d69a4ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d4015p-28L 0x1.75a8c712f8d69a4cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d4015p-28L 0x1.75a8c712f8d69a4ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d4015p-28L 0x1.75a8c712f8d69a4cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d4016p-28L 0x1.75a8c712f8d69a4ep+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d40155e9768cb7ce08p-28L 0x1.75a8c712f8d69a4d6bec5ba5da3dp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d40155e9768cb7ce08p-28L 0x1.75a8c712f8d69a4d6bec5ba5da3dp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d40155e9768cb7ce08p-28L 0x1.75a8c712f8d69a4d6bec5ba5da3dp+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d40155e9768cb7ce1p-28L 0x1.75a8c712f8d69a4d6bec5ba5da3ep+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d40155e9768cb7ccp-28L 0x1.75a8c712f8d69a4d6bec5ba5dap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d40155e9768cb7dp-28L 0x1.75a8c712f8d69a4d6bec5ba5dap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d40155e9768cb7ccp-28L 0x1.75a8c712f8d69a4d6bec5ba5dap+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4ep-4L : 0xe.11f78814e4d40155e9768cb7dp-28L 0x1.75a8c712f8d69a4d6bec5ba5da8p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d6p-28L 0x1.75a8c6f690e9d6dcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d6p-28L 0x1.75a8c6f690e9d6dep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d4p-28L 0x1.75a8c6f690e9d6dcp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d4p-28L 0x1.75a8c6f690e9d6dep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d6p-28L 0x1.75a8c6f690e9d6dcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d6p-28L 0x1.75a8c6f690e9d6dep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d4p-28L 0x1.75a8c6f690e9d6dcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d4p-28L 0x1.75a8c6f690e9d6dep+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d562a19efb3132p-28L 0x1.75a8c6f690e9d6dd8b9b962acba9p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d562a19efb3131p-28L 0x1.75a8c6f690e9d6dd8b9b962acba9p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d562a19efb3131p-28L 0x1.75a8c6f690e9d6dd8b9b962acba9p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d562a19efb3131p-28L 0x1.75a8c6f690e9d6dd8b9b962acbaap+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d562a19efb318p-28L 0x1.75a8c6f690e9d6dd8b9b962acb8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d562a19efb31p-28L 0x1.75a8c6f690e9d6dd8b9b962acb8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d562a19efb31p-28L 0x1.75a8c6f690e9d6dd8b9b962acb8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1258d562a19efb31p-28L 0x1.75a8c6f690e9d6dd8b9b962accp+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed15p-56L 0x1.75a8c6f9d6456924p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed15p-56L 0x1.75a8c6f9d6456924p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed15p-56L 0x1.75a8c6f9d6456924p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed158p-56L 0x1.75a8c6f9d6456926p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed15p-56L 0x1.75a8c6f9d6456924p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed15p-56L 0x1.75a8c6f9d6456924p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed15p-56L 0x1.75a8c6f9d6456924p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed158p-56L 0x1.75a8c6f9d6456926p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed153e8e99ac524ap-56L 0x1.75a8c6f9d6456924f2866272d821p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed153e8e99ac524ap-56L 0x1.75a8c6f9d6456924f2866272d822p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed153e8e99ac524ap-56L 0x1.75a8c6f9d6456924f2866272d821p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed153e8e99ac524a4p-56L 0x1.75a8c6f9d6456924f2866272d822p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed153e8e99ac524p-56L 0x1.75a8c6f9d6456924f2866272d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed153e8e99ac524p-56L 0x1.75a8c6f9d6456924f2866272d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed153e8e99ac524p-56L 0x1.75a8c6f9d6456924f2866272d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace9f434119ed153e8e99ac526p-56L 0x1.75a8c6f9d6456924f2866272d88p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bep-56L 0x1.75a8c6f9d645684p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bcp-56L 0x1.75a8c6f9d6456842p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bcp-56L 0x1.75a8c6f9d645684p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bcp-56L 0x1.75a8c6f9d6456842p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bep-56L 0x1.75a8c6f9d645684p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bcp-56L 0x1.75a8c6f9d6456842p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bcp-56L 0x1.75a8c6f9d645684p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bcp-56L 0x1.75a8c6f9d6456842p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bc9708aa57a1ecp-56L 0x1.75a8c6f9d6456841b31f991eab84p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bc9708aa57a1ebp-56L 0x1.75a8c6f9d6456841b31f991eab84p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bc9708aa57a1ebp-56L 0x1.75a8c6f9d6456841b31f991eab84p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bc9708aa57a1ebp-56L 0x1.75a8c6f9d6456841b31f991eab85p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bc9708aa57a2p-56L 0x1.75a8c6f9d6456841b31f991eab8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bc9708aa57a2p-56L 0x1.75a8c6f9d6456841b31f991eab8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bc9708aa57a18p-56L 0x1.75a8c6f9d6456841b31f991eab8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467074b7c1d163bc9708aa57a18p-56L 0x1.75a8c6f9d6456841b31f991eacp+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff14p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff14p-68L 0x1.75a8c6f9d6456868p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff14p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff14p-68L 0x1.75a8c6f9d6456868p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13ca57373b098cp-68L 0x1.75a8c6f9d645686634aefc36513p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13ca57373b098cp-68L 0x1.75a8c6f9d645686634aefc36513p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13ca57373b098cp-68L 0x1.75a8c6f9d645686634aefc36513p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13ca57373b098c8p-68L 0x1.75a8c6f9d645686634aefc365131p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13ca57373b098p-68L 0x1.75a8c6f9d645686634aefc3651p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13ca57373b098p-68L 0x1.75a8c6f9d645686634aefc3651p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13ca57373b098p-68L 0x1.75a8c6f9d645686634aefc3651p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.77163208606ff13ca57373b09cp-68L 0x1.75a8c6f9d645686634aefc36518p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a35p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a348p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a348p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a348p-68L 0x1.75a8c6f9d6456868p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a35p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a348p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a348p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a348p-68L 0x1.75a8c6f9d6456868p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a34a54b57ae3541p-68L 0x1.75a8c6f9d645686618470f5d26aap+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a34a54b57ae3540cp-68L 0x1.75a8c6f9d645686618470f5d26aap+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a34a54b57ae3540cp-68L 0x1.75a8c6f9d645686618470f5d26aap+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a34a54b57ae3540cp-68L 0x1.75a8c6f9d645686618470f5d26abp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a34a54b57ae356p-68L 0x1.75a8c6f9d645686618470f5d268p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a34a54b57ae354p-68L 0x1.75a8c6f9d645686618470f5d268p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a34a54b57ae354p-68L 0x1.75a8c6f9d645686618470f5d268p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.6f9e9fcf4670a34a54b57ae354p-68L 0x1.75a8c6f9d645686618470f5d27p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xd.4348791f40185ce1a29df9f18b68p-76L 0x1.75a8c6f9d645686625a762d61d62p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xd.4348791f40185ce1a29df9f18b7p-76L 0x1.75a8c6f9d645686625a762d61d63p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xd.4348791f40185ce1a29df9f18b68p-76L 0x1.75a8c6f9d645686625a762d61d62p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xd.4348791f40185ce1a29df9f18b7p-76L 0x1.75a8c6f9d645686625a762d61d63p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xd.4348791f40185ce1a29df9f188p-76L 0x1.75a8c6f9d645686625a762d61dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xd.4348791f40185ce1a29df9f18cp-76L 0x1.75a8c6f9d645686625a762d61d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xd.4348791f40185ce1a29df9f188p-76L 0x1.75a8c6f9d645686625a762d61dp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944bap-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0xd.4348791f40185ce1a29df9f18cp-76L 0x1.75a8c6f9d645686625a762d61d8p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317p-28L 0x1.75a8c712f8d69a4cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b318p-28L 0x1.75a8c712f8d69a4ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317p-28L 0x1.75a8c712f8d69a4cp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b318p-28L 0x1.75a8c712f8d69a4ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317p-28L 0x1.75a8c712f8d69a4cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b318p-28L 0x1.75a8c712f8d69a4ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317p-28L 0x1.75a8c712f8d69a4cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b318p-28L 0x1.75a8c712f8d69a4ep+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317c9b0cd5b5cbc8p-28L 0x1.75a8c712f8d69a4d8bb9c52deb57p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317c9b0cd5b5cbc8p-28L 0x1.75a8c712f8d69a4d8bb9c52deb58p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317c9b0cd5b5cbc8p-28L 0x1.75a8c712f8d69a4d8bb9c52deb57p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317c9b0cd5b5cbdp-28L 0x1.75a8c712f8d69a4d8bb9c52deb58p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317c9b0cd5b5c8p-28L 0x1.75a8c712f8d69a4d8bb9c52debp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317c9b0cd5b5ccp-28L 0x1.75a8c712f8d69a4d8bb9c52deb8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317c9b0cd5b5c8p-28L 0x1.75a8c712f8d69a4d8bb9c52debp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4ep-4L : 0xe.11f78814e49b317c9b0cd5b5ccp-28L 0x1.75a8c712f8d69a4d8bb9c52deb8p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28bp-28L 0x1.75a8c6f690e9d6dcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28bp-28L 0x1.75a8c6f690e9d6dep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28aep-28L 0x1.75a8c6f690e9d6dcp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28aep-28L 0x1.75a8c6f690e9d6dep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28bp-28L 0x1.75a8c6f690e9d6dcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28bp-28L 0x1.75a8c6f690e9d6dep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28aep-28L 0x1.75a8c6f690e9d6dcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28aep-28L 0x1.75a8c6f690e9d6dep+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28af21f7697425b8p-28L 0x1.75a8c6f690e9d6ddab68ffd2130ap+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28af21f7697425b8p-28L 0x1.75a8c6f690e9d6ddab68ffd2130ap+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28af21f7697425b7p-28L 0x1.75a8c6f690e9d6ddab68ffd2130ap+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28af21f7697425b7p-28L 0x1.75a8c6f690e9d6ddab68ffd2130bp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28af21f7697426p-28L 0x1.75a8c6f690e9d6ddab68ffd213p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28af21f76974258p-28L 0x1.75a8c6f690e9d6ddab68ffd213p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28af21f76974258p-28L 0x1.75a8c6f690e9d6ddab68ffd213p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a4b28af21f76974258p-28L 0x1.75a8c6f690e9d6ddab68ffd2138p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980ap-56L 0x1.75a8c6f9d6456924p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980ap-56L 0x1.75a8c6f9d6456926p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980ap-56L 0x1.75a8c6f9d6456924p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980a8p-56L 0x1.75a8c6f9d6456926p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980ap-56L 0x1.75a8c6f9d6456924p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980ap-56L 0x1.75a8c6f9d6456926p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980ap-56L 0x1.75a8c6f9d6456924p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980a8p-56L 0x1.75a8c6f9d6456926p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980a18edf63a3a02cp-56L 0x1.75a8c6f9d64569251253cc16876fp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980a18edf63a3a02cp-56L 0x1.75a8c6f9d64569251253cc16877p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980a18edf63a3a02cp-56L 0x1.75a8c6f9d64569251253cc16876fp+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980a18edf63a3a03p-56L 0x1.75a8c6f9d64569251253cc16877p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980a18edf63a3ap-56L 0x1.75a8c6f9d64569251253cc1687p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980a18edf63a3ap-56L 0x1.75a8c6f9d64569251253cc16878p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980a18edf63a3ap-56L 0x1.75a8c6f9d64569251253cc1687p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace66736767980a18edf63a3a2p-56L 0x1.75a8c6f9d64569251253cc16878p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b47p-56L 0x1.75a8c6f9d645684p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b47p-56L 0x1.75a8c6f9d6456842p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46ep-56L 0x1.75a8c6f9d645684p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46ep-56L 0x1.75a8c6f9d6456842p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b47p-56L 0x1.75a8c6f9d645684p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b47p-56L 0x1.75a8c6f9d6456842p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46ep-56L 0x1.75a8c6f9d645684p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46ep-56L 0x1.75a8c6f9d6456842p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46f2988eb75237dp-56L 0x1.75a8c6f9d6456841d2ed02c25ad2p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46f2988eb75237dp-56L 0x1.75a8c6f9d6456841d2ed02c25ad2p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46f2988eb75237cp-56L 0x1.75a8c6f9d6456841d2ed02c25ad2p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46f2988eb75237cp-56L 0x1.75a8c6f9d6456841d2ed02c25ad3p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46f2988eb75238p-56L 0x1.75a8c6f9d6456841d2ed02c25a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46f2988eb75238p-56L 0x1.75a8c6f9d6456841d2ed02c25bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46f2988eb7523p-56L 0x1.75a8c6f9d6456841d2ed02c25a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467401b55cf6b46f2988eb7523p-56L 0x1.75a8c6f9d6456841d2ed02c25bp+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8ap-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8ap-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8ap-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8bp-68L 0x1.75a8c6f9d6456868p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8ap-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8ap-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8ap-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8bp-68L 0x1.75a8c6f9d6456868p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8a5c0c7454812e8p-68L 0x1.75a8c6f9d6456866547c65da007dp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8a5c0c7454812e8p-68L 0x1.75a8c6f9d6456866547c65da007ep+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8a5c0c7454812e8p-68L 0x1.75a8c6f9d6456866547c65da007dp+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8a5c0c7454812fp-68L 0x1.75a8c6f9d6456866547c65da007ep+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8a5c0c745481p-68L 0x1.75a8c6f9d6456866547c65dap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8a5c0c7454814p-68L 0x1.75a8c6f9d6456866547c65da008p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8a5c0c745481p-68L 0x1.75a8c6f9d6456866547c65dap+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.3e4658560b64c8a5c0c7454814p-68L 0x1.75a8c6f9d6456866547c65da008p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbe8p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbep-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbep-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbep-68L 0x1.75a8c6f9d6456868p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbe8p-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbep-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbep-68L 0x1.75a8c6f9d6456866p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbep-68L 0x1.75a8c6f9d6456868p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbe1aa4dbd43d42p-68L 0x1.75a8c6f9d645686638147900d5f8p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbe1aa4dbd43d41cp-68L 0x1.75a8c6f9d645686638147900d5f8p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbe1aa4dbd43d41cp-68L 0x1.75a8c6f9d645686638147900d5f8p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbe1aa4dbd43d41cp-68L 0x1.75a8c6f9d645686638147900d5f9p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbe1aa4dbd43d6p-68L 0x1.75a8c6f9d645686638147900d58p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbe1aa4dbd43d4p-68L 0x1.75a8c6f9d645686638147900d6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbe1aa4dbd43d4p-68L 0x1.75a8c6f9d645686638147900d58p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.a86e79819b7bcbe1aa4dbd43d4p-68L 0x1.75a8c6f9d645686638147900d6p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.b8c913935cb103a3ec8ebf4df73ap-72L 0x1.75a8c6f9d64568664574cc79ccbp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.b8c913935cb103a3ec8ebf4df738p-72L 0x1.75a8c6f9d64568664574cc79ccbp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.b8c913935cb103a3ec8ebf4df738p-72L 0x1.75a8c6f9d64568664574cc79ccbp+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.b8c913935cb103a3ec8ebf4df738p-72L 0x1.75a8c6f9d64568664574cc79ccb1p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.b8c913935cb103a3ec8ebf4df8p-72L 0x1.75a8c6f9d64568664574cc79cc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.b8c913935cb103a3ec8ebf4df7p-72L 0x1.75a8c6f9d64568664574cc79cc8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.b8c913935cb103a3ec8ebf4df7p-72L 0x1.75a8c6f9d64568664574cc79cc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b8p-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : -0x2.b8c913935cb103a3ec8ebf4df7p-72L 0x1.75a8c6f9d64568664574cc79cdp+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4ep-4L : 0xe.11f78814e4c6be0d87aad4b7dep-28L 0x1.75a8c712f8d69a4d7358fb89934p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4ep-4L : 0xe.11f78814e4c6be0d87aad4b7dep-28L 0x1.75a8c712f8d69a4d7358fb89934p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4ep-4L : 0xe.11f78814e4c6be0d87aad4b7dep-28L 0x1.75a8c712f8d69a4d7358fb89934p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4ep-4L : 0xe.11f78814e4c6be0d87aad4b7de08p-28L 0x1.75a8c712f8d69a4d7358fb899341p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4ep-4L : 0xe.11f78814e4c6be0d87aad4b7dcp-28L 0x1.75a8c712f8d69a4d7358fb8993p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4ep-4L : 0xe.11f78814e4c6be0d87aad4b7ep-28L 0x1.75a8c712f8d69a4d7358fb89938p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4ep-4L : 0xe.11f78814e4c6be0d87aad4b7dcp-28L 0x1.75a8c712f8d69a4d7358fb8993p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4ep-4L : 0xe.11f78814e4c6be0d87aad4b7ep-28L 0x1.75a8c712f8d69a4d7358fb89938p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1f9c1ddec9f8e978aap-28L 0x1.75a8c6f690e9d6dd93083615ce03p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1f9c1ddec9f8e978a9p-28L 0x1.75a8c6f690e9d6dd93083615ce03p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1f9c1ddec9f8e978a9p-28L 0x1.75a8c6f690e9d6dd93083615ce03p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1f9c1ddec9f8e978a9p-28L 0x1.75a8c6f690e9d6dd93083615ce04p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1f9c1ddec9f8e979p-28L 0x1.75a8c6f690e9d6dd93083615cep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1f9c1ddec9f8e9788p-28L 0x1.75a8c6f690e9d6dd93083615cep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1f9c1ddec9f8e9788p-28L 0x1.75a8c6f690e9d6dd93083615cep+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4dp-4L : -0x1.d4bd43c13a1f9c1ddec9f8e9788p-28L 0x1.75a8c6f690e9d6dd93083615ce8p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace91fff8a0cdd526e2ca008f3b8p-56L 0x1.75a8c6f9d6456924f9f3025d03b1p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace91fff8a0cdd526e2ca008f3b8p-56L 0x1.75a8c6f9d6456924f9f3025d03b1p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace91fff8a0cdd526e2ca008f3b8p-56L 0x1.75a8c6f9d6456924f9f3025d03b1p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace91fff8a0cdd526e2ca008f3bcp-56L 0x1.75a8c6f9d6456924f9f3025d03b2p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace91fff8a0cdd526e2ca008f2p-56L 0x1.75a8c6f9d6456924f9f3025d038p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace91fff8a0cdd526e2ca008f4p-56L 0x1.75a8c6f9d6456924f9f3025d038p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace91fff8a0cdd526e2ca008f2p-56L 0x1.75a8c6f9d6456924f9f3025d038p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e1p-4L : 0x6.ace91fff8a0cdd526e2ca008f4p-56L 0x1.75a8c6f9d6456924f9f3025d04p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467148ec496357be1ef3f61a0e3ap-56L 0x1.75a8c6f9d6456841ba8c3908d713p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467148ec496357be1ef3f61a0e39p-56L 0x1.75a8c6f9d6456841ba8c3908d714p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467148ec496357be1ef3f61a0e39p-56L 0x1.75a8c6f9d6456841ba8c3908d713p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467148ec496357be1ef3f61a0e39p-56L 0x1.75a8c6f9d6456841ba8c3908d714p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467148ec496357be1ef3f61a0e8p-56L 0x1.75a8c6f9d6456841ba8c3908d7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467148ec496357be1ef3f61a0ep-56L 0x1.75a8c6f9d6456841ba8c3908d7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467148ec496357be1ef3f61a0ep-56L 0x1.75a8c6f9d6456841ba8c3908d7p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e08p-4L : -0x1.467148ec496357be1ef3f61a0ep-56L 0x1.75a8c6f9d6456841ba8c3908d78p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.69d2e98f412fd8dfd1c38ef05fb8p-68L 0x1.75a8c6f9d64568663c1b9c207cbfp+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.69d2e98f412fd8dfd1c38ef05fb8p-68L 0x1.75a8c6f9d64568663c1b9c207cbfp+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.69d2e98f412fd8dfd1c38ef05fb8p-68L 0x1.75a8c6f9d64568663c1b9c207cbfp+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.69d2e98f412fd8dfd1c38ef05fcp-68L 0x1.75a8c6f9d64568663c1b9c207ccp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.69d2e98f412fd8dfd1c38ef05cp-68L 0x1.75a8c6f9d64568663c1b9c207c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.69d2e98f412fd8dfd1c38ef06p-68L 0x1.75a8c6f9d64568663c1b9c207c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.69d2e98f412fd8dfd1c38ef05cp-68L 0x1.75a8c6f9d64568663c1b9c207c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0949p-4L : 0x8.69d2e98f412fd8dfd1c38ef06p-68L 0x1.75a8c6f9d64568663c1b9c207dp+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.7ce1e84865b0bba742c201b003ep-68L 0x1.75a8c6f9d64568661fb3af475239p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.7ce1e84865b0bba742c201b003ep-68L 0x1.75a8c6f9d64568661fb3af47523ap+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.7ce1e84865b0bba742c201b003dcp-68L 0x1.75a8c6f9d64568661fb3af475239p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.7ce1e84865b0bba742c201b003dcp-68L 0x1.75a8c6f9d64568661fb3af47523ap+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.7ce1e84865b0bba742c201b004p-68L 0x1.75a8c6f9d64568661fb3af4752p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.7ce1e84865b0bba742c201b004p-68L 0x1.75a8c6f9d64568661fb3af4752p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.7ce1e84865b0bba742c201b002p-68L 0x1.75a8c6f9d64568661fb3af4752p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948p-4L : -0x7.7ce1e84865b0bba742c201b002p-68L 0x1.75a8c6f9d64568661fb3af47528p+0L : inexact-ok += clog downward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.01ffffffffffffffffffffffffffp-184L 0x1.75a8c6f9d64568662d1402c048f1p+0L : inexact-ok += clog tonearest ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.02p-184L 0x1.75a8c6f9d64568662d1402c048f2p+0L : inexact-ok += clog towardzero ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.01ffffffffffffffffffffffffffp-184L 0x1.75a8c6f9d64568662d1402c048f1p+0L : inexact-ok += clog upward ldbl-128 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.02p-184L 0x1.75a8c6f9d64568662d1402c048f2p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.01ffffffffffffffffffffffff8p-184L 0x1.75a8c6f9d64568662d1402c0488p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.02p-184L 0x1.75a8c6f9d64568662d1402c049p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.01ffffffffffffffffffffffff8p-184L 0x1.75a8c6f9d64568662d1402c0488p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.c67ecd92a85944b988790cep-4L 0xf.e6b4d1d7a6e0948788cb0c8p-4L : 0x1.02p-184L 0x1.75a8c6f9d64568662d1402c049p+0L : inexact-ok +clog 0x6771f22c64ed551b857c128b4cp-105 0x1f570e7a13cc3cf2f44fd793ea1p-105 += clog downward flt-32 0x3.3b8f94p-4f 0xf.ab874p-4f : 0x3.6d99e8p-28f 0x1.5e0af4p+0f : inexact-ok += clog tonearest flt-32 0x3.3b8f94p-4f 0xf.ab874p-4f : 0x3.6d99ecp-28f 0x1.5e0af4p+0f : inexact-ok += clog towardzero flt-32 0x3.3b8f94p-4f 0xf.ab874p-4f : 0x3.6d99e8p-28f 0x1.5e0af4p+0f : inexact-ok += clog upward flt-32 0x3.3b8f94p-4f 0xf.ab874p-4f : 0x3.6d99ecp-28f 0x1.5e0af6p+0f : inexact-ok += clog downward dbl-64 0x3.3b8f94p-4 0xf.ab874p-4 : 0x3.6d99ebc3f7808p-28 0x1.5e0af44aafa18p+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f94p-4 0xf.ab874p-4 : 0x3.6d99ebc3f7808p-28 0x1.5e0af44aafa19p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f94p-4 0xf.ab874p-4 : 0x3.6d99ebc3f7808p-28 0x1.5e0af44aafa18p+0 : inexact-ok += clog upward dbl-64 0x3.3b8f94p-4 0xf.ab874p-4 : 0x3.6d99ebc3f780ap-28 0x1.5e0af44aafa19p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869cp-28L 0x1.5e0af44aafa18dbcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f78086ap-28L 0x1.5e0af44aafa18dbep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869cp-28L 0x1.5e0af44aafa18dbcp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f78086ap-28L 0x1.5e0af44aafa18dbep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869cp-28L 0x1.5e0af44aafa18dbcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f78086ap-28L 0x1.5e0af44aafa18dbep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869cp-28L 0x1.5e0af44aafa18dbcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f78086ap-28L 0x1.5e0af44aafa18dbep+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869ecbd9d1e142ap-28L 0x1.5e0af44aafa18dbdd79ffe5aefd5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869ecbd9d1e142ap-28L 0x1.5e0af44aafa18dbdd79ffe5aefd6p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869ecbd9d1e142ap-28L 0x1.5e0af44aafa18dbdd79ffe5aefd5p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869ecbd9d1e142a2p-28L 0x1.5e0af44aafa18dbdd79ffe5aefd6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869ecbd9d1e142p-28L 0x1.5e0af44aafa18dbdd79ffe5aef8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869ecbd9d1e143p-28L 0x1.5e0af44aafa18dbdd79ffe5afp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869ecbd9d1e142p-28L 0x1.5e0af44aafa18dbdd79ffe5aef8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab874p-4L : 0x3.6d99ebc3f780869ecbd9d1e143p-28L 0x1.5e0af44aafa18dbdd79ffe5afp+0L : inexact-ok += clog downward flt-32 0x3.3b8f94p-4f 0xf.ab873p-4f : -0xc.3ded6p-28f 0x1.5e0af4p+0f : inexact-ok += clog tonearest flt-32 0x3.3b8f94p-4f 0xf.ab873p-4f : -0xc.3ded5p-28f 0x1.5e0af4p+0f : inexact-ok += clog towardzero flt-32 0x3.3b8f94p-4f 0xf.ab873p-4f : -0xc.3ded5p-28f 0x1.5e0af4p+0f : inexact-ok += clog upward flt-32 0x3.3b8f94p-4f 0xf.ab873p-4f : -0xc.3ded5p-28f 0x1.5e0af6p+0f : inexact-ok += clog downward dbl-64 0x3.3b8f94p-4 0xf.ab873p-4 : -0xc.3ded54ddd3aap-28 0x1.5e0af416f6a83p+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f94p-4 0xf.ab873p-4 : -0xc.3ded54ddd3aap-28 0x1.5e0af416f6a83p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f94p-4 0xf.ab873p-4 : -0xc.3ded54ddd3a98p-28 0x1.5e0af416f6a83p+0 : inexact-ok += clog upward dbl-64 0x3.3b8f94p-4 0xf.ab873p-4 : -0xc.3ded54ddd3a98p-28 0x1.5e0af416f6a84p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed3p-28L 0x1.5e0af416f6a8313ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed2p-28L 0x1.5e0af416f6a8314p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed2p-28L 0x1.5e0af416f6a8313ep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed2p-28L 0x1.5e0af416f6a8314p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed3p-28L 0x1.5e0af416f6a8313ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed2p-28L 0x1.5e0af416f6a8314p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed2p-28L 0x1.5e0af416f6a8313ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed2p-28L 0x1.5e0af416f6a8314p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed27eb60e7140c2p-28L 0x1.5e0af416f6a8313fe8ac3cd46096p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed27eb60e7140c2p-28L 0x1.5e0af416f6a8313fe8ac3cd46096p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed27eb60e7140c18p-28L 0x1.5e0af416f6a8313fe8ac3cd46096p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed27eb60e7140c18p-28L 0x1.5e0af416f6a8313fe8ac3cd46097p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed27eb60e7141p-28L 0x1.5e0af416f6a8313fe8ac3cd4608p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed27eb60e7140cp-28L 0x1.5e0af416f6a8313fe8ac3cd4608p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed27eb60e7140cp-28L 0x1.5e0af416f6a8313fe8ac3cd4608p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873p-4L : -0xc.3ded54ddd3a9ed27eb60e7140cp-28L 0x1.5e0af416f6a8313fe8ac3cd461p+0L : inexact-ok += clog downward dbl-64 0x3.3b8f94p-4 0xf.ab873d09e61e8p-4 : 0x8.7226c6ce467p-32 0x1.5e0af4411cf2cp+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f94p-4 0xf.ab873d09e61e8p-4 : 0x8.7226c6ce467p-32 0x1.5e0af4411cf2cp+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f94p-4 0xf.ab873d09e61e8p-4 : 0x8.7226c6ce467p-32 0x1.5e0af4411cf2cp+0 : inexact-ok += clog upward dbl-64 0x3.3b8f94p-4 0xf.ab873d09e61e8p-4 : 0x8.7226c6ce46708p-32 0x1.5e0af4411cf2dp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce4670028p-32L 0x1.5e0af4411cf2c5e6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce4670028p-32L 0x1.5e0af4411cf2c5e8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce4670028p-32L 0x1.5e0af4411cf2c5e6p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce4670029p-32L 0x1.5e0af4411cf2c5e8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce4670028p-32L 0x1.5e0af4411cf2c5e6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce4670028p-32L 0x1.5e0af4411cf2c5e8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce4670028p-32L 0x1.5e0af4411cf2c5e6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce4670029p-32L 0x1.5e0af4411cf2c5e8p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce467002836d8028cdcde8p-32L 0x1.5e0af4411cf2c5e759217218fc9dp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce467002836d8028cdcdfp-32L 0x1.5e0af4411cf2c5e759217218fc9ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce467002836d8028cdcde8p-32L 0x1.5e0af4411cf2c5e759217218fc9dp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce467002836d8028cdcdfp-32L 0x1.5e0af4411cf2c5e759217218fc9ep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce467002836d8028cdccp-32L 0x1.5e0af4411cf2c5e759217218fc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce467002836d8028cdccp-32L 0x1.5e0af4411cf2c5e759217218fc8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce467002836d8028cdccp-32L 0x1.5e0af4411cf2c5e759217218fc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e8p-4L : 0x8.7226c6ce467002836d8028cddp-32L 0x1.5e0af4411cf2c5e759217218fdp+0L : inexact-ok += clog downward dbl-64 0x3.3b8f94p-4 0xf.ab873d09e61ep-4 : 0x8.7226bef882d2p-32 0x1.5e0af4411cf2cp+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f94p-4 0xf.ab873d09e61ep-4 : 0x8.7226bef882d2p-32 0x1.5e0af4411cf2cp+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f94p-4 0xf.ab873d09e61ep-4 : 0x8.7226bef882d2p-32 0x1.5e0af4411cf2cp+0 : inexact-ok += clog upward dbl-64 0x3.3b8f94p-4 0xf.ab873d09e61ep-4 : 0x8.7226bef882d28p-32 0x1.5e0af4411cf2dp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201ep-32L 0x1.5e0af4411cf2c448p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201fp-32L 0x1.5e0af4411cf2c44ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201ep-32L 0x1.5e0af4411cf2c448p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201fp-32L 0x1.5e0af4411cf2c44ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201ep-32L 0x1.5e0af4411cf2c448p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201fp-32L 0x1.5e0af4411cf2c44ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201ep-32L 0x1.5e0af4411cf2c448p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201fp-32L 0x1.5e0af4411cf2c44ap+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201e959e1436933f8p-32L 0x1.5e0af4411cf2c44991578d667c7ap+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201e959e1436933f8p-32L 0x1.5e0af4411cf2c44991578d667c7ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201e959e1436933f8p-32L 0x1.5e0af4411cf2c44991578d667c7ap+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201e959e1436934p-32L 0x1.5e0af4411cf2c44991578d667c7bp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201e959e143693p-32L 0x1.5e0af4411cf2c44991578d667cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201e959e1436934p-32L 0x1.5e0af4411cf2c44991578d667c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201e959e143693p-32L 0x1.5e0af4411cf2c44991578d667cp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61ep-4L : 0x8.7226bef882d201e959e1436934p-32L 0x1.5e0af4411cf2c44991578d667c8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7p-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc8p-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7p-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc8p-32L 0x1.5e0af4411cf2c5d4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7p-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc8p-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7p-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc8p-32L 0x1.5e0af4411cf2c5d4p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7b9a8281cabd08p-32L 0x1.5e0af4411cf2c5d255fc317bec1cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7b9a8281cabd1p-32L 0x1.5e0af4411cf2c5d255fc317bec1dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7b9a8281cabd08p-32L 0x1.5e0af4411cf2c5d255fc317bec1cp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7b9a8281cabd1p-32L 0x1.5e0af4411cf2c5d255fc317bec1dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7b9a8281cabcp-32L 0x1.5e0af4411cf2c5d255fc317becp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7b9a8281cabcp-32L 0x1.5e0af4411cf2c5d255fc317becp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7b9a8281cabcp-32L 0x1.5e0af4411cf2c5d255fc317becp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e798p-4L : 0x8.7226c6686b80fc7b9a8281cacp-32L 0x1.5e0af4411cf2c5d255fc317bec8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bp-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888cp-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bp-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888cp-32L 0x1.5e0af4411cf2c5d4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bp-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888cp-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bp-32L 0x1.5e0af4411cf2c5d2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888cp-32L 0x1.5e0af4411cf2c5d4p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bb8740113a7ecp-32L 0x1.5e0af4411cf2c5d22243383f55ccp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bb8740113a7ecp-32L 0x1.5e0af4411cf2c5d22243383f55ccp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bb8740113a7ecp-32L 0x1.5e0af4411cf2c5d22243383f55ccp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bb8740113a7ec8p-32L 0x1.5e0af4411cf2c5d22243383f55cdp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bb8740113a7cp-32L 0x1.5e0af4411cf2c5d22243383f558p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bb8740113a8p-32L 0x1.5e0af4411cf2c5d22243383f56p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bb8740113a7cp-32L 0x1.5e0af4411cf2c5d22243383f558p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e797p-4L : 0x8.7226c66770c888bb8740113a8p-32L 0x1.5e0af4411cf2c5d22243383f56p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x8.7226c6680fed617f886189ffef68p-32L 0x1.5e0af4411cf2c5d24317e11e5fecp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x8.7226c6680fed617f886189ffef68p-32L 0x1.5e0af4411cf2c5d24317e11e5fecp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x8.7226c6680fed617f886189ffef68p-32L 0x1.5e0af4411cf2c5d24317e11e5fecp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f94p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x8.7226c6680fed617f886189ffef7p-32L 0x1.5e0af4411cf2c5d24317e11e5fedp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x8.7226c6680fed617f886189ffecp-32L 0x1.5e0af4411cf2c5d24317e11e5f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x8.7226c6680fed617f886189fffp-32L 0x1.5e0af4411cf2c5d24317e11e6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x8.7226c6680fed617f886189ffecp-32L 0x1.5e0af4411cf2c5d24317e11e5f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f94p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x8.7226c6680fed617f886189fffp-32L 0x1.5e0af4411cf2c5d24317e11e6p+0L : inexact-ok += clog downward flt-32 0x3.3b8f9p-4f 0xf.ab874p-4f : 0x2.9eb604p-28f 0x1.5e0af4p+0f : inexact-ok += clog tonearest flt-32 0x3.3b8f9p-4f 0xf.ab874p-4f : 0x2.9eb608p-28f 0x1.5e0af4p+0f : inexact-ok += clog towardzero flt-32 0x3.3b8f9p-4f 0xf.ab874p-4f : 0x2.9eb604p-28f 0x1.5e0af4p+0f : inexact-ok += clog upward flt-32 0x3.3b8f9p-4f 0xf.ab874p-4f : 0x2.9eb608p-28f 0x1.5e0af6p+0f : inexact-ok += clog downward dbl-64 0x3.3b8f9p-4 0xf.ab874p-4 : 0x2.9eb607922c2aep-28 0x1.5e0af4895dbe7p+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9p-4 0xf.ab874p-4 : 0x2.9eb607922c2aep-28 0x1.5e0af4895dbe7p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9p-4 0xf.ab874p-4 : 0x2.9eb607922c2aep-28 0x1.5e0af4895dbe7p+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9p-4 0xf.ab874p-4 : 0x2.9eb607922c2bp-28 0x1.5e0af4895dbe8p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae304p-28L 0x1.5e0af4895dbe760cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae304p-28L 0x1.5e0af4895dbe760cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae304p-28L 0x1.5e0af4895dbe760cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae308p-28L 0x1.5e0af4895dbe760ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae304p-28L 0x1.5e0af4895dbe760cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae304p-28L 0x1.5e0af4895dbe760cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae304p-28L 0x1.5e0af4895dbe760cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae308p-28L 0x1.5e0af4895dbe760ep+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae30486a582c191b8p-28L 0x1.5e0af4895dbe760c50fa6418dabep+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae30486a582c191b8p-28L 0x1.5e0af4895dbe760c50fa6418dabep+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae30486a582c191b8p-28L 0x1.5e0af4895dbe760c50fa6418dabep+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae30486a582c191bap-28L 0x1.5e0af4895dbe760c50fa6418dabfp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae30486a582c191p-28L 0x1.5e0af4895dbe760c50fa6418da8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae30486a582c192p-28L 0x1.5e0af4895dbe760c50fa6418da8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae30486a582c191p-28L 0x1.5e0af4895dbe760c50fa6418da8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab874p-4L : 0x2.9eb607922c2ae30486a582c192p-28L 0x1.5e0af4895dbe760c50fa6418dbp+0L : inexact-ok += clog downward flt-32 0x3.3b8f9p-4f 0xf.ab873p-4f : -0xd.0cd14p-28f 0x1.5e0af4p+0f : inexact-ok += clog tonearest flt-32 0x3.3b8f9p-4f 0xf.ab873p-4f : -0xd.0cd14p-28f 0x1.5e0af4p+0f : inexact-ok += clog towardzero flt-32 0x3.3b8f9p-4f 0xf.ab873p-4f : -0xd.0cd13p-28f 0x1.5e0af4p+0f : inexact-ok += clog upward flt-32 0x3.3b8f9p-4f 0xf.ab873p-4f : -0xd.0cd13p-28f 0x1.5e0af6p+0f : inexact-ok += clog downward dbl-64 0x3.3b8f9p-4 0xf.ab873p-4 : -0xd.0cd13aa4de3e8p-28 0x1.5e0af455a4c55p+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9p-4 0xf.ab873p-4 : -0xd.0cd13aa4de3ep-28 0x1.5e0af455a4c55p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9p-4 0xf.ab873p-4 : -0xd.0cd13aa4de3ep-28 0x1.5e0af455a4c55p+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9p-4 0xf.ab873p-4 : -0xd.0cd13aa4de3ep-28 0x1.5e0af455a4c56p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a5p-28L 0x1.5e0af455a4c55454p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a4p-28L 0x1.5e0af455a4c55454p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a4p-28L 0x1.5e0af455a4c55454p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a4p-28L 0x1.5e0af455a4c55456p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a5p-28L 0x1.5e0af455a4c55454p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a4p-28L 0x1.5e0af455a4c55454p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a4p-28L 0x1.5e0af455a4c55454p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a4p-28L 0x1.5e0af455a4c55456p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a45bfb8db088748p-28L 0x1.5e0af455a4c55454c5b1ee6ac03cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a45bfb8db088748p-28L 0x1.5e0af455a4c55454c5b1ee6ac03cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a45bfb8db08874p-28L 0x1.5e0af455a4c55454c5b1ee6ac03cp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a45bfb8db08874p-28L 0x1.5e0af455a4c55454c5b1ee6ac03dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a45bfb8db0888p-28L 0x1.5e0af455a4c55454c5b1ee6acp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a45bfb8db0888p-28L 0x1.5e0af455a4c55454c5b1ee6acp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a45bfb8db0884p-28L 0x1.5e0af455a4c55454c5b1ee6acp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873p-4L : -0xd.0cd13aa4de3e0a45bfb8db0884p-28L 0x1.5e0af455a4c55454c5b1ee6ac08p+0L : inexact-ok += clog downward dbl-64 0x3.3b8f9p-4 0xf.ab873d09e61e8p-4 : -0x4.7c1780fe812p-32 0x1.5e0af47fcb0fbp+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9p-4 0xf.ab873d09e61e8p-4 : -0x4.7c1780fe811fcp-32 0x1.5e0af47fcb0fcp+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9p-4 0xf.ab873d09e61e8p-4 : -0x4.7c1780fe811fcp-32 0x1.5e0af47fcb0fbp+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9p-4 0xf.ab873d09e61e8p-4 : -0x4.7c1780fe811fcp-32 0x1.5e0af47fcb0fcp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fcefp-32L 0x1.5e0af47fcb0fb916p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fcefp-32L 0x1.5e0af47fcb0fb916p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fcee8p-32L 0x1.5e0af47fcb0fb916p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fcee8p-32L 0x1.5e0af47fcb0fb918p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fcefp-32L 0x1.5e0af47fcb0fb916p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fcefp-32L 0x1.5e0af47fcb0fb916p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fcee8p-32L 0x1.5e0af47fcb0fb916p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fcee8p-32L 0x1.5e0af47fcb0fb918p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fceee116ec2ad6c98p-32L 0x1.5e0af47fcb0fb916a83819c3a15dp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fceee116ec2ad6c98p-32L 0x1.5e0af47fcb0fb916a83819c3a15ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fceee116ec2ad6c94p-32L 0x1.5e0af47fcb0fb916a83819c3a15dp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fceee116ec2ad6c94p-32L 0x1.5e0af47fcb0fb916a83819c3a15ep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fceee116ec2ad6ep-32L 0x1.5e0af47fcb0fb916a83819c3a1p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fceee116ec2ad6cp-32L 0x1.5e0af47fcb0fb916a83819c3a18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fceee116ec2ad6cp-32L 0x1.5e0af47fcb0fb916a83819c3a1p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e8p-4L : -0x4.7c1780fe811fceee116ec2ad6cp-32L 0x1.5e0af47fcb0fb916a83819c3a18p+0L : inexact-ok += clog downward dbl-64 0x3.3b8f9p-4 0xf.ab873d09e61ep-4 : -0x4.7c1788d444becp-32 0x1.5e0af47fcb0fbp+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9p-4 0xf.ab873d09e61ep-4 : -0x4.7c1788d444be8p-32 0x1.5e0af47fcb0fbp+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9p-4 0xf.ab873d09e61ep-4 : -0x4.7c1788d444be8p-32 0x1.5e0af47fcb0fbp+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9p-4 0xf.ab873d09e61ep-4 : -0x4.7c1788d444be8p-32 0x1.5e0af47fcb0fcp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a28p-32L 0x1.5e0af47fcb0fb778p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a28p-32L 0x1.5e0af47fcb0fb778p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a2p-32L 0x1.5e0af47fcb0fb778p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a2p-32L 0x1.5e0af47fcb0fb77ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a28p-32L 0x1.5e0af47fcb0fb778p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a28p-32L 0x1.5e0af47fcb0fb778p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a2p-32L 0x1.5e0af47fcb0fb778p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a2p-32L 0x1.5e0af47fcb0fb77ap+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a27c39197a05588p-32L 0x1.5e0af47fcb0fb778e0700b443d8cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a27c39197a05588p-32L 0x1.5e0af47fcb0fb778e0700b443d8cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a27c39197a05584p-32L 0x1.5e0af47fcb0fb778e0700b443d8cp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a27c39197a05584p-32L 0x1.5e0af47fcb0fb778e0700b443d8dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a27c39197a056p-32L 0x1.5e0af47fcb0fb778e0700b443d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a27c39197a056p-32L 0x1.5e0af47fcb0fb778e0700b443d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a27c39197a054p-32L 0x1.5e0af47fcb0fb778e0700b443d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61ep-4L : -0x4.7c1788d444be9a27c39197a054p-32L 0x1.5e0af47fcb0fb778e0700b443ep+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf4p-32L 0x1.5e0af47fcb0fb9p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf4p-32L 0x1.5e0af47fcb0fb902p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf38p-32L 0x1.5e0af47fcb0fb9p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf38p-32L 0x1.5e0af47fcb0fb902p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf4p-32L 0x1.5e0af47fcb0fb9p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf4p-32L 0x1.5e0af47fcb0fb902p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf38p-32L 0x1.5e0af47fcb0fb9p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf38p-32L 0x1.5e0af47fcb0fb902p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf3fff791cdab70cp-32L 0x1.5e0af47fcb0fb901a512f107294cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf3fff791cdab70cp-32L 0x1.5e0af47fcb0fb901a512f107294dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf3fff791cdab708p-32L 0x1.5e0af47fcb0fb901a512f107294cp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf3fff791cdab708p-32L 0x1.5e0af47fcb0fb901a512f107294dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf3fff791cdab8p-32L 0x1.5e0af47fcb0fb901a512f10729p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf3fff791cdab8p-32L 0x1.5e0af47fcb0fb901a512f107298p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf3fff791cdab6p-32L 0x1.5e0af47fcb0fb901a512f10729p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e798p-4L : -0x4.7c1781645c0edf3fff791cdab6p-32L 0x1.5e0af47fcb0fb901a512f107298p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c7532p-32L 0x1.5e0af47fcb0fb9p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c75318p-32L 0x1.5e0af47fcb0fb902p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c75318p-32L 0x1.5e0af47fcb0fb9p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c75318p-32L 0x1.5e0af47fcb0fb902p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c7532p-32L 0x1.5e0af47fcb0fb9p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c75318p-32L 0x1.5e0af47fcb0fb902p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c75318p-32L 0x1.5e0af47fcb0fb9p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c75318p-32L 0x1.5e0af47fcb0fb902p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c7531966af5de8e72p-32L 0x1.5e0af47fcb0fb9017159f805596p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c7531966af5de8e71cp-32L 0x1.5e0af47fcb0fb9017159f805596p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c7531966af5de8e71cp-32L 0x1.5e0af47fcb0fb9017159f805596p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c7531966af5de8e71cp-32L 0x1.5e0af47fcb0fb9017159f8055961p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c7531966af5de8e8p-32L 0x1.5e0af47fcb0fb9017159f80559p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c7531966af5de8e8p-32L 0x1.5e0af47fcb0fb9017159f805598p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c7531966af5de8e6p-32L 0x1.5e0af47fcb0fb9017159f80559p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e797p-4L : -0x4.7c17816556c7531966af5de8e6p-32L 0x1.5e0af47fcb0fb9017159f805598p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x4.7c178164b7a27a4551e39fc8fd08p-32L 0x1.5e0af47fcb0fb901922ea0bf14dcp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x4.7c178164b7a27a4551e39fc8fd08p-32L 0x1.5e0af47fcb0fb901922ea0bf14dcp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x4.7c178164b7a27a4551e39fc8fd04p-32L 0x1.5e0af47fcb0fb901922ea0bf14dcp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x4.7c178164b7a27a4551e39fc8fd04p-32L 0x1.5e0af47fcb0fb901922ea0bf14ddp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x4.7c178164b7a27a4551e39fc8fep-32L 0x1.5e0af47fcb0fb901922ea0bf148p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x4.7c178164b7a27a4551e39fc8fep-32L 0x1.5e0af47fcb0fb901922ea0bf15p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x4.7c178164b7a27a4551e39fc8fcp-32L 0x1.5e0af47fcb0fb901922ea0bf148p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x4.7c178164b7a27a4551e39fc8fcp-32L 0x1.5e0af47fcb0fb901922ea0bf15p+0L : inexact-ok += clog downward dbl-64 0x3.3b8f9163276acp-4 0xf.ab874p-4 : 0x2.e6777f9320f86p-28 0x1.5e0af473a0784p+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9163276acp-4 0xf.ab874p-4 : 0x2.e6777f9320f88p-28 0x1.5e0af473a0784p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9163276acp-4 0xf.ab874p-4 : 0x2.e6777f9320f86p-28 0x1.5e0af473a0784p+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9163276acp-4 0xf.ab874p-4 : 0x2.e6777f9320f88p-28 0x1.5e0af473a0785p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bcp-28L 0x1.5e0af473a078456ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc4p-28L 0x1.5e0af473a078456cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bcp-28L 0x1.5e0af473a078456ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc4p-28L 0x1.5e0af473a078456cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bcp-28L 0x1.5e0af473a078456ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc4p-28L 0x1.5e0af473a078456cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bcp-28L 0x1.5e0af473a078456ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc4p-28L 0x1.5e0af473a078456cp+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc23d0abe2fee1p-28L 0x1.5e0af473a078456b042e445fd664p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc23d0abe2fee12p-28L 0x1.5e0af473a078456b042e445fd664p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc23d0abe2fee1p-28L 0x1.5e0af473a078456b042e445fd664p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc23d0abe2fee12p-28L 0x1.5e0af473a078456b042e445fd665p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc23d0abe2feep-28L 0x1.5e0af473a078456b042e445fd6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc23d0abe2feep-28L 0x1.5e0af473a078456b042e445fd68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc23d0abe2feep-28L 0x1.5e0af473a078456b042e445fd6p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab874p-4L : 0x2.e6777f9320f87bc23d0abe2fefp-28L 0x1.5e0af473a078456b042e445fd68p+0L : inexact-ok += clog downward dbl-64 0x3.3b8f9163276acp-4 0xf.ab873p-4 : -0xc.c50fc2175c2a8p-28 0x1.5e0af43fe77fp+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9163276acp-4 0xf.ab873p-4 : -0xc.c50fc2175c2a8p-28 0x1.5e0af43fe77f1p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9163276acp-4 0xf.ab873p-4 : -0xc.c50fc2175c2ap-28 0x1.5e0af43fe77fp+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9163276acp-4 0xf.ab873p-4 : -0xc.c50fc2175c2ap-28 0x1.5e0af43fe77f1p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50dp-28L 0x1.5e0af43fe77f0f5p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50cp-28L 0x1.5e0af43fe77f0f5p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50cp-28L 0x1.5e0af43fe77f0f5p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50cp-28L 0x1.5e0af43fe77f0f52p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50dp-28L 0x1.5e0af43fe77f0f5p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50cp-28L 0x1.5e0af43fe77f0f5p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50cp-28L 0x1.5e0af43fe77f0f5p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50cp-28L 0x1.5e0af43fe77f0f52p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50c4d45aa343c4dp-28L 0x1.5e0af43fe77f0f50eea73e0c42a3p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50c4d45aa343c4c8p-28L 0x1.5e0af43fe77f0f50eea73e0c42a4p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50c4d45aa343c4c8p-28L 0x1.5e0af43fe77f0f50eea73e0c42a3p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50c4d45aa343c4c8p-28L 0x1.5e0af43fe77f0f50eea73e0c42a4p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50c4d45aa343c8p-28L 0x1.5e0af43fe77f0f50eea73e0c428p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50c4d45aa343c4p-28L 0x1.5e0af43fe77f0f50eea73e0c428p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50c4d45aa343c4p-28L 0x1.5e0af43fe77f0f50eea73e0c428p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873p-4L : -0xc.c50fc2175c2a50c4d45aa343c4p-28L 0x1.5e0af43fe77f0f50eea73e0c43p+0L : inexact-ok += clog downward dbl-64 0x3.3b8f9163276acp-4 0xf.ab873d09e61e8p-4 : 0xb.1043b110252ep-60 0x1.5e0af46a0dc98p+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9163276acp-4 0xf.ab873d09e61e8p-4 : 0xb.1043b110252e8p-60 0x1.5e0af46a0dc98p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9163276acp-4 0xf.ab873d09e61e8p-4 : 0xb.1043b110252ep-60 0x1.5e0af46a0dc98p+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9163276acp-4 0xf.ab873d09e61e8p-4 : 0xb.1043b110252e8p-60 0x1.5e0af46a0dc99p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e785p-60L 0x1.5e0af46a0dc984aep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e786p-60L 0x1.5e0af46a0dc984bp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e785p-60L 0x1.5e0af46a0dc984aep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e786p-60L 0x1.5e0af46a0dc984bp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e785p-60L 0x1.5e0af46a0dc984aep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e786p-60L 0x1.5e0af46a0dc984bp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e785p-60L 0x1.5e0af46a0dc984aep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e786p-60L 0x1.5e0af46a0dc984bp+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e78599264094a0708p-60L 0x1.5e0af46a0dc984af7e201f8e392cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e78599264094a071p-60L 0x1.5e0af46a0dc984af7e201f8e392cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e78599264094a0708p-60L 0x1.5e0af46a0dc984af7e201f8e392cp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e78599264094a071p-60L 0x1.5e0af46a0dc984af7e201f8e392dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e78599264094a04p-60L 0x1.5e0af46a0dc984af7e201f8e39p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e78599264094a08p-60L 0x1.5e0af46a0dc984af7e201f8e39p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e78599264094a04p-60L 0x1.5e0af46a0dc984af7e201f8e39p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e8p-4L : 0xb.1043b110252e78599264094a08p-60L 0x1.5e0af46a0dc984af7e201f8e398p+0L : inexact-ok += clog downward dbl-64 0x3.3b8f9163276acp-4 0xf.ab873d09e61ep-4 : -0x7.24bf6373f0bc8p-56 0x1.5e0af46a0dc98p+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9163276acp-4 0xf.ab873d09e61ep-4 : -0x7.24bf6373f0bc8p-56 0x1.5e0af46a0dc98p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9163276acp-4 0xf.ab873d09e61ep-4 : -0x7.24bf6373f0bc4p-56 0x1.5e0af46a0dc98p+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9163276acp-4 0xf.ab873d09e61ep-4 : -0x7.24bf6373f0bc4p-56 0x1.5e0af46a0dc99p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b08p-56L 0x1.5e0af46a0dc9831p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b08p-56L 0x1.5e0af46a0dc98312p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6bp-56L 0x1.5e0af46a0dc9831p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6bp-56L 0x1.5e0af46a0dc98312p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b08p-56L 0x1.5e0af46a0dc9831p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b08p-56L 0x1.5e0af46a0dc98312p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6bp-56L 0x1.5e0af46a0dc9831p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6bp-56L 0x1.5e0af46a0dc98312p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b07bdd36553a6p-56L 0x1.5e0af46a0dc98311b6576dfa83c1p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b07bdd36553a6p-56L 0x1.5e0af46a0dc98311b6576dfa83c2p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b07bdd36553a5fcp-56L 0x1.5e0af46a0dc98311b6576dfa83c1p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b07bdd36553a5fcp-56L 0x1.5e0af46a0dc98311b6576dfa83c2p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b07bdd36553a6p-56L 0x1.5e0af46a0dc98311b6576dfa838p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b07bdd36553a6p-56L 0x1.5e0af46a0dc98311b6576dfa84p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b07bdd36553a4p-56L 0x1.5e0af46a0dc98311b6576dfa838p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61ep-4L : -0x7.24bf6373f0bc6b07bdd36553a4p-56L 0x1.5e0af46a0dc98311b6576dfa84p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bfp-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bfp-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bfp-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bf8p-60L 0x1.5e0af46a0dc9849cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bfp-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bfp-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bfp-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bf8p-60L 0x1.5e0af46a0dc9849cp+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bf0ec6cc1167308p-60L 0x1.5e0af46a0dc9849a7afaee89b8f6p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bf0ec6cc1167308p-60L 0x1.5e0af46a0dc9849a7afaee89b8f7p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bf0ec6cc1167308p-60L 0x1.5e0af46a0dc9849a7afaee89b8f6p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bf0ec6cc116730cp-60L 0x1.5e0af46a0dc9849a7afaee89b8f7p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bf0ec6cc11672p-60L 0x1.5e0af46a0dc9849a7afaee89b88p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bf0ec6cc11674p-60L 0x1.5e0af46a0dc9849a7afaee89b9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bf0ec6cc11672p-60L 0x1.5e0af46a0dc9849a7afaee89b88p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e798p-4L : 0x4.b294c0441fb21bf0ec6cc11674p-60L 0x1.5e0af46a0dc9849a7afaee89b9p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8p-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8p-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8p-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd88p-60L 0x1.5e0af46a0dc9849cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8p-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8p-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8p-60L 0x1.5e0af46a0dc9849ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd88p-60L 0x1.5e0af46a0dc9849cp+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8098a37217e7p-60L 0x1.5e0af46a0dc9849a4741f573867fp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8098a37217e7p-60L 0x1.5e0af46a0dc9849a4741f573868p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8098a37217e7p-60L 0x1.5e0af46a0dc9849a4741f573867fp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8098a37217e704p-60L 0x1.5e0af46a0dc9849a4741f573868p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8098a37217e6p-60L 0x1.5e0af46a0dc9849a4741f57386p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8098a37217e8p-60L 0x1.5e0af46a0dc9849a4741f573868p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8098a37217e6p-60L 0x1.5e0af46a0dc9849a4741f57386p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797p-4L : 0x4.a2e9390715cbfd8098a37217e8p-60L 0x1.5e0af46a0dc9849a4741f573868p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x4.acdb8693fde1be3b808a62083bf4p-60L 0x1.5e0af46a0dc9849a68169e3a326ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x4.acdb8693fde1be3b808a62083bf8p-60L 0x1.5e0af46a0dc9849a68169e3a326ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x4.acdb8693fde1be3b808a62083bf4p-60L 0x1.5e0af46a0dc9849a68169e3a326ep+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x4.acdb8693fde1be3b808a62083bf8p-60L 0x1.5e0af46a0dc9849a68169e3a326fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x4.acdb8693fde1be3b808a62083ap-60L 0x1.5e0af46a0dc9849a68169e3a32p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x4.acdb8693fde1be3b808a62083cp-60L 0x1.5e0af46a0dc9849a68169e3a328p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x4.acdb8693fde1be3b808a62083ap-60L 0x1.5e0af46a0dc9849a68169e3a32p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276acp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0x4.acdb8693fde1be3b808a62083cp-60L 0x1.5e0af46a0dc9849a68169e3a328p+0L : inexact-ok += clog downward dbl-64 0x3.3b8f9163276aap-4 0xf.ab874p-4 : 0x2.e6777f8ca9d94p-28 0x1.5e0af473a0784p+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9163276aap-4 0xf.ab874p-4 : 0x2.e6777f8ca9d96p-28 0x1.5e0af473a0784p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9163276aap-4 0xf.ab874p-4 : 0x2.e6777f8ca9d94p-28 0x1.5e0af473a0784p+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9163276aap-4 0xf.ab874p-4 : 0x2.e6777f8ca9d96p-28 0x1.5e0af473a0785p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b5p-28L 0x1.5e0af473a078476p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b54p-28L 0x1.5e0af473a078476p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b5p-28L 0x1.5e0af473a078476p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b54p-28L 0x1.5e0af473a0784762p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b5p-28L 0x1.5e0af473a078476p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b54p-28L 0x1.5e0af473a078476p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b5p-28L 0x1.5e0af473a078476p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b54p-28L 0x1.5e0af473a0784762p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b53f74fd143174ep-28L 0x1.5e0af473a078476075158e95ec4cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b53f74fd143175p-28L 0x1.5e0af473a078476075158e95ec4cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b53f74fd143174ep-28L 0x1.5e0af473a078476075158e95ec4cp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b53f74fd143175p-28L 0x1.5e0af473a078476075158e95ec4dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b53f74fd14317p-28L 0x1.5e0af473a078476075158e95ecp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b53f74fd14317p-28L 0x1.5e0af473a078476075158e95ec8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b53f74fd14317p-28L 0x1.5e0af473a078476075158e95ecp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab874p-4L : 0x2.e6777f8ca9d95b53f74fd14318p-28L 0x1.5e0af473a078476075158e95ec8p+0L : inexact-ok += clog downward dbl-64 0x3.3b8f9163276aap-4 0xf.ab873p-4 : -0xc.c50fc21dd3498p-28 0x1.5e0af43fe77f1p+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9163276aap-4 0xf.ab873p-4 : -0xc.c50fc21dd3498p-28 0x1.5e0af43fe77f1p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9163276aap-4 0xf.ab873p-4 : -0xc.c50fc21dd349p-28 0x1.5e0af43fe77f1p+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9163276aap-4 0xf.ab873p-4 : -0xc.c50fc21dd349p-28 0x1.5e0af43fe77f2p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497dep-28L 0x1.5e0af43fe77f1146p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497dep-28L 0x1.5e0af43fe77f1146p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddp-28L 0x1.5e0af43fe77f1146p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddp-28L 0x1.5e0af43fe77f1148p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497dep-28L 0x1.5e0af43fe77f1146p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497dep-28L 0x1.5e0af43fe77f1146p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddp-28L 0x1.5e0af43fe77f1146p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddp-28L 0x1.5e0af43fe77f1148p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddd14075a2f0bc8p-28L 0x1.5e0af43fe77f11465f905e7575fcp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddd14075a2f0bc8p-28L 0x1.5e0af43fe77f11465f905e7575fdp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddd14075a2f0bcp-28L 0x1.5e0af43fe77f11465f905e7575fcp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddd14075a2f0bcp-28L 0x1.5e0af43fe77f11465f905e7575fdp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddd14075a2f0cp-28L 0x1.5e0af43fe77f11465f905e75758p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddd14075a2f0cp-28L 0x1.5e0af43fe77f11465f905e7576p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddd14075a2f08p-28L 0x1.5e0af43fe77f11465f905e75758p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873p-4L : -0xc.c50fc21dd3497ddd14075a2f08p-28L 0x1.5e0af43fe77f11465f905e7576p+0L : inexact-ok += clog downward dbl-64 0x3.3b8f9163276aap-4 0xf.ab873d09e61e8p-4 : 0x4.99248e49d659p-60 0x1.5e0af46a0dc98p+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9163276aap-4 0xf.ab873d09e61e8p-4 : 0x4.99248e49d659p-60 0x1.5e0af46a0dc98p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9163276aap-4 0xf.ab873d09e61e8p-4 : 0x4.99248e49d659p-60 0x1.5e0af46a0dc98p+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9163276aap-4 0xf.ab873d09e61e8p-4 : 0x4.99248e49d6594p-60 0x1.5e0af46a0dc99p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591ea8p-60L 0x1.5e0af46a0dc986a4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591ebp-60L 0x1.5e0af46a0dc986a4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591ea8p-60L 0x1.5e0af46a0dc986a4p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591ebp-60L 0x1.5e0af46a0dc986a6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591ea8p-60L 0x1.5e0af46a0dc986a4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591ebp-60L 0x1.5e0af46a0dc986a4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591ea8p-60L 0x1.5e0af46a0dc986a4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591ebp-60L 0x1.5e0af46a0dc986a6p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591eadb3ed664b726p-60L 0x1.5e0af46a0dc986a4ef07c0cafcfap+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591eadb3ed664b7264p-60L 0x1.5e0af46a0dc986a4ef07c0cafcfap+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591eadb3ed664b726p-60L 0x1.5e0af46a0dc986a4ef07c0cafcfap+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591eadb3ed664b7264p-60L 0x1.5e0af46a0dc986a4ef07c0cafcfbp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591eadb3ed664b72p-60L 0x1.5e0af46a0dc986a4ef07c0cafc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591eadb3ed664b72p-60L 0x1.5e0af46a0dc986a4ef07c0cafdp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591eadb3ed664b72p-60L 0x1.5e0af46a0dc986a4ef07c0cafc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e8p-4L : 0x4.99248e49d6591eadb3ed664b74p-60L 0x1.5e0af46a0dc986a4ef07c0cafdp+0L : inexact-ok += clog downward dbl-64 0x3.3b8f9163276aap-4 0xf.ab873d09e61ep-4 : -0x7.8c3155a055aap-56 0x1.5e0af46a0dc98p+0 : inexact-ok += clog tonearest dbl-64 0x3.3b8f9163276aap-4 0xf.ab873d09e61ep-4 : -0x7.8c3155a055a9cp-56 0x1.5e0af46a0dc98p+0 : inexact-ok += clog towardzero dbl-64 0x3.3b8f9163276aap-4 0xf.ab873d09e61ep-4 : -0x7.8c3155a055a9cp-56 0x1.5e0af46a0dc98p+0 : inexact-ok += clog upward dbl-64 0x3.3b8f9163276aap-4 0xf.ab873d09e61ep-4 : -0x7.8c3155a055a9cp-56 0x1.5e0af46a0dc99p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f8p-56L 0x1.5e0af46a0dc98506p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f8p-56L 0x1.5e0af46a0dc98508p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6fp-56L 0x1.5e0af46a0dc98506p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6fp-56L 0x1.5e0af46a0dc98508p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f8p-56L 0x1.5e0af46a0dc98506p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f8p-56L 0x1.5e0af46a0dc98508p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6fp-56L 0x1.5e0af46a0dc98506p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6fp-56L 0x1.5e0af46a0dc98508p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f778adedf0fe1cp-56L 0x1.5e0af46a0dc98507273f0f37479ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f778adedf0fe1cp-56L 0x1.5e0af46a0dc98507273f0f37479fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f778adedf0fe18p-56L 0x1.5e0af46a0dc98507273f0f37479ep+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f778adedf0fe18p-56L 0x1.5e0af46a0dc98507273f0f37479fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f778adedf1p-56L 0x1.5e0af46a0dc98507273f0f37478p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f778adedf0fep-56L 0x1.5e0af46a0dc98507273f0f37478p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f778adedf0fep-56L 0x1.5e0af46a0dc98507273f0f37478p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61ep-4L : -0x7.8c3155a055a9c6f778adedf0fep-56L 0x1.5e0af46a0dc98507273f0f3748p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342ep-60L 0x1.5e0af46a0dc9868ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342ep-60L 0x1.5e0af46a0dc9869p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dep-60L 0x1.5e0af46a0dc9868ep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dep-60L 0x1.5e0af46a0dc9869p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342ep-60L 0x1.5e0af46a0dc9868ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342ep-60L 0x1.5e0af46a0dc9869p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dep-60L 0x1.5e0af46a0dc9868ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dep-60L 0x1.5e0af46a0dc9869p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dfff8f6aa10b75p-60L 0x1.5e0af46a0dc9868febe28fc67cc5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dfff8f6aa10b74p-60L 0x1.5e0af46a0dc9868febe28fc67cc5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dfff8f6aa10b74p-60L 0x1.5e0af46a0dc9868febe28fc67cc5p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dfff8f6aa10b74p-60L 0x1.5e0af46a0dc9868febe28fc67cc6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dfff8f6aa10b8p-60L 0x1.5e0af46a0dc9868febe28fc67c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dfff8f6aa10b8p-60L 0x1.5e0af46a0dc9868febe28fc67dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dfff8f6aa10bp-60L 0x1.5e0af46a0dc9868febe28fc67c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e798p-4L : -0x1.c48a62822f2342dfff8f6aa10bp-60L 0x1.5e0af46a0dc9868febe28fc67dp+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615ep-60L 0x1.5e0af46a0dc9868ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cp-60L 0x1.5e0af46a0dc9869p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cp-60L 0x1.5e0af46a0dc9868ep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cp-60L 0x1.5e0af46a0dc9869p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615ep-60L 0x1.5e0af46a0dc9868ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cp-60L 0x1.5e0af46a0dc9869p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cp-60L 0x1.5e0af46a0dc9868ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cp-60L 0x1.5e0af46a0dc9869p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cfd529fdc7259p-60L 0x1.5e0af46a0dc9868fb82996b04a4ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cfd529fdc7259p-60L 0x1.5e0af46a0dc9868fb82996b04a4fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cfd529fdc7258p-60L 0x1.5e0af46a0dc9868fb82996b04a4ep+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cfd529fdc7258p-60L 0x1.5e0af46a0dc9868fb82996b04a4fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cfd529fdc728p-60L 0x1.5e0af46a0dc9868fb82996b04ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cfd529fdc728p-60L 0x1.5e0af46a0dc9868fb82996b04a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cfd529fdc72p-60L 0x1.5e0af46a0dc9868fb82996b04ap+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797p-4L : -0x1.d435e9bf3909615cfd529fdc72p-60L 0x1.5e0af46a0dc9868fb82996b04a8p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x1.ca439c3250f3a09a0b968e853632p-60L 0x1.5e0af46a0dc9868fd8fe3f76f63dp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x1.ca439c3250f3a09a0b968e853632p-60L 0x1.5e0af46a0dc9868fd8fe3f76f63dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x1.ca439c3250f3a09a0b968e853631p-60L 0x1.5e0af46a0dc9868fd8fe3f76f63dp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x1.ca439c3250f3a09a0b968e853631p-60L 0x1.5e0af46a0dc9868fd8fe3f76f63ep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x1.ca439c3250f3a09a0b968e85368p-60L 0x1.5e0af46a0dc9868fd8fe3f76f6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x1.ca439c3250f3a09a0b968e8536p-60L 0x1.5e0af46a0dc9868fd8fe3f76f6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x1.ca439c3250f3a09a0b968e8536p-60L 0x1.5e0af46a0dc9868fd8fe3f76f6p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aap-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x1.ca439c3250f3a09a0b968e8536p-60L 0x1.5e0af46a0dc9868fd8fe3f76f68p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd5p-28L 0x1.5e0af473a07846d4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd54p-28L 0x1.5e0af473a07846d6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd5p-28L 0x1.5e0af473a07846d4p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd54p-28L 0x1.5e0af473a07846d6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd5p-28L 0x1.5e0af473a07846d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd54p-28L 0x1.5e0af473a07846d6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd5p-28L 0x1.5e0af473a07846d4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd54p-28L 0x1.5e0af473a07846d6p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd528ca6a314f25ap-28L 0x1.5e0af473a07846d562c56900ec38p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd528ca6a314f25ap-28L 0x1.5e0af473a07846d562c56900ec39p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd528ca6a314f25ap-28L 0x1.5e0af473a07846d562c56900ec38p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd528ca6a314f25cp-28L 0x1.5e0af473a07846d562c56900ec39p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd528ca6a314f2p-28L 0x1.5e0af473a07846d562c56900ecp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd528ca6a314f2p-28L 0x1.5e0af473a07846d562c56900ecp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd528ca6a314f2p-28L 0x1.5e0af473a07846d562c56900ecp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab874p-4L : 0x2.e6777f8e74e2fd528ca6a314f3p-28L 0x1.5e0af473a07846d562c56900ec8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd86p-28L 0x1.5e0af43fe77f10bap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd86p-28L 0x1.5e0af43fe77f10bcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85p-28L 0x1.5e0af43fe77f10bap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85p-28L 0x1.5e0af43fe77f10bcp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd86p-28L 0x1.5e0af43fe77f10bap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd86p-28L 0x1.5e0af43fe77f10bcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85p-28L 0x1.5e0af43fe77f10bap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85p-28L 0x1.5e0af43fe77f10bcp+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85b5a5e79579fa8p-28L 0x1.5e0af43fe77f10bb4d3fb67848bep+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85b5a5e79579fa8p-28L 0x1.5e0af43fe77f10bb4d3fb67848bfp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85b5a5e79579fap-28L 0x1.5e0af43fe77f10bb4d3fb67848bep+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85b5a5e79579fap-28L 0x1.5e0af43fe77f10bb4d3fb67848bfp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85b5a5e7957ap-28L 0x1.5e0af43fe77f10bb4d3fb678488p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85b5a5e7957ap-28L 0x1.5e0af43fe77f10bb4d3fb678488p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85b5a5e79579cp-28L 0x1.5e0af43fe77f10bb4d3fb678488p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873p-4L : -0xc.c50fc21c083fd85b5a5e79579cp-28L 0x1.5e0af43fe77f10bb4d3fb67849p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a8p-60L 0x1.5e0af46a0dc98618p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a8p-60L 0x1.5e0af46a0dc9861ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a8p-60L 0x1.5e0af46a0dc98618p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644bp-60L 0x1.5e0af46a0dc9861ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a8p-60L 0x1.5e0af46a0dc98618p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a8p-60L 0x1.5e0af46a0dc9861ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a8p-60L 0x1.5e0af46a0dc98618p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644bp-60L 0x1.5e0af46a0dc9861ap+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a88a1963dbeeacp-60L 0x1.5e0af46a0dc98619dcb7831322acp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a88a1963dbeebp-60L 0x1.5e0af46a0dc98619dcb7831322acp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a88a1963dbeeacp-60L 0x1.5e0af46a0dc98619dcb7831322acp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a88a1963dbeebp-60L 0x1.5e0af46a0dc98619dcb7831322adp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a88a1963dbeep-60L 0x1.5e0af46a0dc98619dcb78313228p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a88a1963dbeep-60L 0x1.5e0af46a0dc98619dcb78313228p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a88a1963dbeep-60L 0x1.5e0af46a0dc98619dcb78313228p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e8p-4L : 0x6.642e30eed63644a88a1963dbfp-60L 0x1.5e0af46a0dc98619dcb7831323p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d8p-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d8p-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2dp-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2dp-56L 0x1.5e0af46a0dc9847ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d8p-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d8p-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2dp-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2dp-56L 0x1.5e0af46a0dc9847ep+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d63923c0a79cap-56L 0x1.5e0af46a0dc9847c14eed17f6d4cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d63923c0a79cap-56L 0x1.5e0af46a0dc9847c14eed17f6d4cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d63923c0a79c9cp-56L 0x1.5e0af46a0dc9847c14eed17f6d4cp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d63923c0a79c9cp-56L 0x1.5e0af46a0dc9847c14eed17f6d4dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d63923c0a79ep-56L 0x1.5e0af46a0dc9847c14eed17f6dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d63923c0a79cp-56L 0x1.5e0af46a0dc9847c14eed17f6d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d63923c0a79cp-56L 0x1.5e0af46a0dc9847c14eed17f6dp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61ep-4L : -0x7.6f80bb7605abf2d63923c0a79cp-56L 0x1.5e0af46a0dc9847c14eed17f6d8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e48818p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4882p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e48818p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4882p-68L 0x1.5e0af46a0dc98606p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e48818p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4882p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e48818p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4882p-68L 0x1.5e0af46a0dc98606p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4881d5c9bdab9ac38p-68L 0x1.5e0af46a0dc98604d992520ea276p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4881d5c9bdab9ac3cp-68L 0x1.5e0af46a0dc98604d992520ea277p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4881d5c9bdab9ac38p-68L 0x1.5e0af46a0dc98604d992520ea276p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4881d5c9bdab9ac3cp-68L 0x1.5e0af46a0dc98604d992520ea277p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4881d5c9bdab9acp-68L 0x1.5e0af46a0dc98604d992520ea2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4881d5c9bdab9acp-68L 0x1.5e0af46a0dc98604d992520ea28p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4881d5c9bdab9acp-68L 0x1.5e0af46a0dc98604d992520ea2p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e798p-4L : 0x6.7f4022d0b9e4881d5c9bdab9aep-68L 0x1.5e0af46a0dc98604d992520ea28p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f16p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f16p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15p-68L 0x1.5e0af46a0dc98606p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f16p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f16p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15p-68L 0x1.5e0af46a0dc98606p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15d424a85cc852p-68L 0x1.5e0af46a0dc98604a5d958f87p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15d424a85cc8518p-68L 0x1.5e0af46a0dc98604a5d958f87p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15d424a85cc8518p-68L 0x1.5e0af46a0dc98604a5d958f87p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15d424a85cc8518p-68L 0x1.5e0af46a0dc98604a5d958f87001p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15d424a85cc88p-68L 0x1.5e0af46a0dc98604a5d958f87p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15d424a85cc84p-68L 0x1.5e0af46a0dc98604a5d958f87p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15d424a85cc84p-68L 0x1.5e0af46a0dc98604a5d958f87p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797p-4L : -0x9.2c471a392c39f15d424a85cc84p-68L 0x1.5e0af46a0dc98604a5d958f8708p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0xc.60672aee986cf59bfaa8de5832f8p-72L 0x1.5e0af46a0dc98604c6ae01bf1beep+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0xc.60672aee986cf59bfaa8de5833p-72L 0x1.5e0af46a0dc98604c6ae01bf1befp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0xc.60672aee986cf59bfaa8de5832f8p-72L 0x1.5e0af46a0dc98604c6ae01bf1beep+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0xc.60672aee986cf59bfaa8de5833p-72L 0x1.5e0af46a0dc98604c6ae01bf1befp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0xc.60672aee986cf59bfaa8de583p-72L 0x1.5e0af46a0dc98604c6ae01bf1b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0xc.60672aee986cf59bfaa8de5834p-72L 0x1.5e0af46a0dc98604c6ae01bf1cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0xc.60672aee986cf59bfaa8de583p-72L 0x1.5e0af46a0dc98604c6ae01bf1b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8ep-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : 0xc.60672aee986cf59bfaa8de5834p-72L 0x1.5e0af46a0dc98604c6ae01bf1cp+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196cp-28L 0x1.5e0af473a07846d4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414197p-28L 0x1.5e0af473a07846d6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196cp-28L 0x1.5e0af473a07846d4p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414197p-28L 0x1.5e0af473a07846d6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196cp-28L 0x1.5e0af473a07846d4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414197p-28L 0x1.5e0af473a07846d6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196cp-28L 0x1.5e0af473a07846d4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414197p-28L 0x1.5e0af473a07846d6p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196e7eddebb8f7fap-28L 0x1.5e0af473a07846d5a17385ea32fbp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196e7eddebb8f7fap-28L 0x1.5e0af473a07846d5a17385ea32fbp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196e7eddebb8f7fap-28L 0x1.5e0af473a07846d5a17385ea32fbp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196e7eddebb8f7fcp-28L 0x1.5e0af473a07846d5a17385ea32fcp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196e7eddebb8f7p-28L 0x1.5e0af473a07846d5a17385ea328p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196e7eddebb8f8p-28L 0x1.5e0af473a07846d5a17385ea33p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196e7eddebb8f7p-28L 0x1.5e0af473a07846d5a17385ea328p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab874p-4L : 0x2.e6777f8e7414196e7eddebb8f8p-28L 0x1.5e0af473a07846d5a17385ea33p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc5p-28L 0x1.5e0af43fe77f10bap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc4p-28L 0x1.5e0af43fe77f10bcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc4p-28L 0x1.5e0af43fe77f10bap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc4p-28L 0x1.5e0af43fe77f10bcp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc5p-28L 0x1.5e0af43fe77f10bap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc4p-28L 0x1.5e0af43fe77f10bcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc4p-28L 0x1.5e0af43fe77f10bap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc4p-28L 0x1.5e0af43fe77f10bcp+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc40fd666eecd9d8p-28L 0x1.5e0af43fe77f10bb8bedd39c55e5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc40fd666eecd9dp-28L 0x1.5e0af43fe77f10bb8bedd39c55e5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc40fd666eecd9dp-28L 0x1.5e0af43fe77f10bb8bedd39c55e5p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc40fd666eecd9dp-28L 0x1.5e0af43fe77f10bb8bedd39c55e6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc40fd666eecdcp-28L 0x1.5e0af43fe77f10bb8bedd39c558p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc40fd666eecd8p-28L 0x1.5e0af43fe77f10bb8bedd39c56p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc40fd666eecd8p-28L 0x1.5e0af43fe77f10bb8bedd39c558p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873p-4L : -0xc.c50fc21c090ebc40fd666eecd8p-28L 0x1.5e0af43fe77f10bb8bedd39c56p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69f8p-60L 0x1.5e0af46a0dc9861ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c6ap-60L 0x1.5e0af46a0dc9861ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69f8p-60L 0x1.5e0af46a0dc9861ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c6ap-60L 0x1.5e0af46a0dc9861cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69f8p-60L 0x1.5e0af46a0dc9861ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c6ap-60L 0x1.5e0af46a0dc9861ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69f8p-60L 0x1.5e0af46a0dc9861ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c6ap-60L 0x1.5e0af46a0dc9861cp+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69fef7d8a71bcf08p-60L 0x1.5e0af46a0dc9861a1b65a0074a44p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69fef7d8a71bcf0cp-60L 0x1.5e0af46a0dc9861a1b65a0074a45p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69fef7d8a71bcf08p-60L 0x1.5e0af46a0dc9861a1b65a0074a44p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69fef7d8a71bcf0cp-60L 0x1.5e0af46a0dc9861a1b65a0074a45p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69fef7d8a71bcep-60L 0x1.5e0af46a0dc9861a1b65a0074ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69fef7d8a71bdp-60L 0x1.5e0af46a0dc9861a1b65a0074a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69fef7d8a71bcep-60L 0x1.5e0af46a0dc9861a1b65a0074ap+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e8p-4L : 0x6.635f4d0a7d6c69fef7d8a71bdp-60L 0x1.5e0af46a0dc9861a1b65a0074a8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b389088p-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b38908p-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b38908p-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b38908p-56L 0x1.5e0af46a0dc9847ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b389088p-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b38908p-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b38908p-56L 0x1.5e0af46a0dc9847cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b38908p-56L 0x1.5e0af46a0dc9847ep+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b3890819ce76ad76c48p-56L 0x1.5e0af46a0dc9847c539cee7394e4p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b3890819ce76ad76c48p-56L 0x1.5e0af46a0dc9847c539cee7394e5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b3890819ce76ad76c44p-56L 0x1.5e0af46a0dc9847c539cee7394e4p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b3890819ce76ad76c44p-56L 0x1.5e0af46a0dc9847c539cee7394e5p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b3890819ce76ad76ep-56L 0x1.5e0af46a0dc9847c539cee73948p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b3890819ce76ad76cp-56L 0x1.5e0af46a0dc9847c539cee7395p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b3890819ce76ad76cp-56L 0x1.5e0af46a0dc9847c539cee73948p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61ep-4L : -0x7.6f8da9b44b3890819ce76ad76cp-56L 0x1.5e0af46a0dc9847c539cee7395p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009ddep-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde8p-68L 0x1.5e0af46a0dc98606p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009ddep-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde8p-68L 0x1.5e0af46a0dc98606p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009ddep-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde8p-68L 0x1.5e0af46a0dc98606p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009ddep-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde8p-68L 0x1.5e0af46a0dc98606p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde67a2e6982ecp-68L 0x1.5e0af46a0dc9860518406f02ca0fp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde67a2e6982ecp-68L 0x1.5e0af46a0dc9860518406f02ca0fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde67a2e6982ecp-68L 0x1.5e0af46a0dc9860518406f02ca0fp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde67a2e6982ec04p-68L 0x1.5e0af46a0dc9860518406f02ca1p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde67a2e6982ecp-68L 0x1.5e0af46a0dc9860518406f02cap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde67a2e6982ecp-68L 0x1.5e0af46a0dc9860518406f02cap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde67a2e6982ecp-68L 0x1.5e0af46a0dc9860518406f02cap+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e798p-4L : 0x5.b05c3e77f009dde67a2e6982eep-68L 0x1.5e0af46a0dc9860518406f02ca8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149bap-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b9p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b9p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b9p-68L 0x1.5e0af46a0dc98606p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149bap-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b9p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b9p-68L 0x1.5e0af46a0dc98604p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b9p-68L 0x1.5e0af46a0dc98606p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b95b9f733cae0bp-68L 0x1.5e0af46a0dc98604e48775ec9798p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b95b9f733cae0bp-68L 0x1.5e0af46a0dc98604e48775ec9799p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b95b9f733cae0a8p-68L 0x1.5e0af46a0dc98604e48775ec9798p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b95b9f733cae0a8p-68L 0x1.5e0af46a0dc98604e48775ec9799p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b95b9f733cae4p-68L 0x1.5e0af46a0dc98604e48775ec978p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b95b9f733caep-68L 0x1.5e0af46a0dc98604e48775ec978p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b95b9f733caep-68L 0x1.5e0af46a0dc98604e48775ec978p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797p-4L : -0x9.fb2afe91f6149b95b9f733caep-68L 0x1.5e0af46a0dc98604e48775ec98p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x8.dd71a9e053daddb6c77bebfb7fa8p-76L 0x1.5e0af46a0dc98605055c1eb34387p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x8.dd71a9e053daddb6c77bebfb7fap-76L 0x1.5e0af46a0dc98605055c1eb34387p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x8.dd71a9e053daddb6c77bebfb7fap-76L 0x1.5e0af46a0dc98605055c1eb34387p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x8.dd71a9e053daddb6c77bebfb7fap-76L 0x1.5e0af46a0dc98605055c1eb34388p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x8.dd71a9e053daddb6c77bebfb8p-76L 0x1.5e0af46a0dc98605055c1eb3438p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x8.dd71a9e053daddb6c77bebfb8p-76L 0x1.5e0af46a0dc98605055c1eb3438p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x8.dd71a9e053daddb6c77bebfb7cp-76L 0x1.5e0af46a0dc98605055c1eb3438p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dcp-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x8.dd71a9e053daddb6c77bebfb7cp-76L 0x1.5e0af46a0dc98605055c1eb344p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab874p-4L : 0x2.e6777f8e741cf6e02587803acac6p-28L 0x1.5e0af473a07846d59ec3f70861dfp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab874p-4L : 0x2.e6777f8e741cf6e02587803acac8p-28L 0x1.5e0af473a07846d59ec3f70861ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab874p-4L : 0x2.e6777f8e741cf6e02587803acac6p-28L 0x1.5e0af473a07846d59ec3f70861dfp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab874p-4L : 0x2.e6777f8e741cf6e02587803acac8p-28L 0x1.5e0af473a07846d59ec3f70861ep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab874p-4L : 0x2.e6777f8e741cf6e02587803acap-28L 0x1.5e0af473a07846d59ec3f708618p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab874p-4L : 0x2.e6777f8e741cf6e02587803acbp-28L 0x1.5e0af473a07846d59ec3f70862p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab874p-4L : 0x2.e6777f8e741cf6e02587803acap-28L 0x1.5e0af473a07846d59ec3f708618p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab874p-4L : 0x2.e6777f8e741cf6e02587803acbp-28L 0x1.5e0af473a07846d59ec3f70862p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873p-4L : -0xc.c50fc21c0905decf455f92029b1p-28L 0x1.5e0af43fe77f10bb893e44b8001p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873p-4L : -0xc.c50fc21c0905decf455f92029b08p-28L 0x1.5e0af43fe77f10bb893e44b80011p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873p-4L : -0xc.c50fc21c0905decf455f92029b08p-28L 0x1.5e0af43fe77f10bb893e44b8001p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873p-4L : -0xc.c50fc21c0905decf455f92029b08p-28L 0x1.5e0af43fe77f10bb893e44b80011p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873p-4L : -0xc.c50fc21c0905decf455f92029cp-28L 0x1.5e0af43fe77f10bb893e44b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873p-4L : -0xc.c50fc21c0905decf455f92029cp-28L 0x1.5e0af43fe77f10bb893e44b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873p-4L : -0xc.c50fc21c0905decf455f920298p-28L 0x1.5e0af43fe77f10bb893e44b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873p-4L : -0xc.c50fc21c0905decf455f920298p-28L 0x1.5e0af43fe77f10bb893e44b8008p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e8p-4L : 0x6.63682a7c274cbdd9ce7b318be2c4p-60L 0x1.5e0af46a0dc9861a18b6112501d5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e8p-4L : 0x6.63682a7c274cbdd9ce7b318be2c8p-60L 0x1.5e0af46a0dc9861a18b6112501d5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e8p-4L : 0x6.63682a7c274cbdd9ce7b318be2c4p-60L 0x1.5e0af46a0dc9861a18b6112501d5p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e8p-4L : 0x6.63682a7c274cbdd9ce7b318be2c8p-60L 0x1.5e0af46a0dc9861a18b6112501d6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e8p-4L : 0x6.63682a7c274cbdd9ce7b318be2p-60L 0x1.5e0af46a0dc9861a18b61125018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e8p-4L : 0x6.63682a7c274cbdd9ce7b318be2p-60L 0x1.5e0af46a0dc9861a18b6112502p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e8p-4L : 0x6.63682a7c274cbdd9ce7b318be2p-60L 0x1.5e0af46a0dc9861a18b61125018p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e8p-4L : 0x6.63682a7c274cbdd9ce7b318be4p-60L 0x1.5e0af46a0dc9861a18b6112502p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61ep-4L : -0x7.6f8d1bdd309a8b43e6ce9e04206cp-56L 0x1.5e0af46a0dc9847c50ed5f914c75p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61ep-4L : -0x7.6f8d1bdd309a8b43e6ce9e042068p-56L 0x1.5e0af46a0dc9847c50ed5f914c75p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61ep-4L : -0x7.6f8d1bdd309a8b43e6ce9e042068p-56L 0x1.5e0af46a0dc9847c50ed5f914c75p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61ep-4L : -0x7.6f8d1bdd309a8b43e6ce9e042068p-56L 0x1.5e0af46a0dc9847c50ed5f914c76p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61ep-4L : -0x7.6f8d1bdd309a8b43e6ce9e0422p-56L 0x1.5e0af46a0dc9847c50ed5f914cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61ep-4L : -0x7.6f8d1bdd309a8b43e6ce9e042p-56L 0x1.5e0af46a0dc9847c50ed5f914c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61ep-4L : -0x7.6f8d1bdd309a8b43e6ce9e042p-56L 0x1.5e0af46a0dc9847c50ed5f914cp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61ep-4L : -0x7.6f8d1bdd309a8b43e6ce9e042p-56L 0x1.5e0af46a0dc9847c50ed5f914c8p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e798p-4L : 0x5.b939b021d05db8c42a9e3d934bdp-68L 0x1.5e0af46a0dc986051590e020819fp+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e798p-4L : 0x5.b939b021d05db8c42a9e3d934bd4p-68L 0x1.5e0af46a0dc986051590e02081ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e798p-4L : 0x5.b939b021d05db8c42a9e3d934bdp-68L 0x1.5e0af46a0dc986051590e020819fp+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e798p-4L : 0x5.b939b021d05db8c42a9e3d934bd4p-68L 0x1.5e0af46a0dc986051590e02081ap+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e798p-4L : 0x5.b939b021d05db8c42a9e3d934ap-68L 0x1.5e0af46a0dc986051590e020818p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e798p-4L : 0x5.b939b021d05db8c42a9e3d934cp-68L 0x1.5e0af46a0dc986051590e020818p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e798p-4L : 0x5.b939b021d05db8c42a9e3d934ap-68L 0x1.5e0af46a0dc986051590e020818p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e798p-4L : 0x5.b939b021d05db8c42a9e3d934cp-68L 0x1.5e0af46a0dc986051590e02082p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797p-4L : -0x9.f24d8ce815c0c0b7f82a1761ebap-68L 0x1.5e0af46a0dc98604e1d7e70a4f29p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797p-4L : -0x9.f24d8ce815c0c0b7f82a1761eb98p-68L 0x1.5e0af46a0dc98604e1d7e70a4f29p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797p-4L : -0x9.f24d8ce815c0c0b7f82a1761eb98p-68L 0x1.5e0af46a0dc98604e1d7e70a4f29p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797p-4L : -0x9.f24d8ce815c0c0b7f82a1761eb98p-68L 0x1.5e0af46a0dc98604e1d7e70a4f2ap+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797p-4L : -0x9.f24d8ce815c0c0b7f82a1761ecp-68L 0x1.5e0af46a0dc98604e1d7e70a4fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797p-4L : -0x9.f24d8ce815c0c0b7f82a1761ecp-68L 0x1.5e0af46a0dc98604e1d7e70a4fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797p-4L : -0x9.f24d8ce815c0c0b7f82a1761e8p-68L 0x1.5e0af46a0dc98604e1d7e70a4fp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797p-4L : -0x9.f24d8ce815c0c0b7f82a1761e8p-68L 0x1.5e0af46a0dc98604e1d7e70a4f8p+0L : inexact-ok += clog downward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x5.ep-208L 0x1.5e0af46a0dc9860502ac8fd0fb17p+0L : inexact-ok += clog tonearest ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x5.ep-208L 0x1.5e0af46a0dc9860502ac8fd0fb18p+0L : inexact-ok += clog towardzero ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x5.dffffffffffffffffffffffffffcp-208L 0x1.5e0af46a0dc9860502ac8fd0fb17p+0L : inexact-ok += clog upward ldbl-128 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x5.dffffffffffffffffffffffffffcp-208L 0x1.5e0af46a0dc9860502ac8fd0fb18p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x5.ep-208L 0x1.5e0af46a0dc9860502ac8fd0fbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x5.ep-208L 0x1.5e0af46a0dc9860502ac8fd0fbp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x5.dffffffffffffffffffffffffep-208L 0x1.5e0af46a0dc9860502ac8fd0fbp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.3b8f9163276aa8dc2be0945a6p-4L 0xf.ab873d09e61e797a27ebc9f508p-4L : -0x5.dffffffffffffffffffffffffep-208L 0x1.5e0af46a0dc9860502ac8fd0fb8p+0L : inexact-ok +clog 0x15d8ab6ed05ca514086ac3a1e84p-105 0x1761e480aa094c0b10b34b09ce9p-105 += clog downward flt-32 0xa.ec55cp-4f 0xb.b0f25p-4f : 0x1.150a32p-24f 0xd.1c0afp-4f : inexact-ok += clog tonearest flt-32 0xa.ec55cp-4f 0xb.b0f25p-4f : 0x1.150a34p-24f 0xd.1c0bp-4f : inexact-ok += clog towardzero flt-32 0xa.ec55cp-4f 0xb.b0f25p-4f : 0x1.150a32p-24f 0xd.1c0afp-4f : inexact-ok += clog upward flt-32 0xa.ec55cp-4f 0xb.b0f25p-4f : 0x1.150a34p-24f 0xd.1c0bp-4f : inexact-ok += clog downward dbl-64 0xa.ec55cp-4 0xb.b0f25p-4 : 0x1.150a335430ebap-24 0xd.1c0afee704dd8p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55cp-4 0xb.b0f25p-4 : 0x1.150a335430ebbp-24 0xd.1c0afee704dep-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55cp-4 0xb.b0f25p-4 : 0x1.150a335430ebap-24 0xd.1c0afee704dd8p-4 : inexact-ok += clog upward dbl-64 0xa.ec55cp-4 0xb.b0f25p-4 : 0x1.150a335430ebbp-24 0xd.1c0afee704dep-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab74p-24L 0xd.1c0afee704ddd7ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab74p-24L 0xd.1c0afee704ddd7ap-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab74p-24L 0xd.1c0afee704ddd7ap-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab76p-24L 0xd.1c0afee704ddd7bp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab74p-24L 0xd.1c0afee704ddd7ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab74p-24L 0xd.1c0afee704ddd7ap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab74p-24L 0xd.1c0afee704ddd7ap-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab76p-24L 0xd.1c0afee704ddd7bp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab7496dfa13a9febp-24L 0xd.1c0afee704ddd7a44b2361b1188p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab7496dfa13a9febp-24L 0xd.1c0afee704ddd7a44b2361b11888p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab7496dfa13a9febp-24L 0xd.1c0afee704ddd7a44b2361b1188p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab7496dfa13a9fecp-24L 0xd.1c0afee704ddd7a44b2361b11888p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab7496dfa13a9f8p-24L 0xd.1c0afee704ddd7a44b2361b118p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab7496dfa13aap-24L 0xd.1c0afee704ddd7a44b2361b118p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab7496dfa13a9f8p-24L 0xd.1c0afee704ddd7a44b2361b118p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f25p-4L : 0x1.150a335430ebab7496dfa13aap-24L 0xd.1c0afee704ddd7a44b2361b11cp-4L : inexact-ok += clog downward flt-32 0xa.ec55cp-4f 0xb.b0f24p-4f : 0x5.9fb0f8p-28f 0xd.1c0afp-4f : inexact-ok += clog tonearest flt-32 0xa.ec55cp-4f 0xb.b0f24p-4f : 0x5.9fb1p-28f 0xd.1c0afp-4f : inexact-ok += clog towardzero flt-32 0xa.ec55cp-4f 0xb.b0f24p-4f : 0x5.9fb0f8p-28f 0xd.1c0afp-4f : inexact-ok += clog upward flt-32 0xa.ec55cp-4f 0xb.b0f24p-4f : 0x5.9fb1p-28f 0xd.1c0bp-4f : inexact-ok += clog downward dbl-64 0xa.ec55cp-4 0xb.b0f24p-4 : 0x5.9fb0fe05f78b4p-28 0xd.1c0af3faaf2d8p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55cp-4 0xb.b0f24p-4 : 0x5.9fb0fe05f78b8p-28 0xd.1c0af3faaf2d8p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55cp-4 0xb.b0f24p-4 : 0x5.9fb0fe05f78b4p-28 0xd.1c0af3faaf2d8p-4 : inexact-ok += clog upward dbl-64 0xa.ec55cp-4 0xb.b0f24p-4 : 0x5.9fb0fe05f78b8p-28 0xd.1c0af3faaf2ep-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b671p-28L 0xd.1c0af3faaf2d80ap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6718p-28L 0xd.1c0af3faaf2d80bp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b671p-28L 0xd.1c0af3faaf2d80ap-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6718p-28L 0xd.1c0af3faaf2d80bp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b671p-28L 0xd.1c0af3faaf2d80ap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6718p-28L 0xd.1c0af3faaf2d80bp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b671p-28L 0xd.1c0af3faaf2d80ap-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6718p-28L 0xd.1c0af3faaf2d80bp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6716f33773ca4148p-28L 0xd.1c0af3faaf2d80aca915b2fdda18p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6716f33773ca414cp-28L 0xd.1c0af3faaf2d80aca915b2fdda2p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6716f33773ca4148p-28L 0xd.1c0af3faaf2d80aca915b2fdda18p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6716f33773ca414cp-28L 0xd.1c0af3faaf2d80aca915b2fdda2p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6716f33773ca4p-28L 0xd.1c0af3faaf2d80aca915b2fdd8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6716f33773ca42p-28L 0xd.1c0af3faaf2d80aca915b2fddcp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6716f33773ca4p-28L 0xd.1c0af3faaf2d80aca915b2fdd8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f24p-4L : 0x5.9fb0fe05f78b6716f33773ca42p-28L 0xd.1c0af3faaf2d80aca915b2fddcp-4L : inexact-ok += clog downward dbl-64 0xa.ec55cp-4 0xb.b0f2405504a68p-4 : 0x5.ddd06ab4256f4p-28 0xd.1c0af434b9e18p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55cp-4 0xb.b0f2405504a68p-4 : 0x5.ddd06ab4256f4p-28 0xd.1c0af434b9e18p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55cp-4 0xb.b0f2405504a68p-4 : 0x5.ddd06ab4256f4p-28 0xd.1c0af434b9e18p-4 : inexact-ok += clog upward dbl-64 0xa.ec55cp-4 0xb.b0f2405504a68p-4 : 0x5.ddd06ab4256f8p-28 0xd.1c0af434b9e2p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f78p-28L 0xd.1c0af434b9e1a3cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f78p-28L 0xd.1c0af434b9e1a3dp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f78p-28L 0xd.1c0af434b9e1a3cp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f8p-28L 0xd.1c0af434b9e1a3dp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f78p-28L 0xd.1c0af434b9e1a3cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f78p-28L 0xd.1c0af434b9e1a3dp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f78p-28L 0xd.1c0af434b9e1a3cp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f8p-28L 0xd.1c0af434b9e1a3dp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f7b0102dfdbb988p-28L 0xd.1c0af434b9e1a3ca5a1d1024705p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f7b0102dfdbb98cp-28L 0xd.1c0af434b9e1a3ca5a1d1024705p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f7b0102dfdbb988p-28L 0xd.1c0af434b9e1a3ca5a1d1024705p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f7b0102dfdbb98cp-28L 0xd.1c0af434b9e1a3ca5a1d10247058p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f7b0102dfdbb8p-28L 0xd.1c0af434b9e1a3ca5a1d10247p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f7b0102dfdbbap-28L 0xd.1c0af434b9e1a3ca5a1d10247p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f7b0102dfdbb8p-28L 0xd.1c0af434b9e1a3ca5a1d10247p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a68p-4L : 0x5.ddd06ab4256f5f7b0102dfdbbap-28L 0xd.1c0af434b9e1a3ca5a1d102474p-4L : inexact-ok += clog downward dbl-64 0xa.ec55cp-4 0xb.b0f2405504a6p-4 : 0x5.ddd06a569ddd8p-28 0xd.1c0af434b9e1p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55cp-4 0xb.b0f2405504a6p-4 : 0x5.ddd06a569dddcp-28 0xd.1c0af434b9e18p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55cp-4 0xb.b0f2405504a6p-4 : 0x5.ddd06a569ddd8p-28 0xd.1c0af434b9e1p-4 : inexact-ok += clog upward dbl-64 0xa.ec55cp-4 0xb.b0f2405504a6p-4 : 0x5.ddd06a569dddcp-28 0xd.1c0af434b9e18p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168p-28L 0xd.1c0af434b9e14c6p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168p-28L 0xd.1c0af434b9e14c6p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168p-28L 0xd.1c0af434b9e14c6p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda17p-28L 0xd.1c0af434b9e14c7p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168p-28L 0xd.1c0af434b9e14c6p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168p-28L 0xd.1c0af434b9e14c6p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168p-28L 0xd.1c0af434b9e14c6p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda17p-28L 0xd.1c0af434b9e14c7p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168dcbd1c9994ccp-28L 0xd.1c0af434b9e14c67ac5d24bbb0c8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168dcbd1c9994dp-28L 0xd.1c0af434b9e14c67ac5d24bbb0dp-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168dcbd1c9994ccp-28L 0xd.1c0af434b9e14c67ac5d24bbb0c8p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168dcbd1c9994dp-28L 0xd.1c0af434b9e14c67ac5d24bbb0dp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168dcbd1c9994p-28L 0xd.1c0af434b9e14c67ac5d24bbbp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168dcbd1c9994p-28L 0xd.1c0af434b9e14c67ac5d24bbbp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168dcbd1c9994p-28L 0xd.1c0af434b9e14c67ac5d24bbbp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6p-4L : 0x5.ddd06a569ddda168dcbd1c9996p-28L 0xd.1c0af434b9e14c67ac5d24bbb4p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6c8p-28L 0xd.1c0af434b9e1503p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6c8p-28L 0xd.1c0af434b9e1503p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6c8p-28L 0xd.1c0af434b9e1503p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6dp-28L 0xd.1c0af434b9e1504p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6c8p-28L 0xd.1c0af434b9e1503p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6c8p-28L 0xd.1c0af434b9e1503p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6c8p-28L 0xd.1c0af434b9e1503p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6dp-28L 0xd.1c0af434b9e1504p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6cb6690a6277a64p-28L 0xd.1c0af434b9e15033d62a1bd69e3p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6cb6690a6277a68p-28L 0xd.1c0af434b9e15033d62a1bd69e38p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6cb6690a6277a64p-28L 0xd.1c0af434b9e15033d62a1bd69e3p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6cb6690a6277a68p-28L 0xd.1c0af434b9e15033d62a1bd69e38p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6cb6690a6277ap-28L 0xd.1c0af434b9e15033d62a1bd69cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6cb6690a6277ap-28L 0xd.1c0af434b9e15033d62a1bd6ap-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6cb6690a6277ap-28L 0xd.1c0af434b9e15033d62a1bd69cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6059p-4L : 0x5.ddd06a5aae61d6cb6690a6277cp-28L 0xd.1c0af434b9e15033d62a1bd6ap-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e49p-28L 0xd.1c0af434b9e1502p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e49p-28L 0xd.1c0af434b9e1503p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e49p-28L 0xd.1c0af434b9e1502p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e498p-28L 0xd.1c0af434b9e1503p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e49p-28L 0xd.1c0af434b9e1502p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e49p-28L 0xd.1c0af434b9e1503p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e49p-28L 0xd.1c0af434b9e1502p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e498p-28L 0xd.1c0af434b9e1503p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e493a44c1d6b1aa4p-28L 0xd.1c0af434b9e15028e9d463d93118p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e493a44c1d6b1aa4p-28L 0xd.1c0af434b9e15028e9d463d9312p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e493a44c1d6b1aa4p-28L 0xd.1c0af434b9e15028e9d463d93118p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e493a44c1d6b1aa8p-28L 0xd.1c0af434b9e15028e9d463d9312p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e493a44c1d6b1ap-28L 0xd.1c0af434b9e15028e9d463d93p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e493a44c1d6b1ap-28L 0xd.1c0af434b9e15028e9d463d93p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e493a44c1d6b1ap-28L 0xd.1c0af434b9e15028e9d463d93p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6058p-4L : 0x5.ddd06a5aa2b0e493a44c1d6b1cp-28L 0xd.1c0af434b9e15028e9d463d934p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.ddd06a5aa8cadee4ba4393ae59ap-28L 0xd.1c0af434b9e1502e9d32dc96fb2p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.ddd06a5aa8cadee4ba4393ae59a4p-28L 0xd.1c0af434b9e1502e9d32dc96fb28p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.ddd06a5aa8cadee4ba4393ae59ap-28L 0xd.1c0af434b9e1502e9d32dc96fb2p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55cp-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.ddd06a5aa8cadee4ba4393ae59a4p-28L 0xd.1c0af434b9e1502e9d32dc96fb28p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.ddd06a5aa8cadee4ba4393ae58p-28L 0xd.1c0af434b9e1502e9d32dc96f8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.ddd06a5aa8cadee4ba4393ae5ap-28L 0xd.1c0af434b9e1502e9d32dc96fcp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.ddd06a5aa8cadee4ba4393ae58p-28L 0xd.1c0af434b9e1502e9d32dc96f8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55cp-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.ddd06a5aa8cadee4ba4393ae5ap-28L 0xd.1c0af434b9e1502e9d32dc96fcp-4L : inexact-ok += clog downward flt-32 0xa.ec55bp-4f 0xb.b0f25p-4f : 0x6.644d88p-28f 0xd.1c0bp-4f : inexact-ok += clog tonearest flt-32 0xa.ec55bp-4f 0xb.b0f25p-4f : 0x6.644d9p-28f 0xd.1c0b1p-4f : inexact-ok += clog towardzero flt-32 0xa.ec55bp-4f 0xb.b0f25p-4f : 0x6.644d88p-28f 0xd.1c0bp-4f : inexact-ok += clog upward flt-32 0xa.ec55bp-4f 0xb.b0f25p-4f : 0x6.644d9p-28f 0xd.1c0b1p-4f : inexact-ok += clog downward dbl-64 0xa.ec55bp-4 0xb.b0f25p-4 : 0x6.644d8d72510a4p-28 0xd.1c0b0a97f71c8p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55bp-4 0xb.b0f25p-4 : 0x6.644d8d72510a4p-28 0xd.1c0b0a97f71c8p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55bp-4 0xb.b0f25p-4 : 0x6.644d8d72510a4p-28 0xd.1c0b0a97f71c8p-4 : inexact-ok += clog upward dbl-64 0xa.ec55bp-4 0xb.b0f25p-4 : 0x6.644d8d72510a8p-28 0xd.1c0b0a97f71dp-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3p-28L 0xd.1c0b0a97f71c851p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3p-28L 0xd.1c0b0a97f71c851p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3p-28L 0xd.1c0b0a97f71c851p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c38p-28L 0xd.1c0b0a97f71c852p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3p-28L 0xd.1c0b0a97f71c851p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3p-28L 0xd.1c0b0a97f71c851p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3p-28L 0xd.1c0b0a97f71c851p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c38p-28L 0xd.1c0b0a97f71c852p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3048809492b9f4p-28L 0xd.1c0b0a97f71c8511738651adda78p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3048809492b9f8p-28L 0xd.1c0b0a97f71c8511738651adda8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3048809492b9f4p-28L 0xd.1c0b0a97f71c8511738651adda78p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3048809492b9f8p-28L 0xd.1c0b0a97f71c8511738651adda8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3048809492b8p-28L 0xd.1c0b0a97f71c8511738651add8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3048809492bap-28L 0xd.1c0b0a97f71c8511738651addcp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3048809492b8p-28L 0xd.1c0b0a97f71c8511738651add8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f25p-4L : 0x6.644d8d72510a5c3048809492bap-28L 0xd.1c0b0a97f71c8511738651addcp-4L : inexact-ok += clog downward flt-32 0xa.ec55bp-4f 0xb.b0f24p-4f : -0x5.4ca4cp-28f 0xd.1c0afp-4f : inexact-ok += clog tonearest flt-32 0xa.ec55bp-4f 0xb.b0f24p-4f : -0x5.4ca4b8p-28f 0xd.1c0bp-4f : inexact-ok += clog towardzero flt-32 0xa.ec55bp-4f 0xb.b0f24p-4f : -0x5.4ca4b8p-28f 0xd.1c0afp-4f : inexact-ok += clog upward flt-32 0xa.ec55bp-4f 0xb.b0f24p-4f : -0x5.4ca4b8p-28f 0xd.1c0bp-4f : inexact-ok += clog downward dbl-64 0xa.ec55bp-4 0xb.b0f24p-4 : -0x5.4ca4b9c156174p-28 0xd.1c0affaba16dp-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55bp-4 0xb.b0f24p-4 : -0x5.4ca4b9c156174p-28 0xd.1c0affaba16d8p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55bp-4 0xb.b0f24p-4 : -0x5.4ca4b9c15617p-28 0xd.1c0affaba16dp-4 : inexact-ok += clog upward dbl-64 0xa.ec55bp-4 0xb.b0f24p-4 : -0x5.4ca4b9c15617p-28 0xd.1c0affaba16d8p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a38p-28L 0xd.1c0affaba16d43fp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a3p-28L 0xd.1c0affaba16d44p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a3p-28L 0xd.1c0affaba16d43fp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a3p-28L 0xd.1c0affaba16d44p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a38p-28L 0xd.1c0affaba16d43fp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a3p-28L 0xd.1c0affaba16d44p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a3p-28L 0xd.1c0affaba16d43fp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a3p-28L 0xd.1c0affaba16d44p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a335c235fb642f4p-28L 0xd.1c0affaba16d43fdcadcca44f148p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a335c235fb642fp-28L 0xd.1c0affaba16d43fdcadcca44f148p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a335c235fb642fp-28L 0xd.1c0affaba16d43fdcadcca44f148p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a335c235fb642fp-28L 0xd.1c0affaba16d43fdcadcca44f15p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a335c235fb644p-28L 0xd.1c0affaba16d43fdcadcca44fp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a335c235fb642p-28L 0xd.1c0affaba16d43fdcadcca44fp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a335c235fb642p-28L 0xd.1c0affaba16d43fdcadcca44fp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f24p-4L : -0x5.4ca4b9c156173a335c235fb642p-28L 0xd.1c0affaba16d43fdcadcca44f4p-4L : inexact-ok += clog downward dbl-64 0xa.ec55bp-4 0xb.b0f2405504a68p-4 : -0x5.0e854cbe55b2cp-28 0xd.1c0affe5ac21p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55bp-4 0xb.b0f2405504a68p-4 : -0x5.0e854cbe55b28p-28 0xd.1c0affe5ac218p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55bp-4 0xb.b0f2405504a68p-4 : -0x5.0e854cbe55b28p-28 0xd.1c0affe5ac21p-4 : inexact-ok += clog upward dbl-64 0xa.ec55bp-4 0xb.b0f2405504a68p-4 : -0x5.0e854cbe55b28p-28 0xd.1c0affe5ac218p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b28868p-28L 0xd.1c0affe5ac21615p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b28868p-28L 0xd.1c0affe5ac21615p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b2886p-28L 0xd.1c0affe5ac21615p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b2886p-28L 0xd.1c0affe5ac21616p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b28868p-28L 0xd.1c0affe5ac21615p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b28868p-28L 0xd.1c0affe5ac21615p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b2886p-28L 0xd.1c0affe5ac21615p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b2886p-28L 0xd.1c0affe5ac21616p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b288674ce55fece37cp-28L 0xd.1c0affe5ac216156e0370cda5358p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b288674ce55fece378p-28L 0xd.1c0affe5ac216156e0370cda536p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b288674ce55fece378p-28L 0xd.1c0affe5ac216156e0370cda5358p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b288674ce55fece378p-28L 0xd.1c0affe5ac216156e0370cda536p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b288674ce55fece4p-28L 0xd.1c0affe5ac216156e0370cda5p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b288674ce55fece4p-28L 0xd.1c0affe5ac216156e0370cda54p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b288674ce55fece2p-28L 0xd.1c0affe5ac216156e0370cda5p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a68p-4L : -0x5.0e854cbe55b288674ce55fece2p-28L 0xd.1c0affe5ac216156e0370cda54p-4L : inexact-ok += clog downward dbl-64 0xa.ec55bp-4 0xb.b0f2405504a6p-4 : -0x5.0e854d1bdd45p-28 0xd.1c0affe5ac21p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55bp-4 0xb.b0f2405504a6p-4 : -0x5.0e854d1bdd44cp-28 0xd.1c0affe5ac21p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55bp-4 0xb.b0f2405504a6p-4 : -0x5.0e854d1bdd44cp-28 0xd.1c0affe5ac21p-4 : inexact-ok += clog upward dbl-64 0xa.ec55bp-4 0xb.b0f2405504a6p-4 : -0x5.0e854d1bdd44cp-28 0xd.1c0affe5ac218p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c63p-28L 0xd.1c0affe5ac2109fp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c63p-28L 0xd.1c0affe5ac2109fp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c628p-28L 0xd.1c0affe5ac2109fp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c628p-28L 0xd.1c0affe5ac210ap-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c63p-28L 0xd.1c0affe5ac2109fp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c63p-28L 0xd.1c0affe5ac2109fp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c628p-28L 0xd.1c0affe5ac2109fp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c628p-28L 0xd.1c0affe5ac210ap-4L : inexact-ok += clog downward ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c62df11c742ac3d8p-28L 0xd.1c0affe5ac2109f4327fd0911178p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c62df11c742ac3d8p-28L 0xd.1c0affe5ac2109f4327fd091118p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c62df11c742ac3d4p-28L 0xd.1c0affe5ac2109f4327fd0911178p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c62df11c742ac3d4p-28L 0xd.1c0affe5ac2109f4327fd091118p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c62df11c742ac4p-28L 0xd.1c0affe5ac2109f4327fd0911p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c62df11c742ac4p-28L 0xd.1c0affe5ac2109f4327fd0911p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c62df11c742ac2p-28L 0xd.1c0affe5ac2109f4327fd0911p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6p-4L : -0x5.0e854d1bdd44c62df11c742ac2p-28L 0xd.1c0affe5ac2109f4327fd09114p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b4p-28L 0xd.1c0affe5ac210dcp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b4p-28L 0xd.1c0affe5ac210dcp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b38p-28L 0xd.1c0affe5ac210dcp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b38p-28L 0xd.1c0affe5ac210ddp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b4p-28L 0xd.1c0affe5ac210dcp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b4p-28L 0xd.1c0affe5ac210dcp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b38p-28L 0xd.1c0affe5ac210dcp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b38p-28L 0xd.1c0affe5ac210ddp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b3eaf398df7ed98p-28L 0xd.1c0affe5ac210dc05c4c670fc088p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b3eaf398df7ed94p-28L 0xd.1c0affe5ac210dc05c4c670fc09p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b3eaf398df7ed94p-28L 0xd.1c0affe5ac210dc05c4c670fc088p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b3eaf398df7ed94p-28L 0xd.1c0affe5ac210dc05c4c670fc09p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b3eaf398df7eep-28L 0xd.1c0affe5ac210dc05c4c670fcp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b3eaf398df7eep-28L 0xd.1c0affe5ac210dc05c4c670fcp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b3eaf398df7ecp-28L 0xd.1c0affe5ac210dc05c4c670fcp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6059p-4L : -0x5.0e854d17ccc08b3eaf398df7ecp-28L 0xd.1c0affe5ac210dc05c4c670fc4p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d88p-28L 0xd.1c0affe5ac210dbp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d88p-28L 0xd.1c0affe5ac210dbp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d8p-28L 0xd.1c0affe5ac210dbp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d8p-28L 0xd.1c0affe5ac210dcp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d88p-28L 0xd.1c0affe5ac210dbp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d88p-28L 0xd.1c0affe5ac210dbp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d8p-28L 0xd.1c0affe5ac210dbp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d8p-28L 0xd.1c0affe5ac210dcp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d86680e14de6cd4p-28L 0xd.1c0affe5ac210db56ff6b028376p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d86680e14de6cdp-28L 0xd.1c0affe5ac210db56ff6b0283768p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d86680e14de6cdp-28L 0xd.1c0affe5ac210db56ff6b028376p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d86680e14de6cdp-28L 0xd.1c0affe5ac210db56ff6b0283768p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d86680e14de6ep-28L 0xd.1c0affe5ac210db56ff6b02834p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d86680e14de6cp-28L 0xd.1c0affe5ac210db56ff6b02838p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d86680e14de6cp-28L 0xd.1c0affe5ac210db56ff6b02834p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6058p-4L : -0x5.0e854d17d8717d86680e14de6cp-28L 0xd.1c0affe5ac210db56ff6b02838p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x5.0e854d17d257832cfd5dfb4a833p-28L 0xd.1c0affe5ac210dbb23552854fa78p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x5.0e854d17d257832cfd5dfb4a833p-28L 0xd.1c0affe5ac210dbb23552854fa78p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x5.0e854d17d257832cfd5dfb4a832cp-28L 0xd.1c0affe5ac210dbb23552854fa78p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55bp-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x5.0e854d17d257832cfd5dfb4a832cp-28L 0xd.1c0affe5ac210dbb23552854fa8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x5.0e854d17d257832cfd5dfb4a84p-28L 0xd.1c0affe5ac210dbb23552854f8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x5.0e854d17d257832cfd5dfb4a84p-28L 0xd.1c0affe5ac210dbb23552854fcp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x5.0e854d17d257832cfd5dfb4a82p-28L 0xd.1c0affe5ac210dbb23552854f8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55bp-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x5.0e854d17d257832cfd5dfb4a82p-28L 0xd.1c0affe5ac210dbb23552854fcp-4L : inexact-ok += clog downward dbl-64 0xa.ec55b7682e53p-4 0xb.b0f25p-4 : 0xb.72d2d39e24048p-28 0xd.1c0b052e6d1fp-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55b7682e53p-4 0xb.b0f25p-4 : 0xb.72d2d39e24048p-28 0xd.1c0b052e6d1fp-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55b7682e53p-4 0xb.b0f25p-4 : 0xb.72d2d39e24048p-28 0xd.1c0b052e6d1fp-4 : inexact-ok += clog upward dbl-64 0xa.ec55b7682e53p-4 0xb.b0f25p-4 : 0xb.72d2d39e2405p-28 0xd.1c0b052e6d1f8p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab3p-28L 0xd.1c0b052e6d1f276p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab3p-28L 0xd.1c0b052e6d1f277p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab3p-28L 0xd.1c0b052e6d1f276p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab4p-28L 0xd.1c0b052e6d1f277p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab3p-28L 0xd.1c0b052e6d1f276p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab3p-28L 0xd.1c0b052e6d1f277p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab3p-28L 0xd.1c0b052e6d1f276p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab4p-28L 0xd.1c0b052e6d1f277p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab35768a2b14292p-28L 0xd.1c0b052e6d1f276a3722aefcb88p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab35768a2b142928p-28L 0xd.1c0b052e6d1f276a3722aefcb888p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab35768a2b14292p-28L 0xd.1c0b052e6d1f276a3722aefcb88p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab35768a2b142928p-28L 0xd.1c0b052e6d1f276a3722aefcb888p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab35768a2b1428p-28L 0xd.1c0b052e6d1f276a3722aefcb8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab35768a2b1428p-28L 0xd.1c0b052e6d1f276a3722aefcb8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab35768a2b1428p-28L 0xd.1c0b052e6d1f276a3722aefcb8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f25p-4L : 0xb.72d2d39e2404ab35768a2b142cp-28L 0xd.1c0b052e6d1f276a3722aefcbcp-4L : inexact-ok += clog downward dbl-64 0xa.ec55b7682e53p-4 0xb.b0f24p-4 : -0x3.e1f6c31b34116p-32 0xd.1c0afa42176fp-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55b7682e53p-4 0xb.b0f24p-4 : -0x3.e1f6c31b34116p-32 0xd.1c0afa42176f8p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55b7682e53p-4 0xb.b0f24p-4 : -0x3.e1f6c31b34114p-32 0xd.1c0afa42176fp-4 : inexact-ok += clog upward dbl-64 0xa.ec55b7682e53p-4 0xb.b0f24p-4 : -0x3.e1f6c31b34114p-32 0xd.1c0afa42176f8p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a58p-32L 0xd.1c0afa42176f65bp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a58p-32L 0xd.1c0afa42176f65bp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a54p-32L 0xd.1c0afa42176f65bp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a54p-32L 0xd.1c0afa42176f65cp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a58p-32L 0xd.1c0afa42176f65bp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a58p-32L 0xd.1c0afa42176f65bp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a54p-32L 0xd.1c0afa42176f65bp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a54p-32L 0xd.1c0afa42176f65cp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a561cfb52cb2c54p-32L 0xd.1c0afa42176f65b15fe1bbafb008p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a561cfb52cb2c54p-32L 0xd.1c0afa42176f65b15fe1bbafb01p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a561cfb52cb2c52p-32L 0xd.1c0afa42176f65b15fe1bbafb008p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a561cfb52cb2c52p-32L 0xd.1c0afa42176f65b15fe1bbafb01p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a561cfb52cb2dp-32L 0xd.1c0afa42176f65b15fe1bbafbp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a561cfb52cb2cp-32L 0xd.1c0afa42176f65b15fe1bbafbp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a561cfb52cb2cp-32L 0xd.1c0afa42176f65b15fe1bbafbp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f24p-4L : -0x3.e1f6c31b34115a561cfb52cb2cp-32L 0xd.1c0afa42176f65b15fe1bbafb4p-4L : inexact-ok += clog downward dbl-64 0xa.ec55b7682e53p-4 0xb.b0f2405504a68p-4 : 0xa.a08bd63c4799p-56 0xd.1c0afa7c22238p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55b7682e53p-4 0xb.b0f2405504a68p-4 : 0xa.a08bd63c4799p-56 0xd.1c0afa7c22238p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55b7682e53p-4 0xb.b0f2405504a68p-4 : 0xa.a08bd63c4799p-56 0xd.1c0afa7c22238p-4 : inexact-ok += clog upward dbl-64 0xa.ec55b7682e53p-4 0xb.b0f2405504a68p-4 : 0xa.a08bd63c47998p-56 0xd.1c0afa7c2224p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f1p-56L 0xd.1c0afa7c222385bp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f1p-56L 0xd.1c0afa7c222385bp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f1p-56L 0xd.1c0afa7c222385bp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f2p-56L 0xd.1c0afa7c222385cp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f1p-56L 0xd.1c0afa7c222385bp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f1p-56L 0xd.1c0afa7c222385bp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f1p-56L 0xd.1c0afa7c222385bp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f2p-56L 0xd.1c0afa7c222385cp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f10642b1cb5c72p-56L 0xd.1c0afa7c222385b6080f2e12c0b8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f10642b1cb5c72p-56L 0xd.1c0afa7c222385b6080f2e12c0b8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f10642b1cb5c72p-56L 0xd.1c0afa7c222385b6080f2e12c0b8p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f10642b1cb5c728p-56L 0xd.1c0afa7c222385b6080f2e12c0cp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f10642b1cb5c4p-56L 0xd.1c0afa7c222385b6080f2e12cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f10642b1cb5c8p-56L 0xd.1c0afa7c222385b6080f2e12cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f10642b1cb5c4p-56L 0xd.1c0afa7c222385b6080f2e12cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a68p-4L : 0xa.a08bd63c47992f10642b1cb5c8p-56L 0xd.1c0afa7c222385b6080f2e12c4p-4L : inexact-ok += clog downward dbl-64 0xa.ec55b7682e53p-4 0xb.b0f2405504a6p-4 : 0x4.c812b611c5464p-56 0xd.1c0afa7c2223p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55b7682e53p-4 0xb.b0f2405504a6p-4 : 0x4.c812b611c5468p-56 0xd.1c0afa7c2223p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55b7682e53p-4 0xb.b0f2405504a6p-4 : 0x4.c812b611c5464p-56 0xd.1c0afa7c2223p-4 : inexact-ok += clog upward dbl-64 0xa.ec55b7682e53p-4 0xb.b0f2405504a6p-4 : 0x4.c812b611c5468p-56 0xd.1c0afa7c22238p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c546692p-56L 0xd.1c0afa7c22232e5p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c546692p-56L 0xd.1c0afa7c22232e5p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c546692p-56L 0xd.1c0afa7c22232e5p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c5466928p-56L 0xd.1c0afa7c22232e6p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c546692p-56L 0xd.1c0afa7c22232e5p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c546692p-56L 0xd.1c0afa7c22232e5p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c546692p-56L 0xd.1c0afa7c22232e5p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c5466928p-56L 0xd.1c0afa7c22232e6p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c54669230d1197f59164p-56L 0xd.1c0afa7c22232e535a53eca02df8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c54669230d1197f59168p-56L 0xd.1c0afa7c22232e535a53eca02ep-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c54669230d1197f59164p-56L 0xd.1c0afa7c22232e535a53eca02df8p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c54669230d1197f59168p-56L 0xd.1c0afa7c22232e535a53eca02ep-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c54669230d1197f59p-56L 0xd.1c0afa7c22232e535a53eca02cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c54669230d1197f592p-56L 0xd.1c0afa7c22232e535a53eca02cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c54669230d1197f59p-56L 0xd.1c0afa7c22232e535a53eca02cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6p-4L : 0x4.c812b611c54669230d1197f592p-56L 0xd.1c0afa7c22232e535a53eca03p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421p-56L 0xd.1c0afa7c2223321p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e304218p-56L 0xd.1c0afa7c2223322p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421p-56L 0xd.1c0afa7c2223321p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e304218p-56L 0xd.1c0afa7c2223322p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421p-56L 0xd.1c0afa7c2223321p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e304218p-56L 0xd.1c0afa7c2223322p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421p-56L 0xd.1c0afa7c2223321p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e304218p-56L 0xd.1c0afa7c2223322p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421417d7af82d944p-56L 0xd.1c0afa7c2223321f8420afd848bp-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421417d7af82d944p-56L 0xd.1c0afa7c2223321f8420afd848bp-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421417d7af82d944p-56L 0xd.1c0afa7c2223321f8420afd848bp-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421417d7af82d948p-56L 0xd.1c0afa7c2223321f8420afd848b8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421417d7af82d8p-56L 0xd.1c0afa7c2223321f8420afd848p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421417d7af82dap-56L 0xd.1c0afa7c2223321f8420afd848p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421417d7af82d8p-56L 0xd.1c0afa7c2223321f8420afd848p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6059p-4L : 0x5.091af9979e30421417d7af82dap-56L 0xd.1c0afa7c2223321f8420afd84cp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7b8p-56L 0xd.1c0afa7c2223321p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7b8p-56L 0xd.1c0afa7c2223321p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7b8p-56L 0xd.1c0afa7c2223321p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7cp-56L 0xd.1c0afa7c2223322p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7b8p-56L 0xd.1c0afa7c2223321p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7b8p-56L 0xd.1c0afa7c2223321p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7b8p-56L 0xd.1c0afa7c2223321p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7cp-56L 0xd.1c0afa7c2223322p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7bb1ab4e4f52fp-56L 0xd.1c0afa7c2223321497caf8701a6p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7bb1ab4e4f52fp-56L 0xd.1c0afa7c2223321497caf8701a6p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7bb1ab4e4f52fp-56L 0xd.1c0afa7c2223321497caf8701a6p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7bb1ab4e4f52f04p-56L 0xd.1c0afa7c2223321497caf8701a68p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7bb1ab4e4f52ep-56L 0xd.1c0afa7c2223321497caf87018p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7bb1ab4e4f53p-56L 0xd.1c0afa7c2223321497caf8701cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7bb1ab4e4f52ep-56L 0xd.1c0afa7c2223321497caf87018p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058p-4L : 0x5.085fea7398dff7bb1ab4e4f53p-56L 0xd.1c0afa7c2223321497caf8701cp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.08c18a18f1d5ffd92c32b1cc7abcp-56L 0xd.1c0afa7c2223321a4b2970e000dp-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.08c18a18f1d5ffd92c32b1cc7abcp-56L 0xd.1c0afa7c2223321a4b2970e000d8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.08c18a18f1d5ffd92c32b1cc7abcp-56L 0xd.1c0afa7c2223321a4b2970e000dp-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.08c18a18f1d5ffd92c32b1cc7acp-56L 0xd.1c0afa7c2223321a4b2970e000d8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.08c18a18f1d5ffd92c32b1cc7ap-56L 0xd.1c0afa7c2223321a4b2970ep-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.08c18a18f1d5ffd92c32b1cc7ap-56L 0xd.1c0afa7c2223321a4b2970ep-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.08c18a18f1d5ffd92c32b1cc7ap-56L 0xd.1c0afa7c2223321a4b2970ep-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e53p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x5.08c18a18f1d5ffd92c32b1cc7cp-56L 0xd.1c0afa7c2223321a4b2970e004p-4L : inexact-ok += clog downward dbl-64 0xa.ec55b7682e528p-4 0xb.b0f25p-4 : 0xb.72d2d346c157p-28 0xd.1c0b052e6d1f8p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55b7682e528p-4 0xb.b0f25p-4 : 0xb.72d2d346c1578p-28 0xd.1c0b052e6d1f8p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55b7682e528p-4 0xb.b0f25p-4 : 0xb.72d2d346c157p-28 0xd.1c0b052e6d1f8p-4 : inexact-ok += clog upward dbl-64 0xa.ec55b7682e528p-4 0xb.b0f25p-4 : 0xb.72d2d346c1578p-28 0xd.1c0b052e6d2p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576dp-28L 0xd.1c0b052e6d1f84fp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576dp-28L 0xd.1c0b052e6d1f84fp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576dp-28L 0xd.1c0b052e6d1f84fp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576d1p-28L 0xd.1c0b052e6d1f85p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576dp-28L 0xd.1c0b052e6d1f84fp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576dp-28L 0xd.1c0b052e6d1f84fp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576dp-28L 0xd.1c0b052e6d1f84fp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576d1p-28L 0xd.1c0b052e6d1f85p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576d01ef8bd3adc888p-28L 0xd.1c0b052e6d1f84f1c91cd626f1dp-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576d01ef8bd3adc89p-28L 0xd.1c0b052e6d1f84f1c91cd626f1dp-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576d01ef8bd3adc888p-28L 0xd.1c0b052e6d1f84f1c91cd626f1dp-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576d01ef8bd3adc89p-28L 0xd.1c0b052e6d1f84f1c91cd626f1d8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576d01ef8bd3adc8p-28L 0xd.1c0b052e6d1f84f1c91cd626fp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576d01ef8bd3adc8p-28L 0xd.1c0b052e6d1f84f1c91cd626fp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576d01ef8bd3adc8p-28L 0xd.1c0b052e6d1f84f1c91cd626fp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f25p-4L : 0xb.72d2d346c1576d01ef8bd3adccp-28L 0xd.1c0b052e6d1f84f1c91cd626f4p-4L : inexact-ok += clog downward dbl-64 0xa.ec55b7682e528p-4 0xb.b0f24p-4 : -0x3.e1f6c8915eed4p-32 0xd.1c0afa42176f8p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55b7682e528p-4 0xb.b0f24p-4 : -0x3.e1f6c8915eed4p-32 0xd.1c0afa42177p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55b7682e528p-4 0xb.b0f24p-4 : -0x3.e1f6c8915eed2p-32 0xd.1c0afa42176f8p-4 : inexact-ok += clog upward dbl-64 0xa.ec55b7682e528p-4 0xb.b0f24p-4 : -0x3.e1f6c8915eed2p-32 0xd.1c0afa42177p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d8p-32L 0xd.1c0afa42176fc33p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d8p-32L 0xd.1c0afa42176fc34p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d4p-32L 0xd.1c0afa42176fc33p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d4p-32L 0xd.1c0afa42176fc34p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d8p-32L 0xd.1c0afa42176fc33p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d8p-32L 0xd.1c0afa42176fc34p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d4p-32L 0xd.1c0afa42176fc33p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d4p-32L 0xd.1c0afa42176fc34p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d68663c378b86ep-32L 0xd.1c0afa42176fc338f1e491f9bbd8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d68663c378b86cp-32L 0xd.1c0afa42176fc338f1e491f9bbd8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d68663c378b86cp-32L 0xd.1c0afa42176fc338f1e491f9bbd8p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d68663c378b86cp-32L 0xd.1c0afa42176fc338f1e491f9bbep-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d68663c378b9p-32L 0xd.1c0afa42176fc338f1e491f9b8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d68663c378b8p-32L 0xd.1c0afa42176fc338f1e491f9bcp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d68663c378b8p-32L 0xd.1c0afa42176fc338f1e491f9b8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f24p-4L : -0x3.e1f6c8915eed38d68663c378b8p-32L 0xd.1c0afa42176fc338f1e491f9bcp-4L : inexact-ok += clog downward dbl-64 0xa.ec55b7682e528p-4 0xb.b0f2405504a68p-4 : 0x5.2a60fa88307p-56 0xd.1c0afa7c22238p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55b7682e528p-4 0xb.b0f2405504a68p-4 : 0x5.2a60fa8830704p-56 0xd.1c0afa7c2224p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55b7682e528p-4 0xb.b0f2405504a68p-4 : 0x5.2a60fa88307p-56 0xd.1c0afa7c22238p-4 : inexact-ok += clog upward dbl-64 0xa.ec55b7682e528p-4 0xb.b0f2405504a68p-4 : 0x5.2a60fa8830704p-56 0xd.1c0afa7c2224p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa883070255p-56L 0xd.1c0afa7c2223e33p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa883070255p-56L 0xd.1c0afa7c2223e34p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa883070255p-56L 0xd.1c0afa7c2223e33p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa8830702558p-56L 0xd.1c0afa7c2223e34p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa883070255p-56L 0xd.1c0afa7c2223e33p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa883070255p-56L 0xd.1c0afa7c2223e34p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa883070255p-56L 0xd.1c0afa7c2223e33p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa8830702558p-56L 0xd.1c0afa7c2223e34p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa8830702551323fbc9066c4p-56L 0xd.1c0afa7c2223e33d9a11d637eefp-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa8830702551323fbc9066c8p-56L 0xd.1c0afa7c2223e33d9a11d637eef8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa8830702551323fbc9066c4p-56L 0xd.1c0afa7c2223e33d9a11d637eefp-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa8830702551323fbc9066c8p-56L 0xd.1c0afa7c2223e33d9a11d637eef8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa8830702551323fbc9066p-56L 0xd.1c0afa7c2223e33d9a11d637ecp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa8830702551323fbc9066p-56L 0xd.1c0afa7c2223e33d9a11d637fp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa8830702551323fbc9066p-56L 0xd.1c0afa7c2223e33d9a11d637ecp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a68p-4L : 0x5.2a60fa8830702551323fbc9068p-56L 0xd.1c0afa7c2223e33d9a11d637fp-4L : inexact-ok += clog downward dbl-64 0xa.ec55b7682e528p-4 0xb.b0f2405504a6p-4 : -0xa.e1825a251e2e8p-60 0xd.1c0afa7c22238p-4 : inexact-ok += clog tonearest dbl-64 0xa.ec55b7682e528p-4 0xb.b0f2405504a6p-4 : -0xa.e1825a251e2ep-60 0xd.1c0afa7c22238p-4 : inexact-ok += clog towardzero dbl-64 0xa.ec55b7682e528p-4 0xb.b0f2405504a6p-4 : -0xa.e1825a251e2ep-60 0xd.1c0afa7c22238p-4 : inexact-ok += clog upward dbl-64 0xa.ec55b7682e528p-4 0xb.b0f2405504a6p-4 : -0xa.e1825a251e2ep-60 0xd.1c0afa7c2224p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e077p-60L 0xd.1c0afa7c22238bdp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e076p-60L 0xd.1c0afa7c22238bep-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e076p-60L 0xd.1c0afa7c22238bdp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e076p-60L 0xd.1c0afa7c22238bep-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e077p-60L 0xd.1c0afa7c22238bdp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e076p-60L 0xd.1c0afa7c22238bep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e076p-60L 0xd.1c0afa7c22238bdp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e076p-60L 0xd.1c0afa7c22238bep-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e07664d56fbb4816p-60L 0xd.1c0afa7c22238bdaec5694c55c78p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e07664d56fbb4816p-60L 0xd.1c0afa7c22238bdaec5694c55c8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e07664d56fbb48158p-60L 0xd.1c0afa7c22238bdaec5694c55c78p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e07664d56fbb48158p-60L 0xd.1c0afa7c22238bdaec5694c55c8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e07664d56fbb484p-60L 0xd.1c0afa7c22238bdaec5694c55cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e07664d56fbb48p-60L 0xd.1c0afa7c22238bdaec5694c55cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e07664d56fbb48p-60L 0xd.1c0afa7c22238bdaec5694c55cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6p-4L : -0xa.e1825a251e2e07664d56fbb48p-60L 0xd.1c0afa7c22238bdaec5694c56p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904bfp-60L 0xd.1c0afa7c22238fap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904bfp-60L 0xd.1c0afa7c22238fap-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904be8p-60L 0xd.1c0afa7c22238fap-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904be8p-60L 0xd.1c0afa7c22238fbp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904bfp-60L 0xd.1c0afa7c22238fap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904bfp-60L 0xd.1c0afa7c22238fap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904be8p-60L 0xd.1c0afa7c22238fap-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904be8p-60L 0xd.1c0afa7c22238fbp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904befe0788861084p-60L 0xd.1c0afa7c22238fa7162357fd773p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904befe0788861083cp-60L 0xd.1c0afa7c22238fa7162357fd773p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904befe0788861083cp-60L 0xd.1c0afa7c22238fa7162357fd773p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904befe0788861083cp-60L 0xd.1c0afa7c22238fa7162357fd7738p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904befe07888610ap-60L 0xd.1c0afa7c22238fa7162357fd74p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904befe078886108p-60L 0xd.1c0afa7c22238fa7162357fd78p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904befe078886108p-60L 0xd.1c0afa7c22238fa7162357fd74p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6059p-4L : -0x6.d0fe21c78f904befe078886108p-60L 0xd.1c0afa7c22238fa7162357fd78p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f2p-60L 0xd.1c0afa7c22238f9p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f2p-60L 0xd.1c0afa7c22238fap-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1f8p-60L 0xd.1c0afa7c22238f9p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1f8p-60L 0xd.1c0afa7c22238fap-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f2p-60L 0xd.1c0afa7c22238f9p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f2p-60L 0xd.1c0afa7c22238fap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1f8p-60L 0xd.1c0afa7c22238f9p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1f8p-60L 0xd.1c0afa7c22238fap-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1ff6725288ac37p-60L 0xd.1c0afa7c22238f9c29cda09548d8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1ff6725288ac37p-60L 0xd.1c0afa7c22238f9c29cda09548ep-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1ff6725288ac36cp-60L 0xd.1c0afa7c22238f9c29cda09548d8p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1ff6725288ac36cp-60L 0xd.1c0afa7c22238f9c29cda09548ep-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1ff6725288ac4p-60L 0xd.1c0afa7c22238f9c29cda09548p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1ff6725288ac4p-60L 0xd.1c0afa7c22238f9c29cda09548p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1ff6725288ac2p-60L 0xd.1c0afa7c22238f9c29cda09548p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058p-4L : -0x6.dcaf1407e494f1ff6725288ac2p-60L 0xd.1c0afa7c22238f9c29cda0954cp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x6.d69519b255346fdba9833d701178p-60L 0xd.1c0afa7c22238fa1dd2c19052f5p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x6.d69519b255346fdba9833d701174p-60L 0xd.1c0afa7c22238fa1dd2c19052f5p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x6.d69519b255346fdba9833d701174p-60L 0xd.1c0afa7c22238fa1dd2c19052f5p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x6.d69519b255346fdba9833d701174p-60L 0xd.1c0afa7c22238fa1dd2c19052f58p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x6.d69519b255346fdba9833d7012p-60L 0xd.1c0afa7c22238fa1dd2c19052cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x6.d69519b255346fdba9833d7012p-60L 0xd.1c0afa7c22238fa1dd2c19053p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x6.d69519b255346fdba9833d701p-60L 0xd.1c0afa7c22238fa1dd2c19052cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528p-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x6.d69519b255346fdba9833d701p-60L 0xd.1c0afa7c22238fa1dd2c19053p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b8p-28L 0xd.1c0b052e6d1f7d9p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b8p-28L 0xd.1c0b052e6d1f7d9p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b8p-28L 0xd.1c0b052e6d1f7d9p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b9p-28L 0xd.1c0b052e6d1f7dap-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b8p-28L 0xd.1c0b052e6d1f7d9p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b8p-28L 0xd.1c0b052e6d1f7d9p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b8p-28L 0xd.1c0b052e6d1f7d9p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b9p-28L 0xd.1c0b052e6d1f7dap-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b85bc888fc89808p-28L 0xd.1c0b052e6d1f7d9780c30bd2bfe8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b85bc888fc8981p-28L 0xd.1c0b052e6d1f7d9780c30bd2bffp-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b85bc888fc89808p-28L 0xd.1c0b052e6d1f7d9780c30bd2bfe8p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b85bc888fc8981p-28L 0xd.1c0b052e6d1f7d9780c30bd2bffp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b85bc888fc898p-28L 0xd.1c0b052e6d1f7d9780c30bd2bcp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b85bc888fc898p-28L 0xd.1c0b052e6d1f7d9780c30bd2cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b85bc888fc898p-28L 0xd.1c0b052e6d1f7d9780c30bd2bcp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f25p-4L : 0xb.72d2d34d9ff94b85bc888fc89cp-28L 0xd.1c0b052e6d1f7d9780c30bd2cp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaffcp-32L 0xd.1c0afa42176fbbdp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8p-32L 0xd.1c0afa42176fbbep-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8p-32L 0xd.1c0afa42176fbbdp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8p-32L 0xd.1c0afa42176fbbep-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaffcp-32L 0xd.1c0afa42176fbbdp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8p-32L 0xd.1c0afa42176fbbep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8p-32L 0xd.1c0afa42176fbbdp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8p-32L 0xd.1c0afa42176fbbep-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8ae1a95dede68p-32L 0xd.1c0afa42176fbbdea98a18e1298p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8ae1a95dede68p-32L 0xd.1c0afa42176fbbdea98a18e12988p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8ae1a95dede66p-32L 0xd.1c0afa42176fbbdea98a18e1298p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8ae1a95dede66p-32L 0xd.1c0afa42176fbbdea98a18e12988p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8ae1a95dedfp-32L 0xd.1c0afa42176fbbdea98a18e128p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8ae1a95dedep-32L 0xd.1c0afa42176fbbdea98a18e128p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8ae1a95dedep-32L 0xd.1c0afa42176fbbdea98a18e128p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f24p-4L : -0x3.e1f6c82374ceaff8ae1a95dedep-32L 0xd.1c0afa42176fbbdea98a18e12cp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f08p-56L 0xd.1c0afa7c2223dbep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f1p-56L 0xd.1c0afa7c2223dbep-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f08p-56L 0xd.1c0afa7c2223dbep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f1p-56L 0xd.1c0afa7c2223dbfp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f08p-56L 0xd.1c0afa7c2223dbep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f1p-56L 0xd.1c0afa7c2223dbep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f08p-56L 0xd.1c0afa7c2223dbep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f1p-56L 0xd.1c0afa7c2223dbfp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f0d1841aecc8478p-56L 0xd.1c0afa7c2223dbe351b760c00288p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f0d1841aecc8478p-56L 0xd.1c0afa7c2223dbe351b760c0029p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f0d1841aecc8478p-56L 0xd.1c0afa7c2223dbe351b760c00288p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f0d1841aecc847cp-56L 0xd.1c0afa7c2223dbe351b760c0029p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f0d1841aecc84p-56L 0xd.1c0afa7c2223dbe351b760cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f0d1841aecc84p-56L 0xd.1c0afa7c2223dbe351b760c004p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f0d1841aecc84p-56L 0xd.1c0afa7c2223dbe351b760cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a68p-4L : 0x5.984b190db8c23f0d1841aecc86p-56L 0xd.1c0afa7c2223dbe351b760c004p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b58p-60L 0xd.1c0afa7c2223848p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b58p-60L 0xd.1c0afa7c2223848p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5p-60L 0xd.1c0afa7c2223848p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5p-60L 0xd.1c0afa7c2223849p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b58p-60L 0xd.1c0afa7c2223848p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b58p-60L 0xd.1c0afa7c2223848p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5p-60L 0xd.1c0afa7c2223848p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5p-60L 0xd.1c0afa7c2223849p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5768bd4f353674p-60L 0xd.1c0afa7c22238480a3fc1f4d701p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5768bd4f35367p-60L 0xd.1c0afa7c22238480a3fc1f4d701p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5768bd4f35367p-60L 0xd.1c0afa7c22238480a3fc1f4d701p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5768bd4f35367p-60L 0xd.1c0afa7c22238480a3fc1f4d7018p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5768bd4f3538p-60L 0xd.1c0afa7c22238480a3fc1f4d7p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5768bd4f3536p-60L 0xd.1c0afa7c22238480a3fc1f4d7p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5768bd4f3536p-60L 0xd.1c0afa7c22238480a3fc1f4d7p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6p-4L : -0x4.02e071cc990c1b5768bd4f3536p-60L 0xd.1c0afa7c22238480a3fc1f4d74p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca18p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca18p-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca18p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca19p-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca18p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca18p-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca18p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca19p-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca1845f50ed071f08p-68L 0xd.1c0afa7c2223884ccdc8e2858acp-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca1845f50ed071f08p-68L 0xd.1c0afa7c2223884ccdc8e2858ac8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca1845f50ed071f08p-68L 0xd.1c0afa7c2223884ccdc8e2858acp-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca1845f50ed071f1p-68L 0xd.1c0afa7c2223884ccdc8e2858ac8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca1845f50ed071cp-68L 0xd.1c0afa7c2223884ccdc8e28588p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca1845f50ed072p-68L 0xd.1c0afa7c2223884ccdc8e2858cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca1845f50ed071cp-68L 0xd.1c0afa7c2223884ccdc8e28588p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6059p-4L : 0xd.a3c690f5919ca1845f50ed072p-68L 0xd.1c0afa7c2223884ccdc8e2858cp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c06p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c08p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c06p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c08p-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c06p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c08p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c06p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c08p-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c07c34014639b84p-68L 0xd.1c0afa7c22238841e1732b1d5c7p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c07c34014639b84p-68L 0xd.1c0afa7c22238841e1732b1d5c7p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c07c34014639b84p-68L 0xd.1c0afa7c22238841e1732b1d5c7p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c07c34014639b85p-68L 0xd.1c0afa7c22238841e1732b1d5c78p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c07c34014639b8p-68L 0xd.1c0afa7c22238841e1732b1d5cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c07c34014639b8p-68L 0xd.1c0afa7c22238841e1732b1d5cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c07c34014639b8p-68L 0xd.1c0afa7c22238841e1732b1d5cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058p-4L : 0x1.f2d450a08cf69c07c34014639cp-68L 0xd.1c0afa7c22238841e1732b1d6p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x8.0ccea62fed78ba881d0c3a699bc8p-68L 0xd.1c0afa7c2223884794d1a38d42ep-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x8.0ccea62fed78ba881d0c3a699bdp-68L 0xd.1c0afa7c2223884794d1a38d42e8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x8.0ccea62fed78ba881d0c3a699bc8p-68L 0xd.1c0afa7c2223884794d1a38d42ep-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x8.0ccea62fed78ba881d0c3a699bdp-68L 0xd.1c0afa7c2223884794d1a38d42e8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x8.0ccea62fed78ba881d0c3a6998p-68L 0xd.1c0afa7c2223884794d1a38d4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x8.0ccea62fed78ba881d0c3a699cp-68L 0xd.1c0afa7c2223884794d1a38d44p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x8.0ccea62fed78ba881d0c3a6998p-68L 0xd.1c0afa7c2223884794d1a38d4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a1p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x8.0ccea62fed78ba881d0c3a699cp-68L 0xd.1c0afa7c2223884794d1a38d44p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5dp-28L 0xd.1c0b052e6d1f7dap-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ep-28L 0xd.1c0b052e6d1f7dap-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5dp-28L 0xd.1c0b052e6d1f7dap-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ep-28L 0xd.1c0b052e6d1f7dbp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5dp-28L 0xd.1c0b052e6d1f7dap-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ep-28L 0xd.1c0b052e6d1f7dap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5dp-28L 0xd.1c0b052e6d1f7dap-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ep-28L 0xd.1c0b052e6d1f7dbp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ddf617b0015498p-28L 0xd.1c0b052e6d1f7da331b54b17a53p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ddf617b0015498p-28L 0xd.1c0b052e6d1f7da331b54b17a538p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ddf617b0015498p-28L 0xd.1c0b052e6d1f7da331b54b17a53p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ddf617b00154ap-28L 0xd.1c0b052e6d1f7da331b54b17a538p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ddf617b00154p-28L 0xd.1c0b052e6d1f7da331b54b17a4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ddf617b00154p-28L 0xd.1c0b052e6d1f7da331b54b17a4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ddf617b00154p-28L 0xd.1c0b052e6d1f7da331b54b17a4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f25p-4L : 0xb.72d2d34d950cf5ddf617b00158p-28L 0xd.1c0b052e6d1f7da331b54b17a8p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b78p-32L 0xd.1c0afa42176fbbep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b74p-32L 0xd.1c0afa42176fbbfp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b74p-32L 0xd.1c0afa42176fbbep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b74p-32L 0xd.1c0afa42176fbbfp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b78p-32L 0xd.1c0afa42176fbbep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b74p-32L 0xd.1c0afa42176fbbfp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b74p-32L 0xd.1c0afa42176fbbep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b74p-32L 0xd.1c0afa42176fbbfp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b747e27c2b25eb4p-32L 0xd.1c0afa42176fbbea5a7c593bf2c8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b747e27c2b25eb4p-32L 0xd.1c0afa42176fbbea5a7c593bf2c8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b747e27c2b25eb2p-32L 0xd.1c0afa42176fbbea5a7c593bf2c8p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b747e27c2b25eb2p-32L 0xd.1c0afa42176fbbea5a7c593bf2dp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b747e27c2b25fp-32L 0xd.1c0afa42176fbbea5a7c593bfp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b747e27c2b25fp-32L 0xd.1c0afa42176fbbea5a7c593bf4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b747e27c2b25ep-32L 0xd.1c0afa42176fbbea5a7c593bfp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f24p-4L : -0x3.e1f6c82423940b747e27c2b25ep-32L 0xd.1c0afa42176fbbea5a7c593bf4p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59e8p-56L 0xd.1c0afa7c2223dbep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59fp-56L 0xd.1c0afa7c2223dbfp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59e8p-56L 0xd.1c0afa7c2223dbep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59fp-56L 0xd.1c0afa7c2223dbfp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59e8p-56L 0xd.1c0afa7c2223dbep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59fp-56L 0xd.1c0afa7c2223dbfp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59e8p-56L 0xd.1c0afa7c2223dbep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59fp-56L 0xd.1c0afa7c2223dbfp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59ec1af0d702c178p-56L 0xd.1c0afa7c2223dbef02a9a115073p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59ec1af0d702c17cp-56L 0xd.1c0afa7c2223dbef02a9a1150738p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59ec1af0d702c178p-56L 0xd.1c0afa7c2223dbef02a9a115073p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59ec1af0d702c17cp-56L 0xd.1c0afa7c2223dbef02a9a1150738p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59ec1af0d702cp-56L 0xd.1c0afa7c2223dbef02a9a11504p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59ec1af0d702c2p-56L 0xd.1c0afa7c2223dbef02a9a11508p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59ec1af0d702cp-56L 0xd.1c0afa7c2223dbef02a9a11504p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a68p-4L : 0x5.979c53b2423f59ec1af0d702c2p-56L 0xd.1c0afa7c2223dbef02a9a11508p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de8p-60L 0xd.1c0afa7c2223848p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de8p-60L 0xd.1c0afa7c2223849p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6dep-60L 0xd.1c0afa7c2223848p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6dep-60L 0xd.1c0afa7c2223849p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de8p-60L 0xd.1c0afa7c2223848p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de8p-60L 0xd.1c0afa7c2223849p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6dep-60L 0xd.1c0afa7c2223848p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6dep-60L 0xd.1c0afa7c2223849p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de6f24ac3207d3cp-60L 0xd.1c0afa7c2223848c54ee5fa274bp-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de6f24ac3207d3cp-60L 0xd.1c0afa7c2223848c54ee5fa274b8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de6f24ac3207d38p-60L 0xd.1c0afa7c2223848c54ee5fa274bp-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de6f24ac3207d38p-60L 0xd.1c0afa7c2223848c54ee5fa274b8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de6f24ac3207ep-60L 0xd.1c0afa7c2223848c54ee5fa274p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de6f24ac3207ep-60L 0xd.1c0afa7c2223848c54ee5fa274p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de6f24ac3207cp-60L 0xd.1c0afa7c2223848c54ee5fa274p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6p-4L : -0x4.0dccc784013a6de6f24ac3207cp-60L 0xd.1c0afa7c2223848c54ee5fa278p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a1784p-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a1788p-68L 0xd.1c0afa7c2223886p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a1784p-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a1788p-68L 0xd.1c0afa7c2223886p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a1784p-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a1788p-68L 0xd.1c0afa7c2223886p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a1784p-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a1788p-68L 0xd.1c0afa7c2223886p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a178789eca11033a4p-68L 0xd.1c0afa7c222388587ebb22da8f68p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a178789eca11033a4p-68L 0xd.1c0afa7c222388587ebb22da8f68p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a178789eca11033a4p-68L 0xd.1c0afa7c222388587ebb22da8f68p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a178789eca11033a6p-68L 0xd.1c0afa7c222388587ebb22da8f7p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a178789eca11033p-68L 0xd.1c0afa7c222388587ebb22da8cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a178789eca11034p-68L 0xd.1c0afa7c222388587ebb22da9p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a178789eca11033p-68L 0xd.1c0afa7c222388587ebb22da8cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6059p-4L : 0x2.b770d98d634a178789eca11034p-68L 0xd.1c0afa7c222388587ebb22da9p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15bee1p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15beep-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15beep-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15beep-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15bee1p-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15beep-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15beep-68L 0xd.1c0afa7c2223884p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15beep-68L 0xd.1c0afa7c2223885p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15bee0508b4367d32cp-68L 0xd.1c0afa7c2223884d92656b726118p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15bee0508b4367d32cp-68L 0xd.1c0afa7c2223884d92656b726118p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15bee0508b4367d32b8p-68L 0xd.1c0afa7c2223884d92656b726118p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15bee0508b4367d32b8p-68L 0xd.1c0afa7c2223884d92656b72612p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15bee0508b4367d34p-68L 0xd.1c0afa7c2223884d92656b726p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15bee0508b4367d34p-68L 0xd.1c0afa7c2223884d92656b726p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15bee0508b4367d3p-68L 0xd.1c0afa7c2223884d92656b726p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058p-4L : -0x8.f98166c7a15bee0508b4367d3p-68L 0xd.1c0afa7c2223884d92656b7264p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x2.df87113840d9cf7c5a2f6cc273b4p-68L 0xd.1c0afa7c2223885345c3e3e24788p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x2.df87113840d9cf7c5a2f6cc273b4p-68L 0xd.1c0afa7c2223885345c3e3e24788p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x2.df87113840d9cf7c5a2f6cc273b2p-68L 0xd.1c0afa7c2223885345c3e3e24788p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x2.df87113840d9cf7c5a2f6cc273b2p-68L 0xd.1c0afa7c2223885345c3e3e2479p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x2.df87113840d9cf7c5a2f6cc274p-68L 0xd.1c0afa7c2223885345c3e3e244p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x2.df87113840d9cf7c5a2f6cc274p-68L 0xd.1c0afa7c2223885345c3e3e248p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x2.df87113840d9cf7c5a2f6cc273p-68L 0xd.1c0afa7c2223885345c3e3e244p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528ap-4L 0xb.b0f2405504a6058859a584e748p-4L : -0x2.df87113840d9cf7c5a2f6cc273p-68L 0xd.1c0afa7c2223885345c3e3e248p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f25p-4L : 0xb.72d2d34d97ec7ceb11c1d8e2533p-28L 0xd.1c0b052e6d1f7da01e771f69891p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f25p-4L : 0xb.72d2d34d97ec7ceb11c1d8e25338p-28L 0xd.1c0b052e6d1f7da01e771f69891p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f25p-4L : 0xb.72d2d34d97ec7ceb11c1d8e2533p-28L 0xd.1c0b052e6d1f7da01e771f69891p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f25p-4L : 0xb.72d2d34d97ec7ceb11c1d8e25338p-28L 0xd.1c0b052e6d1f7da01e771f698918p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f25p-4L : 0xb.72d2d34d97ec7ceb11c1d8e25p-28L 0xd.1c0b052e6d1f7da01e771f6988p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f25p-4L : 0xb.72d2d34d97ec7ceb11c1d8e254p-28L 0xd.1c0b052e6d1f7da01e771f6988p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f25p-4L : 0xb.72d2d34d97ec7ceb11c1d8e25p-28L 0xd.1c0b052e6d1f7da01e771f6988p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f25p-4L : 0xb.72d2d34d97ec7ceb11c1d8e254p-28L 0xd.1c0b052e6d1f7da01e771f698cp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f24p-4L : -0x3.e1f6c823f59b9a5f952027215c46p-32L 0xd.1c0afa42176fbbe7473e2d44be8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f24p-4L : -0x3.e1f6c823f59b9a5f952027215c44p-32L 0xd.1c0afa42176fbbe7473e2d44be8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f24p-4L : -0x3.e1f6c823f59b9a5f952027215c44p-32L 0xd.1c0afa42176fbbe7473e2d44be8p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f24p-4L : -0x3.e1f6c823f59b9a5f952027215c44p-32L 0xd.1c0afa42176fbbe7473e2d44be88p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f24p-4L : -0x3.e1f6c823f59b9a5f952027215dp-32L 0xd.1c0afa42176fbbe7473e2d44bcp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f24p-4L : -0x3.e1f6c823f59b9a5f952027215cp-32L 0xd.1c0afa42176fbbe7473e2d44cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f24p-4L : -0x3.e1f6c823f59b9a5f952027215cp-32L 0xd.1c0afa42176fbbe7473e2d44bcp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f24p-4L : -0x3.e1f6c823f59b9a5f952027215cp-32L 0xd.1c0afa42176fbbe7473e2d44cp-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a68p-4L : 0x5.97ca4c2355c36787107e5266b8a4p-56L 0xd.1c0afa7c2223dbebef6b751f575p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a68p-4L : 0x5.97ca4c2355c36787107e5266b8a8p-56L 0xd.1c0afa7c2223dbebef6b751f5758p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a68p-4L : 0x5.97ca4c2355c36787107e5266b8a4p-56L 0xd.1c0afa7c2223dbebef6b751f575p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a68p-4L : 0x5.97ca4c2355c36787107e5266b8a8p-56L 0xd.1c0afa7c2223dbebef6b751f5758p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a68p-4L : 0x5.97ca4c2355c36787107e5266b8p-56L 0xd.1c0afa7c2223dbebef6b751f54p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a68p-4L : 0x5.97ca4c2355c36787107e5266b8p-56L 0xd.1c0afa7c2223dbebef6b751f58p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a68p-4L : 0x5.97ca4c2355c36787107e5266b8p-56L 0xd.1c0afa7c2223dbebef6b751f54p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a68p-4L : 0x5.97ca4c2355c36787107e5266bap-56L 0xd.1c0afa7c2223dbebef6b751f58p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6p-4L : -0x4.0aed4072c8f9941602406d1b43ecp-60L 0xd.1c0afa7c2223848941b033acc4dp-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6p-4L : -0x4.0aed4072c8f9941602406d1b43ecp-60L 0xd.1c0afa7c2223848941b033acc4d8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6p-4L : -0x4.0aed4072c8f9941602406d1b43e8p-60L 0xd.1c0afa7c2223848941b033acc4dp-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6p-4L : -0x4.0aed4072c8f9941602406d1b43e8p-60L 0xd.1c0afa7c2223848941b033acc4d8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6p-4L : -0x4.0aed4072c8f9941602406d1b44p-60L 0xd.1c0afa7c2223848941b033acc4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6p-4L : -0x4.0aed4072c8f9941602406d1b44p-60L 0xd.1c0afa7c2223848941b033acc4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6p-4L : -0x4.0aed4072c8f9941602406d1b42p-60L 0xd.1c0afa7c2223848941b033acc4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6p-4L : -0x4.0aed4072c8f9941602406d1b42p-60L 0xd.1c0afa7c2223848941b033acc8p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6059p-4L : 0x5.96f7eac5a423e701e22f74d1425cp-68L 0xd.1c0afa7c222388556b7cf6e4df88p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6059p-4L : 0x5.96f7eac5a423e701e22f74d1426p-68L 0xd.1c0afa7c222388556b7cf6e4df88p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6059p-4L : 0x5.96f7eac5a423e701e22f74d1425cp-68L 0xd.1c0afa7c222388556b7cf6e4df88p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6059p-4L : 0x5.96f7eac5a423e701e22f74d1426p-68L 0xd.1c0afa7c222388556b7cf6e4df9p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6059p-4L : 0x5.96f7eac5a423e701e22f74d142p-68L 0xd.1c0afa7c222388556b7cf6e4dcp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6059p-4L : 0x5.96f7eac5a423e701e22f74d142p-68L 0xd.1c0afa7c222388556b7cf6e4ep-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6059p-4L : 0x5.96f7eac5a423e701e22f74d142p-68L 0xd.1c0afa7c222388556b7cf6e4dcp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6059p-4L : 0x5.96f7eac5a423e701e22f74d144p-68L 0xd.1c0afa7c222388556b7cf6e4ep-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058p-4L : -0x6.19fa558f60821e867d8b0ec36b34p-68L 0xd.1c0afa7c2223884a7f273f7cb13p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058p-4L : -0x6.19fa558f60821e867d8b0ec36b3p-68L 0xd.1c0afa7c2223884a7f273f7cb138p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058p-4L : -0x6.19fa558f60821e867d8b0ec36b3p-68L 0xd.1c0afa7c2223884a7f273f7cb13p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058p-4L : -0x6.19fa558f60821e867d8b0ec36b3p-68L 0xd.1c0afa7c2223884a7f273f7cb138p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058p-4L : -0x6.19fa558f60821e867d8b0ec36cp-68L 0xd.1c0afa7c2223884a7f273f7cbp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058p-4L : -0x6.19fa558f60821e867d8b0ec36cp-68L 0xd.1c0afa7c2223884a7f273f7cbp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058p-4L : -0x6.19fa558f60821e867d8b0ec36ap-68L 0xd.1c0afa7c2223884a7f273f7cbp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058p-4L : -0x6.19fa558f60821e867d8b0ec36ap-68L 0xd.1c0afa7c2223884a7f273f7cb4p-4L : inexact-ok += clog downward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x4.1ffffffffffffffffffffffffffcp-208L 0xd.1c0afa7c222388503285b7ec97a8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x4.2p-208L 0xd.1c0afa7c222388503285b7ec97a8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x4.1ffffffffffffffffffffffffffcp-208L 0xd.1c0afa7c222388503285b7ec97a8p-4L : inexact-ok += clog upward ldbl-128 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x4.2p-208L 0xd.1c0afa7c222388503285b7ec97bp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x4.1ffffffffffffffffffffffffep-208L 0xd.1c0afa7c222388503285b7ec94p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x4.2p-208L 0xd.1c0afa7c222388503285b7ec98p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x4.1ffffffffffffffffffffffffep-208L 0xd.1c0afa7c222388503285b7ec94p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.ec55b7682e528a043561d0f42p-4L 0xb.b0f2405504a6058859a584e748p-4L : 0x4.2p-208L 0xd.1c0afa7c222388503285b7ec98p-4L : inexact-ok +clog 0x187190c1a334497bdbde5a95f48p-106 0x3b25f08062d0a095c4cfbbc338dp-106 += clog downward flt-32 0x6.1c6438p-4f 0xe.c97c3p-4f : 0x1.198d28p-24f 0x1.2dcd1cp+0f : inexact-ok += clog tonearest flt-32 0x6.1c6438p-4f 0xe.c97c3p-4f : 0x1.198d2ap-24f 0x1.2dcd1cp+0f : inexact-ok += clog towardzero flt-32 0x6.1c6438p-4f 0xe.c97c3p-4f : 0x1.198d28p-24f 0x1.2dcd1cp+0f : inexact-ok += clog upward flt-32 0x6.1c6438p-4f 0xe.c97c3p-4f : 0x1.198d2ap-24f 0x1.2dcd1ep+0f : inexact-ok += clog downward dbl-64 0x6.1c6438p-4 0xe.c97c3p-4 : 0x1.198d296a58cc5p-24 0x1.2dcd1c9887706p+0 : inexact-ok += clog tonearest dbl-64 0x6.1c6438p-4 0xe.c97c3p-4 : 0x1.198d296a58cc6p-24 0x1.2dcd1c9887707p+0 : inexact-ok += clog towardzero dbl-64 0x6.1c6438p-4 0xe.c97c3p-4 : 0x1.198d296a58cc5p-24 0x1.2dcd1c9887706p+0 : inexact-ok += clog upward dbl-64 0x6.1c6438p-4 0xe.c97c3p-4 : 0x1.198d296a58cc6p-24 0x1.2dcd1c9887707p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad8p-24L 0x1.2dcd1c9887706e12p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5adap-24L 0x1.2dcd1c9887706e12p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad8p-24L 0x1.2dcd1c9887706e12p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5adap-24L 0x1.2dcd1c9887706e14p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad8p-24L 0x1.2dcd1c9887706e12p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5adap-24L 0x1.2dcd1c9887706e12p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad8p-24L 0x1.2dcd1c9887706e12p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5adap-24L 0x1.2dcd1c9887706e14p+0L : inexact-ok += clog downward ldbl-128 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad9073c5a7e75ap-24L 0x1.2dcd1c9887706e12360b2fffcf95p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad9073c5a7e75a1p-24L 0x1.2dcd1c9887706e12360b2fffcf95p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad9073c5a7e75ap-24L 0x1.2dcd1c9887706e12360b2fffcf95p+0L : inexact-ok += clog upward ldbl-128 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad9073c5a7e75a1p-24L 0x1.2dcd1c9887706e12360b2fffcf96p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad9073c5a7e758p-24L 0x1.2dcd1c9887706e12360b2fffcf8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad9073c5a7e758p-24L 0x1.2dcd1c9887706e12360b2fffcf8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad9073c5a7e758p-24L 0x1.2dcd1c9887706e12360b2fffcf8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c3p-4L : 0x1.198d296a58cc5ad9073c5a7e76p-24L 0x1.2dcd1c9887706e12360b2fffdp+0L : inexact-ok += clog downward flt-32 0x6.1c6438p-4f 0xe.c97c2p-4f : 0x2.cf568p-28f 0x1.2dcd1cp+0f : inexact-ok += clog tonearest flt-32 0x6.1c6438p-4f 0xe.c97c2p-4f : 0x2.cf568p-28f 0x1.2dcd1cp+0f : inexact-ok += clog towardzero flt-32 0x6.1c6438p-4f 0xe.c97c2p-4f : 0x2.cf568p-28f 0x1.2dcd1cp+0f : inexact-ok += clog upward flt-32 0x6.1c6438p-4f 0xe.c97c2p-4f : 0x2.cf5684p-28f 0x1.2dcd1ep+0f : inexact-ok += clog downward dbl-64 0x6.1c6438p-4 0xe.c97c2p-4 : 0x2.cf568181ab8f6p-28 0x1.2dcd1c36c12d6p+0 : inexact-ok += clog tonearest dbl-64 0x6.1c6438p-4 0xe.c97c2p-4 : 0x2.cf568181ab8f6p-28 0x1.2dcd1c36c12d7p+0 : inexact-ok += clog towardzero dbl-64 0x6.1c6438p-4 0xe.c97c2p-4 : 0x2.cf568181ab8f6p-28 0x1.2dcd1c36c12d6p+0 : inexact-ok += clog upward dbl-64 0x6.1c6438p-4 0xe.c97c2p-4 : 0x2.cf568181ab8f8p-28 0x1.2dcd1c36c12d7p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f6618p-28L 0x1.2dcd1c36c12d6ac6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661cp-28L 0x1.2dcd1c36c12d6ac6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f6618p-28L 0x1.2dcd1c36c12d6ac6p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661cp-28L 0x1.2dcd1c36c12d6ac8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f6618p-28L 0x1.2dcd1c36c12d6ac6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661cp-28L 0x1.2dcd1c36c12d6ac6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f6618p-28L 0x1.2dcd1c36c12d6ac6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661cp-28L 0x1.2dcd1c36c12d6ac8p+0L : inexact-ok += clog downward ldbl-128 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661b31cf8b8d6a9ep-28L 0x1.2dcd1c36c12d6ac68defaede85e9p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661b31cf8b8d6aap-28L 0x1.2dcd1c36c12d6ac68defaede85e9p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661b31cf8b8d6a9ep-28L 0x1.2dcd1c36c12d6ac68defaede85e9p+0L : inexact-ok += clog upward ldbl-128 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661b31cf8b8d6aap-28L 0x1.2dcd1c36c12d6ac68defaede85eap+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661b31cf8b8d6ap-28L 0x1.2dcd1c36c12d6ac68defaede858p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661b31cf8b8d6bp-28L 0x1.2dcd1c36c12d6ac68defaede86p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661b31cf8b8d6ap-28L 0x1.2dcd1c36c12d6ac68defaede858p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2p-4L : 0x2.cf568181ab8f661b31cf8b8d6bp-28L 0x1.2dcd1c36c12d6ac68defaede86p+0L : inexact-ok += clog downward dbl-64 0x6.1c6438p-4 0xe.c97c2018b4288p-4 : 0x2.e62b3bcc0358cp-28 0x1.2dcd1c375823bp+0 : inexact-ok += clog tonearest dbl-64 0x6.1c6438p-4 0xe.c97c2018b4288p-4 : 0x2.e62b3bcc0358cp-28 0x1.2dcd1c375823cp+0 : inexact-ok += clog towardzero dbl-64 0x6.1c6438p-4 0xe.c97c2018b4288p-4 : 0x2.e62b3bcc0358cp-28 0x1.2dcd1c375823bp+0 : inexact-ok += clog upward dbl-64 0x6.1c6438p-4 0xe.c97c2018b4288p-4 : 0x2.e62b3bcc0358ep-28 0x1.2dcd1c375823cp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccp-28L 0x1.2dcd1c375823bdc4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccp-28L 0x1.2dcd1c375823bdc6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccp-28L 0x1.2dcd1c375823bdc4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3dp-28L 0x1.2dcd1c375823bdc6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccp-28L 0x1.2dcd1c375823bdc4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccp-28L 0x1.2dcd1c375823bdc6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccp-28L 0x1.2dcd1c375823bdc4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3dp-28L 0x1.2dcd1c375823bdc6p+0L : inexact-ok += clog downward ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccd3fe0d9839d4p-28L 0x1.2dcd1c375823bdc5eb470e749c5ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccd3fe0d9839d4p-28L 0x1.2dcd1c375823bdc5eb470e749c5fp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccd3fe0d9839d4p-28L 0x1.2dcd1c375823bdc5eb470e749c5ep+0L : inexact-ok += clog upward ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccd3fe0d9839d6p-28L 0x1.2dcd1c375823bdc5eb470e749c5fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccd3fe0d9839p-28L 0x1.2dcd1c375823bdc5eb470e749cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccd3fe0d983ap-28L 0x1.2dcd1c375823bdc5eb470e749c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccd3fe0d9839p-28L 0x1.2dcd1c375823bdc5eb470e749cp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b4288p-4L : 0x2.e62b3bcc0358c3ccd3fe0d983ap-28L 0x1.2dcd1c375823bdc5eb470e749c8p+0L : inexact-ok += clog downward dbl-64 0x6.1c6438p-4 0xe.c97c2018b428p-4 : 0x2.e62b3b55b777ep-28 0x1.2dcd1c375823bp+0 : inexact-ok += clog tonearest dbl-64 0x6.1c6438p-4 0xe.c97c2018b428p-4 : 0x2.e62b3b55b777ep-28 0x1.2dcd1c375823cp+0 : inexact-ok += clog towardzero dbl-64 0x6.1c6438p-4 0xe.c97c2018b428p-4 : 0x2.e62b3b55b777ep-28 0x1.2dcd1c375823bp+0 : inexact-ok += clog upward dbl-64 0x6.1c6438p-4 0xe.c97c2018b428p-4 : 0x2.e62b3b55b778p-28 0x1.2dcd1c375823cp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede4p-28L 0x1.2dcd1c375823bab6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede4p-28L 0x1.2dcd1c375823bab8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede4p-28L 0x1.2dcd1c375823bab6p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede8p-28L 0x1.2dcd1c375823bab8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede4p-28L 0x1.2dcd1c375823bab6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede4p-28L 0x1.2dcd1c375823bab8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede4p-28L 0x1.2dcd1c375823bab6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede8p-28L 0x1.2dcd1c375823bab8p+0L : inexact-ok += clog downward ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede5afc1f7cfffbp-28L 0x1.2dcd1c375823bab7b92c29e9c6ddp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede5afc1f7cfffbp-28L 0x1.2dcd1c375823bab7b92c29e9c6dep+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede5afc1f7cfffbp-28L 0x1.2dcd1c375823bab7b92c29e9c6ddp+0L : inexact-ok += clog upward ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede5afc1f7cfffb2p-28L 0x1.2dcd1c375823bab7b92c29e9c6dep+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede5afc1f7cfffp-28L 0x1.2dcd1c375823bab7b92c29e9c68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede5afc1f7dp-28L 0x1.2dcd1c375823bab7b92c29e9c7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede5afc1f7cfffp-28L 0x1.2dcd1c375823bab7b92c29e9c68p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428p-4L : 0x2.e62b3b55b777ede5afc1f7dp-28L 0x1.2dcd1c375823bab7b92c29e9c7p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc9p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc9p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc9p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc94p-28L 0x1.2dcd1c375823bb9ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc9p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc9p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc9p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc94p-28L 0x1.2dcd1c375823bb9ep+0L : inexact-ok += clog downward ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc90675fdd4ed398p-28L 0x1.2dcd1c375823bb9ce1da0ade736fp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc90675fdd4ed398p-28L 0x1.2dcd1c375823bb9ce1da0ade736fp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc90675fdd4ed398p-28L 0x1.2dcd1c375823bb9ce1da0ade736fp+0L : inexact-ok += clog upward ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc90675fdd4ed39ap-28L 0x1.2dcd1c375823bb9ce1da0ade737p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc90675fdd4ed3p-28L 0x1.2dcd1c375823bb9ce1da0ade73p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc90675fdd4ed4p-28L 0x1.2dcd1c375823bb9ce1da0ade738p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc90675fdd4ed3p-28L 0x1.2dcd1c375823bb9ce1da0ade73p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428258p-4L : 0x2.e62b3b785fb2cc90675fdd4ed4p-28L 0x1.2dcd1c375823bb9ce1da0ade738p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95074p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95074p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95074p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95078p-28L 0x1.2dcd1c375823bb9ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95074p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95074p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95074p-28L 0x1.2dcd1c375823bb9cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95078p-28L 0x1.2dcd1c375823bb9ep+0L : inexact-ok += clog downward ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95075aa7b55b95016p-28L 0x1.2dcd1c375823bb9c8013c781e214p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95075aa7b55b95016p-28L 0x1.2dcd1c375823bb9c8013c781e215p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95075aa7b55b95016p-28L 0x1.2dcd1c375823bb9c8013c781e214p+0L : inexact-ok += clog upward ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95075aa7b55b95018p-28L 0x1.2dcd1c375823bb9c8013c781e215p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95075aa7b55b95p-28L 0x1.2dcd1c375823bb9c8013c781e2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95075aa7b55b95p-28L 0x1.2dcd1c375823bb9c8013c781e2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95075aa7b55b95p-28L 0x1.2dcd1c375823bb9c8013c781e2p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428257p-4L : 0x2.e62b3b7850e95075aa7b55b951p-28L 0x1.2dcd1c375823bb9c8013c781e28p+0L : inexact-ok += clog downward ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x2.e62b3b785205e7468e692e2730ecp-28L 0x1.2dcd1c375823bb9c876d87d31643p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x2.e62b3b785205e7468e692e2730eep-28L 0x1.2dcd1c375823bb9c876d87d31643p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x2.e62b3b785205e7468e692e2730ecp-28L 0x1.2dcd1c375823bb9c876d87d31643p+0L : inexact-ok += clog upward ldbl-128 0x6.1c6438p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x2.e62b3b785205e7468e692e2730eep-28L 0x1.2dcd1c375823bb9c876d87d31644p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x2.e62b3b785205e7468e692e273p-28L 0x1.2dcd1c375823bb9c876d87d316p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x2.e62b3b785205e7468e692e2731p-28L 0x1.2dcd1c375823bb9c876d87d3168p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x2.e62b3b785205e7468e692e273p-28L 0x1.2dcd1c375823bb9c876d87d316p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c6438p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x2.e62b3b785205e7468e692e2731p-28L 0x1.2dcd1c375823bb9c876d87d3168p+0L : inexact-ok += clog downward flt-32 0x6.1c643p-4f 0xe.c97c3p-4f : 0xe.8aa08p-28f 0x1.2dcd1cp+0f : inexact-ok += clog tonearest flt-32 0x6.1c643p-4f 0xe.c97c3p-4f : 0xe.8aa08p-28f 0x1.2dcd1ep+0f : inexact-ok += clog towardzero flt-32 0x6.1c643p-4f 0xe.c97c3p-4f : 0xe.8aa08p-28f 0x1.2dcd1cp+0f : inexact-ok += clog upward flt-32 0x6.1c643p-4f 0xe.c97c3p-4f : 0xe.8aa09p-28f 0x1.2dcd1ep+0f : inexact-ok += clog downward dbl-64 0x6.1c643p-4 0xe.c97c3p-4 : 0xe.8aa082c8b5fcp-28 0x1.2dcd1d0ed351p+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643p-4 0xe.c97c3p-4 : 0xe.8aa082c8b5fcp-28 0x1.2dcd1d0ed351p+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643p-4 0xe.c97c3p-4 : 0xe.8aa082c8b5fcp-28 0x1.2dcd1d0ed351p+0 : inexact-ok += clog upward dbl-64 0x6.1c643p-4 0xe.c97c3p-4 : 0xe.8aa082c8b5fc8p-28 0x1.2dcd1d0ed3511p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc049p-28L 0x1.2dcd1d0ed3510074p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc049p-28L 0x1.2dcd1d0ed3510074p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc049p-28L 0x1.2dcd1d0ed3510074p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc04ap-28L 0x1.2dcd1d0ed3510076p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc049p-28L 0x1.2dcd1d0ed3510074p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc049p-28L 0x1.2dcd1d0ed3510074p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc049p-28L 0x1.2dcd1d0ed3510074p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc04ap-28L 0x1.2dcd1d0ed3510076p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc0493452dc7a9f3b8p-28L 0x1.2dcd1d0ed35100745b03584a43cbp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc0493452dc7a9f3b8p-28L 0x1.2dcd1d0ed35100745b03584a43cbp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc0493452dc7a9f3b8p-28L 0x1.2dcd1d0ed35100745b03584a43cbp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc0493452dc7a9f3cp-28L 0x1.2dcd1d0ed35100745b03584a43ccp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc0493452dc7a9fp-28L 0x1.2dcd1d0ed35100745b03584a438p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc0493452dc7a9f4p-28L 0x1.2dcd1d0ed35100745b03584a44p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc0493452dc7a9fp-28L 0x1.2dcd1d0ed35100745b03584a438p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c3p-4L : 0xe.8aa082c8b5fc0493452dc7a9f4p-28L 0x1.2dcd1d0ed35100745b03584a44p+0L : inexact-ok += clog downward flt-32 0x6.1c643p-4f 0xe.c97c2p-4f : -0x3.edb984p-32f 0x1.2dcd1cp+0f : inexact-ok += clog tonearest flt-32 0x6.1c643p-4f 0xe.c97c2p-4f : -0x3.edb98p-32f 0x1.2dcd1cp+0f : inexact-ok += clog towardzero flt-32 0x6.1c643p-4f 0xe.c97c2p-4f : -0x3.edb98p-32f 0x1.2dcd1cp+0f : inexact-ok += clog upward flt-32 0x6.1c643p-4f 0xe.c97c2p-4f : -0x3.edb98p-32f 0x1.2dcd1ep+0f : inexact-ok += clog downward dbl-64 0x6.1c643p-4 0xe.c97c2p-4 : -0x3.edb9800f6f1ap-32 0x1.2dcd1cad0d0e5p+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643p-4 0xe.c97c2p-4 : -0x3.edb9800f6f1ap-32 0x1.2dcd1cad0d0e5p+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643p-4 0xe.c97c2p-4 : -0x3.edb9800f6f19ep-32 0x1.2dcd1cad0d0e5p+0 : inexact-ok += clog upward dbl-64 0x6.1c643p-4 0xe.c97c2p-4 : -0x3.edb9800f6f19ep-32 0x1.2dcd1cad0d0e6p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbcp-32L 0x1.2dcd1cad0d0e57dp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbcp-32L 0x1.2dcd1cad0d0e57dp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdb8p-32L 0x1.2dcd1cad0d0e57dp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdb8p-32L 0x1.2dcd1cad0d0e57d2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbcp-32L 0x1.2dcd1cad0d0e57dp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbcp-32L 0x1.2dcd1cad0d0e57dp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdb8p-32L 0x1.2dcd1cad0d0e57dp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdb8p-32L 0x1.2dcd1cad0d0e57d2p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbb18756370bcd8p-32L 0x1.2dcd1cad0d0e57d0da2b6d64a818p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbb18756370bcd8p-32L 0x1.2dcd1cad0d0e57d0da2b6d64a818p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbb18756370bcd6p-32L 0x1.2dcd1cad0d0e57d0da2b6d64a818p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbb18756370bcd6p-32L 0x1.2dcd1cad0d0e57d0da2b6d64a819p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbb18756370bdp-32L 0x1.2dcd1cad0d0e57d0da2b6d64a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbb18756370bdp-32L 0x1.2dcd1cad0d0e57d0da2b6d64a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbb18756370bcp-32L 0x1.2dcd1cad0d0e57d0da2b6d64a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2p-4L : -0x3.edb9800f6f19fdbb18756370bcp-32L 0x1.2dcd1cad0d0e57d0da2b6d64a88p+0L : inexact-ok += clog downward dbl-64 0x6.1c643p-4 0xe.c97c2018b4288p-4 : -0x2.806ddade6df26p-32 0x1.2dcd1cada404ap+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643p-4 0xe.c97c2018b4288p-4 : -0x2.806ddade6df24p-32 0x1.2dcd1cada404bp+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643p-4 0xe.c97c2018b4288p-4 : -0x2.806ddade6df24p-32 0x1.2dcd1cada404ap+0 : inexact-ok += clog upward dbl-64 0x6.1c643p-4 0xe.c97c2018b4288p-4 : -0x2.806ddade6df24p-32 0x1.2dcd1cada404bp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f8p-32L 0x1.2dcd1cada404aa44p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f4p-32L 0x1.2dcd1cada404aa44p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f4p-32L 0x1.2dcd1cada404aa44p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f4p-32L 0x1.2dcd1cada404aa46p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f8p-32L 0x1.2dcd1cada404aa44p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f4p-32L 0x1.2dcd1cada404aa44p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f4p-32L 0x1.2dcd1cada404aa44p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f4p-32L 0x1.2dcd1cada404aa46p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f49e1bc75d45dap-32L 0x1.2dcd1cada404aa443e7e689fdbdp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f49e1bc75d45d8p-32L 0x1.2dcd1cada404aa443e7e689fdbd1p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f49e1bc75d45d8p-32L 0x1.2dcd1cada404aa443e7e689fdbdp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f49e1bc75d45d8p-32L 0x1.2dcd1cada404aa443e7e689fdbd1p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f49e1bc75d46p-32L 0x1.2dcd1cada404aa443e7e689fdb8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f49e1bc75d46p-32L 0x1.2dcd1cada404aa443e7e689fdcp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f49e1bc75d45p-32L 0x1.2dcd1cada404aa443e7e689fdb8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b4288p-4L : -0x2.806ddade6df244f49e1bc75d45p-32L 0x1.2dcd1cada404aa443e7e689fdcp+0L : inexact-ok += clog downward dbl-64 0x6.1c643p-4 0xe.c97c2018b428p-4 : -0x2.806de2432c028p-32 0x1.2dcd1cada404ap+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643p-4 0xe.c97c2018b428p-4 : -0x2.806de2432c028p-32 0x1.2dcd1cada404ap+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643p-4 0xe.c97c2018b428p-4 : -0x2.806de2432c026p-32 0x1.2dcd1cada404ap+0 : inexact-ok += clog upward dbl-64 0x6.1c643p-4 0xe.c97c2018b428p-4 : -0x2.806de2432c026p-32 0x1.2dcd1cada404bp+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02765p-32L 0x1.2dcd1cada404a736p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cp-32L 0x1.2dcd1cada404a736p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cp-32L 0x1.2dcd1cada404a736p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cp-32L 0x1.2dcd1cada404a738p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02765p-32L 0x1.2dcd1cada404a736p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cp-32L 0x1.2dcd1cada404a736p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cp-32L 0x1.2dcd1cada404a736p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cp-32L 0x1.2dcd1cada404a738p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cc1315225e17ap-32L 0x1.2dcd1cada404a7360c66595641f2p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cc1315225e178p-32L 0x1.2dcd1cada404a7360c66595641f2p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cc1315225e178p-32L 0x1.2dcd1cada404a7360c66595641f2p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cc1315225e178p-32L 0x1.2dcd1cada404a7360c66595641f3p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cc1315225e2p-32L 0x1.2dcd1cada404a7360c665956418p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cc1315225e1p-32L 0x1.2dcd1cada404a7360c66595642p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cc1315225e1p-32L 0x1.2dcd1cada404a7360c665956418p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428p-4L : -0x2.806de2432c02764cc1315225e1p-32L 0x1.2dcd1cada404a7360c66595642p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d8p-32L 0x1.2dcd1cada404a81ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d8p-32L 0x1.2dcd1cada404a81cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d4p-32L 0x1.2dcd1cada404a81ap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d4p-32L 0x1.2dcd1cada404a81cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d8p-32L 0x1.2dcd1cada404a81ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d8p-32L 0x1.2dcd1cada404a81cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d4p-32L 0x1.2dcd1cada404a81ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d4p-32L 0x1.2dcd1cada404a81cp+0L : inexact-ok += clog downward ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d7eee550aa67cap-32L 0x1.2dcd1cada404a81b351365d0d20bp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d7eee550aa67c8p-32L 0x1.2dcd1cada404a81b351365d0d20bp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d7eee550aa67c8p-32L 0x1.2dcd1cada404a81b351365d0d20bp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d7eee550aa67c8p-32L 0x1.2dcd1cada404a81b351365d0d20cp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d7eee550aa68p-32L 0x1.2dcd1cada404a81b351365d0d2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d7eee550aa68p-32L 0x1.2dcd1cada404a81b351365d0d2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d7eee550aa67p-32L 0x1.2dcd1cada404a81b351365d0d2p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428258p-4L : -0x2.806de018a853b7d7eee550aa67p-32L 0x1.2dcd1cada404a81b351365d0d28p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79ep-32L 0x1.2dcd1cada404a81ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79ep-32L 0x1.2dcd1cada404a81ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79dcp-32L 0x1.2dcd1cada404a81ap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79dcp-32L 0x1.2dcd1cada404a81cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79ep-32L 0x1.2dcd1cada404a81ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79ep-32L 0x1.2dcd1cada404a81ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79dcp-32L 0x1.2dcd1cada404a81ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79dcp-32L 0x1.2dcd1cada404a81cp+0L : inexact-ok += clog downward ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79de19e9b4886888p-32L 0x1.2dcd1cada404a81ad34d22cee8d7p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79de19e9b4886888p-32L 0x1.2dcd1cada404a81ad34d22cee8d8p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79de19e9b4886886p-32L 0x1.2dcd1cada404a81ad34d22cee8d7p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79de19e9b4886886p-32L 0x1.2dcd1cada404a81ad34d22cee8d8p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79de19e9b48869p-32L 0x1.2dcd1cada404a81ad34d22cee88p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79de19e9b48869p-32L 0x1.2dcd1cada404a81ad34d22cee9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79de19e9b48868p-32L 0x1.2dcd1cada404a81ad34d22cee88p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428257p-4L : -0x2.806de01994eb79de19e9b48868p-32L 0x1.2dcd1cada404a81ad34d22cee9p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.806de01983220cc90ff3649fa148p-32L 0x1.2dcd1cada404a81adaa6e3194c42p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.806de01983220cc90ff3649fa146p-32L 0x1.2dcd1cada404a81adaa6e3194c42p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.806de01983220cc90ff3649fa146p-32L 0x1.2dcd1cada404a81adaa6e3194c42p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.806de01983220cc90ff3649fa146p-32L 0x1.2dcd1cada404a81adaa6e3194c43p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.806de01983220cc90ff3649fa2p-32L 0x1.2dcd1cada404a81adaa6e3194cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.806de01983220cc90ff3649fa1p-32L 0x1.2dcd1cada404a81adaa6e3194c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.806de01983220cc90ff3649fa1p-32L 0x1.2dcd1cada404a81adaa6e3194cp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.806de01983220cc90ff3649fa1p-32L 0x1.2dcd1cada404a81adaa6e3194c8p+0L : inexact-ok += clog downward dbl-64 0x6.1c643068cd128p-4 0xe.c97c3p-4 : 0xe.b2a7608d624dp-28 0x1.2dcd1d08c59e2p+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643068cd128p-4 0xe.c97c3p-4 : 0xe.b2a7608d624d8p-28 0x1.2dcd1d08c59e3p+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643068cd128p-4 0xe.c97c3p-4 : 0xe.b2a7608d624dp-28 0x1.2dcd1d08c59e2p+0 : inexact-ok += clog upward dbl-64 0x6.1c643068cd128p-4 0xe.c97c3p-4 : 0xe.b2a7608d624d8p-28 0x1.2dcd1d08c59e3p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d63p-28L 0x1.2dcd1d08c59e2e02p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d631p-28L 0x1.2dcd1d08c59e2e02p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d63p-28L 0x1.2dcd1d08c59e2e02p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d631p-28L 0x1.2dcd1d08c59e2e04p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d63p-28L 0x1.2dcd1d08c59e2e02p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d631p-28L 0x1.2dcd1d08c59e2e02p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d63p-28L 0x1.2dcd1d08c59e2e02p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d631p-28L 0x1.2dcd1d08c59e2e04p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d630ada856d49e0c8p-28L 0x1.2dcd1d08c59e2e02751f710c8538p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d630ada856d49e0c8p-28L 0x1.2dcd1d08c59e2e02751f710c8539p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d630ada856d49e0c8p-28L 0x1.2dcd1d08c59e2e02751f710c8538p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d630ada856d49e0dp-28L 0x1.2dcd1d08c59e2e02751f710c8539p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d630ada856d49ep-28L 0x1.2dcd1d08c59e2e02751f710c85p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d630ada856d49ep-28L 0x1.2dcd1d08c59e2e02751f710c85p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d630ada856d49ep-28L 0x1.2dcd1d08c59e2e02751f710c85p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c3p-4L : 0xe.b2a7608d624d630ada856d49e4p-28L 0x1.2dcd1d08c59e2e02751f710c858p+0L : inexact-ok += clog downward dbl-64 0x6.1c643068cd128p-4 0xe.c97c2p-4 : -0x1.6d4b9f24e8272p-32 0x1.2dcd1ca6ff5b8p+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643068cd128p-4 0xe.c97c2p-4 : -0x1.6d4b9f24e8271p-32 0x1.2dcd1ca6ff5b8p+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643068cd128p-4 0xe.c97c2p-4 : -0x1.6d4b9f24e8271p-32 0x1.2dcd1ca6ff5b8p+0 : inexact-ok += clog upward dbl-64 0x6.1c643068cd128p-4 0xe.c97c2p-4 : -0x1.6d4b9f24e8271p-32 0x1.2dcd1ca6ff5b9p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d4p-32L 0x1.2dcd1ca6ff5b80bap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2p-32L 0x1.2dcd1ca6ff5b80bcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2p-32L 0x1.2dcd1ca6ff5b80bap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2p-32L 0x1.2dcd1ca6ff5b80bcp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d4p-32L 0x1.2dcd1ca6ff5b80bap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2p-32L 0x1.2dcd1ca6ff5b80bcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2p-32L 0x1.2dcd1ca6ff5b80bap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2p-32L 0x1.2dcd1ca6ff5b80bcp+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2c59178aad51bp-32L 0x1.2dcd1ca6ff5b80bb565fa65292a2p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2c59178aad51bp-32L 0x1.2dcd1ca6ff5b80bb565fa65292a3p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2c59178aad51ap-32L 0x1.2dcd1ca6ff5b80bb565fa65292a2p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2c59178aad51ap-32L 0x1.2dcd1ca6ff5b80bb565fa65292a3p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2c59178aad58p-32L 0x1.2dcd1ca6ff5b80bb565fa652928p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2c59178aad5p-32L 0x1.2dcd1ca6ff5b80bb565fa652928p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2c59178aad5p-32L 0x1.2dcd1ca6ff5b80bb565fa652928p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2p-4L : -0x1.6d4b9f24e82712d2c59178aad5p-32L 0x1.2dcd1ca6ff5b80bb565fa65293p+0L : inexact-ok += clog downward dbl-64 0x6.1c643068cd128p-4 0xe.c97c2018b4288p-4 : 0x6.04f54cd7ce5fp-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643068cd128p-4 0xe.c97c2018b4288p-4 : 0x6.04f54cd7ce5fp-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643068cd128p-4 0xe.c97c2018b4288p-4 : 0x6.04f54cd7ce5fp-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog upward dbl-64 0x6.1c643068cd128p-4 0xe.c97c2018b4288p-4 : 0x6.04f54cd7ce5f4p-56 0x1.2dcd1ca79651ep+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bcp-56L 0x1.2dcd1ca79651d334p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc8p-56L 0x1.2dcd1ca79651d336p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bcp-56L 0x1.2dcd1ca79651d334p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc8p-56L 0x1.2dcd1ca79651d336p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bcp-56L 0x1.2dcd1ca79651d334p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc8p-56L 0x1.2dcd1ca79651d336p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bcp-56L 0x1.2dcd1ca79651d334p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc8p-56L 0x1.2dcd1ca79651d336p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc467d06f68f54cp-56L 0x1.2dcd1ca79651d335e45befd4639ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc467d06f68f55p-56L 0x1.2dcd1ca79651d335e45befd4639fp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc467d06f68f54cp-56L 0x1.2dcd1ca79651d335e45befd4639ep+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc467d06f68f55p-56L 0x1.2dcd1ca79651d335e45befd4639fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc467d06f68f4p-56L 0x1.2dcd1ca79651d335e45befd4638p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc467d06f68f6p-56L 0x1.2dcd1ca79651d335e45befd4638p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc467d06f68f4p-56L 0x1.2dcd1ca79651d335e45befd4638p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b4288p-4L : 0x6.04f54cd7ce5f1bc467d06f68f6p-56L 0x1.2dcd1ca79651d335e45befd464p+0L : inexact-ok += clog downward dbl-64 0x6.1c643068cd128p-4 0xe.c97c2018b428p-4 : -0x1.5fc8c3348bb4fp-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643068cd128p-4 0xe.c97c2018b428p-4 : -0x1.5fc8c3348bb4ep-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643068cd128p-4 0xe.c97c2018b428p-4 : -0x1.5fc8c3348bb4ep-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog upward dbl-64 0x6.1c643068cd128p-4 0xe.c97c2018b428p-4 : -0x1.5fc8c3348bb4ep-56 0x1.2dcd1ca79651ep+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e4p-56L 0x1.2dcd1ca79651d026p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e4p-56L 0x1.2dcd1ca79651d028p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e2p-56L 0x1.2dcd1ca79651d026p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e2p-56L 0x1.2dcd1ca79651d028p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e4p-56L 0x1.2dcd1ca79651d026p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e4p-56L 0x1.2dcd1ca79651d028p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e2p-56L 0x1.2dcd1ca79651d026p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e2p-56L 0x1.2dcd1ca79651d028p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e36824bbae0d64p-56L 0x1.2dcd1ca79651d027b243bb6dda6dp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e36824bbae0d64p-56L 0x1.2dcd1ca79651d027b243bb6dda6dp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e36824bbae0d63p-56L 0x1.2dcd1ca79651d027b243bb6dda6dp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e36824bbae0d63p-56L 0x1.2dcd1ca79651d027b243bb6dda6ep+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e36824bbae0d8p-56L 0x1.2dcd1ca79651d027b243bb6ddap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e36824bbae0d8p-56L 0x1.2dcd1ca79651d027b243bb6dda8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e36824bbae0dp-56L 0x1.2dcd1ca79651d027b243bb6ddap+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428p-4L : -0x1.5fc8c3348bb4e1e36824bbae0dp-56L 0x1.2dcd1ca79651d027b243bb6dda8p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1ep-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1fp-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1ep-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1fp-60L 0x1.2dcd1ca79651d10ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1ep-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1fp-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1ep-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1fp-60L 0x1.2dcd1ca79651d10ep+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1e947be0693a248p-60L 0x1.2dcd1ca79651d10cdaf0d2c7e4a3p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1e947be0693a25p-60L 0x1.2dcd1ca79651d10cdaf0d2c7e4a3p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1e947be0693a248p-60L 0x1.2dcd1ca79651d10cdaf0d2c7e4a3p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1e947be0693a25p-60L 0x1.2dcd1ca79651d10cdaf0d2c7e4a4p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1e947be0693ap-60L 0x1.2dcd1ca79651d10cdaf0d2c7e48p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1e947be0693a4p-60L 0x1.2dcd1ca79651d10cdaf0d2c7e48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1e947be0693ap-60L 0x1.2dcd1ca79651d10cdaf0d2c7e48p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428258p-4L : 0xc.abaeb7f12aefe1e947be0693a4p-60L 0x1.2dcd1ca79651d10cdaf0d2c7e5p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9dp-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9ep-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9dp-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9ep-60L 0x1.2dcd1ca79651d10ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9dp-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9ep-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9dp-60L 0x1.2dcd1ca79651d10cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9ep-60L 0x1.2dcd1ca79651d10ep+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9db2da363b6a288p-60L 0x1.2dcd1ca79651d10c792a8fc157d2p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9db2da363b6a29p-60L 0x1.2dcd1ca79651d10c792a8fc157d2p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9db2da363b6a288p-60L 0x1.2dcd1ca79651d10c792a8fc157d2p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9db2da363b6a29p-60L 0x1.2dcd1ca79651d10c792a8fc157d3p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9db2da363b6ap-60L 0x1.2dcd1ca79651d10c792a8fc1578p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9db2da363b6a4p-60L 0x1.2dcd1ca79651d10c792a8fc158p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9db2da363b6ap-60L 0x1.2dcd1ca79651d10c792a8fc1578p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428257p-4L : 0xc.9ce53bd1123bb9db2da363b6a4p-60L 0x1.2dcd1ca79651d10c792a8fc158p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0xc.9e01d2a25d4b3876c527816453ap-60L 0x1.2dcd1ca79651d10c8084500c1485p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0xc.9e01d2a25d4b3876c527816453a8p-60L 0x1.2dcd1ca79651d10c8084500c1485p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0xc.9e01d2a25d4b3876c527816453ap-60L 0x1.2dcd1ca79651d10c8084500c1485p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd128p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0xc.9e01d2a25d4b3876c527816453a8p-60L 0x1.2dcd1ca79651d10c8084500c1486p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0xc.9e01d2a25d4b3876c52781645p-60L 0x1.2dcd1ca79651d10c8084500c148p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0xc.9e01d2a25d4b3876c527816454p-60L 0x1.2dcd1ca79651d10c8084500c148p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0xc.9e01d2a25d4b3876c52781645p-60L 0x1.2dcd1ca79651d10c8084500c148p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd128p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0xc.9e01d2a25d4b3876c527816454p-60L 0x1.2dcd1ca79651d10c8084500c15p+0L : inexact-ok += clog downward dbl-64 0x6.1c643068cd124p-4 0xe.c97c3p-4 : 0xe.b2a76074f0bc8p-28 0x1.2dcd1d08c59e3p+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643068cd124p-4 0xe.c97c3p-4 : 0xe.b2a76074f0bdp-28 0x1.2dcd1d08c59e3p+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643068cd124p-4 0xe.c97c3p-4 : 0xe.b2a76074f0bc8p-28 0x1.2dcd1d08c59e3p+0 : inexact-ok += clog upward dbl-64 0x6.1c643068cd124p-4 0xe.c97c3p-4 : 0xe.b2a76074f0bdp-28 0x1.2dcd1d08c59e4p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5p-28L 0x1.2dcd1d08c59e31b4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5p-28L 0x1.2dcd1d08c59e31b4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5p-28L 0x1.2dcd1d08c59e31b4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce6p-28L 0x1.2dcd1d08c59e31b6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5p-28L 0x1.2dcd1d08c59e31b4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5p-28L 0x1.2dcd1d08c59e31b4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5p-28L 0x1.2dcd1d08c59e31b4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce6p-28L 0x1.2dcd1d08c59e31b6p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5041a3e99477p-28L 0x1.2dcd1d08c59e31b4d424a6581b92p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5041a3e99477p-28L 0x1.2dcd1d08c59e31b4d424a6581b93p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5041a3e99477p-28L 0x1.2dcd1d08c59e31b4d424a6581b92p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5041a3e9947708p-28L 0x1.2dcd1d08c59e31b4d424a6581b93p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5041a3e99474p-28L 0x1.2dcd1d08c59e31b4d424a6581b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5041a3e99478p-28L 0x1.2dcd1d08c59e31b4d424a6581b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5041a3e99474p-28L 0x1.2dcd1d08c59e31b4d424a6581b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c3p-4L : 0xe.b2a76074f0bcce5041a3e99478p-28L 0x1.2dcd1d08c59e31b4d424a6581cp+0L : inexact-ok += clog downward dbl-64 0x6.1c643068cd124p-4 0xe.c97c2p-4 : -0x1.6d4ba0ac01334p-32 0x1.2dcd1ca6ff5b8p+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643068cd124p-4 0xe.c97c2p-4 : -0x1.6d4ba0ac01333p-32 0x1.2dcd1ca6ff5b8p+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643068cd124p-4 0xe.c97c2p-4 : -0x1.6d4ba0ac01333p-32 0x1.2dcd1ca6ff5b8p+0 : inexact-ok += clog upward dbl-64 0x6.1c643068cd124p-4 0xe.c97c2p-4 : -0x1.6d4ba0ac01333p-32 0x1.2dcd1ca6ff5b9p+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac01333164p-32L 0x1.2dcd1ca6ff5b846cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac01333162p-32L 0x1.2dcd1ca6ff5b846ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac01333162p-32L 0x1.2dcd1ca6ff5b846cp+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac01333162p-32L 0x1.2dcd1ca6ff5b846ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac01333164p-32L 0x1.2dcd1ca6ff5b846cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac01333162p-32L 0x1.2dcd1ca6ff5b846ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac01333162p-32L 0x1.2dcd1ca6ff5b846cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac01333162p-32L 0x1.2dcd1ca6ff5b846ep+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac013331622ea7460ff8acp-32L 0x1.2dcd1ca6ff5b846db567b0df64c1p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac013331622ea7460ff8acp-32L 0x1.2dcd1ca6ff5b846db567b0df64c1p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac013331622ea7460ff8abp-32L 0x1.2dcd1ca6ff5b846db567b0df64c1p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac013331622ea7460ff8abp-32L 0x1.2dcd1ca6ff5b846db567b0df64c2p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac013331622ea7460ff9p-32L 0x1.2dcd1ca6ff5b846db567b0df648p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac013331622ea7460ff88p-32L 0x1.2dcd1ca6ff5b846db567b0df65p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac013331622ea7460ff88p-32L 0x1.2dcd1ca6ff5b846db567b0df648p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2p-4L : -0x1.6d4ba0ac013331622ea7460ff88p-32L 0x1.2dcd1ca6ff5b846db567b0df65p+0L : inexact-ok += clog downward dbl-64 0x6.1c643068cd124p-4 0xe.c97c2018b4288p-4 : 0x4.7ddc40bd9b1a8p-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643068cd124p-4 0xe.c97c2018b4288p-4 : 0x4.7ddc40bd9b1a8p-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643068cd124p-4 0xe.c97c2018b4288p-4 : 0x4.7ddc40bd9b1a8p-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog upward dbl-64 0x6.1c643068cd124p-4 0xe.c97c2018b4288p-4 : 0x4.7ddc40bd9b1acp-56 0x1.2dcd1ca79651ep+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93dp-56L 0x1.2dcd1ca79651d6e8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93dp-56L 0x1.2dcd1ca79651d6e8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93dp-56L 0x1.2dcd1ca79651d6e8p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93d8p-56L 0x1.2dcd1ca79651d6eap+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93dp-56L 0x1.2dcd1ca79651d6e8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93dp-56L 0x1.2dcd1ca79651d6e8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93dp-56L 0x1.2dcd1ca79651d6e8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93d8p-56L 0x1.2dcd1ca79651d6eap+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93d33d255aa7714p-56L 0x1.2dcd1ca79651d6e84363f6016d97p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93d33d255aa7714p-56L 0x1.2dcd1ca79651d6e84363f6016d98p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93d33d255aa7714p-56L 0x1.2dcd1ca79651d6e84363f6016d97p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93d33d255aa77144p-56L 0x1.2dcd1ca79651d6e84363f6016d98p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93d33d255aa77p-56L 0x1.2dcd1ca79651d6e84363f6016d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93d33d255aa772p-56L 0x1.2dcd1ca79651d6e84363f6016d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93d33d255aa77p-56L 0x1.2dcd1ca79651d6e84363f6016d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b4288p-4L : 0x4.7ddc40bd9b1a93d33d255aa772p-56L 0x1.2dcd1ca79651d6e84363f6016ep+0L : inexact-ok += clog downward dbl-64 0x6.1c643068cd124p-4 0xe.c97c2018b428p-4 : -0x2.e6e1cf4ebef9ap-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog tonearest dbl-64 0x6.1c643068cd124p-4 0xe.c97c2018b428p-4 : -0x2.e6e1cf4ebef98p-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog towardzero dbl-64 0x6.1c643068cd124p-4 0xe.c97c2018b428p-4 : -0x2.e6e1cf4ebef98p-56 0x1.2dcd1ca79651dp+0 : inexact-ok += clog upward dbl-64 0x6.1c643068cd124p-4 0xe.c97c2018b428p-4 : -0x2.e6e1cf4ebef98p-56 0x1.2dcd1ca79651ep+0 : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806cp-56L 0x1.2dcd1ca79651d3dap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806cp-56L 0x1.2dcd1ca79651d3dap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef98068p-56L 0x1.2dcd1ca79651d3dap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef98068p-56L 0x1.2dcd1ca79651d3dcp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806cp-56L 0x1.2dcd1ca79651d3dap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806cp-56L 0x1.2dcd1ca79651d3dap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef98068p-56L 0x1.2dcd1ca79651d3dap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef98068p-56L 0x1.2dcd1ca79651d3dcp+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806bc1c4ea8b5a68p-56L 0x1.2dcd1ca79651d3da114bc19ae47cp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806bc1c4ea8b5a68p-56L 0x1.2dcd1ca79651d3da114bc19ae47dp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806bc1c4ea8b5a66p-56L 0x1.2dcd1ca79651d3da114bc19ae47cp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806bc1c4ea8b5a66p-56L 0x1.2dcd1ca79651d3da114bc19ae47dp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806bc1c4ea8b5bp-56L 0x1.2dcd1ca79651d3da114bc19ae4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806bc1c4ea8b5ap-56L 0x1.2dcd1ca79651d3da114bc19ae48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806bc1c4ea8b5ap-56L 0x1.2dcd1ca79651d3da114bc19ae4p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428p-4L : -0x2.e6e1cf4ebef9806bc1c4ea8b5ap-56L 0x1.2dcd1ca79651d3da114bc19ae48p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599ccp-60L 0x1.2dcd1ca79651d4bep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cbp-60L 0x1.2dcd1ca79651d4cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cbp-60L 0x1.2dcd1ca79651d4bep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cbp-60L 0x1.2dcd1ca79651d4cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599ccp-60L 0x1.2dcd1ca79651d4bep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cbp-60L 0x1.2dcd1ca79651d4cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cbp-60L 0x1.2dcd1ca79651d4bep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cbp-60L 0x1.2dcd1ca79651d4cp+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cb7a627fcdeecep-60L 0x1.2dcd1ca79651d4bf39f8d8f4eeacp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cb7a627fcdeecd8p-60L 0x1.2dcd1ca79651d4bf39f8d8f4eeacp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cb7a627fcdeecd8p-60L 0x1.2dcd1ca79651d4bf39f8d8f4eeacp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cb7a627fcdeecd8p-60L 0x1.2dcd1ca79651d4bf39f8d8f4eeadp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cb7a627fcdefp-60L 0x1.2dcd1ca79651d4bf39f8d8f4ee8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cb7a627fcdeecp-60L 0x1.2dcd1ca79651d4bf39f8d8f4ee8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cb7a627fcdeecp-60L 0x1.2dcd1ca79651d4bf39f8d8f4ee8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428258p-4L : -0xb.c5e209b209599cb7a627fcdeecp-60L 0x1.2dcd1ca79651d4bf39f8d8f4efp+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc5p-60L 0x1.2dcd1ca79651d4bep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4fp-60L 0x1.2dcd1ca79651d4bep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4fp-60L 0x1.2dcd1ca79651d4bep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4fp-60L 0x1.2dcd1ca79651d4cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc5p-60L 0x1.2dcd1ca79651d4bep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4fp-60L 0x1.2dcd1ca79651d4bep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4fp-60L 0x1.2dcd1ca79651d4bep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4fp-60L 0x1.2dcd1ca79651d4cp+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4f2eea089f0243p-60L 0x1.2dcd1ca79651d4bed83295ee61dbp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4f2eea089f0243p-60L 0x1.2dcd1ca79651d4bed83295ee61dbp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4f2eea089f02428p-60L 0x1.2dcd1ca79651d4bed83295ee61dbp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4f2eea089f02428p-60L 0x1.2dcd1ca79651d4bed83295ee61dcp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4f2eea089f028p-60L 0x1.2dcd1ca79651d4bed83295ee618p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4f2eea089f024p-60L 0x1.2dcd1ca79651d4bed83295ee62p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4f2eea089f024p-60L 0x1.2dcd1ca79651d4bed83295ee618p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428257p-4L : -0xb.d4ab85d2220dc4f2eea089f024p-60L 0x1.2dcd1ca79651d4bed83295ee62p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.d38eef00d6fe4653f1900891e4ep-60L 0x1.2dcd1ca79651d4bedf8c56391e8ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.d38eef00d6fe4653f1900891e4d8p-60L 0x1.2dcd1ca79651d4bedf8c56391e8ep+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.d38eef00d6fe4653f1900891e4d8p-60L 0x1.2dcd1ca79651d4bedf8c56391e8ep+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd124p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.d38eef00d6fe4653f1900891e4d8p-60L 0x1.2dcd1ca79651d4bedf8c56391e8fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.d38eef00d6fe4653f1900891e8p-60L 0x1.2dcd1ca79651d4bedf8c56391e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.d38eef00d6fe4653f1900891e4p-60L 0x1.2dcd1ca79651d4bedf8c56391e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.d38eef00d6fe4653f1900891e4p-60L 0x1.2dcd1ca79651d4bedf8c56391e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd124p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.d38eef00d6fe4653f1900891e4p-60L 0x1.2dcd1ca79651d4bedf8c56391fp+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a44p-28L 0x1.2dcd1d08c59e2feap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a45p-28L 0x1.2dcd1d08c59e2feap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a44p-28L 0x1.2dcd1d08c59e2feap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a45p-28L 0x1.2dcd1d08c59e2fecp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a44p-28L 0x1.2dcd1d08c59e2feap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a45p-28L 0x1.2dcd1d08c59e2feap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a44p-28L 0x1.2dcd1d08c59e2feap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a45p-28L 0x1.2dcd1d08c59e2fecp+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a4480c5df28bdc5p-28L 0x1.2dcd1d08c59e2feae46a012e283p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a4480c5df28bdc58p-28L 0x1.2dcd1d08c59e2feae46a012e283p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a4480c5df28bdc5p-28L 0x1.2dcd1d08c59e2feae46a012e283p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a4480c5df28bdc58p-28L 0x1.2dcd1d08c59e2feae46a012e2831p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a4480c5df28bdcp-28L 0x1.2dcd1d08c59e2feae46a012e28p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a4480c5df28bdcp-28L 0x1.2dcd1d08c59e2feae46a012e28p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a4480c5df28bdcp-28L 0x1.2dcd1d08c59e2feae46a012e28p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c3p-4L : 0xe.b2a76080c4b0a4480c5df28bep-28L 0x1.2dcd1d08c59e2feae46a012e288p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f4741ap-32L 0x1.2dcd1ca6ff5b82a2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f47418p-32L 0x1.2dcd1ca6ff5b82a4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f47418p-32L 0x1.2dcd1ca6ff5b82a2p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f47418p-32L 0x1.2dcd1ca6ff5b82a4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f4741ap-32L 0x1.2dcd1ca6ff5b82a2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f47418p-32L 0x1.2dcd1ca6ff5b82a4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f47418p-32L 0x1.2dcd1ca6ff5b82a2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f47418p-32L 0x1.2dcd1ca6ff5b82a4p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f4741889af438cdd6ap-32L 0x1.2dcd1ca6ff5b82a3c5abacc48093p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f4741889af438cdd69p-32L 0x1.2dcd1ca6ff5b82a3c5abacc48093p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f4741889af438cdd69p-32L 0x1.2dcd1ca6ff5b82a3c5abacc48093p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f4741889af438cdd69p-32L 0x1.2dcd1ca6ff5b82a3c5abacc48094p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f4741889af438cdd8p-32L 0x1.2dcd1ca6ff5b82a3c5abacc4808p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f4741889af438cdd8p-32L 0x1.2dcd1ca6ff5b82a3c5abacc4808p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f4741889af438cddp-32L 0x1.2dcd1ca6ff5b82a3c5abacc4808p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec1f4741889af438cddp-32L 0x1.2dcd1ca6ff5b82a3c5abacc481p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bbp-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bbp-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bbp-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bb8p-56L 0x1.2dcd1ca79651d52p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bbp-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bbp-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bbp-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bb8p-56L 0x1.2dcd1ca79651d52p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bb0cf759259f094p-56L 0x1.2dcd1ca79651d51e53a7f4046263p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bb0cf759259f098p-56L 0x1.2dcd1ca79651d51e53a7f4046263p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bb0cf759259f094p-56L 0x1.2dcd1ca79651d51e53a7f4046263p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bb0cf759259f098p-56L 0x1.2dcd1ca79651d51e53a7f4046264p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bb0cf759259fp-56L 0x1.2dcd1ca79651d51e53a7f40462p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bb0cf759259fp-56L 0x1.2dcd1ca79651d51e53a7f404628p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bb0cf759259fp-56L 0x1.2dcd1ca79651d51e53a7f40462p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b4288p-4L : 0x5.3b1b7f78c8a95bb0cf759259f2p-56L 0x1.2dcd1ca79651d51e53a7f404628p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aadap-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aadap-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9cp-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9cp-56L 0x1.2dcd1ca79651d212p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aadap-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aadap-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9cp-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9cp-56L 0x1.2dcd1ca79651d212p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9fc79bd8d6a94p-56L 0x1.2dcd1ca79651d210218fbf9dd93dp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9fc79bd8d6a93ep-56L 0x1.2dcd1ca79651d210218fbf9dd93dp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9fc79bd8d6a93ep-56L 0x1.2dcd1ca79651d210218fbf9dd93dp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9fc79bd8d6a93ep-56L 0x1.2dcd1ca79651d210218fbf9dd93ep+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9fc79bd8d6aap-56L 0x1.2dcd1ca79651d210218fbf9dd9p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9fc79bd8d6a9p-56L 0x1.2dcd1ca79651d210218fbf9dd9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9fc79bd8d6a9p-56L 0x1.2dcd1ca79651d210218fbf9dd9p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428p-4L : -0x2.29a29093916aad9fc79bd8d6a9p-56L 0x1.2dcd1ca79651d210218fbf9dd98p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca7p-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca7p-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca7p-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca8p-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca7p-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca7p-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca7p-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca8p-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca75a0a081daae18p-68L 0x1.2dcd1ca79651d2f54a3cd6f7e36fp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca75a0a081daae2p-68L 0x1.2dcd1ca79651d2f54a3cd6f7e37p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca75a0a081daae18p-68L 0x1.2dcd1ca79651d2f54a3cd6f7e36fp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca75a0a081daae2p-68L 0x1.2dcd1ca79651d2f54a3cd6f7e37p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca75a0a081daacp-68L 0x1.2dcd1ca79651d2f54a3cd6f7e3p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca75a0a081dabp-68L 0x1.2dcd1ca79651d2f54a3cd6f7e38p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca75a0a081daacp-68L 0x1.2dcd1ca79651d2f54a3cd6f7e3p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428258p-4L : 0xe.11e200cf935cca75a0a081dabp-68L 0x1.2dcd1ca79651d2f54a3cd6f7e38p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af7p-72L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6p-72L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6p-72L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6p-72L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af7p-72L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6p-72L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6p-72L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6p-72L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6083adb58434bp-72L 0x1.2dcd1ca79651d2f4e87693f1569ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6083adb58434bp-72L 0x1.2dcd1ca79651d2f4e87693f1569fp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6083adb58434a8p-72L 0x1.2dcd1ca79651d2f4e87693f1569ep+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6083adb58434a8p-72L 0x1.2dcd1ca79651d2f4e87693f1569fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6083adb58438p-72L 0x1.2dcd1ca79651d2f4e87693f1568p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6083adb58434p-72L 0x1.2dcd1ca79651d2f4e87693f1568p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6083adb58434p-72L 0x1.2dcd1ca79651d2f4e87693f1568p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257p-4L : -0xb.79a1f4920cb5af6083adb58434p-72L 0x1.2dcd1ca79651d2f4e87693f157p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x6.4fcb201eeb3426244f7c5d83e74p-72L 0x1.2dcd1ca79651d2f4efd0543c1351p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x6.4fcb201eeb3426244f7c5d83e74p-72L 0x1.2dcd1ca79651d2f4efd0543c1352p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x6.4fcb201eeb3426244f7c5d83e74p-72L 0x1.2dcd1ca79651d2f4efd0543c1351p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x6.4fcb201eeb3426244f7c5d83e744p-72L 0x1.2dcd1ca79651d2f4efd0543c1352p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x6.4fcb201eeb3426244f7c5d83e6p-72L 0x1.2dcd1ca79651d2f4efd0543c13p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x6.4fcb201eeb3426244f7c5d83e8p-72L 0x1.2dcd1ca79651d2f4efd0543c138p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x6.4fcb201eeb3426244f7c5d83e6p-72L 0x1.2dcd1ca79651d2f4efd0543c13p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef8p-4L 0xe.c97c2018b428257133eef0ce34p-4L : 0x6.4fcb201eeb3426244f7c5d83e8p-72L 0x1.2dcd1ca79651d2f4efd0543c138p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a2723p-28L 0x1.2dcd1d08c59e2feap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a2723p-28L 0x1.2dcd1d08c59e2fecp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a2723p-28L 0x1.2dcd1d08c59e2feap+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a2724p-28L 0x1.2dcd1d08c59e2fecp+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a2723p-28L 0x1.2dcd1d08c59e2feap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a2723p-28L 0x1.2dcd1d08c59e2fecp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a2723p-28L 0x1.2dcd1d08c59e2feap+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a2724p-28L 0x1.2dcd1d08c59e2fecp+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a27235750ad65bc49p-28L 0x1.2dcd1d08c59e2feb5ab5e1d4d1a3p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a27235750ad65bc49p-28L 0x1.2dcd1d08c59e2feb5ab5e1d4d1a3p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a27235750ad65bc49p-28L 0x1.2dcd1d08c59e2feb5ab5e1d4d1a3p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a27235750ad65bc498p-28L 0x1.2dcd1d08c59e2feb5ab5e1d4d1a4p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a27235750ad65bc4p-28L 0x1.2dcd1d08c59e2feb5ab5e1d4d18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a27235750ad65bc4p-28L 0x1.2dcd1d08c59e2feb5ab5e1d4d18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a27235750ad65bc4p-28L 0x1.2dcd1d08c59e2feb5ab5e1d4d18p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c3p-4L : 0xe.b2a76080c1a27235750ad65bc8p-28L 0x1.2dcd1d08c59e2feb5ab5e1d4d2p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959ep-32L 0x1.2dcd1ca6ff5b82a4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959cp-32L 0x1.2dcd1ca6ff5b82a4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959cp-32L 0x1.2dcd1ca6ff5b82a4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959cp-32L 0x1.2dcd1ca6ff5b82a6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959ep-32L 0x1.2dcd1ca6ff5b82a4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959cp-32L 0x1.2dcd1ca6ff5b82a4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959cp-32L 0x1.2dcd1ca6ff5b82a4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959cp-32L 0x1.2dcd1ca6ff5b82a6p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959c5b9c66409b8ep-32L 0x1.2dcd1ca6ff5b82a43bf78dc5d22dp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959c5b9c66409b8dp-32L 0x1.2dcd1ca6ff5b82a43bf78dc5d22ep+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959c5b9c66409b8dp-32L 0x1.2dcd1ca6ff5b82a43bf78dc5d22dp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959c5b9c66409b8dp-32L 0x1.2dcd1ca6ff5b82a43bf78dc5d22ep+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959c5b9c66409cp-32L 0x1.2dcd1ca6ff5b82a43bf78dc5d2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959c5b9c66409b8p-32L 0x1.2dcd1ca6ff5b82a43bf78dc5d2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959c5b9c66409b8p-32L 0x1.2dcd1ca6ff5b82a43bf78dc5d2p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2p-4L : -0x1.6d4b9feef2d7959c5b9c66409b8p-32L 0x1.2dcd1ca6ff5b82a43bf78dc5d28p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f318p-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f32p-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f318p-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f32p-56L 0x1.2dcd1ca79651d52p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f318p-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f32p-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f318p-56L 0x1.2dcd1ca79651d51ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f32p-56L 0x1.2dcd1ca79651d52p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f31fd73ebd8fabf8p-56L 0x1.2dcd1ca79651d51ec9f3d5052804p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f31fd73ebd8fabf8p-56L 0x1.2dcd1ca79651d51ec9f3d5052804p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f31fd73ebd8fabf8p-56L 0x1.2dcd1ca79651d51ec9f3d5052804p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f31fd73ebd8fabfcp-56L 0x1.2dcd1ca79651d51ec9f3d5052805p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f31fd73ebd8faap-56L 0x1.2dcd1ca79651d51ec9f3d50528p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f31fd73ebd8facp-56L 0x1.2dcd1ca79651d51ec9f3d50528p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f31fd73ebd8faap-56L 0x1.2dcd1ca79651d51ec9f3d50528p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b4288p-4L : 0x5.3aea9c574562f31fd73ebd8facp-56L 0x1.2dcd1ca79651d51ec9f3d505288p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b11634p-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b11634p-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163p-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163p-56L 0x1.2dcd1ca79651d212p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b11634p-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b11634p-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163p-56L 0x1.2dcd1ca79651d21p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163p-56L 0x1.2dcd1ca79651d212p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163392b88c443158p-56L 0x1.2dcd1ca79651d21097dba09e9edep+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163392b88c443158p-56L 0x1.2dcd1ca79651d21097dba09e9edep+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163392b88c443156p-56L 0x1.2dcd1ca79651d21097dba09e9edep+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163392b88c443156p-56L 0x1.2dcd1ca79651d21097dba09e9edfp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163392b88c4432p-56L 0x1.2dcd1ca79651d21097dba09e9e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163392b88c4431p-56L 0x1.2dcd1ca79651d21097dba09e9fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163392b88c4431p-56L 0x1.2dcd1ca79651d21097dba09e9e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428p-4L : -0x2.29d373b514b1163392b88c4431p-56L 0x1.2dcd1ca79651d21097dba09e9fp+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39bp-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39bp-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39bp-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39b1p-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39bp-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39bp-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39bp-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39b1p-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39b006aed46a56abp-68L 0x1.2dcd1ca79651d2f5c088b7f8a911p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39b006aed46a56ab8p-68L 0x1.2dcd1ca79651d2f5c088b7f8a911p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39b006aed46a56abp-68L 0x1.2dcd1ca79651d2f5c088b7f8a911p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39b006aed46a56ab8p-68L 0x1.2dcd1ca79651d2f5c088b7f8a912p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39b006aed46a568p-68L 0x1.2dcd1ca79651d2f5c088b7f8a9p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39b006aed46a56cp-68L 0x1.2dcd1ca79651d2f5c088b7f8a9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39b006aed46a568p-68L 0x1.2dcd1ca79651d2f5c088b7f8a9p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428258p-4L : 0xb.03afe89b2cd39b006aed46a56cp-68L 0x1.2dcd1ca79651d2f5c088b7f8a98p+0L : inexact-ok += clog downward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a74p-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a7p-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a7p-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog upward ldbl-96-intel 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a7p-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a74p-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a7p-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a7p-68L 0x1.2dcd1ca79651d2f4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a7p-68L 0x1.2dcd1ca79651d2f6p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a70e3b9d3d40da6p-68L 0x1.2dcd1ca79651d2f55ec274f21c3fp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a70e3b9d3d40da6p-68L 0x1.2dcd1ca79651d2f55ec274f21c4p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a70e3b9d3d40da4p-68L 0x1.2dcd1ca79651d2f55ec274f21c3fp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a70e3b9d3d40da4p-68L 0x1.2dcd1ca79651d2f55ec274f21c4p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a70e3b9d3d40ep-68L 0x1.2dcd1ca79651d2f55ec274f21cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a70e3b9d3d40ep-68L 0x1.2dcd1ca79651d2f55ec274f21cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a70e3b9d3d40dp-68L 0x1.2dcd1ca79651d2f55ec274f21cp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257p-4L : -0x3.c5cc377d87548a70e3b9d3d40dp-68L 0x1.2dcd1ca79651d2f55ec274f21c8p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.a935663277d5ed1829d5a62d7a2p-68L 0x1.2dcd1ca79651d2f5661c353cd8f3p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.a935663277d5ed1829d5a62d7a1ep-68L 0x1.2dcd1ca79651d2f5661c353cd8f3p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.a935663277d5ed1829d5a62d7a1ep-68L 0x1.2dcd1ca79651d2f5661c353cd8f3p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.a935663277d5ed1829d5a62d7a1ep-68L 0x1.2dcd1ca79651d2f5661c353cd8f4p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.a935663277d5ed1829d5a62d7bp-68L 0x1.2dcd1ca79651d2f5661c353cd88p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.a935663277d5ed1829d5a62d7ap-68L 0x1.2dcd1ca79651d2f5661c353cd9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.a935663277d5ed1829d5a62d7ap-68L 0x1.2dcd1ca79651d2f5661c353cd88p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125efp-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0x2.a935663277d5ed1829d5a62d7ap-68L 0x1.2dcd1ca79651d2f5661c353cd9p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c3p-4L : 0xe.b2a76080c44ba796c3f8ad784c9p-28L 0x1.2dcd1d08c59e2feaf3afdf01ed74p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c3p-4L : 0xe.b2a76080c44ba796c3f8ad784c98p-28L 0x1.2dcd1d08c59e2feaf3afdf01ed74p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c3p-4L : 0xe.b2a76080c44ba796c3f8ad784c9p-28L 0x1.2dcd1d08c59e2feaf3afdf01ed74p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c3p-4L : 0xe.b2a76080c44ba796c3f8ad784c98p-28L 0x1.2dcd1d08c59e2feaf3afdf01ed75p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c3p-4L : 0xe.b2a76080c44ba796c3f8ad784cp-28L 0x1.2dcd1d08c59e2feaf3afdf01edp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c3p-4L : 0xe.b2a76080c44ba796c3f8ad784cp-28L 0x1.2dcd1d08c59e2feaf3afdf01ed8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c3p-4L : 0xe.b2a76080c44ba796c3f8ad784cp-28L 0x1.2dcd1d08c59e2feaf3afdf01edp+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c3p-4L : 0xe.b2a76080c44ba796c3f8ad785p-28L 0x1.2dcd1d08c59e2feaf3afdf01ed8p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec8443f38ba9dbb909cfap-32L 0x1.2dcd1ca6ff5b82a3d4f18aa3fa2ep+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec8443f38ba9dbb909cf9p-32L 0x1.2dcd1ca6ff5b82a3d4f18aa3fa2ep+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec8443f38ba9dbb909cf9p-32L 0x1.2dcd1ca6ff5b82a3d4f18aa3fa2ep+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec8443f38ba9dbb909cf9p-32L 0x1.2dcd1ca6ff5b82a3d4f18aa3fa2fp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec8443f38ba9dbb909dp-32L 0x1.2dcd1ca6ff5b82a3d4f18aa3fap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec8443f38ba9dbb909dp-32L 0x1.2dcd1ca6ff5b82a3d4f18aa3fap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec8443f38ba9dbb909c8p-32L 0x1.2dcd1ca6ff5b82a3d4f18aa3fap+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2p-4L : -0x1.6d4b9feec8443f38ba9dbb909c8p-32L 0x1.2dcd1ca6ff5b82a3d4f18aa3fa8p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b4288p-4L : 0x5.3b152fada88a707ceb590530c684p-56L 0x1.2dcd1ca79651d51e62edd1e3c9ebp+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b4288p-4L : 0x5.3b152fada88a707ceb590530c688p-56L 0x1.2dcd1ca79651d51e62edd1e3c9ecp+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b4288p-4L : 0x5.3b152fada88a707ceb590530c684p-56L 0x1.2dcd1ca79651d51e62edd1e3c9ebp+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b4288p-4L : 0x5.3b152fada88a707ceb590530c688p-56L 0x1.2dcd1ca79651d51e62edd1e3c9ecp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b4288p-4L : 0x5.3b152fada88a707ceb590530c6p-56L 0x1.2dcd1ca79651d51e62edd1e3c98p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b4288p-4L : 0x5.3b152fada88a707ceb590530c6p-56L 0x1.2dcd1ca79651d51e62edd1e3cap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b4288p-4L : 0x5.3b152fada88a707ceb590530c6p-56L 0x1.2dcd1ca79651d51e62edd1e3c98p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b4288p-4L : 0x5.3b152fada88a707ceb590530c8p-56L 0x1.2dcd1ca79651d51e62edd1e3cap+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428p-4L : -0x2.29a8e05eb18998d4090d37aeb552p-56L 0x1.2dcd1ca79651d21030d59d7d40c5p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428p-4L : -0x2.29a8e05eb18998d4090d37aeb552p-56L 0x1.2dcd1ca79651d21030d59d7d40c6p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428p-4L : -0x2.29a8e05eb18998d4090d37aeb55p-56L 0x1.2dcd1ca79651d21030d59d7d40c5p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428p-4L : -0x2.29a8e05eb18998d4090d37aeb55p-56L 0x1.2dcd1ca79651d21030d59d7d40c6p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428p-4L : -0x2.29a8e05eb18998d4090d37aeb6p-56L 0x1.2dcd1ca79651d21030d59d7d408p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428p-4L : -0x2.29a8e05eb18998d4090d37aeb5p-56L 0x1.2dcd1ca79651d21030d59d7d41p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428p-4L : -0x2.29a8e05eb18998d4090d37aeb5p-56L 0x1.2dcd1ca79651d21030d59d7d408p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428p-4L : -0x2.29a8e05eb18998d4090d37aeb5p-56L 0x1.2dcd1ca79651d21030d59d7d41p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428258p-4L : 0xd.ace54ecda4a988140849e4dce84p-68L 0x1.2dcd1ca79651d2f55982b4d74af8p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428258p-4L : 0xd.ace54ecda4a988140849e4dce84p-68L 0x1.2dcd1ca79651d2f55982b4d74af8p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428258p-4L : 0xd.ace54ecda4a988140849e4dce84p-68L 0x1.2dcd1ca79651d2f55982b4d74af8p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428258p-4L : 0xd.ace54ecda4a988140849e4dce848p-68L 0x1.2dcd1ca79651d2f55982b4d74af9p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428258p-4L : 0xd.ace54ecda4a988140849e4dce8p-68L 0x1.2dcd1ca79651d2f55982b4d74a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428258p-4L : 0xd.ace54ecda4a988140849e4dce8p-68L 0x1.2dcd1ca79651d2f55982b4d74bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428258p-4L : 0xd.ace54ecda4a988140849e4dce8p-68L 0x1.2dcd1ca79651d2f55982b4d74a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428258p-4L : 0xd.ace54ecda4a988140849e4dcecp-68L 0x1.2dcd1ca79651d2f55982b4d74bp+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257p-4L : -0x1.1c96d14b0f7e9d585b3b1bb3cd2dp-68L 0x1.2dcd1ca79651d2f4f7bc71d0be27p+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257p-4L : -0x1.1c96d14b0f7e9d585b3b1bb3cd2cp-68L 0x1.2dcd1ca79651d2f4f7bc71d0be27p+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257p-4L : -0x1.1c96d14b0f7e9d585b3b1bb3cd2cp-68L 0x1.2dcd1ca79651d2f4f7bc71d0be27p+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257p-4L : -0x1.1c96d14b0f7e9d585b3b1bb3cd2cp-68L 0x1.2dcd1ca79651d2f4f7bc71d0be28p+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257p-4L : -0x1.1c96d14b0f7e9d585b3b1bb3cd8p-68L 0x1.2dcd1ca79651d2f4f7bc71d0bep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257p-4L : -0x1.1c96d14b0f7e9d585b3b1bb3cdp-68L 0x1.2dcd1ca79651d2f4f7bc71d0bep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257p-4L : -0x1.1c96d14b0f7e9d585b3b1bb3cdp-68L 0x1.2dcd1ca79651d2f4f7bc71d0bep+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257p-4L : -0x1.1c96d14b0f7e9d585b3b1bb3cdp-68L 0x1.2dcd1ca79651d2f4f7bc71d0be8p+0L : inexact-ok += clog downward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.8p-212L 0x1.2dcd1ca79651d2f4ff16321b7adap+0L : inexact-ok += clog tonearest ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.8p-212L 0x1.2dcd1ca79651d2f4ff16321b7adap+0L : inexact-ok += clog towardzero ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.7ffffffffffffffffffffffffff8p-212L 0x1.2dcd1ca79651d2f4ff16321b7adap+0L : inexact-ok += clog upward ldbl-128 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.7ffffffffffffffffffffffffff8p-212L 0x1.2dcd1ca79651d2f4ff16321b7adbp+0L : inexact-ok += clog downward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.8p-212L 0x1.2dcd1ca79651d2f4ff16321b7a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.8p-212L 0x1.2dcd1ca79651d2f4ff16321b7bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.7ffffffffffffffffffffffffcp-212L 0x1.2dcd1ca79651d2f4ff16321b7a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x6.1c643068cd125ef6f796a57d2p-4L 0xe.c97c2018b428257133eef0ce34p-4L : -0xb.7ffffffffffffffffffffffffcp-212L 0x1.2dcd1ca79651d2f4ff16321b7bp+0L : inexact-ok +clog 0x6241ef0da53f539f02fad67dabp-106 0x3fb46641182f7efd9caa769dac0p-106 += clog downward flt-32 0x1.8907bep-4f 0xf.ed19ap-4f : 0xf.d3449p-28f 0x1.798588p+0f : inexact-ok += clog tonearest flt-32 0x1.8907bep-4f 0xf.ed19ap-4f : 0xf.d344ap-28f 0x1.798588p+0f : inexact-ok += clog towardzero flt-32 0x1.8907bep-4f 0xf.ed19ap-4f : 0xf.d3449p-28f 0x1.798588p+0f : inexact-ok += clog upward flt-32 0x1.8907bep-4f 0xf.ed19ap-4f : 0xf.d344ap-28f 0x1.79858ap+0f : inexact-ok += clog downward dbl-64 0x1.8907bep-4 0xf.ed19ap-4 : 0xf.d3449878f9b5p-28 0x1.798588cc5805p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bep-4 0xf.ed19ap-4 : 0xf.d3449878f9b58p-28 0x1.798588cc58051p+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bep-4 0xf.ed19ap-4 : 0xf.d3449878f9b5p-28 0x1.798588cc5805p+0 : inexact-ok += clog upward dbl-64 0x1.8907bep-4 0xf.ed19ap-4 : 0xf.d3449878f9b58p-28 0x1.798588cc58051p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f7p-28L 0x1.798588cc58050908p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f7p-28L 0x1.798588cc5805090ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f7p-28L 0x1.798588cc58050908p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f8p-28L 0x1.798588cc5805090ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f7p-28L 0x1.798588cc58050908p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f7p-28L 0x1.798588cc5805090ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f7p-28L 0x1.798588cc58050908p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f8p-28L 0x1.798588cc5805090ap+0L : inexact-ok += clog downward ldbl-128 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f724a3c2a20b7c8p-28L 0x1.798588cc580509093d15c6eed3cbp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f724a3c2a20b7c8p-28L 0x1.798588cc580509093d15c6eed3cbp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f724a3c2a20b7c8p-28L 0x1.798588cc580509093d15c6eed3cbp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f724a3c2a20b7dp-28L 0x1.798588cc580509093d15c6eed3ccp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f724a3c2a20b4p-28L 0x1.798588cc580509093d15c6eed38p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f724a3c2a20b8p-28L 0x1.798588cc580509093d15c6eed4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f724a3c2a20b4p-28L 0x1.798588cc580509093d15c6eed38p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bep-4L 0xf.ed19ap-4L : 0xf.d3449878f9b56f724a3c2a20b8p-28L 0x1.798588cc580509093d15c6eed4p+0L : inexact-ok += clog downward flt-32 0x1.8907bep-4f 0xf.ed199p-4f : -0x1.9d4fp-32f 0x1.798588p+0f : inexact-ok += clog tonearest flt-32 0x1.8907bep-4f 0xf.ed199p-4f : -0x1.9d4efep-32f 0x1.798588p+0f : inexact-ok += clog towardzero flt-32 0x1.8907bep-4f 0xf.ed199p-4f : -0x1.9d4efep-32f 0x1.798588p+0f : inexact-ok += clog upward flt-32 0x1.8907bep-4f 0xf.ed199p-4f : -0x1.9d4efep-32f 0x1.79858ap+0f : inexact-ok += clog downward dbl-64 0x1.8907bep-4 0xf.ed199p-4 : -0x1.9d4efe029b48p-32 0x1.798588b3c7894p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bep-4 0xf.ed199p-4 : -0x1.9d4efe029b47fp-32 0x1.798588b3c7894p+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bep-4 0xf.ed199p-4 : -0x1.9d4efe029b47fp-32 0x1.798588b3c7894p+0 : inexact-ok += clog upward dbl-64 0x1.8907bep-4 0xf.ed199p-4 : -0x1.9d4efe029b47fp-32 0x1.798588b3c7895p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f2p-32L 0x1.798588b3c789412cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f2p-32L 0x1.798588b3c789412ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7fp-32L 0x1.798588b3c789412cp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7fp-32L 0x1.798588b3c789412ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f2p-32L 0x1.798588b3c789412cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f2p-32L 0x1.798588b3c789412ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7fp-32L 0x1.798588b3c789412cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7fp-32L 0x1.798588b3c789412ep+0L : inexact-ok += clog downward ldbl-128 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f160700155fd5bp-32L 0x1.798588b3c789412d63316183f714p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f160700155fd5bp-32L 0x1.798588b3c789412d63316183f714p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f160700155fd5ap-32L 0x1.798588b3c789412d63316183f714p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f160700155fd5ap-32L 0x1.798588b3c789412d63316183f715p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f160700155fd8p-32L 0x1.798588b3c789412d63316183f7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f160700155fd8p-32L 0x1.798588b3c789412d63316183f7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f160700155fdp-32L 0x1.798588b3c789412d63316183f7p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bep-4L 0xf.ed199p-4L : -0x1.9d4efe029b47f7f160700155fdp-32L 0x1.798588b3c789412d63316183f78p+0L : inexact-ok += clog downward dbl-64 0x1.8907bep-4 0xf.ed1990460bep-4 : 0x2.be431ef19ccb4p-32 0x1.798588b433139p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bep-4 0xf.ed1990460bep-4 : 0x2.be431ef19ccb6p-32 0x1.798588b43313ap+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bep-4 0xf.ed1990460bep-4 : 0x2.be431ef19ccb4p-32 0x1.798588b433139p+0 : inexact-ok += clog upward dbl-64 0x1.8907bep-4 0xf.ed1990460bep-4 : 0x2.be431ef19ccb6p-32 0x1.798588b43313ap+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5724p-32L 0x1.798588b433139a5cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5724p-32L 0x1.798588b433139a5cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5724p-32L 0x1.798588b433139a5cp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5728p-32L 0x1.798588b433139a5ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5724p-32L 0x1.798588b433139a5cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5724p-32L 0x1.798588b433139a5cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5724p-32L 0x1.798588b433139a5cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5728p-32L 0x1.798588b433139a5ep+0L : inexact-ok += clog downward ldbl-128 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5725eec214c348bp-32L 0x1.798588b433139a5cda0f2f7b9cd4p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5725eec214c348b2p-32L 0x1.798588b433139a5cda0f2f7b9cd4p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5725eec214c348bp-32L 0x1.798588b433139a5cda0f2f7b9cd4p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5725eec214c348b2p-32L 0x1.798588b433139a5cda0f2f7b9cd5p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5725eec214c348p-32L 0x1.798588b433139a5cda0f2f7b9c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5725eec214c349p-32L 0x1.798588b433139a5cda0f2f7b9dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5725eec214c348p-32L 0x1.798588b433139a5cda0f2f7b9c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bep-4L : 0x2.be431ef19ccb5725eec214c349p-32L 0x1.798588b433139a5cda0f2f7b9dp+0L : inexact-ok += clog downward dbl-64 0x1.8907bep-4 0xf.ed1990460bdf8p-4 : 0x2.be4316fb10034p-32 0x1.798588b433139p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bep-4 0xf.ed1990460bdf8p-4 : 0x2.be4316fb10036p-32 0x1.798588b43313ap+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bep-4 0xf.ed1990460bdf8p-4 : 0x2.be4316fb10034p-32 0x1.798588b433139p+0 : inexact-ok += clog upward dbl-64 0x1.8907bep-4 0xf.ed1990460bdf8p-4 : 0x2.be4316fb10036p-32 0x1.798588b43313ap+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fdp-32L 0x1.798588b433139998p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fdp-32L 0x1.798588b433139998p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fdp-32L 0x1.798588b433139998p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fd4p-32L 0x1.798588b43313999ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fdp-32L 0x1.798588b433139998p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fdp-32L 0x1.798588b433139998p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fdp-32L 0x1.798588b433139998p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fd4p-32L 0x1.798588b43313999ap+0L : inexact-ok += clog downward ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fd057b655907272p-32L 0x1.798588b433139998563033b1c715p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fd057b655907274p-32L 0x1.798588b433139998563033b1c715p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fd057b655907272p-32L 0x1.798588b433139998563033b1c715p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fd057b655907274p-32L 0x1.798588b433139998563033b1c716p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fd057b6559072p-32L 0x1.798588b433139998563033b1c7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fd057b6559072p-32L 0x1.798588b433139998563033b1c7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fd057b6559072p-32L 0x1.798588b433139998563033b1c7p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdf8p-4L : 0x2.be4316fb10035fd057b6559073p-32L 0x1.798588b433139998563033b1c78p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84p-32L 0x1.798588b4331399f8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84p-32L 0x1.798588b4331399fap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84p-32L 0x1.798588b4331399f8p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa88p-32L 0x1.798588b4331399fap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84p-32L 0x1.798588b4331399f8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84p-32L 0x1.798588b4331399fap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84p-32L 0x1.798588b4331399f8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa88p-32L 0x1.798588b4331399fap+0L : inexact-ok += clog downward ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84e2fa221476c8p-32L 0x1.798588b4331399f9bb0b56bb6ee5p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84e2fa221476cap-32L 0x1.798588b4331399f9bb0b56bb6ee6p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84e2fa221476c8p-32L 0x1.798588b4331399f9bb0b56bb6ee5p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84e2fa221476cap-32L 0x1.798588b4331399f9bb0b56bb6ee6p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84e2fa221476p-32L 0x1.798588b4331399f9bb0b56bb6e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84e2fa221477p-32L 0x1.798588b4331399f9bb0b56bb6fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84e2fa221476p-32L 0x1.798588b4331399f9bb0b56bb6e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf7p-4L : 0x2.be431aed6108fa84e2fa221477p-32L 0x1.798588b4331399f9bb0b56bb6fp+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376184p-32L 0x1.798588b4331399f8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376184p-32L 0x1.798588b4331399fap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376184p-32L 0x1.798588b4331399f8p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376188p-32L 0x1.798588b4331399fap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376184p-32L 0x1.798588b4331399f8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376184p-32L 0x1.798588b4331399fap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376184p-32L 0x1.798588b4331399f8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376188p-32L 0x1.798588b4331399fap+0L : inexact-ok += clog downward ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376185f84740933d36p-32L 0x1.798588b4331399f9a27adadbf5abp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376185f84740933d38p-32L 0x1.798588b4331399f9a27adadbf5abp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376185f84740933d36p-32L 0x1.798588b4331399f9a27adadbf5abp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376185f84740933d38p-32L 0x1.798588b4331399f9a27adadbf5acp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376185f84740933dp-32L 0x1.798588b4331399f9a27adadbf58p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376185f84740933dp-32L 0x1.798588b4331399f9a27adadbf58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376185f84740933dp-32L 0x1.798588b4331399f9a27adadbf58p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf6p-4L : 0x2.be431aec62376185f84740933ep-32L 0x1.798588b4331399f9a27adadbf6p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.be431aecd459c97a1d298ba18a12p-32L 0x1.798588b4331399f9ad7b7e5dad26p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.be431aecd459c97a1d298ba18a12p-32L 0x1.798588b4331399f9ad7b7e5dad27p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.be431aecd459c97a1d298ba18a12p-32L 0x1.798588b4331399f9ad7b7e5dad26p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.be431aecd459c97a1d298ba18a14p-32L 0x1.798588b4331399f9ad7b7e5dad27p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.be431aecd459c97a1d298ba18ap-32L 0x1.798588b4331399f9ad7b7e5dadp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.be431aecd459c97a1d298ba18ap-32L 0x1.798588b4331399f9ad7b7e5dadp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.be431aecd459c97a1d298ba18ap-32L 0x1.798588b4331399f9ad7b7e5dadp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.be431aecd459c97a1d298ba18bp-32L 0x1.798588b4331399f9ad7b7e5dad8p+0L : inexact-ok += clog downward flt-32 0x1.8907bcp-4f 0xf.ed19ap-4f : 0xf.a223ap-28f 0x1.798588p+0f : inexact-ok += clog tonearest flt-32 0x1.8907bcp-4f 0xf.ed19ap-4f : 0xf.a223ap-28f 0x1.798588p+0f : inexact-ok += clog towardzero flt-32 0x1.8907bcp-4f 0xf.ed19ap-4f : 0xf.a223ap-28f 0x1.798588p+0f : inexact-ok += clog upward flt-32 0x1.8907bcp-4f 0xf.ed19ap-4f : 0xf.a223bp-28f 0x1.79858ap+0f : inexact-ok += clog downward dbl-64 0x1.8907bcp-4 0xf.ed19ap-4 : 0xf.a223a13992158p-28 0x1.798588ec3238p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bcp-4 0xf.ed19ap-4 : 0xf.a223a1399216p-28 0x1.798588ec32381p+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bcp-4 0xf.ed19ap-4 : 0xf.a223a13992158p-28 0x1.798588ec3238p+0 : inexact-ok += clog upward dbl-64 0x1.8907bcp-4 0xf.ed19ap-4 : 0xf.a223a1399216p-28 0x1.798588ec32381p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0bp-28L 0x1.798588ec32380a68p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0bp-28L 0x1.798588ec32380a68p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0bp-28L 0x1.798588ec32380a68p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0cp-28L 0x1.798588ec32380a6ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0bp-28L 0x1.798588ec32380a68p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0bp-28L 0x1.798588ec32380a68p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0bp-28L 0x1.798588ec32380a68p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0cp-28L 0x1.798588ec32380a6ap+0L : inexact-ok += clog downward ldbl-128 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0b1d04078fe2bb8p-28L 0x1.798588ec32380a68bef37f519ad2p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0b1d04078fe2bb8p-28L 0x1.798588ec32380a68bef37f519ad3p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0b1d04078fe2bb8p-28L 0x1.798588ec32380a68bef37f519ad2p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0b1d04078fe2bcp-28L 0x1.798588ec32380a68bef37f519ad3p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0b1d04078fe28p-28L 0x1.798588ec32380a68bef37f519a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0b1d04078fe2cp-28L 0x1.798588ec32380a68bef37f519bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0b1d04078fe28p-28L 0x1.798588ec32380a68bef37f519a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed19ap-4L : 0xf.a223a1399215f0b1d04078fe2cp-28L 0x1.798588ec32380a68bef37f519bp+0L : inexact-ok += clog downward flt-32 0x1.8907bcp-4f 0xf.ed199p-4f : -0x4.af5e8p-32f 0x1.798588p+0f : inexact-ok += clog tonearest flt-32 0x1.8907bcp-4f 0xf.ed199p-4f : -0x4.af5e78p-32f 0x1.798588p+0f : inexact-ok += clog towardzero flt-32 0x1.8907bcp-4f 0xf.ed199p-4f : -0x4.af5e78p-32f 0x1.798588p+0f : inexact-ok += clog upward flt-32 0x1.8907bcp-4f 0xf.ed199p-4f : -0x4.af5e78p-32f 0x1.79858ap+0f : inexact-ok += clog downward dbl-64 0x1.8907bcp-4 0xf.ed199p-4 : -0x4.af5e7815f3164p-32 0x1.798588d3a1bc6p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bcp-4 0xf.ed199p-4 : -0x4.af5e7815f316p-32 0x1.798588d3a1bc6p+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bcp-4 0xf.ed199p-4 : -0x4.af5e7815f316p-32 0x1.798588d3a1bc6p+0 : inexact-ok += clog upward dbl-64 0x1.8907bcp-4 0xf.ed199p-4 : -0x4.af5e7815f316p-32 0x1.798588d3a1bc7p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b78p-32L 0x1.798588d3a1bc61f6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b78p-32L 0x1.798588d3a1bc61f6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b7p-32L 0x1.798588d3a1bc61f6p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b7p-32L 0x1.798588d3a1bc61f8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b78p-32L 0x1.798588d3a1bc61f6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b78p-32L 0x1.798588d3a1bc61f6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b7p-32L 0x1.798588d3a1bc61f6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b7p-32L 0x1.798588d3a1bc61f8p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b757512655d47dcp-32L 0x1.798588d3a1bc61f60ac08cb46ba3p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b757512655d47d8p-32L 0x1.798588d3a1bc61f60ac08cb46ba3p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b757512655d47d8p-32L 0x1.798588d3a1bc61f60ac08cb46ba3p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b757512655d47d8p-32L 0x1.798588d3a1bc61f60ac08cb46ba4p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b757512655d48p-32L 0x1.798588d3a1bc61f60ac08cb46b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b757512655d48p-32L 0x1.798588d3a1bc61f60ac08cb46b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b757512655d46p-32L 0x1.798588d3a1bc61f60ac08cb46b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed199p-4L : -0x4.af5e7815f3160b757512655d46p-32L 0x1.798588d3a1bc61f60ac08cb46cp+0L : inexact-ok += clog downward dbl-64 0x1.8907bcp-4 0xf.ed1990460bep-4 : -0x5.3cc5b06f82eap-36 0x1.798588d40d46bp+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bcp-4 0xf.ed1990460bep-4 : -0x5.3cc5b06f82eap-36 0x1.798588d40d46cp+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bcp-4 0xf.ed1990460bep-4 : -0x5.3cc5b06f82e9cp-36 0x1.798588d40d46bp+0 : inexact-ok += clog upward dbl-64 0x1.8907bcp-4 0xf.ed1990460bep-4 : -0x5.3cc5b06f82e9cp-36 0x1.798588d40d46cp+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa6p-36L 0x1.798588d40d46ba9ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa58p-36L 0x1.798588d40d46ba9cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa58p-36L 0x1.798588d40d46ba9ap+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa58p-36L 0x1.798588d40d46ba9cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa6p-36L 0x1.798588d40d46ba9ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa58p-36L 0x1.798588d40d46ba9cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa58p-36L 0x1.798588d40d46ba9ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa58p-36L 0x1.798588d40d46ba9cp+0L : inexact-ok += clog downward ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa5b26b5286d0ec4p-36L 0x1.798588d40d46ba9bfe48e45893a7p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa5b26b5286d0ec4p-36L 0x1.798588d40d46ba9bfe48e45893a8p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa5b26b5286d0ecp-36L 0x1.798588d40d46ba9bfe48e45893a7p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa5b26b5286d0ecp-36L 0x1.798588d40d46ba9bfe48e45893a8p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa5b26b5286d1p-36L 0x1.798588d40d46ba9bfe48e458938p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa5b26b5286d0ep-36L 0x1.798588d40d46ba9bfe48e458938p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa5b26b5286d0ep-36L 0x1.798588d40d46ba9bfe48e458938p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bep-4L : -0x5.3cc5b06f82e9fa5b26b5286d0ep-36L 0x1.798588d40d46ba9bfe48e45894p+0L : inexact-ok += clog downward dbl-64 0x1.8907bcp-4 0xf.ed1990460bdf8p-4 : -0x5.3cc62fd84f6c8p-36 0x1.798588d40d46bp+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bcp-4 0xf.ed1990460bdf8p-4 : -0x5.3cc62fd84f6c8p-36 0x1.798588d40d46cp+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bcp-4 0xf.ed1990460bdf8p-4 : -0x5.3cc62fd84f6c4p-36 0x1.798588d40d46bp+0 : inexact-ok += clog upward dbl-64 0x1.8907bcp-4 0xf.ed1990460bdf8p-4 : -0x5.3cc62fd84f6c4p-36 0x1.798588d40d46cp+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e28p-36L 0x1.798588d40d46b9d6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2p-36L 0x1.798588d40d46b9d8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2p-36L 0x1.798588d40d46b9d6p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2p-36L 0x1.798588d40d46b9d8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e28p-36L 0x1.798588d40d46b9d6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2p-36L 0x1.798588d40d46b9d8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2p-36L 0x1.798588d40d46b9d6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2p-36L 0x1.798588d40d46b9d8p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2386e9a24a1c1cp-36L 0x1.798588d40d46b9d77a6ae3d7ec61p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2386e9a24a1c18p-36L 0x1.798588d40d46b9d77a6ae3d7ec62p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2386e9a24a1c18p-36L 0x1.798588d40d46b9d77a6ae3d7ec61p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2386e9a24a1c18p-36L 0x1.798588d40d46b9d77a6ae3d7ec62p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2386e9a24a1ep-36L 0x1.798588d40d46b9d77a6ae3d7ecp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2386e9a24a1cp-36L 0x1.798588d40d46b9d77a6ae3d7ec8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2386e9a24a1cp-36L 0x1.798588d40d46b9d77a6ae3d7ecp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdf8p-4L : -0x5.3cc62fd84f6c7e2386e9a24a1cp-36L 0x1.798588d40d46b9d77a6ae3d7ec8p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f18p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1p-36L 0x1.798588d40d46ba3ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f18p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1p-36L 0x1.798588d40d46ba3ap+0L : inexact-ok += clog downward ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1397bdfe497e8p-36L 0x1.798588d40d46ba38df458a57af4ap+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1397bdfe497e7cp-36L 0x1.798588d40d46ba38df458a57af4ap+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1397bdfe497e7cp-36L 0x1.798588d40d46ba38df458a57af4ap+0L : inexact-ok += clog upward ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1397bdfe497e7cp-36L 0x1.798588d40d46ba38df458a57af4bp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1397bdfe498p-36L 0x1.798588d40d46ba38df458a57afp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1397bdfe497ep-36L 0x1.798588d40d46ba38df458a57af8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1397bdfe497ep-36L 0x1.798588d40d46ba38df458a57afp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf7p-4L : -0x5.3cc5f0b33f114f1397bdfe497ep-36L 0x1.798588d40d46ba38df458a57af8p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf68p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf68p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6p-36L 0x1.798588d40d46ba3ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf68p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf68p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6p-36L 0x1.798588d40d46ba38p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6p-36L 0x1.798588d40d46ba3ap+0L : inexact-ok += clog downward ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6410ca056ded94p-36L 0x1.798588d40d46ba38c6b50e979f35p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6410ca056ded94p-36L 0x1.798588d40d46ba38c6b50e979f35p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6410ca056ded9p-36L 0x1.798588d40d46ba38c6b50e979f35p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6410ca056ded9p-36L 0x1.798588d40d46ba38c6b50e979f36p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6410ca056deep-36L 0x1.798588d40d46ba38c6b50e979fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6410ca056deep-36L 0x1.798588d40d46ba38c6b50e979fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6410ca056decp-36L 0x1.798588d40d46ba38c6b50e979fp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf6p-4L : -0x5.3cc5f0c32c2adf6410ca056decp-36L 0x1.798588d40d46ba38c6b50e979f8p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x5.3cc5f0bc0a045ff5f41421e9af18p-36L 0x1.798588d40d46ba38d1b5b20b4507p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x5.3cc5f0bc0a045ff5f41421e9af18p-36L 0x1.798588d40d46ba38d1b5b20b4507p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x5.3cc5f0bc0a045ff5f41421e9af14p-36L 0x1.798588d40d46ba38d1b5b20b4507p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bcp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x5.3cc5f0bc0a045ff5f41421e9af14p-36L 0x1.798588d40d46ba38d1b5b20b4508p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x5.3cc5f0bc0a045ff5f41421e9bp-36L 0x1.798588d40d46ba38d1b5b20b45p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x5.3cc5f0bc0a045ff5f41421e9bp-36L 0x1.798588d40d46ba38d1b5b20b45p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x5.3cc5f0bc0a045ff5f41421e9aep-36L 0x1.798588d40d46ba38d1b5b20b45p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bcp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x5.3cc5f0bc0a045ff5f41421e9aep-36L 0x1.798588d40d46ba38d1b5b20b458p+0L : inexact-ok += clog downward dbl-64 0x1.8907bc3694fd5p-4 0xf.ed19ap-4 : 0xf.a760672033d28p-28 0x1.798588e8ccefdp+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bc3694fd5p-4 0xf.ed19ap-4 : 0xf.a760672033d3p-28 0x1.798588e8ccefdp+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bc3694fd5p-4 0xf.ed19ap-4 : 0xf.a760672033d28p-28 0x1.798588e8ccefdp+0 : inexact-ok += clog upward dbl-64 0x1.8907bc3694fd5p-4 0xf.ed19ap-4 : 0xf.a760672033d3p-28 0x1.798588e8ccefep+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f16p-28L 0x1.798588e8ccefd42ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f17p-28L 0x1.798588e8ccefd43p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f16p-28L 0x1.798588e8ccefd42ep+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f17p-28L 0x1.798588e8ccefd43p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f16p-28L 0x1.798588e8ccefd42ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f17p-28L 0x1.798588e8ccefd43p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f16p-28L 0x1.798588e8ccefd42ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f17p-28L 0x1.798588e8ccefd43p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f1694c0aa73a857p-28L 0x1.798588e8ccefd42fa9dfdcb1b05dp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f1694c0aa73a8578p-28L 0x1.798588e8ccefd42fa9dfdcb1b05dp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f1694c0aa73a857p-28L 0x1.798588e8ccefd42fa9dfdcb1b05dp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f1694c0aa73a8578p-28L 0x1.798588e8ccefd42fa9dfdcb1b05ep+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f1694c0aa73a84p-28L 0x1.798588e8ccefd42fa9dfdcb1bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f1694c0aa73a84p-28L 0x1.798588e8ccefd42fa9dfdcb1b08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f1694c0aa73a84p-28L 0x1.798588e8ccefd42fa9dfdcb1bp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed19ap-4L : 0xf.a760672033d2f1694c0aa73a88p-28L 0x1.798588e8ccefd42fa9dfdcb1b08p+0L : inexact-ok += clog downward dbl-64 0x1.8907bc3694fd5p-4 0xf.ed199p-4 : -0x4.5b92190504828p-32 0x1.798588d03c742p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bc3694fd5p-4 0xf.ed199p-4 : -0x4.5b92190504828p-32 0x1.798588d03c743p+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bc3694fd5p-4 0xf.ed199p-4 : -0x4.5b92190504824p-32 0x1.798588d03c742p+0 : inexact-ok += clog upward dbl-64 0x1.8907bc3694fd5p-4 0xf.ed199p-4 : -0x4.5b92190504824p-32 0x1.798588d03c743p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f5p-32L 0x1.798588d03c742862p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f48p-32L 0x1.798588d03c742864p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f48p-32L 0x1.798588d03c742862p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f48p-32L 0x1.798588d03c742864p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f5p-32L 0x1.798588d03c742862p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f48p-32L 0x1.798588d03c742864p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f48p-32L 0x1.798588d03c742862p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f48p-32L 0x1.798588d03c742864p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f4b830fed31c068p-32L 0x1.798588d03c742863bac3d464bf4cp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f4b830fed31c068p-32L 0x1.798588d03c742863bac3d464bf4dp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f4b830fed31c064p-32L 0x1.798588d03c742863bac3d464bf4cp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f4b830fed31c064p-32L 0x1.798588d03c742863bac3d464bf4dp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f4b830fed31c2p-32L 0x1.798588d03c742863bac3d464bfp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f4b830fed31cp-32L 0x1.798588d03c742863bac3d464bf8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f4b830fed31cp-32L 0x1.798588d03c742863bac3d464bfp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed199p-4L : -0x4.5b92190504826f4b830fed31cp-32L 0x1.798588d03c742863bac3d464bf8p+0L : inexact-ok += clog downward dbl-64 0x1.8907bc3694fd5p-4 0xf.ed1990460bep-4 : 0x4.071c0f1051938p-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bc3694fd5p-4 0xf.ed1990460bep-4 : 0x4.071c0f1051938p-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bc3694fd5p-4 0xf.ed1990460bep-4 : 0x4.071c0f1051938p-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog upward dbl-64 0x1.8907bc3694fd5p-4 0xf.ed1990460bep-4 : 0x4.071c0f105193cp-56 0x1.798588d0a7fe9p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c4p-56L 0x1.798588d0a7fe8118p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c48p-56L 0x1.798588d0a7fe8118p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c4p-56L 0x1.798588d0a7fe8118p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c48p-56L 0x1.798588d0a7fe811ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c4p-56L 0x1.798588d0a7fe8118p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c48p-56L 0x1.798588d0a7fe8118p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c4p-56L 0x1.798588d0a7fe8118p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c48p-56L 0x1.798588d0a7fe811ap+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c46ecfb9742789cp-56L 0x1.798588d0a7fe8118572a2f938fe4p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c46ecfb9742789cp-56L 0x1.798588d0a7fe8118572a2f938fe5p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c46ecfb9742789cp-56L 0x1.798588d0a7fe8118572a2f938fe4p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c46ecfb974278ap-56L 0x1.798588d0a7fe8118572a2f938fe5p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c46ecfb974278p-56L 0x1.798588d0a7fe8118572a2f938f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c46ecfb974278p-56L 0x1.798588d0a7fe8118572a2f939p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c46ecfb974278p-56L 0x1.798588d0a7fe8118572a2f938f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bep-4L : 0x4.071c0f1051938c46ecfb97427ap-56L 0x1.798588d0a7fe8118572a2f939p+0L : inexact-ok += clog downward dbl-64 0x1.8907bc3694fd5p-4 0xf.ed1990460bdf8p-4 : -0x3.ef70b912b45c6p-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bc3694fd5p-4 0xf.ed1990460bdf8p-4 : -0x3.ef70b912b45c6p-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bc3694fd5p-4 0xf.ed1990460bdf8p-4 : -0x3.ef70b912b45c4p-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog upward dbl-64 0x1.8907bc3694fd5p-4 0xf.ed1990460bdf8p-4 : -0x3.ef70b912b45c4p-56 0x1.798588d0a7fe9p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c53p-56L 0x1.798588d0a7fe8052p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fcp-56L 0x1.798588d0a7fe8054p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fcp-56L 0x1.798588d0a7fe8052p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fcp-56L 0x1.798588d0a7fe8054p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c53p-56L 0x1.798588d0a7fe8052p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fcp-56L 0x1.798588d0a7fe8054p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fcp-56L 0x1.798588d0a7fe8052p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fcp-56L 0x1.798588d0a7fe8054p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fc9801a39d1808p-56L 0x1.798588d0a7fe8053d34c1449113cp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fc9801a39d1806p-56L 0x1.798588d0a7fe8053d34c1449113dp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fc9801a39d1806p-56L 0x1.798588d0a7fe8053d34c1449113cp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fc9801a39d1806p-56L 0x1.798588d0a7fe8053d34c1449113dp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fc9801a39d19p-56L 0x1.798588d0a7fe8053d34c144911p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fc9801a39d18p-56L 0x1.798588d0a7fe8053d34c144911p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fc9801a39d18p-56L 0x1.798588d0a7fe8053d34c144911p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdf8p-4L : -0x3.ef70b912b45c52fc9801a39d18p-56L 0x1.798588d0a7fe8053d34c1449118p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a42p-64L 0x1.798588d0a7fe80b4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a42p-64L 0x1.798588d0a7fe80b6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a42p-64L 0x1.798588d0a7fe80b4p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a424p-64L 0x1.798588d0a7fe80b6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a42p-64L 0x1.798588d0a7fe80b4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a42p-64L 0x1.798588d0a7fe80b6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a42p-64L 0x1.798588d0a7fe80b4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a424p-64L 0x1.798588d0a7fe80b6p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a4203a475e909316p-64L 0x1.798588d0a7fe80b53826c80f9cc3p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a4203a475e909318p-64L 0x1.798588d0a7fe80b53826c80f9cc4p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a4203a475e909316p-64L 0x1.798588d0a7fe80b53826c80f9cc3p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a4203a475e909318p-64L 0x1.798588d0a7fe80b53826c80f9cc4p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a4203a475e9093p-64L 0x1.798588d0a7fe80b53826c80f9c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a4203a475e9093p-64L 0x1.798588d0a7fe80b53826c80f9dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a4203a475e9093p-64L 0x1.798588d0a7fe80b53826c80f9c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf7p-4L : 0x2.e04c9da734f6a4203a475e9094p-64L 0x1.798588d0a7fe80b53826c80f9dp+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82ep-64L 0x1.798588d0a7fe80b4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82ep-64L 0x1.798588d0a7fe80b6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82ep-64L 0x1.798588d0a7fe80b4p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a83p-64L 0x1.798588d0a7fe80b6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82ep-64L 0x1.798588d0a7fe80b4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82ep-64L 0x1.798588d0a7fe80b6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82ep-64L 0x1.798588d0a7fe80b4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a83p-64L 0x1.798588d0a7fe80b6p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82e76707d76a9f5p-64L 0x1.798588d0a7fe80b51f964c4c3373p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82e76707d76a9f6p-64L 0x1.798588d0a7fe80b51f964c4c3374p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82e76707d76a9f5p-64L 0x1.798588d0a7fe80b51f964c4c3373p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82e76707d76a9f6p-64L 0x1.798588d0a7fe80b51f964c4c3374p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82e76707d76a98p-64L 0x1.798588d0a7fe80b51f964c4c33p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82e76707d76aap-64L 0x1.798588d0a7fe80b51f964c4c338p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82e76707d76a98p-64L 0x1.798588d0a7fe80b51f964c4c33p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf6p-4L : 0x1.e17b04a2d438a82e76707d76aap-64L 0x1.798588d0a7fe80b51f964c4c338p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.539d6c996b4b7b64f3f2f09f84fp-64L 0x1.798588d0a7fe80b52a96efc1593ap+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.539d6c996b4b7b64f3f2f09f84f2p-64L 0x1.798588d0a7fe80b52a96efc1593bp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.539d6c996b4b7b64f3f2f09f84fp-64L 0x1.798588d0a7fe80b52a96efc1593ap+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.539d6c996b4b7b64f3f2f09f84f2p-64L 0x1.798588d0a7fe80b52a96efc1593bp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.539d6c996b4b7b64f3f2f09f84p-64L 0x1.798588d0a7fe80b52a96efc159p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.539d6c996b4b7b64f3f2f09f85p-64L 0x1.798588d0a7fe80b52a96efc159p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.539d6c996b4b7b64f3f2f09f84p-64L 0x1.798588d0a7fe80b52a96efc159p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd5p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.539d6c996b4b7b64f3f2f09f85p-64L 0x1.798588d0a7fe80b52a96efc1598p+0L : inexact-ok += clog downward dbl-64 0x1.8907bc3694fd4p-4 0xf.ed19ap-4 : 0xf.a760671eaacbp-28 0x1.798588e8ccefdp+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bc3694fd4p-4 0xf.ed19ap-4 : 0xf.a760671eaacbp-28 0x1.798588e8ccefdp+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bc3694fd4p-4 0xf.ed19ap-4 : 0xf.a760671eaacbp-28 0x1.798588e8ccefdp+0 : inexact-ok += clog upward dbl-64 0x1.8907bc3694fd4p-4 0xf.ed19ap-4 : 0xf.a760671eaacb8p-28 0x1.798588e8ccefep+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb383p-28L 0x1.798588e8ccefd52ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb383p-28L 0x1.798588e8ccefd52ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb383p-28L 0x1.798588e8ccefd52ep+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb384p-28L 0x1.798588e8ccefd53p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb383p-28L 0x1.798588e8ccefd52ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb383p-28L 0x1.798588e8ccefd52ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb383p-28L 0x1.798588e8ccefd52ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb384p-28L 0x1.798588e8ccefd53p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb3833c48cf53a0808p-28L 0x1.798588e8ccefd52e7b77ea155b6ep+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb3833c48cf53a081p-28L 0x1.798588e8ccefd52e7b77ea155b6ep+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb3833c48cf53a0808p-28L 0x1.798588e8ccefd52e7b77ea155b6ep+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb3833c48cf53a081p-28L 0x1.798588e8ccefd52e7b77ea155b6fp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb3833c48cf53a08p-28L 0x1.798588e8ccefd52e7b77ea155bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb3833c48cf53a08p-28L 0x1.798588e8ccefd52e7b77ea155b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb3833c48cf53a08p-28L 0x1.798588e8ccefd52e7b77ea155bp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed19ap-4L : 0xf.a760671eaacb3833c48cf53a0cp-28L 0x1.798588e8ccefd52e7b77ea155b8p+0L : inexact-ok += clog downward dbl-64 0x1.8907bc3694fd4p-4 0xf.ed199p-4 : -0x4.5b92191d94fe4p-32 0x1.798588d03c742p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bc3694fd4p-4 0xf.ed199p-4 : -0x4.5b92191d94fe4p-32 0x1.798588d03c743p+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bc3694fd4p-4 0xf.ed199p-4 : -0x4.5b92191d94fep-32 0x1.798588d03c742p+0 : inexact-ok += clog upward dbl-64 0x1.8907bc3694fd4p-4 0xf.ed199p-4 : -0x4.5b92191d94fep-32 0x1.798588d03c743p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe339p-32L 0x1.798588d03c742962p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe3388p-32L 0x1.798588d03c742962p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe3388p-32L 0x1.798588d03c742962p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe3388p-32L 0x1.798588d03c742964p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe339p-32L 0x1.798588d03c742962p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe3388p-32L 0x1.798588d03c742962p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe3388p-32L 0x1.798588d03c742962p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe3388p-32L 0x1.798588d03c742964p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe338ae98425c307fp-32L 0x1.798588d03c7429628c5cdd1197fp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe338ae98425c307fp-32L 0x1.798588d03c7429628c5cdd1197fp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe338ae98425c307ecp-32L 0x1.798588d03c7429628c5cdd1197fp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe338ae98425c307ecp-32L 0x1.798588d03c7429628c5cdd1197f1p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe338ae98425c308p-32L 0x1.798588d03c7429628c5cdd11978p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe338ae98425c308p-32L 0x1.798588d03c7429628c5cdd1198p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe338ae98425c306p-32L 0x1.798588d03c7429628c5cdd11978p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed199p-4L : -0x4.5b92191d94fe338ae98425c306p-32L 0x1.798588d03c7429628c5cdd1198p+0L : inexact-ok += clog downward dbl-64 0x1.8907bc3694fd4p-4 0xf.ed1990460bep-4 : 0x3.ee8b934ce843ap-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bc3694fd4p-4 0xf.ed1990460bep-4 : 0x3.ee8b934ce843cp-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bc3694fd4p-4 0xf.ed1990460bep-4 : 0x3.ee8b934ce843ap-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog upward dbl-64 0x1.8907bc3694fd4p-4 0xf.ed1990460bep-4 : 0x3.ee8b934ce843cp-56 0x1.798588d0a7fe9p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b888p-56L 0x1.798588d0a7fe8216p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88cp-56L 0x1.798588d0a7fe8218p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b888p-56L 0x1.798588d0a7fe8216p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88cp-56L 0x1.798588d0a7fe8218p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b888p-56L 0x1.798588d0a7fe8216p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88cp-56L 0x1.798588d0a7fe8218p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b888p-56L 0x1.798588d0a7fe8216p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88cp-56L 0x1.798588d0a7fe8218p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88a72ba364445f4p-56L 0x1.798588d0a7fe821728c333f44ddcp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88a72ba364445f6p-56L 0x1.798588d0a7fe821728c333f44dddp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88a72ba364445f4p-56L 0x1.798588d0a7fe821728c333f44ddcp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88a72ba364445f6p-56L 0x1.798588d0a7fe821728c333f44dddp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88a72ba364445p-56L 0x1.798588d0a7fe821728c333f44d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88a72ba364446p-56L 0x1.798588d0a7fe821728c333f44ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88a72ba364445p-56L 0x1.798588d0a7fe821728c333f44d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bep-4L : 0x3.ee8b934ce843b88a72ba364446p-56L 0x1.798588d0a7fe821728c333f44ep+0L : inexact-ok += clog downward dbl-64 0x1.8907bc3694fd4p-4 0xf.ed1990460bdf8p-4 : -0x4.080134d61dac4p-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog tonearest dbl-64 0x1.8907bc3694fd4p-4 0xf.ed1990460bdf8p-4 : -0x4.080134d61dac4p-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog towardzero dbl-64 0x1.8907bc3694fd4p-4 0xf.ed1990460bdf8p-4 : -0x4.080134d61dacp-56 0x1.798588d0a7fe8p+0 : inexact-ok += clog upward dbl-64 0x1.8907bc3694fd4p-4 0xf.ed1990460bdf8p-4 : -0x4.080134d61dacp-56 0x1.798588d0a7fe9p+0 : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac2848p-56L 0x1.798588d0a7fe8152p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284p-56L 0x1.798588d0a7fe8152p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284p-56L 0x1.798588d0a7fe8152p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284p-56L 0x1.798588d0a7fe8154p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac2848p-56L 0x1.798588d0a7fe8152p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284p-56L 0x1.798588d0a7fe8152p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284p-56L 0x1.798588d0a7fe8152p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284p-56L 0x1.798588d0a7fe8154p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284049b9ffc3cfc4p-56L 0x1.798588d0a7fe8152a4e518a9cf3cp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284049b9ffc3cfc4p-56L 0x1.798588d0a7fe8152a4e518a9cf3dp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284049b9ffc3cfcp-56L 0x1.798588d0a7fe8152a4e518a9cf3cp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284049b9ffc3cfcp-56L 0x1.798588d0a7fe8152a4e518a9cf3dp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284049b9ffc3dp-56L 0x1.798588d0a7fe8152a4e518a9cfp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284049b9ffc3dp-56L 0x1.798588d0a7fe8152a4e518a9cfp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284049b9ffc3cep-56L 0x1.798588d0a7fe8152a4e518a9cfp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdf8p-4L : -0x4.080134d61dac284049b9ffc3cep-56L 0x1.798588d0a7fe8152a4e518a9cf8p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddcp-60L 0x1.798588d0a7fe81b4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddap-60L 0x1.798588d0a7fe81b4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddap-60L 0x1.798588d0a7fe81b4p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddap-60L 0x1.798588d0a7fe81b6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddcp-60L 0x1.798588d0a7fe81b4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddap-60L 0x1.798588d0a7fe81b4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddap-60L 0x1.798588d0a7fe81b4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddap-60L 0x1.798588d0a7fe81b6p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddade0fd0e72303p-60L 0x1.798588d0a7fe81b409bfcc705abfp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddade0fd0e72303p-60L 0x1.798588d0a7fe81b409bfcc705acp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddade0fd0e72302p-60L 0x1.798588d0a7fe81b409bfcc705abfp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddade0fd0e72302p-60L 0x1.798588d0a7fe81b409bfcc705acp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddade0fd0e7238p-60L 0x1.798588d0a7fe81b409bfcc705a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddade0fd0e723p-60L 0x1.798588d0a7fe81b409bfcc705a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddade0fd0e723p-60L 0x1.798588d0a7fe81b409bfcc705a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf7p-4L : -0x1.5b02f25c21addddade0fd0e723p-60L 0x1.798588d0a7fe81b409bfcc705bp+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9ep-60L 0x1.798588d0a7fe81b2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9ep-60L 0x1.798588d0a7fe81b4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9cp-60L 0x1.798588d0a7fe81b2p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9cp-60L 0x1.798588d0a7fe81b4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9ep-60L 0x1.798588d0a7fe81b2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9ep-60L 0x1.798588d0a7fe81b4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9cp-60L 0x1.798588d0a7fe81b2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9cp-60L 0x1.798588d0a7fe81b4p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9d08bc2cef129fp-60L 0x1.798588d0a7fe81b3f12f50acf16fp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9d08bc2cef129fp-60L 0x1.798588d0a7fe81b3f12f50acf17p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9d08bc2cef129ep-60L 0x1.798588d0a7fe81b3f12f50acf16fp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9d08bc2cef129ep-60L 0x1.798588d0a7fe81b3f12f50acf17p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9d08bc2cef13p-60L 0x1.798588d0a7fe81b3f12f50acf1p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9d08bc2cef128p-60L 0x1.798588d0a7fe81b3f12f50acf18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9d08bc2cef128p-60L 0x1.798588d0a7fe81b3f12f50acf1p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf6p-4L : -0x1.6af00bec67b9bd9d08bc2cef128p-60L 0x1.798588d0a7fe81b3f12f50acf18p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.63cde56cfe489068426f7cd4858cp-60L 0x1.798588d0a7fe81b3fc2ff4221736p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.63cde56cfe489068426f7cd4858cp-60L 0x1.798588d0a7fe81b3fc2ff4221737p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.63cde56cfe489068426f7cd4858bp-60L 0x1.798588d0a7fe81b3fc2ff4221736p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.63cde56cfe489068426f7cd4858bp-60L 0x1.798588d0a7fe81b3fc2ff4221737p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.63cde56cfe489068426f7cd486p-60L 0x1.798588d0a7fe81b3fc2ff42217p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.63cde56cfe489068426f7cd4858p-60L 0x1.798588d0a7fe81b3fc2ff42217p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.63cde56cfe489068426f7cd4858p-60L 0x1.798588d0a7fe81b3fc2ff42217p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4p-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.63cde56cfe489068426f7cd4858p-60L 0x1.798588d0a7fe81b3fc2ff422178p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171p-28L 0x1.798588e8ccefd446p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171p-28L 0x1.798588e8ccefd448p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171p-28L 0x1.798588e8ccefd446p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9172p-28L 0x1.798588e8ccefd448p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171p-28L 0x1.798588e8ccefd446p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171p-28L 0x1.798588e8ccefd448p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171p-28L 0x1.798588e8ccefd446p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9172p-28L 0x1.798588e8ccefd448p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171520a5ee28a1d8p-28L 0x1.798588e8ccefd447ad6050f4b4dcp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171520a5ee28a1ep-28L 0x1.798588e8ccefd447ad6050f4b4dcp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171520a5ee28a1d8p-28L 0x1.798588e8ccefd447ad6050f4b4dcp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171520a5ee28a1ep-28L 0x1.798588e8ccefd447ad6050f4b4ddp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171520a5ee28ap-28L 0x1.798588e8ccefd447ad6050f4b48p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171520a5ee28ap-28L 0x1.798588e8ccefd447ad6050f4b5p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171520a5ee28ap-28L 0x1.798588e8ccefd447ad6050f4b48p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed19ap-4L : 0xf.a76067200ec9171520a5ee28a4p-28L 0x1.798588e8ccefd447ad6050f4b5p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b9219075520193p-32L 0x1.798588d03c74287ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201928p-32L 0x1.798588d03c74287cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201928p-32L 0x1.798588d03c74287ap+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201928p-32L 0x1.798588d03c74287cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b9219075520193p-32L 0x1.798588d03c74287ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201928p-32L 0x1.798588d03c74287cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201928p-32L 0x1.798588d03c74287ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201928p-32L 0x1.798588d03c74287cp+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201929fc97abbfede4p-32L 0x1.798588d03c74287bbe4460560936p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201929fc97abbfedep-32L 0x1.798588d03c74287bbe4460560937p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201929fc97abbfedep-32L 0x1.798588d03c74287bbe4460560936p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201929fc97abbfedep-32L 0x1.798588d03c74287bbe4460560937p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201929fc97abbfeep-32L 0x1.798588d03c74287bbe44605609p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201929fc97abbfeep-32L 0x1.798588d03c74287bbe44605609p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201929fc97abbfecp-32L 0x1.798588d03c74287bbe44605609p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed199p-4L : -0x4.5b92190755201929fc97abbfecp-32L 0x1.798588d03c74287bbe446056098p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e668p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e668p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e668p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e67p-56L 0x1.798588d0a7fe8132p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e668p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e668p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e668p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e67p-56L 0x1.798588d0a7fe8132p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e66810799386b83p-56L 0x1.798588d0a7fe81305aaabb1d2dcbp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e66810799386b834p-56L 0x1.798588d0a7fe81305aaabb1d2dccp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e66810799386b83p-56L 0x1.798588d0a7fe81305aaabb1d2dcbp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e66810799386b834p-56L 0x1.798588d0a7fe81305aaabb1d2dccp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e66810799386b8p-56L 0x1.798588d0a7fe81305aaabb1d2d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e66810799386b8p-56L 0x1.798588d0a7fe81305aaabb1d2ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e66810799386b8p-56L 0x1.798588d0a7fe81305aaabb1d2d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bep-4L : 0x4.04cb71668746e66810799386bap-56L 0x1.798588d0a7fe81305aaabb1d2ep+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f904p-56L 0x1.798588d0a7fe806ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f9p-56L 0x1.798588d0a7fe806cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f9p-56L 0x1.798588d0a7fe806ap+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f9p-56L 0x1.798588d0a7fe806cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f904p-56L 0x1.798588d0a7fe806ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f9p-56L 0x1.798588d0a7fe806cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f9p-56L 0x1.798588d0a7fe806ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f9p-56L 0x1.798588d0a7fe806cp+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f900529dbdc409fep-56L 0x1.798588d0a7fe806bd6cc9fd2af24p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f900529dbdc409fcp-56L 0x1.798588d0a7fe806bd6cc9fd2af25p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f900529dbdc409fcp-56L 0x1.798588d0a7fe806bd6cc9fd2af24p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f900529dbdc409fcp-56L 0x1.798588d0a7fe806bd6cc9fd2af25p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f900529dbdc40ap-56L 0x1.798588d0a7fe806bd6cc9fd2afp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f900529dbdc40ap-56L 0x1.798588d0a7fe806bd6cc9fd2afp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f900529dbdc409p-56L 0x1.798588d0a7fe806bd6cc9fd2afp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c156bc7ea8f900529dbdc409p-56L 0x1.798588d0a7fe806bd6cc9fd2af8p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2abp-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2abp-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2abp-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2acp-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2abp-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2abp-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2abp-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2acp-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2ab315b13fecbdc8p-68L 0x1.798588d0a7fe80cd3ba753993aabp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2ab315b13fecbddp-68L 0x1.798588d0a7fe80cd3ba753993aabp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2ab315b13fecbdc8p-68L 0x1.798588d0a7fe80cd3ba753993aabp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2ab315b13fecbddp-68L 0x1.798588d0a7fe80cd3ba753993aacp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2ab315b13fecbcp-68L 0x1.798588d0a7fe80cd3ba753993a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2ab315b13fecbcp-68L 0x1.798588d0a7fe80cd3ba753993a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2ab315b13fecbcp-68L 0x1.798588d0a7fe80cd3ba753993a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf7p-4L : 0x8.faef3dce850b2ab315b13feccp-68L 0x1.798588d0a7fe80cd3ba753993bp+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494b8p-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494bp-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494bp-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494bp-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494b8p-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494bp-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494bp-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494bp-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494b2e3f0fe88376cp-68L 0x1.798588d0a7fe80cd2316d7d5d15bp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494b2e3f0fe883768p-68L 0x1.798588d0a7fe80cd2316d7d5d15bp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494b2e3f0fe883768p-68L 0x1.798588d0a7fe80cd2316d7d5d15bp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494b2e3f0fe883768p-68L 0x1.798588d0a7fe80cd2316d7d5d15cp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494b2e3f0fe8838p-68L 0x1.798588d0a7fe80cd2316d7d5d1p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494b2e3f0fe8838p-68L 0x1.798588d0a7fe80cd2316d7d5d18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494b2e3f0fe8836p-68L 0x1.798588d0a7fe80cd2316d7d5d1p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf6p-4L : -0x6.f22a527786d494b2e3f0fe8836p-68L 0x1.798588d0a7fe80cd2316d7d5d18p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.ffc2cf1ea589ed5faf19ae269926p-72L 0x1.798588d0a7fe80cd2e177b4af722p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.ffc2cf1ea589ed5faf19ae269928p-72L 0x1.798588d0a7fe80cd2e177b4af722p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.ffc2cf1ea589ed5faf19ae269926p-72L 0x1.798588d0a7fe80cd2e177b4af722p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.ffc2cf1ea589ed5faf19ae269928p-72L 0x1.798588d0a7fe80cd2e177b4af723p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.ffc2cf1ea589ed5faf19ae2699p-72L 0x1.798588d0a7fe80cd2e177b4af7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.ffc2cf1ea589ed5faf19ae2699p-72L 0x1.798588d0a7fe80cd2e177b4af7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.ffc2cf1ea589ed5faf19ae2699p-72L 0x1.798588d0a7fe80cd2e177b4af7p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7ep-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x2.ffc2cf1ea589ed5faf19ae269ap-72L 0x1.798588d0a7fe80cd2e177b4af78p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61p-28L 0x1.798588e8ccefd446p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f62p-28L 0x1.798588e8ccefd448p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61p-28L 0x1.798588e8ccefd446p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f62p-28L 0x1.798588e8ccefd448p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61p-28L 0x1.798588e8ccefd446p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f62p-28L 0x1.798588e8ccefd448p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61p-28L 0x1.798588e8ccefd446p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f62p-28L 0x1.798588e8ccefd448p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61df9f4fe7195f8p-28L 0x1.798588e8ccefd447cd3a83f66151p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61df9f4fe7196p-28L 0x1.798588e8ccefd447cd3a83f66151p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61df9f4fe7195f8p-28L 0x1.798588e8ccefd447cd3a83f66151p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61df9f4fe7196p-28L 0x1.798588e8ccefd447cd3a83f66152p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61df9f4fe7194p-28L 0x1.798588e8ccefd447cd3a83f661p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61df9f4fe7194p-28L 0x1.798588e8ccefd447cd3a83f6618p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61df9f4fe7194p-28L 0x1.798588e8ccefd447cd3a83f661p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed19ap-4L : 0xf.a76067200e97f61df9f4fe7198p-28L 0x1.798588e8ccefd447cd3a83f6618p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228a8p-32L 0x1.798588d03c74287ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228ap-32L 0x1.798588d03c74287cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228ap-32L 0x1.798588d03c74287ap+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228ap-32L 0x1.798588d03c74287cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228a8p-32L 0x1.798588d03c74287ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228ap-32L 0x1.798588d03c74287cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228ap-32L 0x1.798588d03c74287ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228ap-32L 0x1.798588d03c74287cp+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228a284847a53bcep-32L 0x1.798588d03c74287bde1e93771ed2p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228a284847a53bcdcp-32L 0x1.798588d03c74287bde1e93771ed2p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228a284847a53bcdcp-32L 0x1.798588d03c74287bde1e93771ed2p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228a284847a53bcdcp-32L 0x1.798588d03c74287bde1e93771ed3p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228a284847a53bep-32L 0x1.798588d03c74287bde1e93771e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228a284847a53bcp-32L 0x1.798588d03c74287bde1e93771fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228a284847a53bcp-32L 0x1.798588d03c74287bde1e93771e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed199p-4L : -0x4.5b921907583228a284847a53bcp-32L 0x1.798588d03c74287bde1e93771fp+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc68p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc7p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc68p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc7p-56L 0x1.798588d0a7fe8132p+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc68p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc7p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc68p-56L 0x1.798588d0a7fe813p+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc7p-56L 0x1.798588d0a7fe8132p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc6d8c2d77b53234p-56L 0x1.798588d0a7fe81307a84ee3db9e3p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc6d8c2d77b53234p-56L 0x1.798588d0a7fe81307a84ee3db9e3p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc6d8c2d77b53234p-56L 0x1.798588d0a7fe81307a84ee3db9e3p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc6d8c2d77b53238p-56L 0x1.798588d0a7fe81307a84ee3db9e4p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc6d8c2d77b532p-56L 0x1.798588d0a7fe81307a84ee3db98p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc6d8c2d77b532p-56L 0x1.798588d0a7fe81307a84ee3dbap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc6d8c2d77b532p-56L 0x1.798588d0a7fe81307a84ee3db98p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bep-4L : 0x4.04c85f570ed9bc6d8c2d77b534p-56L 0x1.798588d0a7fe81307a84ee3dbap+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fcp-56L 0x1.798588d0a7fe806ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fcp-56L 0x1.798588d0a7fe806cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622f8p-56L 0x1.798588d0a7fe806ap+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622f8p-56L 0x1.798588d0a7fe806cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fcp-56L 0x1.798588d0a7fe806ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fcp-56L 0x1.798588d0a7fe806cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622f8p-56L 0x1.798588d0a7fe806ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622f8p-56L 0x1.798588d0a7fe806cp+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fb07d0c874f50cp-56L 0x1.798588d0a7fe806bf6a6d2f33b3cp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fb07d0c874f50cp-56L 0x1.798588d0a7fe806bf6a6d2f33b3cp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fb07d0c874f50ap-56L 0x1.798588d0a7fe806bf6a6d2f33b3cp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fb07d0c874f50ap-56L 0x1.798588d0a7fe806bf6a6d2f33b3dp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fb07d0c874f6p-56L 0x1.798588d0a7fe806bf6a6d2f33bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fb07d0c874f5p-56L 0x1.798588d0a7fe806bf6a6d2f33bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fb07d0c874f5p-56L 0x1.798588d0a7fe806bf6a6d2f33bp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c468cbf71622fb07d0c874f5p-56L 0x1.798588d0a7fe806bf6a6d2f33b8p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80ep-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80ep-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80ep-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80fp-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80ep-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80ep-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80ep-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80fp-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80e3ac4060af314p-68L 0x1.798588d0a7fe80cd5b8186b9c6c2p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80e3ac4060af3148p-68L 0x1.798588d0a7fe80cd5b8186b9c6c3p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80e3ac4060af314p-68L 0x1.798588d0a7fe80cd5b8186b9c6c2p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80e3ac4060af3148p-68L 0x1.798588d0a7fe80cd5b8186b9c6c3p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80e3ac4060af3p-68L 0x1.798588d0a7fe80cd5b8186b9c68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80e3ac4060af3p-68L 0x1.798588d0a7fe80cd5b8186b9c7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80e3ac4060af3p-68L 0x1.798588d0a7fe80cd5b8186b9c68p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.c9ce4647b26b80e3ac4060af34p-68L 0x1.798588d0a7fe80cd5b8186b9c7p+0L : inexact-ok += clog downward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e88p-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e8p-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e8p-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog upward ldbl-96-intel 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e8p-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog downward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e88p-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e8p-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e8p-68L 0x1.798588d0a7fe80ccp+0L : inexact-ok += clog upward ldbl-96-m68k 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e8p-68L 0x1.798588d0a7fe80cep+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e82af2fbb848e14p-68L 0x1.798588d0a7fe80cd42f10af65d73p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e82af2fbb848e14p-68L 0x1.798588d0a7fe80cd42f10af65d73p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e82af2fbb848e1p-68L 0x1.798588d0a7fe80cd42f10af65d73p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e82af2fbb848e1p-68L 0x1.798588d0a7fe80cd42f10af65d74p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e82af2fbb849p-68L 0x1.798588d0a7fe80cd42f10af65dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e82af2fbb848ep-68L 0x1.798588d0a7fe80cd42f10af65d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e82af2fbb848ep-68L 0x1.798588d0a7fe80cd42f10af65dp+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.234b49fe59743e82af2fbb848ep-68L 0x1.798588d0a7fe80cd42f10af65d8p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.24ca94e8470af9a47e90fced2a3dp-76L 0x1.798588d0a7fe80cd4df1ae6b8339p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.24ca94e8470af9a47e90fced2a3dp-76L 0x1.798588d0a7fe80cd4df1ae6b833ap+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.24ca94e8470af9a47e90fced2a3cp-76L 0x1.798588d0a7fe80cd4df1ae6b8339p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.24ca94e8470af9a47e90fced2a3cp-76L 0x1.798588d0a7fe80cd4df1ae6b833ap+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.24ca94e8470af9a47e90fced2a8p-76L 0x1.798588d0a7fe80cd4df1ae6b83p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.24ca94e8470af9a47e90fced2ap-76L 0x1.798588d0a7fe80cd4df1ae6b83p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.24ca94e8470af9a47e90fced2ap-76L 0x1.798588d0a7fe80cd4df1ae6b83p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7cp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : -0x1.24ca94e8470af9a47e90fced2ap-76L 0x1.798588d0a7fe80cd4df1ae6b838p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed19ap-4L : 0xf.a76067200e991ae88ca05bda6afp-28L 0x1.798588e8ccefd447cc7caf9ea87p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed19ap-4L : 0xf.a76067200e991ae88ca05bda6afp-28L 0x1.798588e8ccefd447cc7caf9ea871p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed19ap-4L : 0xf.a76067200e991ae88ca05bda6afp-28L 0x1.798588e8ccefd447cc7caf9ea87p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed19ap-4L : 0xf.a76067200e991ae88ca05bda6af8p-28L 0x1.798588e8ccefd447cc7caf9ea871p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed19ap-4L : 0xf.a76067200e991ae88ca05bda68p-28L 0x1.798588e8ccefd447cc7caf9ea8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed19ap-4L : 0xf.a76067200e991ae88ca05bda6cp-28L 0x1.798588e8ccefd447cc7caf9ea88p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed19ap-4L : 0xf.a76067200e991ae88ca05bda68p-28L 0x1.798588e8ccefd447cc7caf9ea8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed19ap-4L : 0xf.a76067200e991ae88ca05bda6cp-28L 0x1.798588e8ccefd447cc7caf9ea88p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed199p-4L : -0x4.5b921907581fdbf935608cf648c8p-32L 0x1.798588d03c74287bdd60bf1eaabep+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed199p-4L : -0x4.5b921907581fdbf935608cf648c4p-32L 0x1.798588d03c74287bdd60bf1eaabfp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed199p-4L : -0x4.5b921907581fdbf935608cf648c4p-32L 0x1.798588d03c74287bdd60bf1eaabep+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed199p-4L : -0x4.5b921907581fdbf935608cf648c4p-32L 0x1.798588d03c74287bdd60bf1eaabfp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed199p-4L : -0x4.5b921907581fdbf935608cf64ap-32L 0x1.798588d03c74287bdd60bf1eaa8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed199p-4L : -0x4.5b921907581fdbf935608cf648p-32L 0x1.798588d03c74287bdd60bf1eaa8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed199p-4L : -0x4.5b921907581fdbf935608cf648p-32L 0x1.798588d03c74287bdd60bf1eaa8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed199p-4L : -0x4.5b921907581fdbf935608cf648p-32L 0x1.798588d03c74287bdd60bf1eabp+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bep-4L : 0x4.04c871a3b82840de3b34ab467bc8p-56L 0x1.798588d0a7fe813079c719e54903p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bep-4L : 0x4.04c871a3b82840de3b34ab467bccp-56L 0x1.798588d0a7fe813079c719e54904p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bep-4L : 0x4.04c871a3b82840de3b34ab467bc8p-56L 0x1.798588d0a7fe813079c719e54903p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bep-4L : 0x4.04c871a3b82840de3b34ab467bccp-56L 0x1.798588d0a7fe813079c719e54904p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bep-4L : 0x4.04c871a3b82840de3b34ab467ap-56L 0x1.798588d0a7fe813079c719e549p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bep-4L : 0x4.04c871a3b82840de3b34ab467cp-56L 0x1.798588d0a7fe813079c719e549p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bep-4L : 0x4.04c871a3b82840de3b34ab467ap-56L 0x1.798588d0a7fe813079c719e549p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bep-4L : 0x4.04c871a3b82840de3b34ab467cp-56L 0x1.798588d0a7fe813079c719e5498p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c4567f4dc79e8a57a6242b8758p-56L 0x1.798588d0a7fe806bf5e8fe9aca5cp+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c4567f4dc79e8a57a6242b8758p-56L 0x1.798588d0a7fe806bf5e8fe9aca5cp+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c4567f4dc79e8a57a6242b8756p-56L 0x1.798588d0a7fe806bf5e8fe9aca5cp+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c4567f4dc79e8a57a6242b8756p-56L 0x1.798588d0a7fe806bf5e8fe9aca5dp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c4567f4dc79e8a57a6242b88p-56L 0x1.798588d0a7fe806bf5e8fe9acap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c4567f4dc79e8a57a6242b87p-56L 0x1.798588d0a7fe806bf5e8fe9aca8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c4567f4dc79e8a57a6242b87p-56L 0x1.798588d0a7fe806bf5e8fe9acap+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdf8p-4L : -0x3.f1c4567f4dc79e8a57a6242b87p-56L 0x1.798588d0a7fe806bf5e8fe9aca8p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.caf310dc9ab28bdd4f7d235c13bp-68L 0x1.798588d0a7fe80cd5ac3b26155e3p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.caf310dc9ab28bdd4f7d235c13b8p-68L 0x1.798588d0a7fe80cd5ac3b26155e3p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.caf310dc9ab28bdd4f7d235c13bp-68L 0x1.798588d0a7fe80cd5ac3b26155e3p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.caf310dc9ab28bdd4f7d235c13b8p-68L 0x1.798588d0a7fe80cd5ac3b26155e4p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.caf310dc9ab28bdd4f7d235c1p-68L 0x1.798588d0a7fe80cd5ac3b261558p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.caf310dc9ab28bdd4f7d235c14p-68L 0x1.798588d0a7fe80cd5ac3b26156p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.caf310dc9ab28bdd4f7d235c1p-68L 0x1.798588d0a7fe80cd5ac3b261558p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf7p-4L : 0x8.caf310dc9ab28bdd4f7d235c14p-68L 0x1.798588d0a7fe80cd5ac3b26156p+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.22267f69712d338909ac1767636cp-68L 0x1.798588d0a7fe80cd4233369dec93p+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.22267f69712d338909ac17676368p-68L 0x1.798588d0a7fe80cd4233369dec93p+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.22267f69712d338909ac17676368p-68L 0x1.798588d0a7fe80cd4233369dec93p+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.22267f69712d338909ac17676368p-68L 0x1.798588d0a7fe80cd4233369dec94p+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.22267f69712d338909ac176764p-68L 0x1.798588d0a7fe80cd4233369dec8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.22267f69712d338909ac176764p-68L 0x1.798588d0a7fe80cd4233369dec8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.22267f69712d338909ac176762p-68L 0x1.798588d0a7fe80cd4233369dec8p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf6p-4L : -0x7.22267f69712d338909ac176762p-68L 0x1.798588d0a7fe80cd4233369dedp+0L : inexact-ok += clog downward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x1.c7ffffffffffffffffffffffffffp-208L 0x1.798588d0a7fe80cd4d33da13125ap+0L : inexact-ok += clog tonearest ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x1.c8p-208L 0x1.798588d0a7fe80cd4d33da13125ap+0L : inexact-ok += clog towardzero ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x1.c7ffffffffffffffffffffffffffp-208L 0x1.798588d0a7fe80cd4d33da13125ap+0L : inexact-ok += clog upward ldbl-128 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x1.c8p-208L 0x1.798588d0a7fe80cd4d33da13125bp+0L : inexact-ok += clog downward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x1.c7ffffffffffffffffffffffff8p-208L 0x1.798588d0a7fe80cd4d33da1312p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x1.c8p-208L 0x1.798588d0a7fe80cd4d33da13128p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x1.c7ffffffffffffffffffffffff8p-208L 0x1.798588d0a7fe80cd4d33da1312p+0L : inexact-ok += clog upward ldbl-128ibm 0x1.8907bc3694fd4e7c0beb59f6acp-4L 0xf.ed1990460bdfbf672a9da76bp-4L : 0x1.c8p-208L 0x1.798588d0a7fe80cd4d33da13128p+0L : inexact-ok +clog 0x3e1d0a105ac4ebeacd9c6952d34cp-112 0xf859b3d1b06d005dcbb5516d5479p-112 += clog downward flt-32 0x3.e1d0a4p-4f 0xf.859b4p-4f : 0x3.87cbc4p-28f 0x1.53625ep+0f : inexact-ok += clog tonearest flt-32 0x3.e1d0a4p-4f 0xf.859b4p-4f : 0x3.87cbc8p-28f 0x1.53625ep+0f : inexact-ok += clog towardzero flt-32 0x3.e1d0a4p-4f 0xf.859b4p-4f : 0x3.87cbc4p-28f 0x1.53625ep+0f : inexact-ok += clog upward flt-32 0x3.e1d0a4p-4f 0xf.859b4p-4f : 0x3.87cbc8p-28f 0x1.53626p+0f : inexact-ok += clog downward dbl-64 0x3.e1d0a4p-4 0xf.859b4p-4 : 0x3.87cbc7b8930cp-28 0x1.53625ea04ef0dp+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a4p-4 0xf.859b4p-4 : 0x3.87cbc7b8930cp-28 0x1.53625ea04ef0ep+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a4p-4 0xf.859b4p-4 : 0x3.87cbc7b8930cp-28 0x1.53625ea04ef0dp+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a4p-4 0xf.859b4p-4 : 0x3.87cbc7b8930c2p-28 0x1.53625ea04ef0ep+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fcp-28L 0x1.53625ea04ef0dbc4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc4p-28L 0x1.53625ea04ef0dbc6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fcp-28L 0x1.53625ea04ef0dbc4p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc4p-28L 0x1.53625ea04ef0dbc6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fcp-28L 0x1.53625ea04ef0dbc4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc4p-28L 0x1.53625ea04ef0dbc6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fcp-28L 0x1.53625ea04ef0dbc4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc4p-28L 0x1.53625ea04ef0dbc6p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc280d010c10984p-28L 0x1.53625ea04ef0dbc593b4d234ae4bp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc280d010c10984p-28L 0x1.53625ea04ef0dbc593b4d234ae4bp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc280d010c10984p-28L 0x1.53625ea04ef0dbc593b4d234ae4bp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc280d010c10986p-28L 0x1.53625ea04ef0dbc593b4d234ae4cp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc280d010c109p-28L 0x1.53625ea04ef0dbc593b4d234aep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc280d010c10ap-28L 0x1.53625ea04ef0dbc593b4d234ae8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc280d010c109p-28L 0x1.53625ea04ef0dbc593b4d234aep+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b4p-4L : 0x3.87cbc7b8930c0fc280d010c10ap-28L 0x1.53625ea04ef0dbc593b4d234ae8p+0L : inexact-ok += clog downward flt-32 0x3.e1d0a4p-4f 0xf.859b3p-4f : -0xb.fdcf8p-28f 0x1.53625ep+0f : inexact-ok += clog tonearest flt-32 0x3.e1d0a4p-4f 0xf.859b3p-4f : -0xb.fdcf8p-28f 0x1.53625ep+0f : inexact-ok += clog towardzero flt-32 0x3.e1d0a4p-4f 0xf.859b3p-4f : -0xb.fdcf7p-28f 0x1.53625ep+0f : inexact-ok += clog upward flt-32 0x3.e1d0a4p-4f 0xf.859b3p-4f : -0xb.fdcf7p-28f 0x1.53626p+0f : inexact-ok += clog downward dbl-64 0x3.e1d0a4p-4 0xf.859b3p-4 : -0xb.fdcf787cb77dp-28 0x1.53625e6231e67p+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a4p-4 0xf.859b3p-4 : -0xb.fdcf787cb77dp-28 0x1.53625e6231e68p+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a4p-4 0xf.859b3p-4 : -0xb.fdcf787cb77c8p-28 0x1.53625e6231e67p+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a4p-4 0xf.859b3p-4 : -0xb.fdcf787cb77c8p-28 0x1.53625e6231e68p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf2ap-28L 0x1.53625e6231e67aecp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf2ap-28L 0x1.53625e6231e67aecp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29p-28L 0x1.53625e6231e67aecp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29p-28L 0x1.53625e6231e67aeep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf2ap-28L 0x1.53625e6231e67aecp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf2ap-28L 0x1.53625e6231e67aecp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29p-28L 0x1.53625e6231e67aecp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29p-28L 0x1.53625e6231e67aeep+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29bc41536b9c898p-28L 0x1.53625e6231e67aecea0c4415d123p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29bc41536b9c898p-28L 0x1.53625e6231e67aecea0c4415d123p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29bc41536b9c89p-28L 0x1.53625e6231e67aecea0c4415d123p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29bc41536b9c89p-28L 0x1.53625e6231e67aecea0c4415d124p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29bc41536b9ccp-28L 0x1.53625e6231e67aecea0c4415d1p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29bc41536b9c8p-28L 0x1.53625e6231e67aecea0c4415d1p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29bc41536b9c8p-28L 0x1.53625e6231e67aecea0c4415d1p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3p-4L : -0xb.fdcf787cb77cf29bc41536b9c8p-28L 0x1.53625e6231e67aecea0c4415d18p+0L : inexact-ok += clog downward dbl-64 0x3.e1d0a4p-4 0xf.859b3d1b06d08p-4 : 0xb.8f6bf15f26c6p-32 0x1.53625e95126a6p+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a4p-4 0xf.859b3d1b06d08p-4 : 0xb.8f6bf15f26c6p-32 0x1.53625e95126a7p+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a4p-4 0xf.859b3d1b06d08p-4 : 0xb.8f6bf15f26c6p-32 0x1.53625e95126a6p+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a4p-4 0xf.859b3d1b06d08p-4 : 0xb.8f6bf15f26c68p-32 0x1.53625e95126a7p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d5p-32L 0x1.53625e95126a685cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d6p-32L 0x1.53625e95126a685cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d5p-32L 0x1.53625e95126a685cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d6p-32L 0x1.53625e95126a685ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d5p-32L 0x1.53625e95126a685cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d6p-32L 0x1.53625e95126a685cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d5p-32L 0x1.53625e95126a685cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d6p-32L 0x1.53625e95126a685ep+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d58ad91aa47a008p-32L 0x1.53625e95126a685c759a68f985ebp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d58ad91aa47a01p-32L 0x1.53625e95126a685c759a68f985ebp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d58ad91aa47a008p-32L 0x1.53625e95126a685c759a68f985ebp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d58ad91aa47a01p-32L 0x1.53625e95126a685c759a68f985ecp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d58ad91aa47ap-32L 0x1.53625e95126a685c759a68f9858p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d58ad91aa47ap-32L 0x1.53625e95126a685c759a68f986p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d58ad91aa47ap-32L 0x1.53625e95126a685c759a68f9858p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d08p-4L : 0xb.8f6bf15f26c60d58ad91aa47a4p-32L 0x1.53625e95126a685c759a68f986p+0L : inexact-ok += clog downward dbl-64 0x3.e1d0a4p-4 0xf.859b3d1b06dp-4 : 0xb.8f6be99c5928p-32 0x1.53625e95126a6p+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a4p-4 0xf.859b3d1b06dp-4 : 0xb.8f6be99c5928p-32 0x1.53625e95126a6p+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a4p-4 0xf.859b3d1b06dp-4 : 0xb.8f6be99c5928p-32 0x1.53625e95126a6p+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a4p-4 0xf.859b3d1b06dp-4 : 0xb.8f6be99c59288p-32 0x1.53625e95126a7p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c5928334p-32L 0x1.53625e95126a666ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c5928334p-32L 0x1.53625e95126a666cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c5928334p-32L 0x1.53625e95126a666ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c5928335p-32L 0x1.53625e95126a666cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c5928334p-32L 0x1.53625e95126a666ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c5928334p-32L 0x1.53625e95126a666cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c5928334p-32L 0x1.53625e95126a666ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c5928335p-32L 0x1.53625e95126a666cp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c592833451dff0e784828p-32L 0x1.53625e95126a666b8d4895da437dp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c592833451dff0e784828p-32L 0x1.53625e95126a666b8d4895da437dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c592833451dff0e784828p-32L 0x1.53625e95126a666b8d4895da437dp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c592833451dff0e78483p-32L 0x1.53625e95126a666b8d4895da437ep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c592833451dff0e7848p-32L 0x1.53625e95126a666b8d4895da43p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c592833451dff0e7848p-32L 0x1.53625e95126a666b8d4895da438p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c592833451dff0e7848p-32L 0x1.53625e95126a666b8d4895da43p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06dp-4L : 0xb.8f6be99c592833451dff0e784cp-32L 0x1.53625e95126a666b8d4895da438p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a1832p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a1832p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a1832p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a18321p-32L 0x1.53625e95126a6684p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a1832p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a1832p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a1832p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a18321p-32L 0x1.53625e95126a6684p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a18320783d745a01cd8p-32L 0x1.53625e95126a66825bf2574af2cap+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a18320783d745a01cd8p-32L 0x1.53625e95126a66825bf2574af2cap+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a18320783d745a01cd8p-32L 0x1.53625e95126a66825bf2574af2cap+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a18320783d745a01cep-32L 0x1.53625e95126a66825bf2574af2cbp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a18320783d745a01cp-32L 0x1.53625e95126a66825bf2574af28p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a18320783d745a01cp-32L 0x1.53625e95126a66825bf2574af3p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a18320783d745a01cp-32L 0x1.53625e95126a66825bf2574af28p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005ep-4L : 0xb.8f6be9f78a18320783d745a02p-32L 0x1.53625e95126a66825bf2574af3p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e5p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e5p-32L 0x1.53625e95126a6684p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e5p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4p-32L 0x1.53625e95126a6682p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e5p-32L 0x1.53625e95126a6684p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4c41655017b158p-32L 0x1.53625e95126a66821dd54d108ee2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4c41655017b158p-32L 0x1.53625e95126a66821dd54d108ee2p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4c41655017b158p-32L 0x1.53625e95126a66821dd54d108ee2p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4c41655017b16p-32L 0x1.53625e95126a66821dd54d108ee3p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4c41655017bp-32L 0x1.53625e95126a66821dd54d108e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4c41655017bp-32L 0x1.53625e95126a66821dd54d108fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4c41655017bp-32L 0x1.53625e95126a66821dd54d108e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dp-4L : 0xb.8f6be9f691be7e4c41655017b4p-32L 0x1.53625e95126a66821dd54d108fp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xb.8f6be9f7575d863c447e407e48e8p-32L 0x1.53625e95126a66824f425276ce7cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xb.8f6be9f7575d863c447e407e48fp-32L 0x1.53625e95126a66824f425276ce7dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xb.8f6be9f7575d863c447e407e48e8p-32L 0x1.53625e95126a66824f425276ce7cp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xb.8f6be9f7575d863c447e407e48fp-32L 0x1.53625e95126a66824f425276ce7dp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xb.8f6be9f7575d863c44850af23308p-32L 0x1.53625e95126a66824f425276ce7ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xb.8f6be9f7575d863c44850af23308p-32L 0x1.53625e95126a66824f425276ce7ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xb.8f6be9f7575d863c44850af23308p-32L 0x1.53625e95126a66824f425276ce7ep+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xb.8f6be9f7575d863c44850af2331p-32L 0x1.53625e95126a66824f425276ce7fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xb.8f6be9f7575d863c44850af23p-32L 0x1.53625e95126a66824f425276cep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xb.8f6be9f7575d863c44850af234p-32L 0x1.53625e95126a66824f425276ce8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xb.8f6be9f7575d863c44850af23p-32L 0x1.53625e95126a66824f425276cep+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xb.8f6be9f7575d863c44850af234p-32L 0x1.53625e95126a66824f425276ce8p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xb.8f6be9f7575d863c4446f4854438p-32L 0x1.53625e95126a66824f425276ce6ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xb.8f6be9f7575d863c4446f4854438p-32L 0x1.53625e95126a66824f425276ce6fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xb.8f6be9f7575d863c4446f4854438p-32L 0x1.53625e95126a66824f425276ce6ep+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xb.8f6be9f7575d863c4446f485444p-32L 0x1.53625e95126a66824f425276ce6fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xb.8f6be9f7575d863c4446f48544p-32L 0x1.53625e95126a66824f425276cep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xb.8f6be9f7575d863c4446f48544p-32L 0x1.53625e95126a66824f425276ce8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xb.8f6be9f7575d863c4446f48544p-32L 0x1.53625e95126a66824f425276cep+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a4p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xb.8f6be9f7575d863c4446f48548p-32L 0x1.53625e95126a66824f425276ce8p+0L : inexact-ok += clog downward flt-32 0x3.e1d0ap-4f 0xf.859b4p-4f : 0x2.8f579cp-28f 0x1.53625ep+0f : inexact-ok += clog tonearest flt-32 0x3.e1d0ap-4f 0xf.859b4p-4f : 0x2.8f57ap-28f 0x1.53625ep+0f : inexact-ok += clog towardzero flt-32 0x3.e1d0ap-4f 0xf.859b4p-4f : 0x2.8f579cp-28f 0x1.53625ep+0f : inexact-ok += clog upward flt-32 0x3.e1d0ap-4f 0xf.859b4p-4f : 0x2.8f57ap-28f 0x1.53626p+0f : inexact-ok += clog downward dbl-64 0x3.e1d0ap-4 0xf.859b4p-4 : 0x2.8f579f9725e7ep-28 0x1.53625ede655dcp+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0ap-4 0xf.859b4p-4 : 0x2.8f579f9725e7ep-28 0x1.53625ede655dcp+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0ap-4 0xf.859b4p-4 : 0x2.8f579f9725e7ep-28 0x1.53625ede655dcp+0 : inexact-ok += clog upward dbl-64 0x3.e1d0ap-4 0xf.859b4p-4 : 0x2.8f579f9725e8p-28 0x1.53625ede655ddp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea78p-28L 0x1.53625ede655dc422p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7cp-28L 0x1.53625ede655dc424p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea78p-28L 0x1.53625ede655dc422p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7cp-28L 0x1.53625ede655dc424p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea78p-28L 0x1.53625ede655dc422p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7cp-28L 0x1.53625ede655dc424p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea78p-28L 0x1.53625ede655dc422p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7cp-28L 0x1.53625ede655dc424p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7be89a88403f5cp-28L 0x1.53625ede655dc423613b495cb08dp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7be89a88403f5ep-28L 0x1.53625ede655dc423613b495cb08dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7be89a88403f5cp-28L 0x1.53625ede655dc423613b495cb08dp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7be89a88403f5ep-28L 0x1.53625ede655dc423613b495cb08ep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7be89a88403fp-28L 0x1.53625ede655dc423613b495cb08p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7be89a88403fp-28L 0x1.53625ede655dc423613b495cb08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7be89a88403fp-28L 0x1.53625ede655dc423613b495cb08p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b4p-4L : 0x2.8f579f9725e7ea7be89a88404p-28L 0x1.53625ede655dc423613b495cb1p+0L : inexact-ok += clog downward flt-32 0x3.e1d0ap-4f 0xf.859b3p-4f : -0xc.f643bp-28f 0x1.53625ep+0f : inexact-ok += clog tonearest flt-32 0x3.e1d0ap-4f 0xf.859b3p-4f : -0xc.f643ap-28f 0x1.53625ep+0f : inexact-ok += clog towardzero flt-32 0x3.e1d0ap-4f 0xf.859b3p-4f : -0xc.f643ap-28f 0x1.53625ep+0f : inexact-ok += clog upward flt-32 0x3.e1d0ap-4f 0xf.859b3p-4f : -0xc.f643ap-28f 0x1.53626p+0f : inexact-ok += clog downward dbl-64 0x3.e1d0ap-4 0xf.859b3p-4 : -0xc.f643a28033cfp-28 0x1.53625ea048539p+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0ap-4 0xf.859b3p-4 : -0xc.f643a28033cfp-28 0x1.53625ea04853ap+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0ap-4 0xf.859b3p-4 : -0xc.f643a28033ce8p-28 0x1.53625ea048539p+0 : inexact-ok += clog upward dbl-64 0x3.e1d0ap-4 0xf.859b3p-4 : -0xc.f643a28033ce8p-28 0x1.53625ea04853ap+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef75p-28L 0x1.53625ea048539bcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef74p-28L 0x1.53625ea048539bc2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef74p-28L 0x1.53625ea048539bcp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef74p-28L 0x1.53625ea048539bc2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef75p-28L 0x1.53625ea048539bcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef74p-28L 0x1.53625ea048539bc2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef74p-28L 0x1.53625ea048539bcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef74p-28L 0x1.53625ea048539bc2p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef741c0b5f16d92fp-28L 0x1.53625ea048539bc1ad962d1171c8p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef741c0b5f16d92e8p-28L 0x1.53625ea048539bc1ad962d1171c8p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef741c0b5f16d92e8p-28L 0x1.53625ea048539bc1ad962d1171c8p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef741c0b5f16d92e8p-28L 0x1.53625ea048539bc1ad962d1171c9p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef741c0b5f16d94p-28L 0x1.53625ea048539bc1ad962d11718p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef741c0b5f16d94p-28L 0x1.53625ea048539bc1ad962d1172p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef741c0b5f16d9p-28L 0x1.53625ea048539bc1ad962d11718p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3p-4L : -0xc.f643a28033cef741c0b5f16d9p-28L 0x1.53625ea048539bc1ad962d1172p+0L : inexact-ok += clog downward dbl-64 0x3.e1d0ap-4 0xf.859b3d1b06d08p-4 : -0x3.f7d6962af490cp-32 0x1.53625ed328d75p+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0ap-4 0xf.859b3d1b06d08p-4 : -0x3.f7d6962af490cp-32 0x1.53625ed328d76p+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0ap-4 0xf.859b3d1b06d08p-4 : -0x3.f7d6962af490ap-32 0x1.53625ed328d75p+0 : inexact-ok += clog upward dbl-64 0x3.e1d0ap-4 0xf.859b3d1b06d08p-4 : -0x3.f7d6962af490ap-32 0x1.53625ed328d76p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c8p-32L 0x1.53625ed328d75afp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c8p-32L 0x1.53625ed328d75af2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c4p-32L 0x1.53625ed328d75afp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c4p-32L 0x1.53625ed328d75af2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c8p-32L 0x1.53625ed328d75afp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c8p-32L 0x1.53625ed328d75af2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c4p-32L 0x1.53625ed328d75afp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c4p-32L 0x1.53625ed328d75af2p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c67789f1259f3ap-32L 0x1.53625ed328d75af1306eec9c99f4p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c67789f1259f3ap-32L 0x1.53625ed328d75af1306eec9c99f5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c67789f1259f38p-32L 0x1.53625ed328d75af1306eec9c99f4p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c67789f1259f38p-32L 0x1.53625ed328d75af1306eec9c99f5p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c67789f125ap-32L 0x1.53625ed328d75af1306eec9c998p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c67789f1259fp-32L 0x1.53625ed328d75af1306eec9c9ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c67789f1259fp-32L 0x1.53625ed328d75af1306eec9c998p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d08p-4L : -0x3.f7d6962af490b9c67789f1259fp-32L 0x1.53625ed328d75af1306eec9c9ap+0L : inexact-ok += clog downward dbl-64 0x3.e1d0ap-4 0xf.859b3d1b06dp-4 : -0x3.f7d69dedc22fap-32 0x1.53625ed328d75p+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0ap-4 0xf.859b3d1b06dp-4 : -0x3.f7d69dedc22f8p-32 0x1.53625ed328d76p+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0ap-4 0xf.859b3d1b06dp-4 : -0x3.f7d69dedc22f8p-32 0x1.53625ed328d75p+0 : inexact-ok += clog upward dbl-64 0x3.e1d0ap-4 0xf.859b3d1b06dp-4 : -0x3.f7d69dedc22f8p-32 0x1.53625ed328d76p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84e4p-32L 0x1.53625ed328d759p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84ep-32L 0x1.53625ed328d759p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84ep-32L 0x1.53625ed328d759p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84ep-32L 0x1.53625ed328d75902p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84e4p-32L 0x1.53625ed328d759p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84ep-32L 0x1.53625ed328d759p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84ep-32L 0x1.53625ed328d759p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84ep-32L 0x1.53625ed328d75902p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84e19d310ffad844p-32L 0x1.53625ed328d75900481edd3506afp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84e19d310ffad842p-32L 0x1.53625ed328d75900481edd3506bp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84e19d310ffad842p-32L 0x1.53625ed328d75900481edd3506afp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84e19d310ffad842p-32L 0x1.53625ed328d75900481edd3506bp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84e19d310ffad9p-32L 0x1.53625ed328d75900481edd35068p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84e19d310ffad8p-32L 0x1.53625ed328d75900481edd35068p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84e19d310ffad8p-32L 0x1.53625ed328d75900481edd35068p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06dp-4L : -0x3.f7d69dedc22f84e19d310ffad8p-32L 0x1.53625ed328d75900481edd3507p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b1p-32L 0x1.53625ed328d75916p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b1p-32L 0x1.53625ed328d75918p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0cp-32L 0x1.53625ed328d75916p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0cp-32L 0x1.53625ed328d75918p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b1p-32L 0x1.53625ed328d75916p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b1p-32L 0x1.53625ed328d75918p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0cp-32L 0x1.53625ed328d75916p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0cp-32L 0x1.53625ed328d75918p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0f1e3567cf7e06p-32L 0x1.53625ed328d7591716c889ea07b2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0f1e3567cf7e04p-32L 0x1.53625ed328d7591716c889ea07b3p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0f1e3567cf7e04p-32L 0x1.53625ed328d7591716c889ea07b2p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0f1e3567cf7e04p-32L 0x1.53625ed328d7591716c889ea07b3p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0f1e3567cf7fp-32L 0x1.53625ed328d7591716c889ea078p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0f1e3567cf7ep-32L 0x1.53625ed328d7591716c889ea078p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0f1e3567cf7ep-32L 0x1.53625ed328d7591716c889ea078p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005ep-4L : -0x3.f7d69d92913f7b0f1e3567cf7ep-32L 0x1.53625ed328d7591716c889ea08p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992eecp-32L 0x1.53625ed328d75916p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8p-32L 0x1.53625ed328d75916p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8p-32L 0x1.53625ed328d75916p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8p-32L 0x1.53625ed328d75918p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992eecp-32L 0x1.53625ed328d75916p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8p-32L 0x1.53625ed328d75916p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8p-32L 0x1.53625ed328d75916p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8p-32L 0x1.53625ed328d75918p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8819a1fe84a4p-32L 0x1.53625ed328d75916d8ab7fe81acp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8819a1fe84a4p-32L 0x1.53625ed328d75916d8ab7fe81acp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8819a1fe84a3ep-32L 0x1.53625ed328d75916d8ab7fe81acp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8819a1fe84a3ep-32L 0x1.53625ed328d75916d8ab7fe81ac1p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8819a1fe84bp-32L 0x1.53625ed328d75916d8ab7fe81a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8819a1fe84ap-32L 0x1.53625ed328d75916d8ab7fe81bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8819a1fe84ap-32L 0x1.53625ed328d75916d8ab7fe81a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dp-4L : -0x3.f7d69d9389992ee8819a1fe84ap-32L 0x1.53625ed328d75916d8ab7fe81bp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x3.f7d69d92c3fa26e08509ce4addeap-32L 0x1.53625ed328d759170a1885216c07p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x3.f7d69d92c3fa26e08509ce4addeap-32L 0x1.53625ed328d759170a1885216c08p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x3.f7d69d92c3fa26e08509ce4adde8p-32L 0x1.53625ed328d759170a1885216c07p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x3.f7d69d92c3fa26e08509ce4adde8p-32L 0x1.53625ed328d759170a1885216c08p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.f7d69d92c3fa26e0850303d6f2f8p-32L 0x1.53625ed328d759170a1885216c09p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.f7d69d92c3fa26e0850303d6f2f8p-32L 0x1.53625ed328d759170a1885216c0ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.f7d69d92c3fa26e0850303d6f2f6p-32L 0x1.53625ed328d759170a1885216c09p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.f7d69d92c3fa26e0850303d6f2f6p-32L 0x1.53625ed328d759170a1885216c0ap+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.f7d69d92c3fa26e0850303d6f3p-32L 0x1.53625ed328d759170a1885216cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.f7d69d92c3fa26e0850303d6f3p-32L 0x1.53625ed328d759170a1885216cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.f7d69d92c3fa26e0850303d6f2p-32L 0x1.53625ed328d759170a1885216cp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.f7d69d92c3fa26e0850303d6f2p-32L 0x1.53625ed328d759170a1885216c8p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.f7d69d92c3fa26e085411a43e952p-32L 0x1.53625ed328d759170a1885216bfap+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.f7d69d92c3fa26e085411a43e95p-32L 0x1.53625ed328d759170a1885216bfap+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.f7d69d92c3fa26e085411a43e95p-32L 0x1.53625ed328d759170a1885216bfap+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.f7d69d92c3fa26e085411a43e95p-32L 0x1.53625ed328d759170a1885216bfbp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.f7d69d92c3fa26e085411a43eap-32L 0x1.53625ed328d759170a1885216b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.f7d69d92c3fa26e085411a43e9p-32L 0x1.53625ed328d759170a1885216cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.f7d69d92c3fa26e085411a43e9p-32L 0x1.53625ed328d759170a1885216b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0ap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.f7d69d92c3fa26e085411a43e9p-32L 0x1.53625ed328d759170a1885216cp+0L : inexact-ok += clog downward dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b4p-4 : 0x2.ced5095a5b9eap-28 0x1.53625ece87b3fp+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b4p-4 : 0x2.ced5095a5b9ecp-28 0x1.53625ece87b3fp+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b4p-4 : 0x2.ced5095a5b9eap-28 0x1.53625ece87b3fp+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b4p-4 : 0x2.ced5095a5b9ecp-28 0x1.53625ece87b4p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9bp-28L 0x1.53625ece87b3f68cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b4p-28L 0x1.53625ece87b3f68ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9bp-28L 0x1.53625ece87b3f68cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b4p-28L 0x1.53625ece87b3f68ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9bp-28L 0x1.53625ece87b3f68cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b4p-28L 0x1.53625ece87b3f68ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9bp-28L 0x1.53625ece87b3f68cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b4p-28L 0x1.53625ece87b3f68ep+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b239adc563d89ap-28L 0x1.53625ece87b3f68d86eb1be39c07p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b239adc563d89cp-28L 0x1.53625ece87b3f68d86eb1be39c08p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b239adc563d89ap-28L 0x1.53625ece87b3f68d86eb1be39c07p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b239adc563d89cp-28L 0x1.53625ece87b3f68d86eb1be39c08p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b239adc563d8p-28L 0x1.53625ece87b3f68d86eb1be39cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b239adc563d9p-28L 0x1.53625ece87b3f68d86eb1be39cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b239adc563d8p-28L 0x1.53625ece87b3f68d86eb1be39cp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b4p-4L : 0x2.ced5095a5b9eb9b239adc563d9p-28L 0x1.53625ece87b3f68d86eb1be39c8p+0L : inexact-ok += clog downward dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3p-4 : -0xc.b6c63841ce9c8p-28 0x1.53625e906aa9bp+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3p-4 : -0xc.b6c63841ce9cp-28 0x1.53625e906aa9cp+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3p-4 : -0xc.b6c63841ce9cp-28 0x1.53625e906aa9bp+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3p-4 : -0xc.b6c63841ce9cp-28 0x1.53625e906aa9cp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bcp-28L 0x1.53625e906aa9bfbep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bcp-28L 0x1.53625e906aa9bfbep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbp-28L 0x1.53625e906aa9bfbep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbp-28L 0x1.53625e906aa9bfcp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bcp-28L 0x1.53625e906aa9bfbep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bcp-28L 0x1.53625e906aa9bfbep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbp-28L 0x1.53625e906aa9bfbep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbp-28L 0x1.53625e906aa9bfcp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbbe30a4dcbf288p-28L 0x1.53625e906aa9bfbe00bc9b8aa763p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbbe30a4dcbf288p-28L 0x1.53625e906aa9bfbe00bc9b8aa763p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbbe30a4dcbf28p-28L 0x1.53625e906aa9bfbe00bc9b8aa763p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbbe30a4dcbf28p-28L 0x1.53625e906aa9bfbe00bc9b8aa764p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbbe30a4dcbf4p-28L 0x1.53625e906aa9bfbe00bc9b8aa7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbbe30a4dcbf4p-28L 0x1.53625e906aa9bfbe00bc9b8aa78p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbbe30a4dcbfp-28L 0x1.53625e906aa9bfbe00bc9b8aa7p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3p-4L : -0xc.b6c63841ce9c3bbbe30a4dcbfp-28L 0x1.53625e906aa9bfbe00bc9b8aa78p+0L : inexact-ok += clog downward dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3d1b06d08p-4 : 0x7.6cf404db6d048p-56 0x1.53625ec34b2d8p+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3d1b06d08p-4 : 0x7.6cf404db6d04cp-56 0x1.53625ec34b2d9p+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3d1b06d08p-4 : 0x7.6cf404db6d048p-56 0x1.53625ec34b2d8p+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3d1b06d08p-4 : 0x7.6cf404db6d04cp-56 0x1.53625ec34b2d9p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0d8p-56L 0x1.53625ec34b2d8abep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0ep-56L 0x1.53625ec34b2d8acp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0d8p-56L 0x1.53625ec34b2d8abep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0ep-56L 0x1.53625ec34b2d8acp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0d8p-56L 0x1.53625ec34b2d8abep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0ep-56L 0x1.53625ec34b2d8acp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0d8p-56L 0x1.53625ec34b2d8abep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0ep-56L 0x1.53625ec34b2d8acp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0dc48ef4da361e4p-56L 0x1.53625ec34b2d8abf1e1f466bed03p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0dc48ef4da361e4p-56L 0x1.53625ec34b2d8abf1e1f466bed03p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0dc48ef4da361e4p-56L 0x1.53625ec34b2d8abf1e1f466bed03p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0dc48ef4da361e8p-56L 0x1.53625ec34b2d8abf1e1f466bed04p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0dc48ef4da36p-56L 0x1.53625ec34b2d8abf1e1f466bedp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0dc48ef4da362p-56L 0x1.53625ec34b2d8abf1e1f466bedp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0dc48ef4da36p-56L 0x1.53625ec34b2d8abf1e1f466bedp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d08p-4L : 0x7.6cf404db6d04b0dc48ef4da362p-56L 0x1.53625ec34b2d8abf1e1f466bed8p+0L : inexact-ok += clog downward dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3d1b06dp-4 : -0x5.5d999b216633cp-60 0x1.53625ec34b2d8p+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3d1b06dp-4 : -0x5.5d999b2166338p-60 0x1.53625ec34b2d9p+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3d1b06dp-4 : -0x5.5d999b2166338p-60 0x1.53625ec34b2d8p+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a105ac4ecp-4 0xf.859b3d1b06dp-4 : -0x5.5d999b2166338p-60 0x1.53625ec34b2d9p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381dp-60L 0x1.53625ec34b2d88cep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381dp-60L 0x1.53625ec34b2d88cep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381c8p-60L 0x1.53625ec34b2d88cep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381c8p-60L 0x1.53625ec34b2d88dp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381dp-60L 0x1.53625ec34b2d88cep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381dp-60L 0x1.53625ec34b2d88cep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381c8p-60L 0x1.53625ec34b2d88cep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381c8p-60L 0x1.53625ec34b2d88dp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381cca39062f0e324p-60L 0x1.53625ec34b2d88ce35cec395c5b1p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381cca39062f0e32p-60L 0x1.53625ec34b2d88ce35cec395c5b1p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381cca39062f0e32p-60L 0x1.53625ec34b2d88ce35cec395c5b1p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381cca39062f0e32p-60L 0x1.53625ec34b2d88ce35cec395c5b2p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381cca39062f0e4p-60L 0x1.53625ec34b2d88ce35cec395c58p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381cca39062f0e4p-60L 0x1.53625ec34b2d88ce35cec395c58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381cca39062f0e2p-60L 0x1.53625ec34b2d88ce35cec395c58p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06dp-4L : -0x5.5d999b21663381cca39062f0e2p-60L 0x1.53625ec34b2d88ce35cec395c6p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112p-64L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce1128p-64L 0x1.53625ec34b2d88e6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112p-64L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce1128p-64L 0x1.53625ec34b2d88e6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112p-64L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce1128p-64L 0x1.53625ec34b2d88e6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112p-64L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce1128p-64L 0x1.53625ec34b2d88e6p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112578d4e418f32p-64L 0x1.53625ec34b2d88e50478759719ffp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112578d4e418f324p-64L 0x1.53625ec34b2d88e5047875971ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112578d4e418f32p-64L 0x1.53625ec34b2d88e50478759719ffp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112578d4e418f324p-64L 0x1.53625ec34b2d88e5047875971ap+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112578d4e418f2p-64L 0x1.53625ec34b2d88e504787597198p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112578d4e418f4p-64L 0x1.53625ec34b2d88e5047875971ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112578d4e418f2p-64L 0x1.53625ec34b2d88e504787597198p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005ep-4L : 0x5.575654e864ce112578d4e418f4p-64L 0x1.53625ec34b2d88e5047875971ap+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110dp-64L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110dp-64L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110dp-64L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110d8p-64L 0x1.53625ec34b2d88e6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110dp-64L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110dp-64L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110dp-64L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110d8p-64L 0x1.53625ec34b2d88e6p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110d164dc77b0266cp-64L 0x1.53625ec34b2d88e4c65b6b86bf3ap+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110d164dc77b0267p-64L 0x1.53625ec34b2d88e4c65b6b86bf3bp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110d164dc77b0266cp-64L 0x1.53625ec34b2d88e4c65b6b86bf3ap+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110d164dc77b0267p-64L 0x1.53625ec34b2d88e4c65b6b86bf3bp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110d164dc77b026p-64L 0x1.53625ec34b2d88e4c65b6b86bfp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110d164dc77b026p-64L 0x1.53625ec34b2d88e4c65b6b86bfp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110d164dc77b026p-64L 0x1.53625ec34b2d88e4c65b6b86bfp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dp-4L : 0x4.5efca116b46110d164dc77b028p-64L 0x1.53625ec34b2d88e4c65b6b86bf8p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0x5.249ba9189092f7a6c60382d9bf58p-64L 0x1.53625ec34b2d88e4f7c870cb8bdp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0x5.249ba9189092f7a6c60382d9bf58p-64L 0x1.53625ec34b2d88e4f7c870cb8bd1p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0x5.249ba9189092f7a6c60382d9bf58p-64L 0x1.53625ec34b2d88e4f7c870cb8bdp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0x5.249ba9189092f7a6c60382d9bf5cp-64L 0x1.53625ec34b2d88e4f7c870cb8bd1p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x5.249ba9189099c21ab0bf55d4c1a4p-64L 0x1.53625ec34b2d88e4f7c870cb8bd2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x5.249ba9189099c21ab0bf55d4c1a4p-64L 0x1.53625ec34b2d88e4f7c870cb8bd2p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x5.249ba9189099c21ab0bf55d4c1a4p-64L 0x1.53625ec34b2d88e4f7c870cb8bd2p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x5.249ba9189099c21ab0bf55d4c1a8p-64L 0x1.53625ec34b2d88e4f7c870cb8bd3p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x5.249ba9189099c21ab0bf55d4cp-64L 0x1.53625ec34b2d88e4f7c870cb8b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x5.249ba9189099c21ab0bf55d4c2p-64L 0x1.53625ec34b2d88e4f7c870cb8cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x5.249ba9189099c21ab0bf55d4cp-64L 0x1.53625ec34b2d88e4f7c870cb8b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x5.249ba9189099c21ab0bf55d4c2p-64L 0x1.53625ec34b2d88e4f7c870cb8cp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0x5.249ba918905babadbc533a94acacp-64L 0x1.53625ec34b2d88e4f7c870cb8bc2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0x5.249ba918905babadbc533a94acbp-64L 0x1.53625ec34b2d88e4f7c870cb8bc3p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0x5.249ba918905babadbc533a94acacp-64L 0x1.53625ec34b2d88e4f7c870cb8bc2p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0x5.249ba918905babadbc533a94acbp-64L 0x1.53625ec34b2d88e4f7c870cb8bc3p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0x5.249ba918905babadbc533a94acp-64L 0x1.53625ec34b2d88e4f7c870cb8b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0x5.249ba918905babadbc533a94acp-64L 0x1.53625ec34b2d88e4f7c870cb8cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0x5.249ba918905babadbc533a94acp-64L 0x1.53625ec34b2d88e4f7c870cb8b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ecp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0x5.249ba918905babadbc533a94aep-64L 0x1.53625ec34b2d88e4f7c870cb8cp+0L : inexact-ok += clog downward dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b4p-4 : 0x2.ced5095297fd6p-28 0x1.53625ece87b3fp+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b4p-4 : 0x2.ced5095297fd8p-28 0x1.53625ece87b4p+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b4p-4 : 0x2.ced5095297fd6p-28 0x1.53625ece87b3fp+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b4p-4 : 0x2.ced5095297fd8p-28 0x1.53625ece87b4p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a6p-28L 0x1.53625ece87b3f87ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a6p-28L 0x1.53625ece87b3f87ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a6p-28L 0x1.53625ece87b3f87ep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a64p-28L 0x1.53625ece87b3f88p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a6p-28L 0x1.53625ece87b3f87ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a6p-28L 0x1.53625ece87b3f87ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a6p-28L 0x1.53625ece87b3f87ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a64p-28L 0x1.53625ece87b3f88p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a60859a87f03decp-28L 0x1.53625ece87b3f87e3a526d8d0b83p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a60859a87f03decp-28L 0x1.53625ece87b3f87e3a526d8d0b84p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a60859a87f03decp-28L 0x1.53625ece87b3f87e3a526d8d0b83p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a60859a87f03deep-28L 0x1.53625ece87b3f87e3a526d8d0b84p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a60859a87f03dp-28L 0x1.53625ece87b3f87e3a526d8d0b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a60859a87f03ep-28L 0x1.53625ece87b3f87e3a526d8d0b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a60859a87f03dp-28L 0x1.53625ece87b3f87e3a526d8d0b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b4p-4L : 0x2.ced5095297fd7a60859a87f03ep-28L 0x1.53625ece87b3f87e3a526d8d0cp+0L : inexact-ok += clog downward dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3p-4 : -0xc.b6c63849923ep-28 0x1.53625e906aa9cp+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3p-4 : -0xc.b6c63849923d8p-28 0x1.53625e906aa9cp+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3p-4 : -0xc.b6c63849923d8p-28 0x1.53625e906aa9cp+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3p-4 : -0xc.b6c63849923d8p-28 0x1.53625e906aa9dp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a2p-28L 0x1.53625e906aa9c1aep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a2p-28L 0x1.53625e906aa9c1aep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1p-28L 0x1.53625e906aa9c1aep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1p-28L 0x1.53625e906aa9c1bp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a2p-28L 0x1.53625e906aa9c1aep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a2p-28L 0x1.53625e906aa9c1aep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1p-28L 0x1.53625e906aa9c1aep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1p-28L 0x1.53625e906aa9c1bp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1e10899f95287p-28L 0x1.53625e906aa9c1aeb425b0ebc724p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1e10899f952868p-28L 0x1.53625e906aa9c1aeb425b0ebc725p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1e10899f952868p-28L 0x1.53625e906aa9c1aeb425b0ebc724p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1e10899f952868p-28L 0x1.53625e906aa9c1aeb425b0ebc725p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1e10899f952cp-28L 0x1.53625e906aa9c1aeb425b0ebc7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1e10899f9528p-28L 0x1.53625e906aa9c1aeb425b0ebc7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1e10899f9528p-28L 0x1.53625e906aa9c1aeb425b0ebc7p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3p-4L : -0xc.b6c63849923d8a1e10899f9528p-28L 0x1.53625e906aa9c1aeb425b0ebc78p+0L : inexact-ok += clog downward dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3d1b06d08p-4 : 0x6.f0b9f0bab77acp-56 0x1.53625ec34b2d8p+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3d1b06d08p-4 : 0x6.f0b9f0bab77bp-56 0x1.53625ec34b2d9p+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3d1b06d08p-4 : 0x6.f0b9f0bab77acp-56 0x1.53625ec34b2d8p+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3d1b06d08p-4 : 0x6.f0b9f0bab77bp-56 0x1.53625ec34b2d9p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1dp-56L 0x1.53625ec34b2d8caep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d8p-56L 0x1.53625ec34b2d8cbp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1dp-56L 0x1.53625ec34b2d8caep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d8p-56L 0x1.53625ec34b2d8cbp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1dp-56L 0x1.53625ec34b2d8caep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d8p-56L 0x1.53625ec34b2d8cbp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1dp-56L 0x1.53625ec34b2d8caep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d8p-56L 0x1.53625ec34b2d8cbp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d4eb8cd37dfa5p-56L 0x1.53625ec34b2d8cafd186e9ccc6f7p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d4eb8cd37dfa54p-56L 0x1.53625ec34b2d8cafd186e9ccc6f8p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d4eb8cd37dfa5p-56L 0x1.53625ec34b2d8cafd186e9ccc6f7p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d4eb8cd37dfa54p-56L 0x1.53625ec34b2d8cafd186e9ccc6f8p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d4eb8cd37dfap-56L 0x1.53625ec34b2d8cafd186e9ccc68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d4eb8cd37dfap-56L 0x1.53625ec34b2d8cafd186e9ccc7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d4eb8cd37dfap-56L 0x1.53625ec34b2d8cafd186e9ccc68p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d08p-4L : 0x6.f0b9f0bab77ae1d4eb8cd37dfcp-56L 0x1.53625ec34b2d8cafd186e9ccc7p+0L : inexact-ok += clog downward dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3d1b06dp-4 : -0xd.213add2cbed1p-60 0x1.53625ec34b2d8p+0 : inexact-ok += clog tonearest dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3d1b06dp-4 : -0xd.213add2cbed1p-60 0x1.53625ec34b2d9p+0 : inexact-ok += clog towardzero dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3d1b06dp-4 : -0xd.213add2cbed08p-60 0x1.53625ec34b2d8p+0 : inexact-ok += clog upward dbl-64 0x3.e1d0a105ac4eap-4 0xf.859b3d1b06dp-4 : -0xd.213add2cbed08p-60 0x1.53625ec34b2d9p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eadp-60L 0x1.53625ec34b2d8abep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eacp-60L 0x1.53625ec34b2d8abep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eacp-60L 0x1.53625ec34b2d8abep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eacp-60L 0x1.53625ec34b2d8acp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eadp-60L 0x1.53625ec34b2d8abep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eacp-60L 0x1.53625ec34b2d8abep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eacp-60L 0x1.53625ec34b2d8abep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eacp-60L 0x1.53625ec34b2d8acp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eac644ab119e1c6p-60L 0x1.53625ec34b2d8abee93666f69fb3p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eac644ab119e1c6p-60L 0x1.53625ec34b2d8abee93666f69fb3p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eac644ab119e1c58p-60L 0x1.53625ec34b2d8abee93666f69fb3p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eac644ab119e1c58p-60L 0x1.53625ec34b2d8abee93666f69fb4p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eac644ab119e2p-60L 0x1.53625ec34b2d8abee93666f69f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eac644ab119e1cp-60L 0x1.53625ec34b2d8abee93666f69f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eac644ab119e1cp-60L 0x1.53625ec34b2d8abee93666f69f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06dp-4L : -0xd.213add2cbed0eac644ab119e1cp-60L 0x1.53625ec34b2d8abee93666f6ap+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250826p-60L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250826p-60L 0x1.53625ec34b2d8ad6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd2508258p-60L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd2508258p-60L 0x1.53625ec34b2d8ad6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250826p-60L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250826p-60L 0x1.53625ec34b2d8ad6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd2508258p-60L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd2508258p-60L 0x1.53625ec34b2d8ad6p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250825f3cfcb89aae8p-60L 0x1.53625ec34b2d8ad5b7e018f7f401p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250825f3cfcb89aae8p-60L 0x1.53625ec34b2d8ad5b7e018f7f402p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250825f3cfcb89aae7cp-60L 0x1.53625ec34b2d8ad5b7e018f7f401p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250825f3cfcb89aae7cp-60L 0x1.53625ec34b2d8ad5b7e018f7f402p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250825f3cfcb89abp-60L 0x1.53625ec34b2d8ad5b7e018f7f4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250825f3cfcb89aaep-60L 0x1.53625ec34b2d8ad5b7e018f7f4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250825f3cfcb89aaep-60L 0x1.53625ec34b2d8ad5b7e018f7f4p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005ep-4L : -0x7.6e2bdcbcd250825f3cfcb89aaep-60L 0x1.53625ec34b2d8ad5b7e018f7f48p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed575278p-60L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed57527p-60L 0x1.53625ec34b2d8ad6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed57527p-60L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed57527p-60L 0x1.53625ec34b2d8ad6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed575278p-60L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed57527p-60L 0x1.53625ec34b2d8ad6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed57527p-60L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed57527p-60L 0x1.53625ec34b2d8ad6p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed5752738eb59dc2c624p-60L 0x1.53625ec34b2d8ad579c30ee7993cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed5752738eb59dc2c624p-60L 0x1.53625ec34b2d8ad579c30ee7993dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed5752738eb59dc2c62p-60L 0x1.53625ec34b2d8ad579c30ee7993cp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed5752738eb59dc2c62p-60L 0x1.53625ec34b2d8ad579c30ee7993dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed5752738eb59dc2c8p-60L 0x1.53625ec34b2d8ad579c30ee799p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed5752738eb59dc2c6p-60L 0x1.53625ec34b2d8ad579c30ee799p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed5752738eb59dc2c6p-60L 0x1.53625ec34b2d8ad579c30ee799p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dp-4L : -0x7.7db177f9ed5752738eb59dc2c6p-60L 0x1.53625ec34b2d8ad579c30ee7998p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x7.71578779cf9433fa3be77ec3b574p-60L 0x1.53625ec34b2d8ad5ab30142c65d2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x7.71578779cf9433fa3be77ec3b574p-60L 0x1.53625ec34b2d8ad5ab30142c65d2p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x7.71578779cf9433fa3be77ec3b57p-60L 0x1.53625ec34b2d8ad5ab30142c65d2p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x7.71578779cf9433fa3be77ec3b57p-60L 0x1.53625ec34b2d8ad5ab30142c65d3p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x7.71578779cf93c752fd3bc19404e8p-60L 0x1.53625ec34b2d8ad5ab30142c65d3p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x7.71578779cf93c752fd3bc19404e4p-60L 0x1.53625ec34b2d8ad5ab30142c65d4p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x7.71578779cf93c752fd3bc19404e4p-60L 0x1.53625ec34b2d8ad5ab30142c65d3p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x7.71578779cf93c752fd3bc19404e4p-60L 0x1.53625ec34b2d8ad5ab30142c65d4p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x7.71578779cf93c752fd3bc19406p-60L 0x1.53625ec34b2d8ad5ab30142c658p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x7.71578779cf93c752fd3bc19404p-60L 0x1.53625ec34b2d8ad5ab30142c66p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x7.71578779cf93c752fd3bc19404p-60L 0x1.53625ec34b2d8ad5ab30142c658p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x7.71578779cf93c752fd3bc19404p-60L 0x1.53625ec34b2d8ad5ab30142c66p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x7.71578779cf97a8b9cc82834809f8p-60L 0x1.53625ec34b2d8ad5ab30142c65c4p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x7.71578779cf97a8b9cc82834809f8p-60L 0x1.53625ec34b2d8ad5ab30142c65c4p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x7.71578779cf97a8b9cc82834809f4p-60L 0x1.53625ec34b2d8ad5ab30142c65c4p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x7.71578779cf97a8b9cc82834809f4p-60L 0x1.53625ec34b2d8ad5ab30142c65c5p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x7.71578779cf97a8b9cc8283480ap-60L 0x1.53625ec34b2d8ad5ab30142c658p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x7.71578779cf97a8b9cc8283480ap-60L 0x1.53625ec34b2d8ad5ab30142c66p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x7.71578779cf97a8b9cc82834808p-60L 0x1.53625ec34b2d8ad5ab30142c658p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4eap-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x7.71578779cf97a8b9cc82834808p-60L 0x1.53625ec34b2d8ad5ab30142c66p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c98p-28L 0x1.53625ece87b3f6ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c98p-28L 0x1.53625ece87b3f6a2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c98p-28L 0x1.53625ece87b3f6ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c9cp-28L 0x1.53625ece87b3f6a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c98p-28L 0x1.53625ece87b3f6ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c98p-28L 0x1.53625ece87b3f6a2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c98p-28L 0x1.53625ece87b3f6ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c9cp-28L 0x1.53625ece87b3f6a2p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c995fcafa4252d6p-28L 0x1.53625ece87b3f6a1e646d8bd0f1ap+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c995fcafa4252d6p-28L 0x1.53625ece87b3f6a1e646d8bd0f1ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c995fcafa4252d6p-28L 0x1.53625ece87b3f6a1e646d8bd0f1ap+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c995fcafa4252d8p-28L 0x1.53625ece87b3f6a1e646d8bd0f1bp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c995fcafa4252p-28L 0x1.53625ece87b3f6a1e646d8bd0fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c995fcafa4253p-28L 0x1.53625ece87b3f6a1e646d8bd0fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c995fcafa4252p-28L 0x1.53625ece87b3f6a1e646d8bd0fp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b4p-4L : 0x2.ced5095a0a189c995fcafa4253p-28L 0x1.53625ece87b3f6a1e646d8bd0f8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c638422022598p-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c638422022597p-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c638422022597p-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c638422022597p-28L 0x1.53625e906aa9bfd4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c638422022598p-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c638422022597p-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c638422022597p-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c638422022597p-28L 0x1.53625e906aa9bfd4p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c6384220225972e9e807c2fb3p-28L 0x1.53625e906aa9bfd260186aeb233p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c6384220225972e9e807c2fb28p-28L 0x1.53625e906aa9bfd260186aeb2331p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c6384220225972e9e807c2fb28p-28L 0x1.53625e906aa9bfd260186aeb233p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c6384220225972e9e807c2fb28p-28L 0x1.53625e906aa9bfd260186aeb2331p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c6384220225972e9e807c2fcp-28L 0x1.53625e906aa9bfd260186aeb23p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c6384220225972e9e807c2fcp-28L 0x1.53625e906aa9bfd260186aeb23p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c6384220225972e9e807c2f8p-28L 0x1.53625e906aa9bfd260186aeb23p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3p-4L : -0xc.b6c6384220225972e9e807c2f8p-28L 0x1.53625e906aa9bfd260186aeb238p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289c8p-56L 0x1.53625ec34b2d8ad2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289dp-56L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289c8p-56L 0x1.53625ec34b2d8ad2p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289dp-56L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289c8p-56L 0x1.53625ec34b2d8ad2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289dp-56L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289c8p-56L 0x1.53625ec34b2d8ad2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289dp-56L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289ccb71bedf8f748p-56L 0x1.53625ec34b2d8ad37d7b069f65f3p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289ccb71bedf8f748p-56L 0x1.53625ec34b2d8ad37d7b069f65f4p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289ccb71bedf8f748p-56L 0x1.53625ec34b2d8ad37d7b069f65f3p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289ccb71bedf8f74cp-56L 0x1.53625ec34b2d8ad37d7b069f65f4p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289ccb71bedf8f6p-56L 0x1.53625ec34b2d8ad37d7b069f658p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289ccb71bedf8f8p-56L 0x1.53625ec34b2d8ad37d7b069f66p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289ccb71bedf8f6p-56L 0x1.53625ec34b2d8ad37d7b069f658p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d08p-4L : 0x7.67dba308159289ccb71bedf8f8p-56L 0x1.53625ec34b2d8ad37d7b069f66p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b8p-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b8p-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7bp-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7bp-60L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b8p-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b8p-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7bp-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7bp-60L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b7289955991bdcp-60L 0x1.53625ec34b2d88e2952a83c93ea2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b7289955991bdcp-60L 0x1.53625ec34b2d88e2952a83c93ea2p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b7289955991bd8p-60L 0x1.53625ec34b2d88e2952a83c93ea2p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b7289955991bd8p-60L 0x1.53625ec34b2d88e2952a83c93ea3p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b7289955991cp-60L 0x1.53625ec34b2d88e2952a83c93e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b7289955991cp-60L 0x1.53625ec34b2d88e2952a83c93e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b7289955991ap-60L 0x1.53625ec34b2d88e2952a83c93e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06dp-4L : -0x5.af1fb856dd55f7b7289955991ap-60L 0x1.53625ec34b2d88e2952a83c93fp+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e4p-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e8p-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e4p-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e8p-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e4p-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e8p-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e4p-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e8p-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e7084a7b68c954p-68L 0x1.53625ec34b2d88f963d435ca92fp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e7084a7b68c954p-68L 0x1.53625ec34b2d88f963d435ca92f1p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e7084a7b68c954p-68L 0x1.53625ec34b2d88f963d435ca92fp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e7084a7b68c956p-68L 0x1.53625ec34b2d88f963d435ca92f1p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e7084a7b68c9p-68L 0x1.53625ec34b2d88f963d435ca928p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e7084a7b68c9p-68L 0x1.53625ec34b2d88f963d435ca93p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e7084a7b68c9p-68L 0x1.53625ec34b2d88f963d435ca928p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005ep-4L : 0x3.ef48190f2a6b61e7084a7b68cap-68L 0x1.53625ec34b2d88f963d435ca93p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a4p-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a4p-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3fp-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3fp-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a4p-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a4p-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3fp-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3fp-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3f86436aa2433cp-68L 0x1.53625ec34b2d88f925b72bba382cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3f86436aa2433b8p-68L 0x1.53625ec34b2d88f925b72bba382cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3f86436aa2433b8p-68L 0x1.53625ec34b2d88f925b72bba382cp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3f86436aa2433b8p-68L 0x1.53625ec34b2d88f925b72bba382dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3f86436aa2434p-68L 0x1.53625ec34b2d88f925b72bba38p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3f86436aa2434p-68L 0x1.53625ec34b2d88f925b72bba38p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3f86436aa243p-68L 0x1.53625ec34b2d88f925b72bba38p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dp-4L : -0xb.9653240bdc64a3f86436aa243p-68L 0x1.53625ec34b2d88f925b72bba388p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xc.39d5c11e6b9c9db8becae983dc48p-72L 0x1.53625ec34b2d88f9572430ff04c1p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xc.39d5c11e6b9c9db8becae983dc48p-72L 0x1.53625ec34b2d88f9572430ff04c2p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xc.39d5c11e6b9c9db8becae983dc48p-72L 0x1.53625ec34b2d88f9572430ff04c1p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xc.39d5c11e6b9c9db8becae983dc5p-72L 0x1.53625ec34b2d88f9572430ff04c2p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xc.39d5c11e726711a37a9de4866c3p-72L 0x1.53625ec34b2d88f9572430ff04c3p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xc.39d5c11e726711a37a9de4866c38p-72L 0x1.53625ec34b2d88f9572430ff04c3p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xc.39d5c11e726711a37a9de4866c3p-72L 0x1.53625ec34b2d88f9572430ff04c3p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xc.39d5c11e726711a37a9de4866c38p-72L 0x1.53625ec34b2d88f9572430ff04c4p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xc.39d5c11e726711a37a9de4866cp-72L 0x1.53625ec34b2d88f9572430ff048p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xc.39d5c11e726711a37a9de4866cp-72L 0x1.53625ec34b2d88f9572430ff05p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xc.39d5c11e726711a37a9de4866cp-72L 0x1.53625ec34b2d88f9572430ff048p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0xc.39d5c11e726711a37a9de4867p-72L 0x1.53625ec34b2d88f9572430ff05p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xc.39d5c11e3450a4af0e82a46eff3p-72L 0x1.53625ec34b2d88f9572430ff04b3p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xc.39d5c11e3450a4af0e82a46eff38p-72L 0x1.53625ec34b2d88f9572430ff04b4p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xc.39d5c11e3450a4af0e82a46eff3p-72L 0x1.53625ec34b2d88f9572430ff04b3p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xc.39d5c11e3450a4af0e82a46eff38p-72L 0x1.53625ec34b2d88f9572430ff04b4p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xc.39d5c11e3450a4af0e82a46efcp-72L 0x1.53625ec34b2d88f9572430ff048p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xc.39d5c11e3450a4af0e82a46fp-72L 0x1.53625ec34b2d88f9572430ff048p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xc.39d5c11e3450a4af0e82a46efcp-72L 0x1.53625ec34b2d88f9572430ff048p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebebp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : 0xc.39d5c11e3450a4af0e82a46fp-72L 0x1.53625ec34b2d88f9572430ff05p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a0920287p-28L 0x1.53625ece87b3f6a2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a0920287p-28L 0x1.53625ece87b3f6a2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a0920287p-28L 0x1.53625ece87b3f6a2p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a09202874p-28L 0x1.53625ece87b3f6a4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a0920287p-28L 0x1.53625ece87b3f6a2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a0920287p-28L 0x1.53625ece87b3f6a2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a0920287p-28L 0x1.53625ece87b3f6a2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a09202874p-28L 0x1.53625ece87b3f6a4p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a09202871759477d7678p-28L 0x1.53625ece87b3f6a2245d45a74448p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a09202871759477d7678p-28L 0x1.53625ece87b3f6a2245d45a74448p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a09202871759477d7678p-28L 0x1.53625ece87b3f6a2245d45a74448p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a09202871759477d76782p-28L 0x1.53625ece87b3f6a2245d45a74449p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a09202871759477d767p-28L 0x1.53625ece87b3f6a2245d45a744p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a09202871759477d768p-28L 0x1.53625ece87b3f6a2245d45a7448p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a09202871759477d767p-28L 0x1.53625ece87b3f6a2245d45a744p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b4p-4L : 0x2.ced5095a09202871759477d768p-28L 0x1.53625ece87b3f6a2245d45a7448p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acdap-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acdap-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9p-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9p-28L 0x1.53625e906aa9bfd4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acdap-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acdap-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9p-28L 0x1.53625e906aa9bfd2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9p-28L 0x1.53625e906aa9bfd4p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9cb62db7b07138p-28L 0x1.53625e906aa9bfd29e2ed80dcf54p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9cb62db7b0713p-28L 0x1.53625e906aa9bfd29e2ed80dcf55p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9cb62db7b0713p-28L 0x1.53625e906aa9bfd29e2ed80dcf54p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9cb62db7b0713p-28L 0x1.53625e906aa9bfd29e2ed80dcf55p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9cb62db7b074p-28L 0x1.53625e906aa9bfd29e2ed80dcfp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9cb62db7b07p-28L 0x1.53625e906aa9bfd29e2ed80dcf8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9cb62db7b07p-28L 0x1.53625e906aa9bfd29e2ed80dcfp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3p-4L : -0xc.b6c63842211acd9cb62db7b07p-28L 0x1.53625e906aa9bfd29e2ed80dcf8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd89p-56L 0x1.53625ec34b2d8ad2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd89p-56L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd89p-56L 0x1.53625ec34b2d8ad2p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd898p-56L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd89p-56L 0x1.53625ec34b2d8ad2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd89p-56L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd89p-56L 0x1.53625ec34b2d8ad2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd898p-56L 0x1.53625ec34b2d8ad4p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd892a2621cca444cp-56L 0x1.53625ec34b2d8ad3bb917393d20fp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd892a2621cca445p-56L 0x1.53625ec34b2d8ad3bb917393d20fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd892a2621cca444cp-56L 0x1.53625ec34b2d8ad3bb917393d20fp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd892a2621cca445p-56L 0x1.53625ec34b2d8ad3bb917393d21p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd892a2621cca44p-56L 0x1.53625ec34b2d8ad3bb917393d2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd892a2621cca44p-56L 0x1.53625ec34b2d8ad3bb917393d2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd892a2621cca44p-56L 0x1.53625ec34b2d8ad3bb917393d2p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cc1bc5917bd892a2621cca46p-56L 0x1.53625ec34b2d8ad3bb917393d28p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b68p-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b68p-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6p-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6p-60L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b68p-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b68p-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6p-60L 0x1.53625ec34b2d88e2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6p-60L 0x1.53625ec34b2d88e4p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6784afc6e5d65cp-60L 0x1.53625ec34b2d88e2d340f0bdaabdp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6784afc6e5d658p-60L 0x1.53625ec34b2d88e2d340f0bdaabep+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6784afc6e5d658p-60L 0x1.53625ec34b2d88e2d340f0bdaabdp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6784afc6e5d658p-60L 0x1.53625ec34b2d88e2d340f0bdaabep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6784afc6e5d8p-60L 0x1.53625ec34b2d88e2d340f0bdaa8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6784afc6e5d6p-60L 0x1.53625ec34b2d88e2d340f0bdaa8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6784afc6e5d6p-60L 0x1.53625ec34b2d88e2d340f0bdaa8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06dp-4L : -0x5.b0182c7f1ec10b6784afc6e5d6p-60L 0x1.53625ec34b2d88e2d340f0bdabp+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b238p-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23cp-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b238p-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23cp-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b238p-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23cp-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b238p-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23cp-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23bf36b43a86c12p-68L 0x1.53625ec34b2d88f9a1eaa2beff0cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23bf36b43a86c14p-68L 0x1.53625ec34b2d88f9a1eaa2beff0cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23bf36b43a86c12p-68L 0x1.53625ec34b2d88f9a1eaa2beff0cp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23bf36b43a86c14p-68L 0x1.53625ec34b2d88f9a1eaa2beff0dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23bf36b43a86cp-68L 0x1.53625ec34b2d88f9a1eaa2beffp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23bf36b43a86cp-68L 0x1.53625ec34b2d88f9a1eaa2beffp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23bf36b43a86cp-68L 0x1.53625ec34b2d88f9a1eaa2beffp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005ep-4L : 0x2.f6d3f0cdbf57b23bf36b43a86dp-68L 0x1.53625ec34b2d88f9a1eaa2beff8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853bp-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853ap-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853ap-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853ap-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853bp-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853ap-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853ap-68L 0x1.53625ec34b2d88f8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853ap-68L 0x1.53625ec34b2d88fap+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853a55b250db0c258p-68L 0x1.53625ec34b2d88f963cd98aea447p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853a55b250db0c258p-68L 0x1.53625ec34b2d88f963cd98aea447p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853a55b250db0c25p-68L 0x1.53625ec34b2d88f963cd98aea447p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853a55b250db0c25p-68L 0x1.53625ec34b2d88f963cd98aea448p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853a55b250db0c4p-68L 0x1.53625ec34b2d88f963cd98aea4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853a55b250db0c4p-68L 0x1.53625ec34b2d88f963cd98aea48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853a55b250db0cp-68L 0x1.53625ec34b2d88f963cd98aea4p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dp-4L : -0xc.8ec74c4d477853a55b250db0cp-68L 0x1.53625ec34b2d88f963cd98aea48p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x3.4d6cc2f8459e5cfeb6a3f2ac1f36p-72L 0x1.53625ec34b2d88f9953a9df370dcp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x3.4d6cc2f8459e5cfeb6a3f2ac1f36p-72L 0x1.53625ec34b2d88f9953a9df370ddp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x3.4d6cc2f8459e5cfeb6a3f2ac1f34p-72L 0x1.53625ec34b2d88f9953a9df370dcp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x3.4d6cc2f8459e5cfeb6a3f2ac1f34p-72L 0x1.53625ec34b2d88f9953a9df370ddp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.4d6cc2f83ed3e913fad0f7a98e78p-72L 0x1.53625ec34b2d88f9953a9df370dep+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.4d6cc2f83ed3e913fad0f7a98e76p-72L 0x1.53625ec34b2d88f9953a9df370dfp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.4d6cc2f83ed3e913fad0f7a98e76p-72L 0x1.53625ec34b2d88f9953a9df370dep+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.4d6cc2f83ed3e913fad0f7a98e76p-72L 0x1.53625ec34b2d88f9953a9df370dfp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.4d6cc2f83ed3e913fad0f7a98fp-72L 0x1.53625ec34b2d88f9953a9df3708p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.4d6cc2f83ed3e913fad0f7a98ep-72L 0x1.53625ec34b2d88f9953a9df371p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.4d6cc2f83ed3e913fad0f7a98ep-72L 0x1.53625ec34b2d88f9953a9df3708p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : -0x3.4d6cc2f83ed3e913fad0f7a98ep-72L 0x1.53625ec34b2d88f9953a9df371p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.4d6cc2f87cea560866ec37c103p-72L 0x1.53625ec34b2d88f9953a9df370cfp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.4d6cc2f87cea560866ec37c102fep-72L 0x1.53625ec34b2d88f9953a9df370cfp+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.4d6cc2f87cea560866ec37c102fep-72L 0x1.53625ec34b2d88f9953a9df370cfp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.4d6cc2f87cea560866ec37c102fep-72L 0x1.53625ec34b2d88f9953a9df370dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.4d6cc2f87cea560866ec37c103p-72L 0x1.53625ec34b2d88f9953a9df3708p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.4d6cc2f87cea560866ec37c103p-72L 0x1.53625ec34b2d88f9953a9df371p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.4d6cc2f87cea560866ec37c102p-72L 0x1.53625ec34b2d88f9953a9df3708p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.4d6cc2f87cea560866ec37c102p-72L 0x1.53625ec34b2d88f9953a9df371p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d04960f38p-28L 0x1.53625ece87b3f6a21728fab11231p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d04960f3ap-28L 0x1.53625ece87b3f6a21728fab11232p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d04960f38p-28L 0x1.53625ece87b3f6a21728fab11231p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d04960f3ap-28L 0x1.53625ece87b3f6a21728fab11232p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032aff763958p-28L 0x1.53625e906aa9bfd290fa8d0b9b15p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032aff7639578p-28L 0x1.53625e906aa9bfd290fa8d0b9b15p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032aff7639578p-28L 0x1.53625e906aa9bfd290fa8d0b9b15p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032aff7639578p-28L 0x1.53625e906aa9bfd290fa8d0b9b16p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741e30ce7739530c7p-56L 0x1.53625ec34b2d8ad3ae5d289b73d9p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741e30ce7739530c74p-56L 0x1.53625ec34b2d8ad3ae5d289b73dap+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741e30ce7739530c7p-56L 0x1.53625ec34b2d8ad3ae5d289b73d9p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741e30ce7739530c74p-56L 0x1.53625ec34b2d8ad3ae5d289b73dap+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3cb1818f3464d17f9cp-60L 0x1.53625ec34b2d88e2c60ca5c54c88p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3cb1818f3464d17f98p-60L 0x1.53625ec34b2d88e2c60ca5c54c88p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3cb1818f3464d17f98p-60L 0x1.53625ec34b2d88e2c60ca5c54c88p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3cb1818f3464d17f98p-60L 0x1.53625ec34b2d88e2c60ca5c54c89p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43b1980bc9e48c032984p-68L 0x1.53625ec34b2d88f994b657c6a0d6p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43b1980bc9e48c032986p-68L 0x1.53625ec34b2d88f994b657c6a0d7p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43b1980bc9e48c032984p-68L 0x1.53625ec34b2d88f994b657c6a0d6p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43b1980bc9e48c032986p-68L 0x1.53625ec34b2d88f994b657c6a0d7p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc31e6dd51e2692250a58p-68L 0x1.53625ec34b2d88f956994db64611p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc31e6dd51e2692250a5p-68L 0x1.53625ec34b2d88f956994db64612p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc31e6dd51e2692250a5p-68L 0x1.53625ec34b2d88f956994db64611p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc31e6dd51e2692250a5p-68L 0x1.53625ec34b2d88f956994db64612p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x1.f8p-220L 0x1.53625ec34b2d88f9880652fb12a7p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x1.f8p-220L 0x1.53625ec34b2d88f9880652fb12a8p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x1.f7ffffffffffffffffffffffffffp-220L 0x1.53625ec34b2d88f9880652fb12a7p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x1.f7ffffffffffffffffffffffffffp-220L 0x1.53625ec34b2d88f9880652fb12a8p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x6.ca73eabbd2fb029091f539fd4f18p-112L 0x1.53625ec34b2d88f9880652fb12a9p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x6.ca73eabbd2fb029091f539fd4f18p-112L 0x1.53625ec34b2d88f9880652fb12a9p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x6.ca73eabbd2fb029091f539fd4f18p-112L 0x1.53625ec34b2d88f9880652fb12a9p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x6.ca73eabbd2fb029091f539fd4f1cp-112L 0x1.53625ec34b2d88f9880652fb12aap+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.74bf909b0484514e25b5f2157d4cp-108L 0x1.53625ec34b2d88f9880652fb1299p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.74bf909b0484514e25b5f2157d4ap-108L 0x1.53625ec34b2d88f9880652fb129ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.74bf909b0484514e25b5f2157d4ap-108L 0x1.53625ec34b2d88f9880652fb1299p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34cp-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.74bf909b0484514e25b5f2157d4ap-108L 0x1.53625ec34b2d88f9880652fb129ap+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d141d51b6p-28L 0x1.53625ece87b3f6a21728fab1122ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d141d51b8p-28L 0x1.53625ece87b3f6a21728fab1122ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d141d51b6p-28L 0x1.53625ece87b3f6a21728fab1122ep+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d141d51b8p-28L 0x1.53625ece87b3f6a21728fab1122fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d141d51p-28L 0x1.53625ece87b3f6a21728fab112p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d141d52p-28L 0x1.53625ece87b3f6a21728fab112p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d141d51p-28L 0x1.53625ece87b3f6a21728fab112p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928d141d52p-28L 0x1.53625ece87b3f6a21728fab1128p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032afe7dc52ep-28L 0x1.53625e906aa9bfd290fa8d0b9b11p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032afe7dc52ep-28L 0x1.53625e906aa9bfd290fa8d0b9b11p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032afe7dc52d8p-28L 0x1.53625e906aa9bfd290fa8d0b9b11p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032afe7dc52d8p-28L 0x1.53625e906aa9bfd290fa8d0b9b12p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032afe7dc54p-28L 0x1.53625e906aa9bfd290fa8d0b9bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032afe7dc54p-28L 0x1.53625e906aa9bfd290fa8d0b9bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032afe7dc5p-28L 0x1.53625e906aa9bfd290fa8d0b9bp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032afe7dc5p-28L 0x1.53625e906aa9bfd290fa8d0b9b8p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741f29429f7abe201p-56L 0x1.53625ec34b2d8ad3ae5d289b73d5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741f29429f7abe2014p-56L 0x1.53625ec34b2d8ad3ae5d289b73d6p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741f29429f7abe201p-56L 0x1.53625ec34b2d8ad3ae5d289b73d5p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741f29429f7abe2014p-56L 0x1.53625ec34b2d8ad3ae5d289b73d6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741f29429f7abe2p-56L 0x1.53625ec34b2d8ad3ae5d289b738p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741f29429f7abe2p-56L 0x1.53625ec34b2d8ad3ae5d289b74p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741f29429f7abe2p-56L 0x1.53625ec34b2d8ad3ae5d289b738p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741f29429f7abe22p-56L 0x1.53625ec34b2d8ad3ae5d289b74p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ca1fa4cb04e204494p-60L 0x1.53625ec34b2d88e2c60ca5c54c84p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ca1fa4cb04e204494p-60L 0x1.53625ec34b2d88e2c60ca5c54c84p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ca1fa4cb04e20449p-60L 0x1.53625ec34b2d88e2c60ca5c54c84p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ca1fa4cb04e20449p-60L 0x1.53625ec34b2d88e2c60ca5c54c85p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ca1fa4cb04e2046p-60L 0x1.53625ec34b2d88e2c60ca5c54c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ca1fa4cb04e2044p-60L 0x1.53625ec34b2d88e2c60ca5c54c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ca1fa4cb04e2044p-60L 0x1.53625ec34b2d88e2c60ca5c54c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ca1fa4cb04e2044p-60L 0x1.53625ec34b2d88e2c60ca5c54dp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43c11f4e4dfb3d3e2432p-68L 0x1.53625ec34b2d88f994b657c6a0d3p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43c11f4e4dfb3d3e2432p-68L 0x1.53625ec34b2d88f994b657c6a0d3p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43c11f4e4dfb3d3e2432p-68L 0x1.53625ec34b2d88f994b657c6a0d3p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43c11f4e4dfb3d3e2434p-68L 0x1.53625ec34b2d88f994b657c6a0d4p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43c11f4e4dfb3d3e24p-68L 0x1.53625ec34b2d88f994b657c6a08p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43c11f4e4dfb3d3e24p-68L 0x1.53625ec34b2d88f994b657c6a1p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43c11f4e4dfb3d3e24p-68L 0x1.53625ec34b2d88f994b657c6a08p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd43c11f4e4dfb3d3e25p-68L 0x1.53625ec34b2d88f994b657c6a1p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc30ee6929a0fe0ea0f88p-68L 0x1.53625ec34b2d88f956994db6460ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc30ee6929a0fe0ea0f88p-68L 0x1.53625ec34b2d88f956994db6460ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc30ee6929a0fe0ea0f8p-68L 0x1.53625ec34b2d88f956994db6460ep+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc30ee6929a0fe0ea0f8p-68L 0x1.53625ec34b2d88f956994db6460fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc30ee6929a0fe0ea1p-68L 0x1.53625ec34b2d88f956994db646p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc30ee6929a0fe0ea1p-68L 0x1.53625ec34b2d88f956994db646p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc30ee6929a0fe0ea0cp-68L 0x1.53625ec34b2d88f956994db646p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc30ee6929a0fe0ea0cp-68L 0x1.53625ec34b2d88f956994db6468p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xf.87428416b13afab3671a54b4d178p-116L 0x1.53625ec34b2d88f9880652fb12a3p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xf.87428416b13afab3671a54b4d178p-116L 0x1.53625ec34b2d88f9880652fb12a4p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xf.87428416b13afab3671a54b4d178p-116L 0x1.53625ec34b2d88f9880652fb12a3p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : 0xf.87428416b13afab3671a54b4d18p-116L 0x1.53625ec34b2d88f9880652fb12a4p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x7.c2e812fd3e0eb23bc866df489c4p-112L 0x1.53625ec34b2d88f9880652fb12a5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x7.c2e812fd3e0eb23bc866df489c44p-112L 0x1.53625ec34b2d88f9880652fb12a5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x7.c2e812fd3e0eb23bc866df489c4p-112L 0x1.53625ec34b2d88f9880652fb12a5p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x7.c2e812fd3e0eb23bc866df489c44p-112L 0x1.53625ec34b2d88f9880652fb12a6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x7.c2e812fd3e0eb23bc866df489cp-112L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x7.c2e812fd3e0eb23bc866df489cp-112L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x7.c2e812fd3e0eb23bc866df489cp-112L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x7.c2e812fd3e0eb23bc866df489ep-112L 0x1.53625ec34b2d88f9880652fb13p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.65384e16edd31653724ed7c0c87p-108L 0x1.53625ec34b2d88f9880652fb1295p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.65384e16edd31653724ed7c0c87p-108L 0x1.53625ec34b2d88f9880652fb1296p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.65384e16edd31653724ed7c0c86ep-108L 0x1.53625ec34b2d88f9880652fb1295p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.65384e16edd31653724ed7c0c86ep-108L 0x1.53625ec34b2d88f9880652fb1296p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.65384e16edd31653724ed7c0c9p-108L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.65384e16edd31653724ed7c0c8p-108L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.65384e16edd31653724ed7c0c8p-108L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d35p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.65384e16edd31653724ed7c0c8p-108L 0x1.53625ec34b2d88f9880652fb13p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928cd60047bcp-28L 0x1.53625ece87b3f6a21728fab1123dp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928cd60047bep-28L 0x1.53625ece87b3f6a21728fab1123ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928cd60047bcp-28L 0x1.53625ece87b3f6a21728fab1123dp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928cd60047bep-28L 0x1.53625ece87b3f6a21728fab1123ep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928cd60047p-28L 0x1.53625ece87b3f6a21728fab112p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928cd60048p-28L 0x1.53625ece87b3f6a21728fab112p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928cd60047p-28L 0x1.53625ece87b3f6a21728fab112p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b4p-4L : 0x2.ced5095a0954ff3d928cd60048p-28L 0x1.53625ece87b3f6a21728fab1128p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032b025f95d5p-28L 0x1.53625e906aa9bfd290fa8d0b9b2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032b025f95d5p-28L 0x1.53625e906aa9bfd290fa8d0b9b21p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032b025f95d48p-28L 0x1.53625e906aa9bfd290fa8d0b9b2p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032b025f95d48p-28L 0x1.53625e906aa9bfd290fa8d0b9b21p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032b025f96p-28L 0x1.53625e906aa9bfd290fa8d0b9bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032b025f95cp-28L 0x1.53625e906aa9bfd290fa8d0b9bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032b025f95cp-28L 0x1.53625e906aa9bfd290fa8d0b9bp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3p-4L : -0xc.b6c6384220e5f6d032b025f95cp-28L 0x1.53625e906aa9bfd290fa8d0b9b8p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741b4771fe7511d18cp-56L 0x1.53625ec34b2d8ad3ae5d289b73e5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741b4771fe7511d19p-56L 0x1.53625ec34b2d8ad3ae5d289b73e6p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741b4771fe7511d18cp-56L 0x1.53625ec34b2d8ad3ae5d289b73e5p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741b4771fe7511d19p-56L 0x1.53625ec34b2d8ad3ae5d289b73e6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741b4771fe7511dp-56L 0x1.53625ec34b2d8ad3ae5d289b738p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741b4771fe7511d2p-56L 0x1.53625ec34b2d8ad3ae5d289b74p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741b4771fe7511dp-56L 0x1.53625ec34b2d8ad3ae5d289b738p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d08p-4L : 0x7.67cf693254741b4771fe7511d2p-56L 0x1.53625ec34b2d8ad3ae5d289b74p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ce01756c0a8e530acp-60L 0x1.53625ec34b2d88e2c60ca5c54c93p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ce01756c0a8e530acp-60L 0x1.53625ec34b2d88e2c60ca5c54c94p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ce01756c0a8e530a8p-60L 0x1.53625ec34b2d88e2c60ca5c54c93p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ce01756c0a8e530a8p-60L 0x1.53625ec34b2d88e2c60ca5c54c94p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ce01756c0a8e532p-60L 0x1.53625ec34b2d88e2c60ca5c54c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ce01756c0a8e53p-60L 0x1.53625ec34b2d88e2c60ca5c54c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ce01756c0a8e53p-60L 0x1.53625ec34b2d88e2c60ca5c54c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06dp-4L : -0x5.afe355b2ef3ce01756c0a8e53p-60L 0x1.53625ec34b2d88e2c60ca5c54dp+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd438302443da07852397cp-68L 0x1.53625ec34b2d88f994b657c6a0e2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd438302443da07852397ep-68L 0x1.53625ec34b2d88f994b657c6a0e3p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd438302443da07852397cp-68L 0x1.53625ec34b2d88f994b657c6a0e2p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd438302443da07852397ep-68L 0x1.53625ec34b2d88f994b657c6a0e3p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd438302443da0785239p-68L 0x1.53625ec34b2d88f994b657c6a08p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd438302443da0785239p-68L 0x1.53625ec34b2d88f994b657c6a1p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd438302443da0785239p-68L 0x1.53625ec34b2d88f994b657c6a08p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005ep-4L : 0x3.2baabcfd438302443da078523ap-68L 0x1.53625ec34b2d88f994b657c6a1p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc34d039caa6aa5d5fab8p-68L 0x1.53625ec34b2d88f956994db6461dp+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc34d039caa6aa5d5fab8p-68L 0x1.53625ec34b2d88f956994db6461ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc34d039caa6aa5d5fabp-68L 0x1.53625ec34b2d88f956994db6461dp+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc34d039caa6aa5d5fabp-68L 0x1.53625ec34b2d88f956994db6461ep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc34d039caa6aa5d5fcp-68L 0x1.53625ec34b2d88f956994db646p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc34d039caa6aa5d5fcp-68L 0x1.53625ec34b2d88f956994db646p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc34d039caa6aa5d5f8p-68L 0x1.53625ec34b2d88f956994db646p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dp-4L : -0xc.59f0801dc34d039caa6aa5d5f8p-68L 0x1.53625ec34b2d88f956994db6468p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x2.e95c78c4413b0f01a354efe1e77p-112L 0x1.53625ec34b2d88f9880652fb12b3p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x2.e95c78c4413b0f01a354efe1e77p-112L 0x1.53625ec34b2d88f9880652fb12b3p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x2.e95c78c4413b0f01a354efe1e76ep-112L 0x1.53625ec34b2d88f9880652fb12b3p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d5479p-4L : -0x2.e95c78c4413b0f01a354efe1e76ep-112L 0x1.53625ec34b2d88f9880652fb12b4p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x3.e11771f791bff38eeea04a1b67fp-112L 0x1.53625ec34b2d88f9880652fb12b4p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x3.e11771f791bff38eeea04a1b67fp-112L 0x1.53625ec34b2d88f9880652fb12b5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x3.e11771f791bff38eeea04a1b67fp-112L 0x1.53625ec34b2d88f9880652fb12b4p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x3.e11771f791bff38eeea04a1b67f2p-112L 0x1.53625ec34b2d88f9880652fb12b5p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x3.e11771f791bff38eeea04a1b67p-112L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x3.e11771f791bff38eeea04a1b68p-112L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x3.e11771f791bff38eeea04a1b67p-112L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d548p-4L : 0x3.e11771f791bff38eeea04a1b68p-112L 0x1.53625ec34b2d88f9880652fb13p+0L : inexact-ok += clog downward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.a35558274898023e3feb41139bd4p-108L 0x1.53625ec34b2d88f9880652fb12a5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.a35558274898023e3feb41139bd4p-108L 0x1.53625ec34b2d88f9880652fb12a5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.a35558274898023e3feb41139bd2p-108L 0x1.53625ec34b2d88f9880652fb12a5p+0L : inexact-ok += clog upward ldbl-128 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.a35558274898023e3feb41139bd2p-108L 0x1.53625ec34b2d88f9880652fb12a6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.a35558274898023e3feb41139cp-108L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.a35558274898023e3feb41139cp-108L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.a35558274898023e3feb41139bp-108L 0x1.53625ec34b2d88f9880652fb128p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.e1d0a105ac4ebeacd9c6952d34p-4L 0xf.859b3d1b06d005dcbb5516d544p-4L : -0x3.a35558274898023e3feb41139bp-108L 0x1.53625ec34b2d88f9880652fb13p+0L : inexact-ok +clog 0x47017a2e36807acb1e5214b209dep-112 0xf5f4a550c9d75e3bb1839d865f0dp-112 += clog downward flt-32 0x4.7017a8p-4f 0xf.5f4a6p-4f : 0xb.f05ap-28f 0x1.4a2cb2p+0f : inexact-ok += clog tonearest flt-32 0x4.7017a8p-4f 0xf.5f4a6p-4f : 0xb.f05a1p-28f 0x1.4a2cb4p+0f : inexact-ok += clog towardzero flt-32 0x4.7017a8p-4f 0xf.5f4a6p-4f : 0xb.f05ap-28f 0x1.4a2cb2p+0f : inexact-ok += clog upward flt-32 0x4.7017a8p-4f 0xf.5f4a6p-4f : 0xb.f05a1p-28f 0x1.4a2cb4p+0f : inexact-ok += clog downward dbl-64 0x4.7017a8p-4 0xf.5f4a6p-4 : 0xb.f05a091769ap-28 0x1.4a2cb321eed6cp+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a8p-4 0xf.5f4a6p-4 : 0xb.f05a091769ap-28 0x1.4a2cb321eed6dp+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a8p-4 0xf.5f4a6p-4 : 0xb.f05a091769ap-28 0x1.4a2cb321eed6cp+0 : inexact-ok += clog upward dbl-64 0x4.7017a8p-4 0xf.5f4a6p-4 : 0xb.f05a091769a08p-28 0x1.4a2cb321eed6dp+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005ep-28L 0x1.4a2cb321eed6ca02p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005fp-28L 0x1.4a2cb321eed6ca02p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005ep-28L 0x1.4a2cb321eed6ca02p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005fp-28L 0x1.4a2cb321eed6ca04p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005ep-28L 0x1.4a2cb321eed6ca02p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005fp-28L 0x1.4a2cb321eed6ca02p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005ep-28L 0x1.4a2cb321eed6ca02p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005fp-28L 0x1.4a2cb321eed6ca04p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005eddfe49e363ed8p-28L 0x1.4a2cb321eed6ca024c27ce1b3467p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005eddfe49e363eep-28L 0x1.4a2cb321eed6ca024c27ce1b3468p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005eddfe49e363ed8p-28L 0x1.4a2cb321eed6ca024c27ce1b3467p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005eddfe49e363eep-28L 0x1.4a2cb321eed6ca024c27ce1b3468p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005eddfe49e363cp-28L 0x1.4a2cb321eed6ca024c27ce1b34p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005eddfe49e364p-28L 0x1.4a2cb321eed6ca024c27ce1b348p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005eddfe49e363cp-28L 0x1.4a2cb321eed6ca024c27ce1b34p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a6p-4L : 0xb.f05a091769a005eddfe49e364p-28L 0x1.4a2cb321eed6ca024c27ce1b348p+0L : inexact-ok += clog downward flt-32 0x4.7017a8p-4f 0xf.5f4a5p-4f : -0x3.6ef048p-28f 0x1.4a2cb2p+0f : inexact-ok += clog tonearest flt-32 0x4.7017a8p-4f 0xf.5f4a5p-4f : -0x3.6ef048p-28f 0x1.4a2cb2p+0f : inexact-ok += clog towardzero flt-32 0x4.7017a8p-4f 0xf.5f4a5p-4f : -0x3.6ef044p-28f 0x1.4a2cb2p+0f : inexact-ok += clog upward flt-32 0x4.7017a8p-4f 0xf.5f4a5p-4f : -0x3.6ef044p-28f 0x1.4a2cb4p+0f : inexact-ok += clog downward dbl-64 0x4.7017a8p-4 0xf.5f4a5p-4 : -0x3.6ef046bc9b506p-28 0x1.4a2cb2daed5c6p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a8p-4 0xf.5f4a5p-4 : -0x3.6ef046bc9b506p-28 0x1.4a2cb2daed5c7p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a8p-4 0xf.5f4a5p-4 : -0x3.6ef046bc9b504p-28 0x1.4a2cb2daed5c6p+0 : inexact-ok += clog upward dbl-64 0x4.7017a8p-4 0xf.5f4a5p-4 : -0x3.6ef046bc9b504p-28 0x1.4a2cb2daed5c7p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050acp-28L 0x1.4a2cb2daed5c6fcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050acp-28L 0x1.4a2cb2daed5c6fc2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050a8p-28L 0x1.4a2cb2daed5c6fcp+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050a8p-28L 0x1.4a2cb2daed5c6fc2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050acp-28L 0x1.4a2cb2daed5c6fcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050acp-28L 0x1.4a2cb2daed5c6fc2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050a8p-28L 0x1.4a2cb2daed5c6fcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050a8p-28L 0x1.4a2cb2daed5c6fc2p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050ababcf776d227ap-28L 0x1.4a2cb2daed5c6fc15aa0bd6f7596p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050ababcf776d227ap-28L 0x1.4a2cb2daed5c6fc15aa0bd6f7596p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050ababcf776d2278p-28L 0x1.4a2cb2daed5c6fc15aa0bd6f7596p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050ababcf776d2278p-28L 0x1.4a2cb2daed5c6fc15aa0bd6f7597p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050ababcf776d23p-28L 0x1.4a2cb2daed5c6fc15aa0bd6f758p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050ababcf776d22p-28L 0x1.4a2cb2daed5c6fc15aa0bd6f758p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050ababcf776d22p-28L 0x1.4a2cb2daed5c6fc15aa0bd6f758p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a5p-4L : -0x3.6ef046bc9b5050ababcf776d22p-28L 0x1.4a2cb2daed5c6fc15aa0bd6f76p+0L : inexact-ok += clog downward dbl-64 0x4.7017a8p-4 0xf.5f4a550c9d76p-4 : 0x1.6af5b3cfc17f3p-28 0x1.4a2cb2f155ceap+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a8p-4 0xf.5f4a550c9d76p-4 : 0x1.6af5b3cfc17f3p-28 0x1.4a2cb2f155ceap+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a8p-4 0xf.5f4a550c9d76p-4 : 0x1.6af5b3cfc17f3p-28 0x1.4a2cb2f155ceap+0 : inexact-ok += clog upward dbl-64 0x4.7017a8p-4 0xf.5f4a550c9d76p-4 : 0x1.6af5b3cfc17f4p-28 0x1.4a2cb2f155cebp+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d4p-28L 0x1.4a2cb2f155cea0ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d6p-28L 0x1.4a2cb2f155cea0ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d4p-28L 0x1.4a2cb2f155cea0ap+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d6p-28L 0x1.4a2cb2f155cea0a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d4p-28L 0x1.4a2cb2f155cea0ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d6p-28L 0x1.4a2cb2f155cea0ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d4p-28L 0x1.4a2cb2f155cea0ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d6p-28L 0x1.4a2cb2f155cea0a2p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d596a007dfa358p-28L 0x1.4a2cb2f155cea0a0ead9d95e04bcp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d596a007dfa358p-28L 0x1.4a2cb2f155cea0a0ead9d95e04bcp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d596a007dfa358p-28L 0x1.4a2cb2f155cea0a0ead9d95e04bcp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d596a007dfa359p-28L 0x1.4a2cb2f155cea0a0ead9d95e04bdp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d596a007dfa3p-28L 0x1.4a2cb2f155cea0a0ead9d95e048p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d596a007dfa38p-28L 0x1.4a2cb2f155cea0a0ead9d95e048p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d596a007dfa3p-28L 0x1.4a2cb2f155cea0a0ead9d95e048p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d76p-4L : 0x1.6af5b3cfc17f37d596a007dfa38p-28L 0x1.4a2cb2f155cea0a0ead9d95e05p+0L : inexact-ok += clog downward dbl-64 0x4.7017a8p-4 0xf.5f4a550c9d758p-4 : 0x1.6af5b354c72cap-28 0x1.4a2cb2f155ce9p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a8p-4 0xf.5f4a550c9d758p-4 : 0x1.6af5b354c72cap-28 0x1.4a2cb2f155ceap+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a8p-4 0xf.5f4a550c9d758p-4 : 0x1.6af5b354c72cap-28 0x1.4a2cb2f155ce9p+0 : inexact-ok += clog upward dbl-64 0x4.7017a8p-4 0xf.5f4a550c9d758p-4 : 0x1.6af5b354c72cbp-28 0x1.4a2cb2f155ceap+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53cp-28L 0x1.4a2cb2f155ce9e68p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53cp-28L 0x1.4a2cb2f155ce9e68p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53cp-28L 0x1.4a2cb2f155ce9e68p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53ep-28L 0x1.4a2cb2f155ce9e6ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53cp-28L 0x1.4a2cb2f155ce9e68p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53cp-28L 0x1.4a2cb2f155ce9e68p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53cp-28L 0x1.4a2cb2f155ce9e68p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53ep-28L 0x1.4a2cb2f155ce9e6ap+0L : inexact-ok += clog downward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53c2b06ea1cd0f7p-28L 0x1.4a2cb2f155ce9e68df063e0a4225p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53c2b06ea1cd0f8p-28L 0x1.4a2cb2f155ce9e68df063e0a4225p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53c2b06ea1cd0f7p-28L 0x1.4a2cb2f155ce9e68df063e0a4225p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53c2b06ea1cd0f8p-28L 0x1.4a2cb2f155ce9e68df063e0a4226p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53c2b06ea1cd08p-28L 0x1.4a2cb2f155ce9e68df063e0a42p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53c2b06ea1cd1p-28L 0x1.4a2cb2f155ce9e68df063e0a42p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53c2b06ea1cd08p-28L 0x1.4a2cb2f155ce9e68df063e0a42p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d758p-4L : 0x1.6af5b354c72ca53c2b06ea1cd1p-28L 0x1.4a2cb2f155ce9e68df063e0a428p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7ap-28L 0x1.4a2cb2f155cea022p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7ap-28L 0x1.4a2cb2f155cea024p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7ap-28L 0x1.4a2cb2f155cea022p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7cp-28L 0x1.4a2cb2f155cea024p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7ap-28L 0x1.4a2cb2f155cea022p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7ap-28L 0x1.4a2cb2f155cea024p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7ap-28L 0x1.4a2cb2f155cea022p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7cp-28L 0x1.4a2cb2f155cea024p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7aba61075100fep-28L 0x1.4a2cb2f155cea0238c3da596084cp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7aba61075100fep-28L 0x1.4a2cb2f155cea0238c3da596084dp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7aba61075100fep-28L 0x1.4a2cb2f155cea0238c3da596084cp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7aba61075100ffp-28L 0x1.4a2cb2f155cea0238c3da596084dp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7aba610751008p-28L 0x1.4a2cb2f155cea0238c3da59608p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7aba61075101p-28L 0x1.4a2cb2f155cea0238c3da596088p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7aba610751008p-28L 0x1.4a2cb2f155cea0238c3da59608p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x1.6af5b3b49d3ffe7aba61075101p-28L 0x1.4a2cb2f155cea0238c3da596088p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b428p-28L 0x1.4a2cb2f155cea022p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b428p-28L 0x1.4a2cb2f155cea024p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b428p-28L 0x1.4a2cb2f155cea022p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b42ap-28L 0x1.4a2cb2f155cea024p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b428p-28L 0x1.4a2cb2f155cea022p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b428p-28L 0x1.4a2cb2f155cea024p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b428p-28L 0x1.4a2cb2f155cea022p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b42ap-28L 0x1.4a2cb2f155cea024p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b4286733944b81b4p-28L 0x1.4a2cb2f155cea023453c2b229dd4p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b4286733944b81b5p-28L 0x1.4a2cb2f155cea023453c2b229dd5p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b4286733944b81b4p-28L 0x1.4a2cb2f155cea023453c2b229dd4p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b4286733944b81b5p-28L 0x1.4a2cb2f155cea023453c2b229dd5p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b4286733944b818p-28L 0x1.4a2cb2f155cea023453c2b229d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b4286733944b818p-28L 0x1.4a2cb2f155cea023453c2b229ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b4286733944b818p-28L 0x1.4a2cb2f155cea023453c2b229d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bp-4L : 0x1.6af5b3b48de0b4286733944b82p-28L 0x1.4a2cb2f155cea023453c2b229ep+0L : inexact-ok += clog downward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.6af5b3b498897dc3dd011999e857p-28L 0x1.4a2cb2f155cea0237678b23f40bdp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.6af5b3b498897dc3dd011999e858p-28L 0x1.4a2cb2f155cea0237678b23f40bdp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.6af5b3b498897dc3dd011999e857p-28L 0x1.4a2cb2f155cea0237678b23f40bdp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.6af5b3b498897dc3dd011999e858p-28L 0x1.4a2cb2f155cea0237678b23f40bep+0L : inexact-ok += clog downward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.6af5b3b498897dc3dd042995b6bep-28L 0x1.4a2cb2f155cea0237678b23f40cbp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.6af5b3b498897dc3dd042995b6bep-28L 0x1.4a2cb2f155cea0237678b23f40cbp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.6af5b3b498897dc3dd042995b6bep-28L 0x1.4a2cb2f155cea0237678b23f40cbp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.6af5b3b498897dc3dd042995b6bfp-28L 0x1.4a2cb2f155cea0237678b23f40ccp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.6af5b3b498897dc3dd042995b68p-28L 0x1.4a2cb2f155cea0237678b23f408p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.6af5b3b498897dc3dd042995b68p-28L 0x1.4a2cb2f155cea0237678b23f41p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.6af5b3b498897dc3dd042995b68p-28L 0x1.4a2cb2f155cea0237678b23f408p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.6af5b3b498897dc3dd042995b7p-28L 0x1.4a2cb2f155cea0237678b23f41p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.6af5b3b498897dc3dd0051c32229p-28L 0x1.4a2cb2f155cea0237678b23f40b9p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.6af5b3b498897dc3dd0051c3222ap-28L 0x1.4a2cb2f155cea0237678b23f40bap+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.6af5b3b498897dc3dd0051c32229p-28L 0x1.4a2cb2f155cea0237678b23f40b9p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.6af5b3b498897dc3dd0051c3222ap-28L 0x1.4a2cb2f155cea0237678b23f40bap+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.6af5b3b498897dc3dd0051c322p-28L 0x1.4a2cb2f155cea0237678b23f408p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.6af5b3b498897dc3dd0051c322p-28L 0x1.4a2cb2f155cea0237678b23f408p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.6af5b3b498897dc3dd0051c322p-28L 0x1.4a2cb2f155cea0237678b23f408p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.6af5b3b498897dc3dd0051c3228p-28L 0x1.4a2cb2f155cea0237678b23f41p+0L : inexact-ok += clog downward flt-32 0x4.7017ap-4f 0xf.5f4a6p-4f : 0x9.b84e3p-28f 0x1.4a2cb2p+0f : inexact-ok += clog tonearest flt-32 0x4.7017ap-4f 0xf.5f4a6p-4f : 0x9.b84e4p-28f 0x1.4a2cb4p+0f : inexact-ok += clog towardzero flt-32 0x4.7017ap-4f 0xf.5f4a6p-4f : 0x9.b84e3p-28f 0x1.4a2cb2p+0f : inexact-ok += clog upward flt-32 0x4.7017ap-4f 0xf.5f4a6p-4f : 0x9.b84e4p-28f 0x1.4a2cb4p+0f : inexact-ok += clog downward dbl-64 0x4.7017ap-4 0xf.5f4a6p-4 : 0x9.b84e3a185cf38p-28 0x1.4a2cb39ce9292p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017ap-4 0xf.5f4a6p-4 : 0x9.b84e3a185cf38p-28 0x1.4a2cb39ce9292p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017ap-4 0xf.5f4a6p-4 : 0x9.b84e3a185cf38p-28 0x1.4a2cb39ce9292p+0 : inexact-ok += clog upward dbl-64 0x4.7017ap-4 0xf.5f4a6p-4 : 0x9.b84e3a185cf4p-28 0x1.4a2cb39ce9293p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389bp-28L 0x1.4a2cb39ce9292388p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389cp-28L 0x1.4a2cb39ce929238ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389bp-28L 0x1.4a2cb39ce9292388p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389cp-28L 0x1.4a2cb39ce929238ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389bp-28L 0x1.4a2cb39ce9292388p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389cp-28L 0x1.4a2cb39ce929238ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389bp-28L 0x1.4a2cb39ce9292388p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389cp-28L 0x1.4a2cb39ce929238ap+0L : inexact-ok += clog downward ldbl-128 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389ba38bdb25b5b38p-28L 0x1.4a2cb39ce92923896dfce6ba95fap+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389ba38bdb25b5b38p-28L 0x1.4a2cb39ce92923896dfce6ba95fap+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389ba38bdb25b5b38p-28L 0x1.4a2cb39ce92923896dfce6ba95fap+0L : inexact-ok += clog upward ldbl-128 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389ba38bdb25b5b4p-28L 0x1.4a2cb39ce92923896dfce6ba95fbp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389ba38bdb25b58p-28L 0x1.4a2cb39ce92923896dfce6ba958p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389ba38bdb25b5cp-28L 0x1.4a2cb39ce92923896dfce6ba96p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389ba38bdb25b58p-28L 0x1.4a2cb39ce92923896dfce6ba958p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a6p-4L : 0x9.b84e3a185cf389ba38bdb25b5cp-28L 0x1.4a2cb39ce92923896dfce6ba96p+0L : inexact-ok += clog downward flt-32 0x4.7017ap-4f 0xf.5f4a5p-4f : -0x5.a6fc2p-28f 0x1.4a2cb2p+0f : inexact-ok += clog tonearest flt-32 0x4.7017ap-4f 0xf.5f4a5p-4f : -0x5.a6fc18p-28f 0x1.4a2cb4p+0f : inexact-ok += clog towardzero flt-32 0x4.7017ap-4f 0xf.5f4a5p-4f : -0x5.a6fc18p-28f 0x1.4a2cb2p+0f : inexact-ok += clog upward flt-32 0x4.7017ap-4f 0xf.5f4a5p-4f : -0x5.a6fc18p-28f 0x1.4a2cb4p+0f : inexact-ok += clog downward dbl-64 0x4.7017ap-4 0xf.5f4a5p-4 : -0x5.a6fc19ff2c4e8p-28 0x1.4a2cb355e7af3p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017ap-4 0xf.5f4a5p-4 : -0x5.a6fc19ff2c4e8p-28 0x1.4a2cb355e7af3p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017ap-4 0xf.5f4a5p-4 : -0x5.a6fc19ff2c4e4p-28 0x1.4a2cb355e7af3p+0 : inexact-ok += clog upward dbl-64 0x4.7017ap-4 0xf.5f4a5p-4 : -0x5.a6fc19ff2c4e4p-28 0x1.4a2cb355e7af4p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66cp-28L 0x1.4a2cb355e7af3596p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66b8p-28L 0x1.4a2cb355e7af3596p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66b8p-28L 0x1.4a2cb355e7af3596p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66b8p-28L 0x1.4a2cb355e7af3598p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66cp-28L 0x1.4a2cb355e7af3596p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66b8p-28L 0x1.4a2cb355e7af3596p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66b8p-28L 0x1.4a2cb355e7af3596p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66b8p-28L 0x1.4a2cb355e7af3598p+0L : inexact-ok += clog downward ldbl-128 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66ba71964eefc9fp-28L 0x1.4a2cb355e7af3596aa8156397a53p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66ba71964eefc9ecp-28L 0x1.4a2cb355e7af3596aa8156397a54p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66ba71964eefc9ecp-28L 0x1.4a2cb355e7af3596aa8156397a53p+0L : inexact-ok += clog upward ldbl-128 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66ba71964eefc9ecp-28L 0x1.4a2cb355e7af3596aa8156397a54p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66ba71964eefcap-28L 0x1.4a2cb355e7af3596aa8156397ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66ba71964eefcap-28L 0x1.4a2cb355e7af3596aa8156397a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66ba71964eefc8p-28L 0x1.4a2cb355e7af3596aa8156397ap+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a5p-4L : -0x5.a6fc19ff2c4e66ba71964eefc8p-28L 0x1.4a2cb355e7af3596aa8156397a8p+0L : inexact-ok += clog downward dbl-64 0x4.7017ap-4 0xf.5f4a550c9d76p-4 : -0xc.d161e1a598ae8p-32 0x1.4a2cb36c50214p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017ap-4 0xf.5f4a550c9d76p-4 : -0xc.d161e1a598aep-32 0x1.4a2cb36c50214p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017ap-4 0xf.5f4a550c9d76p-4 : -0xc.d161e1a598aep-32 0x1.4a2cb36c50214p+0 : inexact-ok += clog upward dbl-64 0x4.7017ap-4 0xf.5f4a550c9d76p-4 : -0xc.d161e1a598aep-32 0x1.4a2cb36c50215p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24fp-32L 0x1.4a2cb36c50214448p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24fp-32L 0x1.4a2cb36c50214448p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ep-32L 0x1.4a2cb36c50214448p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ep-32L 0x1.4a2cb36c5021444ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24fp-32L 0x1.4a2cb36c50214448p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24fp-32L 0x1.4a2cb36c50214448p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ep-32L 0x1.4a2cb36c50214448p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ep-32L 0x1.4a2cb36c5021444ap+0L : inexact-ok += clog downward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ee4e6c0cf2d3dp-32L 0x1.4a2cb36c5021444867c409bf814ap+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ee4e6c0cf2d3c8p-32L 0x1.4a2cb36c5021444867c409bf814ap+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ee4e6c0cf2d3c8p-32L 0x1.4a2cb36c5021444867c409bf814ap+0L : inexact-ok += clog upward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ee4e6c0cf2d3c8p-32L 0x1.4a2cb36c5021444867c409bf814bp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ee4e6c0cf2d4p-32L 0x1.4a2cb36c5021444867c409bf81p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ee4e6c0cf2d4p-32L 0x1.4a2cb36c5021444867c409bf818p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ee4e6c0cf2dp-32L 0x1.4a2cb36c5021444867c409bf81p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d76p-4L : -0xc.d161e1a598ae24ee4e6c0cf2dp-32L 0x1.4a2cb36c5021444867c409bf818p+0L : inexact-ok += clog downward dbl-64 0x4.7017ap-4 0xf.5f4a550c9d758p-4 : -0xc.d161e9553dd98p-32 0x1.4a2cb36c50214p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017ap-4 0xf.5f4a550c9d758p-4 : -0xc.d161e9553dd98p-32 0x1.4a2cb36c50214p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017ap-4 0xf.5f4a550c9d758p-4 : -0xc.d161e9553dd9p-32 0x1.4a2cb36c50214p+0 : inexact-ok += clog upward dbl-64 0x4.7017ap-4 0xf.5f4a550c9d758p-4 : -0xc.d161e9553dd9p-32 0x1.4a2cb36c50215p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9705p-32L 0x1.4a2cb36c5021421p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704p-32L 0x1.4a2cb36c5021421p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704p-32L 0x1.4a2cb36c5021421p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704p-32L 0x1.4a2cb36c50214212p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9705p-32L 0x1.4a2cb36c5021421p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704p-32L 0x1.4a2cb36c5021421p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704p-32L 0x1.4a2cb36c5021421p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704p-32L 0x1.4a2cb36c50214212p+0L : inexact-ok += clog downward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704731e4e0f37f38p-32L 0x1.4a2cb36c502142105bf3d0dd300ap+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704731e4e0f37f3p-32L 0x1.4a2cb36c502142105bf3d0dd300bp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704731e4e0f37f3p-32L 0x1.4a2cb36c502142105bf3d0dd300ap+0L : inexact-ok += clog upward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704731e4e0f37f3p-32L 0x1.4a2cb36c502142105bf3d0dd300bp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704731e4e0f38p-32L 0x1.4a2cb36c502142105bf3d0dd3p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704731e4e0f38p-32L 0x1.4a2cb36c502142105bf3d0dd3p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704731e4e0f37cp-32L 0x1.4a2cb36c502142105bf3d0dd3p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d758p-4L : -0xc.d161e9553dd9704731e4e0f37cp-32L 0x1.4a2cb36c502142105bf3d0dd308p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2331p-32L 0x1.4a2cb36c502143cap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2331p-32L 0x1.4a2cb36c502143ccp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca233p-32L 0x1.4a2cb36c502143cap+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca233p-32L 0x1.4a2cb36c502143ccp+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2331p-32L 0x1.4a2cb36c502143cap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2331p-32L 0x1.4a2cb36c502143ccp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca233p-32L 0x1.4a2cb36c502143cap+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca233p-32L 0x1.4a2cb36c502143ccp+0L : inexact-ok += clog downward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2330f6c9b8f8f244p-32L 0x1.4a2cb36c502143cb092895318e5ep+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2330f6c9b8f8f244p-32L 0x1.4a2cb36c502143cb092895318e5fp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2330f6c9b8f8f2438p-32L 0x1.4a2cb36c502143cb092895318e5ep+0L : inexact-ok += clog upward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2330f6c9b8f8f2438p-32L 0x1.4a2cb36c502143cb092895318e5fp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2330f6c9b8f8f28p-32L 0x1.4a2cb36c502143cb092895318ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2330f6c9b8f8f24p-32L 0x1.4a2cb36c502143cb092895318e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2330f6c9b8f8f24p-32L 0x1.4a2cb36c502143cb092895318ep+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.d161e357dca2330f6c9b8f8f24p-32L 0x1.4a2cb36c502143cb092895318e8p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d88p-32L 0x1.4a2cb36c502143cap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d88p-32L 0x1.4a2cb36c502143cap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d87p-32L 0x1.4a2cb36c502143cap+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d87p-32L 0x1.4a2cb36c502143ccp+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d88p-32L 0x1.4a2cb36c502143cap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d88p-32L 0x1.4a2cb36c502143cap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d87p-32L 0x1.4a2cb36c502143cap+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d87p-32L 0x1.4a2cb36c502143ccp+0L : inexact-ok += clog downward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d878d7b7fcc61348p-32L 0x1.4a2cb36c502143cac2271b2a7214p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d878d7b7fcc6134p-32L 0x1.4a2cb36c502143cac2271b2a7215p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d878d7b7fcc6134p-32L 0x1.4a2cb36c502143cac2271b2a7214p+0L : inexact-ok += clog upward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d878d7b7fcc6134p-32L 0x1.4a2cb36c502143cac2271b2a7215p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d878d7b7fcc614p-32L 0x1.4a2cb36c502143cac2271b2a72p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d878d7b7fcc614p-32L 0x1.4a2cb36c502143cac2271b2a72p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d878d7b7fcc61p-32L 0x1.4a2cb36c502143cac2271b2a72p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.d161e358d296d878d7b7fcc61p-32L 0x1.4a2cb36c502143cac2271b2a728p+0L : inexact-ok += clog downward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0xc.d161e358280a3e922ce5030a18fp-32L 0x1.4a2cb36c502143caf363a1fbfb4p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0xc.d161e358280a3e922ce5030a18e8p-32L 0x1.4a2cb36c502143caf363a1fbfb41p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0xc.d161e358280a3e922ce5030a18e8p-32L 0x1.4a2cb36c502143caf363a1fbfb4p+0L : inexact-ok += clog upward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0xc.d161e358280a3e922ce5030a18e8p-32L 0x1.4a2cb36c502143caf363a1fbfb41p+0L : inexact-ok += clog downward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.d161e358280a3e922cb4034d24fp-32L 0x1.4a2cb36c502143caf363a1fbfb4ep+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.d161e358280a3e922cb4034d24e8p-32L 0x1.4a2cb36c502143caf363a1fbfb4fp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.d161e358280a3e922cb4034d24e8p-32L 0x1.4a2cb36c502143caf363a1fbfb4ep+0L : inexact-ok += clog upward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.d161e358280a3e922cb4034d24e8p-32L 0x1.4a2cb36c502143caf363a1fbfb4fp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.d161e358280a3e922cb4034d28p-32L 0x1.4a2cb36c502143caf363a1fbfbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.d161e358280a3e922cb4034d24p-32L 0x1.4a2cb36c502143caf363a1fbfb8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.d161e358280a3e922cb4034d24p-32L 0x1.4a2cb36c502143caf363a1fbfbp+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.d161e358280a3e922cb4034d24p-32L 0x1.4a2cb36c502143caf363a1fbfb8p+0L : inexact-ok += clog downward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.d161e358280a3e922cf180767f48p-32L 0x1.4a2cb36c502143caf363a1fbfb3dp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.d161e358280a3e922cf180767f4p-32L 0x1.4a2cb36c502143caf363a1fbfb3dp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.d161e358280a3e922cf180767f4p-32L 0x1.4a2cb36c502143caf363a1fbfb3dp+0L : inexact-ok += clog upward ldbl-128 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.d161e358280a3e922cf180767f4p-32L 0x1.4a2cb36c502143caf363a1fbfb3ep+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.d161e358280a3e922cf180768p-32L 0x1.4a2cb36c502143caf363a1fbfbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.d161e358280a3e922cf180768p-32L 0x1.4a2cb36c502143caf363a1fbfbp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.d161e358280a3e922cf180767cp-32L 0x1.4a2cb36c502143caf363a1fbfbp+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017ap-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.d161e358280a3e922cf180767cp-32L 0x1.4a2cb36c502143caf363a1fbfb8p+0L : inexact-ok += clog downward dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a6p-4 : 0xa.8564574582f88p-28 0x1.4a2cb37082d67p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a6p-4 : 0xa.8564574582f9p-28 0x1.4a2cb37082d68p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a6p-4 : 0xa.8564574582f88p-28 0x1.4a2cb37082d67p+0 : inexact-ok += clog upward dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a6p-4 : 0xa.8564574582f9p-28 0x1.4a2cb37082d68p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8bp-28L 0x1.4a2cb37082d67b3ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8bp-28L 0x1.4a2cb37082d67b3cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8bp-28L 0x1.4a2cb37082d67b3ap+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8cp-28L 0x1.4a2cb37082d67b3cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8bp-28L 0x1.4a2cb37082d67b3ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8bp-28L 0x1.4a2cb37082d67b3cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8bp-28L 0x1.4a2cb37082d67b3ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8cp-28L 0x1.4a2cb37082d67b3cp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8b2f7378bf7766p-28L 0x1.4a2cb37082d67b3b0aab7401372dp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8b2f7378bf7766p-28L 0x1.4a2cb37082d67b3b0aab7401372ep+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8b2f7378bf7766p-28L 0x1.4a2cb37082d67b3b0aab7401372dp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8b2f7378bf77668p-28L 0x1.4a2cb37082d67b3b0aab7401372ep+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8b2f7378bf774p-28L 0x1.4a2cb37082d67b3b0aab740137p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8b2f7378bf778p-28L 0x1.4a2cb37082d67b3b0aab740137p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8b2f7378bf774p-28L 0x1.4a2cb37082d67b3b0aab740137p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a6p-4L : 0xa.8564574582f8f8b2f7378bf778p-28L 0x1.4a2cb37082d67b3b0aab7401378p+0L : inexact-ok += clog downward dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a5p-4 : -0x4.d9e5fb47f1f9p-28 0x1.4a2cb329815c6p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a5p-4 : -0x4.d9e5fb47f1f8cp-28 0x1.4a2cb329815c6p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a5p-4 : -0x4.d9e5fb47f1f8cp-28 0x1.4a2cb329815c6p+0 : inexact-ok += clog upward dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a5p-4 : -0x4.d9e5fb47f1f8cp-28 0x1.4a2cb329815c7p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c97p-28L 0x1.4a2cb329815c662ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c97p-28L 0x1.4a2cb329815c662ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c968p-28L 0x1.4a2cb329815c662ep+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c968p-28L 0x1.4a2cb329815c663p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c97p-28L 0x1.4a2cb329815c662ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c97p-28L 0x1.4a2cb329815c662ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c968p-28L 0x1.4a2cb329815c662ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c968p-28L 0x1.4a2cb329815c663p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c96e0e26e2a6297p-28L 0x1.4a2cb329815c662e10e63464d882p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c96e0e26e2a6296cp-28L 0x1.4a2cb329815c662e10e63464d883p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c96e0e26e2a6296cp-28L 0x1.4a2cb329815c662e10e63464d882p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c96e0e26e2a6296cp-28L 0x1.4a2cb329815c662e10e63464d883p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c96e0e26e2a62ap-28L 0x1.4a2cb329815c662e10e63464d88p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c96e0e26e2a62ap-28L 0x1.4a2cb329815c662e10e63464d88p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c96e0e26e2a628p-28L 0x1.4a2cb329815c662e10e63464d88p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb47f1f8c96e0e26e2a628p-28L 0x1.4a2cb329815c662e10e63464d9p+0L : inexact-ok += clog downward dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a550c9d76p-4 : 0x2.083bbb775f5p-56 0x1.4a2cb33fe9ce8p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a550c9d76p-4 : 0x2.083bbb775f5p-56 0x1.4a2cb33fe9ce8p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a550c9d76p-4 : 0x2.083bbb775f5p-56 0x1.4a2cb33fe9ce8p+0 : inexact-ok += clog upward dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a550c9d76p-4 : 0x2.083bbb775f502p-56 0x1.4a2cb33fe9ce9p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003dcp-56L 0x1.4a2cb33fe9ce8136p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003ep-56L 0x1.4a2cb33fe9ce8136p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003dcp-56L 0x1.4a2cb33fe9ce8136p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003ep-56L 0x1.4a2cb33fe9ce8138p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003dcp-56L 0x1.4a2cb33fe9ce8136p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003ep-56L 0x1.4a2cb33fe9ce8136p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003dcp-56L 0x1.4a2cb33fe9ce8136p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003ep-56L 0x1.4a2cb33fe9ce8138p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003decd487b1a7d5ep-56L 0x1.4a2cb33fe9ce8136d3a0df71a478p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003decd487b1a7d5ep-56L 0x1.4a2cb33fe9ce8136d3a0df71a478p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003decd487b1a7d5ep-56L 0x1.4a2cb33fe9ce8136d3a0df71a478p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003decd487b1a7d6p-56L 0x1.4a2cb33fe9ce8136d3a0df71a479p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003decd487b1a7dp-56L 0x1.4a2cb33fe9ce8136d3a0df71a4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003decd487b1a7dp-56L 0x1.4a2cb33fe9ce8136d3a0df71a48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003decd487b1a7dp-56L 0x1.4a2cb33fe9ce8136d3a0df71a4p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d76p-4L : 0x2.083bbb775f5003decd487b1a7ep-56L 0x1.4a2cb33fe9ce8136d3a0df71a48p+0L : inexact-ok += clog downward dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a550c9d758p-4 : -0x5.a7696f0eef6bp-56 0x1.4a2cb33fe9ce7p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a550c9d758p-4 : -0x5.a7696f0eef6bp-56 0x1.4a2cb33fe9ce8p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a550c9d758p-4 : -0x5.a7696f0eef6acp-56 0x1.4a2cb33fe9ce7p+0 : inexact-ok += clog upward dbl-64 0x4.7017a2e36807cp-4 0xf.5f4a550c9d758p-4 : -0x5.a7696f0eef6acp-56 0x1.4a2cb33fe9ce8p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f8p-56L 0x1.4a2cb33fe9ce7efep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f8p-56L 0x1.4a2cb33fe9ce7efep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7fp-56L 0x1.4a2cb33fe9ce7efep+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7fp-56L 0x1.4a2cb33fe9ce7fp+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f8p-56L 0x1.4a2cb33fe9ce7efep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f8p-56L 0x1.4a2cb33fe9ce7efep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7fp-56L 0x1.4a2cb33fe9ce7efep+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7fp-56L 0x1.4a2cb33fe9ce7fp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f79910e720f92p-56L 0x1.4a2cb33fe9ce7efec7cf6dbda08fp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f79910e720f92p-56L 0x1.4a2cb33fe9ce7efec7cf6dbda09p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f79910e720f91cp-56L 0x1.4a2cb33fe9ce7efec7cf6dbda08fp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f79910e720f91cp-56L 0x1.4a2cb33fe9ce7efec7cf6dbda09p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f79910e720fap-56L 0x1.4a2cb33fe9ce7efec7cf6dbda08p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f79910e720fap-56L 0x1.4a2cb33fe9ce7efec7cf6dbda08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f79910e720f8p-56L 0x1.4a2cb33fe9ce7efec7cf6dbda08p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d758p-4L : -0x5.a7696f0eef6af7f79910e720f8p-56L 0x1.4a2cb33fe9ce7efec7cf6dbda1p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f2p-60L 0x1.4a2cb33fe9ce80b8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f2p-60L 0x1.4a2cb33fe9ce80bap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f2p-60L 0x1.4a2cb33fe9ce80b8p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f28p-60L 0x1.4a2cb33fe9ce80bap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f2p-60L 0x1.4a2cb33fe9ce80b8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f2p-60L 0x1.4a2cb33fe9ce80bap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f2p-60L 0x1.4a2cb33fe9ce80b8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f28p-60L 0x1.4a2cb33fe9ce80bap+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f22985a47f437cp-60L 0x1.4a2cb33fe9ce80b9750525d9699ep+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f22985a47f437c4p-60L 0x1.4a2cb33fe9ce80b9750525d9699ep+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f22985a47f437cp-60L 0x1.4a2cb33fe9ce80b9750525d9699ep+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f22985a47f437c4p-60L 0x1.4a2cb33fe9ce80b9750525d9699fp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f22985a47f436p-60L 0x1.4a2cb33fe9ce80b9750525d9698p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f22985a47f438p-60L 0x1.4a2cb33fe9ce80b9750525d9698p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f22985a47f436p-60L 0x1.4a2cb33fe9ce80b9750525d9698p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x5.5f7c794baefc3f22985a47f438p-60L 0x1.4a2cb33fe9ce80b9750525d96ap+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec948p-60L 0x1.4a2cb33fe9ce80b8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec948p-60L 0x1.4a2cb33fe9ce80bap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec948p-60L 0x1.4a2cb33fe9ce80b8p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec95p-60L 0x1.4a2cb33fe9ce80bap+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec948p-60L 0x1.4a2cb33fe9ce80b8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec948p-60L 0x1.4a2cb33fe9ce80bap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec948p-60L 0x1.4a2cb33fe9ce80b8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec95p-60L 0x1.4a2cb33fe9ce80bap+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec949249e9afd6528p-60L 0x1.4a2cb33fe9ce80b92e03abab331dp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec949249e9afd6528p-60L 0x1.4a2cb33fe9ce80b92e03abab331ep+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec949249e9afd6528p-60L 0x1.4a2cb33fe9ce80b92e03abab331dp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec949249e9afd652cp-60L 0x1.4a2cb33fe9ce80b92e03abab331ep+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec949249e9afd64p-60L 0x1.4a2cb33fe9ce80b92e03abab33p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec949249e9afd66p-60L 0x1.4a2cb33fe9ce80b92e03abab33p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec949249e9afd64p-60L 0x1.4a2cb33fe9ce80b92e03abab33p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bp-4L : 0x5.501d2ef6a25ec949249e9afd66p-60L 0x1.4a2cb33fe9ce80b92e03abab338p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x5.5ac5f893fbc952054f0c1a720da8p-60L 0x1.4a2cb33fe9ce80b95f403297d983p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x5.5ac5f893fbc952054f0c1a720da8p-60L 0x1.4a2cb33fe9ce80b95f403297d984p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x5.5ac5f893fbc952054f0c1a720da8p-60L 0x1.4a2cb33fe9ce80b95f403297d983p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x5.5ac5f893fbc952054f0c1a720dacp-60L 0x1.4a2cb33fe9ce80b95f403297d984p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x5.5ac5f893fbcc62011dfd9dd087f8p-60L 0x1.4a2cb33fe9ce80b95f403297d992p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x5.5ac5f893fbcc62011dfd9dd087fcp-60L 0x1.4a2cb33fe9ce80b95f403297d992p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x5.5ac5f893fbcc62011dfd9dd087f8p-60L 0x1.4a2cb33fe9ce80b95f403297d992p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x5.5ac5f893fbcc62011dfd9dd087fcp-60L 0x1.4a2cb33fe9ce80b95f403297d993p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x5.5ac5f893fbcc62011dfd9dd086p-60L 0x1.4a2cb33fe9ce80b95f403297d98p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x5.5ac5f893fbcc62011dfd9dd088p-60L 0x1.4a2cb33fe9ce80b95f403297d98p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x5.5ac5f893fbcc62011dfd9dd086p-60L 0x1.4a2cb33fe9ce80b95f403297d98p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x5.5ac5f893fbcc62011dfd9dd088p-60L 0x1.4a2cb33fe9ce80b95f403297dap+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x5.5ac5f893fbc88a2e88ba7673119cp-60L 0x1.4a2cb33fe9ce80b95f403297d98p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x5.5ac5f893fbc88a2e88ba767311ap-60L 0x1.4a2cb33fe9ce80b95f403297d98p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x5.5ac5f893fbc88a2e88ba7673119cp-60L 0x1.4a2cb33fe9ce80b95f403297d98p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x5.5ac5f893fbc88a2e88ba767311ap-60L 0x1.4a2cb33fe9ce80b95f403297d981p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x5.5ac5f893fbc88a2e88ba76731p-60L 0x1.4a2cb33fe9ce80b95f403297d98p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x5.5ac5f893fbc88a2e88ba767312p-60L 0x1.4a2cb33fe9ce80b95f403297d98p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x5.5ac5f893fbc88a2e88ba76731p-60L 0x1.4a2cb33fe9ce80b95f403297d98p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x5.5ac5f893fbc88a2e88ba767312p-60L 0x1.4a2cb33fe9ce80b95f403297dap+0L : inexact-ok += clog downward dbl-64 0x4.7017a2e368078p-4 0xf.5f4a6p-4 : 0xa.85645733c29a8p-28 0x1.4a2cb37082d67p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a2e368078p-4 0xf.5f4a6p-4 : 0xa.85645733c29a8p-28 0x1.4a2cb37082d68p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a2e368078p-4 0xf.5f4a6p-4 : 0xa.85645733c29a8p-28 0x1.4a2cb37082d67p+0 : inexact-ok += clog upward dbl-64 0x4.7017a2e368078p-4 0xf.5f4a6p-4 : 0xa.85645733c29bp-28 0x1.4a2cb37082d68p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847p-28L 0x1.4a2cb37082d67f12p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a848p-28L 0x1.4a2cb37082d67f12p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847p-28L 0x1.4a2cb37082d67f12p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a848p-28L 0x1.4a2cb37082d67f14p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847p-28L 0x1.4a2cb37082d67f12p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a848p-28L 0x1.4a2cb37082d67f12p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847p-28L 0x1.4a2cb37082d67f12p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a848p-28L 0x1.4a2cb37082d67f14p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847dca0223893e5p-28L 0x1.4a2cb37082d67f12dd3e6625bbb1p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847dca0223893e58p-28L 0x1.4a2cb37082d67f12dd3e6625bbb1p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847dca0223893e5p-28L 0x1.4a2cb37082d67f12dd3e6625bbb1p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847dca0223893e58p-28L 0x1.4a2cb37082d67f12dd3e6625bbb2p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847dca0223893cp-28L 0x1.4a2cb37082d67f12dd3e6625bb8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847dca0223894p-28L 0x1.4a2cb37082d67f12dd3e6625bb8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847dca0223893cp-28L 0x1.4a2cb37082d67f12dd3e6625bb8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a6p-4L : 0xa.85645733c29a847dca0223894p-28L 0x1.4a2cb37082d67f12dd3e6625bcp+0L : inexact-ok += clog downward dbl-64 0x4.7017a2e368078p-4 0xf.5f4a5p-4 : -0x4.d9e5fb59b2578p-28 0x1.4a2cb329815c6p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a2e368078p-4 0xf.5f4a5p-4 : -0x4.d9e5fb59b2574p-28 0x1.4a2cb329815c7p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a2e368078p-4 0xf.5f4a5p-4 : -0x4.d9e5fb59b2574p-28 0x1.4a2cb329815c6p+0 : inexact-ok += clog upward dbl-64 0x4.7017a2e368078p-4 0xf.5f4a5p-4 : -0x4.d9e5fb59b2574p-28 0x1.4a2cb329815c7p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fcp-28L 0x1.4a2cb329815c6a04p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fcp-28L 0x1.4a2cb329815c6a06p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fb8p-28L 0x1.4a2cb329815c6a04p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fb8p-28L 0x1.4a2cb329815c6a06p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fcp-28L 0x1.4a2cb329815c6a04p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fcp-28L 0x1.4a2cb329815c6a06p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fb8p-28L 0x1.4a2cb329815c6a04p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fb8p-28L 0x1.4a2cb329815c6a06p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fbf5de32fa38344p-28L 0x1.4a2cb329815c6a05e37c88facdcbp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fbf5de32fa3834p-28L 0x1.4a2cb329815c6a05e37c88facdccp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fbf5de32fa3834p-28L 0x1.4a2cb329815c6a05e37c88facdcbp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fbf5de32fa3834p-28L 0x1.4a2cb329815c6a05e37c88facdccp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fbf5de32fa384p-28L 0x1.4a2cb329815c6a05e37c88facd8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fbf5de32fa384p-28L 0x1.4a2cb329815c6a05e37c88facep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fbf5de32fa382p-28L 0x1.4a2cb329815c6a05e37c88facd8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb59b2575fbf5de32fa382p-28L 0x1.4a2cb329815c6a05e37c88facep+0L : inexact-ok += clog downward dbl-64 0x4.7017a2e368078p-4 0xf.5f4a550c9d76p-4 : 0xe.c35d2be854e18p-60 0x1.4a2cb33fe9ce8p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a2e368078p-4 0xf.5f4a550c9d76p-4 : 0xe.c35d2be854e2p-60 0x1.4a2cb33fe9ce8p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a2e368078p-4 0xf.5f4a550c9d76p-4 : 0xe.c35d2be854e18p-60 0x1.4a2cb33fe9ce8p+0 : inexact-ok += clog upward dbl-64 0x4.7017a2e368078p-4 0xf.5f4a550c9d76p-4 : 0xe.c35d2be854e2p-60 0x1.4a2cb33fe9ce9p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f26p-60L 0x1.4a2cb33fe9ce850ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f26p-60L 0x1.4a2cb33fe9ce850ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f26p-60L 0x1.4a2cb33fe9ce850ep+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f27p-60L 0x1.4a2cb33fe9ce851p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f26p-60L 0x1.4a2cb33fe9ce850ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f26p-60L 0x1.4a2cb33fe9ce850ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f26p-60L 0x1.4a2cb33fe9ce850ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f27p-60L 0x1.4a2cb33fe9ce851p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f260cb81fc9d7a3p-60L 0x1.4a2cb33fe9ce850ea636229901ecp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f260cb81fc9d7a3p-60L 0x1.4a2cb33fe9ce850ea636229901edp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f260cb81fc9d7a3p-60L 0x1.4a2cb33fe9ce850ea636229901ecp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f260cb81fc9d7a38p-60L 0x1.4a2cb33fe9ce850ea636229901edp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f260cb81fc9d78p-60L 0x1.4a2cb33fe9ce850ea6362299018p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f260cb81fc9d7cp-60L 0x1.4a2cb33fe9ce850ea636229902p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f260cb81fc9d78p-60L 0x1.4a2cb33fe9ce850ea6362299018p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d76p-4L : 0xe.c35d2be854e1f260cb81fc9d7cp-60L 0x1.4a2cb33fe9ce850ea636229902p+0L : inexact-ok += clog downward dbl-64 0x4.7017a2e368078p-4 0xf.5f4a550c9d758p-4 : -0x6.c36f57c7c96dp-56 0x1.4a2cb33fe9ce8p+0 : inexact-ok += clog tonearest dbl-64 0x4.7017a2e368078p-4 0xf.5f4a550c9d758p-4 : -0x6.c36f57c7c96dp-56 0x1.4a2cb33fe9ce8p+0 : inexact-ok += clog towardzero dbl-64 0x4.7017a2e368078p-4 0xf.5f4a550c9d758p-4 : -0x6.c36f57c7c96ccp-56 0x1.4a2cb33fe9ce8p+0 : inexact-ok += clog upward dbl-64 0x4.7017a2e368078p-4 0xf.5f4a550c9d758p-4 : -0x6.c36f57c7c96ccp-56 0x1.4a2cb33fe9ce9p+0 : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedcp-56L 0x1.4a2cb33fe9ce82d6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedcp-56L 0x1.4a2cb33fe9ce82d6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedb8p-56L 0x1.4a2cb33fe9ce82d6p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedb8p-56L 0x1.4a2cb33fe9ce82d8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedcp-56L 0x1.4a2cb33fe9ce82d6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedcp-56L 0x1.4a2cb33fe9ce82d6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedb8p-56L 0x1.4a2cb33fe9ce82d6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedb8p-56L 0x1.4a2cb33fe9ce82d8p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedbe6aed850b505cp-56L 0x1.4a2cb33fe9ce82d69a64b0e4fe1fp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedbe6aed850b505cp-56L 0x1.4a2cb33fe9ce82d69a64b0e4fe2p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedbe6aed850b5058p-56L 0x1.4a2cb33fe9ce82d69a64b0e4fe1fp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedbe6aed850b5058p-56L 0x1.4a2cb33fe9ce82d69a64b0e4fe2p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedbe6aed850b52p-56L 0x1.4a2cb33fe9ce82d69a64b0e4fep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedbe6aed850b5p-56L 0x1.4a2cb33fe9ce82d69a64b0e4fep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedbe6aed850b5p-56L 0x1.4a2cb33fe9ce82d69a64b0e4fep+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d758p-4L : -0x6.c36f57c7c96cedbe6aed850b5p-56L 0x1.4a2cb33fe9ce82d69a64b0e4fe8p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248bp-60L 0x1.4a2cb33fe9ce849p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248ap-60L 0x1.4a2cb33fe9ce8492p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248ap-60L 0x1.4a2cb33fe9ce849p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248ap-60L 0x1.4a2cb33fe9ce8492p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248bp-60L 0x1.4a2cb33fe9ce849p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248ap-60L 0x1.4a2cb33fe9ce8492p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248ap-60L 0x1.4a2cb33fe9ce849p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248ap-60L 0x1.4a2cb33fe9ce8492p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248a31dc0b844dcb8p-60L 0x1.4a2cb33fe9ce8491479a6900c718p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248a31dc0b844dcbp-60L 0x1.4a2cb33fe9ce8491479a6900c719p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248a31dc0b844dcbp-60L 0x1.4a2cb33fe9ce8491479a6900c718p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248a31dc0b844dcbp-60L 0x1.4a2cb33fe9ce8491479a6900c719p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248a31dc0b844ep-60L 0x1.4a2cb33fe9ce8491479a6900c7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248a31dc0b844dcp-60L 0x1.4a2cb33fe9ce8491479a6900c7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248a31dc0b844dcp-60L 0x1.4a2cb33fe9ce8491479a6900c7p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3cp-4L : -0xc.60e21241f12248a31dc0b844dcp-60L 0x1.4a2cb33fe9ce8491479a6900c78p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbeap-60L 0x1.4a2cb33fe9ce849p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbeap-60L 0x1.4a2cb33fe9ce8492p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9p-60L 0x1.4a2cb33fe9ce849p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9p-60L 0x1.4a2cb33fe9ce8492p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbeap-60L 0x1.4a2cb33fe9ce849p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbeap-60L 0x1.4a2cb33fe9ce8492p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9p-60L 0x1.4a2cb33fe9ce849p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9p-60L 0x1.4a2cb33fe9ce8492p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9ead9efdc0e2bp-60L 0x1.4a2cb33fe9ce84910098eed29098p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9ead9efdc0e2bp-60L 0x1.4a2cb33fe9ce84910098eed29098p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9ead9efdc0e2a8p-60L 0x1.4a2cb33fe9ce84910098eed29098p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9ead9efdc0e2a8p-60L 0x1.4a2cb33fe9ce84910098eed29099p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9ead9efdc0e4p-60L 0x1.4a2cb33fe9ce84910098eed2908p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9ead9efdc0e4p-60L 0x1.4a2cb33fe9ce84910098eed2908p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9ead9efdc0ep-60L 0x1.4a2cb33fe9ce84910098eed2908p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bp-4L : -0xc.70415c96fdbfbe9ead9efdc0ep-60L 0x1.4a2cb33fe9ce84910098eed291p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0xc.659892f9a45535cadc342ffb79bp-60L 0x1.4a2cb33fe9ce849131d575bf36fep+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0xc.659892f9a45535cadc342ffb79a8p-60L 0x1.4a2cb33fe9ce849131d575bf36ffp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0xc.659892f9a45535cadc342ffb79a8p-60L 0x1.4a2cb33fe9ce849131d575bf36fep+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0xc.659892f9a45535cadc342ffb79a8p-60L 0x1.4a2cb33fe9ce849131d575bf36ffp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.659892f9a45225cf0d42ac9cf89p-60L 0x1.4a2cb33fe9ce849131d575bf370cp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.659892f9a45225cf0d42ac9cf89p-60L 0x1.4a2cb33fe9ce849131d575bf370dp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.659892f9a45225cf0d42ac9cf888p-60L 0x1.4a2cb33fe9ce849131d575bf370cp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.659892f9a45225cf0d42ac9cf888p-60L 0x1.4a2cb33fe9ce849131d575bf370dp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.659892f9a45225cf0d42ac9cfcp-60L 0x1.4a2cb33fe9ce849131d575bf37p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.659892f9a45225cf0d42ac9cf8p-60L 0x1.4a2cb33fe9ce849131d575bf37p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.659892f9a45225cf0d42ac9cf8p-60L 0x1.4a2cb33fe9ce849131d575bf37p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0xc.659892f9a45225cf0d42ac9cf8p-60L 0x1.4a2cb33fe9ce849131d575bf378p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.659892f9a455fda1a285d3fa7778p-60L 0x1.4a2cb33fe9ce849131d575bf36fap+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.659892f9a455fda1a285d3fa777p-60L 0x1.4a2cb33fe9ce849131d575bf36fbp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.659892f9a455fda1a285d3fa777p-60L 0x1.4a2cb33fe9ce849131d575bf36fap+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.659892f9a455fda1a285d3fa777p-60L 0x1.4a2cb33fe9ce849131d575bf36fbp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.659892f9a455fda1a285d3fa78p-60L 0x1.4a2cb33fe9ce849131d575bf368p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.659892f9a455fda1a285d3fa78p-60L 0x1.4a2cb33fe9ce849131d575bf37p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.659892f9a455fda1a285d3fa74p-60L 0x1.4a2cb33fe9ce849131d575bf368p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e368078p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.659892f9a455fda1a285d3fa74p-60L 0x1.4a2cb33fe9ce849131d575bf37p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483fp-28L 0x1.4a2cb37082d67c62p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483fp-28L 0x1.4a2cb37082d67c64p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483fp-28L 0x1.4a2cb37082d67c62p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e484p-28L 0x1.4a2cb37082d67c64p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483fp-28L 0x1.4a2cb37082d67c62p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483fp-28L 0x1.4a2cb37082d67c64p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483fp-28L 0x1.4a2cb37082d67c62p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e484p-28L 0x1.4a2cb37082d67c64p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483f071f8be14b968p-28L 0x1.4a2cb37082d67c636ffbf9347799p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483f071f8be14b968p-28L 0x1.4a2cb37082d67c636ffbf9347799p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483f071f8be14b968p-28L 0x1.4a2cb37082d67c636ffbf9347799p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483f071f8be14b97p-28L 0x1.4a2cb37082d67c636ffbf934779ap+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483f071f8be14b8p-28L 0x1.4a2cb37082d67c636ffbf934778p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483f071f8be14b8p-28L 0x1.4a2cb37082d67c636ffbf934778p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483f071f8be14b8p-28L 0x1.4a2cb37082d67c636ffbf934778p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a6p-4L : 0xa.8564574029e483f071f8be14bcp-28L 0x1.4a2cb37082d67c636ffbf93478p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d4878p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d4878p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d487p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d487p-28L 0x1.4a2cb329815c6758p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d4878p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d4878p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d487p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d487p-28L 0x1.4a2cb329815c6758p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d48774d4c94248598p-28L 0x1.4a2cb329815c67567637bea08607p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d48774d4c94248594p-28L 0x1.4a2cb329815c67567637bea08607p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d48774d4c94248594p-28L 0x1.4a2cb329815c67567637bea08607p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d48774d4c94248594p-28L 0x1.4a2cb329815c67567637bea08608p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d48774d4c942486p-28L 0x1.4a2cb329815c67567637bea086p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d48774d4c942486p-28L 0x1.4a2cb329815c67567637bea086p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d48774d4c942484p-28L 0x1.4a2cb329815c67567637bea086p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4b0d48774d4c942484p-28L 0x1.4a2cb329815c67567637bea0868p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23068p-56L 0x1.4a2cb33fe9ce825ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea2306ap-56L 0x1.4a2cb33fe9ce826p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23068p-56L 0x1.4a2cb33fe9ce825ep+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea2306ap-56L 0x1.4a2cb33fe9ce826p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23068p-56L 0x1.4a2cb33fe9ce825ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea2306ap-56L 0x1.4a2cb33fe9ce826p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23068p-56L 0x1.4a2cb33fe9ce825ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea2306ap-56L 0x1.4a2cb33fe9ce826p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23069dbbe1d1fa0ep-56L 0x1.4a2cb33fe9ce825f38f2174ce07ep+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23069dbbe1d1fa0ep-56L 0x1.4a2cb33fe9ce825f38f2174ce07fp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23069dbbe1d1fa0ep-56L 0x1.4a2cb33fe9ce825f38f2174ce07ep+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23069dbbe1d1fa0e1p-56L 0x1.4a2cb33fe9ce825f38f2174ce07fp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23069dbbe1d1fa08p-56L 0x1.4a2cb33fe9ce825f38f2174cep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23069dbbe1d1fa1p-56L 0x1.4a2cb33fe9ce825f38f2174ce08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23069dbbe1d1fa08p-56L 0x1.4a2cb33fe9ce825f38f2174cep+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d76p-4L : 0x1.b2aa73baaea23069dbbe1d1fa1p-56L 0x1.4a2cb33fe9ce825f38f2174ce08p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d09p-56L 0x1.4a2cb33fe9ce8026p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d09p-56L 0x1.4a2cb33fe9ce8028p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d088p-56L 0x1.4a2cb33fe9ce8026p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d088p-56L 0x1.4a2cb33fe9ce8028p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d09p-56L 0x1.4a2cb33fe9ce8026p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d09p-56L 0x1.4a2cb33fe9ce8028p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d088p-56L 0x1.4a2cb33fe9ce8026p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d088p-56L 0x1.4a2cb33fe9ce8028p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d08fe7915eac634cp-56L 0x1.4a2cb33fe9ce80272d20a598dc9ep+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d08fe7915eac634cp-56L 0x1.4a2cb33fe9ce80272d20a598dc9fp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d08fe7915eac6348p-56L 0x1.4a2cb33fe9ce80272d20a598dc9ep+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d08fe7915eac6348p-56L 0x1.4a2cb33fe9ce80272d20a598dc9fp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d08fe7915eac64p-56L 0x1.4a2cb33fe9ce80272d20a598dc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d08fe7915eac64p-56L 0x1.4a2cb33fe9ce80272d20a598dc8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d08fe7915eac62p-56L 0x1.4a2cb33fe9ce80272d20a598dc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d758p-4L : -0x5.fcfab6cba018d08fe7915eac62p-56L 0x1.4a2cb33fe9ce80272d20a598ddp+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae98p-68L 0x1.4a2cb33fe9ce81ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5aeap-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae98p-68L 0x1.4a2cb33fe9ce81ep+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5aeap-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae98p-68L 0x1.4a2cb33fe9ce81ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5aeap-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae98p-68L 0x1.4a2cb33fe9ce81ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5aeap-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae9f6f5dfffc2f68p-68L 0x1.4a2cb33fe9ce81e1da565db4a5a6p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae9f6f5dfffc2f68p-68L 0x1.4a2cb33fe9ce81e1da565db4a5a7p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae9f6f5dfffc2f68p-68L 0x1.4a2cb33fe9ce81e1da565db4a5a6p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae9f6f5dfffc2f6cp-68L 0x1.4a2cb33fe9ce81e1da565db4a5a7p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae9f6f5dfffc2ep-68L 0x1.4a2cb33fe9ce81e1da565db4a58p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae9f6f5dfffc3p-68L 0x1.4a2cb33fe9ce81e1da565db4a58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae9f6f5dfffc2ep-68L 0x1.4a2cb33fe9ce81e1da565db4a58p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3cp-4L : 0x6.67fd80a41ef5ae9f6f5dfffc3p-68L 0x1.4a2cb33fe9ce81e1da565db4a6p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80352p-68L 0x1.4a2cb33fe9ce81ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80352p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351p-68L 0x1.4a2cb33fe9ce81ep+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80352p-68L 0x1.4a2cb33fe9ce81ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80352p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351p-68L 0x1.4a2cb33fe9ce81ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351b063b29f785a8p-68L 0x1.4a2cb33fe9ce81e19354e3866f26p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351b063b29f785a8p-68L 0x1.4a2cb33fe9ce81e19354e3866f26p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351b063b29f785ap-68L 0x1.4a2cb33fe9ce81e19354e3866f26p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351b063b29f785ap-68L 0x1.4a2cb33fe9ce81e19354e3866f27p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351b063b29f788p-68L 0x1.4a2cb33fe9ce81e19354e3866fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351b063b29f784p-68L 0x1.4a2cb33fe9ce81e19354e3866fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351b063b29f784p-68L 0x1.4a2cb33fe9ce81e19354e3866fp+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bp-4L : -0x8.f74cd4687e80351b063b29f784p-68L 0x1.4a2cb33fe9ce81e19354e3866f8p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.b17cc8f0ec088e2f965482c4fab1p-68L 0x1.4a2cb33fe9ce81e1c4916a73158cp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.b17cc8f0ec088e2f965482c4fab2p-68L 0x1.4a2cb33fe9ce81e1c4916a73158dp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.b17cc8f0ec088e2f965482c4fab1p-68L 0x1.4a2cb33fe9ce81e1c4916a73158cp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.b17cc8f0ec088e2f965482c4fab2p-68L 0x1.4a2cb33fe9ce81e1c4916a73158dp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.b17cc8f0ef1889fe87d7e1415851p-68L 0x1.4a2cb33fe9ce81e1c4916a73159ap+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.b17cc8f0ef1889fe87d7e1415851p-68L 0x1.4a2cb33fe9ce81e1c4916a73159bp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.b17cc8f0ef1889fe87d7e1415851p-68L 0x1.4a2cb33fe9ce81e1c4916a73159ap+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.b17cc8f0ef1889fe87d7e1415852p-68L 0x1.4a2cb33fe9ce81e1c4916a73159bp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.b17cc8f0ef1889fe87d7e14158p-68L 0x1.4a2cb33fe9ce81e1c4916a73158p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.b17cc8f0ef1889fe87d7e141588p-68L 0x1.4a2cb33fe9ce81e1c4916a73158p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.b17cc8f0ef1889fe87d7e14158p-68L 0x1.4a2cb33fe9ce81e1c4916a73158p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x1.b17cc8f0ef1889fe87d7e141588p-68L 0x1.4a2cb33fe9ce81e1c4916a7316p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.b17cc8f0eb40b76944b083c86a5bp-68L 0x1.4a2cb33fe9ce81e1c4916a731588p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.b17cc8f0eb40b76944b083c86a5cp-68L 0x1.4a2cb33fe9ce81e1c4916a731589p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.b17cc8f0eb40b76944b083c86a5bp-68L 0x1.4a2cb33fe9ce81e1c4916a731588p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.b17cc8f0eb40b76944b083c86a5cp-68L 0x1.4a2cb33fe9ce81e1c4916a731589p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.b17cc8f0eb40b76944b083c86ap-68L 0x1.4a2cb33fe9ce81e1c4916a73158p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.b17cc8f0eb40b76944b083c86a8p-68L 0x1.4a2cb33fe9ce81e1c4916a73158p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.b17cc8f0eb40b76944b083c86ap-68L 0x1.4a2cb33fe9ce81e1c4916a73158p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb8p-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : 0x1.b17cc8f0eb40b76944b083c86a8p-68L 0x1.4a2cb33fe9ce81e1c4916a7316p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac782p-28L 0x1.4a2cb37082d67c62p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac782p-28L 0x1.4a2cb37082d67c64p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac782p-28L 0x1.4a2cb37082d67c62p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac783p-28L 0x1.4a2cb37082d67c64p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac782p-28L 0x1.4a2cb37082d67c62p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac782p-28L 0x1.4a2cb37082d67c64p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac782p-28L 0x1.4a2cb37082d67c62p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac783p-28L 0x1.4a2cb37082d67c64p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac7821eb5317624bdp-28L 0x1.4a2cb37082d67c63eaf64b92bc29p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac7821eb5317624bdp-28L 0x1.4a2cb37082d67c63eaf64b92bc2ap+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac7821eb5317624bdp-28L 0x1.4a2cb37082d67c63eaf64b92bc29p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac7821eb5317624bd8p-28L 0x1.4a2cb37082d67c63eaf64b92bc2ap+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac7821eb53176248p-28L 0x1.4a2cb37082d67c63eaf64b92bcp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac7821eb5317624cp-28L 0x1.4a2cb37082d67c63eaf64b92bcp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac7821eb53176248p-28L 0x1.4a2cb37082d67c63eaf64b92bcp+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a6p-4L : 0xa.8564574027ac7821eb5317624cp-28L 0x1.4a2cb37082d67c63eaf64b92bc8p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d45545p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d455448p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d455448p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d455448p-28L 0x1.4a2cb329815c6758p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d45545p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d455448p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d455448p-28L 0x1.4a2cb329815c6756p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d455448p-28L 0x1.4a2cb329815c6758p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d45544a17768bb38514p-28L 0x1.4a2cb329815c6756f132116b18c6p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d45544a17768bb38514p-28L 0x1.4a2cb329815c6756f132116b18c6p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d45544a17768bb3851p-28L 0x1.4a2cb329815c6756f132116b18c6p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d45544a17768bb3851p-28L 0x1.4a2cb329815c6756f132116b18c7p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d45544a17768bb386p-28L 0x1.4a2cb329815c6756f132116b188p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d45544a17768bb386p-28L 0x1.4a2cb329815c6756f132116b19p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d45544a17768bb384p-28L 0x1.4a2cb329815c6756f132116b188p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4d45544a17768bb384p-28L 0x1.4a2cb329815c6756f132116b19p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02cp-56L 0x1.4a2cb33fe9ce825ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02cp-56L 0x1.4a2cb33fe9ce826p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02cp-56L 0x1.4a2cb33fe9ce825ep+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02ep-56L 0x1.4a2cb33fe9ce826p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02cp-56L 0x1.4a2cb33fe9ce825ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02cp-56L 0x1.4a2cb33fe9ce826p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02cp-56L 0x1.4a2cb33fe9ce825ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02ep-56L 0x1.4a2cb33fe9ce826p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02ceea8f8e21b67p-56L 0x1.4a2cb33fe9ce825fb3ec69f5456ap+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02ceea8f8e21b67p-56L 0x1.4a2cb33fe9ce825fb3ec69f5456bp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02ceea8f8e21b67p-56L 0x1.4a2cb33fe9ce825fb3ec69f5456ap+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02ceea8f8e21b68p-56L 0x1.4a2cb33fe9ce825fb3ec69f5456bp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02ceea8f8e21bp-56L 0x1.4a2cb33fe9ce825fb3ec69f545p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02ceea8f8e21b8p-56L 0x1.4a2cb33fe9ce825fb3ec69f5458p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02ceea8f8e21bp-56L 0x1.4a2cb33fe9ce825fb3ec69f545p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d76p-4L : 0x1.b286f2fd9786f02ceea8f8e21b8p-56L 0x1.4a2cb33fe9ce825fb3ec69f5458p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410dp-56L 0x1.4a2cb33fe9ce8026p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410dp-56L 0x1.4a2cb33fe9ce8028p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410c8p-56L 0x1.4a2cb33fe9ce8026p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410c8p-56L 0x1.4a2cb33fe9ce8028p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410dp-56L 0x1.4a2cb33fe9ce8026p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410dp-56L 0x1.4a2cb33fe9ce8028p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410c8p-56L 0x1.4a2cb33fe9ce8026p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410c8p-56L 0x1.4a2cb33fe9ce8028p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410cef668ac723bfcp-56L 0x1.4a2cb33fe9ce8027a81af841418ap+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410cef668ac723bf8p-56L 0x1.4a2cb33fe9ce8027a81af841418bp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410cef668ac723bf8p-56L 0x1.4a2cb33fe9ce8027a81af841418ap+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410cef668ac723bf8p-56L 0x1.4a2cb33fe9ce8027a81af841418bp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410cef668ac723cp-56L 0x1.4a2cb33fe9ce8027a81af841418p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410cef668ac723cp-56L 0x1.4a2cb33fe9ce8027a81af841418p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410cef668ac723ap-56L 0x1.4a2cb33fe9ce8027a81af841418p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd1e3788b73410cef668ac723ap-56L 0x1.4a2cb33fe9ce8027a81af84142p+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d84p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d848p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d84p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d848p-68L 0x1.4a2cb33fe9ce81e4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d84p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d848p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d84p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d848p-68L 0x1.4a2cb33fe9ce81e4p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d846e7777e3ecd04p-68L 0x1.4a2cb33fe9ce81e25550b05d0a92p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d846e7777e3ecd04p-68L 0x1.4a2cb33fe9ce81e25550b05d0a93p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d846e7777e3ecd04p-68L 0x1.4a2cb33fe9ce81e25550b05d0a92p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d846e7777e3ecd08p-68L 0x1.4a2cb33fe9ce81e25550b05d0a93p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d846e7777e3eccp-68L 0x1.4a2cb33fe9ce81e25550b05d0a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d846e7777e3ecep-68L 0x1.4a2cb33fe9ce81e25550b05d0a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d846e7777e3eccp-68L 0x1.4a2cb33fe9ce81e25550b05d0a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.2ff1af326af1d846e7777e3ecep-68L 0x1.4a2cb33fe9ce81e25550b05d0bp+0L : inexact-ok += clog downward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b8p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b7p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b7p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog upward ldbl-96-intel 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b7p-68L 0x1.4a2cb33fe9ce81e4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b8p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b7p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b7p-68L 0x1.4a2cb33fe9ce81e2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b7p-68L 0x1.4a2cb33fe9ce81e4p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b77d1a5fec58e78p-68L 0x1.4a2cb33fe9ce81e20e4f362ed412p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b77d1a5fec58e7p-68L 0x1.4a2cb33fe9ce81e20e4f362ed412p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b77d1a5fec58e7p-68L 0x1.4a2cb33fe9ce81e20e4f362ed412p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b77d1a5fec58e7p-68L 0x1.4a2cb33fe9ce81e20e4f362ed413p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b77d1a5fec59p-68L 0x1.4a2cb33fe9ce81e20e4f362ed4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b77d1a5fec59p-68L 0x1.4a2cb33fe9ce81e20e4f362ed4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b77d1a5fec58cp-68L 0x1.4a2cb33fe9ce81e20e4f362ed4p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bp-4L : -0xb.2f58a5da32840b77d1a5fec58cp-68L 0x1.4a2cb33fe9ce81e20e4f362ed48p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0x8.68f0880c7fb482a4036a83ef60d8p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a78p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0x8.68f0880c7fb482a4036a83ef60d8p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a78p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0x8.68f0880c7fb482a4036a83ef60dp-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a78p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0x8.68f0880c7fb482a4036a83ef60dp-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a79p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0x8.68f0880c4eb4c5b4eb349c29794p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a86p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0x8.68f0880c4eb4c5b4eb349c29794p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a86p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0x8.68f0880c4eb4c5b4eb349c297938p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a86p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0x8.68f0880c4eb4c5b4eb349c297938p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a87p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0x8.68f0880c4eb4c5b4eb349c297cp-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0x8.68f0880c4eb4c5b4eb349c2978p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0x8.68f0880c4eb4c5b4eb349c2978p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : -0x8.68f0880c4eb4c5b4eb349c2978p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7bp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x8.68f0880c8c31ef091daa73b869bp-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a74p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x8.68f0880c8c31ef091daa73b869a8p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a75p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x8.68f0880c8c31ef091daa73b869a8p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a74p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x8.68f0880c8c31ef091daa73b869a8p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a75p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x8.68f0880c8c31ef091daa73b86cp-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x8.68f0880c8c31ef091daa73b868p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x8.68f0880c8c31ef091daa73b868p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7ap+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acbp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x8.68f0880c8c31ef091daa73b868p-72L 0x1.4a2cb33fe9ce81e23f8bbd1b7a8p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24a6d9079p-28L 0x1.4a2cb37082d67c63cdd4c405b53fp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24a6d9079p-28L 0x1.4a2cb37082d67c63cdd4c405b54p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24a6d9079p-28L 0x1.4a2cb37082d67c63cdd4c405b53fp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24a6d90798p-28L 0x1.4a2cb37082d67c63cdd4c405b54p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414516080a650cp-28L 0x1.4a2cb329815c6756d41089c46a15p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414516080a650cp-28L 0x1.4a2cb329815c6756d41089c46a16p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414516080a6508p-28L 0x1.4a2cb329815c6756d41089c46a15p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414516080a6508p-28L 0x1.4a2cb329815c6756d41089c46a16p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f936fe154bfc1785cc4p-56L 0x1.4a2cb33fe9ce825f96cae256af62p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f936fe154bfc1785cc5p-56L 0x1.4a2cb33fe9ce825f96cae256af63p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f936fe154bfc1785cc4p-56L 0x1.4a2cb33fe9ce825f96cae256af62p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f936fe154bfc1785cc5p-56L 0x1.4a2cb33fe9ce825f96cae256af63p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27911a0f0a697ff938p-56L 0x1.4a2cb33fe9ce80278af970a2ab82p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27911a0f0a697ff934p-56L 0x1.4a2cb33fe9ce80278af970a2ab83p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27911a0f0a697ff934p-56L 0x1.4a2cb33fe9ce80278af970a2ab82p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27911a0f0a697ff934p-56L 0x1.4a2cb33fe9ce80278af970a2ab83p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332ed2070d868f7399744p-68L 0x1.4a2cb33fe9ce81e2382f28be748ap+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332ed2070d868f7399748p-68L 0x1.4a2cb33fe9ce81e2382f28be748bp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332ed2070d868f7399744p-68L 0x1.4a2cb33fe9ce81e2382f28be748ap+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332ed2070d868f7399748p-68L 0x1.4a2cb33fe9ce81e2382f28be748bp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a88c34cde259112c168p-68L 0x1.4a2cb33fe9ce81e1f12dae903e0ap+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a88c34cde259112c16p-68L 0x1.4a2cb33fe9ce81e1f12dae903e0ap+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a88c34cde259112c16p-68L 0x1.4a2cb33fe9ce81e1f12dae903e0ap+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a88c34cde259112c16p-68L 0x1.4a2cb33fe9ce81e1f12dae903e0bp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.967fffffffffffffffffffffffffp-216L 0x1.4a2cb33fe9ce81e2226a357ce47p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.968p-216L 0x1.4a2cb33fe9ce81e2226a357ce47p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.967fffffffffffffffffffffffffp-216L 0x1.4a2cb33fe9ce81e2226a357ce47p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x1.968p-216L 0x1.4a2cb33fe9ce81e2226a357ce471p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.0ffbcef1835e7c5e45d3861c4ecep-108L 0x1.4a2cb33fe9ce81e2226a357ce47ep+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.0ffbcef1835e7c5e45d3861c4ecep-108L 0x1.4a2cb33fe9ce81e2226a357ce47ep+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.0ffbcef1835e7c5e45d3861c4ecep-108L 0x1.4a2cb33fe9ce81e2226a357ce47ep+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.0ffbcef1835e7c5e45d3861c4edp-108L 0x1.4a2cb33fe9ce81e2226a357ce47fp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.7d6c651a3fefc90803aeffd2d258p-112L 0x1.4a2cb33fe9ce81e2226a357ce46cp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.7d6c651a3fefc90803aeffd2d258p-112L 0x1.4a2cb33fe9ce81e2226a357ce46dp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.7d6c651a3fefc90803aeffd2d25p-112L 0x1.4a2cb33fe9ce81e2226a357ce46cp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209dep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xc.7d6c651a3fefc90803aeffd2d25p-112L 0x1.4a2cb33fe9ce81e2226a357ce46dp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24afb936c8p-28L 0x1.4a2cb37082d67c63cdd4c405b53dp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24afb936dp-28L 0x1.4a2cb37082d67c63cdd4c405b53ep+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24afb936c8p-28L 0x1.4a2cb37082d67c63cdd4c405b53dp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24afb936dp-28L 0x1.4a2cb37082d67c63cdd4c405b53ep+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24afb934p-28L 0x1.4a2cb37082d67c63cdd4c405b5p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24afb938p-28L 0x1.4a2cb37082d67c63cdd4c405b5p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24afb934p-28L 0x1.4a2cb37082d67c63cdd4c405b5p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb24afb938p-28L 0x1.4a2cb37082d67c63cdd4c405b58p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414515ff2a35c4p-28L 0x1.4a2cb329815c6756d41089c46a13p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414515ff2a35cp-28L 0x1.4a2cb329815c6756d41089c46a14p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414515ff2a35cp-28L 0x1.4a2cb329815c6756d41089c46a13p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414515ff2a35cp-28L 0x1.4a2cb329815c6756d41089c46a14p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414515ff2a36p-28L 0x1.4a2cb329815c6756d41089c46ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414515ff2a36p-28L 0x1.4a2cb329815c6756d41089c46ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414515ff2a34p-28L 0x1.4a2cb329815c6756d41089c46ap+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec5414515ff2a34p-28L 0x1.4a2cb329815c6756d41089c46a8p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93706f57b41de55db8p-56L 0x1.4a2cb33fe9ce825f96cae256af6p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93706f57b41de55db9p-56L 0x1.4a2cb33fe9ce825f96cae256af61p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93706f57b41de55db8p-56L 0x1.4a2cb33fe9ce825f96cae256af6p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93706f57b41de55db9p-56L 0x1.4a2cb33fe9ce825f96cae256af61p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93706f57b41de55d8p-56L 0x1.4a2cb33fe9ce825f96cae256afp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93706f57b41de55d8p-56L 0x1.4a2cb33fe9ce825f96cae256af8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93706f57b41de55d8p-56L 0x1.4a2cb33fe9ce825f96cae256afp+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93706f57b41de55ep-56L 0x1.4a2cb33fe9ce825f96cae256af8p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27908c0c160d12f83cp-56L 0x1.4a2cb33fe9ce80278af970a2ab8p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27908c0c160d12f838p-56L 0x1.4a2cb33fe9ce80278af970a2ab81p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27908c0c160d12f838p-56L 0x1.4a2cb33fe9ce80278af970a2ab8p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27908c0c160d12f838p-56L 0x1.4a2cb33fe9ce80278af970a2ab81p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27908c0c160d12fap-56L 0x1.4a2cb33fe9ce80278af970a2ab8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27908c0c160d12f8p-56L 0x1.4a2cb33fe9ce80278af970a2ab8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27908c0c160d12f8p-56L 0x1.4a2cb33fe9ce80278af970a2ab8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27908c0c160d12f8p-56L 0x1.4a2cb33fe9ce80278af970a2acp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332f600a01e2fc748f0a4p-68L 0x1.4a2cb33fe9ce81e2382f28be7488p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332f600a01e2fc748f0a8p-68L 0x1.4a2cb33fe9ce81e2382f28be7489p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332f600a01e2fc748f0a4p-68L 0x1.4a2cb33fe9ce81e2382f28be7488p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332f600a01e2fc748f0a8p-68L 0x1.4a2cb33fe9ce81e2382f28be7489p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332f600a01e2fc748fp-68L 0x1.4a2cb33fe9ce81e2382f28be748p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332f600a01e2fc748fp-68L 0x1.4a2cb33fe9ce81e2382f28be748p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332f600a01e2fc748fp-68L 0x1.4a2cb33fe9ce81e2382f28be748p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b332f600a01e2fc748f2p-68L 0x1.4a2cb33fe9ce81e2382f28be75p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a7fe31d985ec10367f8p-68L 0x1.4a2cb33fe9ce81e1f12dae903e08p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a7fe31d985ec10367fp-68L 0x1.4a2cb33fe9ce81e1f12dae903e08p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a7fe31d985ec10367fp-68L 0x1.4a2cb33fe9ce81e1f12dae903e08p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a7fe31d985ec10367fp-68L 0x1.4a2cb33fe9ce81e1f12dae903e09p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a7fe31d985ec10368p-68L 0x1.4a2cb33fe9ce81e1f12dae903ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a7fe31d985ec10368p-68L 0x1.4a2cb33fe9ce81e1f12dae903ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a7fe31d985ec10364p-68L 0x1.4a2cb33fe9ce81e1f12dae903ep+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596a7fe31d985ec10364p-68L 0x1.4a2cb33fe9ce81e1f12dae903e8p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x8.e02f45c6d00f5963ca429641554p-116L 0x1.4a2cb33fe9ce81e2226a357ce46ep+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x8.e02f45c6d00f5963ca429641554p-116L 0x1.4a2cb33fe9ce81e2226a357ce46ep+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x8.e02f45c6d00f5963ca429641554p-116L 0x1.4a2cb33fe9ce81e2226a357ce46ep+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : 0x8.e02f45c6d00f5963ca4296415548p-116L 0x1.4a2cb33fe9ce81e2226a357ce46fp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.18dbfe374a2e8bb7a99dc8b29006p-108L 0x1.4a2cb33fe9ce81e2226a357ce47cp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.18dbfe374a2e8bb7a99dc8b29006p-108L 0x1.4a2cb33fe9ce81e2226a357ce47cp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.18dbfe374a2e8bb7a99dc8b29006p-108L 0x1.4a2cb33fe9ce81e2226a357ce47cp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.18dbfe374a2e8bb7a99dc8b29008p-108L 0x1.4a2cb33fe9ce81e2226a357ce47dp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.18dbfe374a2e8bb7a99dc8b29p-108L 0x1.4a2cb33fe9ce81e2226a357ce4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.18dbfe374a2e8bb7a99dc8b29p-108L 0x1.4a2cb33fe9ce81e2226a357ce48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.18dbfe374a2e8bb7a99dc8b29p-108L 0x1.4a2cb33fe9ce81e2226a357ce4p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x3.18dbfe374a2e8bb7a99dc8b291p-108L 0x1.4a2cb33fe9ce81e2226a357ce48p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xb.ef6970bdd2eed371c70ad66ebe9p-112L 0x1.4a2cb33fe9ce81e2226a357ce46ap+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xb.ef6970bdd2eed371c70ad66ebe9p-112L 0x1.4a2cb33fe9ce81e2226a357ce46bp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xb.ef6970bdd2eed371c70ad66ebe88p-112L 0x1.4a2cb33fe9ce81e2226a357ce46ap+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xb.ef6970bdd2eed371c70ad66ebe88p-112L 0x1.4a2cb33fe9ce81e2226a357ce46bp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xb.ef6970bdd2eed371c70ad66ecp-112L 0x1.4a2cb33fe9ce81e2226a357ce4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xb.ef6970bdd2eed371c70ad66ecp-112L 0x1.4a2cb33fe9ce81e2226a357ce48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xb.ef6970bdd2eed371c70ad66ebcp-112L 0x1.4a2cb33fe9ce81e2226a357ce4p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209ep-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0xb.ef6970bdd2eed371c70ad66ebcp-112L 0x1.4a2cb33fe9ce81e2226a357ce48p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb2421b64328p-28L 0x1.4a2cb37082d67c63cdd4c405b55cp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb2421b64328p-28L 0x1.4a2cb37082d67c63cdd4c405b55dp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb2421b64328p-28L 0x1.4a2cb37082d67c63cdd4c405b55cp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb2421b6433p-28L 0x1.4a2cb37082d67c63cdd4c405b55dp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb2421b64p-28L 0x1.4a2cb37082d67c63cdd4c405b5p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb2421b644p-28L 0x1.4a2cb37082d67c63cdd4c405b58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb2421b64p-28L 0x1.4a2cb37082d67c63cdd4c405b5p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a6p-4L : 0xa.8564574028330729bb2421b644p-28L 0x1.4a2cb37082d67c63cdd4c405b58p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec54145168d2d2a74p-28L 0x1.4a2cb329815c6756d41089c46a32p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec54145168d2d2a74p-28L 0x1.4a2cb329815c6756d41089c46a32p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec54145168d2d2a7p-28L 0x1.4a2cb329815c6756d41089c46a32p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec54145168d2d2a7p-28L 0x1.4a2cb329815c6756d41089c46a33p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec54145168d2d2cp-28L 0x1.4a2cb329815c6756d41089c46ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec54145168d2d2ap-28L 0x1.4a2cb329815c6756d41089c46ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec54145168d2d2ap-28L 0x1.4a2cb329815c6756d41089c46ap+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a5p-4L : -0x4.d9e5fb4d4cbec54145168d2d2ap-28L 0x1.4a2cb329815c6756d41089c46a8p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93678f286e57154e7dp-56L 0x1.4a2cb33fe9ce825f96cae256af7fp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93678f286e57154e7dp-56L 0x1.4a2cb33fe9ce825f96cae256af7fp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93678f286e57154e7dp-56L 0x1.4a2cb33fe9ce825f96cae256af7fp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93678f286e57154e7ep-56L 0x1.4a2cb33fe9ce825f96cae256af8p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93678f286e57154ep-56L 0x1.4a2cb33fe9ce825f96cae256afp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93678f286e57154e8p-56L 0x1.4a2cb33fe9ce825f96cae256af8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93678f286e57154ep-56L 0x1.4a2cb33fe9ce825f96cae256afp+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d76p-4L : 0x1.b28f5bee1f93678f286e57154e8p-56L 0x1.4a2cb33fe9ce825f96cae256af8p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27996c3b5bd3e307fcp-56L 0x1.4a2cb33fe9ce80278af970a2ab9fp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27996c3b5bd3e307fcp-56L 0x1.4a2cb33fe9ce80278af970a2ab9fp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27996c3b5bd3e307f8p-56L 0x1.4a2cb33fe9ce80278af970a2ab9fp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27996c3b5bd3e307f8p-56L 0x1.4a2cb33fe9ce80278af970a2abap+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27996c3b5bd3e308p-56L 0x1.4a2cb33fe9ce80278af970a2ab8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27996c3b5bd3e308p-56L 0x1.4a2cb33fe9ce80278af970a2ab8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27996c3b5bd3e306p-56L 0x1.4a2cb33fe9ce80278af970a2ab8p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d758p-4L : -0x5.fd15ce982f27996c3b5bd3e306p-56L 0x1.4a2cb33fe9ce80278af970a2acp+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b33267fdabc1c2c6535abcp-68L 0x1.4a2cb33fe9ce81e2382f28be74a7p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b33267fdabc1c2c6535abcp-68L 0x1.4a2cb33fe9ce81e2382f28be74a7p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b33267fdabc1c2c6535abcp-68L 0x1.4a2cb33fe9ce81e2382f28be74a7p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b33267fdabc1c2c6535acp-68L 0x1.4a2cb33fe9ce81e2382f28be74a8p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b33267fdabc1c2c6535ap-68L 0x1.4a2cb33fe9ce81e2382f28be748p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b33267fdabc1c2c6535ap-68L 0x1.4a2cb33fe9ce81e2382f28be748p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b33267fdabc1c2c6535ap-68L 0x1.4a2cb33fe9ce81e2382f28be748p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3cp-4L : 0x4.b680b7b33267fdabc1c2c6535cp-68L 0x1.4a2cb33fe9ce81e2382f28be75p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596b0de611f4cbc1f8fefp-68L 0x1.4a2cb33fe9ce81e1f12dae903e26p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596b0de611f4cbc1f8fefp-68L 0x1.4a2cb33fe9ce81e1f12dae903e27p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596b0de611f4cbc1f8fee8p-68L 0x1.4a2cb33fe9ce81e1f12dae903e26p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596b0de611f4cbc1f8fee8p-68L 0x1.4a2cb33fe9ce81e1f12dae903e27p+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596b0de611f4cbc1f9p-68L 0x1.4a2cb33fe9ce81e1f12dae903ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596b0de611f4cbc1f9p-68L 0x1.4a2cb33fe9ce81e1f12dae903ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596b0de611f4cbc1f8fcp-68L 0x1.4a2cb33fe9ce81e1f12dae903ep+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bp-4L : -0xa.a8c99d596b0de611f4cbc1f8fcp-68L 0x1.4a2cb33fe9ce81e1f12dae903e8p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0x8.522c516a630e63cd8d9e6cdd24fp-112L 0x1.4a2cb33fe9ce81e2226a357ce48dp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0x8.522c516a630e63cd8d9e6cdd24fp-112L 0x1.4a2cb33fe9ce81e2226a357ce48dp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0x8.522c516a630e63cd8d9e6cdd24e8p-112L 0x1.4a2cb33fe9ce81e2226a357ce48dp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f0dp-4L : -0x8.522c516a630e63cd8d9e6cdd24e8p-112L 0x1.4a2cb33fe9ce81e2226a357ce48ep+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x2.8ad909dadd2d96216cf99f4e7c98p-108L 0x1.4a2cb33fe9ce81e2226a357ce49bp+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x2.8ad909dadd2d96216cf99f4e7c98p-108L 0x1.4a2cb33fe9ce81e2226a357ce49bp+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x2.8ad909dadd2d96216cf99f4e7c98p-108L 0x1.4a2cb33fe9ce81e2226a357ce49bp+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x2.8ad909dadd2d96216cf99f4e7c9ap-108L 0x1.4a2cb33fe9ce81e2226a357ce49cp+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x2.8ad909dadd2d96216cf99f4e7cp-108L 0x1.4a2cb33fe9ce81e2226a357ce48p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x2.8ad909dadd2d96216cf99f4e7dp-108L 0x1.4a2cb33fe9ce81e2226a357ce48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x2.8ad909dadd2d96216cf99f4e7cp-108L 0x1.4a2cb33fe9ce81e2226a357ce48p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865f4p-4L : 0x2.8ad909dadd2d96216cf99f4e7dp-108L 0x1.4a2cb33fe9ce81e2226a357ce5p+0L : inexact-ok += clog downward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x1.4cf98b684a2fe2cd5914d6caff9bp-108L 0x1.4a2cb33fe9ce81e2226a357ce489p+0L : inexact-ok += clog tonearest ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x1.4cf98b684a2fe2cd5914d6caff9bp-108L 0x1.4a2cb33fe9ce81e2226a357ce489p+0L : inexact-ok += clog towardzero ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x1.4cf98b684a2fe2cd5914d6caff9ap-108L 0x1.4a2cb33fe9ce81e2226a357ce489p+0L : inexact-ok += clog upward ldbl-128 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x1.4cf98b684a2fe2cd5914d6caff9ap-108L 0x1.4a2cb33fe9ce81e2226a357ce48ap+0L : inexact-ok += clog downward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x1.4cf98b684a2fe2cd5914d6cbp-108L 0x1.4a2cb33fe9ce81e2226a357ce48p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x1.4cf98b684a2fe2cd5914d6caff8p-108L 0x1.4a2cb33fe9ce81e2226a357ce48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x1.4cf98b684a2fe2cd5914d6caff8p-108L 0x1.4a2cb33fe9ce81e2226a357ce48p+0L : inexact-ok += clog upward ldbl-128ibm 0x4.7017a2e36807acb1e5214b209cp-4L 0xf.5f4a550c9d75e3bb1839d865fp-4L : -0x1.4cf98b684a2fe2cd5914d6caff8p-108L 0x1.4a2cb33fe9ce81e2226a357ce5p+0L : inexact-ok +clog 0x148f818cb7a9258fca942ade2a0cap-113 0x18854a34780b8333ec53310ad7001p-113 += clog downward flt-32 0xa.47c0dp-4f 0xc.42a52p-4f : 0xa.9cd76p-28f 0xd.f7e06p-4f : inexact-ok += clog tonearest flt-32 0xa.47c0dp-4f 0xc.42a52p-4f : 0xa.9cd76p-28f 0xd.f7e06p-4f : inexact-ok += clog towardzero flt-32 0xa.47c0dp-4f 0xc.42a52p-4f : 0xa.9cd76p-28f 0xd.f7e06p-4f : inexact-ok += clog upward flt-32 0xa.47c0dp-4f 0xc.42a52p-4f : 0xa.9cd77p-28f 0xd.f7e07p-4f : inexact-ok += clog downward dbl-64 0xa.47c0dp-4 0xc.42a52p-4 : 0xa.9cd760f5f15p-28 0xd.f7e0652505f48p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0dp-4 0xc.42a52p-4 : 0xa.9cd760f5f1508p-28 0xd.f7e0652505f5p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0dp-4 0xc.42a52p-4 : 0xa.9cd760f5f15p-28 0xd.f7e0652505f48p-4 : inexact-ok += clog upward dbl-64 0xa.47c0dp-4 0xc.42a52p-4 : 0xa.9cd760f5f1508p-28 0xd.f7e0652505f5p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079bp-28L 0xd.f7e0652505f4d4dp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079cp-28L 0xd.f7e0652505f4d4ep-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079bp-28L 0xd.f7e0652505f4d4dp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079cp-28L 0xd.f7e0652505f4d4ep-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079bp-28L 0xd.f7e0652505f4d4dp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079cp-28L 0xd.f7e0652505f4d4ep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079bp-28L 0xd.f7e0652505f4d4dp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079cp-28L 0xd.f7e0652505f4d4ep-4L : inexact-ok += clog downward ldbl-128 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079ba5db27a0f4b08p-28L 0xd.f7e0652505f4d4d9fb98616a2ebp-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079ba5db27a0f4b08p-28L 0xd.f7e0652505f4d4d9fb98616a2ebp-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079ba5db27a0f4b08p-28L 0xd.f7e0652505f4d4d9fb98616a2ebp-4L : inexact-ok += clog upward ldbl-128 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079ba5db27a0f4b1p-28L 0xd.f7e0652505f4d4d9fb98616a2eb8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079ba5db27a0f48p-28L 0xd.f7e0652505f4d4d9fb98616a2cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079ba5db27a0f4cp-28L 0xd.f7e0652505f4d4d9fb98616a3p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079ba5db27a0f48p-28L 0xd.f7e0652505f4d4d9fb98616a2cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a52p-4L : 0xa.9cd760f5f15079ba5db27a0f4cp-28L 0xd.f7e0652505f4d4d9fb98616a3p-4L : inexact-ok += clog downward flt-32 0xa.47c0dp-4f 0xc.42a51p-4f : -0x1.a5cdb2p-28f 0xd.f7e05p-4f : inexact-ok += clog tonearest flt-32 0xa.47c0dp-4f 0xc.42a51p-4f : -0x1.a5cdbp-28f 0xd.f7e06p-4f : inexact-ok += clog towardzero flt-32 0xa.47c0dp-4f 0xc.42a51p-4f : -0x1.a5cdbp-28f 0xd.f7e05p-4f : inexact-ok += clog upward flt-32 0xa.47c0dp-4f 0xc.42a51p-4f : -0x1.a5cdbp-28f 0xd.f7e06p-4f : inexact-ok += clog downward dbl-64 0xa.47c0dp-4 0xc.42a51p-4 : -0x1.a5cdb02b6fe2bp-28 0xd.f7e05add452a8p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0dp-4 0xc.42a51p-4 : -0x1.a5cdb02b6fe2bp-28 0xd.f7e05add452a8p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0dp-4 0xc.42a51p-4 : -0x1.a5cdb02b6fe2ap-28 0xd.f7e05add452a8p-4 : inexact-ok += clog upward dbl-64 0xa.47c0dp-4 0xc.42a51p-4 : -0x1.a5cdb02b6fe2ap-28 0xd.f7e05add452bp-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82ep-28L 0xd.f7e05add452a977p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82cp-28L 0xd.f7e05add452a977p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82cp-28L 0xd.f7e05add452a977p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82cp-28L 0xd.f7e05add452a978p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82ep-28L 0xd.f7e05add452a977p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82cp-28L 0xd.f7e05add452a977p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82cp-28L 0xd.f7e05add452a977p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82cp-28L 0xd.f7e05add452a978p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82c632f19ff10afp-28L 0xd.f7e05add452a97744bc50a2a4188p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82c632f19ff10aep-28L 0xd.f7e05add452a97744bc50a2a4188p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82c632f19ff10aep-28L 0xd.f7e05add452a97744bc50a2a4188p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82c632f19ff10aep-28L 0xd.f7e05add452a97744bc50a2a419p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82c632f19ff11p-28L 0xd.f7e05add452a97744bc50a2a4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82c632f19ff108p-28L 0xd.f7e05add452a97744bc50a2a4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82c632f19ff108p-28L 0xd.f7e05add452a97744bc50a2a4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51p-4L : -0x1.a5cdb02b6fe2a82c632f19ff108p-28L 0xd.f7e05add452a97744bc50a2a44p-4L : inexact-ok += clog downward dbl-64 0xa.47c0dp-4 0xc.42a51a3c05c2p-4 : 0x6.31d7cf579d6f8p-28 0xd.f7e06170ae708p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0dp-4 0xc.42a51a3c05c2p-4 : 0x6.31d7cf579d6f8p-28 0xd.f7e06170ae71p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0dp-4 0xc.42a51a3c05c2p-4 : 0x6.31d7cf579d6f8p-28 0xd.f7e06170ae708p-4 : inexact-ok += clog upward dbl-64 0xa.47c0dp-4 0xc.42a51a3c05c2p-4 : 0x6.31d7cf579d6fcp-28 0xd.f7e06170ae71p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838p-28L 0xd.f7e06170ae70d74p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838p-28L 0xd.f7e06170ae70d75p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838p-28L 0xd.f7e06170ae70d74p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f8388p-28L 0xd.f7e06170ae70d75p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838p-28L 0xd.f7e06170ae70d74p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838p-28L 0xd.f7e06170ae70d75p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838p-28L 0xd.f7e06170ae70d74p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f8388p-28L 0xd.f7e06170ae70d75p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838145d09246c078p-28L 0xd.f7e06170ae70d74ed2083e5f043p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838145d09246c07cp-28L 0xd.f7e06170ae70d74ed2083e5f043p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838145d09246c078p-28L 0xd.f7e06170ae70d74ed2083e5f043p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838145d09246c07cp-28L 0xd.f7e06170ae70d74ed2083e5f0438p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838145d09246cp-28L 0xd.f7e06170ae70d74ed2083e5f04p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838145d09246cp-28L 0xd.f7e06170ae70d74ed2083e5f04p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838145d09246cp-28L 0xd.f7e06170ae70d74ed2083e5f04p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c2p-4L : 0x6.31d7cf579d6f838145d09246c2p-28L 0xd.f7e06170ae70d74ed2083e5f08p-4L : inexact-ok += clog downward dbl-64 0xa.47c0dp-4 0xc.42a51a3c05c18p-4 : 0x6.31d7cef58846cp-28 0xd.f7e06170ae708p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0dp-4 0xc.42a51a3c05c18p-4 : 0x6.31d7cef58847p-28 0xd.f7e06170ae708p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0dp-4 0xc.42a51a3c05c18p-4 : 0x6.31d7cef58846cp-28 0xd.f7e06170ae708p-4 : inexact-ok += clog upward dbl-64 0xa.47c0dp-4 0xc.42a51a3c05c18p-4 : 0x6.31d7cef58847p-28 0xd.f7e06170ae71p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd9p-28L 0xd.f7e06170ae70851p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd98p-28L 0xd.f7e06170ae70851p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd9p-28L 0xd.f7e06170ae70851p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd98p-28L 0xd.f7e06170ae70852p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd9p-28L 0xd.f7e06170ae70851p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd98p-28L 0xd.f7e06170ae70851p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd9p-28L 0xd.f7e06170ae70851p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd98p-28L 0xd.f7e06170ae70852p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd940dc0fda74bfp-28L 0xd.f7e06170ae708510cbc7ed4a47d8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd940dc0fda74bfp-28L 0xd.f7e06170ae708510cbc7ed4a47d8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd940dc0fda74bfp-28L 0xd.f7e06170ae708510cbc7ed4a47d8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd940dc0fda74bf4p-28L 0xd.f7e06170ae708510cbc7ed4a47ep-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd940dc0fda74ap-28L 0xd.f7e06170ae708510cbc7ed4a44p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd940dc0fda74cp-28L 0xd.f7e06170ae708510cbc7ed4a48p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd940dc0fda74ap-28L 0xd.f7e06170ae708510cbc7ed4a44p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c18p-4L : 0x6.31d7cef58846fd940dc0fda74cp-28L 0xd.f7e06170ae708510cbc7ed4a48p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c8p-28L 0xd.f7e06170ae7095cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c8p-28L 0xd.f7e06170ae7095cp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c8p-28L 0xd.f7e06170ae7095cp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338dp-28L 0xd.f7e06170ae7095dp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c8p-28L 0xd.f7e06170ae7095cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c8p-28L 0xd.f7e06170ae7095cp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c8p-28L 0xd.f7e06170ae7095cp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338dp-28L 0xd.f7e06170ae7095dp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c83d24364a8488p-28L 0xd.f7e06170ae7095c5650cfdc27e68p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c83d24364a848cp-28L 0xd.f7e06170ae7095c5650cfdc27e7p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c83d24364a8488p-28L 0xd.f7e06170ae7095c5650cfdc27e68p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c83d24364a848cp-28L 0xd.f7e06170ae7095c5650cfdc27e7p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c83d24364a84p-28L 0xd.f7e06170ae7095c5650cfdc27cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c83d24364a84p-28L 0xd.f7e06170ae7095c5650cfdc28p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c83d24364a84p-28L 0xd.f7e06170ae7095c5650cfdc27cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c19ap-4L : 0x6.31d7cf09749338c83d24364a86p-28L 0xd.f7e06170ae7095c5650cfdc28p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093bp-28L 0xd.f7e06170ae7095bp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b8p-28L 0xd.f7e06170ae7095cp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093bp-28L 0xd.f7e06170ae7095bp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b8p-28L 0xd.f7e06170ae7095cp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093bp-28L 0xd.f7e06170ae7095bp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b8p-28L 0xd.f7e06170ae7095cp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093bp-28L 0xd.f7e06170ae7095bp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b8p-28L 0xd.f7e06170ae7095cp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b77f7d34514f38p-28L 0xd.f7e06170ae7095bb1d4c35b85bdp-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b77f7d34514f38p-28L 0xd.f7e06170ae7095bb1d4c35b85bd8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b77f7d34514f38p-28L 0xd.f7e06170ae7095bb1d4c35b85bdp-4L : inexact-ok += clog upward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b77f7d34514f3cp-28L 0xd.f7e06170ae7095bb1d4c35b85bd8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b77f7d34514ep-28L 0xd.f7e06170ae7095bb1d4c35b858p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b77f7d34515p-28L 0xd.f7e06170ae7095bb1d4c35b85cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b77f7d34514ep-28L 0xd.f7e06170ae7095bb1d4c35b858p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199fp-4L : 0x6.31d7cf09685093b77f7d34515p-28L 0xd.f7e06170ae7095bb1d4c35b85cp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x6.31d7cf096d0971441dfcc108ade4p-28L 0xd.f7e06170ae7095bf12ee5e1db3cp-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x6.31d7cf096d0971441dfcc108ade8p-28L 0xd.f7e06170ae7095bf12ee5e1db3cp-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x6.31d7cf096d0971441dfcc108ade4p-28L 0xd.f7e06170ae7095bf12ee5e1db3cp-4L : inexact-ok += clog upward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x6.31d7cf096d0971441dfcc108ade8p-28L 0xd.f7e06170ae7095bf12ee5e1db3c8p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.31d7cf096d0971441dffcb909f8cp-28L 0xd.f7e06170ae7095bf12ee5e1db65p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.31d7cf096d0971441dffcb909f8cp-28L 0xd.f7e06170ae7095bf12ee5e1db65p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.31d7cf096d0971441dffcb909f8cp-28L 0xd.f7e06170ae7095bf12ee5e1db65p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.31d7cf096d0971441dffcb909f9p-28L 0xd.f7e06170ae7095bf12ee5e1db658p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.31d7cf096d0971441dffcb909ep-28L 0xd.f7e06170ae7095bf12ee5e1db4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.31d7cf096d0971441dffcb90ap-28L 0xd.f7e06170ae7095bf12ee5e1db8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.31d7cf096d0971441dffcb909ep-28L 0xd.f7e06170ae7095bf12ee5e1db4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.31d7cf096d0971441dffcb90ap-28L 0xd.f7e06170ae7095bf12ee5e1db8p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.31d7cf096d0971441dfcbae75b5cp-28L 0xd.f7e06170ae7095bf12ee5e1db3b8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.31d7cf096d0971441dfcbae75b6p-28L 0xd.f7e06170ae7095bf12ee5e1db3cp-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.31d7cf096d0971441dfcbae75b5cp-28L 0xd.f7e06170ae7095bf12ee5e1db3b8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.31d7cf096d0971441dfcbae75b6p-28L 0xd.f7e06170ae7095bf12ee5e1db3cp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.31d7cf096d0971441dfcbae75ap-28L 0xd.f7e06170ae7095bf12ee5e1dbp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.31d7cf096d0971441dfcbae75cp-28L 0xd.f7e06170ae7095bf12ee5e1db4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.31d7cf096d0971441dfcbae75ap-28L 0xd.f7e06170ae7095bf12ee5e1dbp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0dp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.31d7cf096d0971441dfcbae75cp-28L 0xd.f7e06170ae7095bf12ee5e1db4p-4L : inexact-ok += clog downward flt-32 0xa.47c0cp-4f 0xc.42a52p-4f : 0x5.5169f8p-32f 0xd.f7e07p-4f : inexact-ok += clog tonearest flt-32 0xa.47c0cp-4f 0xc.42a52p-4f : 0x5.516ap-32f 0xd.f7e07p-4f : inexact-ok += clog towardzero flt-32 0xa.47c0cp-4f 0xc.42a52p-4f : 0x5.5169f8p-32f 0xd.f7e07p-4f : inexact-ok += clog upward flt-32 0xa.47c0cp-4f 0xc.42a52p-4f : 0x5.516ap-32f 0xd.f7e08p-4f : inexact-ok += clog downward dbl-64 0xa.47c0cp-4 0xc.42a52p-4 : 0x5.5169ffe3b7f7cp-32 0xd.f7e07167ab0cp-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0cp-4 0xc.42a52p-4 : 0x5.5169ffe3b7f7cp-32 0xd.f7e07167ab0c8p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0cp-4 0xc.42a52p-4 : 0x5.5169ffe3b7f7cp-32 0xd.f7e07167ab0cp-4 : inexact-ok += clog upward dbl-64 0xa.47c0cp-4 0xc.42a52p-4 : 0x5.5169ffe3b7f8p-32 0xd.f7e07167ab0c8p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0ep-32L 0xd.f7e07167ab0c71dp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e8p-32L 0xd.f7e07167ab0c71dp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0ep-32L 0xd.f7e07167ab0c71dp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e8p-32L 0xd.f7e07167ab0c71ep-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0ep-32L 0xd.f7e07167ab0c71dp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e8p-32L 0xd.f7e07167ab0c71dp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0ep-32L 0xd.f7e07167ab0c71dp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e8p-32L 0xd.f7e07167ab0c71ep-4L : inexact-ok += clog downward ldbl-128 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e488e23887c9b8p-32L 0xd.f7e07167ab0c71d094648d36a488p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e488e23887c9bcp-32L 0xd.f7e07167ab0c71d094648d36a488p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e488e23887c9b8p-32L 0xd.f7e07167ab0c71d094648d36a488p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e488e23887c9bcp-32L 0xd.f7e07167ab0c71d094648d36a49p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e488e23887c8p-32L 0xd.f7e07167ab0c71d094648d36a4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e488e23887cap-32L 0xd.f7e07167ab0c71d094648d36a4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e488e23887c8p-32L 0xd.f7e07167ab0c71d094648d36a4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a52p-4L : 0x5.5169ffe3b7f7c0e488e23887cap-32L 0xd.f7e07167ab0c71d094648d36a8p-4L : inexact-ok += clog downward flt-32 0xa.47c0cp-4f 0xc.42a51p-4f : -0xb.ed8e9p-28f 0xd.f7e06p-4f : inexact-ok += clog tonearest flt-32 0xa.47c0cp-4f 0xc.42a51p-4f : -0xb.ed8e8p-28f 0xd.f7e06p-4f : inexact-ok += clog towardzero flt-32 0xa.47c0cp-4f 0xc.42a51p-4f : -0xb.ed8e8p-28f 0xd.f7e06p-4f : inexact-ok += clog upward flt-32 0xa.47c0cp-4f 0xc.42a51p-4f : -0xb.ed8e8p-28f 0xd.f7e07p-4f : inexact-ok += clog downward dbl-64 0xa.47c0cp-4 0xc.42a51p-4 : -0xb.ed8e80e46aff8p-28 0xd.f7e0671fea448p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0cp-4 0xc.42a51p-4 : -0xb.ed8e80e46aff8p-28 0xd.f7e0671fea45p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0cp-4 0xc.42a51p-4 : -0xb.ed8e80e46affp-28 0xd.f7e0671fea448p-4 : inexact-ok += clog upward dbl-64 0xa.47c0cp-4 0xc.42a51p-4 : -0xb.ed8e80e46affp-28 0xd.f7e0671fea45p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e6p-28L 0xd.f7e0671fea44fe8p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e5p-28L 0xd.f7e0671fea44fe8p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e5p-28L 0xd.f7e0671fea44fe8p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e5p-28L 0xd.f7e0671fea44fe9p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e6p-28L 0xd.f7e0671fea44fe8p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e5p-28L 0xd.f7e0671fea44fe8p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e5p-28L 0xd.f7e0671fea44fe8p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e5p-28L 0xd.f7e0671fea44fe9p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e55c2fc08f510a8p-28L 0xd.f7e0671fea44fe855fb253866208p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e55c2fc08f510ap-28L 0xd.f7e0671fea44fe855fb25386621p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e55c2fc08f510ap-28L 0xd.f7e0671fea44fe855fb253866208p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e55c2fc08f510ap-28L 0xd.f7e0671fea44fe855fb25386621p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e55c2fc08f514p-28L 0xd.f7e0671fea44fe855fb253866p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e55c2fc08f51p-28L 0xd.f7e0671fea44fe855fb2538664p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e55c2fc08f51p-28L 0xd.f7e0671fea44fe855fb253866p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51p-4L : -0xb.ed8e80e46aff6e55c2fc08f51p-28L 0xd.f7e0671fea44fe855fb2538664p-4L : inexact-ok += clog downward dbl-64 0xa.47c0cp-4 0xc.42a51a3c05c2p-4 : -0x4.15e8f74d77eb8p-28 0xd.f7e06db35389p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0cp-4 0xc.42a51a3c05c2p-4 : -0x4.15e8f74d77eb8p-28 0xd.f7e06db353898p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0cp-4 0xc.42a51a3c05c2p-4 : -0x4.15e8f74d77eb4p-28 0xd.f7e06db35389p-4 : inexact-ok += clog upward dbl-64 0xa.47c0cp-4 0xc.42a51a3c05c2p-4 : -0x4.15e8f74d77eb4p-28 0xd.f7e06db353898p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb6ap-28L 0xd.f7e06db35389759p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f8p-28L 0xd.f7e06db3538975ap-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f8p-28L 0xd.f7e06db35389759p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f8p-28L 0xd.f7e06db3538975ap-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb6ap-28L 0xd.f7e06db35389759p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f8p-28L 0xd.f7e06db3538975ap-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f8p-28L 0xd.f7e06db35389759p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f8p-28L 0xd.f7e06db3538975ap-4L : inexact-ok += clog downward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f9e806d43495a8p-28L 0xd.f7e06db353897598768f830920cp-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f9e806d43495a4p-28L 0xd.f7e06db353897598768f830920cp-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f9e806d43495a4p-28L 0xd.f7e06db353897598768f830920cp-4L : inexact-ok += clog upward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f9e806d43495a4p-28L 0xd.f7e06db353897598768f830920c8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f9e806d43496p-28L 0xd.f7e06db353897598768f83092p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f9e806d43496p-28L 0xd.f7e06db353897598768f83092p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f9e806d43494p-28L 0xd.f7e06db353897598768f83092p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c2p-4L : -0x4.15e8f74d77eb69f9e806d43494p-28L 0xd.f7e06db353897598768f830924p-4L : inexact-ok += clog downward dbl-64 0xa.47c0cp-4 0xc.42a51a3c05c18p-4 : -0x4.15e8f7af8d148p-28 0xd.f7e06db35389p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0cp-4 0xc.42a51a3c05c18p-4 : -0x4.15e8f7af8d148p-28 0xd.f7e06db35389p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0cp-4 0xc.42a51a3c05c18p-4 : -0x4.15e8f7af8d144p-28 0xd.f7e06db35389p-4 : inexact-ok += clog upward dbl-64 0xa.47c0cp-4 0xc.42a51a3c05c18p-4 : -0x4.15e8f7af8d144p-28 0xd.f7e06db353898p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146df8p-28L 0xd.f7e06db35389235p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146dfp-28L 0xd.f7e06db35389236p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146dfp-28L 0xd.f7e06db35389235p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146dfp-28L 0xd.f7e06db35389236p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146df8p-28L 0xd.f7e06db35389235p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146dfp-28L 0xd.f7e06db35389236p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146dfp-28L 0xd.f7e06db35389235p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146dfp-28L 0xd.f7e06db35389236p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146df14a55b1bce0c8p-28L 0xd.f7e06db35389235a706582c84f48p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146df14a55b1bce0c8p-28L 0xd.f7e06db35389235a706582c84f5p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146df14a55b1bce0c4p-28L 0xd.f7e06db35389235a706582c84f48p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146df14a55b1bce0c4p-28L 0xd.f7e06db35389235a706582c84f5p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146df14a55b1bce2p-28L 0xd.f7e06db35389235a706582c84cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146df14a55b1bcep-28L 0xd.f7e06db35389235a706582c85p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146df14a55b1bcep-28L 0xd.f7e06db35389235a706582c84cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c18p-4L : -0x4.15e8f7af8d146df14a55b1bcep-28L 0xd.f7e06db35389235a706582c85p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c81928p-28L 0xd.f7e06db3538934p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c8192p-28L 0xd.f7e06db35389341p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c8192p-28L 0xd.f7e06db3538934p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c8192p-28L 0xd.f7e06db35389341p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c81928p-28L 0xd.f7e06db3538934p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c8192p-28L 0xd.f7e06db35389341p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c8192p-28L 0xd.f7e06db3538934p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c8192p-28L 0xd.f7e06db35389341p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c819230a5d9e4a5c08p-28L 0xd.f7e06db35389340f09a60ad57a28p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c819230a5d9e4a5c08p-28L 0xd.f7e06db35389340f09a60ad57a28p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c819230a5d9e4a5c04p-28L 0xd.f7e06db35389340f09a60ad57a28p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c819230a5d9e4a5c04p-28L 0xd.f7e06db35389340f09a60ad57a3p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c819230a5d9e4a5ep-28L 0xd.f7e06db35389340f09a60ad578p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c819230a5d9e4a5cp-28L 0xd.f7e06db35389340f09a60ad57cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c819230a5d9e4a5cp-28L 0xd.f7e06db35389340f09a60ad578p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c19ap-4L : -0x4.15e8f79ba0c819230a5d9e4a5cp-28L 0xd.f7e06db35389340f09a60ad57cp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe48p-28L 0xd.f7e06db3538934p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe4p-28L 0xd.f7e06db3538934p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe4p-28L 0xd.f7e06db3538934p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe4p-28L 0xd.f7e06db35389341p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe48p-28L 0xd.f7e06db3538934p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe4p-28L 0xd.f7e06db3538934p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe4p-28L 0xd.f7e06db3538934p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe4p-28L 0xd.f7e06db35389341p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe438949e82cae78p-28L 0xd.f7e06db353893404c1e54595721p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe438949e82cae74p-28L 0xd.f7e06db353893404c1e54595721p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe438949e82cae74p-28L 0xd.f7e06db353893404c1e54595721p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe438949e82cae74p-28L 0xd.f7e06db353893404c1e545957218p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe438949e82cbp-28L 0xd.f7e06db353893404c1e545957p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe438949e82caep-28L 0xd.f7e06db353893404c1e5459574p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe438949e82caep-28L 0xd.f7e06db353893404c1e545957p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199fp-4L : -0x4.15e8f79bad0abe438949e82caep-28L 0xd.f7e06db353893404c1e5459574p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x4.15e8f79ba851e0b0d95aef8309e8p-28L 0xd.f7e06db353893408b7876ce7bf9p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x4.15e8f79ba851e0b0d95aef8309e4p-28L 0xd.f7e06db353893408b7876ce7bf9p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x4.15e8f79ba851e0b0d95aef8309e4p-28L 0xd.f7e06db353893408b7876ce7bf9p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x4.15e8f79ba851e0b0d95aef8309e4p-28L 0xd.f7e06db353893408b7876ce7bf98p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x4.15e8f79ba851e0b0d957e4fb1458p-28L 0xd.f7e06db353893408b7876ce7c218p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x4.15e8f79ba851e0b0d957e4fb1454p-28L 0xd.f7e06db353893408b7876ce7c22p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x4.15e8f79ba851e0b0d957e4fb1454p-28L 0xd.f7e06db353893408b7876ce7c218p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x4.15e8f79ba851e0b0d957e4fb1454p-28L 0xd.f7e06db353893408b7876ce7c22p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x4.15e8f79ba851e0b0d957e4fb16p-28L 0xd.f7e06db353893408b7876ce7cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x4.15e8f79ba851e0b0d957e4fb14p-28L 0xd.f7e06db353893408b7876ce7c4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x4.15e8f79ba851e0b0d957e4fb14p-28L 0xd.f7e06db353893408b7876ce7cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x4.15e8f79ba851e0b0d957e4fb14p-28L 0xd.f7e06db353893408b7876ce7c4p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x4.15e8f79ba851e0b0d95af5a45c78p-28L 0xd.f7e06db353893408b7876ce7bf88p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x4.15e8f79ba851e0b0d95af5a45c74p-28L 0xd.f7e06db353893408b7876ce7bf9p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x4.15e8f79ba851e0b0d95af5a45c74p-28L 0xd.f7e06db353893408b7876ce7bf88p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x4.15e8f79ba851e0b0d95af5a45c74p-28L 0xd.f7e06db353893408b7876ce7bf9p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x4.15e8f79ba851e0b0d95af5a45ep-28L 0xd.f7e06db353893408b7876ce7bcp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x4.15e8f79ba851e0b0d95af5a45cp-28L 0xd.f7e06db353893408b7876ce7cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x4.15e8f79ba851e0b0d95af5a45cp-28L 0xd.f7e06db353893408b7876ce7bcp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0cp-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x4.15e8f79ba851e0b0d95af5a45cp-28L 0xd.f7e06db353893408b7876ce7cp-4L : inexact-ok += clog downward dbl-64 0xa.47c0c65bd493p-4 0xc.42a52p-4 : 0x4.6aff957c56cc4p-28 0xd.f7e06c884f33p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0c65bd493p-4 0xc.42a52p-4 : 0x4.6aff957c56cc4p-28 0xd.f7e06c884f33p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0c65bd493p-4 0xc.42a52p-4 : 0x4.6aff957c56cc4p-28 0xd.f7e06c884f33p-4 : inexact-ok += clog upward dbl-64 0xa.47c0c65bd493p-4 0xc.42a52p-4 : 0x4.6aff957c56cc8p-28 0xd.f7e06c884f338p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc412p-28L 0xd.f7e06c884f330dfp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4128p-28L 0xd.f7e06c884f330dfp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc412p-28L 0xd.f7e06c884f330dfp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4128p-28L 0xd.f7e06c884f330ep-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc412p-28L 0xd.f7e06c884f330dfp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4128p-28L 0xd.f7e06c884f330dfp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc412p-28L 0xd.f7e06c884f330dfp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4128p-28L 0xd.f7e06c884f330ep-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4124567ad4b285ecp-28L 0xd.f7e06c884f330df1867964658a08p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4124567ad4b285ecp-28L 0xd.f7e06c884f330df1867964658a1p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4124567ad4b285ecp-28L 0xd.f7e06c884f330df1867964658a08p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4124567ad4b285fp-28L 0xd.f7e06c884f330df1867964658a1p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4124567ad4b284p-28L 0xd.f7e06c884f330df18679646588p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4124567ad4b286p-28L 0xd.f7e06c884f330df1867964658cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4124567ad4b284p-28L 0xd.f7e06c884f330df18679646588p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a52p-4L : 0x4.6aff957c56cc4124567ad4b286p-28L 0xd.f7e06c884f330df1867964658cp-4L : inexact-ok += clog downward dbl-64 0xa.47c0c65bd493p-4 0xc.42a51p-4 : -0x7.d7a585236928cp-28 0xd.f7e062408e6ap-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0c65bd493p-4 0xc.42a51p-4 : -0x7.d7a5852369288p-28 0xd.f7e062408e6a8p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0c65bd493p-4 0xc.42a51p-4 : -0x7.d7a5852369288p-28 0xd.f7e062408e6ap-4 : inexact-ok += clog upward dbl-64 0xa.47c0c65bd493p-4 0xc.42a51p-4 : -0x7.d7a5852369288p-28 0xd.f7e062408e6a8p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa8p-28L 0xd.f7e062408e6a7edp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa8p-28L 0xd.f7e062408e6a7eep-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fap-28L 0xd.f7e062408e6a7edp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fap-28L 0xd.f7e062408e6a7eep-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa8p-28L 0xd.f7e062408e6a7edp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa8p-28L 0xd.f7e062408e6a7eep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fap-28L 0xd.f7e062408e6a7edp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fap-28L 0xd.f7e062408e6a7eep-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa665bed80c67ap-28L 0xd.f7e062408e6a7ed9da2cc04a8f2p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa665bed80c67ap-28L 0xd.f7e062408e6a7ed9da2cc04a8f2p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa665bed80c679cp-28L 0xd.f7e062408e6a7ed9da2cc04a8f2p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa665bed80c679cp-28L 0xd.f7e062408e6a7ed9da2cc04a8f28p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa665bed80c68p-28L 0xd.f7e062408e6a7ed9da2cc04a8cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa665bed80c68p-28L 0xd.f7e062408e6a7ed9da2cc04a9p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa665bed80c66p-28L 0xd.f7e062408e6a7ed9da2cc04a8cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51p-4L : -0x7.d7a5852369289fa665bed80c66p-28L 0xd.f7e062408e6a7ed9da2cc04a9p-4L : inexact-ok += clog downward dbl-64 0xa.47c0c65bd493p-4 0xc.42a51a3c05c2p-4 : 0x7.23cb280b79b64p-56 0xd.f7e068d3f7af8p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0c65bd493p-4 0xc.42a51a3c05c2p-4 : 0x7.23cb280b79b64p-56 0xd.f7e068d3f7af8p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0c65bd493p-4 0xc.42a51a3c05c2p-4 : 0x7.23cb280b79b64p-56 0xd.f7e068d3f7af8p-4 : inexact-ok += clog upward dbl-64 0xa.47c0c65bd493p-4 0xc.42a51a3c05c2p-4 : 0x7.23cb280b79b68p-56 0xd.f7e068d3f7bp-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64dp-56L 0xd.f7e068d3f7afab7p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d08p-56L 0xd.f7e068d3f7afab7p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64dp-56L 0xd.f7e068d3f7afab7p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d08p-56L 0xd.f7e068d3f7afab8p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64dp-56L 0xd.f7e068d3f7afab7p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d08p-56L 0xd.f7e068d3f7afab7p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64dp-56L 0xd.f7e068d3f7afab7p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d08p-56L 0xd.f7e068d3f7afab8p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d05e2a133ac486p-56L 0xd.f7e068d3f7afab755ff0a6f9dbcp-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d05e2a133ac486p-56L 0xd.f7e068d3f7afab755ff0a6f9dbcp-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d05e2a133ac486p-56L 0xd.f7e068d3f7afab755ff0a6f9dbcp-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d05e2a133ac4864p-56L 0xd.f7e068d3f7afab755ff0a6f9dbc8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d05e2a133ac48p-56L 0xd.f7e068d3f7afab755ff0a6f9d8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d05e2a133ac48p-56L 0xd.f7e068d3f7afab755ff0a6f9dcp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d05e2a133ac48p-56L 0xd.f7e068d3f7afab755ff0a6f9d8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c2p-4L : 0x7.23cb280b79b64d05e2a133ac4ap-56L 0xd.f7e068d3f7afab755ff0a6f9dcp-4L : inexact-ok += clog downward dbl-64 0xa.47c0c65bd493p-4 0xc.42a51a3c05c18p-4 : 0x1.02789aed76d59p-56 0xd.f7e068d3f7afp-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0c65bd493p-4 0xc.42a51a3c05c18p-4 : 0x1.02789aed76d5ap-56 0xd.f7e068d3f7af8p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0c65bd493p-4 0xc.42a51a3c05c18p-4 : 0x1.02789aed76d59p-56 0xd.f7e068d3f7afp-4 : inexact-ok += clog upward dbl-64 0xa.47c0c65bd493p-4 0xc.42a51a3c05c18p-4 : 0x1.02789aed76d5ap-56 0xd.f7e068d3f7af8p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efap-56L 0xd.f7e068d3f7af593p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efcp-56L 0xd.f7e068d3f7af593p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efap-56L 0xd.f7e068d3f7af593p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efcp-56L 0xd.f7e068d3f7af594p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efap-56L 0xd.f7e068d3f7af593p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efcp-56L 0xd.f7e068d3f7af593p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efap-56L 0xd.f7e068d3f7af593p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efcp-56L 0xd.f7e068d3f7af594p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efb08aee7c01773p-56L 0xd.f7e068d3f7af593759bdc855466p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efb08aee7c01773p-56L 0xd.f7e068d3f7af593759bdc855466p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efb08aee7c01773p-56L 0xd.f7e068d3f7af593759bdc855466p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efb08aee7c01774p-56L 0xd.f7e068d3f7af593759bdc8554668p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efb08aee7c017p-56L 0xd.f7e068d3f7af593759bdc85544p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efb08aee7c0178p-56L 0xd.f7e068d3f7af593759bdc85548p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efb08aee7c017p-56L 0xd.f7e068d3f7af593759bdc85544p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c18p-4L : 0x1.02789aed76d59efb08aee7c0178p-56L 0xd.f7e068d3f7af593759bdc85548p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433cp-56L 0xd.f7e068d3f7af69ep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433cp-56L 0xd.f7e068d3f7af69fp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433cp-56L 0xd.f7e068d3f7af69ep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b434p-56L 0xd.f7e068d3f7af69fp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433cp-56L 0xd.f7e068d3f7af69ep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433cp-56L 0xd.f7e068d3f7af69fp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433cp-56L 0xd.f7e068d3f7af69ep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b434p-56L 0xd.f7e068d3f7af69fp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433c6a4860199242p-56L 0xd.f7e068d3f7af69ebf3001d8eb508p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433c6a4860199244p-56L 0xd.f7e068d3f7af69ebf3001d8eb508p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433c6a4860199242p-56L 0xd.f7e068d3f7af69ebf3001d8eb508p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433c6a4860199244p-56L 0xd.f7e068d3f7af69ebf3001d8eb51p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433c6a48601992p-56L 0xd.f7e068d3f7af69ebf3001d8eb4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433c6a48601992p-56L 0xd.f7e068d3f7af69ebf3001d8eb4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433c6a48601992p-56L 0xd.f7e068d3f7af69ebf3001d8eb4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c19ap-4L : 0x2.413d5f978f6b433c6a48601993p-56L 0xd.f7e068d3f7af69ebf3001d8eb8p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae724p-56L 0xd.f7e068d3f7af69ep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae728p-56L 0xd.f7e068d3f7af69ep-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae724p-56L 0xd.f7e068d3f7af69ep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae728p-56L 0xd.f7e068d3f7af69fp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae724p-56L 0xd.f7e068d3f7af69ep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae728p-56L 0xd.f7e068d3f7af69ep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae724p-56L 0xd.f7e068d3f7af69ep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae728p-56L 0xd.f7e068d3f7af69fp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae7263ed6e1f45018p-56L 0xd.f7e068d3f7af69e1ab3f5732e078p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae7263ed6e1f4501ap-56L 0xd.f7e068d3f7af69e1ab3f5732e078p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae7263ed6e1f45018p-56L 0xd.f7e068d3f7af69e1ab3f5732e078p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae7263ed6e1f4501ap-56L 0xd.f7e068d3f7af69e1ab3f5732e08p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae7263ed6e1f45p-56L 0xd.f7e068d3f7af69e1ab3f5732ep-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae7263ed6e1f45p-56L 0xd.f7e068d3f7af69e1ab3f5732ep-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae7263ed6e1f45p-56L 0xd.f7e068d3f7af69e1ab3f5732ep-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199fp-4L : 0x2.40793545ebaae7263ed6e1f451p-56L 0xd.f7e068d3f7af69e1ab3f5732e4p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x2.40c4c31ef013fd95bb235e85cbe6p-56L 0xd.f7e068d3f7af69e5a0e17ef27c7p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x2.40c4c31ef013fd95bb235e85cbe6p-56L 0xd.f7e068d3f7af69e5a0e17ef27c78p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x2.40c4c31ef013fd95bb235e85cbe6p-56L 0xd.f7e068d3f7af69e5a0e17ef27c7p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x2.40c4c31ef013fd95bb235e85cbe8p-56L 0xd.f7e068d3f7af69e5a0e17ef27c78p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x2.40c4c31ef0142e3e3a637cbca366p-56L 0xd.f7e068d3f7af69e5a0e17ef27fp-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x2.40c4c31ef0142e3e3a637cbca366p-56L 0xd.f7e068d3f7af69e5a0e17ef27fp-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x2.40c4c31ef0142e3e3a637cbca366p-56L 0xd.f7e068d3f7af69e5a0e17ef27fp-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x2.40c4c31ef0142e3e3a637cbca368p-56L 0xd.f7e068d3f7af69e5a0e17ef27f08p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x2.40c4c31ef0142e3e3a637cbca3p-56L 0xd.f7e068d3f7af69e5a0e17ef27cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x2.40c4c31ef0142e3e3a637cbca3p-56L 0xd.f7e068d3f7af69e5a0e17ef28p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x2.40c4c31ef0142e3e3a637cbca3p-56L 0xd.f7e068d3f7af69e5a0e17ef27cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x2.40c4c31ef0142e3e3a637cbca4p-56L 0xd.f7e068d3f7af69e5a0e17ef28p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x2.40c4c31ef013fd33a5fa8ca59ddap-56L 0xd.f7e068d3f7af69e5a0e17ef27c7p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x2.40c4c31ef013fd33a5fa8ca59ddcp-56L 0xd.f7e068d3f7af69e5a0e17ef27c7p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x2.40c4c31ef013fd33a5fa8ca59ddap-56L 0xd.f7e068d3f7af69e5a0e17ef27c7p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x2.40c4c31ef013fd33a5fa8ca59ddcp-56L 0xd.f7e068d3f7af69e5a0e17ef27c78p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x2.40c4c31ef013fd33a5fa8ca59dp-56L 0xd.f7e068d3f7af69e5a0e17ef27cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x2.40c4c31ef013fd33a5fa8ca59ep-56L 0xd.f7e068d3f7af69e5a0e17ef27cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x2.40c4c31ef013fd33a5fa8ca59dp-56L 0xd.f7e068d3f7af69e5a0e17ef27cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd493p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x2.40c4c31ef013fd33a5fa8ca59ep-56L 0xd.f7e068d3f7af69e5a0e17ef28p-4L : inexact-ok += clog downward dbl-64 0xa.47c0c65bd4928p-4 0xc.42a52p-4 : 0x4.6aff952a18c6p-28 0xd.f7e06c884f33p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0c65bd4928p-4 0xc.42a52p-4 : 0x4.6aff952a18c64p-28 0xd.f7e06c884f338p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0c65bd4928p-4 0xc.42a52p-4 : 0x4.6aff952a18c6p-28 0xd.f7e06c884f33p-4 : inexact-ok += clog upward dbl-64 0xa.47c0c65bd4928p-4 0xc.42a52p-4 : 0x4.6aff952a18c64p-28 0xd.f7e06c884f338p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bbp-28L 0xd.f7e06c884f337p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bbp-28L 0xd.f7e06c884f337p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bbp-28L 0xd.f7e06c884f337p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bb8p-28L 0xd.f7e06c884f33701p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bbp-28L 0xd.f7e06c884f337p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bbp-28L 0xd.f7e06c884f337p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bbp-28L 0xd.f7e06c884f337p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bb8p-28L 0xd.f7e06c884f33701p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bb0ae3bfbdb61c8p-28L 0xd.f7e06c884f337006af4339fb308p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bb0ae3bfbdb61ccp-28L 0xd.f7e06c884f337006af4339fb308p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bb0ae3bfbdb61c8p-28L 0xd.f7e06c884f337006af4339fb308p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bb0ae3bfbdb61ccp-28L 0xd.f7e06c884f337006af4339fb3088p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bb0ae3bfbdb6p-28L 0xd.f7e06c884f337006af4339fb3p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bb0ae3bfbdb62p-28L 0xd.f7e06c884f337006af4339fb3p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bb0ae3bfbdb6p-28L 0xd.f7e06c884f337006af4339fb3p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a52p-4L : 0x4.6aff952a18c63bb0ae3bfbdb62p-28L 0xd.f7e06c884f337006af4339fb34p-4L : inexact-ok += clog downward dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51p-4 : -0x7.d7a58575a72f4p-28 0xd.f7e062408e6a8p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51p-4 : -0x7.d7a58575a72f4p-28 0xd.f7e062408e6bp-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51p-4 : -0x7.d7a58575a72fp-28 0xd.f7e062408e6a8p-4 : inexact-ok += clog upward dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51p-4 : -0x7.d7a58575a72fp-28 0xd.f7e062408e6bp-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f2328p-28L 0xd.f7e062408e6ae0ep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f2328p-28L 0xd.f7e062408e6ae0fp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f232p-28L 0xd.f7e062408e6ae0ep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f232p-28L 0xd.f7e062408e6ae0fp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f2328p-28L 0xd.f7e062408e6ae0ep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f2328p-28L 0xd.f7e062408e6ae0fp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f232p-28L 0xd.f7e062408e6ae0ep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f232p-28L 0xd.f7e062408e6ae0fp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f232438691002730cp-28L 0xd.f7e062408e6ae0ef030ce6b4256p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f2324386910027308p-28L 0xd.f7e062408e6ae0ef030ce6b4256p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f2324386910027308p-28L 0xd.f7e062408e6ae0ef030ce6b4256p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f2324386910027308p-28L 0xd.f7e062408e6ae0ef030ce6b42568p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f23243869100274p-28L 0xd.f7e062408e6ae0ef030ce6b424p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f23243869100274p-28L 0xd.f7e062408e6ae0ef030ce6b424p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f23243869100272p-28L 0xd.f7e062408e6ae0ef030ce6b424p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51p-4L : -0x7.d7a58575a72f23243869100272p-28L 0xd.f7e062408e6ae0ef030ce6b428p-4L : inexact-ok += clog downward dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51a3c05c2p-4 : 0x1.ffeac4dd8f6d1p-56 0xd.f7e068d3f7bp-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51a3c05c2p-4 : 0x1.ffeac4dd8f6d2p-56 0xd.f7e068d3f7bp-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51a3c05c2p-4 : 0x1.ffeac4dd8f6d1p-56 0xd.f7e068d3f7bp-4 : inexact-ok += clog upward dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51a3c05c2p-4 : 0x1.ffeac4dd8f6d2p-56 0xd.f7e068d3f7b08p-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1cp-56L 0xd.f7e068d3f7b00d8p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1cp-56L 0xd.f7e068d3f7b00d9p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1cp-56L 0xd.f7e068d3f7b00d8p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1c02p-56L 0xd.f7e068d3f7b00d9p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1cp-56L 0xd.f7e068d3f7b00d8p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1cp-56L 0xd.f7e068d3f7b00d9p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1cp-56L 0xd.f7e068d3f7b00d8p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1c02p-56L 0xd.f7e068d3f7b00d9p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1c0054eac700fc2ep-56L 0xd.f7e068d3f7b00d8a88c28727e84p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1c0054eac700fc2ep-56L 0xd.f7e068d3f7b00d8a88c28727e84p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1c0054eac700fc2ep-56L 0xd.f7e068d3f7b00d8a88c28727e84p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1c0054eac700fc2fp-56L 0xd.f7e068d3f7b00d8a88c28727e848p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1c0054eac700fcp-56L 0xd.f7e068d3f7b00d8a88c28727e8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1c0054eac700fcp-56L 0xd.f7e068d3f7b00d8a88c28727e8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1c0054eac700fcp-56L 0xd.f7e068d3f7b00d8a88c28727e8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c2p-4L : 0x1.ffeac4dd8f6d1c0054eac700fc8p-56L 0xd.f7e068d3f7b00d8a88c28727ecp-4L : inexact-ok += clog downward dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51a3c05c18p-4 : -0x4.2167c8407374p-56 0xd.f7e068d3f7af8p-4 : inexact-ok += clog tonearest dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51a3c05c18p-4 : -0x4.2167c8407373cp-56 0xd.f7e068d3f7af8p-4 : inexact-ok += clog towardzero dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51a3c05c18p-4 : -0x4.2167c8407373cp-56 0xd.f7e068d3f7af8p-4 : inexact-ok += clog upward dbl-64 0xa.47c0c65bd4928p-4 0xc.42a51a3c05c18p-4 : -0x4.2167c8407373cp-56 0xd.f7e068d3f7bp-4 : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d11p-56L 0xd.f7e068d3f7afbb4p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d11p-56L 0xd.f7e068d3f7afbb5p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d108p-56L 0xd.f7e068d3f7afbb4p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d108p-56L 0xd.f7e068d3f7afbb5p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d11p-56L 0xd.f7e068d3f7afbb4p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d11p-56L 0xd.f7e068d3f7afbb5p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d108p-56L 0xd.f7e068d3f7afbb4p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d108p-56L 0xd.f7e068d3f7afbb5p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d10f9a2db6f9e3e4p-56L 0xd.f7e068d3f7afbb4c828fa883539p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d10f9a2db6f9e3ep-56L 0xd.f7e068d3f7afbb4c828fa883539p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d10f9a2db6f9e3ep-56L 0xd.f7e068d3f7afbb4c828fa883539p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d10f9a2db6f9e3ep-56L 0xd.f7e068d3f7afbb4c828fa8835398p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d10f9a2db6f9e4p-56L 0xd.f7e068d3f7afbb4c828fa8835p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d10f9a2db6f9e4p-56L 0xd.f7e068d3f7afbb4c828fa88354p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d10f9a2db6f9e2p-56L 0xd.f7e068d3f7afbb4c828fa8835p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c18p-4L : -0x4.2167c8407373d10f9a2db6f9e2p-56L 0xd.f7e068d3f7afbb4c828fa88354p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade2004p-56L 0xd.f7e068d3f7afccp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade2p-56L 0xd.f7e068d3f7afccp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade2p-56L 0xd.f7e068d3f7afccp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade2p-56L 0xd.f7e068d3f7afcc1p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade2004p-56L 0xd.f7e068d3f7afccp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade2p-56L 0xd.f7e068d3f7afccp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade2p-56L 0xd.f7e068d3f7afccp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade2p-56L 0xd.f7e068d3f7afcc1p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade200130487c756d36p-56L 0xd.f7e068d3f7afcc011bd1fdbcc218p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade200130487c756d36p-56L 0xd.f7e068d3f7afcc011bd1fdbcc218p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade200130487c756d34p-56L 0xd.f7e068d3f7afcc011bd1fdbcc218p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade200130487c756d34p-56L 0xd.f7e068d3f7afcc011bd1fdbcc22p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade200130487c756ep-56L 0xd.f7e068d3f7afcc011bd1fdbccp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade200130487c756dp-56L 0xd.f7e068d3f7afcc011bd1fdbcc4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade200130487c756dp-56L 0xd.f7e068d3f7afcc011bd1fdbccp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c19ap-4L : -0x2.e2a303965ade200130487c756dp-56L 0xd.f7e068d3f7afcc011bd1fdbcc4p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c2p-56L 0xd.f7e068d3f7afcbfp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c2p-56L 0xd.f7e068d3f7afcbfp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1cp-56L 0xd.f7e068d3f7afcbfp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1cp-56L 0xd.f7e068d3f7afccp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c2p-56L 0xd.f7e068d3f7afcbfp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c2p-56L 0xd.f7e068d3f7afcbfp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1cp-56L 0xd.f7e068d3f7afcbfp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1cp-56L 0xd.f7e068d3f7afccp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1f3c5c9f60f136p-56L 0xd.f7e068d3f7afcbf6d4113760ed8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1f3c5c9f60f136p-56L 0xd.f7e068d3f7afcbf6d4113760ed88p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1f3c5c9f60f134p-56L 0xd.f7e068d3f7afcbf6d4113760ed8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1f3c5c9f60f134p-56L 0xd.f7e068d3f7afcbf6d4113760ed88p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1f3c5c9f60f2p-56L 0xd.f7e068d3f7afcbf6d4113760ecp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1f3c5c9f60f1p-56L 0xd.f7e068d3f7afcbf6d4113760ecp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1f3c5c9f60f1p-56L 0xd.f7e068d3f7afcbf6d4113760ecp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199fp-4L : -0x2.e3672de7fe9e7c1f3c5c9f60f1p-56L 0xd.f7e068d3f7afcbf6d4113760fp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x2.e31ba00efa3565acb7586c858e12p-56L 0xd.f7e068d3f7afcbfac9b35f20898p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x2.e31ba00efa3565acb7586c858e12p-56L 0xd.f7e068d3f7afcbfac9b35f20898p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x2.e31ba00efa3565acb7586c858e1p-56L 0xd.f7e068d3f7afcbfac9b35f20898p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x2.e31ba00efa3565acb7586c858e1p-56L 0xd.f7e068d3f7afcbfac9b35f208988p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x2.e31ba00efa35350438184e4eb49ep-56L 0xd.f7e068d3f7afcbfac9b35f208c1p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x2.e31ba00efa35350438184e4eb49ep-56L 0xd.f7e068d3f7afcbfac9b35f208c1p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x2.e31ba00efa35350438184e4eb49cp-56L 0xd.f7e068d3f7afcbfac9b35f208c1p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x2.e31ba00efa35350438184e4eb49cp-56L 0xd.f7e068d3f7afcbfac9b35f208c18p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x2.e31ba00efa35350438184e4eb5p-56L 0xd.f7e068d3f7afcbfac9b35f208cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x2.e31ba00efa35350438184e4eb5p-56L 0xd.f7e068d3f7afcbfac9b35f208cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x2.e31ba00efa35350438184e4eb4p-56L 0xd.f7e068d3f7afcbfac9b35f208cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x2.e31ba00efa35350438184e4eb4p-56L 0xd.f7e068d3f7afcbfac9b35f209p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x2.e31ba00efa35660ecc813e65bc22p-56L 0xd.f7e068d3f7afcbfac9b35f208978p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x2.e31ba00efa35660ecc813e65bc22p-56L 0xd.f7e068d3f7afcbfac9b35f20898p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x2.e31ba00efa35660ecc813e65bc2p-56L 0xd.f7e068d3f7afcbfac9b35f208978p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x2.e31ba00efa35660ecc813e65bc2p-56L 0xd.f7e068d3f7afcbfac9b35f20898p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x2.e31ba00efa35660ecc813e65bdp-56L 0xd.f7e068d3f7afcbfac9b35f2088p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x2.e31ba00efa35660ecc813e65bcp-56L 0xd.f7e068d3f7afcbfac9b35f2088p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x2.e31ba00efa35660ecc813e65bcp-56L 0xd.f7e068d3f7afcbfac9b35f2088p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd4928p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x2.e31ba00efa35660ecc813e65bcp-56L 0xd.f7e068d3f7afcbfac9b35f208cp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161dep-28L 0xd.f7e06c884f3338ep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161dep-28L 0xd.f7e06c884f3338ep-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161dep-28L 0xd.f7e06c884f3338ep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161de08p-28L 0xd.f7e06c884f3338fp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161dep-28L 0xd.f7e06c884f3338ep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161dep-28L 0xd.f7e06c884f3338ep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161dep-28L 0xd.f7e06c884f3338ep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161de08p-28L 0xd.f7e06c884f3338fp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161de010e6a380056bp-28L 0xd.f7e06c884f3338e70af6cb11b518p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161de010e6a380056bp-28L 0xd.f7e06c884f3338e70af6cb11b518p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161de010e6a380056bp-28L 0xd.f7e06c884f3338e70af6cb11b518p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161de010e6a380056b4p-28L 0xd.f7e06c884f3338e70af6cb11b52p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161de010e6a380056p-28L 0xd.f7e06c884f3338e70af6cb11b4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161de010e6a380056p-28L 0xd.f7e06c884f3338e70af6cb11b4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161de010e6a380056p-28L 0xd.f7e06c884f3338e70af6cb11b4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a52p-4L : 0x4.6aff95585161de010e6a380058p-28L 0xd.f7e06c884f3338e70af6cb11b8p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e933ap-28L 0xd.f7e062408e6aa9cp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e933ap-28L 0xd.f7e062408e6aa9dp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339f8p-28L 0xd.f7e062408e6aa9cp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339f8p-28L 0xd.f7e062408e6aa9dp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e933ap-28L 0xd.f7e062408e6aa9cp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e933ap-28L 0xd.f7e062408e6aa9dp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339f8p-28L 0xd.f7e062408e6aa9cp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339f8p-28L 0xd.f7e062408e6aa9dp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339fde1a3bbc7ff6cp-28L 0xd.f7e062408e6aa9cf5eb3ed1d8d9p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339fde1a3bbc7ff68p-28L 0xd.f7e062408e6aa9cf5eb3ed1d8d98p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339fde1a3bbc7ff68p-28L 0xd.f7e062408e6aa9cf5eb3ed1d8d9p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339fde1a3bbc7ff68p-28L 0xd.f7e062408e6aa9cf5eb3ed1d8d98p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339fde1a3bbc8p-28L 0xd.f7e062408e6aa9cf5eb3ed1d8cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339fde1a3bbc8p-28L 0xd.f7e062408e6aa9cf5eb3ed1d8cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339fde1a3bbc7fep-28L 0xd.f7e062408e6aa9cf5eb3ed1d8cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51p-4L : -0x7.d7a585476e9339fde1a3bbc7fep-28L 0xd.f7e062408e6aa9cf5eb3ed1d9p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd08p-56L 0xd.f7e068d3f7afd66p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd1p-56L 0xd.f7e068d3f7afd67p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd08p-56L 0xd.f7e068d3f7afd66p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd1p-56L 0xd.f7e068d3f7afd67p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd08p-56L 0xd.f7e068d3f7afd66p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd1p-56L 0xd.f7e068d3f7afd67p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd08p-56L 0xd.f7e068d3f7afd66p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd1p-56L 0xd.f7e068d3f7afd67p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd0dc4aa1069a224p-56L 0xd.f7e068d3f7afd66ae471934a068p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd0dc4aa1069a228p-56L 0xd.f7e068d3f7afd66ae471934a068p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd0dc4aa1069a224p-56L 0xd.f7e068d3f7afd66ae471934a068p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd0dc4aa1069a228p-56L 0xd.f7e068d3f7afd66ae471934a0688p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd0dc4aa1069a2p-56L 0xd.f7e068d3f7afd66ae471934a04p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd0dc4aa1069a2p-56L 0xd.f7e068d3f7afd66ae471934a08p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd0dc4aa1069a2p-56L 0xd.f7e068d3f7afd66ae471934a04p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c2p-4L : 0x4.e374809afd78fd0dc4aa1069a4p-56L 0xd.f7e068d3f7afd66ae471934a08p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc98p-56L 0xd.f7e068d3f7af842p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc98p-56L 0xd.f7e068d3f7af843p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc96p-56L 0xd.f7e068d3f7af842p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc96p-56L 0xd.f7e068d3f7af843p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc98p-56L 0xd.f7e068d3f7af842p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc98p-56L 0xd.f7e068d3f7af843p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc96p-56L 0xd.f7e068d3f7af842p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc96p-56L 0xd.f7e068d3f7af843p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc972f2b962f3cfbp-56L 0xd.f7e068d3f7af842cde3eb4a57168p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc972f2b962f3cfbp-56L 0xd.f7e068d3f7af842cde3eb4a5717p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc972f2b962f3cfap-56L 0xd.f7e068d3f7af842cde3eb4a57168p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc972f2b962f3cfap-56L 0xd.f7e068d3f7af842cde3eb4a5717p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc972f2b962f3dp-56L 0xd.f7e068d3f7af842cde3eb4a57p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc972f2b962f3dp-56L 0xd.f7e068d3f7af842cde3eb4a57p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc972f2b962f3c8p-56L 0xd.f7e068d3f7af842cde3eb4a57p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c18p-4L : -0x1.3dde0c830567cc972f2b962f3c8p-56L 0xd.f7e068d3f7af842cde3eb4a574p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fp-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd458p-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fp-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd458p-68L 0xd.f7e068d3f7af94fp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fp-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd458p-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fp-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd458p-68L 0xd.f7e068d3f7af94fp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fb0109551580d8p-68L 0xd.f7e068d3f7af94e1778109deep-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fb0109551580d8p-68L 0xd.f7e068d3f7af94e1778109dee008p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fb0109551580d8p-68L 0xd.f7e068d3f7af94e1778109deep-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fb0109551580ep-68L 0xd.f7e068d3f7af94e1778109dee008p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fb010955158p-68L 0xd.f7e068d3f7af94e1778109deep-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fb010955158p-68L 0xd.f7e068d3f7af94e1778109deep-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fb010955158p-68L 0xd.f7e068d3f7af94e1778109deep-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c19ap-4L : 0xe.6b827132ddd457fb0109551584p-68L 0xd.f7e068d3f7af94e1778109dee4p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0cp-68L 0xd.f7e068d3f7af94dp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be1p-68L 0xd.f7e068d3f7af94dp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0cp-68L 0xd.f7e068d3f7af94dp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be1p-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0cp-68L 0xd.f7e068d3f7af94dp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be1p-68L 0xd.f7e068d3f7af94dp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0cp-68L 0xd.f7e068d3f7af94dp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be1p-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0fb5604b998386p-68L 0xd.f7e068d3f7af94d72fc043830b7p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0fb5604b998388p-68L 0xd.f7e068d3f7af94d72fc043830b7p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0fb5604b998386p-68L 0xd.f7e068d3f7af94d72fc043830b7p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0fb5604b998388p-68L 0xd.f7e068d3f7af94d72fc043830b78p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0fb5604b9983p-68L 0xd.f7e068d3f7af94d72fc0438308p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0fb5604b9984p-68L 0xd.f7e068d3f7af94d72fc043830cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0fb5604b9983p-68L 0xd.f7e068d3f7af94d72fc0438308p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199fp-4L : 0x2.28dd56f6d812be0fb5604b9984p-68L 0xd.f7e068d3f7af94d72fc043830cp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x6.e1bae73d6979cb179494d53d7a68p-68L 0xd.f7e068d3f7af94db25626b42a77p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x6.e1bae73d6979cb179494d53d7a68p-68L 0xd.f7e068d3f7af94db25626b42a77p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x6.e1bae73d6979cb179494d53d7a68p-68L 0xd.f7e068d3f7af94db25626b42a77p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x6.e1bae73d6979cb179494d53d7a6cp-68L 0xd.f7e068d3f7af94db25626b42a778p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.e1bae73d6c84530b967842c32858p-68L 0xd.f7e068d3f7af94db25626b42a9f8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.e1bae73d6c84530b967842c3285cp-68L 0xd.f7e068d3f7af94db25626b42aap-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.e1bae73d6c84530b967842c32858p-68L 0xd.f7e068d3f7af94db25626b42a9f8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.e1bae73d6c84530b967842c3285cp-68L 0xd.f7e068d3f7af94db25626b42aap-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.e1bae73d6c84530b967842c328p-68L 0xd.f7e068d3f7af94db25626b42a8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.e1bae73d6c84530b967842c328p-68L 0xd.f7e068d3f7af94db25626b42a8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.e1bae73d6c84530b967842c328p-68L 0xd.f7e068d3f7af94db25626b42a8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x6.e1bae73d6c84530b967842c32ap-68L 0xd.f7e068d3f7af94db25626b42acp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.e1bae73d6973a9c50776d25cad7p-68L 0xd.f7e068d3f7af94db25626b42a768p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.e1bae73d6973a9c50776d25cad74p-68L 0xd.f7e068d3f7af94db25626b42a77p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.e1bae73d6973a9c50776d25cad7p-68L 0xd.f7e068d3f7af94db25626b42a768p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.e1bae73d6973a9c50776d25cad74p-68L 0xd.f7e068d3f7af94db25626b42a77p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.e1bae73d6973a9c50776d25cacp-68L 0xd.f7e068d3f7af94db25626b42a4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.e1bae73d6973a9c50776d25caep-68L 0xd.f7e068d3f7af94db25626b42a8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.e1bae73d6973a9c50776d25cacp-68L 0xd.f7e068d3f7af94db25626b42a4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7fp-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x6.e1bae73d6973a9c50776d25caep-68L 0xd.f7e068d3f7af94db25626b42a8p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d4p-28L 0xd.f7e06c884f3338fp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d4p-28L 0xd.f7e06c884f3338fp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d4p-28L 0xd.f7e06c884f3338fp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d48p-28L 0xd.f7e06c884f3339p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d4p-28L 0xd.f7e06c884f3338fp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d4p-28L 0xd.f7e06c884f3338fp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d4p-28L 0xd.f7e06c884f3338fp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d48p-28L 0xd.f7e06c884f3339p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d405ff53023daecp-28L 0xd.f7e06c884f3338f34d9be44c67c8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d405ff53023dafp-28L 0xd.f7e06c884f3338f34d9be44c67dp-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d405ff53023daecp-28L 0xd.f7e06c884f3338f34d9be44c67c8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d405ff53023dafp-28L 0xd.f7e06c884f3338f34d9be44c67dp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d405ff53023dap-28L 0xd.f7e06c884f3338f34d9be44c64p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d405ff53023dap-28L 0xd.f7e06c884f3338f34d9be44c68p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d405ff53023dap-28L 0xd.f7e06c884f3338f34d9be44c64p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a52p-4L : 0x4.6aff9558471a1d405ff53023dcp-28L 0xd.f7e06c884f3338f34d9be44c68p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778dafadp-28L 0xd.f7e062408e6aa9dp-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778dafadp-28L 0xd.f7e062408e6aa9ep-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778dafac8p-28L 0xd.f7e062408e6aa9dp-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778dafac8p-28L 0xd.f7e062408e6aa9ep-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778dafadp-28L 0xd.f7e062408e6aa9dp-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778dafadp-28L 0xd.f7e062408e6aa9ep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778dafac8p-28L 0xd.f7e062408e6aa9dp-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778dafac8p-28L 0xd.f7e062408e6aa9ep-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778daface515e11105f0cp-28L 0xd.f7e062408e6aa9dba15909225acp-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778daface515e11105f08p-28L 0xd.f7e062408e6aa9dba15909225ac8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778daface515e11105f08p-28L 0xd.f7e062408e6aa9dba15909225acp-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778daface515e11105f08p-28L 0xd.f7e062408e6aa9dba15909225ac8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778daface515e11106p-28L 0xd.f7e062408e6aa9dba159092258p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778daface515e11106p-28L 0xd.f7e062408e6aa9dba15909225cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778daface515e11105ep-28L 0xd.f7e062408e6aa9dba159092258p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51p-4L : -0x7.d7a5854778daface515e11105ep-28L 0xd.f7e062408e6aa9dba15909225cp-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3ep-56L 0xd.f7e068d3f7afd67p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e8p-56L 0xd.f7e068d3f7afd67p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3ep-56L 0xd.f7e068d3f7afd67p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e8p-56L 0xd.f7e068d3f7afd68p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3ep-56L 0xd.f7e068d3f7afd67p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e8p-56L 0xd.f7e068d3f7afd67p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3ep-56L 0xd.f7e068d3f7afd67p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e8p-56L 0xd.f7e068d3f7afd68p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e78dea78166f54p-56L 0xd.f7e068d3f7afd6772716ad860c4p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e78dea78166f54p-56L 0xd.f7e068d3f7afd6772716ad860c4p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e78dea78166f54p-56L 0xd.f7e068d3f7afd6772716ad860c4p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e78dea78166f58p-56L 0xd.f7e068d3f7afd6772716ad860c48p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e78dea78166ep-56L 0xd.f7e068d3f7afd6772716ad860cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e78dea78167p-56L 0xd.f7e068d3f7afd6772716ad860cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e78dea78166ep-56L 0xd.f7e068d3f7afd6772716ad860cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c2p-4L : 0x4.e2d0048e97bbb3e78dea78167p-56L 0xd.f7e068d3f7afd6772716ad861p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c6p-56L 0xd.f7e068d3f7af843p-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c6p-56L 0xd.f7e068d3f7af844p-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c4p-56L 0xd.f7e068d3f7af843p-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c4p-56L 0xd.f7e068d3f7af844p-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c6p-56L 0xd.f7e068d3f7af843p-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c6p-56L 0xd.f7e068d3f7af844p-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c4p-56L 0xd.f7e068d3f7af843p-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c4p-56L 0xd.f7e068d3f7af844p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c5468dd348b1a5p-56L 0xd.f7e068d3f7af843920e3cee17728p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c5468dd348b1a4p-56L 0xd.f7e068d3f7af843920e3cee1773p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c5468dd348b1a4p-56L 0xd.f7e068d3f7af843920e3cee17728p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c5468dd348b1a4p-56L 0xd.f7e068d3f7af843920e3cee1773p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c5468dd348b2p-56L 0xd.f7e068d3f7af843920e3cee174p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c5468dd348b18p-56L 0xd.f7e068d3f7af843920e3cee178p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c5468dd348b18p-56L 0xd.f7e068d3f7af843920e3cee174p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c18p-4L : -0x1.3e82888f6b2515c5468dd348b18p-56L 0xd.f7e068d3f7af843920e3cee178p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad709419018p-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941902p-68L 0xd.f7e068d3f7af94fp-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad709419018p-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941902p-68L 0xd.f7e068d3f7af94fp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad709419018p-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941902p-68L 0xd.f7e068d3f7af94fp-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad709419018p-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941902p-68L 0xd.f7e068d3f7af94fp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941901eedcf4220ddfp-68L 0xd.f7e068d3f7af94edba26241ae5c8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941901eedcf4220ddf4p-68L 0xd.f7e068d3f7af94edba26241ae5c8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941901eedcf4220ddfp-68L 0xd.f7e068d3f7af94edba26241ae5c8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941901eedcf4220ddf4p-68L 0xd.f7e068d3f7af94edba26241ae5dp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941901eedcf4220dcp-68L 0xd.f7e068d3f7af94edba26241ae4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941901eedcf4220dep-68L 0xd.f7e068d3f7af94edba26241ae4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941901eedcf4220dcp-68L 0xd.f7e068d3f7af94edba26241ae4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c19ap-4L : 0x4.23c1aad70941901eedcf4220dep-68L 0xd.f7e068d3f7af94edba26241ae8p-4L : inexact-ok += clog downward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009ep-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog tonearest ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009ep-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog towardzero ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dp-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog upward ldbl-96-intel 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dp-68L 0xd.f7e068d3f7af94fp-4L : inexact-ok += clog downward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009ep-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog tonearest ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009ep-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog towardzero ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dp-68L 0xd.f7e068d3f7af94ep-4L : inexact-ok += clog upward ldbl-96-m68k 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dp-68L 0xd.f7e068d3f7af94fp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dc1f1f10e7a31p-68L 0xd.f7e068d3f7af94e372655dbf113p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dc1f1f10e7a308p-68L 0xd.f7e068d3f7af94e372655dbf1138p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dc1f1f10e7a308p-68L 0xd.f7e068d3f7af94e372655dbf113p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dc1f1f10e7a308p-68L 0xd.f7e068d3f7af94e372655dbf1138p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dc1f1f10e7a4p-68L 0xd.f7e068d3f7af94e372655dbf1p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dc1f1f10e7a4p-68L 0xd.f7e068d3f7af94e372655dbf1p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dc1f1f10e7ap-68L 0xd.f7e068d3f7af94e372655dbf1p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199fp-4L : -0x8.1ee36f64fc8009dc1f1f10e7ap-68L 0xd.f7e068d3f7af94e372655dbf14p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x3.6605df1e6b18fcce2e7b1aafdd7ep-68L 0xd.f7e068d3f7af94e76807857ead3p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x3.6605df1e6b18fcce2e7b1aafdd7cp-68L 0xd.f7e068d3f7af94e76807857ead3p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x3.6605df1e6b18fcce2e7b1aafdd7cp-68L 0xd.f7e068d3f7af94e76807857ead3p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x3.6605df1e6b18fcce2e7b1aafdd7cp-68L 0xd.f7e068d3f7af94e76807857ead38p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x3.6605df1e680e74da2c97ad2a2ba4p-68L 0xd.f7e068d3f7af94e76807857eafb8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x3.6605df1e680e74da2c97ad2a2ba2p-68L 0xd.f7e068d3f7af94e76807857eafcp-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x3.6605df1e680e74da2c97ad2a2ba2p-68L 0xd.f7e068d3f7af94e76807857eafb8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x3.6605df1e680e74da2c97ad2a2ba2p-68L 0xd.f7e068d3f7af94e76807857eafcp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x3.6605df1e680e74da2c97ad2a2cp-68L 0xd.f7e068d3f7af94e76807857eacp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x3.6605df1e680e74da2c97ad2a2cp-68L 0xd.f7e068d3f7af94e76807857ebp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x3.6605df1e680e74da2c97ad2a2bp-68L 0xd.f7e068d3f7af94e76807857eacp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b84p-4L : -0x3.6605df1e680e74da2c97ad2a2bp-68L 0xd.f7e068d3f7af94e76807857ebp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x3.6605df1e6b1f1e20bb991d90aa7ap-68L 0xd.f7e068d3f7af94e76807857ead28p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x3.6605df1e6b1f1e20bb991d90aa7ap-68L 0xd.f7e068d3f7af94e76807857ead3p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x3.6605df1e6b1f1e20bb991d90aa78p-68L 0xd.f7e068d3f7af94e76807857ead28p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x3.6605df1e6b1f1e20bb991d90aa78p-68L 0xd.f7e068d3f7af94e76807857ead3p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x3.6605df1e6b1f1e20bb991d90abp-68L 0xd.f7e068d3f7af94e76807857eacp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x3.6605df1e6b1f1e20bb991d90aap-68L 0xd.f7e068d3f7af94e76807857eacp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x3.6605df1e6b1f1e20bb991d90aap-68L 0xd.f7e068d3f7af94e76807857eacp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7ep-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x3.6605df1e6b1f1e20bb991d90aap-68L 0xd.f7e068d3f7af94e76807857ebp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de8f8dcf43cp-28L 0xd.f7e06c884f3338ef4003a43e39bp-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de8f8dcf44p-28L 0xd.f7e06c884f3338ef4003a43e39bp-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de8f8dcf43cp-28L 0xd.f7e06c884f3338ef4003a43e39bp-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de8f8dcf44p-28L 0xd.f7e06c884f3338ef4003a43e39b8p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde11a493013cp-28L 0xd.f7e062408e6aa9d793c0c82819e8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde11a493013cp-28L 0xd.f7e062408e6aa9d793c0c82819e8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde11a4930138p-28L 0xd.f7e062408e6aa9d793c0c82819e8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde11a4930138p-28L 0xd.f7e062408e6aa9d793c0c82819fp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a265754758d239b8c4p-56L 0xd.f7e068d3f7afd673197e6d22ccbp-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a265754758d239b8c4p-56L 0xd.f7e068d3f7afd673197e6d22ccb8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a265754758d239b8c4p-56L 0xd.f7e068d3f7afd673197e6d22ccbp-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a265754758d239b8c8p-56L 0xd.f7e068d3f7afd673197e6d22ccb8p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e6434f27327e72424p-56L 0xd.f7e068d3f7af8435134b8e7e37ap-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e6434f27327e72423p-56L 0xd.f7e068d3f7af8435134b8e7e37ap-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e6434f27327e72423p-56L 0xd.f7e068d3f7af8435134b8e7e37ap-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e6434f27327e72423p-56L 0xd.f7e068d3f7af8435134b8e7e37a8p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f5745a8ce9e87d509bbc4cp-68L 0xd.f7e068d3f7af94e9ac8de3b7a638p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f5745a8ce9e87d509bbc4cp-68L 0xd.f7e068d3f7af94e9ac8de3b7a64p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f5745a8ce9e87d509bbc4cp-68L 0xd.f7e068d3f7af94e9ac8de3b7a638p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f5745a8ce9e87d509bbc5p-68L 0xd.f7e068d3f7af94e9ac8de3b7a64p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904691670d0bef185ff03c94p-68L 0xd.f7e068d3f7af94df64cd1d5bd1a8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904691670d0bef185ff03c9p-68L 0xd.f7e068d3f7af94df64cd1d5bd1a8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904691670d0bef185ff03c9p-68L 0xd.f7e068d3f7af94df64cd1d5bd1a8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904691670d0bef185ff03c9p-68L 0xd.f7e068d3f7af94df64cd1d5bd1bp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x1.36p-220L 0xd.f7e068d3f7af94e35a6f451b6dap-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x1.36p-220L 0xd.f7e068d3f7af94e35a6f451b6da8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x1.35ffffffffffffffffffffffffffp-220L 0xd.f7e068d3f7af94e35a6f451b6dap-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x1.35ffffffffffffffffffffffffffp-220L 0xd.f7e068d3f7af94e35a6f451b6da8p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x3.0a87f401e36d85b08f5155182a2ap-108L 0xd.f7e068d3f7af94e35a6f451b703p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x3.0a87f401e36d85b08f5155182a2ap-108L 0xd.f7e068d3f7af94e35a6f451b7038p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x3.0a87f401e36d85b08f5155182a2ap-108L 0xd.f7e068d3f7af94e35a6f451b703p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x3.0a87f401e36d85b08f5155182a2cp-108L 0xd.f7e068d3f7af94e35a6f451b7038p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x6.21528d1e02e0ccfb14cc42b5c13cp-116L 0xd.f7e068d3f7af94e35a6f451b6dap-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x6.21528d1e02e0ccfb14cc42b5c138p-116L 0xd.f7e068d3f7af94e35a6f451b6dap-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x6.21528d1e02e0ccfb14cc42b5c138p-116L 0xd.f7e068d3f7af94e35a6f451b6dap-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f15065p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x6.21528d1e02e0ccfb14cc42b5c138p-116L 0xd.f7e068d3f7af94e35a6f451b6da8p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9dea0e6e489p-28L 0xd.f7e06c884f3338ef4003a43e386p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9dea0e6e4894p-28L 0xd.f7e06c884f3338ef4003a43e3868p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9dea0e6e489p-28L 0xd.f7e06c884f3338ef4003a43e386p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9dea0e6e4894p-28L 0xd.f7e06c884f3338ef4003a43e3868p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9dea0e6e48p-28L 0xd.f7e06c884f3338ef4003a43e38p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9dea0e6e48p-28L 0xd.f7e06c884f3338ef4003a43e38p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9dea0e6e48p-28L 0xd.f7e06c884f3338ef4003a43e38p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9dea0e6e4ap-28L 0xd.f7e06c884f3338ef4003a43e3cp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde108f01ab44p-28L 0xd.f7e062408e6aa9d793c0c82818ap-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde108f01ab4p-28L 0xd.f7e062408e6aa9d793c0c82818ap-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde108f01ab4p-28L 0xd.f7e062408e6aa9d793c0c82818ap-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde108f01ab4p-28L 0xd.f7e062408e6aa9d793c0c82818a8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde108f01acp-28L 0xd.f7e062408e6aa9d793c0c82818p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde108f01acp-28L 0xd.f7e062408e6aa9d793c0c82818p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde108f01aap-28L 0xd.f7e062408e6aa9d793c0c82818p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde108f01aap-28L 0xd.f7e062408e6aa9d793c0c8281cp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a276ce5ca78d306fccp-56L 0xd.f7e068d3f7afd673197e6d22cb68p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a276ce5ca78d306fccp-56L 0xd.f7e068d3f7afd673197e6d22cb7p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a276ce5ca78d306fccp-56L 0xd.f7e068d3f7afd673197e6d22cb68p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a276ce5ca78d306fdp-56L 0xd.f7e068d3f7afd673197e6d22cb7p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a276ce5ca78d306ep-56L 0xd.f7e068d3f7afd673197e6d22c8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a276ce5ca78d307p-56L 0xd.f7e068d3f7afd673197e6d22ccp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a276ce5ca78d306ep-56L 0xd.f7e068d3f7afd673197e6d22c8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a276ce5ca78d307p-56L 0xd.f7e068d3f7afd673197e6d22ccp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e52dbdd246cf06c47p-56L 0xd.f7e068d3f7af8435134b8e7e3658p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e52dbdd246cf06c47p-56L 0xd.f7e068d3f7af8435134b8e7e3658p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e52dbdd246cf06c46p-56L 0xd.f7e068d3f7af8435134b8e7e3658p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e52dbdd246cf06c46p-56L 0xd.f7e068d3f7af8435134b8e7e366p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e52dbdd246cf06c8p-56L 0xd.f7e068d3f7af8435134b8e7e34p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e52dbdd246cf06c8p-56L 0xd.f7e068d3f7af8435134b8e7e38p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e52dbdd246cf06cp-56L 0xd.f7e068d3f7af8435134b8e7e34p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e52dbdd246cf06cp-56L 0xd.f7e068d3f7af8435134b8e7e38p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f575701e3ed42cbc16d074p-68L 0xd.f7e068d3f7af94e9ac8de3b7a4fp-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f575701e3ed42cbc16d074p-68L 0xd.f7e068d3f7af94e9ac8de3b7a4fp-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f575701e3ed42cbc16d074p-68L 0xd.f7e068d3f7af94e9ac8de3b7a4fp-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f575701e3ed42cbc16d078p-68L 0xd.f7e068d3f7af94e9ac8de3b7a4f8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f575701e3ed42cbc16dp-68L 0xd.f7e068d3f7af94e9ac8de3b7a4p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f575701e3ed42cbc16dp-68L 0xd.f7e068d3f7af94e9ac8de3b7a4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f575701e3ed42cbc16dp-68L 0xd.f7e068d3f7af94e9ac8de3b7a4p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f575701e3ed42cbc16d2p-68L 0xd.f7e068d3f7af94e9ac8de3b7a8p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904690517bb70368f47526cp-68L 0xd.f7e068d3f7af94df64cd1d5bd058p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904690517bb70368f47526cp-68L 0xd.f7e068d3f7af94df64cd1d5bd06p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904690517bb70368f47526bcp-68L 0xd.f7e068d3f7af94df64cd1d5bd058p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904690517bb70368f47526bcp-68L 0xd.f7e068d3f7af94df64cd1d5bd06p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904690517bb70368f47528p-68L 0xd.f7e068d3f7af94df64cd1d5bdp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904690517bb70368f47526p-68L 0xd.f7e068d3f7af94df64cd1d5bdp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904690517bb70368f47526p-68L 0xd.f7e068d3f7af94df64cd1d5bdp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904690517bb70368f47526p-68L 0xd.f7e068d3f7af94df64cd1d5bd4p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x1.159154ebaf6b7b152ed042b737adp-108L 0xd.f7e068d3f7af94e35a6f451b6c58p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x1.159154ebaf6b7b152ed042b737adp-108L 0xd.f7e068d3f7af94e35a6f451b6c6p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x1.159154ebaf6b7b152ed042b737adp-108L 0xd.f7e068d3f7af94e35a6f451b6c58p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : 0x1.159154ebaf6b7b152ed042b737aep-108L 0xd.f7e068d3f7af94e35a6f451b6c6p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x4.201948ed92d900c5be2197cf616cp-108L 0xd.f7e068d3f7af94e35a6f451b6ee8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x4.201948ed92d900c5be2197cf617p-108L 0xd.f7e068d3f7af94e35a6f451b6ee8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x4.201948ed92d900c5be2197cf616cp-108L 0xd.f7e068d3f7af94e35a6f451b6ee8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x4.201948ed92d900c5be2197cf617p-108L 0xd.f7e068d3f7af94e35a6f451b6efp-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x4.201948ed92d900c5be2197cf6p-108L 0xd.f7e068d3f7af94e35a6f451b6cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x4.201948ed92d900c5be2197cf62p-108L 0xd.f7e068d3f7af94e35a6f451b7p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x4.201948ed92d900c5be2197cf6p-108L 0xd.f7e068d3f7af94e35a6f451b6cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x4.201948ed92d900c5be2197cf62p-108L 0xd.f7e068d3f7af94e35a6f451b7p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x1.0f70025e91689a4833bb767481eep-108L 0xd.f7e068d3f7af94e35a6f451b6c5p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x1.0f70025e91689a4833bb767481eep-108L 0xd.f7e068d3f7af94e35a6f451b6c58p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x1.0f70025e91689a4833bb767481eep-108L 0xd.f7e068d3f7af94e35a6f451b6c5p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x1.0f70025e91689a4833bb767481efp-108L 0xd.f7e068d3f7af94e35a6f451b6c58p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x1.0f70025e91689a4833bb7674818p-108L 0xd.f7e068d3f7af94e35a6f451b6cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x1.0f70025e91689a4833bb767482p-108L 0xd.f7e068d3f7af94e35a6f451b6cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x1.0f70025e91689a4833bb7674818p-108L 0xd.f7e068d3f7af94e35a6f451b6cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1508p-4L 0xc.42a51a3c05c199f62998856b8p-4L : 0x1.0f70025e91689a4833bb767482p-108L 0xd.f7e068d3f7af94e35a6f451b7p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de77c7e1864p-28L 0xd.f7e06c884f3338ef4003a43e3b7p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de77c7e1868p-28L 0xd.f7e06c884f3338ef4003a43e3b78p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de77c7e1864p-28L 0xd.f7e06c884f3338ef4003a43e3b7p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de77c7e1868p-28L 0xd.f7e06c884f3338ef4003a43e3b78p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de77c7e18p-28L 0xd.f7e06c884f3338ef4003a43e38p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de77c7e18p-28L 0xd.f7e06c884f3338ef4003a43e3cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de77c7e18p-28L 0xd.f7e06c884f3338ef4003a43e38p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a52p-4L : 0x4.6aff95584a80231d9de77c7e1ap-28L 0xd.f7e06c884f3338ef4003a43e3cp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde1320f1df5cp-28L 0xd.f7e062408e6aa9d793c0c8281bbp-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde1320f1df5cp-28L 0xd.f7e062408e6aa9d793c0c8281bbp-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde1320f1df58p-28L 0xd.f7e062408e6aa9d793c0c8281bbp-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde1320f1df58p-28L 0xd.f7e062408e6aa9d793c0c8281bb8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde1320f1ep-28L 0xd.f7e062408e6aa9d793c0c82818p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde1320f1ep-28L 0xd.f7e062408e6aa9d793c0c8281cp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde1320f1dep-28L 0xd.f7e062408e6aa9d793c0c82818p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51p-4L : -0x7.d7a585477574f4ebde1320f1dep-28L 0xd.f7e062408e6aa9d793c0c8281cp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a24daf598e1dde263cp-56L 0xd.f7e068d3f7afd673197e6d22ce78p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a24daf598e1dde264p-56L 0xd.f7e068d3f7afd673197e6d22ce8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a24daf598e1dde263cp-56L 0xd.f7e068d3f7afd673197e6d22ce78p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a24daf598e1dde264p-56L 0xd.f7e068d3f7afd673197e6d22ce8p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a24daf598e1dde26p-56L 0xd.f7e068d3f7afd673197e6d22ccp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a24daf598e1dde26p-56L 0xd.f7e068d3f7afd673197e6d22dp-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a24daf598e1dde26p-56L 0xd.f7e068d3f7afd673197e6d22ccp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c2p-4L : 0x4.e30664ec89a24daf598e1dde28p-56L 0xd.f7e068d3f7afd673197e6d22dp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e7bfae03ddc42b7cdp-56L 0xd.f7e068d3f7af8435134b8e7e3968p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e7bfae03ddc42b7cdp-56L 0xd.f7e068d3f7af8435134b8e7e3968p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e7bfae03ddc42b7ccp-56L 0xd.f7e068d3f7af8435134b8e7e3968p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e7bfae03ddc42b7ccp-56L 0xd.f7e068d3f7af8435134b8e7e397p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e7bfae03ddc42b8p-56L 0xd.f7e068d3f7af8435134b8e7e38p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e7bfae03ddc42b8p-56L 0xd.f7e068d3f7af8435134b8e7e38p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e7bfae03ddc42b78p-56L 0xd.f7e068d3f7af8435134b8e7e38p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c18p-4L : -0x1.3e4c2831793e7bfae03ddc42b78p-56L 0xd.f7e068d3f7af8435134b8e7e3cp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f572de2e0d3d379764d98cp-68L 0xd.f7e068d3f7af94e9ac8de3b7a8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f572de2e0d3d379764d99p-68L 0xd.f7e068d3f7af94e9ac8de3b7a8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f572de2e0d3d379764d98cp-68L 0xd.f7e068d3f7af94e9ac8de3b7a8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f572de2e0d3d379764d99p-68L 0xd.f7e068d3f7af94e9ac8de3b7a808p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f572de2e0d3d379764d8p-68L 0xd.f7e068d3f7af94e9ac8de3b7a8p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f572de2e0d3d379764dap-68L 0xd.f7e068d3f7af94e9ac8de3b7a8p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f572de2e0d3d379764d8p-68L 0xd.f7e068d3f7af94e9ac8de3b7a8p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c19ap-4L : 0x7.89c789f572de2e0d3d379764dap-68L 0xd.f7e068d3f7af94e9ac8de3b7acp-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904692e36be89a5e19272198p-68L 0xd.f7e068d3f7af94df64cd1d5bd37p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904692e36be89a5e19272198p-68L 0xd.f7e068d3f7af94df64cd1d5bd37p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904692e36be89a5e19272194p-68L 0xd.f7e068d3f7af94df64cd1d5bd37p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904692e36be89a5e19272194p-68L 0xd.f7e068d3f7af94df64cd1d5bd378p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904692e36be89a5e192722p-68L 0xd.f7e068d3f7af94df64cd1d5bdp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904692e36be89a5e192722p-68L 0xd.f7e068d3f7af94df64cd1d5bd4p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904692e36be89a5e19272p-68L 0xd.f7e068d3f7af94df64cd1d5bdp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199fp-4L : -0x4.b8dd904692e36be89a5e19272p-68L 0xd.f7e068d3f7af94df64cd1d5bd4p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x1.7c5edcab45b936e423b5190e09e4p-108L 0xd.f7e068d3f7af94e35a6f451b6f68p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x1.7c5edcab45b936e423b5190e09e3p-108L 0xd.f7e068d3f7af94e35a6f451b6f7p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x1.7c5edcab45b936e423b5190e09e3p-108L 0xd.f7e068d3f7af94e35a6f451b6f68p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8008p-4L : -0x1.7c5edcab45b936e423b5190e09e3p-108L 0xd.f7e068d3f7af94e35a6f451b6f7p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x1.8e2917569db44ecc6b9c3c0a20d9p-108L 0xd.f7e068d3f7af94e35a6f451b71f8p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x1.8e2917569db44ecc6b9c3c0a20d9p-108L 0xd.f7e068d3f7af94e35a6f451b71f8p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x1.8e2917569db44ecc6b9c3c0a20d9p-108L 0xd.f7e068d3f7af94e35a6f451b71f8p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x1.8e2917569db44ecc6b9c3c0a20dap-108L 0xd.f7e068d3f7af94e35a6f451b72p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x1.8e2917569db44ecc6b9c3c0a208p-108L 0xd.f7e068d3f7af94e35a6f451b7p-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x1.8e2917569db44ecc6b9c3c0a21p-108L 0xd.f7e068d3f7af94e35a6f451b7p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x1.8e2917569db44ecc6b9c3c0a208p-108L 0xd.f7e068d3f7af94e35a6f451b7p-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b84p-4L : 0x1.8e2917569db44ecc6b9c3c0a21p-108L 0xd.f7e068d3f7af94e35a6f451b74p-4L : inexact-ok += clog downward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x1.82802f3863bc17b11ec9e550bfa5p-108L 0xd.f7e068d3f7af94e35a6f451b6f68p-4L : inexact-ok += clog tonearest ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x1.82802f3863bc17b11ec9e550bfa4p-108L 0xd.f7e068d3f7af94e35a6f451b6f68p-4L : inexact-ok += clog towardzero ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x1.82802f3863bc17b11ec9e550bfa4p-108L 0xd.f7e068d3f7af94e35a6f451b6f68p-4L : inexact-ok += clog upward ldbl-128 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x1.82802f3863bc17b11ec9e550bfa4p-108L 0xd.f7e068d3f7af94e35a6f451b6f7p-4L : inexact-ok += clog downward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x1.82802f3863bc17b11ec9e550cp-108L 0xd.f7e068d3f7af94e35a6f451b6cp-4L : inexact-ok += clog tonearest ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x1.82802f3863bc17b11ec9e550bf8p-108L 0xd.f7e068d3f7af94e35a6f451b7p-4L : inexact-ok += clog towardzero ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x1.82802f3863bc17b11ec9e550bf8p-108L 0xd.f7e068d3f7af94e35a6f451b6cp-4L : inexact-ok += clog upward ldbl-128ibm 0xa.47c0c65bd492c7e54a156f1504p-4L 0xc.42a51a3c05c199f62998856b8p-4L : -0x1.82802f3863bc17b11ec9e550bf8p-108L 0xd.f7e068d3f7af94e35a6f451b7p-4L : inexact-ok +clog 0xfd95243681c055c2632286921092p-113 0x1bccabcd29ca2152860ec29e34ef7p-113 += clog downward flt-32 0x7.eca928p-4f 0xd.e655fp-4f : 0xb.4cf8bp-28f 0x1.0d79ep+0f : inexact-ok += clog tonearest flt-32 0x7.eca928p-4f 0xd.e655fp-4f : 0xb.4cf8bp-28f 0x1.0d79ep+0f : inexact-ok += clog towardzero flt-32 0x7.eca928p-4f 0xd.e655fp-4f : 0xb.4cf8bp-28f 0x1.0d79ep+0f : inexact-ok += clog upward flt-32 0x7.eca928p-4f 0xd.e655fp-4f : 0xb.4cf8cp-28f 0x1.0d79e2p+0f : inexact-ok += clog downward dbl-64 0x7.eca928p-4 0xd.e655fp-4 : 0xb.4cf8b204b7bd8p-28 0x1.0d79e0bb2f36cp+0 : inexact-ok += clog tonearest dbl-64 0x7.eca928p-4 0xd.e655fp-4 : 0xb.4cf8b204b7bep-28 0x1.0d79e0bb2f36cp+0 : inexact-ok += clog towardzero dbl-64 0x7.eca928p-4 0xd.e655fp-4 : 0xb.4cf8b204b7bd8p-28 0x1.0d79e0bb2f36cp+0 : inexact-ok += clog upward dbl-64 0x7.eca928p-4 0xd.e655fp-4 : 0xb.4cf8b204b7bep-28 0x1.0d79e0bb2f36dp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2ap-28L 0x1.0d79e0bb2f36c25cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2ap-28L 0x1.0d79e0bb2f36c25ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2ap-28L 0x1.0d79e0bb2f36c25cp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2bp-28L 0x1.0d79e0bb2f36c25ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2ap-28L 0x1.0d79e0bb2f36c25cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2ap-28L 0x1.0d79e0bb2f36c25ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2ap-28L 0x1.0d79e0bb2f36c25cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2bp-28L 0x1.0d79e0bb2f36c25ep+0L : inexact-ok += clog downward ldbl-128 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2a602c57888e73p-28L 0x1.0d79e0bb2f36c25d13a62a755b68p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2a602c57888e738p-28L 0x1.0d79e0bb2f36c25d13a62a755b68p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2a602c57888e73p-28L 0x1.0d79e0bb2f36c25d13a62a755b68p+0L : inexact-ok += clog upward ldbl-128 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2a602c57888e738p-28L 0x1.0d79e0bb2f36c25d13a62a755b69p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2a602c57888e4p-28L 0x1.0d79e0bb2f36c25d13a62a755bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2a602c57888e8p-28L 0x1.0d79e0bb2f36c25d13a62a755b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2a602c57888e4p-28L 0x1.0d79e0bb2f36c25d13a62a755bp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca928p-4L 0xd.e655fp-4L : 0xb.4cf8b204b7bdc2a602c57888e8p-28L 0x1.0d79e0bb2f36c25d13a62a755b8p+0L : inexact-ok += clog downward flt-32 0x7.eca928p-4f 0xd.e655ep-4f : -0x2.995d3p-28f 0x1.0d79ep+0f : inexact-ok += clog tonearest flt-32 0x7.eca928p-4f 0xd.e655ep-4f : -0x2.995d3p-28f 0x1.0d79ep+0f : inexact-ok += clog towardzero flt-32 0x7.eca928p-4f 0xd.e655ep-4f : -0x2.995d2cp-28f 0x1.0d79ep+0f : inexact-ok += clog upward flt-32 0x7.eca928p-4f 0xd.e655ep-4f : -0x2.995d2cp-28f 0x1.0d79e2p+0f : inexact-ok += clog downward dbl-64 0x7.eca928p-4 0xd.e655ep-4 : -0x2.995d2e6c1553ep-28 0x1.0d79e03c64a48p+0 : inexact-ok += clog tonearest dbl-64 0x7.eca928p-4 0xd.e655ep-4 : -0x2.995d2e6c1553cp-28 0x1.0d79e03c64a48p+0 : inexact-ok += clog towardzero dbl-64 0x7.eca928p-4 0xd.e655ep-4 : -0x2.995d2e6c1553cp-28 0x1.0d79e03c64a48p+0 : inexact-ok += clog upward dbl-64 0x7.eca928p-4 0xd.e655ep-4 : -0x2.995d2e6c1553cp-28 0x1.0d79e03c64a49p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5d4p-28L 0x1.0d79e03c64a4875p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5dp-28L 0x1.0d79e03c64a48752p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5dp-28L 0x1.0d79e03c64a4875p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5dp-28L 0x1.0d79e03c64a48752p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5d4p-28L 0x1.0d79e03c64a4875p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5dp-28L 0x1.0d79e03c64a48752p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5dp-28L 0x1.0d79e03c64a4875p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5dp-28L 0x1.0d79e03c64a48752p+0L : inexact-ok += clog downward ldbl-128 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5d02966a4b87b74p-28L 0x1.0d79e03c64a48751a77272974f04p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5d02966a4b87b72p-28L 0x1.0d79e03c64a48751a77272974f04p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5d02966a4b87b72p-28L 0x1.0d79e03c64a48751a77272974f04p+0L : inexact-ok += clog upward ldbl-128 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5d02966a4b87b72p-28L 0x1.0d79e03c64a48751a77272974f05p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5d02966a4b87cp-28L 0x1.0d79e03c64a48751a77272974fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5d02966a4b87bp-28L 0x1.0d79e03c64a48751a77272974fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5d02966a4b87bp-28L 0x1.0d79e03c64a48751a77272974fp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca928p-4L 0xd.e655ep-4L : -0x2.995d2e6c1553c5d02966a4b87bp-28L 0x1.0d79e03c64a48751a77272974f8p+0L : inexact-ok += clog downward dbl-64 0x7.eca928p-4 0xd.e655e694e511p-4 : 0x3.1e5ca088bf97ep-28 0x1.0d79e0708c847p+0 : inexact-ok += clog tonearest dbl-64 0x7.eca928p-4 0xd.e655e694e511p-4 : 0x3.1e5ca088bf97ep-28 0x1.0d79e0708c848p+0 : inexact-ok += clog towardzero dbl-64 0x7.eca928p-4 0xd.e655e694e511p-4 : 0x3.1e5ca088bf97ep-28 0x1.0d79e0708c847p+0 : inexact-ok += clog upward dbl-64 0x7.eca928p-4 0xd.e655e694e511p-4 : 0x3.1e5ca088bf98p-28 0x1.0d79e0708c848p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3cp-28L 0x1.0d79e0708c847ac8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3cp-28L 0x1.0d79e0708c847ac8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3cp-28L 0x1.0d79e0708c847ac8p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb4p-28L 0x1.0d79e0708c847acap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3cp-28L 0x1.0d79e0708c847ac8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3cp-28L 0x1.0d79e0708c847ac8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3cp-28L 0x1.0d79e0708c847ac8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb4p-28L 0x1.0d79e0708c847acap+0L : inexact-ok += clog downward ldbl-128 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3ddb0da251872ep-28L 0x1.0d79e0708c847ac82173b495425p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3ddb0da251873p-28L 0x1.0d79e0708c847ac82173b4954251p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3ddb0da251872ep-28L 0x1.0d79e0708c847ac82173b495425p+0L : inexact-ok += clog upward ldbl-128 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3ddb0da251873p-28L 0x1.0d79e0708c847ac82173b4954251p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3ddb0da25187p-28L 0x1.0d79e0708c847ac82173b49542p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3ddb0da25187p-28L 0x1.0d79e0708c847ac82173b495428p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3ddb0da25187p-28L 0x1.0d79e0708c847ac82173b49542p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e511p-4L : 0x3.1e5ca088bf97eb3ddb0da25188p-28L 0x1.0d79e0708c847ac82173b495428p+0L : inexact-ok += clog downward dbl-64 0x7.eca928p-4 0xd.e655e694e5108p-4 : 0x3.1e5ca0198ce8ep-28 0x1.0d79e0708c847p+0 : inexact-ok += clog tonearest dbl-64 0x7.eca928p-4 0xd.e655e694e5108p-4 : 0x3.1e5ca0198ce8ep-28 0x1.0d79e0708c847p+0 : inexact-ok += clog towardzero dbl-64 0x7.eca928p-4 0xd.e655e694e5108p-4 : 0x3.1e5ca0198ce8ep-28 0x1.0d79e0708c847p+0 : inexact-ok += clog upward dbl-64 0x7.eca928p-4 0xd.e655e694e5108p-4 : 0x3.1e5ca0198ce9p-28 0x1.0d79e0708c848p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1ecp-28L 0x1.0d79e0708c8476dp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1fp-28L 0x1.0d79e0708c8476d2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1ecp-28L 0x1.0d79e0708c8476dp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1fp-28L 0x1.0d79e0708c8476d2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1ecp-28L 0x1.0d79e0708c8476dp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1fp-28L 0x1.0d79e0708c8476d2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1ecp-28L 0x1.0d79e0708c8476dp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1fp-28L 0x1.0d79e0708c8476d2p+0L : inexact-ok += clog downward ldbl-128 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1efb9bf3002d3e4p-28L 0x1.0d79e0708c8476d1cce13ffe96e2p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1efb9bf3002d3e6p-28L 0x1.0d79e0708c8476d1cce13ffe96e2p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1efb9bf3002d3e4p-28L 0x1.0d79e0708c8476d1cce13ffe96e2p+0L : inexact-ok += clog upward ldbl-128 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1efb9bf3002d3e6p-28L 0x1.0d79e0708c8476d1cce13ffe96e3p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1efb9bf3002d3p-28L 0x1.0d79e0708c8476d1cce13ffe968p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1efb9bf3002d4p-28L 0x1.0d79e0708c8476d1cce13ffe97p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1efb9bf3002d3p-28L 0x1.0d79e0708c8476d1cce13ffe968p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e5108p-4L : 0x3.1e5ca0198ce8e1efb9bf3002d4p-28L 0x1.0d79e0708c8476d1cce13ffe97p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a05p-28L 0x1.0d79e0708c847818p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a05p-28L 0x1.0d79e0708c84781ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a05p-28L 0x1.0d79e0708c847818p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a054p-28L 0x1.0d79e0708c84781ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a05p-28L 0x1.0d79e0708c847818p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a05p-28L 0x1.0d79e0708c84781ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a05p-28L 0x1.0d79e0708c847818p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a054p-28L 0x1.0d79e0708c84781ap+0L : inexact-ok += clog downward ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a050913f5aa9daa8p-28L 0x1.0d79e0708c8478192ded04dfb7fcp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a050913f5aa9daaap-28L 0x1.0d79e0708c8478192ded04dfb7fdp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a050913f5aa9daa8p-28L 0x1.0d79e0708c8478192ded04dfb7fcp+0L : inexact-ok += clog upward ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a050913f5aa9daaap-28L 0x1.0d79e0708c8478192ded04dfb7fdp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a050913f5aa9dap-28L 0x1.0d79e0708c8478192ded04dfb78p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a050913f5aa9dbp-28L 0x1.0d79e0708c8478192ded04dfb8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a050913f5aa9dap-28L 0x1.0d79e0708c8478192ded04dfb78p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a95p-4L : 0x3.1e5ca03d70a4a050913f5aa9dbp-28L 0x1.0d79e0708c8478192ded04dfb8p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6cp-28L 0x1.0d79e0708c847818p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a7p-28L 0x1.0d79e0708c847818p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6cp-28L 0x1.0d79e0708c847818p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a7p-28L 0x1.0d79e0708c84781ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6cp-28L 0x1.0d79e0708c847818p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a7p-28L 0x1.0d79e0708c847818p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6cp-28L 0x1.0d79e0708c847818p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a7p-28L 0x1.0d79e0708c84781ap+0L : inexact-ok += clog downward ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6f677b30cffe28p-28L 0x1.0d79e0708c847818af2272912527p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6f677b30cffe2ap-28L 0x1.0d79e0708c847818af2272912527p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6f677b30cffe28p-28L 0x1.0d79e0708c847818af2272912527p+0L : inexact-ok += clog upward ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6f677b30cffe2ap-28L 0x1.0d79e0708c847818af2272912528p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6f677b30cffep-28L 0x1.0d79e0708c847818af22729125p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6f677b30cffep-28L 0x1.0d79e0708c847818af22729125p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6f677b30cffep-28L 0x1.0d79e0708c847818af22729125p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94p-4L : 0x3.1e5ca03d62be4a6f677b30cfffp-28L 0x1.0d79e0708c847818af227291258p+0L : inexact-ok += clog downward ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x3.1e5ca03d655fe3d852bd9ff417dcp-28L 0x1.0d79e0708c847818c722e9bed3fcp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x3.1e5ca03d655fe3d852bd9ff417dcp-28L 0x1.0d79e0708c847818c722e9bed3fcp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x3.1e5ca03d655fe3d852bd9ff417dcp-28L 0x1.0d79e0708c847818c722e9bed3fcp+0L : inexact-ok += clog upward ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x3.1e5ca03d655fe3d852bd9ff417dep-28L 0x1.0d79e0708c847818c722e9bed3fdp+0L : inexact-ok += clog downward ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.1e5ca03d655fe3d852bdde809a5p-28L 0x1.0d79e0708c847818c722e9bed3fep+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.1e5ca03d655fe3d852bdde809a52p-28L 0x1.0d79e0708c847818c722e9bed3fep+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.1e5ca03d655fe3d852bdde809a5p-28L 0x1.0d79e0708c847818c722e9bed3fep+0L : inexact-ok += clog upward ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.1e5ca03d655fe3d852bdde809a52p-28L 0x1.0d79e0708c847818c722e9bed3ffp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.1e5ca03d655fe3d852bdde809ap-28L 0x1.0d79e0708c847818c722e9bed38p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.1e5ca03d655fe3d852bdde809ap-28L 0x1.0d79e0708c847818c722e9bed4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.1e5ca03d655fe3d852bdde809ap-28L 0x1.0d79e0708c847818c722e9bed38p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.1e5ca03d655fe3d852bdde809bp-28L 0x1.0d79e0708c847818c722e9bed4p+0L : inexact-ok += clog downward ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x3.1e5ca03d655fe3d852ba64eb2206p-28L 0x1.0d79e0708c847818c722e9bed3dep+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x3.1e5ca03d655fe3d852ba64eb2208p-28L 0x1.0d79e0708c847818c722e9bed3dfp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x3.1e5ca03d655fe3d852ba64eb2206p-28L 0x1.0d79e0708c847818c722e9bed3dep+0L : inexact-ok += clog upward ldbl-128 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x3.1e5ca03d655fe3d852ba64eb2208p-28L 0x1.0d79e0708c847818c722e9bed3dfp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x3.1e5ca03d655fe3d852ba64eb22p-28L 0x1.0d79e0708c847818c722e9bed38p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x3.1e5ca03d655fe3d852ba64eb22p-28L 0x1.0d79e0708c847818c722e9bed4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x3.1e5ca03d655fe3d852ba64eb22p-28L 0x1.0d79e0708c847818c722e9bed38p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca928p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x3.1e5ca03d655fe3d852ba64eb23p-28L 0x1.0d79e0708c847818c722e9bed4p+0L : inexact-ok += clog downward flt-32 0x7.eca92p-4f 0xd.e655fp-4f : 0x7.56a42p-28f 0x1.0d79ep+0f : inexact-ok += clog tonearest flt-32 0x7.eca92p-4f 0xd.e655fp-4f : 0x7.56a428p-28f 0x1.0d79e2p+0f : inexact-ok += clog towardzero flt-32 0x7.eca92p-4f 0xd.e655fp-4f : 0x7.56a42p-28f 0x1.0d79ep+0f : inexact-ok += clog upward flt-32 0x7.eca92p-4f 0xd.e655fp-4f : 0x7.56a428p-28f 0x1.0d79e2p+0f : inexact-ok += clog downward dbl-64 0x7.eca92p-4 0xd.e655fp-4 : 0x7.56a424a25b33cp-28 0x1.0d79e12a61e5cp+0 : inexact-ok += clog tonearest dbl-64 0x7.eca92p-4 0xd.e655fp-4 : 0x7.56a424a25b33cp-28 0x1.0d79e12a61e5cp+0 : inexact-ok += clog towardzero dbl-64 0x7.eca92p-4 0xd.e655fp-4 : 0x7.56a424a25b33cp-28 0x1.0d79e12a61e5cp+0 : inexact-ok += clog upward dbl-64 0x7.eca92p-4 0xd.e655fp-4 : 0x7.56a424a25b34p-28 0x1.0d79e12a61e5dp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8p-28L 0x1.0d79e12a61e5c0d2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8p-28L 0x1.0d79e12a61e5c0d2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8p-28L 0x1.0d79e12a61e5c0d2p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33cccp-28L 0x1.0d79e12a61e5c0d4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8p-28L 0x1.0d79e12a61e5c0d2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8p-28L 0x1.0d79e12a61e5c0d2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8p-28L 0x1.0d79e12a61e5c0d2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33cccp-28L 0x1.0d79e12a61e5c0d4p+0L : inexact-ok += clog downward ldbl-128 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8e5b172d6246cp-28L 0x1.0d79e12a61e5c0d2f827376f9f89p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8e5b172d6247p-28L 0x1.0d79e12a61e5c0d2f827376f9f89p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8e5b172d6246cp-28L 0x1.0d79e12a61e5c0d2f827376f9f89p+0L : inexact-ok += clog upward ldbl-128 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8e5b172d6247p-28L 0x1.0d79e12a61e5c0d2f827376f9f8ap+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8e5b172d624p-28L 0x1.0d79e12a61e5c0d2f827376f9f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8e5b172d624p-28L 0x1.0d79e12a61e5c0d2f827376f9f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8e5b172d624p-28L 0x1.0d79e12a61e5c0d2f827376f9f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca92p-4L 0xd.e655fp-4L : 0x7.56a424a25b33ccb8e5b172d626p-28L 0x1.0d79e12a61e5c0d2f827376fap+0L : inexact-ok += clog downward flt-32 0x7.eca92p-4f 0xd.e655ep-4f : -0x6.8fb1c8p-28f 0x1.0d79ep+0f : inexact-ok += clog tonearest flt-32 0x7.eca92p-4f 0xd.e655ep-4f : -0x6.8fb1cp-28f 0x1.0d79ep+0f : inexact-ok += clog towardzero flt-32 0x7.eca92p-4f 0xd.e655ep-4f : -0x6.8fb1cp-28f 0x1.0d79ep+0f : inexact-ok += clog upward flt-32 0x7.eca92p-4f 0xd.e655ep-4f : -0x6.8fb1cp-28f 0x1.0d79e2p+0f : inexact-ok += clog downward dbl-64 0x7.eca92p-4 0xd.e655ep-4 : -0x6.8fb1c2b0cfd28p-28 0x1.0d79e0ab9753cp+0 : inexact-ok += clog tonearest dbl-64 0x7.eca92p-4 0xd.e655ep-4 : -0x6.8fb1c2b0cfd28p-28 0x1.0d79e0ab9753cp+0 : inexact-ok += clog towardzero dbl-64 0x7.eca92p-4 0xd.e655ep-4 : -0x6.8fb1c2b0cfd24p-28 0x1.0d79e0ab9753cp+0 : inexact-ok += clog upward dbl-64 0x7.eca92p-4 0xd.e655ep-4 : -0x6.8fb1c2b0cfd24p-28 0x1.0d79e0ab9753dp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd27758p-28L 0x1.0d79e0ab9753c6fap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd2775p-28L 0x1.0d79e0ab9753c6fcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd2775p-28L 0x1.0d79e0ab9753c6fap+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd2775p-28L 0x1.0d79e0ab9753c6fcp+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd27758p-28L 0x1.0d79e0ab9753c6fap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd2775p-28L 0x1.0d79e0ab9753c6fcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd2775p-28L 0x1.0d79e0ab9753c6fap+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd2775p-28L 0x1.0d79e0ab9753c6fcp+0L : inexact-ok += clog downward ldbl-128 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd277511b927c5aa21p-28L 0x1.0d79e0ab9753c6fb83b0a8922ae8p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd277511b927c5aa21p-28L 0x1.0d79e0ab9753c6fb83b0a8922ae8p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd277511b927c5aa20cp-28L 0x1.0d79e0ab9753c6fb83b0a8922ae8p+0L : inexact-ok += clog upward ldbl-128 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd277511b927c5aa20cp-28L 0x1.0d79e0ab9753c6fb83b0a8922ae9p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd277511b927c5aa4p-28L 0x1.0d79e0ab9753c6fb83b0a8922a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd277511b927c5aa2p-28L 0x1.0d79e0ab9753c6fb83b0a8922bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd277511b927c5aa2p-28L 0x1.0d79e0ab9753c6fb83b0a8922a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca92p-4L 0xd.e655ep-4L : -0x6.8fb1c2b0cfd277511b927c5aa2p-28L 0x1.0d79e0ab9753c6fb83b0a8922bp+0L : inexact-ok += clog downward dbl-64 0x7.eca92p-4 0xd.e655e694e511p-4 : -0xd.7f7f0e70734c8p-32 0x1.0d79e0dfbf339p+0 : inexact-ok += clog tonearest dbl-64 0x7.eca92p-4 0xd.e655e694e511p-4 : -0xd.7f7f0e70734c8p-32 0x1.0d79e0dfbf33ap+0 : inexact-ok += clog towardzero dbl-64 0x7.eca92p-4 0xd.e655e694e511p-4 : -0xd.7f7f0e70734cp-32 0x1.0d79e0dfbf339p+0 : inexact-ok += clog upward dbl-64 0x7.eca92p-4 0xd.e655e694e511p-4 : -0xd.7f7f0e70734cp-32 0x1.0d79e0dfbf33ap+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70cp-32L 0x1.0d79e0dfbf339f9ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70bp-32L 0x1.0d79e0dfbf339fap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70bp-32L 0x1.0d79e0dfbf339f9ep+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70bp-32L 0x1.0d79e0dfbf339fap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70cp-32L 0x1.0d79e0dfbf339f9ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70bp-32L 0x1.0d79e0dfbf339fap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70bp-32L 0x1.0d79e0dfbf339f9ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70bp-32L 0x1.0d79e0dfbf339fap+0L : inexact-ok += clog downward ldbl-128 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70b1839d7051747p-32L 0x1.0d79e0dfbf339f9fba99d2e91ce7p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70b1839d70517468p-32L 0x1.0d79e0dfbf339f9fba99d2e91ce8p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70b1839d70517468p-32L 0x1.0d79e0dfbf339f9fba99d2e91ce7p+0L : inexact-ok += clog upward ldbl-128 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70b1839d70517468p-32L 0x1.0d79e0dfbf339f9fba99d2e91ce8p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70b1839d705178p-32L 0x1.0d79e0dfbf339f9fba99d2e91c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70b1839d705174p-32L 0x1.0d79e0dfbf339f9fba99d2e91dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70b1839d705174p-32L 0x1.0d79e0dfbf339f9fba99d2e91c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e511p-4L : -0xd.7f7f0e70734c70b1839d705174p-32L 0x1.0d79e0dfbf339f9fba99d2e91dp+0L : inexact-ok += clog downward dbl-64 0x7.eca92p-4 0xd.e655e694e5108p-4 : -0xd.7f7f15639e408p-32 0x1.0d79e0dfbf339p+0 : inexact-ok += clog tonearest dbl-64 0x7.eca92p-4 0xd.e655e694e5108p-4 : -0xd.7f7f15639e408p-32 0x1.0d79e0dfbf33ap+0 : inexact-ok += clog towardzero dbl-64 0x7.eca92p-4 0xd.e655e694e5108p-4 : -0xd.7f7f15639e4p-32 0x1.0d79e0dfbf339p+0 : inexact-ok += clog upward dbl-64 0x7.eca92p-4 0xd.e655e694e5108p-4 : -0xd.7f7f15639e4p-32 0x1.0d79e0dfbf33ap+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076dp-32L 0x1.0d79e0dfbf339ba8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076cp-32L 0x1.0d79e0dfbf339baap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076cp-32L 0x1.0d79e0dfbf339ba8p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076cp-32L 0x1.0d79e0dfbf339baap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076dp-32L 0x1.0d79e0dfbf339ba8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076cp-32L 0x1.0d79e0dfbf339baap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076cp-32L 0x1.0d79e0dfbf339ba8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076cp-32L 0x1.0d79e0dfbf339baap+0L : inexact-ok += clog downward ldbl-128 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076c29397e66b45ap-32L 0x1.0d79e0dfbf339ba9660967f22f65p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076c29397e66b4598p-32L 0x1.0d79e0dfbf339ba9660967f22f65p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076c29397e66b4598p-32L 0x1.0d79e0dfbf339ba9660967f22f65p+0L : inexact-ok += clog upward ldbl-128 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076c29397e66b4598p-32L 0x1.0d79e0dfbf339ba9660967f22f66p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076c29397e66b48p-32L 0x1.0d79e0dfbf339ba9660967f22fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076c29397e66b44p-32L 0x1.0d79e0dfbf339ba9660967f22f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076c29397e66b44p-32L 0x1.0d79e0dfbf339ba9660967f22fp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e5108p-4L : -0xd.7f7f15639e4076c29397e66b44p-32L 0x1.0d79e0dfbf339ba9660967f22f8p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283745p-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283745p-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744p-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744p-32L 0x1.0d79e0dfbf339cf2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283745p-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283745p-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744p-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744p-32L 0x1.0d79e0dfbf339cf2p+0L : inexact-ok += clog downward ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744d51cc1fe72718p-32L 0x1.0d79e0dfbf339cf0c714847821d3p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744d51cc1fe72718p-32L 0x1.0d79e0dfbf339cf0c714847821d4p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744d51cc1fe7271p-32L 0x1.0d79e0dfbf339cf0c714847821d3p+0L : inexact-ok += clog upward ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744d51cc1fe7271p-32L 0x1.0d79e0dfbf339cf0c714847821d4p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744d51cc1fe728p-32L 0x1.0d79e0dfbf339cf0c7148478218p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744d51cc1fe728p-32L 0x1.0d79e0dfbf339cf0c714847822p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744d51cc1fe724p-32L 0x1.0d79e0dfbf339cf0c7148478218p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a95p-4L : -0xd.7f7f13256283744d51cc1fe724p-32L 0x1.0d79e0dfbf339cf0c714847822p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2dp-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2dp-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2cp-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2cp-32L 0x1.0d79e0dfbf339cf2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2dp-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2dp-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2cp-32L 0x1.0d79e0dfbf339cfp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2cp-32L 0x1.0d79e0dfbf339cf2p+0L : inexact-ok += clog downward ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2ce13ee1fef14e8p-32L 0x1.0d79e0dfbf339cf04849f26ac2f6p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2ce13ee1fef14e8p-32L 0x1.0d79e0dfbf339cf04849f26ac2f6p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2ce13ee1fef14ep-32L 0x1.0d79e0dfbf339cf04849f26ac2f6p+0L : inexact-ok += clog upward ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2ce13ee1fef14ep-32L 0x1.0d79e0dfbf339cf04849f26ac2f7p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2ce13ee1fef18p-32L 0x1.0d79e0dfbf339cf04849f26ac28p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2ce13ee1fef14p-32L 0x1.0d79e0dfbf339cf04849f26ac3p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2ce13ee1fef14p-32L 0x1.0d79e0dfbf339cf04849f26ac28p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94p-4L : -0xd.7f7f132640e8d2ce13ee1fef14p-32L 0x1.0d79e0dfbf339cf04849f26ac3p+0L : inexact-ok += clog downward ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0xd.7f7f132616cf3c2a85ded3530ae8p-32L 0x1.0d79e0dfbf339cf0604a698c19f9p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0xd.7f7f132616cf3c2a85ded3530aep-32L 0x1.0d79e0dfbf339cf0604a698c19f9p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0xd.7f7f132616cf3c2a85ded3530aep-32L 0x1.0d79e0dfbf339cf0604a698c19f9p+0L : inexact-ok += clog upward ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0xd.7f7f132616cf3c2a85ded3530aep-32L 0x1.0d79e0dfbf339cf0604a698c19fap+0L : inexact-ok += clog downward ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0xd.7f7f132616cf3c2a85daea8ae1ap-32L 0x1.0d79e0dfbf339cf0604a698c19fbp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0xd.7f7f132616cf3c2a85daea8ae1ap-32L 0x1.0d79e0dfbf339cf0604a698c19fbp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0xd.7f7f132616cf3c2a85daea8ae198p-32L 0x1.0d79e0dfbf339cf0604a698c19fbp+0L : inexact-ok += clog upward ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0xd.7f7f132616cf3c2a85daea8ae198p-32L 0x1.0d79e0dfbf339cf0604a698c19fcp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0xd.7f7f132616cf3c2a85daea8ae4p-32L 0x1.0d79e0dfbf339cf0604a698c198p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0xd.7f7f132616cf3c2a85daea8aep-32L 0x1.0d79e0dfbf339cf0604a698c1ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0xd.7f7f132616cf3c2a85daea8aep-32L 0x1.0d79e0dfbf339cf0604a698c198p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0xd.7f7f132616cf3c2a85daea8aep-32L 0x1.0d79e0dfbf339cf0604a698c1ap+0L : inexact-ok += clog downward ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0xd.7f7f132616cf3c2a861283e281dp-32L 0x1.0d79e0dfbf339cf0604a698c19dbp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0xd.7f7f132616cf3c2a861283e281dp-32L 0x1.0d79e0dfbf339cf0604a698c19dcp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0xd.7f7f132616cf3c2a861283e281c8p-32L 0x1.0d79e0dfbf339cf0604a698c19dbp+0L : inexact-ok += clog upward ldbl-128 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0xd.7f7f132616cf3c2a861283e281c8p-32L 0x1.0d79e0dfbf339cf0604a698c19dcp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0xd.7f7f132616cf3c2a861283e284p-32L 0x1.0d79e0dfbf339cf0604a698c198p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0xd.7f7f132616cf3c2a861283e28p-32L 0x1.0d79e0dfbf339cf0604a698c1ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0xd.7f7f132616cf3c2a861283e28p-32L 0x1.0d79e0dfbf339cf0604a698c198p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca92p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0xd.7f7f132616cf3c2a861283e28p-32L 0x1.0d79e0dfbf339cf0604a698c1ap+0L : inexact-ok += clog downward dbl-64 0x7.eca921b40e02cp-4 0xd.e655fp-4 : 0x8.2e9c1500bb31p-28 0x1.0d79e112b4d8bp+0 : inexact-ok += clog tonearest dbl-64 0x7.eca921b40e02cp-4 0xd.e655fp-4 : 0x8.2e9c1500bb318p-28 0x1.0d79e112b4d8cp+0 : inexact-ok += clog towardzero dbl-64 0x7.eca921b40e02cp-4 0xd.e655fp-4 : 0x8.2e9c1500bb31p-28 0x1.0d79e112b4d8bp+0 : inexact-ok += clog upward dbl-64 0x7.eca921b40e02cp-4 0xd.e655fp-4 : 0x8.2e9c1500bb318p-28 0x1.0d79e112b4d8cp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cp-28L 0x1.0d79e112b4d8bc1cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177dp-28L 0x1.0d79e112b4d8bc1ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cp-28L 0x1.0d79e112b4d8bc1cp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177dp-28L 0x1.0d79e112b4d8bc1ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cp-28L 0x1.0d79e112b4d8bc1cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177dp-28L 0x1.0d79e112b4d8bc1ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cp-28L 0x1.0d79e112b4d8bc1cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177dp-28L 0x1.0d79e112b4d8bc1ep+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cd294462b35c08p-28L 0x1.0d79e112b4d8bc1dd598713f0d17p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cd294462b35c08p-28L 0x1.0d79e112b4d8bc1dd598713f0d17p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cd294462b35c08p-28L 0x1.0d79e112b4d8bc1dd598713f0d17p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cd294462b35c1p-28L 0x1.0d79e112b4d8bc1dd598713f0d18p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cd294462b35cp-28L 0x1.0d79e112b4d8bc1dd598713f0dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cd294462b35cp-28L 0x1.0d79e112b4d8bc1dd598713f0dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cd294462b35cp-28L 0x1.0d79e112b4d8bc1dd598713f0dp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655fp-4L : 0x8.2e9c1500bb3177cd294462b36p-28L 0x1.0d79e112b4d8bc1dd598713f0d8p+0L : inexact-ok += clog downward dbl-64 0x7.eca921b40e02cp-4 0xd.e655ep-4 : -0x5.b7b9d0db32c5cp-28 0x1.0d79e093ea46bp+0 : inexact-ok += clog tonearest dbl-64 0x7.eca921b40e02cp-4 0xd.e655ep-4 : -0x5.b7b9d0db32c5cp-28 0x1.0d79e093ea46bp+0 : inexact-ok += clog towardzero dbl-64 0x7.eca921b40e02cp-4 0xd.e655ep-4 : -0x5.b7b9d0db32c58p-28 0x1.0d79e093ea46bp+0 : inexact-ok += clog upward dbl-64 0x7.eca921b40e02cp-4 0xd.e655ep-4 : -0x5.b7b9d0db32c58p-28 0x1.0d79e093ea46cp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2ep-28L 0x1.0d79e093ea46b464p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2ep-28L 0x1.0d79e093ea46b464p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2d8p-28L 0x1.0d79e093ea46b464p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2d8p-28L 0x1.0d79e093ea46b466p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2ep-28L 0x1.0d79e093ea46b464p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2ep-28L 0x1.0d79e093ea46b464p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2d8p-28L 0x1.0d79e093ea46b464p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2d8p-28L 0x1.0d79e093ea46b466p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2dea9db70d6414p-28L 0x1.0d79e093ea46b4645ea8086c2808p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2dea9db70d6414p-28L 0x1.0d79e093ea46b4645ea8086c2809p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2dea9db70d6413cp-28L 0x1.0d79e093ea46b4645ea8086c2808p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2dea9db70d6413cp-28L 0x1.0d79e093ea46b4645ea8086c2809p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2dea9db70d642p-28L 0x1.0d79e093ea46b4645ea8086c28p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2dea9db70d642p-28L 0x1.0d79e093ea46b4645ea8086c28p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2dea9db70d64p-28L 0x1.0d79e093ea46b4645ea8086c28p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655ep-4L : -0x5.b7b9d0db32c5b2dea9db70d64p-28L 0x1.0d79e093ea46b4645ea8086c288p+0L : inexact-ok += clog downward dbl-64 0x7.eca921b40e02cp-4 0xd.e655e694e511p-4 : 0x5.43b00f60dc14p-56 0x1.0d79e0c812269p+0 : inexact-ok += clog tonearest dbl-64 0x7.eca921b40e02cp-4 0xd.e655e694e511p-4 : 0x5.43b00f60dc144p-56 0x1.0d79e0c812269p+0 : inexact-ok += clog towardzero dbl-64 0x7.eca921b40e02cp-4 0xd.e655e694e511p-4 : 0x5.43b00f60dc14p-56 0x1.0d79e0c812269p+0 : inexact-ok += clog upward dbl-64 0x7.eca921b40e02cp-4 0xd.e655e694e511p-4 : 0x5.43b00f60dc144p-56 0x1.0d79e0c81226ap+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c48p-56L 0x1.0d79e0c8122692bep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c48p-56L 0x1.0d79e0c8122692bep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c48p-56L 0x1.0d79e0c8122692bep+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c5p-56L 0x1.0d79e0c8122692cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c48p-56L 0x1.0d79e0c8122692bep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c48p-56L 0x1.0d79e0c8122692bep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c48p-56L 0x1.0d79e0c8122692bep+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c5p-56L 0x1.0d79e0c8122692cp+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c4939c5158de838p-56L 0x1.0d79e0c8122692be87d76ac824bcp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c4939c5158de83cp-56L 0x1.0d79e0c8122692be87d76ac824bcp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c4939c5158de838p-56L 0x1.0d79e0c8122692be87d76ac824bcp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c4939c5158de83cp-56L 0x1.0d79e0c8122692be87d76ac824bdp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c4939c5158de8p-56L 0x1.0d79e0c8122692be87d76ac8248p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c4939c5158de8p-56L 0x1.0d79e0c8122692be87d76ac8248p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c4939c5158de8p-56L 0x1.0d79e0c8122692be87d76ac8248p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e511p-4L : 0x5.43b00f60dc142c4939c5158deap-56L 0x1.0d79e0c8122692be87d76ac825p+0L : inexact-ok += clog downward dbl-64 0x7.eca921b40e02cp-4 0xd.e655e694e5108p-4 : -0x1.af7ae3e996742p-56 0x1.0d79e0c812268p+0 : inexact-ok += clog tonearest dbl-64 0x7.eca921b40e02cp-4 0xd.e655e694e5108p-4 : -0x1.af7ae3e996742p-56 0x1.0d79e0c812269p+0 : inexact-ok += clog towardzero dbl-64 0x7.eca921b40e02cp-4 0xd.e655e694e5108p-4 : -0x1.af7ae3e996741p-56 0x1.0d79e0c812268p+0 : inexact-ok += clog upward dbl-64 0x7.eca921b40e02cp-4 0xd.e655e694e5108p-4 : -0x1.af7ae3e996741p-56 0x1.0d79e0c812269p+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad8p-56L 0x1.0d79e0c812268ec8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad8p-56L 0x1.0d79e0c812268ec8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad6p-56L 0x1.0d79e0c812268ec8p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad6p-56L 0x1.0d79e0c812268ecap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad8p-56L 0x1.0d79e0c812268ec8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad8p-56L 0x1.0d79e0c812268ec8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad6p-56L 0x1.0d79e0c812268ec8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad6p-56L 0x1.0d79e0c812268ecap+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad73f066a8e266cp-56L 0x1.0d79e0c812268ec8334690c1236ap+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad73f066a8e266cp-56L 0x1.0d79e0c812268ec8334690c1236ap+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad73f066a8e266bp-56L 0x1.0d79e0c812268ec8334690c1236ap+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad73f066a8e266bp-56L 0x1.0d79e0c812268ec8334690c1236bp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad73f066a8e268p-56L 0x1.0d79e0c812268ec8334690c123p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad73f066a8e268p-56L 0x1.0d79e0c812268ec8334690c1238p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad73f066a8e26p-56L 0x1.0d79e0c812268ec8334690c123p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e5108p-4L : -0x1.af7ae3e996741ad73f066a8e26p-56L 0x1.0d79e0c812268ec8334690c1238p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adp-60L 0x1.0d79e0c81226900ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324aep-60L 0x1.0d79e0c81226901p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adp-60L 0x1.0d79e0c81226900ep+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324aep-60L 0x1.0d79e0c81226901p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adp-60L 0x1.0d79e0c81226900ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324aep-60L 0x1.0d79e0c81226901p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adp-60L 0x1.0d79e0c81226900ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324aep-60L 0x1.0d79e0c81226901p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adc1fe259439d88p-60L 0x1.0d79e0c81226900f9451d11fa63dp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adc1fe259439d88p-60L 0x1.0d79e0c81226900f9451d11fa63dp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adc1fe259439d88p-60L 0x1.0d79e0c81226900f9451d11fa63dp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adc1fe259439d9p-60L 0x1.0d79e0c81226900f9451d11fa63ep+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adc1fe259439cp-60L 0x1.0d79e0c81226900f9451d11fa6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adc1fe259439cp-60L 0x1.0d79e0c81226900f9451d11fa6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adc1fe259439cp-60L 0x1.0d79e0c81226900f9451d11fa6p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a95p-4L : 0x8.ec0d8dc50c324adc1fe25943ap-60L 0x1.0d79e0c81226900f9451d11fa68p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a4p-60L 0x1.0d79e0c81226900ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a4p-60L 0x1.0d79e0c81226901p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a4p-60L 0x1.0d79e0c81226900ep+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a5p-60L 0x1.0d79e0c81226901p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a4p-60L 0x1.0d79e0c81226900ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a4p-60L 0x1.0d79e0c81226901p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a4p-60L 0x1.0d79e0c81226900ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a5p-60L 0x1.0d79e0c81226901p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a424c47730a2488p-60L 0x1.0d79e0c81226900f15873f04655dp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a424c47730a2488p-60L 0x1.0d79e0c81226900f15873f04655dp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a424c47730a2488p-60L 0x1.0d79e0c81226900f15873f04655dp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a424c47730a249p-60L 0x1.0d79e0c81226900f15873f04655ep+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a424c47730a24p-60L 0x1.0d79e0c81226900f15873f0465p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a424c47730a24p-60L 0x1.0d79e0c81226900f15873f04658p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a424c47730a24p-60L 0x1.0d79e0c81226900f15873f0465p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94p-4L : 0x8.de2737de774d3a424c47730a28p-60L 0x1.0d79e0c81226900f15873f04658p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x8.e0c8d1486925a750b84b09d85858p-60L 0x1.0d79e0c81226900f2d87b6285d28p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x8.e0c8d1486925a750b84b09d8586p-60L 0x1.0d79e0c81226900f2d87b6285d28p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x8.e0c8d1486925a750b84b09d85858p-60L 0x1.0d79e0c81226900f2d87b6285d28p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x8.e0c8d1486925a750b84b09d8586p-60L 0x1.0d79e0c81226900f2d87b6285d29p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x8.e0c8d1486925e5dd3ad8a7df231p-60L 0x1.0d79e0c81226900f2d87b6285d2ap+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x8.e0c8d1486925e5dd3ad8a7df231p-60L 0x1.0d79e0c81226900f2d87b6285d2ap+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x8.e0c8d1486925e5dd3ad8a7df231p-60L 0x1.0d79e0c81226900f2d87b6285d2ap+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x8.e0c8d1486925e5dd3ad8a7df2318p-60L 0x1.0d79e0c81226900f2d87b6285d2bp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x8.e0c8d1486925e5dd3ad8a7df2p-60L 0x1.0d79e0c81226900f2d87b6285dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x8.e0c8d1486925e5dd3ad8a7df24p-60L 0x1.0d79e0c81226900f2d87b6285dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x8.e0c8d1486925e5dd3ad8a7df2p-60L 0x1.0d79e0c81226900f2d87b6285dp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x8.e0c8d1486925e5dd3ad8a7df24p-60L 0x1.0d79e0c81226900f2d87b6285d8p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x8.e0c8d14869226c47c1336e9afc98p-60L 0x1.0d79e0c81226900f2d87b6285d0ap+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x8.e0c8d14869226c47c1336e9afcap-60L 0x1.0d79e0c81226900f2d87b6285d0bp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x8.e0c8d14869226c47c1336e9afc98p-60L 0x1.0d79e0c81226900f2d87b6285d0ap+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x8.e0c8d14869226c47c1336e9afcap-60L 0x1.0d79e0c81226900f2d87b6285d0bp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x8.e0c8d14869226c47c1336e9afcp-60L 0x1.0d79e0c81226900f2d87b6285dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x8.e0c8d14869226c47c1336e9afcp-60L 0x1.0d79e0c81226900f2d87b6285dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x8.e0c8d14869226c47c1336e9afcp-60L 0x1.0d79e0c81226900f2d87b6285dp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02cp-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x8.e0c8d14869226c47c1336e9bp-60L 0x1.0d79e0c81226900f2d87b6285d8p+0L : inexact-ok += clog downward dbl-64 0x7.eca921b40e028p-4 0xd.e655fp-4 : 0x8.2e9c14e1088dp-28 0x1.0d79e112b4d8bp+0 : inexact-ok += clog tonearest dbl-64 0x7.eca921b40e028p-4 0xd.e655fp-4 : 0x8.2e9c14e1088dp-28 0x1.0d79e112b4d8cp+0 : inexact-ok += clog towardzero dbl-64 0x7.eca921b40e028p-4 0xd.e655fp-4 : 0x8.2e9c14e1088dp-28 0x1.0d79e112b4d8bp+0 : inexact-ok += clog upward dbl-64 0x7.eca921b40e028p-4 0xd.e655fp-4 : 0x8.2e9c14e1088d8p-28 0x1.0d79e112b4d8cp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d116p-28L 0x1.0d79e112b4d8bf96p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d117p-28L 0x1.0d79e112b4d8bf98p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d116p-28L 0x1.0d79e112b4d8bf96p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d117p-28L 0x1.0d79e112b4d8bf98p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d116p-28L 0x1.0d79e112b4d8bf96p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d117p-28L 0x1.0d79e112b4d8bf98p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d116p-28L 0x1.0d79e112b4d8bf96p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d117p-28L 0x1.0d79e112b4d8bf98p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d11684350a74d37dp-28L 0x1.0d79e112b4d8bf976b10e36aab63p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d11684350a74d37dp-28L 0x1.0d79e112b4d8bf976b10e36aab64p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d11684350a74d37dp-28L 0x1.0d79e112b4d8bf976b10e36aab63p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d11684350a74d37d8p-28L 0x1.0d79e112b4d8bf976b10e36aab64p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d11684350a74d34p-28L 0x1.0d79e112b4d8bf976b10e36aabp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d11684350a74d38p-28L 0x1.0d79e112b4d8bf976b10e36aab8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d11684350a74d34p-28L 0x1.0d79e112b4d8bf976b10e36aabp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655fp-4L : 0x8.2e9c14e1088d11684350a74d38p-28L 0x1.0d79e112b4d8bf976b10e36aab8p+0L : inexact-ok += clog downward dbl-64 0x7.eca921b40e028p-4 0xd.e655ep-4 : -0x5.b7b9d0fae56a8p-28 0x1.0d79e093ea46bp+0 : inexact-ok += clog tonearest dbl-64 0x7.eca921b40e028p-4 0xd.e655ep-4 : -0x5.b7b9d0fae56a4p-28 0x1.0d79e093ea46bp+0 : inexact-ok += clog towardzero dbl-64 0x7.eca921b40e028p-4 0xd.e655ep-4 : -0x5.b7b9d0fae56a4p-28 0x1.0d79e093ea46bp+0 : inexact-ok += clog upward dbl-64 0x7.eca921b40e028p-4 0xd.e655ep-4 : -0x5.b7b9d0fae56a4p-28 0x1.0d79e093ea46cp+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a5058p-28L 0x1.0d79e093ea46b7dcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a5058p-28L 0x1.0d79e093ea46b7dep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a505p-28L 0x1.0d79e093ea46b7dcp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a505p-28L 0x1.0d79e093ea46b7dep+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a5058p-28L 0x1.0d79e093ea46b7dcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a5058p-28L 0x1.0d79e093ea46b7dep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a505p-28L 0x1.0d79e093ea46b7dcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a505p-28L 0x1.0d79e093ea46b7dep+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a50567f74bc0c859cp-28L 0x1.0d79e093ea46b7ddf42284378564p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a50567f74bc0c859cp-28L 0x1.0d79e093ea46b7ddf42284378565p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a50567f74bc0c8598p-28L 0x1.0d79e093ea46b7ddf42284378564p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a50567f74bc0c8598p-28L 0x1.0d79e093ea46b7ddf42284378565p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a50567f74bc0c86p-28L 0x1.0d79e093ea46b7ddf422843785p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a50567f74bc0c86p-28L 0x1.0d79e093ea46b7ddf4228437858p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a50567f74bc0c84p-28L 0x1.0d79e093ea46b7ddf422843785p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655ep-4L : -0x5.b7b9d0fae56a50567f74bc0c84p-28L 0x1.0d79e093ea46b7ddf4228437858p+0L : inexact-ok += clog downward dbl-64 0x7.eca921b40e028p-4 0xd.e655e694e511p-4 : 0x3.4885c6f3d8938p-56 0x1.0d79e0c812269p+0 : inexact-ok += clog tonearest dbl-64 0x7.eca921b40e028p-4 0xd.e655e694e511p-4 : 0x3.4885c6f3d893ap-56 0x1.0d79e0c812269p+0 : inexact-ok += clog towardzero dbl-64 0x7.eca921b40e028p-4 0xd.e655e694e511p-4 : 0x3.4885c6f3d8938p-56 0x1.0d79e0c812269p+0 : inexact-ok += clog upward dbl-64 0x7.eca921b40e028p-4 0xd.e655e694e511p-4 : 0x3.4885c6f3d893ap-56 0x1.0d79e0c81226ap+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d8939538p-56L 0x1.0d79e0c812269638p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d8939538p-56L 0x1.0d79e0c812269638p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d8939538p-56L 0x1.0d79e0c812269638p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d893953cp-56L 0x1.0d79e0c81226963ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d8939538p-56L 0x1.0d79e0c812269638p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d8939538p-56L 0x1.0d79e0c812269638p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d8939538p-56L 0x1.0d79e0c812269638p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d893953cp-56L 0x1.0d79e0c81226963ap+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d893953851d0776eba4p-56L 0x1.0d79e0c8122696381d51100168dep+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d893953851d0776eba4p-56L 0x1.0d79e0c8122696381d51100168dep+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d893953851d0776eba4p-56L 0x1.0d79e0c8122696381d51100168dep+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d893953851d0776eba42p-56L 0x1.0d79e0c8122696381d51100168dfp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d893953851d0776ebap-56L 0x1.0d79e0c8122696381d511001688p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d893953851d0776ebap-56L 0x1.0d79e0c8122696381d51100169p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d893953851d0776ebap-56L 0x1.0d79e0c8122696381d511001688p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e511p-4L : 0x3.4885c6f3d893953851d0776ebbp-56L 0x1.0d79e0c8122696381d51100169p+0L : inexact-ok += clog downward dbl-64 0x7.eca921b40e028p-4 0xd.e655e694e5108p-4 : -0x3.aaa52c5699f4ep-56 0x1.0d79e0c812269p+0 : inexact-ok += clog tonearest dbl-64 0x7.eca921b40e028p-4 0xd.e655e694e5108p-4 : -0x3.aaa52c5699f4cp-56 0x1.0d79e0c812269p+0 : inexact-ok += clog towardzero dbl-64 0x7.eca921b40e028p-4 0xd.e655e694e5108p-4 : -0x3.aaa52c5699f4cp-56 0x1.0d79e0c812269p+0 : inexact-ok += clog upward dbl-64 0x7.eca921b40e028p-4 0xd.e655e694e5108p-4 : -0x3.aaa52c5699f4cp-56 0x1.0d79e0c81226ap+0 : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd74p-56L 0x1.0d79e0c81226924p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd7p-56L 0x1.0d79e0c812269242p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd7p-56L 0x1.0d79e0c81226924p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd7p-56L 0x1.0d79e0c812269242p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd74p-56L 0x1.0d79e0c81226924p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd7p-56L 0x1.0d79e0c812269242p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd7p-56L 0x1.0d79e0c81226924p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd7p-56L 0x1.0d79e0c812269242p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd719ed37ccf8628p-56L 0x1.0d79e0c812269241c8c035fa679cp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd719ed37ccf8628p-56L 0x1.0d79e0c812269241c8c035fa679dp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd719ed37ccf8626p-56L 0x1.0d79e0c812269241c8c035fa679cp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd719ed37ccf8626p-56L 0x1.0d79e0c812269241c8c035fa679dp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd719ed37ccf87p-56L 0x1.0d79e0c812269241c8c035fa678p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd719ed37ccf86p-56L 0x1.0d79e0c812269241c8c035fa678p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd719ed37ccf86p-56L 0x1.0d79e0c812269241c8c035fa678p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e5108p-4L : -0x3.aaa52c5699f4cd719ed37ccf86p-56L 0x1.0d79e0c812269241c8c035fa68p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd850ap-56L 0x1.0d79e0c812269388p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd850ap-56L 0x1.0d79e0c81226938ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd8508p-56L 0x1.0d79e0c812269388p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd8508p-56L 0x1.0d79e0c81226938ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd850ap-56L 0x1.0d79e0c812269388p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd850ap-56L 0x1.0d79e0c81226938ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd8508p-56L 0x1.0d79e0c812269388p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd8508p-56L 0x1.0d79e0c81226938ap+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd85095f80b0319c5dp-56L 0x1.0d79e0c81226938929cb7658ea6ap+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd85095f80b0319c5cp-56L 0x1.0d79e0c81226938929cb7658ea6bp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd85095f80b0319c5cp-56L 0x1.0d79e0c81226938929cb7658ea6ap+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd85095f80b0319c5cp-56L 0x1.0d79e0c81226938929cb7658ea6bp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd85095f80b0319c8p-56L 0x1.0d79e0c81226938929cb7658eap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd85095f80b0319c8p-56L 0x1.0d79e0c81226938929cb7658ea8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd85095f80b0319cp-56L 0x1.0d79e0c81226938929cb7658eap+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a95p-4L : -0x1.6c696f90b2bd85095f80b0319cp-56L 0x1.0d79e0c81226938929cb7658ea8p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd618p-56L 0x1.0d79e0c812269388p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd616p-56L 0x1.0d79e0c812269388p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd616p-56L 0x1.0d79e0c812269388p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd616p-56L 0x1.0d79e0c81226938ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd618p-56L 0x1.0d79e0c812269388p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd616p-56L 0x1.0d79e0c812269388p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd616p-56L 0x1.0d79e0c812269388p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd616p-56L 0x1.0d79e0c81226938ap+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd6166de959a3b833p-56L 0x1.0d79e0c812269388ab00e43da98ap+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd6166de959a3b833p-56L 0x1.0d79e0c812269388ab00e43da98ap+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd6166de959a3b832p-56L 0x1.0d79e0c812269388ab00e43da98ap+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd6166de959a3b832p-56L 0x1.0d79e0c812269388ab00e43da98bp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd6166de959a3b88p-56L 0x1.0d79e0c812269388ab00e43da98p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd6166de959a3b8p-56L 0x1.0d79e0c812269388ab00e43da98p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd6166de959a3b8p-56L 0x1.0d79e0c812269388ab00e43da98p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94p-4L : -0x1.6d47d4ef1c0bd6166de959a3b8p-56L 0x1.0d79e0c812269388ab00e43daap+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x1.6d1dbb587cee4f44e059dd64ea21p-56L 0x1.0d79e0c812269388c3015b61a155p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x1.6d1dbb587cee4f44e059dd64ea21p-56L 0x1.0d79e0c812269388c3015b61a155p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x1.6d1dbb587cee4f44e059dd64ea2p-56L 0x1.0d79e0c812269388c3015b61a155p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x1.6d1dbb587cee4f44e059dd64ea2p-56L 0x1.0d79e0c812269388c3015b61a156p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.6d1dbb587cee4b5c183103847d67p-56L 0x1.0d79e0c812269388c3015b61a157p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.6d1dbb587cee4b5c183103847d66p-56L 0x1.0d79e0c812269388c3015b61a158p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.6d1dbb587cee4b5c183103847d66p-56L 0x1.0d79e0c812269388c3015b61a157p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.6d1dbb587cee4b5c183103847d66p-56L 0x1.0d79e0c812269388c3015b61a158p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.6d1dbb587cee4b5c183103847d8p-56L 0x1.0d79e0c812269388c3015b61a1p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.6d1dbb587cee4b5c183103847d8p-56L 0x1.0d79e0c812269388c3015b61a18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.6d1dbb587cee4b5c183103847dp-56L 0x1.0d79e0c812269388c3015b61a1p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.6d1dbb587cee4b5c183103847dp-56L 0x1.0d79e0c812269388c3015b61a18p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.6d1dbb587cee82f56fcb5718c0aap-56L 0x1.0d79e0c812269388c3015b61a137p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.6d1dbb587cee82f56fcb5718c0aap-56L 0x1.0d79e0c812269388c3015b61a138p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.6d1dbb587cee82f56fcb5718c0a9p-56L 0x1.0d79e0c812269388c3015b61a137p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.6d1dbb587cee82f56fcb5718c0a9p-56L 0x1.0d79e0c812269388c3015b61a138p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.6d1dbb587cee82f56fcb5718c1p-56L 0x1.0d79e0c812269388c3015b61a1p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.6d1dbb587cee82f56fcb5718c08p-56L 0x1.0d79e0c812269388c3015b61a1p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.6d1dbb587cee82f56fcb5718c08p-56L 0x1.0d79e0c812269388c3015b61a1p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e028p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.6d1dbb587cee82f56fcb5718c08p-56L 0x1.0d79e0c812269388c3015b61a18p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638ap-28L 0x1.0d79e112b4d8bd16p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638ap-28L 0x1.0d79e112b4d8bd16p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638ap-28L 0x1.0d79e112b4d8bd16p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638bp-28L 0x1.0d79e112b4d8bd18p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638ap-28L 0x1.0d79e112b4d8bd16p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638ap-28L 0x1.0d79e112b4d8bd16p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638ap-28L 0x1.0d79e112b4d8bd16p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638bp-28L 0x1.0d79e112b4d8bd18p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638a72e6e04416278p-28L 0x1.0d79e112b4d8bd16ba0a4430814p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638a72e6e0441628p-28L 0x1.0d79e112b4d8bd16ba0a4430814p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638a72e6e04416278p-28L 0x1.0d79e112b4d8bd16ba0a4430814p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638a72e6e0441628p-28L 0x1.0d79e112b4d8bd16ba0a44308141p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638a72e6e04416p-28L 0x1.0d79e112b4d8bd16ba0a443081p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638a72e6e044164p-28L 0x1.0d79e112b4d8bd16ba0a4430818p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638a72e6e04416p-28L 0x1.0d79e112b4d8bd16ba0a443081p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655fp-4L : 0x8.2e9c14f7dcd638a72e6e044164p-28L 0x1.0d79e112b4d8bd16ba0a4430818p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121017p-28L 0x1.0d79e093ea46b55cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121017p-28L 0x1.0d79e093ea46b55ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e411210168p-28L 0x1.0d79e093ea46b55cp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e411210168p-28L 0x1.0d79e093ea46b55ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121017p-28L 0x1.0d79e093ea46b55cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121017p-28L 0x1.0d79e093ea46b55ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e411210168p-28L 0x1.0d79e093ea46b55cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e411210168p-28L 0x1.0d79e093ea46b55ep+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121016d50fe81a4d5ccp-28L 0x1.0d79e093ea46b55d431a6d4eee06p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121016d50fe81a4d5ccp-28L 0x1.0d79e093ea46b55d431a6d4eee06p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121016d50fe81a4d5c8p-28L 0x1.0d79e093ea46b55d431a6d4eee06p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121016d50fe81a4d5c8p-28L 0x1.0d79e093ea46b55d431a6d4eee07p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121016d50fe81a4d6p-28L 0x1.0d79e093ea46b55d431a6d4eeep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121016d50fe81a4d6p-28L 0x1.0d79e093ea46b55d431a6d4eeep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121016d50fe81a4d4p-28L 0x1.0d79e093ea46b55d431a6d4eeep+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655ep-4L : -0x5.b7b9d0e41121016d50fe81a4d4p-28L 0x1.0d79e093ea46b55d431a6d4eee8p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf9513p-56L 0x1.0d79e0c8122693b6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf9513p-56L 0x1.0d79e0c8122693b8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf9513p-56L 0x1.0d79e0c8122693b6p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf95138p-56L 0x1.0d79e0c8122693b8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf9513p-56L 0x1.0d79e0c8122693b6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf9513p-56L 0x1.0d79e0c8122693b8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf9513p-56L 0x1.0d79e0c8122693b6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf95138p-56L 0x1.0d79e0c8122693b8p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf95132e684a4969118p-56L 0x1.0d79e0c8122693b76c4993a24a6ap+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf95132e684a496911cp-56L 0x1.0d79e0c8122693b76c4993a24a6bp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf95132e684a4969118p-56L 0x1.0d79e0c8122693b76c4993a24a6ap+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf95132e684a496911cp-56L 0x1.0d79e0c8122693b76c4993a24a6bp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf95132e684a4969p-56L 0x1.0d79e0c8122693b76c4993a24ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf95132e684a49692p-56L 0x1.0d79e0c8122693b76c4993a24a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf95132e684a4969p-56L 0x1.0d79e0c8122693b76c4993a24ap+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e511p-4L : 0x4.b5ca5add5bf95132e684a49692p-56L 0x1.0d79e0c8122693b76c4993a24a8p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efda4p-56L 0x1.0d79e0c812268fcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efdap-56L 0x1.0d79e0c812268fc2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efdap-56L 0x1.0d79e0c812268fcp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efdap-56L 0x1.0d79e0c812268fc2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efda4p-56L 0x1.0d79e0c812268fcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efdap-56L 0x1.0d79e0c812268fc2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efdap-56L 0x1.0d79e0c812268fcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efdap-56L 0x1.0d79e0c812268fc2p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efda1e86ecb038eb8p-56L 0x1.0d79e0c812268fc117b8b99b491dp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efda1e86ecb038eb8p-56L 0x1.0d79e0c812268fc117b8b99b491dp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efda1e86ecb038eb6p-56L 0x1.0d79e0c812268fc117b8b99b491dp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efda1e86ecb038eb6p-56L 0x1.0d79e0c812268fc117b8b99b491ep+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efda1e86ecb038fp-56L 0x1.0d79e0c812268fc117b8b99b49p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efda1e86ecb038fp-56L 0x1.0d79e0c812268fc117b8b99b49p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efda1e86ecb038ep-56L 0x1.0d79e0c812268fc117b8b99b49p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e5108p-4L : -0x2.3d60986d168efda1e86ecb038ep-56L 0x1.0d79e0c812268fc117b8b99b498p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445facp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445fadp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445facp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445fadp-68L 0x1.0d79e0c81226910ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445facp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445fadp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445facp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445fadp-68L 0x1.0d79e0c81226910ap+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445face468cae1e69b8p-68L 0x1.0d79e0c81226910878c3f9f9cbefp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445face468cae1e69b8p-68L 0x1.0d79e0c81226910878c3f9f9cbefp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445face468cae1e69b8p-68L 0x1.0d79e0c81226910878c3f9f9cbefp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445face468cae1e69cp-68L 0x1.0d79e0c81226910878c3f9f9cbfp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445face468cae1e68p-68L 0x1.0d79e0c81226910878c3f9f9cb8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445face468cae1e68p-68L 0x1.0d79e0c81226910878c3f9f9ccp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445face468cae1e68p-68L 0x1.0d79e0c81226910878c3f9f9cb8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a95p-4L : 0xd.b2458d0a8445face468cae1e6cp-68L 0x1.0d79e0c81226910878c3f9f9ccp+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6e4p-72L 0x1.0d79e0c812269106p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6ep-72L 0x1.0d79e0c812269108p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6ep-72L 0x1.0d79e0c812269106p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6ep-72L 0x1.0d79e0c812269108p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6e4p-72L 0x1.0d79e0c812269106p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6ep-72L 0x1.0d79e0c812269108p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6ep-72L 0x1.0d79e0c812269106p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6ep-72L 0x1.0d79e0c812269108p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6e00a96a56b87fp-72L 0x1.0d79e0c812269107f9f967de8b0ep+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6e00a96a56b87fp-72L 0x1.0d79e0c812269107f9f967de8b0fp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6e00a96a56b87eep-72L 0x1.0d79e0c812269107f9f967de8b0ep+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6e00a96a56b87eep-72L 0x1.0d79e0c812269107f9f967de8b0fp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6e00a96a56b88p-72L 0x1.0d79e0c812269107f9f967de8bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6e00a96a56b88p-72L 0x1.0d79e0c812269107f9f967de8bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6e00a96a56b87p-72L 0x1.0d79e0c812269107f9f967de8bp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94p-4L : -0x3.410598a60caae6e00a96a56b87p-72L 0x1.0d79e0c812269107f9f967de8b8p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x2.6d89106777a262e8bebe83925816p-68L 0x1.0d79e0c81226910811f9df0282d9p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x2.6d89106777a262e8bebe83925818p-68L 0x1.0d79e0c81226910811f9df0282dap+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x2.6d89106777a262e8bebe83925816p-68L 0x1.0d79e0c81226910811f9df0282d9p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0x2.6d89106777a262e8bebe83925818p-68L 0x1.0d79e0c81226910811f9df0282dap+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x2.6d89106777e0ef6b4c5c8a5d51b2p-68L 0x1.0d79e0c81226910811f9df0282dcp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x2.6d89106777e0ef6b4c5c8a5d51b2p-68L 0x1.0d79e0c81226910811f9df0282dcp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x2.6d89106777e0ef6b4c5c8a5d51b2p-68L 0x1.0d79e0c81226910811f9df0282dcp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x2.6d89106777e0ef6b4c5c8a5d51b4p-68L 0x1.0d79e0c81226910811f9df0282ddp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x2.6d89106777e0ef6b4c5c8a5d51p-68L 0x1.0d79e0c81226910811f9df02828p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x2.6d89106777e0ef6b4c5c8a5d52p-68L 0x1.0d79e0c81226910811f9df0283p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x2.6d89106777e0ef6b4c5c8a5d51p-68L 0x1.0d79e0c81226910811f9df02828p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x2.6d89106777e0ef6b4c5c8a5d52p-68L 0x1.0d79e0c81226910811f9df0283p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x2.6d891067746759f1a723463301fep-68L 0x1.0d79e0c81226910811f9df0282bcp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x2.6d891067746759f1a723463301fep-68L 0x1.0d79e0c81226910811f9df0282bcp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x2.6d891067746759f1a723463301fep-68L 0x1.0d79e0c81226910811f9df0282bcp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x2.6d891067746759f1a723463302p-68L 0x1.0d79e0c81226910811f9df0282bdp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x2.6d891067746759f1a723463301p-68L 0x1.0d79e0c81226910811f9df02828p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x2.6d891067746759f1a723463302p-68L 0x1.0d79e0c81226910811f9df02828p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x2.6d891067746759f1a723463301p-68L 0x1.0d79e0c81226910811f9df02828p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae18p-4L 0xd.e655e694e510a94307614f1a74p-4L : 0x2.6d891067746759f1a723463302p-68L 0x1.0d79e0c81226910811f9df0283p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41p-28L 0x1.0d79e112b4d8bd16p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe42p-28L 0x1.0d79e112b4d8bd18p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41p-28L 0x1.0d79e112b4d8bd16p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe42p-28L 0x1.0d79e112b4d8bd18p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41p-28L 0x1.0d79e112b4d8bd16p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe42p-28L 0x1.0d79e112b4d8bd18p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41p-28L 0x1.0d79e112b4d8bd16p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe42p-28L 0x1.0d79e112b4d8bd18p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41a61d145c65fc8p-28L 0x1.0d79e112b4d8bd17293cf33ec6b3p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41a61d145c65fc8p-28L 0x1.0d79e112b4d8bd17293cf33ec6b4p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41a61d145c65fc8p-28L 0x1.0d79e112b4d8bd17293cf33ec6b3p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41a61d145c65fdp-28L 0x1.0d79e112b4d8bd17293cf33ec6b4p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41a61d145c65cp-28L 0x1.0d79e112b4d8bd17293cf33ec68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41a61d145c66p-28L 0x1.0d79e112b4d8bd17293cf33ec68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41a61d145c65cp-28L 0x1.0d79e112b4d8bd17293cf33ec68p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655fp-4L : 0x8.2e9c14f7d8dfe41a61d145c66p-28L 0x1.0d79e112b4d8bd17293cf33ec7p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e415175608p-28L 0x1.0d79e093ea46b55cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4151756p-28L 0x1.0d79e093ea46b55ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4151756p-28L 0x1.0d79e093ea46b55cp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4151756p-28L 0x1.0d79e093ea46b55ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e415175608p-28L 0x1.0d79e093ea46b55cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4151756p-28L 0x1.0d79e093ea46b55ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4151756p-28L 0x1.0d79e093ea46b55cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4151756p-28L 0x1.0d79e093ea46b55ep+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e415175600fff934d1d284p-28L 0x1.0d79e093ea46b55db24d1c9e6771p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e415175600fff934d1d284p-28L 0x1.0d79e093ea46b55db24d1c9e6772p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e415175600fff934d1d28p-28L 0x1.0d79e093ea46b55db24d1c9e6771p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e415175600fff934d1d28p-28L 0x1.0d79e093ea46b55db24d1c9e6772p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e415175600fff934d1d4p-28L 0x1.0d79e093ea46b55db24d1c9e67p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e415175600fff934d1d2p-28L 0x1.0d79e093ea46b55db24d1c9e678p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e415175600fff934d1d2p-28L 0x1.0d79e093ea46b55db24d1c9e67p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655ep-4L : -0x5.b7b9d0e415175600fff934d1d2p-28L 0x1.0d79e093ea46b55db24d1c9e678p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e118p-56L 0x1.0d79e0c8122693b6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e12p-56L 0x1.0d79e0c8122693b8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e118p-56L 0x1.0d79e0c8122693b6p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e12p-56L 0x1.0d79e0c8122693b8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e118p-56L 0x1.0d79e0c8122693b6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e12p-56L 0x1.0d79e0c8122693b8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e118p-56L 0x1.0d79e0c8122693b6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e12p-56L 0x1.0d79e0c8122693b8p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e11fcb08ac26f554p-56L 0x1.0d79e0c8122693b7db7c42d6f193p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e11fcb08ac26f558p-56L 0x1.0d79e0c8122693b7db7c42d6f193p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e11fcb08ac26f554p-56L 0x1.0d79e0c8122693b7db7c42d6f193p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e11fcb08ac26f558p-56L 0x1.0d79e0c8122693b7db7c42d6f194p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e11fcb08ac26f4p-56L 0x1.0d79e0c8122693b7db7c42d6f18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e11fcb08ac26f6p-56L 0x1.0d79e0c8122693b7db7c42d6f18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e11fcb08ac26f4p-56L 0x1.0d79e0c8122693b7db7c42d6f18p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e511p-4L : 0x4.b58af5944e58e11fcb08ac26f6p-56L 0x1.0d79e0c8122693b7db7c42d6f2p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6dbcp-56L 0x1.0d79e0c812268fcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db8p-56L 0x1.0d79e0c812268fc2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db8p-56L 0x1.0d79e0c812268fcp+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db8p-56L 0x1.0d79e0c812268fc2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6dbcp-56L 0x1.0d79e0c812268fcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db8p-56L 0x1.0d79e0c812268fc2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db8p-56L 0x1.0d79e0c812268fcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db8p-56L 0x1.0d79e0c812268fc2p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db87519be81aec2p-56L 0x1.0d79e0c812268fc186eb68cff046p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db87519be81aec2p-56L 0x1.0d79e0c812268fc186eb68cff046p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db87519be81aecp-56L 0x1.0d79e0c812268fc186eb68cff046p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db87519be81aecp-56L 0x1.0d79e0c812268fc186eb68cff047p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db87519be81afp-56L 0x1.0d79e0c812268fc186eb68cffp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db87519be81afp-56L 0x1.0d79e0c812268fc186eb68cff08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db87519be81aep-56L 0x1.0d79e0c812268fc186eb68cffp+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e5108p-4L : -0x2.3d9ffdb6242f6db87519be81aep-56L 0x1.0d79e0c812268fc186eb68cff08p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3cp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3dp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3cp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3dp-68L 0x1.0d79e0c81226910ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3cp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3dp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3cp-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3dp-68L 0x1.0d79e0c81226910ap+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3ca13f14514e868p-68L 0x1.0d79e0c812269108e7f6a92e7317p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3ca13f14514e87p-68L 0x1.0d79e0c812269108e7f6a92e7318p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3ca13f14514e868p-68L 0x1.0d79e0c812269108e7f6a92e7317p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3ca13f14514e87p-68L 0x1.0d79e0c812269108e7f6a92e7318p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3ca13f14514e8p-68L 0x1.0d79e0c812269108e7f6a92e73p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3ca13f14514e8p-68L 0x1.0d79e0c812269108e7f6a92e73p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3ca13f14514e8p-68L 0x1.0d79e0c812269108e7f6a92e73p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a95p-4L : 0x9.bbf0fc307d44a3ca13f14514ecp-68L 0x1.0d79e0c812269108e7f6a92e738p+0L : inexact-ok += clog downward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc058p-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc0578p-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc0578p-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog upward ldbl-96-intel 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc0578p-68L 0x1.0d79e0c81226910ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc058p-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc0578p-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc0578p-68L 0x1.0d79e0c812269108p+0L : inexact-ok += clog upward ldbl-96-m68k 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc0578p-68L 0x1.0d79e0c81226910ap+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc057915a2c97d4258p-68L 0x1.0d79e0c812269108692c17133237p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc057915a2c97d4258p-68L 0x1.0d79e0c812269108692c17133237p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc057915a2c97d4254p-68L 0x1.0d79e0c812269108692c17133237p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc057915a2c97d4254p-68L 0x1.0d79e0c812269108692c17133238p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc057915a2c97d44p-68L 0x1.0d79e0c812269108692c171332p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc057915a2c97d42p-68L 0x1.0d79e0c812269108692c171332p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc057915a2c97d42p-68L 0x1.0d79e0c812269108692c171332p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94p-4L : -0x4.2a64ea6467cc057915a2c97d42p-68L 0x1.0d79e0c812269108692c1713328p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x1.88cb80728f5ef421089c55f05c19p-68L 0x1.0d79e0c812269108812c8e372a02p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x1.88cb80728f5ef421089c55f05c18p-68L 0x1.0d79e0c812269108812c8e372a02p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x1.88cb80728f5ef421089c55f05c18p-68L 0x1.0d79e0c812269108812c8e372a02p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x1.88cb80728f5ef421089c55f05c18p-68L 0x1.0d79e0c812269108812c8e372a03p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.88cb80728f20679e7afe4f25625fp-68L 0x1.0d79e0c812269108812c8e372a04p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.88cb80728f20679e7afe4f25625fp-68L 0x1.0d79e0c812269108812c8e372a05p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.88cb80728f20679e7afe4f25625ep-68L 0x1.0d79e0c812269108812c8e372a04p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.88cb80728f20679e7afe4f25625ep-68L 0x1.0d79e0c812269108812c8e372a05p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.88cb80728f20679e7afe4f25628p-68L 0x1.0d79e0c812269108812c8e372ap+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.88cb80728f20679e7afe4f25628p-68L 0x1.0d79e0c812269108812c8e372ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.88cb80728f20679e7afe4f2562p-68L 0x1.0d79e0c812269108812c8e372ap+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x1.88cb80728f20679e7afe4f2562p-68L 0x1.0d79e0c812269108812c8e372a8p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.88cb80729299fd182037934fb3ccp-68L 0x1.0d79e0c812269108812c8e3729e4p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.88cb80729299fd182037934fb3cbp-68L 0x1.0d79e0c812269108812c8e3729e5p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.88cb80729299fd182037934fb3cbp-68L 0x1.0d79e0c812269108812c8e3729e4p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.88cb80729299fd182037934fb3cbp-68L 0x1.0d79e0c812269108812c8e3729e5p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.88cb80729299fd182037934fb4p-68L 0x1.0d79e0c812269108812c8e37298p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.88cb80729299fd182037934fb4p-68L 0x1.0d79e0c812269108812c8e372ap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.88cb80729299fd182037934fb38p-68L 0x1.0d79e0c812269108812c8e37298p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae1p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x1.88cb80729299fd182037934fb38p-68L 0x1.0d79e0c812269108812c8e372ap+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a4a36d0018p-28L 0x1.0d79e112b4d8bd16fe2d5a5d0836p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a4a36d002p-28L 0x1.0d79e112b4d8bd16fe2d5a5d0837p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a4a36d0018p-28L 0x1.0d79e112b4d8bd16fe2d5a5d0836p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a4a36d002p-28L 0x1.0d79e112b4d8bd16fe2d5a5d0837p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74add2a5252p-28L 0x1.0d79e093ea46b55d873d83a3691p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74add2a5252p-28L 0x1.0d79e093ea46b55d873d83a36911p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74add2a5251cp-28L 0x1.0d79e093ea46b55d873d83a3691p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74add2a5251cp-28L 0x1.0d79e093ea46b55d873d83a36911p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d70e25dd1d4904c8p-56L 0x1.0d79e0c8122693b7b06ca9e6562p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d70e25dd1d4904c8p-56L 0x1.0d79e0c8122693b7b06ca9e6562p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d70e25dd1d4904c8p-56L 0x1.0d79e0c8122693b7b06ca9e6562p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d70e25dd1d4904ccp-56L 0x1.0d79e0c8122693b7b06ca9e65621p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d0677c8c5094ad64cfep-56L 0x1.0d79e0c812268fc15bdbcfdf54d3p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d0677c8c5094ad64cfcp-56L 0x1.0d79e0c812268fc15bdbcfdf54d3p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d0677c8c5094ad64cfcp-56L 0x1.0d79e0c812268fc15bdbcfdf54d3p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d0677c8c5094ad64cfcp-56L 0x1.0d79e0c812268fc15bdbcfdf54d4p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30ca397e8f346e20e0f3p-68L 0x1.0d79e0c812269108bce7103dd7a4p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30ca397e8f346e20e0f38p-68L 0x1.0d79e0c812269108bce7103dd7a5p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30ca397e8f346e20e0f3p-68L 0x1.0d79e0c812269108bce7103dd7a4p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30ca397e8f346e20e0f38p-68L 0x1.0d79e0c812269108bce7103dd7a5p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d86d11578bd5277176eap-68L 0x1.0d79e0c8122691083e1c7e2296c4p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d86d11578bd5277176e8p-68L 0x1.0d79e0c8122691083e1c7e2296c4p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d86d11578bd5277176e8p-68L 0x1.0d79e0c8122691083e1c7e2296c4p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d86d11578bd5277176e8p-68L 0x1.0d79e0c8122691083e1c7e2296c5p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0xb.29fffffffffffffffffffffffff8p-220L 0x1.0d79e0c812269108561cf5468e8fp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0xb.2ap-220L 0x1.0d79e0c812269108561cf5468e8fp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0xb.29fffffffffffffffffffffffff8p-220L 0x1.0d79e0c812269108561cf5468e8fp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0xb.2ap-220L 0x1.0d79e0c812269108561cf5468e9p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.e8c828d9e06caf9ada135e3f7258p-112L 0x1.0d79e0c812269108561cf5468e91p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.e8c828d9e06caf9ada135e3f725ap-112L 0x1.0d79e0c812269108561cf5468e92p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.e8c828d9e06caf9ada135e3f7258p-112L 0x1.0d79e0c812269108561cf5468e91p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0x3.e8c828d9e06caf9ada135e3f725ap-112L 0x1.0d79e0c812269108561cf5468e92p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.3b08f7179b3d5f5714371de2a7p-108L 0x1.0d79e0c812269108561cf5468e71p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.3b08f7179b3d5f5714371de2a7p-108L 0x1.0d79e0c812269108561cf5468e72p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.3b08f7179b3d5f5714371de2a6fep-108L 0x1.0d79e0c812269108561cf5468e71p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae1319143490849p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.3b08f7179b3d5f5714371de2a6fep-108L 0x1.0d79e0c812269108561cf5468e72p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a559b03168p-28L 0x1.0d79e112b4d8bd16fe2d5a5d0823p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a559b03168p-28L 0x1.0d79e112b4d8bd16fe2d5a5d0823p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a559b03168p-28L 0x1.0d79e112b4d8bd16fe2d5a5d0823p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a559b0317p-28L 0x1.0d79e112b4d8bd16fe2d5a5d0824p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a559b03p-28L 0x1.0d79e112b4d8bd16fe2d5a5d08p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a559b03p-28L 0x1.0d79e112b4d8bd16fe2d5a5d08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a559b03p-28L 0x1.0d79e112b4d8bd16fe2d5a5d08p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a559b034p-28L 0x1.0d79e112b4d8bd16fe2d5a5d088p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ad1c61f298p-28L 0x1.0d79e093ea46b55d873d83a368fcp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ad1c61f294p-28L 0x1.0d79e093ea46b55d873d83a368fdp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ad1c61f294p-28L 0x1.0d79e093ea46b55d873d83a368fcp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ad1c61f294p-28L 0x1.0d79e093ea46b55d873d83a368fdp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ad1c61f4p-28L 0x1.0d79e093ea46b55d873d83a3688p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ad1c61f2p-28L 0x1.0d79e093ea46b55d873d83a369p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ad1c61f2p-28L 0x1.0d79e093ea46b55d873d83a3688p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ad1c61f2p-28L 0x1.0d79e093ea46b55d873d83a369p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581e27258fd901d2834p-56L 0x1.0d79e0c8122693b7b06ca9e6560cp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581e27258fd901d2838p-56L 0x1.0d79e0c8122693b7b06ca9e6560cp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581e27258fd901d2834p-56L 0x1.0d79e0c8122693b7b06ca9e6560cp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581e27258fd901d2838p-56L 0x1.0d79e0c8122693b7b06ca9e6560dp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581e27258fd901d28p-56L 0x1.0d79e0c8122693b7b06ca9e656p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581e27258fd901d28p-56L 0x1.0d79e0c8122693b7b06ca9e656p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581e27258fd901d28p-56L 0x1.0d79e0c8122693b7b06ca9e656p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581e27258fd901d2ap-56L 0x1.0d79e0c8122693b7b06ca9e6568p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d066c6491e8d80228fp-56L 0x1.0d79e0c812268fc15bdbcfdf54bfp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d066c6491e8d80228fp-56L 0x1.0d79e0c812268fc15bdbcfdf54bfp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d066c6491e8d80228eep-56L 0x1.0d79e0c812268fc15bdbcfdf54bfp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d066c6491e8d80228eep-56L 0x1.0d79e0c812268fc15bdbcfdf54cp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d066c6491e8d80229p-56L 0x1.0d79e0c812268fc15bdbcfdf548p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d066c6491e8d80229p-56L 0x1.0d79e0c812268fc15bdbcfdf548p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d066c6491e8d80228p-56L 0x1.0d79e0c812268fc15bdbcfdf548p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d066c6491e8d80228p-56L 0x1.0d79e0c812268fc15bdbcfdf55p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30d59db1afa74244bb1e8p-68L 0x1.0d79e0c812269108bce7103dd79p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30d59db1afa74244bb1fp-68L 0x1.0d79e0c812269108bce7103dd791p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30d59db1afa74244bb1e8p-68L 0x1.0d79e0c812269108bce7103dd79p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30d59db1afa74244bb1fp-68L 0x1.0d79e0c812269108bce7103dd791p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30d59db1afa74244bbp-68L 0x1.0d79e0c812269108bce7103dd78p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30d59db1afa74244bbp-68L 0x1.0d79e0c812269108bce7103dd78p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30d59db1afa74244bbp-68L 0x1.0d79e0c812269108bce7103dd78p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30d59db1afa74244bb4p-68L 0x1.0d79e0c812269108bce7103dd8p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d7b6ce2584a7e533d2f6p-68L 0x1.0d79e0c8122691083e1c7e2296bp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d7b6ce2584a7e533d2f4p-68L 0x1.0d79e0c8122691083e1c7e2296b1p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d7b6ce2584a7e533d2f4p-68L 0x1.0d79e0c8122691083e1c7e2296bp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d7b6ce2584a7e533d2f4p-68L 0x1.0d79e0c8122691083e1c7e2296b1p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d7b6ce2584a7e533d3p-68L 0x1.0d79e0c8122691083e1c7e22968p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d7b6ce2584a7e533d3p-68L 0x1.0d79e0c8122691083e1c7e22968p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d7b6ce2584a7e533d2p-68L 0x1.0d79e0c8122691083e1c7e22968p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d7b6ce2584a7e533d2p-68L 0x1.0d79e0c8122691083e1c7e2297p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0xb.64332072d423da3b740d0b8fbfc8p-112L 0x1.0d79e0c812269108561cf5468e7bp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0xb.64332072d423da3b740d0b8fbfc8p-112L 0x1.0d79e0c812269108561cf5468e7bp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0xb.64332072d423da3b740d0b8fbfc8p-112L 0x1.0d79e0c812269108561cf5468e7bp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : 0xb.64332072d423da3b740d0b8fbfdp-112L 0x1.0d79e0c812269108561cf5468e7cp+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0xf.4cfb494cb49089d64e2069cf311p-112L 0x1.0d79e0c812269108561cf5468e7dp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0xf.4cfb494cb49089d64e2069cf3118p-112L 0x1.0d79e0c812269108561cf5468e7ep+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0xf.4cfb494cb49089d64e2069cf311p-112L 0x1.0d79e0c812269108561cf5468e7dp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0xf.4cfb494cb49089d64e2069cf3118p-112L 0x1.0d79e0c812269108561cf5468e7ep+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0xf.4cfb494cb49089d64e2069cf3p-112L 0x1.0d79e0c812269108561cf5468ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0xf.4cfb494cb49089d64e2069cf3p-112L 0x1.0d79e0c812269108561cf5468e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0xf.4cfb494cb49089d64e2069cf3p-112L 0x1.0d79e0c812269108561cf5468ep+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a78p-4L : 0xf.4cfb494cb49089d64e2069cf34p-112L 0x1.0d79e0c812269108561cf5468e8p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x2.84c5c5106dfb21b35cf64d29aac6p-108L 0x1.0d79e0c812269108561cf5468e5dp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x2.84c5c5106dfb21b35cf64d29aac4p-108L 0x1.0d79e0c812269108561cf5468e5ep+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x2.84c5c5106dfb21b35cf64d29aac4p-108L 0x1.0d79e0c812269108561cf5468e5dp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x2.84c5c5106dfb21b35cf64d29aac4p-108L 0x1.0d79e0c812269108561cf5468e5ep+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x2.84c5c5106dfb21b35cf64d29abp-108L 0x1.0d79e0c812269108561cf5468ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x2.84c5c5106dfb21b35cf64d29abp-108L 0x1.0d79e0c812269108561cf5468e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x2.84c5c5106dfb21b35cf64d29aap-108L 0x1.0d79e0c812269108561cf5468ep+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349086p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x2.84c5c5106dfb21b35cf64d29aap-108L 0x1.0d79e0c812269108561cf5468e8p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a45c1b0e3p-28L 0x1.0d79e112b4d8bd16fe2d5a5d083ep+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a45c1b0e38p-28L 0x1.0d79e112b4d8bd16fe2d5a5d083fp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a45c1b0e3p-28L 0x1.0d79e112b4d8bd16fe2d5a5d083ep+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a45c1b0e38p-28L 0x1.0d79e112b4d8bd16fe2d5a5d083fp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a45c1b0cp-28L 0x1.0d79e112b4d8bd16fe2d5a5d08p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a45c1b1p-28L 0x1.0d79e112b4d8bd16fe2d5a5d08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a45c1b0cp-28L 0x1.0d79e112b4d8bd16fe2d5a5d08p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655fp-4L : 0x8.2e9c14f7da68af9942a45c1b1p-28L 0x1.0d79e112b4d8bd16fe2d5a5d088p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ae19f71784p-28L 0x1.0d79e093ea46b55d873d83a36918p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ae19f7178p-28L 0x1.0d79e093ea46b55d873d83a36919p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ae19f7178p-28L 0x1.0d79e093ea46b55d873d83a36918p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ae19f7178p-28L 0x1.0d79e093ea46b55d873d83a36919p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ae19f718p-28L 0x1.0d79e093ea46b55d873d83a369p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ae19f718p-28L 0x1.0d79e093ea46b55d873d83a369p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ae19f716p-28L 0x1.0d79e093ea46b55d873d83a369p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655ep-4L : -0x5.b7b9d0e4138e8a7f74ae19f716p-28L 0x1.0d79e093ea46b55d873d83a3698p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d29906ba2801237p-56L 0x1.0d79e0c8122693b7b06ca9e65628p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d29906ba2801237p-56L 0x1.0d79e0c8122693b7b06ca9e65628p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d29906ba2801237p-56L 0x1.0d79e0c8122693b7b06ca9e65628p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d29906ba28012374p-56L 0x1.0d79e0c8122693b7b06ca9e65629p+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d29906ba280122p-56L 0x1.0d79e0c8122693b7b06ca9e656p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d29906ba280124p-56L 0x1.0d79e0c8122693b7b06ca9e656p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d29906ba280122p-56L 0x1.0d79e0c8122693b7b06ca9e656p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e511p-4L : 0x4.b5a3824c5581d29906ba280124p-56L 0x1.0d79e0c8122693b7b06ca9e6568p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d067c3de42c401e2e94p-56L 0x1.0d79e0c812268fc15bdbcfdf54dap+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d067c3de42c401e2e92p-56L 0x1.0d79e0c812268fc15bdbcfdf54dbp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d067c3de42c401e2e92p-56L 0x1.0d79e0c812268fc15bdbcfdf54dap+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d067c3de42c401e2e92p-56L 0x1.0d79e0c812268fc15bdbcfdf54dbp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d067c3de42c401e2fp-56L 0x1.0d79e0c812268fc15bdbcfdf548p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d067c3de42c401e2fp-56L 0x1.0d79e0c812268fc15bdbcfdf55p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d067c3de42c401e2ep-56L 0x1.0d79e0c812268fc15bdbcfdf548p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e5108p-4L : -0x2.3d8770fe1d067c3de42c401e2ep-56L 0x1.0d79e0c812268fc15bdbcfdf55p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30c5c45f6c3f263f5f0e8p-68L 0x1.0d79e0c812269108bce7103dd7acp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30c5c45f6c3f263f5f0fp-68L 0x1.0d79e0c812269108bce7103dd7acp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30c5c45f6c3f263f5f0e8p-68L 0x1.0d79e0c812269108bce7103dd7acp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30c5c45f6c3f263f5f0fp-68L 0x1.0d79e0c812269108bce7103dd7adp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30c5c45f6c3f263f5fp-68L 0x1.0d79e0c812269108bce7103dd78p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30c5c45f6c3f263f5fp-68L 0x1.0d79e0c812269108bce7103dd78p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30c5c45f6c3f263f5fp-68L 0x1.0d79e0c812269108bce7103dd78p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a95p-4L : 0xb.44bc7ca30c5c45f6c3f263f5f4p-68L 0x1.0d79e0c812269108bce7103dd8p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d8b46349bb29a58995acp-68L 0x1.0d79e0c8122691083e1c7e2296ccp+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d8b46349bb29a58995acp-68L 0x1.0d79e0c8122691083e1c7e2296ccp+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d8b46349bb29a58995aap-68L 0x1.0d79e0c8122691083e1c7e2296ccp+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d8b46349bb29a58995aap-68L 0x1.0d79e0c8122691083e1c7e2296cdp+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d8b46349bb29a58996p-68L 0x1.0d79e0c8122691083e1c7e22968p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d8b46349bb29a58996p-68L 0x1.0d79e0c8122691083e1c7e2297p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d8b46349bb29a58995p-68L 0x1.0d79e0c8122691083e1c7e22968p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94p-4L : -0x2.a19969f1d8b46349bb29a58995p-68L 0x1.0d79e0c8122691083e1c7e2297p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x4.751f22f547e181eabe1b5d9149ccp-112L 0x1.0d79e0c812269108561cf5468e97p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x4.751f22f547e181eabe1b5d9149c8p-112L 0x1.0d79e0c812269108561cf5468e97p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x4.751f22f547e181eabe1b5d9149c8p-112L 0x1.0d79e0c812269108561cf5468e97p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a77b8p-4L : -0x4.751f22f547e181eabe1b5d9149c8p-112L 0x1.0d79e0c812269108561cf5468e98p+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x8.c56fa1b6774d24fe407ff51d8008p-116L 0x1.0d79e0c812269108561cf5468e99p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x8.c56fa1b6774d24fe407ff51d8p-116L 0x1.0d79e0c812269108561cf5468e99p+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x8.c56fa1b6774d24fe407ff51d8p-116L 0x1.0d79e0c812269108561cf5468e99p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x8.c56fa1b6774d24fe407ff51d8p-116L 0x1.0d79e0c812269108561cf5468e9ap+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x8.c56fa1b6774d24fe407ff51d84p-116L 0x1.0d79e0c812269108561cf5468e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x8.c56fa1b6774d24fe407ff51d8p-116L 0x1.0d79e0c812269108561cf5468e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x8.c56fa1b6774d24fe407ff51d8p-116L 0x1.0d79e0c812269108561cf5468e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a78p-4L : -0x8.c56fa1b6774d24fe407ff51d8p-116L 0x1.0d79e0c812269108561cf5468fp+0L : inexact-ok += clog downward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.825ae946efbb7775c018d3bbbbc6p-108L 0x1.0d79e0c812269108561cf5468e79p+0L : inexact-ok += clog tonearest ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.825ae946efbb7775c018d3bbbbc4p-108L 0x1.0d79e0c812269108561cf5468e7ap+0L : inexact-ok += clog towardzero ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.825ae946efbb7775c018d3bbbbc4p-108L 0x1.0d79e0c812269108561cf5468e79p+0L : inexact-ok += clog upward ldbl-128 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.825ae946efbb7775c018d3bbbbc4p-108L 0x1.0d79e0c812269108561cf5468e7ap+0L : inexact-ok += clog downward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.825ae946efbb7775c018d3bbbcp-108L 0x1.0d79e0c812269108561cf5468ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.825ae946efbb7775c018d3bbbcp-108L 0x1.0d79e0c812269108561cf5468e8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.825ae946efbb7775c018d3bbbbp-108L 0x1.0d79e0c812269108561cf5468ep+0L : inexact-ok += clog upward ldbl-128ibm 0x7.eca921b40e02ae131914349084p-4L 0xd.e655e694e510a94307614f1a74p-4L : -0x3.825ae946efbb7775c018d3bbbbp-108L 0x1.0d79e0c812269108561cf5468e8p+0L : inexact-ok +clog 0xdb85c467ee2aadd5f425fe0f4b8dp-114 0x3e83162a0f95f1dcbf97dddf410eap-114 += clog downward flt-32 0x3.6e1714p-4f 0xf.a0c59p-4f : 0x5.dddc5p-28f 0x1.5ad05cp+0f : inexact-ok += clog tonearest flt-32 0x3.6e1714p-4f 0xf.a0c59p-4f : 0x5.dddc5p-28f 0x1.5ad05ep+0f : inexact-ok += clog towardzero flt-32 0x3.6e1714p-4f 0xf.a0c59p-4f : 0x5.dddc5p-28f 0x1.5ad05cp+0f : inexact-ok += clog upward flt-32 0x3.6e1714p-4f 0xf.a0c59p-4f : 0x5.dddc58p-28f 0x1.5ad05ep+0f : inexact-ok += clog downward dbl-64 0x3.6e1714p-4 0xf.a0c59p-4 : 0x5.dddc525951e9cp-28 0x1.5ad05d3fbb3f1p+0 : inexact-ok += clog tonearest dbl-64 0x3.6e1714p-4 0xf.a0c59p-4 : 0x5.dddc525951e9cp-28 0x1.5ad05d3fbb3f2p+0 : inexact-ok += clog towardzero dbl-64 0x3.6e1714p-4 0xf.a0c59p-4 : 0x5.dddc525951e9cp-28 0x1.5ad05d3fbb3f1p+0 : inexact-ok += clog upward dbl-64 0x3.6e1714p-4 0xf.a0c59p-4 : 0x5.dddc525951eap-28 0x1.5ad05d3fbb3f2p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4dp-28L 0x1.5ad05d3fbb3f197ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4dp-28L 0x1.5ad05d3fbb3f197ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4dp-28L 0x1.5ad05d3fbb3f197ep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4d8p-28L 0x1.5ad05d3fbb3f198p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4dp-28L 0x1.5ad05d3fbb3f197ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4dp-28L 0x1.5ad05d3fbb3f197ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4dp-28L 0x1.5ad05d3fbb3f197ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4d8p-28L 0x1.5ad05d3fbb3f198p+0L : inexact-ok += clog downward ldbl-128 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4d2e550424507e8p-28L 0x1.5ad05d3fbb3f197ee5e02a88b199p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4d2e550424507ecp-28L 0x1.5ad05d3fbb3f197ee5e02a88b19ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4d2e550424507e8p-28L 0x1.5ad05d3fbb3f197ee5e02a88b199p+0L : inexact-ok += clog upward ldbl-128 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4d2e550424507ecp-28L 0x1.5ad05d3fbb3f197ee5e02a88b19ap+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4d2e550424506p-28L 0x1.5ad05d3fbb3f197ee5e02a88b18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4d2e550424508p-28L 0x1.5ad05d3fbb3f197ee5e02a88b18p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4d2e550424506p-28L 0x1.5ad05d3fbb3f197ee5e02a88b18p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c59p-4L : 0x5.dddc525951e9c4d2e550424508p-28L 0x1.5ad05d3fbb3f197ee5e02a88b2p+0L : inexact-ok += clog downward flt-32 0x3.6e1714p-4f 0xf.a0c58p-4f : -0x9.c2e94p-28f 0x1.5ad05cp+0f : inexact-ok += clog tonearest flt-32 0x3.6e1714p-4f 0xf.a0c58p-4f : -0x9.c2e94p-28f 0x1.5ad05ep+0f : inexact-ok += clog towardzero flt-32 0x3.6e1714p-4f 0xf.a0c58p-4f : -0x9.c2e93p-28f 0x1.5ad05cp+0f : inexact-ok += clog upward flt-32 0x3.6e1714p-4f 0xf.a0c58p-4f : -0x9.c2e93p-28f 0x1.5ad05ep+0f : inexact-ok += clog downward dbl-64 0x3.6e1714p-4 0xf.a0c58p-4 : -0x9.c2e939748cc38p-28 0x1.5ad05d08d9cdcp+0 : inexact-ok += clog tonearest dbl-64 0x3.6e1714p-4 0xf.a0c58p-4 : -0x9.c2e939748cc3p-28 0x1.5ad05d08d9cddp+0 : inexact-ok += clog towardzero dbl-64 0x3.6e1714p-4 0xf.a0c58p-4 : -0x9.c2e939748cc3p-28 0x1.5ad05d08d9cdcp+0 : inexact-ok += clog upward dbl-64 0x3.6e1714p-4 0xf.a0c58p-4 : -0x9.c2e939748cc3p-28 0x1.5ad05d08d9cddp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc33p-28L 0x1.5ad05d08d9cdcc22p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ffp-28L 0x1.5ad05d08d9cdcc22p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ffp-28L 0x1.5ad05d08d9cdcc22p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ffp-28L 0x1.5ad05d08d9cdcc24p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc33p-28L 0x1.5ad05d08d9cdcc22p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ffp-28L 0x1.5ad05d08d9cdcc22p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ffp-28L 0x1.5ad05d08d9cdcc22p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ffp-28L 0x1.5ad05d08d9cdcc24p+0L : inexact-ok += clog downward ldbl-128 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ff0c78ae9900dfp-28L 0x1.5ad05d08d9cdcc22f9bb7184fe84p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ff0c78ae9900dfp-28L 0x1.5ad05d08d9cdcc22f9bb7184fe85p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ff0c78ae9900de8p-28L 0x1.5ad05d08d9cdcc22f9bb7184fe84p+0L : inexact-ok += clog upward ldbl-128 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ff0c78ae9900de8p-28L 0x1.5ad05d08d9cdcc22f9bb7184fe85p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ff0c78ae9901p-28L 0x1.5ad05d08d9cdcc22f9bb7184fe8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ff0c78ae9900cp-28L 0x1.5ad05d08d9cdcc22f9bb7184fe8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ff0c78ae9900cp-28L 0x1.5ad05d08d9cdcc22f9bb7184fe8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58p-4L : -0x9.c2e939748cc32ff0c78ae9900cp-28L 0x1.5ad05d08d9cdcc22f9bb7184ffp+0L : inexact-ok += clog downward dbl-64 0x3.6e1714p-4 0xf.a0c58a83e57c8p-4 : 0x8.266b79e211768p-32 0x1.5ad05d2ceb1d9p+0 : inexact-ok += clog tonearest dbl-64 0x3.6e1714p-4 0xf.a0c58a83e57c8p-4 : 0x8.266b79e21177p-32 0x1.5ad05d2ceb1dap+0 : inexact-ok += clog towardzero dbl-64 0x3.6e1714p-4 0xf.a0c58a83e57c8p-4 : 0x8.266b79e211768p-32 0x1.5ad05d2ceb1d9p+0 : inexact-ok += clog upward dbl-64 0x3.6e1714p-4 0xf.a0c58a83e57c8p-4 : 0x8.266b79e21177p-32 0x1.5ad05d2ceb1dap+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dcap-32L 0x1.5ad05d2ceb1d9de8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dcap-32L 0x1.5ad05d2ceb1d9deap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dcap-32L 0x1.5ad05d2ceb1d9de8p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dcbp-32L 0x1.5ad05d2ceb1d9deap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dcap-32L 0x1.5ad05d2ceb1d9de8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dcap-32L 0x1.5ad05d2ceb1d9deap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dcap-32L 0x1.5ad05d2ceb1d9de8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dcbp-32L 0x1.5ad05d2ceb1d9deap+0L : inexact-ok += clog downward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dca48c9986761dcp-32L 0x1.5ad05d2ceb1d9de93f4626789bbfp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dca48c9986761dc8p-32L 0x1.5ad05d2ceb1d9de93f4626789bbfp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dca48c9986761dcp-32L 0x1.5ad05d2ceb1d9de93f4626789bbfp+0L : inexact-ok += clog upward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dca48c9986761dc8p-32L 0x1.5ad05d2ceb1d9de93f4626789bcp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dca48c9986761cp-32L 0x1.5ad05d2ceb1d9de93f4626789b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dca48c9986761cp-32L 0x1.5ad05d2ceb1d9de93f4626789b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dca48c9986761cp-32L 0x1.5ad05d2ceb1d9de93f4626789b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c8p-4L : 0x8.266b79e21176dca48c9986762p-32L 0x1.5ad05d2ceb1d9de93f4626789cp+0L : inexact-ok += clog downward dbl-64 0x3.6e1714p-4 0xf.a0c58a83e57cp-4 : 0x8.266b7211aeb2p-32 0x1.5ad05d2ceb1d9p+0 : inexact-ok += clog tonearest dbl-64 0x3.6e1714p-4 0xf.a0c58a83e57cp-4 : 0x8.266b7211aeb2p-32 0x1.5ad05d2ceb1dap+0 : inexact-ok += clog towardzero dbl-64 0x3.6e1714p-4 0xf.a0c58a83e57cp-4 : 0x8.266b7211aeb2p-32 0x1.5ad05d2ceb1d9p+0 : inexact-ok += clog upward dbl-64 0x3.6e1714p-4 0xf.a0c58a83e57cp-4 : 0x8.266b7211aeb28p-32 0x1.5ad05d2ceb1dap+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a1p-32L 0x1.5ad05d2ceb1d9c32p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a1p-32L 0x1.5ad05d2ceb1d9c32p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a1p-32L 0x1.5ad05d2ceb1d9c32p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a2p-32L 0x1.5ad05d2ceb1d9c34p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a1p-32L 0x1.5ad05d2ceb1d9c32p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a1p-32L 0x1.5ad05d2ceb1d9c32p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a1p-32L 0x1.5ad05d2ceb1d9c32p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a2p-32L 0x1.5ad05d2ceb1d9c34p+0L : inexact-ok += clog downward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a106782735f45c8p-32L 0x1.5ad05d2ceb1d9c3233bc426d1c63p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a106782735f45dp-32L 0x1.5ad05d2ceb1d9c3233bc426d1c64p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a106782735f45c8p-32L 0x1.5ad05d2ceb1d9c3233bc426d1c63p+0L : inexact-ok += clog upward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a106782735f45dp-32L 0x1.5ad05d2ceb1d9c3233bc426d1c64p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a106782735f44p-32L 0x1.5ad05d2ceb1d9c3233bc426d1cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a106782735f44p-32L 0x1.5ad05d2ceb1d9c3233bc426d1c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a106782735f44p-32L 0x1.5ad05d2ceb1d9c3233bc426d1cp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57cp-4L : 0x8.266b7211aeb21a106782735f48p-32L 0x1.5ad05d2ceb1d9c3233bc426d1c8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bp-32L 0x1.5ad05d2ceb1d9dcap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10cp-32L 0x1.5ad05d2ceb1d9dccp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bp-32L 0x1.5ad05d2ceb1d9dcap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10cp-32L 0x1.5ad05d2ceb1d9dccp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bp-32L 0x1.5ad05d2ceb1d9dcap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10cp-32L 0x1.5ad05d2ceb1d9dccp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bp-32L 0x1.5ad05d2ceb1d9dcap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10cp-32L 0x1.5ad05d2ceb1d9dccp+0L : inexact-ok += clog downward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bf198dacabbd4p-32L 0x1.5ad05d2ceb1d9dcb051ac825511bp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bf198dacabbd4p-32L 0x1.5ad05d2ceb1d9dcb051ac825511bp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bf198dacabbd4p-32L 0x1.5ad05d2ceb1d9dcb051ac825511bp+0L : inexact-ok += clog upward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bf198dacabbd48p-32L 0x1.5ad05d2ceb1d9dcb051ac825511cp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bf198dacabbcp-32L 0x1.5ad05d2ceb1d9dcb051ac82551p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bf198dacabbcp-32L 0x1.5ad05d2ceb1d9dcb051ac82551p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bf198dacabbcp-32L 0x1.5ad05d2ceb1d9dcb051ac82551p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c773p-4L : 0x8.266b795858aa10bf198dacabcp-32L 0x1.5ad05d2ceb1d9dcb051ac825518p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db82p-32L 0x1.5ad05d2ceb1d9dcap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db82p-32L 0x1.5ad05d2ceb1d9dcap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db82p-32L 0x1.5ad05d2ceb1d9dcap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db83p-32L 0x1.5ad05d2ceb1d9dccp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db82p-32L 0x1.5ad05d2ceb1d9dcap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db82p-32L 0x1.5ad05d2ceb1d9dcap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db82p-32L 0x1.5ad05d2ceb1d9dcap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db83p-32L 0x1.5ad05d2ceb1d9dccp+0L : inexact-ok += clog downward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db826c7090ceabcd8p-32L 0x1.5ad05d2ceb1d9dcace3956e8cfabp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db826c7090ceabcep-32L 0x1.5ad05d2ceb1d9dcace3956e8cfabp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db826c7090ceabcd8p-32L 0x1.5ad05d2ceb1d9dcace3956e8cfabp+0L : inexact-ok += clog upward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db826c7090ceabcep-32L 0x1.5ad05d2ceb1d9dcace3956e8cfacp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db826c7090ceabcp-32L 0x1.5ad05d2ceb1d9dcace3956e8cf8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db826c7090ceabcp-32L 0x1.5ad05d2ceb1d9dcace3956e8cf8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db826c7090ceabcp-32L 0x1.5ad05d2ceb1d9dcace3956e8cf8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772p-4L : 0x8.266b79575e9db826c7090ceacp-32L 0x1.5ad05d2ceb1d9dcace3956e8dp+0L : inexact-ok += clog downward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x8.266b795857133758a2c6a89415b8p-32L 0x1.5ad05d2ceb1d9dcb04c17c89762cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x8.266b795857133758a2c6a89415b8p-32L 0x1.5ad05d2ceb1d9dcb04c17c89762cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x8.266b795857133758a2c6a89415b8p-32L 0x1.5ad05d2ceb1d9dcb04c17c89762cp+0L : inexact-ok += clog upward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x8.266b795857133758a2c6a89415cp-32L 0x1.5ad05d2ceb1d9dcb04c17c89762dp+0L : inexact-ok += clog downward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.266b795857133758a2cc07d7fcf8p-32L 0x1.5ad05d2ceb1d9dcb04c17c89762dp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.266b795857133758a2cc07d7fdp-32L 0x1.5ad05d2ceb1d9dcb04c17c89762dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.266b795857133758a2cc07d7fcf8p-32L 0x1.5ad05d2ceb1d9dcb04c17c89762dp+0L : inexact-ok += clog upward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.266b795857133758a2cc07d7fdp-32L 0x1.5ad05d2ceb1d9dcb04c17c89762ep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.266b795857133758a2cc07d7fcp-32L 0x1.5ad05d2ceb1d9dcb04c17c8976p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.266b795857133758a2cc07d7fcp-32L 0x1.5ad05d2ceb1d9dcb04c17c8976p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.266b795857133758a2cc07d7fcp-32L 0x1.5ad05d2ceb1d9dcb04c17c8976p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.266b795857133758a2cc07d8p-32L 0x1.5ad05d2ceb1d9dcb04c17c89768p+0L : inexact-ok += clog downward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x8.266b795857133758a28d84c1d6e8p-32L 0x1.5ad05d2ceb1d9dcb04c17c89761fp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x8.266b795857133758a28d84c1d6e8p-32L 0x1.5ad05d2ceb1d9dcb04c17c89761fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x8.266b795857133758a28d84c1d6e8p-32L 0x1.5ad05d2ceb1d9dcb04c17c89761fp+0L : inexact-ok += clog upward ldbl-128 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x8.266b795857133758a28d84c1d6fp-32L 0x1.5ad05d2ceb1d9dcb04c17c89762p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x8.266b795857133758a28d84c1d4p-32L 0x1.5ad05d2ceb1d9dcb04c17c8976p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x8.266b795857133758a28d84c1d8p-32L 0x1.5ad05d2ceb1d9dcb04c17c8976p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x8.266b795857133758a28d84c1d4p-32L 0x1.5ad05d2ceb1d9dcb04c17c8976p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e1714p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x8.266b795857133758a28d84c1d8p-32L 0x1.5ad05d2ceb1d9dcb04c17c89768p+0L : inexact-ok += clog downward flt-32 0x3.6e171p-4f 0xf.a0c59p-4f : 0x5.025688p-28f 0x1.5ad05cp+0f : inexact-ok += clog tonearest flt-32 0x3.6e171p-4f 0xf.a0c59p-4f : 0x5.02569p-28f 0x1.5ad05ep+0f : inexact-ok += clog towardzero flt-32 0x3.6e171p-4f 0xf.a0c59p-4f : 0x5.025688p-28f 0x1.5ad05cp+0f : inexact-ok += clog upward flt-32 0x3.6e171p-4f 0xf.a0c59p-4f : 0x5.02569p-28f 0x1.5ad05ep+0f : inexact-ok += clog downward dbl-64 0x3.6e171p-4 0xf.a0c59p-4 : 0x5.02568e6e898fp-28 0x1.5ad05d7e3e552p+0 : inexact-ok += clog tonearest dbl-64 0x3.6e171p-4 0xf.a0c59p-4 : 0x5.02568e6e898f4p-28 0x1.5ad05d7e3e553p+0 : inexact-ok += clog towardzero dbl-64 0x3.6e171p-4 0xf.a0c59p-4 : 0x5.02568e6e898fp-28 0x1.5ad05d7e3e552p+0 : inexact-ok += clog upward dbl-64 0x3.6e171p-4 0xf.a0c59p-4 : 0x5.02568e6e898f4p-28 0x1.5ad05d7e3e553p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f4p-28L 0x1.5ad05d7e3e552fp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f4p-28L 0x1.5ad05d7e3e552f02p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f4p-28L 0x1.5ad05d7e3e552fp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f48p-28L 0x1.5ad05d7e3e552f02p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f4p-28L 0x1.5ad05d7e3e552fp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f4p-28L 0x1.5ad05d7e3e552f02p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f4p-28L 0x1.5ad05d7e3e552fp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f48p-28L 0x1.5ad05d7e3e552f02p+0L : inexact-ok += clog downward ldbl-128 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f43d803687b7488p-28L 0x1.5ad05d7e3e552f010607dd059d41p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f43d803687b7488p-28L 0x1.5ad05d7e3e552f010607dd059d41p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f43d803687b7488p-28L 0x1.5ad05d7e3e552f010607dd059d41p+0L : inexact-ok += clog upward ldbl-128 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f43d803687b748cp-28L 0x1.5ad05d7e3e552f010607dd059d42p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f43d803687b74p-28L 0x1.5ad05d7e3e552f010607dd059dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f43d803687b74p-28L 0x1.5ad05d7e3e552f010607dd059d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f43d803687b74p-28L 0x1.5ad05d7e3e552f010607dd059dp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c59p-4L : 0x5.02568e6e898f2f43d803687b76p-28L 0x1.5ad05d7e3e552f010607dd059d8p+0L : inexact-ok += clog downward flt-32 0x3.6e171p-4f 0xf.a0c58p-4f : -0xa.9e6fp-28f 0x1.5ad05cp+0f : inexact-ok += clog tonearest flt-32 0x3.6e171p-4f 0xf.a0c58p-4f : -0xa.9e6fp-28f 0x1.5ad05ep+0f : inexact-ok += clog towardzero flt-32 0x3.6e171p-4f 0xf.a0c58p-4f : -0xa.9e6efp-28f 0x1.5ad05cp+0f : inexact-ok += clog upward flt-32 0x3.6e171p-4f 0xf.a0c58p-4f : -0xa.9e6efp-28f 0x1.5ad05ep+0f : inexact-ok += clog downward dbl-64 0x3.6e171p-4 0xf.a0c58p-4 : -0xa.9e6eff0c2b8fp-28 0x1.5ad05d475ce41p+0 : inexact-ok += clog tonearest dbl-64 0x3.6e171p-4 0xf.a0c58p-4 : -0xa.9e6eff0c2b8fp-28 0x1.5ad05d475ce42p+0 : inexact-ok += clog towardzero dbl-64 0x3.6e171p-4 0xf.a0c58p-4 : -0xa.9e6eff0c2b8e8p-28 0x1.5ad05d475ce41p+0 : inexact-ok += clog upward dbl-64 0x3.6e171p-4 0xf.a0c58p-4 : -0xa.9e6eff0c2b8e8p-28 0x1.5ad05d475ce42p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee03p-28L 0x1.5ad05d475ce41bc2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee02p-28L 0x1.5ad05d475ce41bc4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee02p-28L 0x1.5ad05d475ce41bc2p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee02p-28L 0x1.5ad05d475ce41bc4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee03p-28L 0x1.5ad05d475ce41bc2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee02p-28L 0x1.5ad05d475ce41bc4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee02p-28L 0x1.5ad05d475ce41bc2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee02p-28L 0x1.5ad05d475ce41bc4p+0L : inexact-ok += clog downward ldbl-128 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee026ba7a0ce86b38p-28L 0x1.5ad05d475ce41bc328d1e19af2cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee026ba7a0ce86b3p-28L 0x1.5ad05d475ce41bc328d1e19af2cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee026ba7a0ce86b3p-28L 0x1.5ad05d475ce41bc328d1e19af2cp+0L : inexact-ok += clog upward ldbl-128 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee026ba7a0ce86b3p-28L 0x1.5ad05d475ce41bc328d1e19af2c1p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee026ba7a0ce86cp-28L 0x1.5ad05d475ce41bc328d1e19af28p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee026ba7a0ce86cp-28L 0x1.5ad05d475ce41bc328d1e19af3p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee026ba7a0ce868p-28L 0x1.5ad05d475ce41bc328d1e19af28p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58p-4L : -0xa.9e6eff0c2b8ee026ba7a0ce868p-28L 0x1.5ad05d475ce41bc328d1e19af3p+0L : inexact-ok += clog downward dbl-64 0x3.6e171p-4 0xf.a0c58a83e57c8p-4 : -0x5.91f0cdfa88a84p-32 0x1.5ad05d6b6e33cp+0 : inexact-ok += clog tonearest dbl-64 0x3.6e171p-4 0xf.a0c58a83e57c8p-4 : -0x5.91f0cdfa88a84p-32 0x1.5ad05d6b6e33cp+0 : inexact-ok += clog towardzero dbl-64 0x3.6e171p-4 0xf.a0c58a83e57c8p-4 : -0x5.91f0cdfa88a8p-32 0x1.5ad05d6b6e33cp+0 : inexact-ok += clog upward dbl-64 0x3.6e171p-4 0xf.a0c58a83e57c8p-4 : -0x5.91f0cdfa88a8p-32 0x1.5ad05d6b6e33dp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825b8p-32L 0x1.5ad05d6b6e33c756p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825bp-32L 0x1.5ad05d6b6e33c758p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825bp-32L 0x1.5ad05d6b6e33c756p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825bp-32L 0x1.5ad05d6b6e33c758p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825b8p-32L 0x1.5ad05d6b6e33c756p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825bp-32L 0x1.5ad05d6b6e33c758p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825bp-32L 0x1.5ad05d6b6e33c756p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825bp-32L 0x1.5ad05d6b6e33c758p+0L : inexact-ok += clog downward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825b204c479a6a8bp-32L 0x1.5ad05d6b6e33c7578d4f2f389828p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825b204c479a6a8bp-32L 0x1.5ad05d6b6e33c7578d4f2f389828p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825b204c479a6a8acp-32L 0x1.5ad05d6b6e33c7578d4f2f389828p+0L : inexact-ok += clog upward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825b204c479a6a8acp-32L 0x1.5ad05d6b6e33c7578d4f2f389829p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825b204c479a6aap-32L 0x1.5ad05d6b6e33c7578d4f2f3898p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825b204c479a6a8p-32L 0x1.5ad05d6b6e33c7578d4f2f3898p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825b204c479a6a8p-32L 0x1.5ad05d6b6e33c7578d4f2f3898p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c8p-4L : -0x5.91f0cdfa88a825b204c479a6a8p-32L 0x1.5ad05d6b6e33c7578d4f2f38988p+0L : inexact-ok += clog downward dbl-64 0x3.6e171p-4 0xf.a0c58a83e57cp-4 : -0x5.91f0d5caeb6dcp-32 0x1.5ad05d6b6e33cp+0 : inexact-ok += clog tonearest dbl-64 0x3.6e171p-4 0xf.a0c58a83e57cp-4 : -0x5.91f0d5caeb6dcp-32 0x1.5ad05d6b6e33cp+0 : inexact-ok += clog towardzero dbl-64 0x3.6e171p-4 0xf.a0c58a83e57cp-4 : -0x5.91f0d5caeb6d8p-32 0x1.5ad05d6b6e33cp+0 : inexact-ok += clog upward dbl-64 0x3.6e171p-4 0xf.a0c58a83e57cp-4 : -0x5.91f0d5caeb6d8p-32 0x1.5ad05d6b6e33dp+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbeb8p-32L 0x1.5ad05d6b6e33c5ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbebp-32L 0x1.5ad05d6b6e33c5ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbebp-32L 0x1.5ad05d6b6e33c5ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbebp-32L 0x1.5ad05d6b6e33c5a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbeb8p-32L 0x1.5ad05d6b6e33c5ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbebp-32L 0x1.5ad05d6b6e33c5ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbebp-32L 0x1.5ad05d6b6e33c5ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbebp-32L 0x1.5ad05d6b6e33c5a2p+0L : inexact-ok += clog downward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbeb16207b121d208p-32L 0x1.5ad05d6b6e33c5a081c71c1d8fc2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbeb16207b121d204p-32L 0x1.5ad05d6b6e33c5a081c71c1d8fc2p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbeb16207b121d204p-32L 0x1.5ad05d6b6e33c5a081c71c1d8fc2p+0L : inexact-ok += clog upward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbeb16207b121d204p-32L 0x1.5ad05d6b6e33c5a081c71c1d8fc3p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbeb16207b121d4p-32L 0x1.5ad05d6b6e33c5a081c71c1d8f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbeb16207b121d2p-32L 0x1.5ad05d6b6e33c5a081c71c1d9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbeb16207b121d2p-32L 0x1.5ad05d6b6e33c5a081c71c1d8f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57cp-4L : -0x5.91f0d5caeb6dbeb16207b121d2p-32L 0x1.5ad05d6b6e33c5a081c71c1d9p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce844175006p-32L 0x1.5ad05d6b6e33c738p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce8441750058p-32L 0x1.5ad05d6b6e33c73ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce8441750058p-32L 0x1.5ad05d6b6e33c738p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce8441750058p-32L 0x1.5ad05d6b6e33c73ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce844175006p-32L 0x1.5ad05d6b6e33c738p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce8441750058p-32L 0x1.5ad05d6b6e33c73ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce8441750058p-32L 0x1.5ad05d6b6e33c738p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce8441750058p-32L 0x1.5ad05d6b6e33c73ap+0L : inexact-ok += clog downward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce844175005a998e5d7270b4p-32L 0x1.5ad05d6b6e33c7395323f0e7dbb5p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce844175005a998e5d7270bp-32L 0x1.5ad05d6b6e33c7395323f0e7dbb5p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce844175005a998e5d7270bp-32L 0x1.5ad05d6b6e33c7395323f0e7dbb5p+0L : inexact-ok += clog upward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce844175005a998e5d7270bp-32L 0x1.5ad05d6b6e33c7395323f0e7dbb6p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce844175005a998e5d7272p-32L 0x1.5ad05d6b6e33c7395323f0e7db8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce844175005a998e5d727p-32L 0x1.5ad05d6b6e33c7395323f0e7db8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce844175005a998e5d727p-32L 0x1.5ad05d6b6e33c7395323f0e7db8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c773p-4L : -0x5.91f0ce844175005a998e5d727p-32L 0x1.5ad05d6b6e33c7395323f0e7dcp+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81591p-32L 0x1.5ad05d6b6e33c738p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81591p-32L 0x1.5ad05d6b6e33c73ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b815908p-32L 0x1.5ad05d6b6e33c738p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b815908p-32L 0x1.5ad05d6b6e33c73ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81591p-32L 0x1.5ad05d6b6e33c738p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81591p-32L 0x1.5ad05d6b6e33c73ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b815908p-32L 0x1.5ad05d6b6e33c738p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b815908p-32L 0x1.5ad05d6b6e33c73ap+0L : inexact-ok += clog downward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81590db97a02b7fd9cp-32L 0x1.5ad05d6b6e33c7391c427fe57853p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81590db97a02b7fd9cp-32L 0x1.5ad05d6b6e33c7391c427fe57854p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81590db97a02b7fd98p-32L 0x1.5ad05d6b6e33c7391c427fe57853p+0L : inexact-ok += clog upward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81590db97a02b7fd98p-32L 0x1.5ad05d6b6e33c7391c427fe57854p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81590db97a02b7fep-32L 0x1.5ad05d6b6e33c7391c427fe578p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81590db97a02b7fep-32L 0x1.5ad05d6b6e33c7391c427fe5788p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81590db97a02b7fcp-32L 0x1.5ad05d6b6e33c7391c427fe578p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772p-4L : -0x5.91f0ce853b81590db97a02b7fcp-32L 0x1.5ad05d6b6e33c7391c427fe5788p+0L : inexact-ok += clog downward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0x5.91f0ce84430bd9c13bf173c874fp-32L 0x1.5ad05d6b6e33c73952caa54c5f55p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0x5.91f0ce84430bd9c13bf173c874ecp-32L 0x1.5ad05d6b6e33c73952caa54c5f55p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0x5.91f0ce84430bd9c13bf173c874ecp-32L 0x1.5ad05d6b6e33c73952caa54c5f55p+0L : inexact-ok += clog upward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0x5.91f0ce84430bd9c13bf173c874ecp-32L 0x1.5ad05d6b6e33c73952caa54c5f56p+0L : inexact-ok += clog downward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.91f0ce84430bd9c13bec14848d14p-32L 0x1.5ad05d6b6e33c73952caa54c5f56p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.91f0ce84430bd9c13bec14848d14p-32L 0x1.5ad05d6b6e33c73952caa54c5f57p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.91f0ce84430bd9c13bec14848d1p-32L 0x1.5ad05d6b6e33c73952caa54c5f56p+0L : inexact-ok += clog upward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.91f0ce84430bd9c13bec14848d1p-32L 0x1.5ad05d6b6e33c73952caa54c5f57p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.91f0ce84430bd9c13bec14848ep-32L 0x1.5ad05d6b6e33c73952caa54c5fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.91f0ce84430bd9c13bec14848ep-32L 0x1.5ad05d6b6e33c73952caa54c5f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.91f0ce84430bd9c13bec14848cp-32L 0x1.5ad05d6b6e33c73952caa54c5fp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.91f0ce84430bd9c13bec14848cp-32L 0x1.5ad05d6b6e33c73952caa54c5f8p+0L : inexact-ok += clog downward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.91f0ce84430bd9c13c2a979ab9dcp-32L 0x1.5ad05d6b6e33c73952caa54c5f48p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.91f0ce84430bd9c13c2a979ab9dcp-32L 0x1.5ad05d6b6e33c73952caa54c5f49p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.91f0ce84430bd9c13c2a979ab9d8p-32L 0x1.5ad05d6b6e33c73952caa54c5f48p+0L : inexact-ok += clog upward ldbl-128 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.91f0ce84430bd9c13c2a979ab9d8p-32L 0x1.5ad05d6b6e33c73952caa54c5f49p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.91f0ce84430bd9c13c2a979abap-32L 0x1.5ad05d6b6e33c73952caa54c5fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.91f0ce84430bd9c13c2a979abap-32L 0x1.5ad05d6b6e33c73952caa54c5f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.91f0ce84430bd9c13c2a979ab8p-32L 0x1.5ad05d6b6e33c73952caa54c5fp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e171p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.91f0ce84430bd9c13c2a979ab8p-32L 0x1.5ad05d6b6e33c73952caa54c5f8p+0L : inexact-ok += clog downward dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c59p-4 : 0x5.5b759b1cfa92p-28 0x1.5ad05d64dd6fp+0 : inexact-ok += clog tonearest dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c59p-4 : 0x5.5b759b1cfa924p-28 0x1.5ad05d64dd6fp+0 : inexact-ok += clog towardzero dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c59p-4 : 0x5.5b759b1cfa92p-28 0x1.5ad05d64dd6fp+0 : inexact-ok += clog upward dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c59p-4 : 0x5.5b759b1cfa924p-28 0x1.5ad05d64dd6f1p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923908p-28L 0x1.5ad05d64dd6f0086p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923908p-28L 0x1.5ad05d64dd6f0088p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923908p-28L 0x1.5ad05d64dd6f0086p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa92391p-28L 0x1.5ad05d64dd6f0088p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923908p-28L 0x1.5ad05d64dd6f0086p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923908p-28L 0x1.5ad05d64dd6f0088p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923908p-28L 0x1.5ad05d64dd6f0086p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa92391p-28L 0x1.5ad05d64dd6f0088p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923909b3b26908591p-28L 0x1.5ad05d64dd6f0087172d7cc2a6fap+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923909b3b269085914p-28L 0x1.5ad05d64dd6f0087172d7cc2a6fap+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923909b3b26908591p-28L 0x1.5ad05d64dd6f0087172d7cc2a6fap+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923909b3b269085914p-28L 0x1.5ad05d64dd6f0087172d7cc2a6fbp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923909b3b2690858p-28L 0x1.5ad05d64dd6f0087172d7cc2a68p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923909b3b269085ap-28L 0x1.5ad05d64dd6f0087172d7cc2a7p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923909b3b2690858p-28L 0x1.5ad05d64dd6f0087172d7cc2a68p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c59p-4L : 0x5.5b759b1cfa923909b3b269085ap-28L 0x1.5ad05d64dd6f0087172d7cc2a7p+0L : inexact-ok += clog downward dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58p-4 : -0xa.454ff1afa14ep-28 0x1.5ad05d2dfbfddp+0 : inexact-ok += clog tonearest dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58p-4 : -0xa.454ff1afa14d8p-28 0x1.5ad05d2dfbfddp+0 : inexact-ok += clog towardzero dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58p-4 : -0xa.454ff1afa14d8p-28 0x1.5ad05d2dfbfddp+0 : inexact-ok += clog upward dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58p-4 : -0xa.454ff1afa14d8p-28 0x1.5ad05d2dfbfdep+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6cp-28L 0x1.5ad05d2dfbfdd5bp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6bp-28L 0x1.5ad05d2dfbfdd5b2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6bp-28L 0x1.5ad05d2dfbfdd5bp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6bp-28L 0x1.5ad05d2dfbfdd5b2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6cp-28L 0x1.5ad05d2dfbfdd5bp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6bp-28L 0x1.5ad05d2dfbfdd5b2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6bp-28L 0x1.5ad05d2dfbfdd5bp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6bp-28L 0x1.5ad05d2dfbfdd5b2p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6b654b6d6a4e8f8p-28L 0x1.5ad05d2dfbfdd5b1105059a38b7fp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6b654b6d6a4e8f8p-28L 0x1.5ad05d2dfbfdd5b1105059a38b8p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6b654b6d6a4e8fp-28L 0x1.5ad05d2dfbfdd5b1105059a38b7fp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6b654b6d6a4e8fp-28L 0x1.5ad05d2dfbfdd5b1105059a38b8p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6b654b6d6a4ecp-28L 0x1.5ad05d2dfbfdd5b1105059a38bp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6b654b6d6a4e8p-28L 0x1.5ad05d2dfbfdd5b1105059a38b8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6b654b6d6a4e8p-28L 0x1.5ad05d2dfbfdd5b1105059a38bp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58p-4L : -0xa.454ff1afa14da6b654b6d6a4e8p-28L 0x1.5ad05d2dfbfdd5b1105059a38b8p+0L : inexact-ok += clog downward dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58a83e57c8p-4 : 0xa.76bfdf9afb7ep-60 0x1.5ad05d520d4d9p+0 : inexact-ok += clog tonearest dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58a83e57c8p-4 : 0xa.76bfdf9afb7e8p-60 0x1.5ad05d520d4d9p+0 : inexact-ok += clog towardzero dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58a83e57c8p-4 : 0xa.76bfdf9afb7ep-60 0x1.5ad05d520d4d9p+0 : inexact-ok += clog upward dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58a83e57c8p-4 : 0xa.76bfdf9afb7e8p-60 0x1.5ad05d520d4dap+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e792p-60L 0x1.5ad05d520d4d90c6p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e793p-60L 0x1.5ad05d520d4d90c8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e792p-60L 0x1.5ad05d520d4d90c6p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e793p-60L 0x1.5ad05d520d4d90c8p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e792p-60L 0x1.5ad05d520d4d90c6p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e793p-60L 0x1.5ad05d520d4d90c8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e792p-60L 0x1.5ad05d520d4d90c6p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e793p-60L 0x1.5ad05d520d4d90c8p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e79281ed15f20db3p-60L 0x1.5ad05d520d4d90c70f193f6e2d3fp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e79281ed15f20db3p-60L 0x1.5ad05d520d4d90c70f193f6e2d3fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e79281ed15f20db3p-60L 0x1.5ad05d520d4d90c70f193f6e2d3fp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e79281ed15f20db38p-60L 0x1.5ad05d520d4d90c70f193f6e2d4p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e79281ed15f20d8p-60L 0x1.5ad05d520d4d90c70f193f6e2dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e79281ed15f20dcp-60L 0x1.5ad05d520d4d90c70f193f6e2dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e79281ed15f20d8p-60L 0x1.5ad05d520d4d90c70f193f6e2dp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c8p-4L : 0xa.76bfdf9afb7e79281ed15f20dcp-60L 0x1.5ad05d520d4d90c70f193f6e2d8p+0L : inexact-ok += clog downward dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58a83e57cp-4 : -0x7.28f6c74843068p-56 0x1.5ad05d520d4d8p+0 : inexact-ok += clog tonearest dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58a83e57cp-4 : -0x7.28f6c74843068p-56 0x1.5ad05d520d4d9p+0 : inexact-ok += clog towardzero dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58a83e57cp-4 : -0x7.28f6c74843064p-56 0x1.5ad05d520d4d8p+0 : inexact-ok += clog upward dbl-64 0x3.6e17119fb8aacp-4 0xf.a0c58a83e57cp-4 : -0x7.28f6c74843064p-56 0x1.5ad05d520d4d9p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b48p-56L 0x1.5ad05d520d4d8f1p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b48p-56L 0x1.5ad05d520d4d8f1p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b4p-56L 0x1.5ad05d520d4d8f1p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b4p-56L 0x1.5ad05d520d4d8f12p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b48p-56L 0x1.5ad05d520d4d8f1p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b48p-56L 0x1.5ad05d520d4d8f1p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b4p-56L 0x1.5ad05d520d4d8f1p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b4p-56L 0x1.5ad05d520d4d8f12p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b440cf21dd94d28p-56L 0x1.5ad05d520d4d8f1003906f91d7d4p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b440cf21dd94d28p-56L 0x1.5ad05d520d4d8f1003906f91d7d4p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b440cf21dd94d24p-56L 0x1.5ad05d520d4d8f1003906f91d7d4p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b440cf21dd94d24p-56L 0x1.5ad05d520d4d8f1003906f91d7d5p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b440cf21dd94ep-56L 0x1.5ad05d520d4d8f1003906f91d78p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b440cf21dd94ep-56L 0x1.5ad05d520d4d8f1003906f91d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b440cf21dd94cp-56L 0x1.5ad05d520d4d8f1003906f91d78p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57cp-4L : -0x7.28f6c74843066b440cf21dd94cp-56L 0x1.5ad05d520d4d8f1003906f91d8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb6p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb6p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb6p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb8p-60L 0x1.5ad05d520d4d90aap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb6p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb6p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb6p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb8p-60L 0x1.5ad05d520d4d90aap+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb62696fd9932dcp-60L 0x1.5ad05d520d4d90a8d4edf41ea1dep+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb62696fd9932dcp-60L 0x1.5ad05d520d4d90a8d4edf41ea1dfp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb62696fd9932dcp-60L 0x1.5ad05d520d4d90a8d4edf41ea1dep+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb62696fd9932ddp-60L 0x1.5ad05d520d4d90a8d4edf41ea1dfp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb62696fd99328p-60L 0x1.5ad05d520d4d90a8d4edf41ea18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb62696fd9933p-60L 0x1.5ad05d520d4d90a8d4edf41ea2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb62696fd99328p-60L 0x1.5ad05d520d4d90a8d4edf41ea18p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c773p-4L : 0x1.db3312505618efb62696fd9933p-60L 0x1.5ad05d520d4d90a8d4edf41ea2p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d2337342p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d2337342p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d2337342p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d2337344p-60L 0x1.5ad05d520d4d90aap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d2337342p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d2337342p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d2337342p-60L 0x1.5ad05d520d4d90a8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d2337344p-60L 0x1.5ad05d520d4d90aap+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d23373428fa0d16f791bp-60L 0x1.5ad05d520d4d90a89e0c8304a654p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d23373428fa0d16f791bp-60L 0x1.5ad05d520d4d90a89e0c8304a654p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d23373428fa0d16f791bp-60L 0x1.5ad05d520d4d90a89e0c8304a654p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d23373428fa0d16f791cp-60L 0x1.5ad05d520d4d90a89e0c8304a655p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d23373428fa0d16f79p-60L 0x1.5ad05d520d4d90a89e0c8304a6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d23373428fa0d16f79p-60L 0x1.5ad05d520d4d90a89e0c8304a68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d23373428fa0d16f79p-60L 0x1.5ad05d520d4d90a89e0c8304a6p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772p-4L : 0x1.cb924cc5d23373428fa0d16f798p-60L 0x1.5ad05d520d4d90a89e0c8304a68p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x1.db19a4b9ed0e042bd0780eda5d7fp-60L 0x1.5ad05d520d4d90a8d494a882ff1bp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x1.db19a4b9ed0e042bd0780eda5d7fp-60L 0x1.5ad05d520d4d90a8d494a882ff1bp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x1.db19a4b9ed0e042bd0780eda5d7fp-60L 0x1.5ad05d520d4d90a8d494a882ff1bp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x1.db19a4b9ed0e042bd0780eda5d8p-60L 0x1.5ad05d520d4d90a8d494a882ff1cp+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x1.db19a4b9ed0e5a200ef1e44889fbp-60L 0x1.5ad05d520d4d90a8d494a882ff1cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x1.db19a4b9ed0e5a200ef1e44889fbp-60L 0x1.5ad05d520d4d90a8d494a882ff1dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x1.db19a4b9ed0e5a200ef1e44889fbp-60L 0x1.5ad05d520d4d90a8d494a882ff1cp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x1.db19a4b9ed0e5a200ef1e44889fcp-60L 0x1.5ad05d520d4d90a8d494a882ff1dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x1.db19a4b9ed0e5a200ef1e448898p-60L 0x1.5ad05d520d4d90a8d494a882ffp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x1.db19a4b9ed0e5a200ef1e4488ap-60L 0x1.5ad05d520d4d90a8d494a882ffp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x1.db19a4b9ed0e5a200ef1e448898p-60L 0x1.5ad05d520d4d90a8d494a882ffp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x1.db19a4b9ed0e5a200ef1e4488ap-60L 0x1.5ad05d520d4d90a8d494a882ff8p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x1.db19a4b9ed0a71eeac50eae96d17p-60L 0x1.5ad05d520d4d90a8d494a882ff0ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x1.db19a4b9ed0a71eeac50eae96d17p-60L 0x1.5ad05d520d4d90a8d494a882ff0fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x1.db19a4b9ed0a71eeac50eae96d17p-60L 0x1.5ad05d520d4d90a8d494a882ff0ep+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x1.db19a4b9ed0a71eeac50eae96d18p-60L 0x1.5ad05d520d4d90a8d494a882ff0fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x1.db19a4b9ed0a71eeac50eae96dp-60L 0x1.5ad05d520d4d90a8d494a882ffp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x1.db19a4b9ed0a71eeac50eae96dp-60L 0x1.5ad05d520d4d90a8d494a882ffp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x1.db19a4b9ed0a71eeac50eae96dp-60L 0x1.5ad05d520d4d90a8d494a882ffp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aacp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0x1.db19a4b9ed0a71eeac50eae96d8p-60L 0x1.5ad05d520d4d90a8d494a882ff8p+0L : inexact-ok += clog downward dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c59p-4 : 0x5.5b759b161e64p-28 0x1.5ad05d64dd6fp+0 : inexact-ok += clog tonearest dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c59p-4 : 0x5.5b759b161e64p-28 0x1.5ad05d64dd6fp+0 : inexact-ok += clog towardzero dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c59p-4 : 0x5.5b759b161e64p-28 0x1.5ad05d64dd6fp+0 : inexact-ok += clog upward dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c59p-4 : 0x5.5b759b161e644p-28 0x1.5ad05d64dd6f1p+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a6p-28L 0x1.5ad05d64dd6f027ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a6p-28L 0x1.5ad05d64dd6f027cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a6p-28L 0x1.5ad05d64dd6f027ap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a68p-28L 0x1.5ad05d64dd6f027cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a6p-28L 0x1.5ad05d64dd6f027ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a6p-28L 0x1.5ad05d64dd6f027cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a6p-28L 0x1.5ad05d64dd6f027ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a68p-28L 0x1.5ad05d64dd6f027cp+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a624c977a851864p-28L 0x1.5ad05d64dd6f027b2fde2ddde778p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a624c977a851864p-28L 0x1.5ad05d64dd6f027b2fde2ddde779p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a624c977a851864p-28L 0x1.5ad05d64dd6f027b2fde2ddde778p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a624c977a851868p-28L 0x1.5ad05d64dd6f027b2fde2ddde779p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a624c977a8518p-28L 0x1.5ad05d64dd6f027b2fde2ddde7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a624c977a8518p-28L 0x1.5ad05d64dd6f027b2fde2ddde78p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a624c977a8518p-28L 0x1.5ad05d64dd6f027b2fde2ddde7p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c59p-4L : 0x5.5b759b161e641a624c977a851ap-28L 0x1.5ad05d64dd6f027b2fde2ddde78p+0L : inexact-ok += clog downward dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58p-4 : -0xa.454ff1b67d7cp-28 0x1.5ad05d2dfbfddp+0 : inexact-ok += clog tonearest dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58p-4 : -0xa.454ff1b67d7cp-28 0x1.5ad05d2dfbfddp+0 : inexact-ok += clog towardzero dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58p-4 : -0xa.454ff1b67d7b8p-28 0x1.5ad05d2dfbfddp+0 : inexact-ok += clog upward dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58p-4 : -0xa.454ff1b67d7b8p-28 0x1.5ad05d2dfbfdep+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2dp-28L 0x1.5ad05d2dfbfdd7a4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2cp-28L 0x1.5ad05d2dfbfdd7a6p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2cp-28L 0x1.5ad05d2dfbfdd7a4p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2cp-28L 0x1.5ad05d2dfbfdd7a6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2dp-28L 0x1.5ad05d2dfbfdd7a4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2cp-28L 0x1.5ad05d2dfbfdd7a6p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2cp-28L 0x1.5ad05d2dfbfdd7a4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2cp-28L 0x1.5ad05d2dfbfdd7a6p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2c46f59675c83a8p-28L 0x1.5ad05d2dfbfdd7a52902dbaf4382p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2c46f59675c83a8p-28L 0x1.5ad05d2dfbfdd7a52902dbaf4383p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2c46f59675c83ap-28L 0x1.5ad05d2dfbfdd7a52902dbaf4382p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2c46f59675c83ap-28L 0x1.5ad05d2dfbfdd7a52902dbaf4383p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2c46f59675c84p-28L 0x1.5ad05d2dfbfdd7a52902dbaf438p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2c46f59675c84p-28L 0x1.5ad05d2dfbfdd7a52902dbaf438p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2c46f59675c8p-28L 0x1.5ad05d2dfbfdd7a52902dbaf438p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58p-4L : -0xa.454ff1b67d7bd2c46f59675c8p-28L 0x1.5ad05d2dfbfdd7a52902dbaf44p+0L : inexact-ok += clog downward dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58a83e57c8p-4 : 0x3.9a91bc5b8a29p-60 0x1.5ad05d520d4d9p+0 : inexact-ok += clog tonearest dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58a83e57c8p-4 : 0x3.9a91bc5b8a292p-60 0x1.5ad05d520d4d9p+0 : inexact-ok += clog towardzero dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58a83e57c8p-4 : 0x3.9a91bc5b8a29p-60 0x1.5ad05d520d4d9p+0 : inexact-ok += clog upward dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58a83e57c8p-4 : 0x3.9a91bc5b8a292p-60 0x1.5ad05d520d4dap+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f3p-60L 0x1.5ad05d520d4d92bap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f3p-60L 0x1.5ad05d520d4d92bcp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f3p-60L 0x1.5ad05d520d4d92bap+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f34p-60L 0x1.5ad05d520d4d92bcp+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f3p-60L 0x1.5ad05d520d4d92bap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f3p-60L 0x1.5ad05d520d4d92bcp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f3p-60L 0x1.5ad05d520d4d92bap+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f34p-60L 0x1.5ad05d520d4d92bcp+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f30341ec45b686ap-60L 0x1.5ad05d520d4d92bb27ca8feadccdp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f30341ec45b686cp-60L 0x1.5ad05d520d4d92bb27ca8feadccep+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f30341ec45b686ap-60L 0x1.5ad05d520d4d92bb27ca8feadccdp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f30341ec45b686cp-60L 0x1.5ad05d520d4d92bb27ca8feadccep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f30341ec45b68p-60L 0x1.5ad05d520d4d92bb27ca8feadc8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f30341ec45b68p-60L 0x1.5ad05d520d4d92bb27ca8feaddp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f30341ec45b68p-60L 0x1.5ad05d520d4d92bb27ca8feadc8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c8p-4L : 0x3.9a91bc5b8a291f30341ec45b69p-60L 0x1.5ad05d520d4d92bb27ca8feaddp+0L : inexact-ok += clog downward dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58a83e57cp-4 : -0x7.96b9a97c3a1cp-56 0x1.5ad05d520d4d9p+0 : inexact-ok += clog tonearest dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58a83e57cp-4 : -0x7.96b9a97c3a1bcp-56 0x1.5ad05d520d4d9p+0 : inexact-ok += clog towardzero dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58a83e57cp-4 : -0x7.96b9a97c3a1bcp-56 0x1.5ad05d520d4d9p+0 : inexact-ok += clog upward dbl-64 0x3.6e17119fb8aaap-4 0xf.a0c58a83e57cp-4 : -0x7.96b9a97c3a1bcp-56 0x1.5ad05d520d4dap+0 : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc798p-56L 0x1.5ad05d520d4d9104p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc798p-56L 0x1.5ad05d520d4d9104p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc79p-56L 0x1.5ad05d520d4d9104p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc79p-56L 0x1.5ad05d520d4d9106p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc798p-56L 0x1.5ad05d520d4d9104p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc798p-56L 0x1.5ad05d520d4d9104p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc79p-56L 0x1.5ad05d520d4d9104p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc79p-56L 0x1.5ad05d520d4d9106p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc796e55e0f275d94p-56L 0x1.5ad05d520d4d91041c41c00e8771p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc796e55e0f275d9p-56L 0x1.5ad05d520d4d91041c41c00e8771p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc796e55e0f275d9p-56L 0x1.5ad05d520d4d91041c41c00e8771p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc796e55e0f275d9p-56L 0x1.5ad05d520d4d91041c41c00e8772p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc796e55e0f275ep-56L 0x1.5ad05d520d4d91041c41c00e87p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc796e55e0f275ep-56L 0x1.5ad05d520d4d91041c41c00e878p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc796e55e0f275cp-56L 0x1.5ad05d520d4d91041c41c00e87p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57cp-4L : -0x7.96b9a97c3a1bc796e55e0f275cp-56L 0x1.5ad05d520d4d91041c41c00e878p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71a8p-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71ap-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71ap-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71ap-60L 0x1.5ad05d520d4d929ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71a8p-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71ap-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71ap-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71ap-60L 0x1.5ad05d520d4d929ep+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71a354f9f91465acp-60L 0x1.5ad05d520d4d929ced9f449b516ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71a354f9f91465a8p-60L 0x1.5ad05d520d4d929ced9f449b516ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71a354f9f91465a8p-60L 0x1.5ad05d520d4d929ced9f449b516ep+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71a354f9f91465a8p-60L 0x1.5ad05d520d4d929ced9f449b516fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71a354f9f91466p-60L 0x1.5ad05d520d4d929ced9f449b51p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71a354f9f91466p-60L 0x1.5ad05d520d4d929ced9f449b518p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71a354f9f91464p-60L 0x1.5ad05d520d4d929ced9f449b51p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c773p-4L : -0x5.00fb10ef1b3c71a354f9f91464p-60L 0x1.5ad05d520d4d929ced9f449b518p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee28p-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee28p-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2p-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2p-60L 0x1.5ad05d520d4d929ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee28p-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee28p-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2p-60L 0x1.5ad05d520d4d929cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2p-60L 0x1.5ad05d520d4d929ep+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2452a3a6cd62dcp-60L 0x1.5ad05d520d4d929cb6bdd38155e3p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2452a3a6cd62dcp-60L 0x1.5ad05d520d4d929cb6bdd38155e3p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2452a3a6cd62d8p-60L 0x1.5ad05d520d4d929cb6bdd38155e3p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2452a3a6cd62d8p-60L 0x1.5ad05d520d4d929cb6bdd38155e4p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2452a3a6cd64p-60L 0x1.5ad05d520d4d929cb6bdd381558p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2452a3a6cd62p-60L 0x1.5ad05d520d4d929cb6bdd38156p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2452a3a6cd62p-60L 0x1.5ad05d520d4d929cb6bdd381558p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772p-4L : -0x5.109bd6799f21ee2452a3a6cd62p-60L 0x1.5ad05d520d4d929cb6bdd38156p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0x5.01147e8584475d2dc0e6f0f075d8p-60L 0x1.5ad05d520d4d929ced45f8ffaeaap+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0x5.01147e8584475d2dc0e6f0f075d8p-60L 0x1.5ad05d520d4d929ced45f8ffaeabp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0x5.01147e8584475d2dc0e6f0f075d4p-60L 0x1.5ad05d520d4d929ced45f8ffaeaap+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0x5.01147e8584475d2dc0e6f0f075d4p-60L 0x1.5ad05d520d4d929ced45f8ffaeabp+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.01147e8584470739826d1b824914p-60L 0x1.5ad05d520d4d929ced45f8ffaeabp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.01147e8584470739826d1b824914p-60L 0x1.5ad05d520d4d929ced45f8ffaeacp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.01147e8584470739826d1b82491p-60L 0x1.5ad05d520d4d929ced45f8ffaeabp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.01147e8584470739826d1b82491p-60L 0x1.5ad05d520d4d929ced45f8ffaeacp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.01147e8584470739826d1b824ap-60L 0x1.5ad05d520d4d929ced45f8ffae8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.01147e8584470739826d1b824ap-60L 0x1.5ad05d520d4d929ced45f8ffae8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.01147e8584470739826d1b8248p-60L 0x1.5ad05d520d4d929ced45f8ffae8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0x5.01147e8584470739826d1b8248p-60L 0x1.5ad05d520d4d929ced45f8ffafp+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.01147e85844aef6ae50e14e1695p-60L 0x1.5ad05d520d4d929ced45f8ffae9ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.01147e85844aef6ae50e14e1695p-60L 0x1.5ad05d520d4d929ced45f8ffae9ep+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.01147e85844aef6ae50e14e1694cp-60L 0x1.5ad05d520d4d929ced45f8ffae9ep+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.01147e85844aef6ae50e14e1694cp-60L 0x1.5ad05d520d4d929ced45f8ffae9fp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.01147e85844aef6ae50e14e16ap-60L 0x1.5ad05d520d4d929ced45f8ffae8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.01147e85844aef6ae50e14e16ap-60L 0x1.5ad05d520d4d929ced45f8ffae8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.01147e85844aef6ae50e14e168p-60L 0x1.5ad05d520d4d929ced45f8ffae8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aaap-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x5.01147e85844aef6ae50e14e168p-60L 0x1.5ad05d520d4d929ced45f8ffafp+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf38p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf4p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf38p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf4p-28L 0x1.5ad05d64dd6f011p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf38p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf4p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf38p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf4p-28L 0x1.5ad05d64dd6f011p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf3eeb0e5a475fecp-28L 0x1.5ad05d64dd6f010e5edb48ab462cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf3eeb0e5a475fecp-28L 0x1.5ad05d64dd6f010e5edb48ab462cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf3eeb0e5a475fecp-28L 0x1.5ad05d64dd6f010e5edb48ab462cp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf3eeb0e5a475ffp-28L 0x1.5ad05d64dd6f010e5edb48ab462dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf3eeb0e5a475ep-28L 0x1.5ad05d64dd6f010e5edb48ab46p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf3eeb0e5a476p-28L 0x1.5ad05d64dd6f010e5edb48ab46p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf3eeb0e5a475ep-28L 0x1.5ad05d64dd6f010e5edb48ab46p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f82bf3eeb0e5a476p-28L 0x1.5ad05d64dd6f010e5edb48ab468p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d243p-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d242p-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d242p-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d242p-28L 0x1.5ad05d2dfbfdd63ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d243p-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d242p-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d242p-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d242p-28L 0x1.5ad05d2dfbfdd63ap+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d2421256b56068b88p-28L 0x1.5ad05d2dfbfdd63857fea3513706p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d2421256b56068b8p-28L 0x1.5ad05d2dfbfdd63857fea3513706p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d2421256b56068b8p-28L 0x1.5ad05d2dfbfdd63857fea3513706p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d2421256b56068b8p-28L 0x1.5ad05d2dfbfdd63857fea3513707p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d2421256b56068cp-28L 0x1.5ad05d2dfbfdd63857fea35137p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d2421256b56068cp-28L 0x1.5ad05d2dfbfdd63857fea35137p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d2421256b560688p-28L 0x1.5ad05d2dfbfdd63857fea35137p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c5d2421256b560688p-28L 0x1.5ad05d2dfbfdd63857fea351378p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cdp-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cdp-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cdp-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cep-60L 0x1.5ad05d520d4d915p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cdp-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cdp-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cdp-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cep-60L 0x1.5ad05d520d4d915p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cd5d6aa38b8c5cp-60L 0x1.5ad05d520d4d914e56c73673e7bcp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cd5d6aa38b8c5cp-60L 0x1.5ad05d520d4d914e56c73673e7bdp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cd5d6aa38b8c5cp-60L 0x1.5ad05d520d4d914e56c73673e7bcp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cd5d6aa38b8c5c8p-60L 0x1.5ad05d520d4d914e56c73673e7bdp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cd5d6aa38b8c4p-60L 0x1.5ad05d520d4d914e56c73673e78p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cd5d6aa38b8c4p-60L 0x1.5ad05d520d4d914e56c73673e78p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cd5d6aa38b8c4p-60L 0x1.5ad05d520d4d914e56c73673e78p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9bb0649212161cd5d6aa38b8c8p-60L 0x1.5ad05d520d4d914e56c73673e8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2ep-56L 0x1.5ad05d520d4d8f96p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d8p-56L 0x1.5ad05d520d4d8f98p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d8p-56L 0x1.5ad05d520d4d8f96p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d8p-56L 0x1.5ad05d520d4d8f98p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2ep-56L 0x1.5ad05d520d4d8f96p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d8p-56L 0x1.5ad05d520d4d8f98p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d8p-56L 0x1.5ad05d520d4d8f96p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d8p-56L 0x1.5ad05d520d4d8f98p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d9357bf6404dep-56L 0x1.5ad05d520d4d8f974b3e66979255p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d9357bf6404dep-56L 0x1.5ad05d520d4d8f974b3e66979255p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d9357bf6404ddcp-56L 0x1.5ad05d520d4d8f974b3e66979255p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d9357bf6404ddcp-56L 0x1.5ad05d520d4d8f974b3e66979256p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d9357bf6404ep-56L 0x1.5ad05d520d4d8f974b3e669792p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d9357bf6404ep-56L 0x1.5ad05d520d4d8f974b3e6697928p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d9357bf6404cp-56L 0x1.5ad05d520d4d8f974b3e669792p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a7bef8d19cf2d9357bf6404cp-56L 0x1.5ad05d520d4d8f974b3e6697928p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9cp-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164bap-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9cp-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164bap-72L 0x1.5ad05d520d4d9132p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9cp-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164bap-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9cp-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164bap-72L 0x1.5ad05d520d4d9132p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9ffb0d4912f192p-72L 0x1.5ad05d520d4d91301c9beb245c5cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9ffb0d4912f192p-72L 0x1.5ad05d520d4d91301c9beb245c5cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9ffb0d4912f192p-72L 0x1.5ad05d520d4d91301c9beb245c5cp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9ffb0d4912f194p-72L 0x1.5ad05d520d4d91301c9beb245c5dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9ffb0d4912f1p-72L 0x1.5ad05d520d4d91301c9beb245cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9ffb0d4912f2p-72L 0x1.5ad05d520d4d91301c9beb245c8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9ffb0d4912f1p-72L 0x1.5ad05d520d4d91301c9beb245cp+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c773p-4L : 0x2.397476cb09164b9ffb0d4912f2p-72L 0x1.5ad05d520d4d91301c9beb245c8p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb128p-68L 0x1.5ad05d520d4d912ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb128p-68L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127p-68L 0x1.5ad05d520d4d912ep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127p-68L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb128p-68L 0x1.5ad05d520d4d912ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb128p-68L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127p-68L 0x1.5ad05d520d4d912ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127p-68L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127cfe8a212990b8p-68L 0x1.5ad05d520d4d912fe5ba7a0a60d1p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127cfe8a212990bp-68L 0x1.5ad05d520d4d912fe5ba7a0a60d2p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127cfe8a212990bp-68L 0x1.5ad05d520d4d912fe5ba7a0a60d1p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127cfe8a212990bp-68L 0x1.5ad05d520d4d912fe5ba7a0a60d2p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127cfe8a212994p-68L 0x1.5ad05d520d4d912fe5ba7a0a608p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127cfe8a21299p-68L 0x1.5ad05d520d4d912fe5ba7a0a61p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127cfe8a21299p-68L 0x1.5ad05d520d4d912fe5ba7a0a608p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772p-4L : -0xf.7d2e431734eb127cfe8a21299p-68L 0x1.5ad05d520d4d912fe5ba7a0a61p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0xa.29b103a5a5da5dfac61e93a8fd6p-76L 0x1.5ad05d520d4d91301c429f88b998p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0xa.29b103a5a5da5dfac61e93a8fd6p-76L 0x1.5ad05d520d4d91301c429f88b999p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0xa.29b103a5a5da5dfac61e93a8fd6p-76L 0x1.5ad05d520d4d91301c429f88b998p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0xa.29b103a5a5da5dfac61e93a8fd68p-76L 0x1.5ad05d520d4d91301c429f88b999p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0xa.29b103a5fbce9c749b8cc038846p-76L 0x1.5ad05d520d4d91301c429f88b999p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0xa.29b103a5fbce9c749b8cc0388468p-76L 0x1.5ad05d520d4d91301c429f88b99ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0xa.29b103a5fbce9c749b8cc038846p-76L 0x1.5ad05d520d4d91301c429f88b999p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0xa.29b103a5fbce9c749b8cc0388468p-76L 0x1.5ad05d520d4d91301c429f88b99ap+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0xa.29b103a5fbce9c749b8cc03884p-76L 0x1.5ad05d520d4d91301c429f88b98p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0xa.29b103a5fbce9c749b8cc03884p-76L 0x1.5ad05d520d4d91301c429f88b98p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0xa.29b103a5fbce9c749b8cc03884p-76L 0x1.5ad05d520d4d91301c429f88b98p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0xa.29b103a5fbce9c749b8cc03888p-76L 0x1.5ad05d520d4d91301c429f88bap+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0xa.29b103a2139d39d3a22da26c8fd8p-76L 0x1.5ad05d520d4d91301c429f88b98cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0xa.29b103a2139d39d3a22da26c8fep-76L 0x1.5ad05d520d4d91301c429f88b98cp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0xa.29b103a2139d39d3a22da26c8fd8p-76L 0x1.5ad05d520d4d91301c429f88b98cp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0xa.29b103a2139d39d3a22da26c8fep-76L 0x1.5ad05d520d4d91301c429f88b98dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0xa.29b103a2139d39d3a22da26c8cp-76L 0x1.5ad05d520d4d91301c429f88b98p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0xa.29b103a2139d39d3a22da26c9p-76L 0x1.5ad05d520d4d91301c429f88b98p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0xa.29b103a2139d39d3a22da26c8cp-76L 0x1.5ad05d520d4d91301c429f88b98p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab758p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : 0xa.29b103a2139d39d3a22da26c9p-76L 0x1.5ad05d520d4d91301c429f88bap+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea73978p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea73978p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea73978p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea7398p-28L 0x1.5ad05d64dd6f011p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea73978p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea73978p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea73978p-28L 0x1.5ad05d64dd6f010ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea7398p-28L 0x1.5ad05d64dd6f011p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea7397b162176e7e52cp-28L 0x1.5ad05d64dd6f010e9d5e5ec16994p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea7397b162176e7e52cp-28L 0x1.5ad05d64dd6f010e9d5e5ec16994p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea7397b162176e7e52cp-28L 0x1.5ad05d64dd6f010e9d5e5ec16994p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea7397b162176e7e53p-28L 0x1.5ad05d64dd6f010e9d5e5ec16995p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea7397b162176e7e4p-28L 0x1.5ad05d64dd6f010e9d5e5ec1698p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea7397b162176e7e6p-28L 0x1.5ad05d64dd6f010e9d5e5ec1698p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea7397b162176e7e4p-28L 0x1.5ad05d64dd6f010e9d5e5ec1698p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1ea7397b162176e7e6p-28L 0x1.5ad05d64dd6f010e9d5e5ec16ap+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9fp-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9ep-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9ep-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9ep-28L 0x1.5ad05d2dfbfdd63ap+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9fp-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9ep-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9ep-28L 0x1.5ad05d2dfbfdd638p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9ep-28L 0x1.5ad05d2dfbfdd63ap+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9e6a72eaa5a4cdp-28L 0x1.5ad05d2dfbfdd6389681b9a1787dp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9e6a72eaa5a4cc8p-28L 0x1.5ad05d2dfbfdd6389681b9a1787dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9e6a72eaa5a4cc8p-28L 0x1.5ad05d2dfbfdd6389681b9a1787dp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9e6a72eaa5a4cc8p-28L 0x1.5ad05d2dfbfdd6389681b9a1787ep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9e6a72eaa5a5p-28L 0x1.5ad05d2dfbfdd6389681b9a178p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9e6a72eaa5a4cp-28L 0x1.5ad05d2dfbfdd6389681b9a1788p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9e6a72eaa5a4cp-28L 0x1.5ad05d2dfbfdd6389681b9a178p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58p-4L : -0xa.454ff1b17d38a9e6a72eaa5a4cp-28L 0x1.5ad05d2dfbfdd6389681b9a1788p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f22p-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f23p-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f22p-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f23p-60L 0x1.5ad05d520d4d915p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f22p-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f23p-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f22p-60L 0x1.5ad05d520d4d914ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f23p-60L 0x1.5ad05d520d4d915p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f228ed54614263d8p-60L 0x1.5ad05d520d4d914e954a4c9df752p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f228ed54614263d8p-60L 0x1.5ad05d520d4d914e954a4c9df752p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f228ed54614263d8p-60L 0x1.5ad05d520d4d914e954a4c9df752p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f228ed54614263ep-60L 0x1.5ad05d520d4d914e954a4c9df753p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f228ed5461426p-60L 0x1.5ad05d520d4d914e954a4c9df7p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f228ed54614264p-60L 0x1.5ad05d520d4d914e954a4c9df78p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f228ed5461426p-60L 0x1.5ad05d520d4d914e954a4c9df7p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ad4decdaa27f228ed54614264p-60L 0x1.5ad05d520d4d914e954a4c9df78p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd588p-56L 0x1.5ad05d520d4d8f96p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd588p-56L 0x1.5ad05d520d4d8f98p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd58p-56L 0x1.5ad05d520d4d8f96p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd58p-56L 0x1.5ad05d520d4d8f98p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd588p-56L 0x1.5ad05d520d4d8f96p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd588p-56L 0x1.5ad05d520d4d8f98p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd58p-56L 0x1.5ad05d520d4d8f96p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd58p-56L 0x1.5ad05d520d4d8f98p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd584da7c8bd0a838p-56L 0x1.5ad05d520d4d8f9789c17cc1a1ebp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd584da7c8bd0a834p-56L 0x1.5ad05d520d4d8f9789c17cc1a1ebp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd584da7c8bd0a834p-56L 0x1.5ad05d520d4d8f9789c17cc1a1ebp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd584da7c8bd0a834p-56L 0x1.5ad05d520d4d8f9789c17cc1a1ecp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd584da7c8bd0aap-56L 0x1.5ad05d520d4d8f9789c17cc1a18p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd584da7c8bd0a8p-56L 0x1.5ad05d520d4d8f9789c17cc1a2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd584da7c8bd0a8p-56L 0x1.5ad05d520d4d8f9789c17cc1a18p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57cp-4L : -0x7.46b57755181bd584da7c8bd0a8p-56L 0x1.5ad05d520d4d8f9789c17cc1a2p+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491cp-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491cp-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491bp-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491bp-72L 0x1.5ad05d520d4d9132p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491cp-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491cp-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491bp-72L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491bp-72L 0x1.5ad05d520d4d9132p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491b88426d4dbd24p-72L 0x1.5ad05d520d4d91305b1f014e6bf2p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491b88426d4dbd238p-72L 0x1.5ad05d520d4d91305b1f014e6bf2p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491b88426d4dbd238p-72L 0x1.5ad05d520d4d91305b1f014e6bf2p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491b88426d4dbd238p-72L 0x1.5ad05d520d4d91305b1f014e6bf3p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491b88426d4dbd4p-72L 0x1.5ad05d520d4d91305b1f014e6b8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491b88426d4dbd4p-72L 0x1.5ad05d520d4d91305b1f014e6cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491b88426d4dbdp-72L 0x1.5ad05d520d4d91305b1f014e6b8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c773p-4L : -0xb.7ee7cfb3d99491b88426d4dbdp-72L 0x1.5ad05d520d4d91305b1f014e6cp+0L : inexact-ok += clog downward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c06p-64L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c06p-64L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c04p-64L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog upward ldbl-96-intel 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c04p-64L 0x1.5ad05d520d4d9132p+0L : inexact-ok += clog downward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c06p-64L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c06p-64L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c04p-64L 0x1.5ad05d520d4d913p+0L : inexact-ok += clog upward ldbl-96-m68k 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c04p-64L 0x1.5ad05d520d4d9132p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c0543353d33a656p-64L 0x1.5ad05d520d4d9130243d90347067p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c0543353d33a656p-64L 0x1.5ad05d520d4d9130243d90347067p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c0543353d33a655p-64L 0x1.5ad05d520d4d9130243d90347067p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c0543353d33a655p-64L 0x1.5ad05d520d4d9130243d90347068p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c0543353d33a68p-64L 0x1.5ad05d520d4d9130243d90347p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c0543353d33a68p-64L 0x1.5ad05d520d4d9130243d9034708p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c0543353d33a6p-64L 0x1.5ad05d520d4d9130243d90347p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772p-4L : -0x1.058b4077f2315c0543353d33a6p-64L 0x1.5ad05d520d4d9130243d9034708p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0xd.15c13644884d3778fe6e46eea9ap-72L 0x1.5ad05d520d4d91305ac5b5b2c92ep+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0xd.15c13644884d3778fe6e46eea998p-72L 0x1.5ad05d520d4d91305ac5b5b2c92fp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0xd.15c13644884d3778fe6e46eea998p-72L 0x1.5ad05d520d4d91305ac5b5b2c92ep+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0xd.15c13644884d3778fe6e46eea998p-72L 0x1.5ad05d520d4d91305ac5b5b2c92fp+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0xd.15c1364482edf39161176425b098p-72L 0x1.5ad05d520d4d91305ac5b5b2c92fp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0xd.15c1364482edf39161176425b098p-72L 0x1.5ad05d520d4d91305ac5b5b2c93p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0xd.15c1364482edf39161176425b09p-72L 0x1.5ad05d520d4d91305ac5b5b2c92fp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0xd.15c1364482edf39161176425b09p-72L 0x1.5ad05d520d4d91305ac5b5b2c93p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0xd.15c1364482edf39161176425b4p-72L 0x1.5ad05d520d4d91305ac5b5b2c9p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0xd.15c1364482edf39161176425bp-72L 0x1.5ad05d520d4d91305ac5b5b2c9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0xd.15c1364482edf39161176425bp-72L 0x1.5ad05d520d4d91305ac5b5b2c9p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : -0xd.15c1364482edf39161176425bp-72L 0x1.5ad05d520d4d91305ac5b5b2c98p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0xd.15c13644c17109bb70ad56027698p-72L 0x1.5ad05d520d4d91305ac5b5b2c922p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0xd.15c13644c17109bb70ad5602769p-72L 0x1.5ad05d520d4d91305ac5b5b2c922p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0xd.15c13644c17109bb70ad5602769p-72L 0x1.5ad05d520d4d91305ac5b5b2c922p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0xd.15c13644c17109bb70ad5602769p-72L 0x1.5ad05d520d4d91305ac5b5b2c923p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0xd.15c13644c17109bb70ad560278p-72L 0x1.5ad05d520d4d91305ac5b5b2c9p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0xd.15c13644c17109bb70ad560278p-72L 0x1.5ad05d520d4d91305ac5b5b2c9p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0xd.15c13644c17109bb70ad560274p-72L 0x1.5ad05d520d4d91305ac5b5b2c9p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab754p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0xd.15c13644c17109bb70ad560274p-72L 0x1.5ad05d520d4d91305ac5b5b2c98p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36f2b152a8p-28L 0x1.5ad05d64dd6f010e61c026b85297p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36f2b152acp-28L 0x1.5ad05d64dd6f010e61c026b85297p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36f2b152a8p-28L 0x1.5ad05d64dd6f010e61c026b85297p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36f2b152acp-28L 0x1.5ad05d64dd6f010e61c026b85298p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d26535598p-28L 0x1.5ad05d2dfbfdd6385ae38160f439p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d2653559p-28L 0x1.5ad05d2dfbfdd6385ae38160f43ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d2653559p-28L 0x1.5ad05d2dfbfdd6385ae38160f439p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d2653559p-28L 0x1.5ad05d2dfbfdd6385ae38160f43ap+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e7076fb839ede8f6398p-60L 0x1.5ad05d520d4d914e59ac1481e044p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e7076fb839ede8f63ap-60L 0x1.5ad05d520d4d914e59ac1481e044p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e7076fb839ede8f6398p-60L 0x1.5ad05d520d4d914e59ac1481e044p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e7076fb839ede8f63ap-60L 0x1.5ad05d520d4d914e59ac1481e045p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74d36e499e039c2ap-56L 0x1.5ad05d520d4d8f974e2344a58addp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74d36e499e039c2ap-56L 0x1.5ad05d520d4d8f974e2344a58addp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74d36e499e039c29cp-56L 0x1.5ad05d520d4d8f974e2344a58addp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74d36e499e039c29cp-56L 0x1.5ad05d520d4d8f974e2344a58adep+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690aeb8a5c050b037dd07b3p-72L 0x1.5ad05d520d4d91301f80c93254e4p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690aeb8a5c050b037dd07b3p-72L 0x1.5ad05d520d4d91301f80c93254e4p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690aeb8a5c050b037dd07b3p-72L 0x1.5ad05d520d4d91301f80c93254e4p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690aeb8a5c050b037dd07b4p-72L 0x1.5ad05d520d4d91301f80c93254e5p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada90ecdb0d0a5aeaac9p-68L 0x1.5ad05d520d4d912fe89f58185959p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada90ecdb0d0a5aeaac88p-68L 0x1.5ad05d520d4d912fe89f58185959p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada90ecdb0d0a5aeaac88p-68L 0x1.5ad05d520d4d912fe89f58185959p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada90ecdb0d0a5aeaac88p-68L 0x1.5ad05d520d4d912fe89f5818595ap+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0xc.67fffffffffffffffffffffffff8p-224L 0x1.5ad05d520d4d91301f277d96b22p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0xc.68p-224L 0x1.5ad05d520d4d91301f277d96b221p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0xc.67fffffffffffffffffffffffff8p-224L 0x1.5ad05d520d4d91301f277d96b22p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0xc.68p-224L 0x1.5ad05d520d4d91301f277d96b221p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x5.5f43e79d56e2c8f8770d112f974p-112L 0x1.5ad05d520d4d91301f277d96b221p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x5.5f43e79d56e2c8f8770d112f974p-112L 0x1.5ad05d520d4d91301f277d96b222p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x5.5f43e79d56e2c8f8770d112f974p-112L 0x1.5ad05d520d4d91301f277d96b221p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x5.5f43e79d56e2c8f8770d112f9744p-112L 0x1.5ad05d520d4d91301f277d96b222p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.923d242723f0f13c720d0ce117d6p-108L 0x1.5ad05d520d4d91301f277d96b214p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.923d242723f0f13c720d0ce117d6p-108L 0x1.5ad05d520d4d91301f277d96b214p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.923d242723f0f13c720d0ce117d4p-108L 0x1.5ad05d520d4d91301f277d96b214p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2e34p-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.923d242723f0f13c720d0ce117d4p-108L 0x1.5ad05d520d4d91301f277d96b215p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee371e6cf8acp-28L 0x1.5ad05d64dd6f010e61c026b8528ap+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee371e6cf8bp-28L 0x1.5ad05d64dd6f010e61c026b8528bp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee371e6cf8acp-28L 0x1.5ad05d64dd6f010e61c026b8528ap+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee371e6cf8bp-28L 0x1.5ad05d64dd6f010e61c026b8528bp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee371e6cf8p-28L 0x1.5ad05d64dd6f010e61c026b8528p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee371e6cf8p-28L 0x1.5ad05d64dd6f010e61c026b8528p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee371e6cf8p-28L 0x1.5ad05d64dd6f010e61c026b8528p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee371e6cfap-28L 0x1.5ad05d64dd6f010e61c026b853p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361cfa97af38p-28L 0x1.5ad05d2dfbfdd6385ae38160f42dp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361cfa97af38p-28L 0x1.5ad05d2dfbfdd6385ae38160f42dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361cfa97af3p-28L 0x1.5ad05d2dfbfdd6385ae38160f42dp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361cfa97af3p-28L 0x1.5ad05d2dfbfdd6385ae38160f42ep+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361cfa97bp-28L 0x1.5ad05d2dfbfdd6385ae38160f4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361cfa97bp-28L 0x1.5ad05d2dfbfdd6385ae38160f4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361cfa97acp-28L 0x1.5ad05d2dfbfdd6385ae38160f4p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361cfa97acp-28L 0x1.5ad05d2dfbfdd6385ae38160f48p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e70a2b729bf9301e408p-60L 0x1.5ad05d520d4d914e59ac1481e038p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e70a2b729bf9301e41p-60L 0x1.5ad05d520d4d914e59ac1481e038p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e70a2b729bf9301e408p-60L 0x1.5ad05d520d4d914e59ac1481e038p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e70a2b729bf9301e41p-60L 0x1.5ad05d520d4d914e59ac1481e039p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e70a2b729bf9301e4p-60L 0x1.5ad05d520d4d914e59ac1481ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e70a2b729bf9301e4p-60L 0x1.5ad05d520d4d914e59ac1481ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e70a2b729bf9301e4p-60L 0x1.5ad05d520d4d914e59ac1481ep+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e70a2b729bf9301e8p-60L 0x1.5ad05d520d4d914e59ac1481e08p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74a7b2a37d4f29a7p-56L 0x1.5ad05d520d4d8f974e2344a58adp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74a7b2a37d4f29a6cp-56L 0x1.5ad05d520d4d8f974e2344a58ad1p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74a7b2a37d4f29a6cp-56L 0x1.5ad05d520d4d8f974e2344a58adp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74a7b2a37d4f29a6cp-56L 0x1.5ad05d520d4d8f974e2344a58ad1p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74a7b2a37d4f29cp-56L 0x1.5ad05d520d4d8f974e2344a58a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74a7b2a37d4f29ap-56L 0x1.5ad05d520d4d8f974e2344a58bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74a7b2a37d4f29ap-56L 0x1.5ad05d520d4d8f974e2344a58a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74a7b2a37d4f29ap-56L 0x1.5ad05d520d4d8f974e2344a58bp+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690b17460225bf75fe721a4p-72L 0x1.5ad05d520d4d91301f80c93254d7p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690b17460225bf75fe721a5p-72L 0x1.5ad05d520d4d91301f80c93254d8p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690b17460225bf75fe721a4p-72L 0x1.5ad05d520d4d91301f80c93254d7p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690b17460225bf75fe721a5p-72L 0x1.5ad05d520d4d91301f80c93254d8p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690b17460225bf75fe7218p-72L 0x1.5ad05d520d4d91301f80c932548p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690b17460225bf75fe7218p-72L 0x1.5ad05d520d4d91301f80c93255p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690b17460225bf75fe7218p-72L 0x1.5ad05d520d4d91301f80c932548p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690b17460225bf75fe722p-72L 0x1.5ad05d520d4d91301f80c93255p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada653134ec55e86a0a98p-68L 0x1.5ad05d520d4d912fe89f5818594cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada653134ec55e86a0a98p-68L 0x1.5ad05d520d4d912fe89f5818594dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada653134ec55e86a0a9p-68L 0x1.5ad05d520d4d912fe89f5818594cp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada653134ec55e86a0a9p-68L 0x1.5ad05d520d4d912fe89f5818594dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada653134ec55e86a0cp-68L 0x1.5ad05d520d4d912fe89f581859p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada653134ec55e86a0cp-68L 0x1.5ad05d520d4d912fe89f5818598p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada653134ec55e86a08p-68L 0x1.5ad05d520d4d912fe89f581859p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada653134ec55e86a08p-68L 0x1.5ad05d520d4d912fe89f5818598p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x2.bbba620b47280a19fa3919d0c126p-112L 0x1.5ad05d520d4d91301f277d96b214p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x2.bbba620b47280a19fa3919d0c128p-112L 0x1.5ad05d520d4d91301f277d96b214p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x2.bbba620b47280a19fa3919d0c126p-112L 0x1.5ad05d520d4d91301f277d96b214p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : 0x2.bbba620b47280a19fa3919d0c128p-112L 0x1.5ad05d520d4d91301f277d96b215p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.1afe49a89e0ad31271462b005838p-112L 0x1.5ad05d520d4d91301f277d96b215p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.1afe49a89e0ad31271462b00584p-112L 0x1.5ad05d520d4d91301f277d96b215p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.1afe49a89e0ad31271462b005838p-112L 0x1.5ad05d520d4d91301f277d96b215p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.1afe49a89e0ad31271462b00584p-112L 0x1.5ad05d520d4d91301f277d96b216p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.1afe49a89e0ad31271462b0058p-112L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.1afe49a89e0ad31271462b0058p-112L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.1afe49a89e0ad31271462b0058p-112L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x8.1afe49a89e0ad31271462b005cp-112L 0x1.5ad05d520d4d91301f277d96b28p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.66817e066f7e709ad2697b440bb2p-108L 0x1.5ad05d520d4d91301f277d96b207p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.66817e066f7e709ad2697b440bbp-108L 0x1.5ad05d520d4d91301f277d96b208p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.66817e066f7e709ad2697b440bbp-108L 0x1.5ad05d520d4d91301f277d96b207p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.66817e066f7e709ad2697b440bbp-108L 0x1.5ad05d520d4d91301f277d96b208p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.66817e066f7e709ad2697b440cp-108L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.66817e066f7e709ad2697b440cp-108L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.66817e066f7e709ad2697b440bp-108L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2fp-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.66817e066f7e709ad2697b440bp-108L 0x1.5ad05d520d4d91301f277d96b28p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36e78b87b8p-28L 0x1.5ad05d64dd6f010e61c026b8529ap+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36e78b87b8p-28L 0x1.5ad05d64dd6f010e61c026b8529ap+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36e78b87b8p-28L 0x1.5ad05d64dd6f010e61c026b8529ap+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36e78b87bcp-28L 0x1.5ad05d64dd6f010e61c026b8529bp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36e78b86p-28L 0x1.5ad05d64dd6f010e61c026b8528p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36e78b88p-28L 0x1.5ad05d64dd6f010e61c026b8528p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36e78b86p-28L 0x1.5ad05d64dd6f010e61c026b8528p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c59p-4L : 0x5.5b759b1b1f78958dee36e78b88p-28L 0x1.5ad05d64dd6f010e61c026b853p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d31792098p-28L 0x1.5ad05d2dfbfdd6385ae38160f43cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d31792098p-28L 0x1.5ad05d2dfbfdd6385ae38160f43dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d3179209p-28L 0x1.5ad05d2dfbfdd6385ae38160f43cp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d3179209p-28L 0x1.5ad05d2dfbfdd6385ae38160f43dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d317924p-28L 0x1.5ad05d2dfbfdd6385ae38160f4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d31792p-28L 0x1.5ad05d2dfbfdd6385ae38160f4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d31792p-28L 0x1.5ad05d2dfbfdd6385ae38160f4p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58p-4L : -0xa.454ff1b17c674dd2361d31792p-28L 0x1.5ad05d2dfbfdd6385ae38160f48p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e706bd5b8a5977738dp-60L 0x1.5ad05d520d4d914e59ac1481e047p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e706bd5b8a5977738d8p-60L 0x1.5ad05d520d4d914e59ac1481e048p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e706bd5b8a5977738dp-60L 0x1.5ad05d520d4d914e59ac1481e047p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e706bd5b8a5977738d8p-60L 0x1.5ad05d520d4d914e59ac1481e048p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e706bd5b8a5977738p-60L 0x1.5ad05d520d4d914e59ac1481ep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e706bd5b8a5977738p-60L 0x1.5ad05d520d4d914e59ac1481e08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e706bd5b8a5977738p-60L 0x1.5ad05d520d4d914e59ac1481ep+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c8p-4L : 0x8.9ba63ae10e706bd5b8a597773cp-60L 0x1.5ad05d520d4d914e59ac1481e08p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74de9414974ab4558p-56L 0x1.5ad05d520d4d8f974e2344a58aep+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74de9414974ab4558p-56L 0x1.5ad05d520d4d8f974e2344a58aep+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74de9414974ab4554p-56L 0x1.5ad05d520d4d8f974e2344a58aep+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74de9414974ab4554p-56L 0x1.5ad05d520d4d8f974e2344a58ae1p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74de9414974ab46p-56L 0x1.5ad05d520d4d8f974e2344a58a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74de9414974ab46p-56L 0x1.5ad05d520d4d8f974e2344a58bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74de9414974ab44p-56L 0x1.5ad05d520d4d8f974e2344a58a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57cp-4L : -0x7.46a86193e1d74de9414974ab44p-56L 0x1.5ad05d520d4d8f974e2344a58bp+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690ae064910bc3eb52fc9dfp-72L 0x1.5ad05d520d4d91301f80c93254e7p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690ae064910bc3eb52fc9dfp-72L 0x1.5ad05d520d4d91301f80c93254e7p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690ae064910bc3eb52fc9dfp-72L 0x1.5ad05d520d4d91301f80c93254e7p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690ae064910bc3eb52fc9ep-72L 0x1.5ad05d520d4d91301f80c93254e8p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690ae064910bc3eb52fc98p-72L 0x1.5ad05d520d4d91301f80c932548p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690ae064910bc3eb52fcap-72L 0x1.5ad05d520d4d91301f80c93255p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690ae064910bc3eb52fc98p-72L 0x1.5ad05d520d4d91301f80c932548p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c773p-4L : 0x1.96d96690ae064910bc3eb52fcap-72L 0x1.5ad05d520d4d91301f80c93255p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada9c12a606517315808p-68L 0x1.5ad05d520d4d912fe89f5818595cp+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada9c12a606517315808p-68L 0x1.5ad05d520d4d912fe89f5818595dp+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada9c12a6065173158078p-68L 0x1.5ad05d520d4d912fe89f5818595cp+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada9c12a6065173158078p-68L 0x1.5ad05d520d4d912fe89f5818595dp+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada9c12a60651731584p-68L 0x1.5ad05d520d4d912fe89f581859p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada9c12a6065173158p-68L 0x1.5ad05d520d4d912fe89f5818598p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada9c12a6065173158p-68L 0x1.5ad05d520d4d912fe89f581859p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772p-4L : -0xf.8757f41ada9c12a6065173158p-68L 0x1.5ad05d520d4d912fe89f5818598p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0xb.25caf947182ad3dd65ede6c6d518p-116L 0x1.5ad05d520d4d91301f277d96b223p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0xb.25caf947182ad3dd65ede6c6d51p-116L 0x1.5ad05d520d4d91301f277d96b224p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0xb.25caf947182ad3dd65ede6c6d51p-116L 0x1.5ad05d520d4d91301f277d96b223p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d043a8p-4L : -0xb.25caf947182ad3dd65ede6c6d51p-116L 0x1.5ad05d520d4d91301f277d96b224p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x4.ace73808e5601bbaa0ae32c329e8p-112L 0x1.5ad05d520d4d91301f277d96b225p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x4.ace73808e5601bbaa0ae32c329ecp-112L 0x1.5ad05d520d4d91301f277d96b225p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x4.ace73808e5601bbaa0ae32c329e8p-112L 0x1.5ad05d520d4d91301f277d96b225p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x4.ace73808e5601bbaa0ae32c329ecp-112L 0x1.5ad05d520d4d91301f277d96b226p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x4.ace73808e5601bbaa0ae32c328p-112L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x4.ace73808e5601bbaa0ae32c32ap-112L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x4.ace73808e5601bbaa0ae32c328p-112L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d044p-4L : 0x4.ace73808e5601bbaa0ae32c32ap-112L 0x1.5ad05d520d4d91301f277d96b28p+0L : inexact-ok += clog downward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.9d62ef206b091c104f72fac7deb2p-108L 0x1.5ad05d520d4d91301f277d96b217p+0L : inexact-ok += clog tonearest ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.9d62ef206b091c104f72fac7debp-108L 0x1.5ad05d520d4d91301f277d96b217p+0L : inexact-ok += clog towardzero ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.9d62ef206b091c104f72fac7debp-108L 0x1.5ad05d520d4d91301f277d96b217p+0L : inexact-ok += clog upward ldbl-128 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.9d62ef206b091c104f72fac7debp-108L 0x1.5ad05d520d4d91301f277d96b218p+0L : inexact-ok += clog downward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.9d62ef206b091c104f72fac7dfp-108L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.9d62ef206b091c104f72fac7dfp-108L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.9d62ef206b091c104f72fac7dep-108L 0x1.5ad05d520d4d91301f277d96b2p+0L : inexact-ok += clog upward ldbl-128ibm 0x3.6e17119fb8aab757d097f83d2ep-4L 0xf.a0c58a83e57c772fe5f777d04p-4L : -0x3.9d62ef206b091c104f72fac7dep-108L 0x1.5ad05d520d4d91301f277d96b28p+0L : inexact-ok +clog 0x1415bcaf2105940d49a636e98ae59p-115 0x7e6a150adfcd1b0921d44b31f40f4p-115 += clog downward flt-32 0x2.82b798p-4f 0xf.cd42bp-4f : 0xe.ca4fp-28f 0x1.69c98ep+0f : inexact-ok += clog tonearest flt-32 0x2.82b798p-4f 0xf.cd42bp-4f : 0xe.ca4f1p-28f 0x1.69c99p+0f : inexact-ok += clog towardzero flt-32 0x2.82b798p-4f 0xf.cd42bp-4f : 0xe.ca4fp-28f 0x1.69c98ep+0f : inexact-ok += clog upward flt-32 0x2.82b798p-4f 0xf.cd42bp-4f : 0xe.ca4f1p-28f 0x1.69c99p+0f : inexact-ok += clog downward dbl-64 0x2.82b798p-4 0xf.cd42bp-4 : 0xe.ca4f0c53f7948p-28 0x1.69c98f549e73p+0 : inexact-ok += clog tonearest dbl-64 0x2.82b798p-4 0xf.cd42bp-4 : 0xe.ca4f0c53f7948p-28 0x1.69c98f549e73p+0 : inexact-ok += clog towardzero dbl-64 0x2.82b798p-4 0xf.cd42bp-4 : 0xe.ca4f0c53f7948p-28 0x1.69c98f549e73p+0 : inexact-ok += clog upward dbl-64 0x2.82b798p-4 0xf.cd42bp-4 : 0xe.ca4f0c53f795p-28 0x1.69c98f549e731p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824p-28L 0x1.69c98f549e7306ccp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794825p-28L 0x1.69c98f549e7306cep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824p-28L 0x1.69c98f549e7306ccp+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794825p-28L 0x1.69c98f549e7306cep+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824p-28L 0x1.69c98f549e7306ccp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794825p-28L 0x1.69c98f549e7306cep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824p-28L 0x1.69c98f549e7306ccp+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794825p-28L 0x1.69c98f549e7306cep+0L : inexact-ok += clog downward ldbl-128 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824d93224bdd703p-28L 0x1.69c98f549e7306cd098a00aed4e7p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824d93224bdd7038p-28L 0x1.69c98f549e7306cd098a00aed4e8p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824d93224bdd703p-28L 0x1.69c98f549e7306cd098a00aed4e7p+0L : inexact-ok += clog upward ldbl-128 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824d93224bdd7038p-28L 0x1.69c98f549e7306cd098a00aed4e8p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824d93224bdd7p-28L 0x1.69c98f549e7306cd098a00aed48p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824d93224bdd7p-28L 0x1.69c98f549e7306cd098a00aed5p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824d93224bdd7p-28L 0x1.69c98f549e7306cd098a00aed48p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42bp-4L : 0xe.ca4f0c53f794824d93224bdd74p-28L 0x1.69c98f549e7306cd098a00aed5p+0L : inexact-ok += clog downward flt-32 0x2.82b798p-4f 0xf.cd42ap-4f : -0x1.02f39p-28f 0x1.69c98ep+0f : inexact-ok += clog tonearest flt-32 0x2.82b798p-4f 0xf.cd42ap-4f : -0x1.02f38ep-28f 0x1.69c99p+0f : inexact-ok += clog towardzero flt-32 0x2.82b798p-4f 0xf.cd42ap-4f : -0x1.02f38ep-28f 0x1.69c98ep+0f : inexact-ok += clog upward flt-32 0x2.82b798p-4f 0xf.cd42ap-4f : -0x1.02f38ep-28f 0x1.69c99p+0f : inexact-ok += clog downward dbl-64 0x2.82b798p-4 0xf.cd42ap-4 : -0x1.02f38e105efd3p-28 0x1.69c98f2c72f9ap+0 : inexact-ok += clog tonearest dbl-64 0x2.82b798p-4 0xf.cd42ap-4 : -0x1.02f38e105efd2p-28 0x1.69c98f2c72f9bp+0 : inexact-ok += clog towardzero dbl-64 0x2.82b798p-4 0xf.cd42ap-4 : -0x1.02f38e105efd2p-28 0x1.69c98f2c72f9ap+0 : inexact-ok += clog upward dbl-64 0x2.82b798p-4 0xf.cd42ap-4 : -0x1.02f38e105efd2p-28 0x1.69c98f2c72f9bp+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd205p-28L 0x1.69c98f2c72f9a964p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd205p-28L 0x1.69c98f2c72f9a964p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204ep-28L 0x1.69c98f2c72f9a964p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204ep-28L 0x1.69c98f2c72f9a966p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd205p-28L 0x1.69c98f2c72f9a964p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd205p-28L 0x1.69c98f2c72f9a964p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204ep-28L 0x1.69c98f2c72f9a964p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204ep-28L 0x1.69c98f2c72f9a966p+0L : inexact-ok += clog downward ldbl-128 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204f72c7799158bdp-28L 0x1.69c98f2c72f9a964de9e5c64012p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204f72c7799158bdp-28L 0x1.69c98f2c72f9a964de9e5c64012p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204f72c7799158bcp-28L 0x1.69c98f2c72f9a964de9e5c64012p+0L : inexact-ok += clog upward ldbl-128 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204f72c7799158bcp-28L 0x1.69c98f2c72f9a964de9e5c640121p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204f72c7799159p-28L 0x1.69c98f2c72f9a964de9e5c6401p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204f72c77991588p-28L 0x1.69c98f2c72f9a964de9e5c6401p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204f72c77991588p-28L 0x1.69c98f2c72f9a964de9e5c6401p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42ap-4L : -0x1.02f38e105efd204f72c77991588p-28L 0x1.69c98f2c72f9a964de9e5c64018p+0L : inexact-ok += clog downward dbl-64 0x2.82b798p-4 0xf.cd42a15bf9a38p-4 : 0x5.4b692d162437cp-32 0x1.69c98f2fdc9b4p+0 : inexact-ok += clog tonearest dbl-64 0x2.82b798p-4 0xf.cd42a15bf9a38p-4 : 0x5.4b692d162437cp-32 0x1.69c98f2fdc9b4p+0 : inexact-ok += clog towardzero dbl-64 0x2.82b798p-4 0xf.cd42a15bf9a38p-4 : 0x5.4b692d162437cp-32 0x1.69c98f2fdc9b4p+0 : inexact-ok += clog upward dbl-64 0x2.82b798p-4 0xf.cd42a15bf9a38p-4 : 0x5.4b692d162438p-32 0x1.69c98f2fdc9b5p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c758p-32L 0x1.69c98f2fdc9b43ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c758p-32L 0x1.69c98f2fdc9b43a2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c758p-32L 0x1.69c98f2fdc9b43ap+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c76p-32L 0x1.69c98f2fdc9b43a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c758p-32L 0x1.69c98f2fdc9b43ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c758p-32L 0x1.69c98f2fdc9b43a2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c758p-32L 0x1.69c98f2fdc9b43ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c76p-32L 0x1.69c98f2fdc9b43a2p+0L : inexact-ok += clog downward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c75a5c3e24ecff14p-32L 0x1.69c98f2fdc9b43a121f17d78623bp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c75a5c3e24ecff18p-32L 0x1.69c98f2fdc9b43a121f17d78623bp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c75a5c3e24ecff14p-32L 0x1.69c98f2fdc9b43a121f17d78623bp+0L : inexact-ok += clog upward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c75a5c3e24ecff18p-32L 0x1.69c98f2fdc9b43a121f17d78623cp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c75a5c3e24ecfep-32L 0x1.69c98f2fdc9b43a121f17d7862p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c75a5c3e24edp-32L 0x1.69c98f2fdc9b43a121f17d7862p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c75a5c3e24ecfep-32L 0x1.69c98f2fdc9b43a121f17d7862p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a38p-4L : 0x5.4b692d162437c75a5c3e24edp-32L 0x1.69c98f2fdc9b43a121f17d78628p+0L : inexact-ok += clog downward dbl-64 0x2.82b798p-4 0xf.cd42a15bf9a3p-4 : 0x5.4b69252f82e74p-32 0x1.69c98f2fdc9b4p+0 : inexact-ok += clog tonearest dbl-64 0x2.82b798p-4 0xf.cd42a15bf9a3p-4 : 0x5.4b69252f82e78p-32 0x1.69c98f2fdc9b4p+0 : inexact-ok += clog towardzero dbl-64 0x2.82b798p-4 0xf.cd42a15bf9a3p-4 : 0x5.4b69252f82e74p-32 0x1.69c98f2fdc9b4p+0 : inexact-ok += clog upward dbl-64 0x2.82b798p-4 0xf.cd42a15bf9a3p-4 : 0x5.4b69252f82e78p-32 0x1.69c98f2fdc9b5p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76dp-32L 0x1.69c98f2fdc9b425ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d08p-32L 0x1.69c98f2fdc9b426p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76dp-32L 0x1.69c98f2fdc9b425ep+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d08p-32L 0x1.69c98f2fdc9b426p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76dp-32L 0x1.69c98f2fdc9b425ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d08p-32L 0x1.69c98f2fdc9b426p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76dp-32L 0x1.69c98f2fdc9b425ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d08p-32L 0x1.69c98f2fdc9b426p+0L : inexact-ok += clog downward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d077802d5f4fe24p-32L 0x1.69c98f2fdc9b425fc6258ac34c01p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d077802d5f4fe24p-32L 0x1.69c98f2fdc9b425fc6258ac34c01p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d077802d5f4fe24p-32L 0x1.69c98f2fdc9b425fc6258ac34c01p+0L : inexact-ok += clog upward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d077802d5f4fe28p-32L 0x1.69c98f2fdc9b425fc6258ac34c02p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d077802d5f4fep-32L 0x1.69c98f2fdc9b425fc6258ac34cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d077802d5f4fep-32L 0x1.69c98f2fdc9b425fc6258ac34cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d077802d5f4fep-32L 0x1.69c98f2fdc9b425fc6258ac34cp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3p-4L : 0x5.4b69252f82e76d077802d5f5p-32L 0x1.69c98f2fdc9b425fc6258ac34c8p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf98p-32L 0x1.69c98f2fdc9b4352p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cfap-32L 0x1.69c98f2fdc9b4354p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf98p-32L 0x1.69c98f2fdc9b4352p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cfap-32L 0x1.69c98f2fdc9b4354p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf98p-32L 0x1.69c98f2fdc9b4352p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cfap-32L 0x1.69c98f2fdc9b4354p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf98p-32L 0x1.69c98f2fdc9b4352p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cfap-32L 0x1.69c98f2fdc9b4354p+0L : inexact-ok += clog downward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf9c2812ed9a9994p-32L 0x1.69c98f2fdc9b4353c638852b8ac3p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf9c2812ed9a9994p-32L 0x1.69c98f2fdc9b4353c638852b8ac3p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf9c2812ed9a9994p-32L 0x1.69c98f2fdc9b4353c638852b8ac3p+0L : inexact-ok += clog upward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf9c2812ed9a9998p-32L 0x1.69c98f2fdc9b4353c638852b8ac4p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf9c2812ed9a98p-32L 0x1.69c98f2fdc9b4353c638852b8a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf9c2812ed9a9ap-32L 0x1.69c98f2fdc9b4353c638852b8bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf9c2812ed9a98p-32L 0x1.69c98f2fdc9b4353c638852b8a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3613p-4L : 0x5.4b692b2f3fa2cf9c2812ed9a9ap-32L 0x1.69c98f2fdc9b4353c638852b8bp+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea59p-32L 0x1.69c98f2fdc9b4352p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea59p-32L 0x1.69c98f2fdc9b4354p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea59p-32L 0x1.69c98f2fdc9b4352p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea598p-32L 0x1.69c98f2fdc9b4354p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea59p-32L 0x1.69c98f2fdc9b4352p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea59p-32L 0x1.69c98f2fdc9b4354p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea59p-32L 0x1.69c98f2fdc9b4352p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea598p-32L 0x1.69c98f2fdc9b4354p+0L : inexact-ok += clog downward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea590ddb668291ae8p-32L 0x1.69c98f2fdc9b43539e0d0bad342p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea590ddb668291ae8p-32L 0x1.69c98f2fdc9b43539e0d0bad3421p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea590ddb668291ae8p-32L 0x1.69c98f2fdc9b43539e0d0bad342p+0L : inexact-ok += clog upward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea590ddb668291aecp-32L 0x1.69c98f2fdc9b43539e0d0bad3421p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea590ddb668291ap-32L 0x1.69c98f2fdc9b43539e0d0bad34p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea590ddb668291ap-32L 0x1.69c98f2fdc9b43539e0d0bad34p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea590ddb668291ap-32L 0x1.69c98f2fdc9b43539e0d0bad34p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a3612p-4L : 0x5.4b692b2e42cea590ddb668291cp-32L 0x1.69c98f2fdc9b43539e0d0bad348p+0L : inexact-ok += clog downward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x5.4b692b2e85a0ac546582b11eaee8p-32L 0x1.69c98f2fdc9b4353a8aae09a2622p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x5.4b692b2e85a0ac546582b11eaee8p-32L 0x1.69c98f2fdc9b4353a8aae09a2622p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x5.4b692b2e85a0ac546582b11eaee8p-32L 0x1.69c98f2fdc9b4353a8aae09a2622p+0L : inexact-ok += clog upward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x5.4b692b2e85a0ac546582b11eaeecp-32L 0x1.69c98f2fdc9b4353a8aae09a2623p+0L : inexact-ok += clog downward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x5.4b692b2e85a0ac5465a3c6e22f6p-32L 0x1.69c98f2fdc9b4353a8aae09a2627p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x5.4b692b2e85a0ac5465a3c6e22f64p-32L 0x1.69c98f2fdc9b4353a8aae09a2627p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x5.4b692b2e85a0ac5465a3c6e22f6p-32L 0x1.69c98f2fdc9b4353a8aae09a2627p+0L : inexact-ok += clog upward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x5.4b692b2e85a0ac5465a3c6e22f64p-32L 0x1.69c98f2fdc9b4353a8aae09a2628p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x5.4b692b2e85a0ac5465a3c6e22ep-32L 0x1.69c98f2fdc9b4353a8aae09a26p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x5.4b692b2e85a0ac5465a3c6e23p-32L 0x1.69c98f2fdc9b4353a8aae09a26p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x5.4b692b2e85a0ac5465a3c6e22ep-32L 0x1.69c98f2fdc9b4353a8aae09a26p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x5.4b692b2e85a0ac5465a3c6e23p-32L 0x1.69c98f2fdc9b4353a8aae09a268p+0L : inexact-ok += clog downward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x5.4b692b2e85a0ac54656491d7ac9p-32L 0x1.69c98f2fdc9b4353a8aae09a261dp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x5.4b692b2e85a0ac54656491d7ac9p-32L 0x1.69c98f2fdc9b4353a8aae09a261dp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x5.4b692b2e85a0ac54656491d7ac9p-32L 0x1.69c98f2fdc9b4353a8aae09a261dp+0L : inexact-ok += clog upward ldbl-128 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x5.4b692b2e85a0ac54656491d7ac94p-32L 0x1.69c98f2fdc9b4353a8aae09a261ep+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x5.4b692b2e85a0ac54656491d7acp-32L 0x1.69c98f2fdc9b4353a8aae09a26p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x5.4b692b2e85a0ac54656491d7acp-32L 0x1.69c98f2fdc9b4353a8aae09a26p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x5.4b692b2e85a0ac54656491d7acp-32L 0x1.69c98f2fdc9b4353a8aae09a26p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b798p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x5.4b692b2e85a0ac54656491d7aep-32L 0x1.69c98f2fdc9b4353a8aae09a268p+0L : inexact-ok += clog downward flt-32 0x2.82b794p-4f 0xf.cd42bp-4f : 0xe.29a12p-28f 0x1.69c98ep+0f : inexact-ok += clog tonearest flt-32 0x2.82b794p-4f 0xf.cd42bp-4f : 0xe.29a12p-28f 0x1.69c99p+0f : inexact-ok += clog towardzero flt-32 0x2.82b794p-4f 0xf.cd42bp-4f : 0xe.29a12p-28f 0x1.69c98ep+0f : inexact-ok += clog upward flt-32 0x2.82b794p-4f 0xf.cd42bp-4f : 0xe.29a13p-28f 0x1.69c99p+0f : inexact-ok += clog downward dbl-64 0x2.82b794p-4 0xf.cd42bp-4 : 0xe.29a127f6b9a2p-28 0x1.69c98f93d37d5p+0 : inexact-ok += clog tonearest dbl-64 0x2.82b794p-4 0xf.cd42bp-4 : 0xe.29a127f6b9a28p-28 0x1.69c98f93d37d5p+0 : inexact-ok += clog towardzero dbl-64 0x2.82b794p-4 0xf.cd42bp-4 : 0xe.29a127f6b9a2p-28 0x1.69c98f93d37d5p+0 : inexact-ok += clog upward dbl-64 0x2.82b794p-4 0xf.cd42bp-4 : 0xe.29a127f6b9a28p-28 0x1.69c98f93d37d6p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a2666p-28L 0x1.69c98f93d37d546cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a2666p-28L 0x1.69c98f93d37d546cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a2666p-28L 0x1.69c98f93d37d546cp+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a2667p-28L 0x1.69c98f93d37d546ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a2666p-28L 0x1.69c98f93d37d546cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a2666p-28L 0x1.69c98f93d37d546cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a2666p-28L 0x1.69c98f93d37d546cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a2667p-28L 0x1.69c98f93d37d546ep+0L : inexact-ok += clog downward ldbl-128 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a266639d1e37162448p-28L 0x1.69c98f93d37d546c8ca4a8b62fddp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a266639d1e3716245p-28L 0x1.69c98f93d37d546c8ca4a8b62fdep+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a266639d1e37162448p-28L 0x1.69c98f93d37d546c8ca4a8b62fddp+0L : inexact-ok += clog upward ldbl-128 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a266639d1e3716245p-28L 0x1.69c98f93d37d546c8ca4a8b62fdep+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a266639d1e371624p-28L 0x1.69c98f93d37d546c8ca4a8b62f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a266639d1e371624p-28L 0x1.69c98f93d37d546c8ca4a8b63p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a266639d1e371624p-28L 0x1.69c98f93d37d546c8ca4a8b62f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42bp-4L : 0xe.29a127f6b9a266639d1e371628p-28L 0x1.69c98f93d37d546c8ca4a8b63p+0L : inexact-ok += clog downward flt-32 0x2.82b794p-4f 0xf.cd42ap-4f : -0x1.a3a174p-28f 0x1.69c98ep+0f : inexact-ok += clog tonearest flt-32 0x2.82b794p-4f 0xf.cd42ap-4f : -0x1.a3a174p-28f 0x1.69c99p+0f : inexact-ok += clog towardzero flt-32 0x2.82b794p-4f 0xf.cd42ap-4f : -0x1.a3a172p-28f 0x1.69c98ep+0f : inexact-ok += clog upward flt-32 0x2.82b794p-4f 0xf.cd42ap-4f : -0x1.a3a172p-28f 0x1.69c99p+0f : inexact-ok += clog downward dbl-64 0x2.82b794p-4 0xf.cd42ap-4 : -0x1.a3a173aafd9e7p-28 0x1.69c98f6ba8043p+0 : inexact-ok += clog tonearest dbl-64 0x2.82b794p-4 0xf.cd42ap-4 : -0x1.a3a173aafd9e6p-28 0x1.69c98f6ba8043p+0 : inexact-ok += clog towardzero dbl-64 0x2.82b794p-4 0xf.cd42ap-4 : -0x1.a3a173aafd9e6p-28 0x1.69c98f6ba8043p+0 : inexact-ok += clog upward dbl-64 0x2.82b794p-4 0xf.cd42ap-4 : -0x1.a3a173aafd9e6p-28 0x1.69c98f6ba8044p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e6458p-28L 0x1.69c98f6ba80433dcp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e6458p-28L 0x1.69c98f6ba80433dep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e6456p-28L 0x1.69c98f6ba80433dcp+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e6456p-28L 0x1.69c98f6ba80433dep+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e6458p-28L 0x1.69c98f6ba80433dcp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e6458p-28L 0x1.69c98f6ba80433dep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e6456p-28L 0x1.69c98f6ba80433dcp+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e6456p-28L 0x1.69c98f6ba80433dep+0L : inexact-ok += clog downward ldbl-128 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e64570bb1ca0c242p-28L 0x1.69c98f6ba80433dd92e1981b9fccp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e64570bb1ca0c241fp-28L 0x1.69c98f6ba80433dd92e1981b9fccp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e64570bb1ca0c241fp-28L 0x1.69c98f6ba80433dd92e1981b9fccp+0L : inexact-ok += clog upward ldbl-128 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e64570bb1ca0c241fp-28L 0x1.69c98f6ba80433dd92e1981b9fcdp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e64570bb1ca0c248p-28L 0x1.69c98f6ba80433dd92e1981b9f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e64570bb1ca0c24p-28L 0x1.69c98f6ba80433dd92e1981bap+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e64570bb1ca0c24p-28L 0x1.69c98f6ba80433dd92e1981b9f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42ap-4L : -0x1.a3a173aafd9e64570bb1ca0c24p-28L 0x1.69c98f6ba80433dd92e1981bap+0L : inexact-ok += clog downward dbl-64 0x2.82b794p-4 0xf.cd42a15bf9a38p-4 : -0x4.bf752ae45e4f4p-32 0x1.69c98f6f11a5cp+0 : inexact-ok += clog tonearest dbl-64 0x2.82b794p-4 0xf.cd42a15bf9a38p-4 : -0x4.bf752ae45e4fp-32 0x1.69c98f6f11a5dp+0 : inexact-ok += clog towardzero dbl-64 0x2.82b794p-4 0xf.cd42a15bf9a38p-4 : -0x4.bf752ae45e4fp-32 0x1.69c98f6f11a5cp+0 : inexact-ok += clog upward dbl-64 0x2.82b794p-4 0xf.cd42a15bf9a38p-4 : -0x4.bf752ae45e4fp-32 0x1.69c98f6f11a5dp+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c48p-32L 0x1.69c98f6f11a5c8eep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c4p-32L 0x1.69c98f6f11a5c8eep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c4p-32L 0x1.69c98f6f11a5c8eep+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c4p-32L 0x1.69c98f6f11a5c8fp+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c48p-32L 0x1.69c98f6f11a5c8eep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c4p-32L 0x1.69c98f6f11a5c8eep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c4p-32L 0x1.69c98f6f11a5c8eep+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c4p-32L 0x1.69c98f6f11a5c8fp+0L : inexact-ok += clog downward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c40e2cba090b66cp-32L 0x1.69c98f6f11a5c8ee7a7452b9d0b2p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c40e2cba090b668p-32L 0x1.69c98f6f11a5c8ee7a7452b9d0b3p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c40e2cba090b668p-32L 0x1.69c98f6f11a5c8ee7a7452b9d0b2p+0L : inexact-ok += clog upward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c40e2cba090b668p-32L 0x1.69c98f6f11a5c8ee7a7452b9d0b3p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c40e2cba090b8p-32L 0x1.69c98f6f11a5c8ee7a7452b9d08p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c40e2cba090b6p-32L 0x1.69c98f6f11a5c8ee7a7452b9d08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c40e2cba090b6p-32L 0x1.69c98f6f11a5c8ee7a7452b9d08p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a38p-4L : -0x4.bf752ae45e4f0c40e2cba090b6p-32L 0x1.69c98f6f11a5c8ee7a7452b9d1p+0L : inexact-ok += clog downward dbl-64 0x2.82b794p-4 0xf.cd42a15bf9a3p-4 : -0x4.bf7532caffa04p-32 0x1.69c98f6f11a5cp+0 : inexact-ok += clog tonearest dbl-64 0x2.82b794p-4 0xf.cd42a15bf9a3p-4 : -0x4.bf7532caffap-32 0x1.69c98f6f11a5cp+0 : inexact-ok += clog towardzero dbl-64 0x2.82b794p-4 0xf.cd42a15bf9a3p-4 : -0x4.bf7532caffap-32 0x1.69c98f6f11a5cp+0 : inexact-ok += clog upward dbl-64 0x2.82b794p-4 0xf.cd42a15bf9a3p-4 : -0x4.bf7532caffap-32 0x1.69c98f6f11a5dp+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa00548p-32L 0x1.69c98f6f11a5c7acp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa00548p-32L 0x1.69c98f6f11a5c7aep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa0054p-32L 0x1.69c98f6f11a5c7acp+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa0054p-32L 0x1.69c98f6f11a5c7aep+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa00548p-32L 0x1.69c98f6f11a5c7acp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa00548p-32L 0x1.69c98f6f11a5c7aep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa0054p-32L 0x1.69c98f6f11a5c7acp+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa0054p-32L 0x1.69c98f6f11a5c7aep+0L : inexact-ok += clog downward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa005441f5c7e341954p-32L 0x1.69c98f6f11a5c7ad1eaa46ce4537p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa005441f5c7e341954p-32L 0x1.69c98f6f11a5c7ad1eaa46ce4538p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa005441f5c7e34195p-32L 0x1.69c98f6f11a5c7ad1eaa46ce4537p+0L : inexact-ok += clog upward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa005441f5c7e34195p-32L 0x1.69c98f6f11a5c7ad1eaa46ce4538p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa005441f5c7e341ap-32L 0x1.69c98f6f11a5c7ad1eaa46ce45p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa005441f5c7e341ap-32L 0x1.69c98f6f11a5c7ad1eaa46ce45p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa005441f5c7e3418p-32L 0x1.69c98f6f11a5c7ad1eaa46ce45p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3p-4L : -0x4.bf7532caffa005441f5c7e3418p-32L 0x1.69c98f6f11a5c7ad1eaa46ce458p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a38p-32L 0x1.69c98f6f11a5c8ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a3p-32L 0x1.69c98f6f11a5c8a2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a3p-32L 0x1.69c98f6f11a5c8ap+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a3p-32L 0x1.69c98f6f11a5c8a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a38p-32L 0x1.69c98f6f11a5c8ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a3p-32L 0x1.69c98f6f11a5c8a2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a3p-32L 0x1.69c98f6f11a5c8ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a3p-32L 0x1.69c98f6f11a5c8a2p+0L : inexact-ok += clog downward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a324a3a705b1c0cp-32L 0x1.69c98f6f11a5c8a11ebbcf9b3d41p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a324a3a705b1c08p-32L 0x1.69c98f6f11a5c8a11ebbcf9b3d41p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a324a3a705b1c08p-32L 0x1.69c98f6f11a5c8a11ebbcf9b3d41p+0L : inexact-ok += clog upward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a324a3a705b1c08p-32L 0x1.69c98f6f11a5c8a11ebbcf9b3d42p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a324a3a705b1ep-32L 0x1.69c98f6f11a5c8a11ebbcf9b3dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a324a3a705b1cp-32L 0x1.69c98f6f11a5c8a11ebbcf9b3d8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a324a3a705b1cp-32L 0x1.69c98f6f11a5c8a11ebbcf9b3dp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3613p-4L : -0x4.bf752ccb42e42a324a3a705b1cp-32L 0x1.69c98f6f11a5c8a11ebbcf9b3d8p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb85458p-32L 0x1.69c98f6f11a5c8ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb8545p-32L 0x1.69c98f6f11a5c8ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb8545p-32L 0x1.69c98f6f11a5c8ap+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb8545p-32L 0x1.69c98f6f11a5c8a2p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb85458p-32L 0x1.69c98f6f11a5c8ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb8545p-32L 0x1.69c98f6f11a5c8ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb8545p-32L 0x1.69c98f6f11a5c8ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb8545p-32L 0x1.69c98f6f11a5c8a2p+0L : inexact-ok += clog downward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb854516aa2007e7024p-32L 0x1.69c98f6f11a5c8a0f6905659bfcfp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb854516aa2007e7024p-32L 0x1.69c98f6f11a5c8a0f6905659bfdp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb854516aa2007e702p-32L 0x1.69c98f6f11a5c8a0f6905659bfcfp+0L : inexact-ok += clog upward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb854516aa2007e702p-32L 0x1.69c98f6f11a5c8a0f6905659bfdp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb854516aa2007e72p-32L 0x1.69c98f6f11a5c8a0f6905659bf8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb854516aa2007e7p-32L 0x1.69c98f6f11a5c8a0f6905659cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb854516aa2007e7p-32L 0x1.69c98f6f11a5c8a0f6905659bf8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.bf752ccc3fb854516aa2007e7p-32L 0x1.69c98f6f11a5c8a0f6905659cp+0L : inexact-ok += clog downward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x4.bf752ccbfce64d88a4c0b55511b4p-32L 0x1.69c98f6f11a5c8a1012e2b369ce7p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x4.bf752ccbfce64d88a4c0b55511b4p-32L 0x1.69c98f6f11a5c8a1012e2b369ce7p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x4.bf752ccbfce64d88a4c0b55511bp-32L 0x1.69c98f6f11a5c8a1012e2b369ce7p+0L : inexact-ok += clog upward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x4.bf752ccbfce64d88a4c0b55511bp-32L 0x1.69c98f6f11a5c8a1012e2b369ce8p+0L : inexact-ok += clog downward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.bf752ccbfce64d88a49f9f918eap-32L 0x1.69c98f6f11a5c8a1012e2b369cecp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.bf752ccbfce64d88a49f9f918eap-32L 0x1.69c98f6f11a5c8a1012e2b369cedp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.bf752ccbfce64d88a49f9f918e9cp-32L 0x1.69c98f6f11a5c8a1012e2b369cecp+0L : inexact-ok += clog upward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.bf752ccbfce64d88a49f9f918e9cp-32L 0x1.69c98f6f11a5c8a1012e2b369cedp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.bf752ccbfce64d88a49f9f919p-32L 0x1.69c98f6f11a5c8a1012e2b369c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.bf752ccbfce64d88a49f9f918ep-32L 0x1.69c98f6f11a5c8a1012e2b369dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.bf752ccbfce64d88a49f9f918ep-32L 0x1.69c98f6f11a5c8a1012e2b369c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.bf752ccbfce64d88a49f9f918ep-32L 0x1.69c98f6f11a5c8a1012e2b369dp+0L : inexact-ok += clog downward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.bf752ccbfce64d88a4ded49c166cp-32L 0x1.69c98f6f11a5c8a1012e2b369ce2p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.bf752ccbfce64d88a4ded49c1668p-32L 0x1.69c98f6f11a5c8a1012e2b369ce3p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.bf752ccbfce64d88a4ded49c1668p-32L 0x1.69c98f6f11a5c8a1012e2b369ce2p+0L : inexact-ok += clog upward ldbl-128 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.bf752ccbfce64d88a4ded49c1668p-32L 0x1.69c98f6f11a5c8a1012e2b369ce3p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.bf752ccbfce64d88a4ded49c18p-32L 0x1.69c98f6f11a5c8a1012e2b369c8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.bf752ccbfce64d88a4ded49c16p-32L 0x1.69c98f6f11a5c8a1012e2b369dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.bf752ccbfce64d88a4ded49c16p-32L 0x1.69c98f6f11a5c8a1012e2b369c8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b794p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.bf752ccbfce64d88a4ded49c16p-32L 0x1.69c98f6f11a5c8a1012e2b369dp+0L : inexact-ok += clog downward dbl-64 0x2.82b795e420b2ap-4 0xf.cd42bp-4 : 0xe.75987a3eeeaep-28 0x1.69c98f75f166cp+0 : inexact-ok += clog tonearest dbl-64 0x2.82b795e420b2ap-4 0xf.cd42bp-4 : 0xe.75987a3eeeaep-28 0x1.69c98f75f166cp+0 : inexact-ok += clog towardzero dbl-64 0x2.82b795e420b2ap-4 0xf.cd42bp-4 : 0xe.75987a3eeeaep-28 0x1.69c98f75f166cp+0 : inexact-ok += clog upward dbl-64 0x2.82b795e420b2ap-4 0xf.cd42bp-4 : 0xe.75987a3eeeae8p-28 0x1.69c98f75f166dp+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e6p-28L 0x1.69c98f75f166c632p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e6p-28L 0x1.69c98f75f166c632p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e6p-28L 0x1.69c98f75f166c632p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e7p-28L 0x1.69c98f75f166c634p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e6p-28L 0x1.69c98f75f166c632p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e6p-28L 0x1.69c98f75f166c632p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e6p-28L 0x1.69c98f75f166c632p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e7p-28L 0x1.69c98f75f166c634p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e60dcb4e3f0f8ap-28L 0x1.69c98f75f166c632eea3d7a48642p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e60dcb4e3f0f8ap-28L 0x1.69c98f75f166c632eea3d7a48643p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e60dcb4e3f0f8ap-28L 0x1.69c98f75f166c632eea3d7a48642p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e60dcb4e3f0f8a8p-28L 0x1.69c98f75f166c632eea3d7a48643p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e60dcb4e3f0f8p-28L 0x1.69c98f75f166c632eea3d7a486p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e60dcb4e3f0f8p-28L 0x1.69c98f75f166c632eea3d7a4868p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e60dcb4e3f0f8p-28L 0x1.69c98f75f166c632eea3d7a486p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42bp-4L : 0xe.75987a3eeeae0e60dcb4e3f0fcp-28L 0x1.69c98f75f166c632eea3d7a4868p+0L : inexact-ok += clog downward dbl-64 0x2.82b795e420b2ap-4 0xf.cd42ap-4 : -0x1.57aa20ccbbbddp-28 0x1.69c98f4dc5ed8p+0 : inexact-ok += clog tonearest dbl-64 0x2.82b795e420b2ap-4 0xf.cd42ap-4 : -0x1.57aa20ccbbbddp-28 0x1.69c98f4dc5ed9p+0 : inexact-ok += clog towardzero dbl-64 0x2.82b795e420b2ap-4 0xf.cd42ap-4 : -0x1.57aa20ccbbbdcp-28 0x1.69c98f4dc5ed8p+0 : inexact-ok += clog upward dbl-64 0x2.82b795e420b2ap-4 0xf.cd42ap-4 : -0x1.57aa20ccbbbdcp-28 0x1.69c98f4dc5ed9p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d6p-28L 0x1.69c98f4dc5ed88dep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d6p-28L 0x1.69c98f4dc5ed88ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d4p-28L 0x1.69c98f4dc5ed88dep+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d4p-28L 0x1.69c98f4dc5ed88ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d6p-28L 0x1.69c98f4dc5ed88dep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d6p-28L 0x1.69c98f4dc5ed88ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d4p-28L 0x1.69c98f4dc5ed88dep+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d4p-28L 0x1.69c98f4dc5ed88ep+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d52a9e73d2a432p-28L 0x1.69c98f4dc5ed88df5b3bfc26facbp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d52a9e73d2a432p-28L 0x1.69c98f4dc5ed88df5b3bfc26facbp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d52a9e73d2a431p-28L 0x1.69c98f4dc5ed88df5b3bfc26facbp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d52a9e73d2a431p-28L 0x1.69c98f4dc5ed88df5b3bfc26faccp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d52a9e73d2a48p-28L 0x1.69c98f4dc5ed88df5b3bfc26fa8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d52a9e73d2a4p-28L 0x1.69c98f4dc5ed88df5b3bfc26fbp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d52a9e73d2a4p-28L 0x1.69c98f4dc5ed88df5b3bfc26fa8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42ap-4L : -0x1.57aa20ccbbbdc8d52a9e73d2a4p-28L 0x1.69c98f4dc5ed88df5b3bfc26fbp+0L : inexact-ok += clog downward dbl-64 0x2.82b795e420b2ap-4 0xf.cd42a15bf9a38p-4 : 0x2.33ca02a34e078p-56 0x1.69c98f512f8f2p+0 : inexact-ok += clog tonearest dbl-64 0x2.82b795e420b2ap-4 0xf.cd42a15bf9a38p-4 : 0x2.33ca02a34e078p-56 0x1.69c98f512f8f2p+0 : inexact-ok += clog towardzero dbl-64 0x2.82b795e420b2ap-4 0xf.cd42a15bf9a38p-4 : 0x2.33ca02a34e078p-56 0x1.69c98f512f8f2p+0 : inexact-ok += clog upward dbl-64 0x2.82b795e420b2ap-4 0xf.cd42a15bf9a38p-4 : 0x2.33ca02a34e07ap-56 0x1.69c98f512f8f3p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d24p-56L 0x1.69c98f512f8f206p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d28p-56L 0x1.69c98f512f8f2062p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d24p-56L 0x1.69c98f512f8f206p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d28p-56L 0x1.69c98f512f8f2062p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d24p-56L 0x1.69c98f512f8f206p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d28p-56L 0x1.69c98f512f8f2062p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d24p-56L 0x1.69c98f512f8f206p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d28p-56L 0x1.69c98f512f8f2062p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d265dd8fd8d0ca8p-56L 0x1.69c98f512f8f2061eb6e84ece057p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d265dd8fd8d0ca8p-56L 0x1.69c98f512f8f2061eb6e84ece058p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d265dd8fd8d0ca8p-56L 0x1.69c98f512f8f2061eb6e84ece057p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d265dd8fd8d0caap-56L 0x1.69c98f512f8f2061eb6e84ece058p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d265dd8fd8d0cp-56L 0x1.69c98f512f8f2061eb6e84ecep+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d265dd8fd8d0dp-56L 0x1.69c98f512f8f2061eb6e84ece08p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d265dd8fd8d0cp-56L 0x1.69c98f512f8f2061eb6e84ecep+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a38p-4L : 0x2.33ca02a34e078d265dd8fd8d0dp-56L 0x1.69c98f512f8f2061eb6e84ece08p+0L : inexact-ok += clog downward dbl-64 0x2.82b795e420b2ap-4 0xf.cd42a15bf9a3p-4 : -0x5.b2d74e0aaeca4p-56 0x1.69c98f512f8f1p+0 : inexact-ok += clog tonearest dbl-64 0x2.82b795e420b2ap-4 0xf.cd42a15bf9a3p-4 : -0x5.b2d74e0aaeca4p-56 0x1.69c98f512f8f2p+0 : inexact-ok += clog towardzero dbl-64 0x2.82b795e420b2ap-4 0xf.cd42a15bf9a3p-4 : -0x5.b2d74e0aaecap-56 0x1.69c98f512f8f1p+0 : inexact-ok += clog upward dbl-64 0x2.82b795e420b2ap-4 0xf.cd42a15bf9a3p-4 : -0x5.b2d74e0aaecap-56 0x1.69c98f512f8f2p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e8p-56L 0x1.69c98f512f8f1f2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e78p-56L 0x1.69c98f512f8f1f2p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e78p-56L 0x1.69c98f512f8f1f2p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e78p-56L 0x1.69c98f512f8f1f22p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e8p-56L 0x1.69c98f512f8f1f2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e78p-56L 0x1.69c98f512f8f1f2p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e78p-56L 0x1.69c98f512f8f1f2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e78p-56L 0x1.69c98f512f8f1f22p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e79592a05dcb298p-56L 0x1.69c98f512f8f1f208fa392dc8703p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e79592a05dcb298p-56L 0x1.69c98f512f8f1f208fa392dc8704p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e79592a05dcb294p-56L 0x1.69c98f512f8f1f208fa392dc8703p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e79592a05dcb294p-56L 0x1.69c98f512f8f1f208fa392dc8704p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e79592a05dcb4p-56L 0x1.69c98f512f8f1f208fa392dc87p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e79592a05dcb2p-56L 0x1.69c98f512f8f1f208fa392dc87p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e79592a05dcb2p-56L 0x1.69c98f512f8f1f208fa392dc87p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3p-4L : -0x5.b2d74e0aaeca2e79592a05dcb2p-56L 0x1.69c98f512f8f1f208fa392dc878p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb8p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb8p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb8p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95ecp-60L 0x1.69c98f512f8f2016p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb8p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb8p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb8p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95ecp-60L 0x1.69c98f512f8f2016p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb9b7950d807868p-60L 0x1.69c98f512f8f20148fb5ca67b0d8p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb9b7950d80786cp-60L 0x1.69c98f512f8f20148fb5ca67b0d9p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb9b7950d807868p-60L 0x1.69c98f512f8f20148fb5ca67b0d8p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb9b7950d80786cp-60L 0x1.69c98f512f8f20148fb5ca67b0d9p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb9b7950d8078p-60L 0x1.69c98f512f8f20148fb5ca67b08p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb9b7950d8078p-60L 0x1.69c98f512f8f20148fb5ca67b1p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb9b7950d8078p-60L 0x1.69c98f512f8f20148fb5ca67b08p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3613p-4L : 0x4.ce56d976c0b95eb9b7950d807ap-60L 0x1.69c98f512f8f20148fb5ca67b1p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb6p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb6p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb6p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb68p-60L 0x1.69c98f512f8f2016p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb6p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb6p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb6p-60L 0x1.69c98f512f8f2014p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb68p-60L 0x1.69c98f512f8f2016p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb61fe2c37d4f30cp-60L 0x1.69c98f512f8f2014678a51096ecdp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb61fe2c37d4f31p-60L 0x1.69c98f512f8f2014678a51096ecep+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb61fe2c37d4f30cp-60L 0x1.69c98f512f8f2014678a51096ecdp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb61fe2c37d4f31p-60L 0x1.69c98f512f8f2014678a51096ecep+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb61fe2c37d4f2p-60L 0x1.69c98f512f8f2014678a51096e8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb61fe2c37d4f4p-60L 0x1.69c98f512f8f2014678a51096fp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb61fe2c37d4f2p-60L 0x1.69c98f512f8f2014678a51096e8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a3612p-4L : 0x4.be8996d564bfbb61fe2c37d4f4p-60L 0x1.69c98f512f8f2014678a51096fp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x4.c2b6b741c975a396a9923299f078p-60L 0x1.69c98f512f8f2014722825ede64bp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x4.c2b6b741c975a396a9923299f07cp-60L 0x1.69c98f512f8f2014722825ede64bp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x4.c2b6b741c975a396a9923299f078p-60L 0x1.69c98f512f8f2014722825ede64bp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x4.c2b6b741c975a396a9923299f07cp-60L 0x1.69c98f512f8f2014722825ede64cp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x4.c2b6b741c977b4f2e1afbbc4d074p-60L 0x1.69c98f512f8f2014722825ede65p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x4.c2b6b741c977b4f2e1afbbc4d074p-60L 0x1.69c98f512f8f2014722825ede651p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x4.c2b6b741c977b4f2e1afbbc4d074p-60L 0x1.69c98f512f8f2014722825ede65p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x4.c2b6b741c977b4f2e1afbbc4d078p-60L 0x1.69c98f512f8f2014722825ede651p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x4.c2b6b741c977b4f2e1afbbc4dp-60L 0x1.69c98f512f8f2014722825ede6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x4.c2b6b741c977b4f2e1afbbc4dp-60L 0x1.69c98f512f8f2014722825ede68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x4.c2b6b741c977b4f2e1afbbc4dp-60L 0x1.69c98f512f8f2014722825ede6p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x4.c2b6b741c977b4f2e1afbbc4d2p-60L 0x1.69c98f512f8f2014722825ede68p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x4.c2b6b741c973c1a23958bd5bfa84p-60L 0x1.69c98f512f8f2014722825ede646p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x4.c2b6b741c973c1a23958bd5bfa88p-60L 0x1.69c98f512f8f2014722825ede647p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x4.c2b6b741c973c1a23958bd5bfa84p-60L 0x1.69c98f512f8f2014722825ede646p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x4.c2b6b741c973c1a23958bd5bfa88p-60L 0x1.69c98f512f8f2014722825ede647p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x4.c2b6b741c973c1a23958bd5bfap-60L 0x1.69c98f512f8f2014722825ede6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x4.c2b6b741c973c1a23958bd5bfap-60L 0x1.69c98f512f8f2014722825ede68p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x4.c2b6b741c973c1a23958bd5bfap-60L 0x1.69c98f512f8f2014722825ede6p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b2ap-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x4.c2b6b741c973c1a23958bd5bfcp-60L 0x1.69c98f512f8f2014722825ede68p+0L : inexact-ok += clog downward dbl-64 0x2.82b795e420b28p-4 0xf.cd42bp-4 : 0xe.75987a39e93e8p-28 0x1.69c98f75f166cp+0 : inexact-ok += clog tonearest dbl-64 0x2.82b795e420b28p-4 0xf.cd42bp-4 : 0xe.75987a39e93fp-28 0x1.69c98f75f166dp+0 : inexact-ok += clog towardzero dbl-64 0x2.82b795e420b28p-4 0xf.cd42bp-4 : 0xe.75987a39e93e8p-28 0x1.69c98f75f166cp+0 : inexact-ok += clog upward dbl-64 0x2.82b795e420b28p-4 0xf.cd42bp-4 : 0xe.75987a39e93fp-28 0x1.69c98f75f166dp+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebap-28L 0x1.69c98f75f166c82cp+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebbp-28L 0x1.69c98f75f166c82cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebap-28L 0x1.69c98f75f166c82cp+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebbp-28L 0x1.69c98f75f166c82ep+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebap-28L 0x1.69c98f75f166c82cp+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebbp-28L 0x1.69c98f75f166c82cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebap-28L 0x1.69c98f75f166c82cp+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebbp-28L 0x1.69c98f75f166c82ep+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebabed020824a2f8p-28L 0x1.69c98f75f166c82c96f645b50f66p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebabed020824a3p-28L 0x1.69c98f75f166c82c96f645b50f67p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebabed020824a2f8p-28L 0x1.69c98f75f166c82c96f645b50f66p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebabed020824a3p-28L 0x1.69c98f75f166c82c96f645b50f67p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebabed020824ap-28L 0x1.69c98f75f166c82c96f645b50fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebabed020824a4p-28L 0x1.69c98f75f166c82c96f645b50f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebabed020824ap-28L 0x1.69c98f75f166c82c96f645b50fp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42bp-4L : 0xe.75987a39e93eebabed020824a4p-28L 0x1.69c98f75f166c82c96f645b50f8p+0L : inexact-ok += clog downward dbl-64 0x2.82b795e420b28p-4 0xf.cd42ap-4 : -0x1.57aa20d1c12dp-28 0x1.69c98f4dc5ed8p+0 : inexact-ok += clog tonearest dbl-64 0x2.82b795e420b28p-4 0xf.cd42ap-4 : -0x1.57aa20d1c12cfp-28 0x1.69c98f4dc5ed9p+0 : inexact-ok += clog towardzero dbl-64 0x2.82b795e420b28p-4 0xf.cd42ap-4 : -0x1.57aa20d1c12cfp-28 0x1.69c98f4dc5ed8p+0 : inexact-ok += clog upward dbl-64 0x2.82b795e420b28p-4 0xf.cd42ap-4 : -0x1.57aa20d1c12cfp-28 0x1.69c98f4dc5ed9p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf576p-28L 0x1.69c98f4dc5ed8ad8p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf576p-28L 0x1.69c98f4dc5ed8adap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf574p-28L 0x1.69c98f4dc5ed8ad8p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf574p-28L 0x1.69c98f4dc5ed8adap+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf576p-28L 0x1.69c98f4dc5ed8ad8p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf576p-28L 0x1.69c98f4dc5ed8adap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf574p-28L 0x1.69c98f4dc5ed8ad8p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf574p-28L 0x1.69c98f4dc5ed8adap+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf5751fca2d488a68p-28L 0x1.69c98f4dc5ed8ad9039051010d36p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf5751fca2d488a67p-28L 0x1.69c98f4dc5ed8ad9039051010d37p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf5751fca2d488a67p-28L 0x1.69c98f4dc5ed8ad9039051010d36p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf5751fca2d488a67p-28L 0x1.69c98f4dc5ed8ad9039051010d37p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf5751fca2d488a8p-28L 0x1.69c98f4dc5ed8ad9039051010dp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf5751fca2d488a8p-28L 0x1.69c98f4dc5ed8ad9039051010dp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf5751fca2d488ap-28L 0x1.69c98f4dc5ed8ad9039051010dp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42ap-4L : -0x1.57aa20d1c12cf5751fca2d488ap-28L 0x1.69c98f4dc5ed8ad9039051010d8p+0L : inexact-ok += clog downward dbl-64 0x2.82b795e420b28p-4 0xf.cd42a15bf9a38p-4 : 0x1.e3730fe6c9f13p-56 0x1.69c98f512f8f2p+0 : inexact-ok += clog tonearest dbl-64 0x2.82b795e420b28p-4 0xf.cd42a15bf9a38p-4 : 0x1.e3730fe6c9f14p-56 0x1.69c98f512f8f2p+0 : inexact-ok += clog towardzero dbl-64 0x2.82b795e420b28p-4 0xf.cd42a15bf9a38p-4 : 0x1.e3730fe6c9f13p-56 0x1.69c98f512f8f2p+0 : inexact-ok += clog upward dbl-64 0x2.82b795e420b28p-4 0xf.cd42a15bf9a38p-4 : 0x1.e3730fe6c9f14p-56 0x1.69c98f512f8f3p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6ep-56L 0x1.69c98f512f8f225ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c7p-56L 0x1.69c98f512f8f225cp+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6ep-56L 0x1.69c98f512f8f225ap+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c7p-56L 0x1.69c98f512f8f225cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6ep-56L 0x1.69c98f512f8f225ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c7p-56L 0x1.69c98f512f8f225cp+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6ep-56L 0x1.69c98f512f8f225ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c7p-56L 0x1.69c98f512f8f225cp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6f049e47d7a567p-56L 0x1.69c98f512f8f225b93c2b06c14bfp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6f049e47d7a567p-56L 0x1.69c98f512f8f225b93c2b06c14cp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6f049e47d7a567p-56L 0x1.69c98f512f8f225b93c2b06c14bfp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6f049e47d7a568p-56L 0x1.69c98f512f8f225b93c2b06c14cp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6f049e47d7a5p-56L 0x1.69c98f512f8f225b93c2b06c148p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6f049e47d7a58p-56L 0x1.69c98f512f8f225b93c2b06c148p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6f049e47d7a5p-56L 0x1.69c98f512f8f225b93c2b06c148p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e3730fe6c9f13c6f049e47d7a58p-56L 0x1.69c98f512f8f225b93c2b06c15p+0L : inexact-ok += clog downward dbl-64 0x2.82b795e420b28p-4 0xf.cd42a15bf9a3p-4 : -0x6.032e40c732e0cp-56 0x1.69c98f512f8f2p+0 : inexact-ok += clog tonearest dbl-64 0x2.82b795e420b28p-4 0xf.cd42a15bf9a3p-4 : -0x6.032e40c732e08p-56 0x1.69c98f512f8f2p+0 : inexact-ok += clog towardzero dbl-64 0x2.82b795e420b28p-4 0xf.cd42a15bf9a3p-4 : -0x6.032e40c732e08p-56 0x1.69c98f512f8f2p+0 : inexact-ok += clog upward dbl-64 0x2.82b795e420b28p-4 0xf.cd42a15bf9a3p-4 : -0x6.032e40c732e08p-56 0x1.69c98f512f8f3p+0 : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e08428p-56L 0x1.69c98f512f8f211ap+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e08428p-56L 0x1.69c98f512f8f211ap+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842p-56L 0x1.69c98f512f8f211ap+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842p-56L 0x1.69c98f512f8f211cp+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e08428p-56L 0x1.69c98f512f8f211ap+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e08428p-56L 0x1.69c98f512f8f211ap+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842p-56L 0x1.69c98f512f8f211ap+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842p-56L 0x1.69c98f512f8f211cp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842635273665b164p-56L 0x1.69c98f512f8f211a37f7be5bbb7ap+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842635273665b16p-56L 0x1.69c98f512f8f211a37f7be5bbb7bp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842635273665b16p-56L 0x1.69c98f512f8f211a37f7be5bbb7ap+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842635273665b16p-56L 0x1.69c98f512f8f211a37f7be5bbb7bp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842635273665b2p-56L 0x1.69c98f512f8f211a37f7be5bbbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842635273665b2p-56L 0x1.69c98f512f8f211a37f7be5bbb8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842635273665bp-56L 0x1.69c98f512f8f211a37f7be5bbbp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3p-4L : -0x6.032e40c732e0842635273665bp-56L 0x1.69c98f512f8f211a37f7be5bbb8p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd58p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd58p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd54p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd54p-64L 0x1.69c98f512f8f221p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd58p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd58p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd54p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd54p-64L 0x1.69c98f512f8f221p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd575b75ae8f0a3ep-64L 0x1.69c98f512f8f220e3809f5e6e544p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd575b75ae8f0a3cp-64L 0x1.69c98f512f8f220e3809f5e6e544p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd575b75ae8f0a3cp-64L 0x1.69c98f512f8f220e3809f5e6e544p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd575b75ae8f0a3cp-64L 0x1.69c98f512f8f220e3809f5e6e545p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd575b75ae8f0bp-64L 0x1.69c98f512f8f220e3809f5e6e5p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd575b75ae8f0ap-64L 0x1.69c98f512f8f220e3809f5e6e58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd575b75ae8f0ap-64L 0x1.69c98f512f8f220e3809f5e6e5p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3613p-4L : -0x3.718525180abbfd575b75ae8f0ap-64L 0x1.69c98f512f8f220e3809f5e6e58p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca563378p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca56337p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca56337p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca56337p-64L 0x1.69c98f512f8f221p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca563378p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca56337p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca56337p-64L 0x1.69c98f512f8f220ep+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca56337p-64L 0x1.69c98f512f8f221p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca563371a25b58a1d2e8p-64L 0x1.69c98f512f8f220e0fde7c88a339p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca563371a25b58a1d2e8p-64L 0x1.69c98f512f8f220e0fde7c88a339p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca563371a25b58a1d2e4p-64L 0x1.69c98f512f8f220e0fde7c88a339p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca563371a25b58a1d2e4p-64L 0x1.69c98f512f8f220e0fde7c88a33ap+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca563371a25b58a1d4p-64L 0x1.69c98f512f8f220e0fde7c88a3p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca563371a25b58a1d2p-64L 0x1.69c98f512f8f220e0fde7c88a3p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca563371a25b58a1d2p-64L 0x1.69c98f512f8f220e0fde7c88a3p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.6e594f2dca563371a25b58a1d2p-64L 0x1.69c98f512f8f220e0fde7c88a38p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x4.2b8748677ef7affcfb539c576968p-64L 0x1.69c98f512f8f220e1a7c516d1ab6p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x4.2b8748677ef7affcfb539c576964p-64L 0x1.69c98f512f8f220e1a7c516d1ab7p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x4.2b8748677ef7affcfb539c576964p-64L 0x1.69c98f512f8f220e1a7c516d1ab6p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x4.2b8748677ef7affcfb539c576964p-64L 0x1.69c98f512f8f220e1a7c516d1ab7p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.2b8748677ed69a39797b09a954fp-64L 0x1.69c98f512f8f220e1a7c516d1abcp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.2b8748677ed69a39797b09a954ecp-64L 0x1.69c98f512f8f220e1a7c516d1abcp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.2b8748677ed69a39797b09a954ecp-64L 0x1.69c98f512f8f220e1a7c516d1abcp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.2b8748677ed69a39797b09a954ecp-64L 0x1.69c98f512f8f220e1a7c516d1abdp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.2b8748677ed69a39797b09a956p-64L 0x1.69c98f512f8f220e1a7c516d1a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.2b8748677ed69a39797b09a954p-64L 0x1.69c98f512f8f220e1a7c516d1a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.2b8748677ed69a39797b09a954p-64L 0x1.69c98f512f8f220e1a7c516d1a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x4.2b8748677ed69a39797b09a954p-64L 0x1.69c98f512f8f220e1a7c516d1bp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.2b8748677f15cf43feeaf036db9p-64L 0x1.69c98f512f8f220e1a7c516d1ab2p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.2b8748677f15cf43feeaf036db8cp-64L 0x1.69c98f512f8f220e1a7c516d1ab2p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.2b8748677f15cf43feeaf036db8cp-64L 0x1.69c98f512f8f220e1a7c516d1ab2p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.2b8748677f15cf43feeaf036db8cp-64L 0x1.69c98f512f8f220e1a7c516d1ab3p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.2b8748677f15cf43feeaf036dcp-64L 0x1.69c98f512f8f220e1a7c516d1a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.2b8748677f15cf43feeaf036dcp-64L 0x1.69c98f512f8f220e1a7c516d1a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.2b8748677f15cf43feeaf036dap-64L 0x1.69c98f512f8f220e1a7c516d1a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b28p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x4.2b8748677f15cf43feeaf036dap-64L 0x1.69c98f512f8f220e1a7c516d1bp+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a2p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a2p-28L 0x1.69c98f75f166c814p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a2p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a2p-28L 0x1.69c98f75f166c814p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1c2107fedec618p-28L 0x1.69c98f75f166c8122bcaf734f23cp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1c2107fedec618p-28L 0x1.69c98f75f166c8122bcaf734f23cp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1c2107fedec618p-28L 0x1.69c98f75f166c8122bcaf734f23cp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1c2107fedec62p-28L 0x1.69c98f75f166c8122bcaf734f23dp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1c2107fedec4p-28L 0x1.69c98f75f166c8122bcaf734f2p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1c2107fedec8p-28L 0x1.69c98f75f166c8122bcaf734f2p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1c2107fedec4p-28L 0x1.69c98f75f166c8122bcaf734f2p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42bp-4L : 0xe.75987a3a2c679a1c2107fedec8p-28L 0x1.69c98f75f166c8122bcaf734f28p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e044682p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e04468p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e04468p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e04468p-28L 0x1.69c98f4dc5ed8acp+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e044682p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e04468p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e04468p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e04468p-28L 0x1.69c98f4dc5ed8acp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e044680445b05f9ab6p-28L 0x1.69c98f4dc5ed8abe9864e912288p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e044680445b05f9ab5fp-28L 0x1.69c98f4dc5ed8abe9864e912288p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e044680445b05f9ab5fp-28L 0x1.69c98f4dc5ed8abe9864e912288p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e044680445b05f9ab5fp-28L 0x1.69c98f4dc5ed8abe9864e9122881p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e044680445b05f9ab8p-28L 0x1.69c98f4dc5ed8abe9864e912288p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e044680445b05f9ab8p-28L 0x1.69c98f4dc5ed8abe9864e912288p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e044680445b05f9abp-28L 0x1.69c98f4dc5ed8abe9864e912288p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e044680445b05f9abp-28L 0x1.69c98f4dc5ed8abe9864e91229p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6cep-56L 0x1.69c98f512f8f224p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6cep-56L 0x1.69c98f512f8f2242p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6cep-56L 0x1.69c98f512f8f224p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6dp-56L 0x1.69c98f512f8f2242p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6cep-56L 0x1.69c98f512f8f224p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6cep-56L 0x1.69c98f512f8f2242p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6cep-56L 0x1.69c98f512f8f224p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6dp-56L 0x1.69c98f512f8f2242p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6ce7e49c72b500ep-56L 0x1.69c98f512f8f224128974aa64f62p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6ce7e49c72b500fp-56L 0x1.69c98f512f8f224128974aa64f63p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6ce7e49c72b500ep-56L 0x1.69c98f512f8f224128974aa64f62p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6ce7e49c72b500fp-56L 0x1.69c98f512f8f224128974aa64f63p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6ce7e49c72b5p-56L 0x1.69c98f512f8f224128974aa64fp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6ce7e49c72b5p-56L 0x1.69c98f512f8f224128974aa64f8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6ce7e49c72b5p-56L 0x1.69c98f512f8f224128974aa64fp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e7a59ad56357e6ce7e49c72b508p-56L 0x1.69c98f512f8f224128974aa64f8p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d988p-56L 0x1.69c98f512f8f20fep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d988p-56L 0x1.69c98f512f8f21p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98p-56L 0x1.69c98f512f8f20fep+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98p-56L 0x1.69c98f512f8f21p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d988p-56L 0x1.69c98f512f8f20fep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d988p-56L 0x1.69c98f512f8f21p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98p-56L 0x1.69c98f512f8f20fep+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98p-56L 0x1.69c98f512f8f21p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98467c6cde738bp-56L 0x1.69c98f512f8f20ffcccc5895f61cp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98467c6cde738bp-56L 0x1.69c98f512f8f20ffcccc5895f61dp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98467c6cde738acp-56L 0x1.69c98f512f8f20ffcccc5895f61cp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98467c6cde738acp-56L 0x1.69c98f512f8f20ffcccc5895f61dp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98467c6cde73ap-56L 0x1.69c98f512f8f20ffcccc5895f6p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98467c6cde738p-56L 0x1.69c98f512f8f20ffcccc5895f6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98467c6cde738p-56L 0x1.69c98f512f8f20ffcccc5895f6p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3p-4L : -0x5.fefbb5d89979d98467c6cde738p-56L 0x1.69c98f512f8f20ffcccc5895f68p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219p-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee721ap-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219p-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee721ap-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219p-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee721ap-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219p-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee721ap-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219b676460975b8p-68L 0x1.69c98f512f8f21f3ccde90211fe7p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219b676460975b88p-68L 0x1.69c98f512f8f21f3ccde90211fe7p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219b676460975b8p-68L 0x1.69c98f512f8f21f3ccde90211fe7p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219b676460975b88p-68L 0x1.69c98f512f8f21f3ccde90211fe8p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219b6764609758p-68L 0x1.69c98f512f8f21f3ccde90211f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219b676460975cp-68L 0x1.69c98f512f8f21f3ccde90212p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219b6764609758p-68L 0x1.69c98f512f8f21f3ccde90211f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3613p-4L : 0xc.105c9815bee7219b676460975cp-68L 0x1.69c98f512f8f21f3ccde90212p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f88p-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f84p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f84p-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f84p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f88p-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f84p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f84p-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f84p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f845f8c6e3f9314p-68L 0x1.69c98f512f8f21f3a4b316c2dddcp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f845f8c6e3f9312p-68L 0x1.69c98f512f8f21f3a4b316c2dddcp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f845f8c6e3f9312p-68L 0x1.69c98f512f8f21f3a4b316c2dddcp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f845f8c6e3f9312p-68L 0x1.69c98f512f8f21f3a4b316c2ddddp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f845f8c6e3f94p-68L 0x1.69c98f512f8f21f3a4b316c2dd8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f845f8c6e3f93p-68L 0x1.69c98f512f8f21f3a4b316c2dep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f845f8c6e3f93p-68L 0x1.69c98f512f8f21f3a4b316c2dd8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a3612p-4L : -0x3.bce609463abc3f845f8c6e3f93p-68L 0x1.69c98f512f8f21f3a4b316c2dep+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x7.03a631e7b2bf7a301c2d90b8e5f4p-72L 0x1.69c98f512f8f21f3af50eba75559p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x7.03a631e7b2bf7a301c2d90b8e5f8p-72L 0x1.69c98f512f8f21f3af50eba7555ap+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x7.03a631e7b2bf7a301c2d90b8e5f4p-72L 0x1.69c98f512f8f21f3af50eba75559p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x7.03a631e7b2bf7a301c2d90b8e5f8p-72L 0x1.69c98f512f8f21f3af50eba7555ap+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x7.03a631e7d3d53db1f4c03ecc48p-72L 0x1.69c98f512f8f21f3af50eba7555ep+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x7.03a631e7d3d53db1f4c03ecc48p-72L 0x1.69c98f512f8f21f3af50eba7555fp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x7.03a631e7d3d53db1f4c03ecc48p-72L 0x1.69c98f512f8f21f3af50eba7555ep+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x7.03a631e7d3d53db1f4c03ecc4804p-72L 0x1.69c98f512f8f21f3af50eba7555fp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x7.03a631e7d3d53db1f4c03ecc48p-72L 0x1.69c98f512f8f21f3af50eba755p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x7.03a631e7d3d53db1f4c03ecc48p-72L 0x1.69c98f512f8f21f3af50eba7558p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x7.03a631e7d3d53db1f4c03ecc48p-72L 0x1.69c98f512f8f21f3af50eba755p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x7.03a631e7d3d53db1f4c03ecc4ap-72L 0x1.69c98f512f8f21f3af50eba7558p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x7.03a631e794a0332c84d9b147ba8cp-72L 0x1.69c98f512f8f21f3af50eba75554p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x7.03a631e794a0332c84d9b147ba8cp-72L 0x1.69c98f512f8f21f3af50eba75555p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x7.03a631e794a0332c84d9b147ba8cp-72L 0x1.69c98f512f8f21f3af50eba75554p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x7.03a631e794a0332c84d9b147ba9p-72L 0x1.69c98f512f8f21f3af50eba75555p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x7.03a631e794a0332c84d9b147bap-72L 0x1.69c98f512f8f21f3af50eba755p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x7.03a631e794a0332c84d9b147bap-72L 0x1.69c98f512f8f21f3af50eba7558p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x7.03a631e794a0332c84d9b147bap-72L 0x1.69c98f512f8f21f3af50eba755p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281acp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : 0x7.03a631e794a0332c84d9b147bcp-72L 0x1.69c98f512f8f21f3af50eba7558p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec3p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec3p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec3p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec4p-28L 0x1.69c98f75f166c814p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec3p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec3p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec3p-28L 0x1.69c98f75f166c812p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec4p-28L 0x1.69c98f75f166c814p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec37ca6a0886b4ep-28L 0x1.69c98f75f166c8126b000182b44dp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec37ca6a0886b4ep-28L 0x1.69c98f75f166c8126b000182b44dp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec37ca6a0886b4ep-28L 0x1.69c98f75f166c8126b000182b44dp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec37ca6a0886b4e8p-28L 0x1.69c98f75f166c8126b000182b44ep+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec37ca6a0886b4p-28L 0x1.69c98f75f166c8126b000182b4p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec37ca6a0886b4p-28L 0x1.69c98f75f166c8126b000182b48p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec37ca6a0886b4p-28L 0x1.69c98f75f166c8126b000182b4p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bc6ec37ca6a0886b8p-28L 0x1.69c98f75f166c8126b000182b48p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f466p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f466p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f464p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f464p-28L 0x1.69c98f4dc5ed8acp+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f466p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f466p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f464p-28L 0x1.69c98f4dc5ed8abep+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f464p-28L 0x1.69c98f4dc5ed8acp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f465d859ab6d71cbp-28L 0x1.69c98f4dc5ed8abed799f39cc3c2p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f465d859ab6d71cbp-28L 0x1.69c98f4dc5ed8abed799f39cc3c3p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f465d859ab6d71cap-28L 0x1.69c98f4dc5ed8abed799f39cc3c2p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f465d859ab6d71cap-28L 0x1.69c98f4dc5ed8abed799f39cc3c3p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f465d859ab6d72p-28L 0x1.69c98f4dc5ed8abed799f39cc38p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f465d859ab6d72p-28L 0x1.69c98f4dc5ed8abed799f39cc4p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f465d859ab6d718p-28L 0x1.69c98f4dc5ed8abed799f39cc38p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42ap-4L : -0x1.57aa20d17ea4f465d859ab6d718p-28L 0x1.69c98f4dc5ed8abed799f39cc4p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc76404p-56L 0x1.69c98f512f8f224p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc76404p-56L 0x1.69c98f512f8f2242p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc76404p-56L 0x1.69c98f512f8f224p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc76406p-56L 0x1.69c98f512f8f2242p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc76404p-56L 0x1.69c98f512f8f224p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc76404p-56L 0x1.69c98f512f8f2242p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc76404p-56L 0x1.69c98f512f8f224p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc76406p-56L 0x1.69c98f512f8f2242p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc764049de3ba6b112bp-56L 0x1.69c98f512f8f224167cc552bbf49p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc764049de3ba6b112cp-56L 0x1.69c98f512f8f224167cc552bbf49p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc764049de3ba6b112bp-56L 0x1.69c98f512f8f224167cc552bbf49p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc764049de3ba6b112cp-56L 0x1.69c98f512f8f224167cc552bbf4ap+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc764049de3ba6b11p-56L 0x1.69c98f512f8f224167cc552bbfp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc764049de3ba6b11p-56L 0x1.69c98f512f8f224167cc552bbf8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc764049de3ba6b11p-56L 0x1.69c98f512f8f224167cc552bbfp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79b8ff70bc764049de3ba6b118p-56L 0x1.69c98f512f8f224167cc552bbf8p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c5p-56L 0x1.69c98f512f8f21p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c5p-56L 0x1.69c98f512f8f21p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c48p-56L 0x1.69c98f512f8f21p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c48p-56L 0x1.69c98f512f8f2102p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c5p-56L 0x1.69c98f512f8f21p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c5p-56L 0x1.69c98f512f8f21p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c48p-56L 0x1.69c98f512f8f21p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c48p-56L 0x1.69c98f512f8f2102p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c4ee6dd32f6d208p-56L 0x1.69c98f512f8f21000c01631b6603p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c4ee6dd32f6d204p-56L 0x1.69c98f512f8f21000c01631b6604p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c4ee6dd32f6d204p-56L 0x1.69c98f512f8f21000c01631b6603p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c4ee6dd32f6d204p-56L 0x1.69c98f512f8f21000c01631b6604p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c4ee6dd32f6d4p-56L 0x1.69c98f512f8f21000c01631b66p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c4ee6dd32f6d2p-56L 0x1.69c98f512f8f21000c01631b66p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c4ee6dd32f6d2p-56L 0x1.69c98f512f8f21000c01631b66p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff05c0b6f10a5c4ee6dd32f6d2p-56L 0x1.69c98f512f8f21000c01631b668p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba813p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba813p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba813p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba814p-68L 0x1.69c98f512f8f21f6p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba813p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba813p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba813p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba814p-68L 0x1.69c98f512f8f21f6p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba8131d3643b06d1b8p-68L 0x1.69c98f512f8f21f40c139aa68fcdp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba8131d3643b06d1cp-68L 0x1.69c98f512f8f21f40c139aa68fcep+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba8131d3643b06d1b8p-68L 0x1.69c98f512f8f21f40c139aa68fcdp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba8131d3643b06d1cp-68L 0x1.69c98f512f8f21f40c139aa68fcep+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba8131d3643b06dp-68L 0x1.69c98f512f8f21f40c139aa68f8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba8131d3643b06dp-68L 0x1.69c98f512f8f21f40c139aa69p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba8131d3643b06dp-68L 0x1.69c98f512f8f21f40c139aa68f8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.6faeb29cb6ba8131d3643b06d4p-68L 0x1.69c98f512f8f21f40c139aa69p+0L : inexact-ok += clog downward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dffp-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog tonearest ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dffp-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog towardzero ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfe8p-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog upward ldbl-96-intel 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfe8p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog downward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dffp-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog tonearest ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dffp-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog towardzero ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfe8p-68L 0x1.69c98f512f8f21f2p+0L : inexact-ok += clog upward ldbl-96-m68k 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfe8p-68L 0x1.69c98f512f8f21f4p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfef30ed446ed1c4p-68L 0x1.69c98f512f8f21f3e3e821484dc2p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfef30ed446ed1c4p-68L 0x1.69c98f512f8f21f3e3e821484dc3p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfef30ed446ed1cp-68L 0x1.69c98f512f8f21f3e3e821484dc2p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfef30ed446ed1cp-68L 0x1.69c98f512f8f21f3e3e821484dc3p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfef30ed446ed2p-68L 0x1.69c98f512f8f21f3e3e821484d8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfef30ed446ed2p-68L 0x1.69c98f512f8f21f3e3e821484ep+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfef30ed446edp-68L 0x1.69c98f512f8f21f3e3e821484d8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.5d93eebf42e8dfef30ed446edp-68L 0x1.69c98f512f8f21f3e3e821484ep+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x3.073825a8d00a8c77bbcad03bb2aep-72L 0x1.69c98f512f8f21f3ee85f62cc54p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x3.073825a8d00a8c77bbcad03bb2aep-72L 0x1.69c98f512f8f21f3ee85f62cc54p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x3.073825a8d00a8c77bbcad03bb2acp-72L 0x1.69c98f512f8f21f3ee85f62cc54p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x3.073825a8d00a8c77bbcad03bb2acp-72L 0x1.69c98f512f8f21f3ee85f62cc541p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x3.073825a8aef4c8f5e33822284e0cp-72L 0x1.69c98f512f8f21f3ee85f62cc545p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x3.073825a8aef4c8f5e33822284e0ap-72L 0x1.69c98f512f8f21f3ee85f62cc546p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x3.073825a8aef4c8f5e33822284e0ap-72L 0x1.69c98f512f8f21f3ee85f62cc545p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x3.073825a8aef4c8f5e33822284e0ap-72L 0x1.69c98f512f8f21f3ee85f62cc546p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x3.073825a8aef4c8f5e33822284fp-72L 0x1.69c98f512f8f21f3ee85f62cc5p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x3.073825a8aef4c8f5e33822284ep-72L 0x1.69c98f512f8f21f3ee85f62cc58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x3.073825a8aef4c8f5e33822284ep-72L 0x1.69c98f512f8f21f3ee85f62cc5p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : -0x3.073825a8aef4c8f5e33822284ep-72L 0x1.69c98f512f8f21f3ee85f62cc58p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x3.073825a8ee29d37b531eaface074p-72L 0x1.69c98f512f8f21f3ee85f62cc53bp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x3.073825a8ee29d37b531eaface074p-72L 0x1.69c98f512f8f21f3ee85f62cc53cp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x3.073825a8ee29d37b531eaface072p-72L 0x1.69c98f512f8f21f3ee85f62cc53bp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x3.073825a8ee29d37b531eaface072p-72L 0x1.69c98f512f8f21f3ee85f62cc53cp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x3.073825a8ee29d37b531eaface1p-72L 0x1.69c98f512f8f21f3ee85f62cc5p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x3.073825a8ee29d37b531eafacep-72L 0x1.69c98f512f8f21f3ee85f62cc5p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x3.073825a8ee29d37b531eafacep-72L 0x1.69c98f512f8f21f3ee85f62cc5p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a8p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x3.073825a8ee29d37b531eafacep-72L 0x1.69c98f512f8f21f3ee85f62cc58p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64b096ce7p-28L 0x1.69c98f75f166c81257f0c7009469p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64b096ce7p-28L 0x1.69c98f75f166c81257f0c7009469p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64b096ce7p-28L 0x1.69c98f75f166c81257f0c7009469p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64b096ce78p-28L 0x1.69c98f75f166c81257f0c700946ap+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab4bf1bc7bp-28L 0x1.69c98f4dc5ed8abec48ab9084ab9p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab4bf1bc7ap-28L 0x1.69c98f4dc5ed8abec48ab9084abap+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab4bf1bc7ap-28L 0x1.69c98f4dc5ed8abec48ab9084ab9p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab4bf1bc7ap-28L 0x1.69c98f4dc5ed8abec48ab9084abap+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f3170340f1ed23e19a895p-56L 0x1.69c98f512f8f224154bd1a98d54cp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f3170340f1ed23e19a895p-56L 0x1.69c98f512f8f224154bd1a98d54cp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f3170340f1ed23e19a895p-56L 0x1.69c98f512f8f224154bd1a98d54cp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f3170340f1ed23e19a896p-56L 0x1.69c98f512f8f224154bd1a98d54dp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618c443614d35813b4p-56L 0x1.69c98f512f8f20fff8f228887c06p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618c443614d35813b4p-56L 0x1.69c98f512f8f20fff8f228887c06p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618c443614d35813bp-56L 0x1.69c98f512f8f20fff8f228887c06p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618c443614d35813bp-56L 0x1.69c98f512f8f20fff8f228887c07p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743bb29f908b83f7345a8p-68L 0x1.69c98f512f8f21f3f9046013a5dp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743bb29f908b83f7345a8p-68L 0x1.69c98f512f8f21f3f9046013a5d1p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743bb29f908b83f7345a8p-68L 0x1.69c98f512f8f21f3f9046013a5dp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743bb29f908b83f7345bp-68L 0x1.69c98f512f8f21f3f9046013a5d1p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5e837279be588221004p-68L 0x1.69c98f512f8f21f3d0d8e6b563c5p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5e837279be588221004p-68L 0x1.69c98f512f8f21f3d0d8e6b563c5p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5e837279be588221p-68L 0x1.69c98f512f8f21f3d0d8e6b563c5p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5e837279be588221p-68L 0x1.69c98f512f8f21f3d0d8e6b563c6p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x7.01fffffffffffffffffffffffffcp-224L 0x1.69c98f512f8f21f3db76bb99db43p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x7.02p-224L 0x1.69c98f512f8f21f3db76bb99db43p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x7.01fffffffffffffffffffffffffcp-224L 0x1.69c98f512f8f21f3db76bb99db43p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0x7.02p-224L 0x1.69c98f512f8f21f3db76bb99db44p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.115c381d892ae1363da8fae12ddep-108L 0x1.69c98f512f8f21f3db76bb99db48p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.115c381d892ae1363da8fae12ddep-108L 0x1.69c98f512f8f21f3db76bb99db48p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.115c381d892ae1363da8fae12ddep-108L 0x1.69c98f512f8f21f3db76bb99db48p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.115c381d892ae1363da8fae12dep-108L 0x1.69c98f512f8f21f3db76bb99db49p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.e1f47039753df712d0f95eae7296p-108L 0x1.69c98f512f8f21f3db76bb99db3ep+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.e1f47039753df712d0f95eae7295p-108L 0x1.69c98f512f8f21f3db76bb99db3ep+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.e1f47039753df712d0f95eae7295p-108L 0x1.69c98f512f8f21f3db76bb99db3ep+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cb2p-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.e1f47039753df712d0f95eae7295p-108L 0x1.69c98f512f8f21f3db76bb99db3fp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64bcd40d5p-28L 0x1.69c98f75f166c81257f0c7009464p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64bcd40d58p-28L 0x1.69c98f75f166c81257f0c7009465p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64bcd40d5p-28L 0x1.69c98f75f166c81257f0c7009464p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64bcd40d58p-28L 0x1.69c98f75f166c81257f0c7009465p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64bcd40cp-28L 0x1.69c98f75f166c81257f0c70094p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64bcd40cp-28L 0x1.69c98f75f166c81257f0c700948p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64bcd40cp-28L 0x1.69c98f75f166c81257f0c70094p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd64bcd41p-28L 0x1.69c98f75f166c81257f0c700948p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab3fb47d7ep-28L 0x1.69c98f4dc5ed8abec48ab9084ab5p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab3fb47d7ep-28L 0x1.69c98f4dc5ed8abec48ab9084ab5p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab3fb47d7dp-28L 0x1.69c98f4dc5ed8abec48ab9084ab5p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab3fb47d7dp-28L 0x1.69c98f4dc5ed8abec48ab9084ab6p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab3fb47d8p-28L 0x1.69c98f4dc5ed8abec48ab9084a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab3fb47d8p-28L 0x1.69c98f4dc5ed8abec48ab9084a8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab3fb47dp-28L 0x1.69c98f4dc5ed8abec48ab9084a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab3fb47dp-28L 0x1.69c98f4dc5ed8abec48ab9084bp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317034d2f2c1e99b9ef5p-56L 0x1.69c98f512f8f224154bd1a98d547p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317034d2f2c1e99b9ef6p-56L 0x1.69c98f512f8f224154bd1a98d547p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317034d2f2c1e99b9ef5p-56L 0x1.69c98f512f8f224154bd1a98d547p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317034d2f2c1e99b9ef6p-56L 0x1.69c98f512f8f224154bd1a98d548p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317034d2f2c1e99b9e8p-56L 0x1.69c98f512f8f224154bd1a98d5p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317034d2f2c1e99b9fp-56L 0x1.69c98f512f8f224154bd1a98d58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317034d2f2c1e99b9e8p-56L 0x1.69c98f512f8f224154bd1a98d5p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317034d2f2c1e99b9fp-56L 0x1.69c98f512f8f224154bd1a98d58p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618b80622527d61d48p-56L 0x1.69c98f512f8f20fff8f228887c01p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618b80622527d61d44p-56L 0x1.69c98f512f8f20fff8f228887c01p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618b80622527d61d44p-56L 0x1.69c98f512f8f20fff8f228887c01p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618b80622527d61d44p-56L 0x1.69c98f512f8f20fff8f228887c02p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618b80622527d61ep-56L 0x1.69c98f512f8f20fff8f228887cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618b80622527d61ep-56L 0x1.69c98f512f8f20fff8f228887cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618b80622527d61cp-56L 0x1.69c98f512f8f20fff8f228887cp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618b80622527d61cp-56L 0x1.69c98f512f8f20fff8f228887c8p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743c7673803705ed97dbp-68L 0x1.69c98f512f8f21f3f9046013a5cbp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743c7673803705ed97dbp-68L 0x1.69c98f512f8f21f3f9046013a5ccp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743c7673803705ed97dbp-68L 0x1.69c98f512f8f21f3f9046013a5cbp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743c7673803705ed97db8p-68L 0x1.69c98f512f8f21f3f9046013a5ccp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743c7673803705ed97cp-68L 0x1.69c98f512f8f21f3f9046013a58p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743c7673803705ed97cp-68L 0x1.69c98f512f8f21f3f9046013a6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743c7673803705ed97cp-68L 0x1.69c98f512f8f21f3f9046013a58p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f743c7673803705ed98p-68L 0x1.69c98f512f8f21f3f9046013a6p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5dbf9e8a12d68bbd7e4p-68L 0x1.69c98f512f8f21f3d0d8e6b563cp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5dbf9e8a12d68bbd7e4p-68L 0x1.69c98f512f8f21f3d0d8e6b563c1p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5dbf9e8a12d68bbd7ep-68L 0x1.69c98f512f8f21f3d0d8e6b563cp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5dbf9e8a12d68bbd7ep-68L 0x1.69c98f512f8f21f3d0d8e6b563c1p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5dbf9e8a12d68bbd8p-68L 0x1.69c98f512f8f21f3d0d8e6b5638p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5dbf9e8a12d68bbd8p-68L 0x1.69c98f512f8f21f3d0d8e6b564p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5dbf9e8a12d68bbd6p-68L 0x1.69c98f512f8f21f3d0d8e6b5638p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b5dbf9e8a12d68bbd6p-68L 0x1.69c98f512f8f21f3d0d8e6b564p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0xc.3d3efab81f663818e1497650a508p-116L 0x1.69c98f512f8f21f3db76bb99db3ep+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0xc.3d3efab81f663818e1497650a508p-116L 0x1.69c98f512f8f21f3db76bb99db3ep+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0xc.3d3efab81f663818e1497650a508p-116L 0x1.69c98f512f8f21f3db76bb99db3ep+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : 0xc.3d3efab81f663818e1497650a51p-116L 0x1.69c98f512f8f21f3db76bb99db3fp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.1d997718414a476e568a44577e8p-108L 0x1.69c98f512f8f21f3db76bb99db43p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.1d997718414a476e568a44577e8p-108L 0x1.69c98f512f8f21f3db76bb99db43p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.1d997718414a476e568a44577e8p-108L 0x1.69c98f512f8f21f3db76bb99db43p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.1d997718414a476e568a44577e82p-108L 0x1.69c98f512f8f21f3db76bb99db44p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.1d997718414a476e568a44577ep-108L 0x1.69c98f512f8f21f3db76bb99dbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.1d997718414a476e568a44577fp-108L 0x1.69c98f512f8f21f3db76bb99db8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.1d997718414a476e568a44577ep-108L 0x1.69c98f512f8f21f3db76bb99dbp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x2.1d997718414a476e568a44577fp-108L 0x1.69c98f512f8f21f3db76bb99db8p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.d5b7313ebd1e90dab818153821eep-108L 0x1.69c98f512f8f21f3db76bb99db39p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.d5b7313ebd1e90dab818153821eep-108L 0x1.69c98f512f8f21f3db76bb99db39p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.d5b7313ebd1e90dab818153821edp-108L 0x1.69c98f512f8f21f3db76bb99db39p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.d5b7313ebd1e90dab818153821edp-108L 0x1.69c98f512f8f21f3db76bb99db3ap+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.d5b7313ebd1e90dab818153822p-108L 0x1.69c98f512f8f21f3db76bb99dbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.d5b7313ebd1e90dab818153822p-108L 0x1.69c98f512f8f21f3db76bb99dbp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.d5b7313ebd1e90dab8181538218p-108L 0x1.69c98f512f8f21f3db76bb99dbp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315dp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.d5b7313ebd1e90dab8181538218p-108L 0x1.69c98f512f8f21f3db76bb99db8p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd6494a89438p-28L 0x1.69c98f75f166c81257f0c7009474p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd6494a8944p-28L 0x1.69c98f75f166c81257f0c7009474p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd6494a89438p-28L 0x1.69c98f75f166c81257f0c7009474p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd6494a8944p-28L 0x1.69c98f75f166c81257f0c7009475p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd6494a894p-28L 0x1.69c98f75f166c81257f0c70094p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd6494a894p-28L 0x1.69c98f75f166c81257f0c700948p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd6494a894p-28L 0x1.69c98f75f166c81257f0c70094p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42bp-4L : 0xe.75987a3a2bf75fb9cd6494a898p-28L 0x1.69c98f75f166c81257f0c700948p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab67dff6e3p-28L 0x1.69c98f4dc5ed8abec48ab9084ac4p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab67dff6e3p-28L 0x1.69c98f4dc5ed8abec48ab9084ac5p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab67dff6e2p-28L 0x1.69c98f4dc5ed8abec48ab9084ac4p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab67dff6e2p-28L 0x1.69c98f4dc5ed8abec48ab9084ac5p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab67dff7p-28L 0x1.69c98f4dc5ed8abec48ab9084a8p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab67dff7p-28L 0x1.69c98f4dc5ed8abec48ab9084bp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab67dff68p-28L 0x1.69c98f4dc5ed8abec48ab9084a8p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42ap-4L : -0x1.57aa20d17e7480e375ab67dff68p-28L 0x1.69c98f4dc5ed8abec48ab9084bp+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317032503b2c057aec7dp-56L 0x1.69c98f512f8f224154bd1a98d557p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317032503b2c057aec7ep-56L 0x1.69c98f512f8f224154bd1a98d557p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317032503b2c057aec7dp-56L 0x1.69c98f512f8f224154bd1a98d557p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317032503b2c057aec7ep-56L 0x1.69c98f512f8f224154bd1a98d558p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317032503b2c057aecp-56L 0x1.69c98f512f8f224154bd1a98d5p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317032503b2c057aec8p-56L 0x1.69c98f512f8f224154bd1a98d58p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317032503b2c057aecp-56L 0x1.69c98f512f8f224154bd1a98d5p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a38p-4L : 0x1.e79e972f317032503b2c057aec8p-56L 0x1.69c98f512f8f224154bd1a98d58p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618e0319bb0bf6cfe8p-56L 0x1.69c98f512f8f20fff8f228887c11p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618e0319bb0bf6cfe4p-56L 0x1.69c98f512f8f20fff8f228887c11p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618e0319bb0bf6cfe4p-56L 0x1.69c98f512f8f20fff8f228887c11p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618e0319bb0bf6cfe4p-56L 0x1.69c98f512f8f20fff8f228887c12p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618e0319bb0bf6dp-56L 0x1.69c98f512f8f20fff8f228887cp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618e0319bb0bf6dp-56L 0x1.69c98f512f8f20fff8f228887cp+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618e0319bb0bf6cep-56L 0x1.69c98f512f8f20fff8f228887cp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3p-4L : -0x5.ff02b97ecb618e0319bb0bf6cep-56L 0x1.69c98f512f8f20fff8f228887c8p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f7439f3bbea52e53b16358p-68L 0x1.69c98f512f8f21f3f9046013a5dbp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f7439f3bbea52e53b16358p-68L 0x1.69c98f512f8f21f3f9046013a5dcp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f7439f3bbea52e53b16358p-68L 0x1.69c98f512f8f21f3f9046013a5dbp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f7439f3bbea52e53b1636p-68L 0x1.69c98f512f8f21f3f9046013a5dcp+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f7439f3bbea52e53b16p-68L 0x1.69c98f512f8f21f3f9046013a58p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f7439f3bbea52e53b164p-68L 0x1.69c98f512f8f21f3f9046013a6p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f7439f3bbea52e53b16p-68L 0x1.69c98f512f8f21f3f9046013a58p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3613p-4L : 0xb.a02234f7439f3bbea52e53b164p-68L 0x1.69c98f512f8f21f3f9046013a6p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b6042561ff6f73e3f28cp-68L 0x1.69c98f512f8f21f3d0d8e6b563dp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b6042561ff6f73e3f28cp-68L 0x1.69c98f512f8f21f3d0d8e6b563dp+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b6042561ff6f73e3f288p-68L 0x1.69c98f512f8f21f3d0d8e6b563dp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b6042561ff6f73e3f288p-68L 0x1.69c98f512f8f21f3d0d8e6b563d1p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b6042561ff6f73e3f4p-68L 0x1.69c98f512f8f21f3d0d8e6b5638p+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b6042561ff6f73e3f2p-68L 0x1.69c98f512f8f21f3d0d8e6b564p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b6042561ff6f73e3f2p-68L 0x1.69c98f512f8f21f3d0d8e6b5638p+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a3612p-4L : -0x4.2d206c64b6042561ff6f73e3f2p-68L 0x1.69c98f512f8f21f3d0d8e6b564p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x1.bee3a6389ebc1e27a6b245cc5232p-112L 0x1.69c98f512f8f21f3db76bb99db4dp+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x1.bee3a6389ebc1e27a6b245cc5232p-112L 0x1.69c98f512f8f21f3db76bb99db4ep+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x1.bee3a6389ebc1e27a6b245cc5231p-112L 0x1.69c98f512f8f21f3db76bb99db4dp+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e81e8p-4L : -0x1.bee3a6389ebc1e27a6b245cc5231p-112L 0x1.69c98f512f8f21f3db76bb99db4ep+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x1.f56dfdb9ff3f1f53c33dd68468c2p-108L 0x1.69c98f512f8f21f3db76bb99db53p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x1.f56dfdb9ff3f1f53c33dd68468c3p-108L 0x1.69c98f512f8f21f3db76bb99db53p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x1.f56dfdb9ff3f1f53c33dd68468c2p-108L 0x1.69c98f512f8f21f3db76bb99db53p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x1.f56dfdb9ff3f1f53c33dd68468c3p-108L 0x1.69c98f512f8f21f3db76bb99db54p+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x1.f56dfdb9ff3f1f53c33dd684688p-108L 0x1.69c98f512f8f21f3db76bb99dbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x1.f56dfdb9ff3f1f53c33dd68469p-108L 0x1.69c98f512f8f21f3db76bb99db8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x1.f56dfdb9ff3f1f53c33dd684688p-108L 0x1.69c98f512f8f21f3db76bb99dbp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e84p-4L : 0x1.f56dfdb9ff3f1f53c33dd68469p-108L 0x1.69c98f512f8f21f3db76bb99db8p+0L : inexact-ok += clog downward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.fde2aa9cff29b8f54b64830b37cp-108L 0x1.69c98f512f8f21f3db76bb99db49p+0L : inexact-ok += clog tonearest ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.fde2aa9cff29b8f54b64830b37bfp-108L 0x1.69c98f512f8f21f3db76bb99db49p+0L : inexact-ok += clog towardzero ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.fde2aa9cff29b8f54b64830b37bfp-108L 0x1.69c98f512f8f21f3db76bb99db49p+0L : inexact-ok += clog upward ldbl-128 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.fde2aa9cff29b8f54b64830b37bfp-108L 0x1.69c98f512f8f21f3db76bb99db4ap+0L : inexact-ok += clog downward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.fde2aa9cff29b8f54b64830b38p-108L 0x1.69c98f512f8f21f3db76bb99dbp+0L : inexact-ok += clog tonearest ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.fde2aa9cff29b8f54b64830b378p-108L 0x1.69c98f512f8f21f3db76bb99db8p+0L : inexact-ok += clog towardzero ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.fde2aa9cff29b8f54b64830b378p-108L 0x1.69c98f512f8f21f3db76bb99dbp+0L : inexact-ok += clog upward ldbl-128ibm 0x2.82b795e420b281a934c6dd315cp-4L 0xf.cd42a15bf9a361243a89663e8p-4L : -0x1.fde2aa9cff29b8f54b64830b378p-108L 0x1.69c98f512f8f21f3db76bb99db8p+0L : inexact-ok cos 0 = cos downward flt-32 0x0p+0f : 0x1p+0f : inexact-ok = cos tonearest flt-32 0x0p+0f : 0x1p+0f : inexact-ok @@ -7834,6 +38184,8360 @@ cosh 24 = cosh tonearest ldbl-128ibm 0x1.8p+4L : 0x3.156ff6a8ebf6e66f4935281c6p+32L : inexact-ok = cosh towardzero ldbl-128ibm 0x1.8p+4L : 0x3.156ff6a8ebf6e66f4935281c5fp+32L : inexact-ok = cosh upward ldbl-128ibm 0x1.8p+4L : 0x3.156ff6a8ebf6e66f4935281c6p+32L : inexact-ok +csqrt 0 0 += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok +csqrt 0 -0 += csqrt downward flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok +csqrt -0 0 += csqrt downward flt-32 -0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 -0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 -0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 -0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 -0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 -0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 -0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 -0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm -0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok +csqrt -0 -0 += csqrt downward flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt tonearest flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt towardzero flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt upward flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt downward dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt tonearest dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt towardzero dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt upward dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok +csqrt 16.0 -30.0 += csqrt downward flt-32 0x1p+4f -0x1.ep+4f : 0x5p+0f -0x3p+0f : inexact-ok += csqrt tonearest flt-32 0x1p+4f -0x1.ep+4f : 0x5p+0f -0x3p+0f : inexact-ok += csqrt towardzero flt-32 0x1p+4f -0x1.ep+4f : 0x5p+0f -0x3p+0f : inexact-ok += csqrt upward flt-32 0x1p+4f -0x1.ep+4f : 0x5p+0f -0x3p+0f : inexact-ok += csqrt downward dbl-64 0x1p+4 -0x1.ep+4 : 0x5p+0 -0x3p+0 : inexact-ok += csqrt tonearest dbl-64 0x1p+4 -0x1.ep+4 : 0x5p+0 -0x3p+0 : inexact-ok += csqrt towardzero dbl-64 0x1p+4 -0x1.ep+4 : 0x5p+0 -0x3p+0 : inexact-ok += csqrt upward dbl-64 0x1p+4 -0x1.ep+4 : 0x5p+0 -0x3p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt downward ldbl-128 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt tonearest ldbl-128 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt towardzero ldbl-128 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt upward ldbl-128 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x1p+4L -0x1.ep+4L : 0x5p+0L -0x3p+0L : inexact-ok +csqrt -1 0 += csqrt downward flt-32 -0x1p+0f 0x0p+0f : 0x0p+0f 0x1p+0f : inexact-ok += csqrt tonearest flt-32 -0x1p+0f 0x0p+0f : 0x0p+0f 0x1p+0f : inexact-ok += csqrt towardzero flt-32 -0x1p+0f 0x0p+0f : 0x0p+0f 0x1p+0f : inexact-ok += csqrt upward flt-32 -0x1p+0f 0x0p+0f : 0x0p+0f 0x1p+0f : inexact-ok += csqrt downward dbl-64 -0x1p+0 0x0p+0 : 0x0p+0 0x1p+0 : inexact-ok += csqrt tonearest dbl-64 -0x1p+0 0x0p+0 : 0x0p+0 0x1p+0 : inexact-ok += csqrt towardzero dbl-64 -0x1p+0 0x0p+0 : 0x0p+0 0x1p+0 : inexact-ok += csqrt upward dbl-64 -0x1p+0 0x0p+0 : 0x0p+0 0x1p+0 : inexact-ok += csqrt downward ldbl-96-intel -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt tonearest ldbl-96-intel -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt towardzero ldbl-96-intel -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt upward ldbl-96-intel -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt downward ldbl-96-m68k -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt upward ldbl-96-m68k -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt downward ldbl-128 -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt tonearest ldbl-128 -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt towardzero ldbl-128 -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt upward ldbl-128 -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt downward ldbl-128ibm -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt tonearest ldbl-128ibm -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt towardzero ldbl-128ibm -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok += csqrt upward ldbl-128ibm -0x1p+0L 0x0p+0L : 0x0p+0L 0x1p+0L : inexact-ok +csqrt 0 2 += csqrt downward flt-32 0x0p+0f 0x2p+0f : 0x1p+0f 0x1p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x2p+0f : 0x1p+0f 0x1p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x2p+0f : 0x1p+0f 0x1p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x2p+0f : 0x1p+0f 0x1p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x2p+0 : 0x1p+0 0x1p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x2p+0 : 0x1p+0 0x1p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x2p+0 : 0x1p+0 0x1p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x2p+0 : 0x1p+0 0x1p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x2p+0L : 0x1p+0L 0x1p+0L : inexact-ok +csqrt 119 120 += csqrt downward flt-32 0x7.7p+4f 0x7.8p+4f : 0xcp+0f 0x5p+0f : inexact-ok += csqrt tonearest flt-32 0x7.7p+4f 0x7.8p+4f : 0xcp+0f 0x5p+0f : inexact-ok += csqrt towardzero flt-32 0x7.7p+4f 0x7.8p+4f : 0xcp+0f 0x5p+0f : inexact-ok += csqrt upward flt-32 0x7.7p+4f 0x7.8p+4f : 0xcp+0f 0x5p+0f : inexact-ok += csqrt downward dbl-64 0x7.7p+4 0x7.8p+4 : 0xcp+0 0x5p+0 : inexact-ok += csqrt tonearest dbl-64 0x7.7p+4 0x7.8p+4 : 0xcp+0 0x5p+0 : inexact-ok += csqrt towardzero dbl-64 0x7.7p+4 0x7.8p+4 : 0xcp+0 0x5p+0 : inexact-ok += csqrt upward dbl-64 0x7.7p+4 0x7.8p+4 : 0xcp+0 0x5p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt downward ldbl-128 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt tonearest ldbl-128 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt towardzero ldbl-128 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt upward ldbl-128 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x7.7p+4L 0x7.8p+4L : 0xcp+0L 0x5p+0L : inexact-ok +csqrt 0.75 1.25 += csqrt downward flt-32 0xcp-4f 0x1.4p+0f : 0x1.0cf782p+0f 0x9.84953p-4f : inexact-ok += csqrt tonearest flt-32 0xcp-4f 0x1.4p+0f : 0x1.0cf782p+0f 0x9.84954p-4f : inexact-ok += csqrt towardzero flt-32 0xcp-4f 0x1.4p+0f : 0x1.0cf782p+0f 0x9.84953p-4f : inexact-ok += csqrt upward flt-32 0xcp-4f 0x1.4p+0f : 0x1.0cf784p+0f 0x9.84954p-4f : inexact-ok += csqrt downward dbl-64 0xcp-4 0x1.4p+0 : 0x1.0cf78272ed4f6p+0 0x9.84953b9e67de8p-4 : inexact-ok += csqrt tonearest dbl-64 0xcp-4 0x1.4p+0 : 0x1.0cf78272ed4f6p+0 0x9.84953b9e67de8p-4 : inexact-ok += csqrt towardzero dbl-64 0xcp-4 0x1.4p+0 : 0x1.0cf78272ed4f6p+0 0x9.84953b9e67de8p-4 : inexact-ok += csqrt upward dbl-64 0xcp-4 0x1.4p+0 : 0x1.0cf78272ed4f7p+0 0x9.84953b9e67dfp-4 : inexact-ok += csqrt downward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605cp+0L 0x9.84953b9e67deb2fp-4L : inexact-ok += csqrt tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605ep+0L 0x9.84953b9e67deb3p-4L : inexact-ok += csqrt towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605cp+0L 0x9.84953b9e67deb2fp-4L : inexact-ok += csqrt upward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605ep+0L 0x9.84953b9e67deb3p-4L : inexact-ok += csqrt downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605cp+0L 0x9.84953b9e67deb2fp-4L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605ep+0L 0x9.84953b9e67deb3p-4L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605cp+0L 0x9.84953b9e67deb2fp-4L : inexact-ok += csqrt upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605ep+0L 0x9.84953b9e67deb3p-4L : inexact-ok += csqrt downward ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605dfff3fea6159ap+0L 0x9.84953b9e67deb2fe57ac37bf9148p-4L : inexact-ok += csqrt tonearest ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605dfff3fea6159bp+0L 0x9.84953b9e67deb2fe57ac37bf915p-4L : inexact-ok += csqrt towardzero ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605dfff3fea6159ap+0L 0x9.84953b9e67deb2fe57ac37bf9148p-4L : inexact-ok += csqrt upward ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605dfff3fea6159bp+0L 0x9.84953b9e67deb2fe57ac37bf915p-4L : inexact-ok += csqrt downward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605dfff3fea6158p+0L 0x9.84953b9e67deb2fe57ac37bf9p-4L : inexact-ok += csqrt tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605dfff3fea6158p+0L 0x9.84953b9e67deb2fe57ac37bf9p-4L : inexact-ok += csqrt towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605dfff3fea6158p+0L 0x9.84953b9e67deb2fe57ac37bf9p-4L : inexact-ok += csqrt upward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.0cf78272ed4f605dfff3fea616p+0L 0x9.84953b9e67deb2fe57ac37bf94p-4L : inexact-ok +csqrt -2 -3 += csqrt downward flt-32 -0x2p+0f -0x3p+0f : 0xe.55ec7p-4f -0x1.ac950cp+0f : inexact-ok += csqrt tonearest flt-32 -0x2p+0f -0x3p+0f : 0xe.55ec8p-4f -0x1.ac950cp+0f : inexact-ok += csqrt towardzero flt-32 -0x2p+0f -0x3p+0f : 0xe.55ec7p-4f -0x1.ac950ap+0f : inexact-ok += csqrt upward flt-32 -0x2p+0f -0x3p+0f : 0xe.55ec8p-4f -0x1.ac950ap+0f : inexact-ok += csqrt downward dbl-64 -0x2p+0 -0x3p+0 : 0xe.55ec7a5ee268p-4 -0x1.ac950b37094a6p+0 : inexact-ok += csqrt tonearest dbl-64 -0x2p+0 -0x3p+0 : 0xe.55ec7a5ee2688p-4 -0x1.ac950b37094a6p+0 : inexact-ok += csqrt towardzero dbl-64 -0x2p+0 -0x3p+0 : 0xe.55ec7a5ee268p-4 -0x1.ac950b37094a5p+0 : inexact-ok += csqrt upward dbl-64 -0x2p+0 -0x3p+0 : 0xe.55ec7a5ee2688p-4 -0x1.ac950b37094a5p+0 : inexact-ok += csqrt downward ldbl-96-intel -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fp-4L -0x1.ac950b37094a5a96p+0L : inexact-ok += csqrt tonearest ldbl-96-intel -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26874p-4L -0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt towardzero ldbl-96-intel -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fp-4L -0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt upward ldbl-96-intel -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26874p-4L -0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt downward ldbl-96-m68k -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fp-4L -0x1.ac950b37094a5a96p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26874p-4L -0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fp-4L -0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt upward ldbl-96-m68k -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26874p-4L -0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt downward ldbl-128 -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e6a8p-4L -0x1.ac950b37094a5a94aab4a9642dc9p+0L : inexact-ok += csqrt tonearest ldbl-128 -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e6bp-4L -0x1.ac950b37094a5a94aab4a9642dc9p+0L : inexact-ok += csqrt towardzero ldbl-128 -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e6a8p-4L -0x1.ac950b37094a5a94aab4a9642dc8p+0L : inexact-ok += csqrt upward ldbl-128 -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e6bp-4L -0x1.ac950b37094a5a94aab4a9642dc8p+0L : inexact-ok += csqrt downward ldbl-128ibm -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e4p-4L -0x1.ac950b37094a5a94aab4a9642ep+0L : inexact-ok += csqrt tonearest ldbl-128ibm -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e8p-4L -0x1.ac950b37094a5a94aab4a9642ep+0L : inexact-ok += csqrt towardzero ldbl-128ibm -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e4p-4L -0x1.ac950b37094a5a94aab4a9642d8p+0L : inexact-ok += csqrt upward ldbl-128ibm -0x2p+0L -0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e8p-4L -0x1.ac950b37094a5a94aab4a9642d8p+0L : inexact-ok +csqrt -2 3 += csqrt downward flt-32 -0x2p+0f 0x3p+0f : 0xe.55ec7p-4f 0x1.ac950ap+0f : inexact-ok += csqrt tonearest flt-32 -0x2p+0f 0x3p+0f : 0xe.55ec8p-4f 0x1.ac950cp+0f : inexact-ok += csqrt towardzero flt-32 -0x2p+0f 0x3p+0f : 0xe.55ec7p-4f 0x1.ac950ap+0f : inexact-ok += csqrt upward flt-32 -0x2p+0f 0x3p+0f : 0xe.55ec8p-4f 0x1.ac950cp+0f : inexact-ok += csqrt downward dbl-64 -0x2p+0 0x3p+0 : 0xe.55ec7a5ee268p-4 0x1.ac950b37094a5p+0 : inexact-ok += csqrt tonearest dbl-64 -0x2p+0 0x3p+0 : 0xe.55ec7a5ee2688p-4 0x1.ac950b37094a6p+0 : inexact-ok += csqrt towardzero dbl-64 -0x2p+0 0x3p+0 : 0xe.55ec7a5ee268p-4 0x1.ac950b37094a5p+0 : inexact-ok += csqrt upward dbl-64 -0x2p+0 0x3p+0 : 0xe.55ec7a5ee2688p-4 0x1.ac950b37094a6p+0 : inexact-ok += csqrt downward ldbl-96-intel -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fp-4L 0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt tonearest ldbl-96-intel -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26874p-4L 0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt towardzero ldbl-96-intel -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fp-4L 0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt upward ldbl-96-intel -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26874p-4L 0x1.ac950b37094a5a96p+0L : inexact-ok += csqrt downward ldbl-96-m68k -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fp-4L 0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26874p-4L 0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fp-4L 0x1.ac950b37094a5a94p+0L : inexact-ok += csqrt upward ldbl-96-m68k -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26874p-4L 0x1.ac950b37094a5a96p+0L : inexact-ok += csqrt downward ldbl-128 -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e6a8p-4L 0x1.ac950b37094a5a94aab4a9642dc8p+0L : inexact-ok += csqrt tonearest ldbl-128 -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e6bp-4L 0x1.ac950b37094a5a94aab4a9642dc9p+0L : inexact-ok += csqrt towardzero ldbl-128 -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e6a8p-4L 0x1.ac950b37094a5a94aab4a9642dc8p+0L : inexact-ok += csqrt upward ldbl-128 -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e6bp-4L 0x1.ac950b37094a5a94aab4a9642dc9p+0L : inexact-ok += csqrt downward ldbl-128ibm -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e4p-4L 0x1.ac950b37094a5a94aab4a9642d8p+0L : inexact-ok += csqrt tonearest ldbl-128ibm -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e8p-4L 0x1.ac950b37094a5a94aab4a9642ep+0L : inexact-ok += csqrt towardzero ldbl-128ibm -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e4p-4L 0x1.ac950b37094a5a94aab4a9642d8p+0L : inexact-ok += csqrt upward ldbl-128ibm -0x2p+0L 0x3p+0L : 0xe.55ec7a5ee26873fa30d7c5f6e8p-4L 0x1.ac950b37094a5a94aab4a9642ep+0L : inexact-ok +csqrt 0 -1 += csqrt downward flt-32 0x0p+0f -0x1p+0f : 0xb.504f3p-4f -0xb.504f4p-4f : inexact-ok += csqrt tonearest flt-32 0x0p+0f -0x1p+0f : 0xb.504f3p-4f -0xb.504f3p-4f : inexact-ok += csqrt towardzero flt-32 0x0p+0f -0x1p+0f : 0xb.504f3p-4f -0xb.504f3p-4f : inexact-ok += csqrt upward flt-32 0x0p+0f -0x1p+0f : 0xb.504f4p-4f -0xb.504f3p-4f : inexact-ok += csqrt downward dbl-64 0x0p+0 -0x1p+0 : 0xb.504f333f9de6p-4 -0xb.504f333f9de68p-4 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 -0x1p+0 : 0xb.504f333f9de68p-4 -0xb.504f333f9de68p-4 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 -0x1p+0 : 0xb.504f333f9de6p-4 -0xb.504f333f9de6p-4 : inexact-ok += csqrt upward dbl-64 0x0p+0 -0x1p+0 : 0xb.504f333f9de68p-4 -0xb.504f333f9de6p-4 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484p-4L -0xb.504f333f9de6485p-4L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484p-4L -0xb.504f333f9de6484p-4L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484p-4L -0xb.504f333f9de6484p-4L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L -0x1p+0L : 0xb.504f333f9de6485p-4L -0xb.504f333f9de6484p-4L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484p-4L -0xb.504f333f9de6485p-4L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484p-4L -0xb.504f333f9de6484p-4L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484p-4L -0xb.504f333f9de6484p-4L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L -0x1p+0L : 0xb.504f333f9de6485p-4L -0xb.504f333f9de6484p-4L : inexact-ok += csqrt downward ldbl-128 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484597d89b3754a8p-4L -0xb.504f333f9de6484597d89b3754bp-4L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484597d89b3754a8p-4L -0xb.504f333f9de6484597d89b3754a8p-4L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484597d89b3754a8p-4L -0xb.504f333f9de6484597d89b3754a8p-4L : inexact-ok += csqrt upward ldbl-128 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484597d89b3754bp-4L -0xb.504f333f9de6484597d89b3754a8p-4L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484597d89b3754p-4L -0xb.504f333f9de6484597d89b3758p-4L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484597d89b3754p-4L -0xb.504f333f9de6484597d89b3754p-4L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484597d89b3754p-4L -0xb.504f333f9de6484597d89b3754p-4L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L -0x1p+0L : 0xb.504f333f9de6484597d89b3758p-4L -0xb.504f333f9de6484597d89b3754p-4L : inexact-ok +csqrt 0x1.fffffep+127 0x1.fffffep+127 += csqrt downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435ep+64f 0x7.480c5p+60f : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f12p+64 0x7.480c4a99abe24p+60 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201c8p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201c8p+60L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c1p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c2p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c1p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c2p+64L 0x7.480c4a99abe201c363daba1d6a3cp+60L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e918p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e92p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e918p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e92p+64L 0x7.480c4a99abe201c363daba1d6cp+60L : inexact-ok +csqrt 0x1.fffffep+127 1.0 += csqrt downward flt-32 0xf.fffffp+124f 0x1p+0f : 0xf.fffffp+60f 0x8p-68f : inexact-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0x1p+0f : 0xf.fffffp+60f 0x8p-68f : inexact-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0x1p+0f : 0xf.fffffp+60f 0x8p-68f : inexact-ok += csqrt upward flt-32 0xf.fffffp+124f 0x1p+0f : 0x1p+64f 0x8.00001p-68f : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0x1p+0 : 0xf.fffff7fffffd8p+60 0x8.000004000003p-68 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0x1p+0 : 0xf.fffff7fffffep+60 0x8.000004000003p-68 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0x1p+0 : 0xf.fffff7fffffd8p+60 0x8.000004000003p-68 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0x1p+0 : 0xf.fffff7fffffep+60 0x8.0000040000038p-68 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffp+60L 0x8.000004000003p-68L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffep+60L 0x8.000004000003p-68L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffp+60L 0x8.000004000003p-68L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffep+60L 0x8.000004000003001p-68L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffp+60L 0x8.000004000003p-68L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffep+60L 0x8.000004000003p-68L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffp+60L 0x8.000004000003p-68L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffep+60L 0x8.000004000003001p-68L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x8.0000040000030000028000023p-68L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x8.0000040000030000028000023p-68L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x8.0000040000030000028000023p-68L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x8.0000040000030000028000023008p-68L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x8.0000040000030000028000023p-68L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x8.0000040000030000028000023p-68L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x8.0000040000030000028000023p-68L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x8.00000400000300000280000234p-68L : inexact-ok +csqrt 0x1p-149 0x1p-149 += csqrt downward flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efdep-76 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396696p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320d8p-76L : inexact-ok +csqrt 0x1p-147 0x1p-147 += csqrt downward flt-32 0x2p-148f 0x2p-148f : 0x6.37108p-76f 0x2.930a5cp-76f : inexact-ok += csqrt tonearest flt-32 0x2p-148f 0x2p-148f : 0x6.371088p-76f 0x2.930a6p-76f : inexact-ok += csqrt towardzero flt-32 0x2p-148f 0x2p-148f : 0x6.37108p-76f 0x2.930a5cp-76f : inexact-ok += csqrt upward flt-32 0x2p-148f 0x2p-148f : 0x6.371088p-76f 0x2.930a6p-76f : inexact-ok += csqrt downward dbl-64 0x2p-148 0x2p-148 : 0x6.3710864f57008p-76 0x2.930a5f307dfbap-76 : inexact-ok += csqrt tonearest dbl-64 0x2p-148 0x2p-148 : 0x6.3710864f5700cp-76 0x2.930a5f307dfbap-76 : inexact-ok += csqrt towardzero dbl-64 0x2p-148 0x2p-148 : 0x6.3710864f57008p-76 0x2.930a5f307dfbap-76 : inexact-ok += csqrt upward dbl-64 0x2p-148 0x2p-148 : 0x6.3710864f5700cp-76 0x2.930a5f307dfbcp-76 : inexact-ok += csqrt downward ldbl-96-intel 0x2p-148L 0x2p-148L : 0x6.3710864f5700afcp-76L 0x2.930a5f307dfbaaf4p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc8p-76L 0x2.930a5f307dfbaaf8p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x2p-148L 0x2p-148L : 0x6.3710864f5700afcp-76L 0x2.930a5f307dfbaaf4p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc8p-76L 0x2.930a5f307dfbaaf8p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x2p-148L 0x2p-148L : 0x6.3710864f5700afcp-76L 0x2.930a5f307dfbaaf4p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc8p-76L 0x2.930a5f307dfbaaf8p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x2p-148L 0x2p-148L : 0x6.3710864f5700afcp-76L 0x2.930a5f307dfbaaf4p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc8p-76L 0x2.930a5f307dfbaaf8p-76L : inexact-ok += csqrt downward ldbl-128 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc590e4fe72cd28p-76L 0x2.930a5f307dfbaaf697571e641a2cp-76L : inexact-ok += csqrt tonearest ldbl-128 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc590e4fe72cd28p-76L 0x2.930a5f307dfbaaf697571e641a2ep-76L : inexact-ok += csqrt towardzero ldbl-128 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc590e4fe72cd28p-76L 0x2.930a5f307dfbaaf697571e641a2cp-76L : inexact-ok += csqrt upward ldbl-128 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc590e4fe72cd2cp-76L 0x2.930a5f307dfbaaf697571e641a2ep-76L : inexact-ok += csqrt downward ldbl-128ibm 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc590e4fe72ccp-76L 0x2.930a5f307dfbaaf697571e641ap-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc590e4fe72cep-76L 0x2.930a5f307dfbaaf697571e641ap-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc590e4fe72ccp-76L 0x2.930a5f307dfbaaf697571e641ap-76L : inexact-ok += csqrt upward ldbl-128ibm 0x2p-148L 0x2p-148L : 0x6.3710864f5700afc590e4fe72cep-76L 0x2.930a5f307dfbaaf697571e641bp-76L : inexact-ok +csqrt 0 0x1p-149 += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok +csqrt 0x1p-50 0x1p-149 += csqrt downward flt-32 0x4p-52f 0x8p-152f : 0x8p-28f 0x7.fffff8p-128f : inexact-ok += csqrt tonearest flt-32 0x4p-52f 0x8p-152f : 0x8p-28f 0x8p-128f : inexact-ok += csqrt towardzero flt-32 0x4p-52f 0x8p-152f : 0x8p-28f 0x7.fffff8p-128f : inexact-ok += csqrt upward flt-32 0x4p-52f 0x8p-152f : 0x8.00001p-28f 0x8p-128f : inexact-ok += csqrt downward dbl-64 0x4p-52 0x8p-152 : 0x8p-28 0x7.ffffffffffffcp-128 : inexact-ok += csqrt tonearest dbl-64 0x4p-52 0x8p-152 : 0x8p-28 0x8p-128 : inexact-ok += csqrt towardzero dbl-64 0x4p-52 0x8p-152 : 0x8p-28 0x7.ffffffffffffcp-128 : inexact-ok += csqrt upward dbl-64 0x4p-52 0x8p-152 : 0x8.0000000000008p-28 0x8p-128 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-52L 0x8p-152L : 0x8p-28L 0x7.fffffffffffffff8p-128L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-52L 0x8p-152L : 0x8p-28L 0x8p-128L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-52L 0x8p-152L : 0x8p-28L 0x7.fffffffffffffff8p-128L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-52L 0x8p-152L : 0x8.000000000000001p-28L 0x8p-128L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-52L 0x8p-152L : 0x8p-28L 0x7.fffffffffffffff8p-128L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-52L 0x8p-152L : 0x8p-28L 0x8p-128L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-52L 0x8p-152L : 0x8p-28L 0x7.fffffffffffffff8p-128L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-52L 0x8p-152L : 0x8.000000000000001p-28L 0x8p-128L : inexact-ok += csqrt downward ldbl-128 0x4p-52L 0x8p-152L : 0x8p-28L 0x7.fffffffffffffffffffffffffffcp-128L : inexact-ok += csqrt tonearest ldbl-128 0x4p-52L 0x8p-152L : 0x8p-28L 0x8p-128L : inexact-ok += csqrt towardzero ldbl-128 0x4p-52L 0x8p-152L : 0x8p-28L 0x7.fffffffffffffffffffffffffffcp-128L : inexact-ok += csqrt upward ldbl-128 0x4p-52L 0x8p-152L : 0x8.0000000000000000000000000008p-28L 0x8p-128L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-52L 0x8p-152L : 0x8p-28L 0x7.fffffffffffffffffffffffffep-128L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-52L 0x8p-152L : 0x8p-28L 0x8p-128L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-52L 0x8p-152L : 0x8p-28L 0x7.fffffffffffffffffffffffffep-128L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-52L 0x8p-152L : 0x8.00000000000000000000000004p-28L 0x8p-128L : inexact-ok +csqrt 0x1p+127 0x1p-149 += csqrt downward flt-32 0x8p+124f 0x8p-152f : 0xb.504f3p+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt tonearest flt-32 0x8p+124f 0x8p-152f : 0xb.504f3p+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt towardzero flt-32 0x8p+124f 0x8p-152f : 0xb.504f3p+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt upward flt-32 0x8p+124f 0x8p-152f : 0xb.504f4p+60f 0x8p-152f : inexact-ok underflow errno-erange-ok += csqrt downward dbl-64 0x8p+124 0x8p-152 : 0xb.504f333f9de6p+60 0x5.a827999fcef3p-216 : inexact-ok += csqrt tonearest dbl-64 0x8p+124 0x8p-152 : 0xb.504f333f9de68p+60 0x5.a827999fcef34p-216 : inexact-ok += csqrt towardzero dbl-64 0x8p+124 0x8p-152 : 0xb.504f333f9de6p+60 0x5.a827999fcef3p-216 : inexact-ok += csqrt upward dbl-64 0x8p+124 0x8p-152 : 0xb.504f333f9de68p+60 0x5.a827999fcef34p-216 : inexact-ok += csqrt downward ldbl-96-intel 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484p+60L 0x5.a827999fcef3242p-216L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484p+60L 0x5.a827999fcef3242p-216L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484p+60L 0x5.a827999fcef3242p-216L : inexact-ok += csqrt upward ldbl-96-intel 0x8p+124L 0x8p-152L : 0xb.504f333f9de6485p+60L 0x5.a827999fcef32428p-216L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484p+60L 0x5.a827999fcef3242p-216L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484p+60L 0x5.a827999fcef3242p-216L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484p+60L 0x5.a827999fcef3242p-216L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p+124L 0x8p-152L : 0xb.504f333f9de6485p+60L 0x5.a827999fcef32428p-216L : inexact-ok += csqrt downward ldbl-128 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+60L 0x5.a827999fcef32422cbec4d9baa54p-216L : inexact-ok += csqrt tonearest ldbl-128 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+60L 0x5.a827999fcef32422cbec4d9baa54p-216L : inexact-ok += csqrt towardzero ldbl-128 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+60L 0x5.a827999fcef32422cbec4d9baa54p-216L : inexact-ok += csqrt upward ldbl-128 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484597d89b3754bp+60L 0x5.a827999fcef32422cbec4d9baa58p-216L : inexact-ok += csqrt downward ldbl-128ibm 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p+60L 0x5.a827999fcef32422cbec4d9baap-216L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p+60L 0x5.a827999fcef32422cbec4d9baap-216L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p+60L 0x5.a827999fcef32422cbec4d9baap-216L : inexact-ok += csqrt upward ldbl-128ibm 0x8p+124L 0x8p-152L : 0xb.504f333f9de6484597d89b3758p+60L 0x5.a827999fcef32422cbec4d9bacp-216L : inexact-ok +csqrt 0x1p-149 0x1p+127 += csqrt downward flt-32 0x8p-152f 0x8p+124f : 0x8p+60f 0x7.fffff8p+60f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x8p+124f : 0x8p+60f 0x8p+60f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x8p+124f : 0x8p+60f 0x7.fffff8p+60f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x8p+124f : 0x8.00001p+60f 0x8p+60f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p+124 : 0x8p+60 0x7.ffffffffffffcp+60 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p+124 : 0x8p+60 0x8p+60 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p+124 : 0x8p+60 0x7.ffffffffffffcp+60 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p+124 : 0x8.0000000000008p+60 0x8p+60 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p+124L : 0x8p+60L 0x7.fffffffffffffff8p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p+124L : 0x8p+60L 0x8p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p+124L : 0x8p+60L 0x7.fffffffffffffff8p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p+124L : 0x8.000000000000001p+60L 0x8p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p+124L : 0x8p+60L 0x7.fffffffffffffff8p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p+124L : 0x8p+60L 0x8p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p+124L : 0x8p+60L 0x7.fffffffffffffff8p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p+124L : 0x8.000000000000001p+60L 0x8p+60L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p+124L : 0x8p+60L 0x7.fffffffffffffffffffffffffffcp+60L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p+124L : 0x8p+60L 0x8p+60L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p+124L : 0x8p+60L 0x7.fffffffffffffffffffffffffffcp+60L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p+124L : 0x8.0000000000000000000000000008p+60L 0x8p+60L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p+124L : 0x8p+60L 0x7.fffffffffffffffffffffffffep+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p+124L : 0x8p+60L 0x8p+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p+124L : 0x8p+60L 0x7.fffffffffffffffffffffffffep+60L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p+124L : 0x8.00000000000000000000000004p+60L 0x8p+60L : inexact-ok +csqrt 0x1.000002p-126 0x1.000002p-126 += csqrt downward flt-32 0x4.000008p-128f 0x4.000008p-128f : 0x2.3286b8p-64f 0xe.9018ap-68f : inexact-ok += csqrt tonearest flt-32 0x4.000008p-128f 0x4.000008p-128f : 0x2.3286bcp-64f 0xe.9018bp-68f : inexact-ok += csqrt towardzero flt-32 0x4.000008p-128f 0x4.000008p-128f : 0x2.3286b8p-64f 0xe.9018ap-68f : inexact-ok += csqrt upward flt-32 0x4.000008p-128f 0x4.000008p-128f : 0x2.3286bcp-64f 0xe.9018bp-68f : inexact-ok += csqrt downward dbl-64 0x4.000008p-128 0x4.000008p-128 : 0x2.3286bb927bf74p-64 0xe.9018ab0b7ca9p-68 : inexact-ok += csqrt tonearest dbl-64 0x4.000008p-128 0x4.000008p-128 : 0x2.3286bb927bf76p-64 0xe.9018ab0b7ca98p-68 : inexact-ok += csqrt towardzero dbl-64 0x4.000008p-128 0x4.000008p-128 : 0x2.3286bb927bf74p-64 0xe.9018ab0b7ca9p-68 : inexact-ok += csqrt upward dbl-64 0x4.000008p-128 0x4.000008p-128 : 0x2.3286bb927bf76p-64 0xe.9018ab0b7ca98p-68 : inexact-ok += csqrt downward ldbl-96-intel 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d6p-64L 0xe.9018ab0b7ca9469p-68L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d6p-64L 0xe.9018ab0b7ca9469p-68L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d6p-64L 0xe.9018ab0b7ca9469p-68L : inexact-ok += csqrt upward ldbl-96-intel 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d64p-64L 0xe.9018ab0b7ca946ap-68L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d6p-64L 0xe.9018ab0b7ca9469p-68L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d6p-64L 0xe.9018ab0b7ca9469p-68L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d6p-64L 0xe.9018ab0b7ca9469p-68L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d64p-64L 0xe.9018ab0b7ca946ap-68L : inexact-ok += csqrt downward ldbl-128 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d60ed8efefb8decp-64L 0xe.9018ab0b7ca94693b355165c1d7p-68L : inexact-ok += csqrt tonearest ldbl-128 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d60ed8efefb8decp-64L 0xe.9018ab0b7ca94693b355165c1d78p-68L : inexact-ok += csqrt towardzero ldbl-128 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d60ed8efefb8decp-64L 0xe.9018ab0b7ca94693b355165c1d7p-68L : inexact-ok += csqrt upward ldbl-128 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d60ed8efefb8deep-64L 0xe.9018ab0b7ca94693b355165c1d78p-68L : inexact-ok += csqrt downward ldbl-128ibm 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d60ed8efefb8dp-64L 0xe.9018ab0b7ca94693b355165c1cp-68L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d60ed8efefb8ep-64L 0xe.9018ab0b7ca94693b355165c1cp-68L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d60ed8efefb8dp-64L 0xe.9018ab0b7ca94693b355165c1cp-68L : inexact-ok += csqrt upward ldbl-128ibm 0x4.000008p-128L 0x4.000008p-128L : 0x2.3286bb927bf75d60ed8efefb8ep-64L 0xe.9018ab0b7ca94693b355165c2p-68L : inexact-ok +csqrt -0x1.000002p-126 -0x1.000002p-126 += csqrt downward flt-32 -0x4.000008p-128f -0x4.000008p-128f : 0xe.9018ap-68f -0x2.3286bcp-64f : inexact-ok += csqrt tonearest flt-32 -0x4.000008p-128f -0x4.000008p-128f : 0xe.9018bp-68f -0x2.3286bcp-64f : inexact-ok += csqrt towardzero flt-32 -0x4.000008p-128f -0x4.000008p-128f : 0xe.9018ap-68f -0x2.3286b8p-64f : inexact-ok += csqrt upward flt-32 -0x4.000008p-128f -0x4.000008p-128f : 0xe.9018bp-68f -0x2.3286b8p-64f : inexact-ok += csqrt downward dbl-64 -0x4.000008p-128 -0x4.000008p-128 : 0xe.9018ab0b7ca9p-68 -0x2.3286bb927bf76p-64 : inexact-ok += csqrt tonearest dbl-64 -0x4.000008p-128 -0x4.000008p-128 : 0xe.9018ab0b7ca98p-68 -0x2.3286bb927bf76p-64 : inexact-ok += csqrt towardzero dbl-64 -0x4.000008p-128 -0x4.000008p-128 : 0xe.9018ab0b7ca9p-68 -0x2.3286bb927bf74p-64 : inexact-ok += csqrt upward dbl-64 -0x4.000008p-128 -0x4.000008p-128 : 0xe.9018ab0b7ca98p-68 -0x2.3286bb927bf74p-64 : inexact-ok += csqrt downward ldbl-96-intel -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca9469p-68L -0x2.3286bb927bf75d64p-64L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca9469p-68L -0x2.3286bb927bf75d6p-64L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca9469p-68L -0x2.3286bb927bf75d6p-64L : inexact-ok += csqrt upward ldbl-96-intel -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca946ap-68L -0x2.3286bb927bf75d6p-64L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca9469p-68L -0x2.3286bb927bf75d64p-64L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca9469p-68L -0x2.3286bb927bf75d6p-64L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca9469p-68L -0x2.3286bb927bf75d6p-64L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca946ap-68L -0x2.3286bb927bf75d6p-64L : inexact-ok += csqrt downward ldbl-128 -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca94693b355165c1d7p-68L -0x2.3286bb927bf75d60ed8efefb8decp-64L : inexact-ok += csqrt tonearest ldbl-128 -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca94693b355165c1d78p-68L -0x2.3286bb927bf75d60ed8efefb8decp-64L : inexact-ok += csqrt towardzero ldbl-128 -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca94693b355165c1d7p-68L -0x2.3286bb927bf75d60ed8efefb8deap-64L : inexact-ok += csqrt upward ldbl-128 -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca94693b355165c1d78p-68L -0x2.3286bb927bf75d60ed8efefb8deap-64L : inexact-ok += csqrt downward ldbl-128ibm -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca94693b355165c1cp-68L -0x2.3286bb927bf75d60ed8efefb8ep-64L : inexact-ok += csqrt tonearest ldbl-128ibm -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca94693b355165c1cp-68L -0x2.3286bb927bf75d60ed8efefb8ep-64L : inexact-ok += csqrt towardzero ldbl-128ibm -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca94693b355165c1cp-68L -0x2.3286bb927bf75d60ed8efefb8dp-64L : inexact-ok += csqrt upward ldbl-128ibm -0x4.000008p-128L -0x4.000008p-128L : 0xe.9018ab0b7ca94693b355165c2p-68L -0x2.3286bb927bf75d60ed8efefb8dp-64L : inexact-ok +csqrt 0x1.fffffffffffffp+1023 0x1.fffffffffffffp+1023 += csqrt downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435ep+64f 0x7.480c5p+60f : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f12p+64 0x7.480c4a99abe24p+60 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201c8p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201c8p+60L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c1p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c2p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c1p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c2p+64L 0x7.480c4a99abe201c363daba1d6a3cp+60L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e918p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e92p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e918p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e92p+64L 0x7.480c4a99abe201c363daba1d6cp+60L : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de68p+508 0xb.504f333f9de68p+508 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x1p+512 0x7.fffff80000004p-388 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x7.fffff80000001fffffe0000000bcp-388L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x7.fffff80000001fffffe0000000cp-388L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x7.fffff80000001fffffe0000000bcp-388L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x7.fffff80000001fffffe0000000cp-388L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000001fffffe0000002p-388L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f8p+512 0x7.480c4e3db209cp+508 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f8p+512 0x7.480c4e3db20ap+508 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f8p+512 0x7.480c4e3db209cp+508 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f9p+512 0x7.480c4e3db20ap+508 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f4p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f4p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb4p+512L 0x7.480c4e3db209ec7dc1e2c9553d94p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb5p+512L 0x7.480c4e3db209ec7dc1e2c9553d98p+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb4p+512L 0x7.480c4e3db209ec7dc1e2c9553d94p+508L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb5p+512L 0x7.480c4e3db209ec7dc1e2c9553d98p+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05e8p+512L 0x7.480c4e3db209ec7dc1e2c9553cp+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05e8p+512L 0x7.480c4e3db209ec7dc1e2c9553ep+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05e8p+512L 0x7.480c4e3db209ec7dc1e2c9553cp+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05fp+512L 0x7.480c4e3db209ec7dc1e2c9553ep+508L : inexact-ok +csqrt 0x1.fffffffffffffp+1023 0x1p+1023 += csqrt downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435ep+64f 0x7.480c5p+60f : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f12p+64 0x7.480c4a99abe24p+60 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201c8p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201c8p+60L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c1p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c2p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c1p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c2p+64L 0x7.480c4a99abe201c363daba1d6a3cp+60L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e918p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e92p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e918p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e92p+64L 0x7.480c4a99abe201c363daba1d6cp+60L : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0x8p+1020 : 0x8p+508 0x7.ffffffffffffcp+508 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0x8p+1020 : 0x8p+508 0x8p+508 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0x8p+1020 : 0x8p+508 0x7.ffffffffffffcp+508 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0x8p+1020 : 0x8.0000000000008p+508 0x8p+508 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x8p+1020L : 0x8.000000000000001p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x8p+1020L : 0x8.000000000000001p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffffcp+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffffcp+508L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x8p+1020L : 0x8.0000000000000000000000000008p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffep+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffep+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0x8p+1020L : 0x8.00000000000000000000000004p+508L 0x8p+508L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x1p+512 0x7.fffff80000004p-388 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x7.fffff80000001fffffe0000000bcp-388L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x7.fffff80000001fffffe0000000cp-388L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x7.fffff80000001fffffe0000000bcp-388L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x7.fffff80000001fffffe0000000cp-388L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000001fffffe0000002p-388L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0x8p+1020 : 0x1.077225f1da571p+512 0x3.e30ee78adee42p+508 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0x8p+1020 : 0x1.077225f1da571p+512 0x3.e30ee78adee44p+508 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0x8p+1020 : 0x1.077225f1da571p+512 0x3.e30ee78adee42p+508 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0x8p+1020 : 0x1.077225f1da572p+512 0x3.e30ee78adee44p+508 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fcp+512L 0x3.e30ee78adee43c44p+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fep+512L 0x3.e30ee78adee43c48p+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fcp+512L 0x3.e30ee78adee43c44p+508L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fep+512L 0x3.e30ee78adee43c48p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fcp+512L 0x3.e30ee78adee43c44p+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fep+512L 0x3.e30ee78adee43c48p+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fcp+512L 0x3.e30ee78adee43c44p+508L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fep+512L 0x3.e30ee78adee43c48p+508L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fdea7d77c6afd9p+512L 0x3.e30ee78adee43c462def644d249ep+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fdea7d77c6afd9p+512L 0x3.e30ee78adee43c462def644d249ep+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fdea7d77c6afd9p+512L 0x3.e30ee78adee43c462def644d249ep+508L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fdea7d77c6afdap+512L 0x3.e30ee78adee43c462def644d24ap+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fdea7d77c6af8p+512L 0x3.e30ee78adee43c462def644d24p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fdea7d77c6bp+512L 0x3.e30ee78adee43c462def644d25p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fdea7d77c6af8p+512L 0x3.e30ee78adee43c462def644d24p+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p+1020L : 0x1.077225f1da5717fdea7d77c6bp+512L 0x3.e30ee78adee43c462def644d25p+508L : inexact-ok +csqrt 0x1p-1074 0x1p-1074 += csqrt downward flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efdep-76 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396696p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320d8p-76L : inexact-ok += csqrt downward flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x0p+0f : 0x2.d413dp-76f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd6p-76L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6484597d89b3754bp-1004L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd6p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L 0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x8p-152 : 0x2.0000000000002p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2.00000000000000000000000001p-76L 0x2p-76L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed905p-540 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed9052p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fep-540L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok +csqrt 0x1p-1073 0x1p-1073 += csqrt downward flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efdep-76 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396696p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320d8p-76L : inexact-ok += csqrt downward flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x0p+0f : 0x2.d413dp-76f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd6p-76L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p-1076 : 0x2.d413cccfe7798p-76 0x1.6a09e667f3bccp-1000 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p-1076 : 0x2.d413cccfe779ap-76 0x1.6a09e667f3bcdp-1000 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p-1076 : 0x2.d413cccfe7798p-76 0x1.6a09e667f3bccp-1000 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p-1076 : 0x2.d413cccfe779ap-76 0x1.6a09e667f3bcdp-1000 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-1000L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-1000L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-1000L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-1076L : 0x2.d413cccfe7799214p-76L 0x1.6a09e667f3bcc90ap-1000L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-1000L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-1000L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-1000L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-1076L : 0x2.d413cccfe7799214p-76L 0x1.6a09e667f3bcc90ap-1000L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-1000L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-1000L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-1000L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x1.6a09e667f3bcc908b2fb1366ea96p-1000L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0x1.6a09e667f3bcc908b2cp-1000L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0x1.6a09e667f3bcc908b3p-1000L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0x1.6a09e667f3bcc908b2cp-1000L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p-1076L : 0x2.d413cccfe779921165f626cdd6p-76L 0x1.6a09e667f3bcc908b3p-1000L : inexact-ok underflow errno-erange-ok += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-1076 : 0x8p-540 0x8p-540 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-1076 : 0x8p-540 0x8p-540 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-1076 : 0x8p-540 0x8p-540 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-1076 : 0x8p-540 0x8p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-1076L : 0x8p-540L 0x8p-540L : inexact-ok += csqrt downward dbl-64 0x8p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt tonearest dbl-64 0x8p-1076 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x8p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 0x8p-1076 0x8p-152 : 0x2.0000000000002p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x8p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x8p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x8p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x8p-1076L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-1076L 0x8p-152L : 0x2.00000000000000000000000001p-76L 0x2p-76L : inexact-ok += csqrt downward dbl-64 0x8p-1076 0x0p+0 : 0xb.504f333f9de6p-540 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x8p-1076 0x0p+0 : 0xb.504f333f9de68p-540 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x8p-1076 0x0p+0 : 0xb.504f333f9de6p-540 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x8p-1076 0x0p+0 : 0xb.504f333f9de68p-540 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6485p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6485p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484597d89b3754bp-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484597d89b3754p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484597d89b3754p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484597d89b3754p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-1076L 0x0p+0L : 0xb.504f333f9de6484597d89b3758p-540L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x8p-1076 0x8p-1076 : 0xc.6e210c9eae01p-540 0x5.2614be60fbf74p-540 : inexact-ok += csqrt tonearest dbl-64 0x8p-1076 0x8p-1076 : 0xc.6e210c9eae018p-540 0x5.2614be60fbf74p-540 : inexact-ok += csqrt towardzero dbl-64 0x8p-1076 0x8p-1076 : 0xc.6e210c9eae01p-540 0x5.2614be60fbf74p-540 : inexact-ok += csqrt upward dbl-64 0x8p-1076 0x8p-1076 : 0xc.6e210c9eae018p-540 0x5.2614be60fbf78p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8p-540L 0x5.2614be60fbf755e8p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f9p-540L 0x5.2614be60fbf755fp-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8p-540L 0x5.2614be60fbf755e8p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f9p-540L 0x5.2614be60fbf755fp-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8p-540L 0x5.2614be60fbf755e8p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f9p-540L 0x5.2614be60fbf755fp-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8p-540L 0x5.2614be60fbf755e8p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f9p-540L 0x5.2614be60fbf755fp-540L : inexact-ok += csqrt downward ldbl-128 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8b21c9fce59a5p-540L 0x5.2614be60fbf755ed2eae3cc83458p-540L : inexact-ok += csqrt tonearest ldbl-128 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8b21c9fce59a5p-540L 0x5.2614be60fbf755ed2eae3cc8345cp-540L : inexact-ok += csqrt towardzero ldbl-128 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8b21c9fce59a5p-540L 0x5.2614be60fbf755ed2eae3cc83458p-540L : inexact-ok += csqrt upward ldbl-128 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8b21c9fce59a58p-540L 0x5.2614be60fbf755ed2eae3cc8345cp-540L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8b21c9fce598p-540L 0x5.2614be60fbf755ed2eae3cc834p-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8b21c9fce59cp-540L 0x5.2614be60fbf755ed2eae3cc834p-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8b21c9fce598p-540L 0x5.2614be60fbf755ed2eae3cc834p-540L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-1076L 0x8p-1076L : 0xc.6e210c9eae015f8b21c9fce59cp-540L 0x5.2614be60fbf755ed2eae3cc836p-540L : inexact-ok +csqrt 0 0x1p-1074 += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L 0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok +csqrt 0x1p-500 0x1p-1074 += csqrt downward flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efdep-76 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396696p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320d8p-76L : inexact-ok += csqrt downward flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x0p+0f : 0x2.d413dp-76f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd6p-76L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6484597d89b3754bp-1004L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd6p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L 0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok += csqrt downward dbl-64 0x1p-500 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt tonearest dbl-64 0x1p-500 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x1p-500 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 0x1p-500 0x8p-152 : 0x2.0000000000002p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x1p-500L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-500L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-500L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-500L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-500L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-500L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-500L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-500L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x1p-500L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x1p-500L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x1p-500L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x1p-500L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x1p-500L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x1p-500L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x1p-500L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x1p-500L 0x8p-152L : 0x2.00000000000000000000000001p-76L 0x2p-76L : inexact-ok += csqrt downward dbl-64 0x1p-500 0x0p+0 : 0x4p-252 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x1p-500 0x0p+0 : 0x4p-252 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x1p-500 0x0p+0 : 0x4p-252 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x1p-500 0x0p+0 : 0x4p-252 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x1p-500L 0x0p+0L : 0x4p-252L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x1p-500 0x4p-1076 : 0x4p-252 0x7.ffffffffffffcp-828 : inexact-ok += csqrt tonearest dbl-64 0x1p-500 0x4p-1076 : 0x4p-252 0x8p-828 : inexact-ok += csqrt towardzero dbl-64 0x1p-500 0x4p-1076 : 0x4p-252 0x7.ffffffffffffcp-828 : inexact-ok += csqrt upward dbl-64 0x1p-500 0x4p-1076 : 0x4.0000000000004p-252 0x8p-828 : inexact-ok += csqrt downward ldbl-96-intel 0x1p-500L 0x4p-1076L : 0x4p-252L 0x7.fffffffffffffff8p-828L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-500L 0x4p-1076L : 0x4p-252L 0x8p-828L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-500L 0x4p-1076L : 0x4p-252L 0x7.fffffffffffffff8p-828L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-500L 0x4p-1076L : 0x4.0000000000000008p-252L 0x8p-828L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-500L 0x4p-1076L : 0x4p-252L 0x7.fffffffffffffff8p-828L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-500L 0x4p-1076L : 0x4p-252L 0x8p-828L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-500L 0x4p-1076L : 0x4p-252L 0x7.fffffffffffffff8p-828L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-500L 0x4p-1076L : 0x4.0000000000000008p-252L 0x8p-828L : inexact-ok += csqrt downward ldbl-128 0x1p-500L 0x4p-1076L : 0x4p-252L 0x7.fffffffffffffffffffffffffffcp-828L : inexact-ok += csqrt tonearest ldbl-128 0x1p-500L 0x4p-1076L : 0x4p-252L 0x8p-828L : inexact-ok += csqrt towardzero ldbl-128 0x1p-500L 0x4p-1076L : 0x4p-252L 0x7.fffffffffffffffffffffffffffcp-828L : inexact-ok += csqrt upward ldbl-128 0x1p-500L 0x4p-1076L : 0x4.0000000000000000000000000004p-252L 0x8p-828L : inexact-ok += csqrt downward ldbl-128ibm 0x1p-500L 0x4p-1076L : 0x4p-252L 0x7.fffffffffffffffffffffffffep-828L : inexact-ok += csqrt tonearest ldbl-128ibm 0x1p-500L 0x4p-1076L : 0x4p-252L 0x8p-828L : inexact-ok += csqrt towardzero ldbl-128ibm 0x1p-500L 0x4p-1076L : 0x4p-252L 0x7.fffffffffffffffffffffffffep-828L : inexact-ok += csqrt upward ldbl-128ibm 0x1p-500L 0x4p-1076L : 0x4.00000000000000000000000002p-252L 0x8p-828L : inexact-ok +csqrt 0x1p+1023 0x1p-1074 += csqrt downward flt-32 0xf.fffffp+124f 0x8p-152f : 0xf.fffffp+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0x8p-152f : 0xf.fffffp+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0x8p-152f : 0xf.fffffp+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt upward flt-32 0xf.fffffp+124f 0x8p-152f : 0x1p+64f 0x8p-152f : inexact-ok underflow errno-erange-ok += csqrt downward dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffd8p+60 0x4.0000020000018p-216 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffep+60 0x4.0000020000018p-216 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffd8p+60 0x4.0000020000018p-216 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffep+60 0x4.000002000001cp-216 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018p-216L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018008p-216L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018p-216L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018008p-216L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.0000020000018000014000011804p-216L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.0000020000018000014000011ap-216L : inexact-ok += csqrt downward flt-32 0xf.fffffp+124f 0x0p+0f : 0xf.fffffp+60f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0x0p+0f : 0xf.fffffp+60f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0x0p+0f : 0xf.fffffp+60f 0x0p+0f : inexact-ok += csqrt upward flt-32 0xf.fffffp+124f 0x0p+0f : 0x1p+64f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffep+60 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffep+60 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffep+60 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt upward dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffep+60 0x4p-1076 : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000c004p-1140L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000c004p-1140L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x2.000001000000c00000a000008cp-1140L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x2.000001000000c00000a000008cp-1140L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x2.000001000000c00000a000008cp-1140L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x2.000001000000c00000a000008c02p-1140L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4p-1076L : inexact-ok underflow errno-erange-ok += csqrt downward dbl-64 0x8p+1020 0x8p-152 : 0xb.504f333f9de6p+508 0x5.a827999fcef3p-664 : inexact-ok += csqrt tonearest dbl-64 0x8p+1020 0x8p-152 : 0xb.504f333f9de68p+508 0x5.a827999fcef34p-664 : inexact-ok += csqrt towardzero dbl-64 0x8p+1020 0x8p-152 : 0xb.504f333f9de6p+508 0x5.a827999fcef3p-664 : inexact-ok += csqrt upward dbl-64 0x8p+1020 0x8p-152 : 0xb.504f333f9de68p+508 0x5.a827999fcef34p-664 : inexact-ok += csqrt downward ldbl-96-intel 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484p+508L 0x5.a827999fcef3242p-664L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484p+508L 0x5.a827999fcef3242p-664L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484p+508L 0x5.a827999fcef3242p-664L : inexact-ok += csqrt upward ldbl-96-intel 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6485p+508L 0x5.a827999fcef32428p-664L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484p+508L 0x5.a827999fcef3242p-664L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484p+508L 0x5.a827999fcef3242p-664L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484p+508L 0x5.a827999fcef3242p-664L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6485p+508L 0x5.a827999fcef32428p-664L : inexact-ok += csqrt downward ldbl-128 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+508L 0x5.a827999fcef32422cbec4d9baa54p-664L : inexact-ok += csqrt tonearest ldbl-128 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+508L 0x5.a827999fcef32422cbec4d9baa54p-664L : inexact-ok += csqrt towardzero ldbl-128 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+508L 0x5.a827999fcef32422cbec4d9baa54p-664L : inexact-ok += csqrt upward ldbl-128 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484597d89b3754bp+508L 0x5.a827999fcef32422cbec4d9baa58p-664L : inexact-ok += csqrt downward ldbl-128ibm 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p+508L 0x5.a827999fcef32422cbec4d9baap-664L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p+508L 0x5.a827999fcef32422cbec4d9baap-664L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484597d89b3754p+508L 0x5.a827999fcef32422cbec4d9baap-664L : inexact-ok += csqrt upward ldbl-128ibm 0x8p+1020L 0x8p-152L : 0xb.504f333f9de6484597d89b3758p+508L 0x5.a827999fcef32422cbec4d9bacp-664L : inexact-ok += csqrt downward dbl-64 0x8p+1020 0x0p+0 : 0xb.504f333f9de6p+508 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x8p+1020 0x0p+0 : 0xb.504f333f9de68p+508 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x8p+1020 0x0p+0 : 0xb.504f333f9de6p+508 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x8p+1020 0x0p+0 : 0xb.504f333f9de68p+508 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484p+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484p+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484p+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6485p+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484p+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484p+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484p+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6485p+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484597d89b3754bp+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484597d89b3754p+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484597d89b3754p+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484597d89b3754p+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x8p+1020L 0x0p+0L : 0xb.504f333f9de6484597d89b3758p+508L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x8p+1020 0x4p-1076 : 0xb.504f333f9de6p+508 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt tonearest dbl-64 0x8p+1020 0x4p-1076 : 0xb.504f333f9de68p+508 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt towardzero dbl-64 0x8p+1020 0x4p-1076 : 0xb.504f333f9de6p+508 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt upward dbl-64 0x8p+1020 0x4p-1076 : 0xb.504f333f9de68p+508 0x4p-1076 : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484p+508L 0x2.d413cccfe779921p-1588L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484p+508L 0x2.d413cccfe779921p-1588L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484p+508L 0x2.d413cccfe779921p-1588L : inexact-ok += csqrt upward ldbl-96-intel 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6485p+508L 0x2.d413cccfe7799214p-1588L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484p+508L 0x2.d413cccfe779921p-1588L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484p+508L 0x2.d413cccfe779921p-1588L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484p+508L 0x2.d413cccfe779921p-1588L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6485p+508L 0x2.d413cccfe7799214p-1588L : inexact-ok += csqrt downward ldbl-128 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p+508L 0x2.d413cccfe779921165f626cdd52ap-1588L : inexact-ok += csqrt tonearest ldbl-128 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p+508L 0x2.d413cccfe779921165f626cdd52ap-1588L : inexact-ok += csqrt towardzero ldbl-128 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p+508L 0x2.d413cccfe779921165f626cdd52ap-1588L : inexact-ok += csqrt upward ldbl-128 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754bp+508L 0x2.d413cccfe779921165f626cdd52cp-1588L : inexact-ok += csqrt downward ldbl-128ibm 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0x8p+1020L 0x4p-1076L : 0xb.504f333f9de6484597d89b3758p+508L 0x4p-1076L : inexact-ok underflow errno-erange-ok +csqrt 0x1p-1074 0x1p+1023 += csqrt downward flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt upward flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt downward dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt upward dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764b8p+60 0xb.504f2d97764b8p+60 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p+1020 : 0x8p+508 0x7.ffffffffffffcp+508 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p+1020 : 0x8p+508 0x8p+508 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p+1020 : 0x8p+508 0x7.ffffffffffffcp+508 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p+1020 : 0x8.0000000000008p+508 0x8p+508 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p+1020L : 0x8.000000000000001p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p+1020L : 0x8.000000000000001p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffffcp+508L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffffcp+508L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p+1020L : 0x8.0000000000000000000000000008p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffep+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffep+508L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p+1020L : 0x8.00000000000000000000000004p+508L 0x8p+508L : inexact-ok += csqrt downward flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt upward flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt downward dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt upward dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764b8p+60 0xb.504f2d97764b8p+60 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p+1020 : 0x8p+508 0x8p+508 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p+1020 : 0x8p+508 0x8p+508 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p+1020 : 0x8p+508 0x8p+508 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p+1020 : 0x8p+508 0x8p+508 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764b8p+60 0xb.504f2d97764b8p+60 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x8p+1020 : 0x8p+508 0x7.ffffffffffffcp+508 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x8p+1020 : 0x8p+508 0x8p+508 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x8p+1020 : 0x8p+508 0x7.ffffffffffffcp+508 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x8p+1020 : 0x8.0000000000008p+508 0x8p+508 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p+1020L : 0x8.000000000000001p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffff8p+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p+1020L : 0x8.000000000000001p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffffcp+508L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffffcp+508L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p+1020L : 0x8.0000000000000000000000000008p+508L 0x8p+508L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffep+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x8p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x8p+1020L : 0x8p+508L 0x7.fffffffffffffffffffffffffep+508L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x8p+1020L : 0x8.00000000000000000000000004p+508L 0x8p+508L : inexact-ok +csqrt 0x1.0000000000001p-1022 0x1.0000000000001p-1022 += csqrt downward flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efdep-76 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396696p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320d8p-76L : inexact-ok += csqrt downward flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x0p+0f : 0x2.d413dp-76f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd6p-76L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x8p-152 0x4.0000000000004p-1024 : 0x2.d413cccfe7798p-76 0xb.504f333f9de68p-952 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x4.0000000000004p-1024 : 0x2.d413cccfe779ap-76 0xb.504f333f9de7p-952 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x4.0000000000004p-1024 : 0x2.d413cccfe7798p-76 0xb.504f333f9de68p-952 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x4.0000000000004p-1024 : 0x2.d413cccfe779ap-76 0xb.504f333f9de7p-952 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6fd4p-952L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6fd5p-952L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6fd4p-952L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6fd5p-952L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6fd4p-952L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6fd5p-952L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6fd4p-952L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6fd5p-952L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6fd4a8b0c9515b93p-952L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6fd4a8b0c9515b93p-952L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6fd4a8b0c9515b93p-952L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6fd4a8b0c9515b938p-952L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6fd4a8b0c9515b8p-952L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6fd4a8b0c9515b8p-952L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6fd4a8b0c9515b8p-952L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x4.0000000000004p-1024L : 0x2.d413cccfe779921165f626cdd6p-76L 0xb.504f333f9de6fd4a8b0c9515bcp-952L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x4.0000000000004p-1024 : 0x1.6a09e667f3bcdp-512 0x1.6a09e667f3bcdp-512 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x4.0000000000004p-1024 : 0x1.6a09e667f3bcdp-512 0x1.6a09e667f3bcdp-512 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x4.0000000000004p-1024 : 0x1.6a09e667f3bcdp-512 0x1.6a09e667f3bcdp-512 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x4.0000000000004p-1024 : 0x1.6a09e667f3bcep-512 0x1.6a09e667f3bcep-512 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd458p-512L 0x1.6a09e667f3bcd458p-512L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd45ap-512L 0x1.6a09e667f3bcd45ap-512L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd458p-512L 0x1.6a09e667f3bcd458p-512L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd45ap-512L 0x1.6a09e667f3bcd45ap-512L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd458p-512L 0x1.6a09e667f3bcd458p-512L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd45ap-512L 0x1.6a09e667f3bcd45ap-512L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd458p-512L 0x1.6a09e667f3bcd458p-512L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd45ap-512L 0x1.6a09e667f3bcd45ap-512L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d0bp-512L 0x1.6a09e667f3bcd459022e5304d0bp-512L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d0b1p-512L 0x1.6a09e667f3bcd459022e5304d0b1p-512L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d0bp-512L 0x1.6a09e667f3bcd459022e5304d0bp-512L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d0b1p-512L 0x1.6a09e667f3bcd459022e5304d0b1p-512L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d08p-512L 0x1.6a09e667f3bcd459022e5304d08p-512L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d08p-512L 0x1.6a09e667f3bcd459022e5304d08p-512L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d08p-512L 0x1.6a09e667f3bcd459022e5304d08p-512L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d1p-512L 0x1.6a09e667f3bcd459022e5304d1p-512L : inexact-ok += csqrt downward dbl-64 0x4.0000000000004p-1024 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt tonearest dbl-64 0x4.0000000000004p-1024 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x4.0000000000004p-1024 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 0x4.0000000000004p-1024 0x8p-152 : 0x2.0000000000002p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000004p-1024L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000004p-1024L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000004p-1024L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4.0000000000004p-1024L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x4.0000000000004p-1024L 0x8p-152L : 0x2.00000000000000000000000001p-76L 0x2p-76L : inexact-ok += csqrt downward dbl-64 0x4.0000000000004p-1024 0x0p+0 : 0x2p-512 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x4.0000000000004p-1024 0x0p+0 : 0x2p-512 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x4.0000000000004p-1024 0x0p+0 : 0x2p-512 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x4.0000000000004p-1024 0x0p+0 : 0x2.0000000000002p-512 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000000ffcp-512L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000001p-512L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000000ffcp-512L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000001p-512L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000000ffcp-512L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000001p-512L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000000ffcp-512L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000001p-512L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000000fffffffffffffcp-512L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000000fffffffffffffcp-512L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000000fffffffffffffcp-512L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000000fffffffffffffc2p-512L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000000fffffffffffffp-512L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000001p-512L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000000fffffffffffffp-512L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x4.0000000000004p-1024L 0x0p+0L : 0x2.0000000000001p-512L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x4.0000000000004p-1024 0x4.0000000000004p-1024 : 0x2.3286b95ff53f2p-512 0xe.90189c7b64148p-516 : inexact-ok += csqrt tonearest dbl-64 0x4.0000000000004p-1024 0x4.0000000000004p-1024 : 0x2.3286b95ff53f2p-512 0xe.90189c7b64148p-516 : inexact-ok += csqrt towardzero dbl-64 0x4.0000000000004p-1024 0x4.0000000000004p-1024 : 0x2.3286b95ff53f2p-512 0xe.90189c7b64148p-516 : inexact-ok += csqrt upward dbl-64 0x4.0000000000004p-1024 0x4.0000000000004p-1024 : 0x2.3286b95ff53f4p-512 0xe.90189c7b6415p-516 : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f284p-512L 0xe.90189c7b641487bp-516L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f2844p-512L 0xe.90189c7b641487cp-516L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f284p-512L 0xe.90189c7b641487bp-516L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f2844p-512L 0xe.90189c7b641487cp-516L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f284p-512L 0xe.90189c7b641487bp-516L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f2844p-512L 0xe.90189c7b641487cp-516L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f284p-512L 0xe.90189c7b641487bp-516L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f2844p-512L 0xe.90189c7b641487cp-516L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f28433fda06dfb244p-512L 0xe.90189c7b641487bcab1b5b5b6abp-516L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f28433fda06dfb246p-512L 0xe.90189c7b641487bcab1b5b5b6ab8p-516L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f28433fda06dfb244p-512L 0xe.90189c7b641487bcab1b5b5b6abp-516L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f28433fda06dfb246p-512L 0xe.90189c7b641487bcab1b5b5b6ab8p-516L : inexact-ok += csqrt downward ldbl-128ibm 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f28433fda06dfb2p-512L 0xe.90189c7b641487bcab1b5b5b68p-516L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f28433fda06dfb2p-512L 0xe.90189c7b641487bcab1b5b5b6cp-516L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f28433fda06dfb2p-512L 0xe.90189c7b641487bcab1b5b5b68p-516L : inexact-ok += csqrt upward ldbl-128ibm 0x4.0000000000004p-1024L 0x4.0000000000004p-1024L : 0x2.3286b95ff53f28433fda06dfb3p-512L 0xe.90189c7b641487bcab1b5b5b6cp-516L : inexact-ok +csqrt -0x1.0000000000001p-1022 -0x1.0000000000001p-1022 += csqrt downward flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt tonearest flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt towardzero flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt upward flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt downward dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt tonearest dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt towardzero dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt upward dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt tonearest flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt towardzero flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt upward flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt downward dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt tonearest dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt towardzero dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt upward dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward dbl-64 -0x0p+0 -0x4.0000000000004p-1024 : 0x1.6a09e667f3bcdp-512 -0x1.6a09e667f3bcep-512 : inexact-ok += csqrt tonearest dbl-64 -0x0p+0 -0x4.0000000000004p-1024 : 0x1.6a09e667f3bcdp-512 -0x1.6a09e667f3bcdp-512 : inexact-ok += csqrt towardzero dbl-64 -0x0p+0 -0x4.0000000000004p-1024 : 0x1.6a09e667f3bcdp-512 -0x1.6a09e667f3bcdp-512 : inexact-ok += csqrt upward dbl-64 -0x0p+0 -0x4.0000000000004p-1024 : 0x1.6a09e667f3bcep-512 -0x1.6a09e667f3bcdp-512 : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd458p-512L -0x1.6a09e667f3bcd45ap-512L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd45ap-512L -0x1.6a09e667f3bcd45ap-512L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd458p-512L -0x1.6a09e667f3bcd458p-512L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd45ap-512L -0x1.6a09e667f3bcd458p-512L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd458p-512L -0x1.6a09e667f3bcd45ap-512L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd45ap-512L -0x1.6a09e667f3bcd45ap-512L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd458p-512L -0x1.6a09e667f3bcd458p-512L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd45ap-512L -0x1.6a09e667f3bcd458p-512L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d0bp-512L -0x1.6a09e667f3bcd459022e5304d0b1p-512L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d0b1p-512L -0x1.6a09e667f3bcd459022e5304d0bp-512L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d0bp-512L -0x1.6a09e667f3bcd459022e5304d0bp-512L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d0b1p-512L -0x1.6a09e667f3bcd459022e5304d0bp-512L : inexact-ok += csqrt downward ldbl-128ibm -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d08p-512L -0x1.6a09e667f3bcd459022e5304d1p-512L : inexact-ok += csqrt tonearest ldbl-128ibm -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d08p-512L -0x1.6a09e667f3bcd459022e5304d08p-512L : inexact-ok += csqrt towardzero ldbl-128ibm -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d08p-512L -0x1.6a09e667f3bcd459022e5304d08p-512L : inexact-ok += csqrt upward ldbl-128ibm -0x0p+0L -0x4.0000000000004p-1024L : 0x1.6a09e667f3bcd459022e5304d1p-512L -0x1.6a09e667f3bcd459022e5304d08p-512L : inexact-ok += csqrt downward flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413dp-76f : inexact-ok += csqrt tonearest flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413ccp-76f : inexact-ok += csqrt towardzero flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413ccp-76f : inexact-ok += csqrt upward flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413ccp-76f : inexact-ok += csqrt downward dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt tonearest dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt towardzero dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt upward dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52cp-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt downward ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd6p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt downward flt-32 -0x8p-152f -0x8p-152f : 0x1.49852ep-76f -0x3.1b8844p-76f : inexact-ok += csqrt tonearest flt-32 -0x8p-152f -0x8p-152f : 0x1.49853p-76f -0x3.1b8844p-76f : inexact-ok += csqrt towardzero flt-32 -0x8p-152f -0x8p-152f : 0x1.49852ep-76f -0x3.1b884p-76f : inexact-ok += csqrt upward flt-32 -0x8p-152f -0x8p-152f : 0x1.49853p-76f -0x3.1b884p-76f : inexact-ok += csqrt downward dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efddp-76 -0x3.1b884327ab806p-76 : inexact-ok += csqrt tonearest dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efddp-76 -0x3.1b884327ab806p-76 : inexact-ok += csqrt towardzero dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efddp-76 -0x3.1b884327ab804p-76 : inexact-ok += csqrt upward dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efdep-76 -0x3.1b884327ab804p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d16p-76L -0x3.1b884327ab8057e2c8727f396696p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d17p-76L -0x3.1b884327ab8057e2c8727f396694p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d16p-76L -0x3.1b884327ab8057e2c8727f396694p-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d17p-76L -0x3.1b884327ab8057e2c8727f396694p-76L : inexact-ok += csqrt downward ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320dp-76L -0x3.1b884327ab8057e2c8727f3967p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320dp-76L -0x3.1b884327ab8057e2c8727f3967p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320dp-76L -0x3.1b884327ab8057e2c8727f3966p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d8p-76L -0x3.1b884327ab8057e2c8727f3966p-76L : inexact-ok += csqrt downward dbl-64 -0x8p-152 -0x4.0000000000004p-1024 : 0xb.504f333f9de68p-952 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt tonearest dbl-64 -0x8p-152 -0x4.0000000000004p-1024 : 0xb.504f333f9de7p-952 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt towardzero dbl-64 -0x8p-152 -0x4.0000000000004p-1024 : 0xb.504f333f9de68p-952 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt upward dbl-64 -0x8p-152 -0x4.0000000000004p-1024 : 0xb.504f333f9de7p-952 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4p-952L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd5p-952L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4p-952L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd5p-952L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4p-952L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd5p-952L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4p-952L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd5p-952L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4a8b0c9515b93p-952L -0x2.d413cccfe779921165f626cdd52cp-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4a8b0c9515b93p-952L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4a8b0c9515b93p-952L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4a8b0c9515b938p-952L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt downward ldbl-128ibm -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4a8b0c9515b8p-952L -0x2.d413cccfe779921165f626cdd6p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4a8b0c9515b8p-952L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4a8b0c9515b8p-952L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x8p-152L -0x4.0000000000004p-1024L : 0xb.504f333f9de6fd4a8b0c9515bcp-952L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt downward dbl-64 -0x4.0000000000004p-1024 -0x0p+0 : 0x0p+0 -0x2.0000000000002p-512 : inexact-ok += csqrt tonearest dbl-64 -0x4.0000000000004p-1024 -0x0p+0 : 0x0p+0 -0x2p-512 : inexact-ok += csqrt towardzero dbl-64 -0x4.0000000000004p-1024 -0x0p+0 : 0x0p+0 -0x2p-512 : inexact-ok += csqrt upward dbl-64 -0x4.0000000000004p-1024 -0x0p+0 : 0x0p+0 -0x2p-512 : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000001p-512L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000001p-512L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000000ffcp-512L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000000ffcp-512L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000001p-512L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000001p-512L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000000ffcp-512L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000000ffcp-512L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000000fffffffffffffcp-512L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000000fffffffffffffcp-512L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000000fffffffffffffbep-512L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000000fffffffffffffbep-512L : inexact-ok += csqrt downward ldbl-128ibm -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000001p-512L : inexact-ok += csqrt tonearest ldbl-128ibm -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000001p-512L : inexact-ok += csqrt towardzero ldbl-128ibm -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000000fffffffffffffp-512L : inexact-ok += csqrt upward ldbl-128ibm -0x4.0000000000004p-1024L -0x0p+0L : 0x0p+0L -0x2.0000000000000fffffffffffffp-512L : inexact-ok += csqrt downward dbl-64 -0x4.0000000000004p-1024 -0x8p-152 : 0x1.fffffffffffffp-76 -0x2p-76 : inexact-ok += csqrt tonearest dbl-64 -0x4.0000000000004p-1024 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt towardzero dbl-64 -0x4.0000000000004p-1024 -0x8p-152 : 0x1.fffffffffffffp-76 -0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 -0x4.0000000000004p-1024 -0x8p-152 : 0x2p-76 -0x1.fffffffffffffp-76 : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000004p-1024L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000004p-1024L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000004p-1024L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000004p-1024L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000004p-1024L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000004p-1024L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000004p-1024L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000004p-1024L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000004p-1024L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000004p-1024L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000004p-1024L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000004p-1024L -0x8p-152L : 0x2p-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt downward ldbl-128ibm -0x4.0000000000004p-1024L -0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x4.0000000000004p-1024L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x4.0000000000004p-1024L -0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-76L -0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x4.0000000000004p-1024L -0x8p-152L : 0x2p-76L -0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt downward dbl-64 -0x4.0000000000004p-1024 -0x4.0000000000004p-1024 : 0xe.90189c7b64148p-516 -0x2.3286b95ff53f4p-512 : inexact-ok += csqrt tonearest dbl-64 -0x4.0000000000004p-1024 -0x4.0000000000004p-1024 : 0xe.90189c7b64148p-516 -0x2.3286b95ff53f2p-512 : inexact-ok += csqrt towardzero dbl-64 -0x4.0000000000004p-1024 -0x4.0000000000004p-1024 : 0xe.90189c7b64148p-516 -0x2.3286b95ff53f2p-512 : inexact-ok += csqrt upward dbl-64 -0x4.0000000000004p-1024 -0x4.0000000000004p-1024 : 0xe.90189c7b6415p-516 -0x2.3286b95ff53f2p-512 : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bp-516L -0x2.3286b95ff53f2844p-512L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487cp-516L -0x2.3286b95ff53f2844p-512L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bp-516L -0x2.3286b95ff53f284p-512L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487cp-516L -0x2.3286b95ff53f284p-512L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bp-516L -0x2.3286b95ff53f2844p-512L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487cp-516L -0x2.3286b95ff53f2844p-512L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bp-516L -0x2.3286b95ff53f284p-512L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487cp-516L -0x2.3286b95ff53f284p-512L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bcab1b5b5b6abp-516L -0x2.3286b95ff53f28433fda06dfb246p-512L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bcab1b5b5b6ab8p-516L -0x2.3286b95ff53f28433fda06dfb244p-512L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bcab1b5b5b6abp-516L -0x2.3286b95ff53f28433fda06dfb244p-512L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bcab1b5b5b6ab8p-516L -0x2.3286b95ff53f28433fda06dfb244p-512L : inexact-ok += csqrt downward ldbl-128ibm -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bcab1b5b5b68p-516L -0x2.3286b95ff53f28433fda06dfb3p-512L : inexact-ok += csqrt tonearest ldbl-128ibm -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bcab1b5b5b6cp-516L -0x2.3286b95ff53f28433fda06dfb2p-512L : inexact-ok += csqrt towardzero ldbl-128ibm -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bcab1b5b5b68p-516L -0x2.3286b95ff53f28433fda06dfb2p-512L : inexact-ok += csqrt upward ldbl-128ibm -0x4.0000000000004p-1024L -0x4.0000000000004p-1024L : 0xe.90189c7b641487bcab1b5b5b6cp-516L -0x2.3286b95ff53f28433fda06dfb2p-512L : inexact-ok +csqrt 0x1.fp+16383 0x1.fp+16383 += csqrt downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435ep+64f 0x7.480c5p+60f : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f12p+64 0x7.480c4a99abe24p+60 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201c8p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201c8p+60L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c1p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c2p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c1p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c2p+64L 0x7.480c4a99abe201c363daba1d6a3cp+60L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e918p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e92p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e918p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e92p+64L 0x7.480c4a99abe201c363daba1d6cp+60L : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de68p+508 0xb.504f333f9de68p+508 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba2p+8188L 0xb.22b202b460e1ba2p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba3p+8188L 0xb.22b202b460e1ba3p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba2p+8188L 0xb.22b202b460e1ba2p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba3p+8188L 0xb.22b202b460e1ba3p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba2p+8188L 0xb.22b202b460e1ba2p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba3p+8188L 0xb.22b202b460e1ba3p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba2p+8188L 0xb.22b202b460e1ba2p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba3p+8188L 0xb.22b202b460e1ba3p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e04p+8188L 0xb.22b202b460e1ba2ef0fc9912e04p+8188L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e048p+8188L 0xb.22b202b460e1ba2ef0fc9912e048p+8188L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e04p+8188L 0xb.22b202b460e1ba2ef0fc9912e04p+8188L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e048p+8188L 0xb.22b202b460e1ba2ef0fc9912e048p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x1p+512 0x7.fffff80000004p-388 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x7.fffff80000001fffffe0000000bcp-388L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x7.fffff80000001fffffe0000000cp-388L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x7.fffff80000001fffffe0000000bcp-388L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x7.fffff80000001fffffe0000000cp-388L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000001fffffe0000002p-388L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f8p+512 0x7.480c4e3db209cp+508 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f8p+512 0x7.480c4e3db20ap+508 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f8p+512 0x7.480c4e3db209cp+508 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f9p+512 0x7.480c4e3db20ap+508 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f4p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f4p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb4p+512L 0x7.480c4e3db209ec7dc1e2c9553d94p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb5p+512L 0x7.480c4e3db209ec7dc1e2c9553d98p+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb4p+512L 0x7.480c4e3db209ec7dc1e2c9553d94p+508L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb5p+512L 0x7.480c4e3db209ec7dc1e2c9553d98p+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05e8p+512L 0x7.480c4e3db209ec7dc1e2c9553cp+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05e8p+512L 0x7.480c4e3db209ec7dc1e2c9553ep+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05e8p+512L 0x7.480c4e3db209ec7dc1e2c9553cp+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05fp+512L 0x7.480c4e3db209ec7dc1e2c9553ep+508L : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2p+8188L 0xb.22b202b460e1ba2p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba3p+8188L 0xb.22b202b460e1ba3p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2p+8188L 0xb.22b202b460e1ba2p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba3p+8188L 0xb.22b202b460e1ba3p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2p+8188L 0xb.22b202b460e1ba2p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba3p+8188L 0xb.22b202b460e1ba3p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2p+8188L 0xb.22b202b460e1ba2p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba3p+8188L 0xb.22b202b460e1ba3p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e04p+8188L 0xb.22b202b460e1ba2ef0fc9912e04p+8188L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e048p+8188L 0xb.22b202b460e1ba2ef0fc9912e048p+8188L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e04p+8188L 0xb.22b202b460e1ba2ef0fc9912e04p+8188L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e048p+8188L 0xb.22b202b460e1ba2ef0fc9912e048p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd98p+512L 0x7.480c4e3db20a055a03fc06b13f18p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd98p+512L 0x7.480c4e3db20a055a03fc06b13f1cp+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd98p+512L 0x7.480c4e3db20a055a03fc06b13f18p+508L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd99p+512L 0x7.480c4e3db20a055a03fc06b13f1cp+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd8p+512L 0x7.480c4e3db20a055a03fc06b13ep+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd8p+512L 0x7.480c4e3db20a055a03fc06b14p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd8p+512L 0x7.480c4e3db20a055a03fc06b13ep+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdep+512L 0x7.480c4e3db20a055a03fc06b14p+508L : inexact-ok += csqrt downward ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c51be2aa1a684p-8068L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c51be2aa1a685p-8068L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c51be2aa1a684p-8068L : inexact-ok += csqrt upward ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c51be2aa1a685p-8068L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c51be2aa1a684p-8068L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c51be2aa1a685p-8068L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c51be2aa1a684p-8068L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c51be2aa1a685p-8068L : inexact-ok += csqrt downward ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c51be2aa1a684d6cc401795f3p-8068L : inexact-ok += csqrt tonearest ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c51be2aa1a684d6cc401795f38p-8068L : inexact-ok += csqrt towardzero ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c51be2aa1a684d6cc401795f3p-8068L : inexact-ok += csqrt upward ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bd8bac8066d5p+8188L 0x8.20c51be2aa1a684d6cc401795f38p-8068L : inexact-ok += csqrt downward ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt upward ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c524036f3e2acp-7172L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c524036f3e2acp-7172L : inexact-ok += csqrt downward ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e2ab6820fa2aa9b9p-7172L : inexact-ok += csqrt tonearest ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e2ab6820fa2aa9b98p-7172L : inexact-ok += csqrt towardzero ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e2ab6820fa2aa9b9p-7172L : inexact-ok += csqrt upward ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bd8bac8066d5p+8188L 0x8.20c524036f3e2ab6820fa2aa9b98p-7172L : inexact-ok += csqrt downward ldbl-96-intel 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313ap+8192L 0x7.2ab0eef99eed6b18p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313cp+8192L 0x7.2ab0eef99eed6b2p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313ap+8192L 0x7.2ab0eef99eed6b18p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313cp+8192L 0x7.2ab0eef99eed6b2p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313ap+8192L 0x7.2ab0eef99eed6b18p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313cp+8192L 0x7.2ab0eef99eed6b2p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313ap+8192L 0x7.2ab0eef99eed6b18p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313cp+8192L 0x7.2ab0eef99eed6b2p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313b41a3e8922092p+8192L 0x7.2ab0eef99eed6b1f39b7abe3349p+8188L : inexact-ok += csqrt tonearest ldbl-128 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313b41a3e8922093p+8192L 0x7.2ab0eef99eed6b1f39b7abe3349p+8188L : inexact-ok += csqrt towardzero ldbl-128 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313b41a3e8922092p+8192L 0x7.2ab0eef99eed6b1f39b7abe3349p+8188L : inexact-ok += csqrt upward ldbl-128 0xf.8p+16380L 0xf.8p+16380L : 0x1.14d561462f72313b41a3e8922093p+8192L 0x7.2ab0eef99eed6b1f39b7abe33494p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e4b39969fb0679338p-7172L : inexact-ok += csqrt tonearest ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e4b39969fb067934p-7172L : inexact-ok += csqrt towardzero ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e4b39969fb0679338p-7172L : inexact-ok += csqrt upward ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.bf7df5c6a788f0bd8bac8066d5p+8188L 0x8.20c524036f3e4b39969fb067934p-7172L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x7.fffff80000000ffffff00000012cp-388L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffdep+508L 0x7.fffff80000000ffffff00000013p-388L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x7.fffff80000000ffffff00000012cp-388L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffdep+508L 0x7.fffff80000000ffffff00000013p-388L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffcp+508L 0x7.fffff80000000ffffffp-388L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffcp+508L 0x7.fffff80000000ffffff0000002p-388L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffcp+508L 0x7.fffff80000000ffffffp-388L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffep+508L 0x7.fffff80000000ffffff0000002p-388L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861ecdp+512L 0x7.480c4e3db209e2319866075d4f78p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861ecep+512L 0x7.480c4e3db209e2319866075d4f78p+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861ecdp+512L 0x7.480c4e3db209e2319866075d4f78p+508L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861ecep+512L 0x7.480c4e3db209e2319866075d4f7cp+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861e8p+512L 0x7.480c4e3db209e2319866075d4ep+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861fp+512L 0x7.480c4e3db209e2319866075d5p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861e8p+512L 0x7.480c4e3db209e2319866075d4ep+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861fp+512L 0x7.480c4e3db209e2319866075d5p+508L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e04p+8188L 0xb.22b202b460e1ba2ef0fc9912e04p+8188L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e048p+8188L 0xb.22b202b460e1ba2ef0fc9912e048p+8188L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e04p+8188L 0xb.22b202b460e1ba2ef0fc9912e04p+8188L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.8p+16380L : 0xb.22b202b460e1ba2ef0fc9912e048p+8188L 0xb.22b202b460e1ba2ef0fc9912e048p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59daep+512L 0x7.480c4e3db209fb0dda7f44b950ecp+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59dafp+512L 0x7.480c4e3db209fb0dda7f44b950ecp+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59daep+512L 0x7.480c4e3db209fb0dda7f44b950ecp+508L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59dafp+512L 0x7.480c4e3db209fb0dda7f44b950fp+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59d8p+512L 0x7.480c4e3db209fb0dda7f44b95p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59d8p+512L 0x7.480c4e3db209fb0dda7f44b95p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59d8p+512L 0x7.480c4e3db209fb0dda7f44b95p+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59ep+512L 0x7.480c4e3db209fb0dda7f44b952p+508L : inexact-ok +csqrt 0x1.fp+16383 0x1p+16383 += csqrt downward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435cp+64f 0x7.480c48p+60f : inexact-ok += csqrt upward flt-32 0xf.fffffp+124f 0xf.fffffp+124f : 0x1.19435ep+64f 0x7.480c5p+60f : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f11p+64 0x7.480c4a99abe2p+60 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0xf.fffffp+124 : 0x1.19435c2358f12p+64 0x7.480c4a99abe24p+60 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201c8p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f1103p+64L 0x7.480c4a99abe201cp+60L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11032p+64L 0x7.480c4a99abe201c8p+60L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c1p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c2p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c1p+64L 0x7.480c4a99abe201c363daba1d6a38p+60L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e91c2p+64L 0x7.480c4a99abe201c363daba1d6a3cp+60L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e918p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e92p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e918p+64L 0x7.480c4a99abe201c363daba1d6ap+60L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0xf.fffffp+124L : 0x1.19435c2358f11031c99a444e92p+64L 0x7.480c4a99abe201c363daba1d6cp+60L : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de68p+508 0xb.504f333f9de68p+508 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x8p+16380L : 0x8.0000000000000000000000000008p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0xf.ffffffffffff8p+508 0x7.fffff8p-388 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0xf.fffffp+124 : 0x1p+512 0x7.fffff80000004p-388 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffp+508L 0x7.fffff80000001ff8p-388L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000002p-388L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x7.fffff80000001fffffe0000000bcp-388L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x7.fffff80000001fffffe0000000cp-388L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x7.fffff80000001fffffe0000000bcp-388L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x7.fffff80000001fffffe0000000cp-388L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+508L 0x7.fffff80000001fffffep-388L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : 0xf.ffffffffffffcp+508L 0x7.fffff80000001fffffe0000002p-388L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f8p+512 0x7.480c4e3db209cp+508 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f8p+512 0x7.480c4e3db20ap+508 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f8p+512 0x7.480c4e3db209cp+508 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : 0x1.19435caffa9f9p+512 0x7.480c4e3db20ap+508 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f4p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f2p+512L 0x7.480c4e3db209ec78p+508L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f4p+512L 0x7.480c4e3db209ec8p+508L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb4p+512L 0x7.480c4e3db209ec7dc1e2c9553d94p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb5p+512L 0x7.480c4e3db209ec7dc1e2c9553d98p+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb4p+512L 0x7.480c4e3db209ec7dc1e2c9553d94p+508L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05eb5p+512L 0x7.480c4e3db209ec7dc1e2c9553d98p+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05e8p+512L 0x7.480c4e3db209ec7dc1e2c9553cp+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05e8p+512L 0x7.480c4e3db209ec7dc1e2c9553ep+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05e8p+512L 0x7.480c4e3db209ec7dc1e2c9553cp+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f86f27794c3b05fp+512L 0x7.480c4e3db209ec7dc1e2c9553ep+508L : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p+16380L : 0x8.0000000000000000000000000008p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd98p+512L 0x7.480c4e3db20a055a03fc06b13f18p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd98p+512L 0x7.480c4e3db20a055a03fc06b13f1cp+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd98p+512L 0x7.480c4e3db20a055a03fc06b13f18p+508L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd99p+512L 0x7.480c4e3db20a055a03fc06b13f1cp+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd8p+512L 0x7.480c4e3db20a055a03fc06b13ep+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd8p+512L 0x7.480c4e3db20a055a03fc06b14p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdd8p+512L 0x7.480c4e3db20a055a03fc06b13ep+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f87973a2c8fcfdep+512L 0x7.480c4e3db20a055a03fc06b14p+508L : inexact-ok += csqrt downward ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c51be2aa1a684p-8068L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c51be2aa1a685p-8068L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c51be2aa1a684p-8068L : inexact-ok += csqrt upward ldbl-96-intel 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c51be2aa1a685p-8068L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c51be2aa1a684p-8068L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c51be2aa1a685p-8068L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c51be2aa1a684p-8068L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c51be2aa1a685p-8068L : inexact-ok += csqrt downward ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c51be2aa1a684d6cc401795f3p-8068L : inexact-ok += csqrt tonearest ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c51be2aa1a684d6cc401795f38p-8068L : inexact-ok += csqrt towardzero ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c51be2aa1a684d6cc401795f3p-8068L : inexact-ok += csqrt upward ldbl-128 0xf.8p+16380L 0xf.fffffp+124L : 0xf.bf7df5c6a788f0bd8bac8066d5p+8188L 0x8.20c51be2aa1a684d6cc401795f38p-8068L : inexact-ok += csqrt downward ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt upward ldbl-96-intel 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c524036f3e2acp-7172L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bp+8188L 0x8.20c524036f3e2abp-7172L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0cp+8188L 0x8.20c524036f3e2acp-7172L : inexact-ok += csqrt downward ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e2ab6820fa2aa9b9p-7172L : inexact-ok += csqrt tonearest ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e2ab6820fa2aa9b98p-7172L : inexact-ok += csqrt towardzero ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e2ab6820fa2aa9b9p-7172L : inexact-ok += csqrt upward ldbl-128 0xf.8p+16380L 0xf.ffffffffffff8p+1020L : 0xf.bf7df5c6a788f0bd8bac8066d5p+8188L 0x8.20c524036f3e2ab6820fa2aa9b98p-7172L : inexact-ok += csqrt downward ldbl-96-intel 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c96p+8192L 0x3.f13db93133426b28p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c98p+8192L 0x3.f13db93133426b28p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c96p+8192L 0x3.f13db93133426b28p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c98p+8192L 0x3.f13db93133426b2cp+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c96p+8192L 0x3.f13db93133426b28p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c98p+8192L 0x3.f13db93133426b28p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c96p+8192L 0x3.f13db93133426b28p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c98p+8192L 0x3.f13db93133426b2cp+8188L : inexact-ok += csqrt downward ldbl-128 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c976f29f999f187p+8192L 0x3.f13db93133426b29a4cf68a47928p+8188L : inexact-ok += csqrt tonearest ldbl-128 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c976f29f999f187p+8192L 0x3.f13db93133426b29a4cf68a47928p+8188L : inexact-ok += csqrt towardzero ldbl-128 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c976f29f999f187p+8192L 0x3.f13db93133426b29a4cf68a47928p+8188L : inexact-ok += csqrt upward ldbl-128 0xf.8p+16380L 0x8p+16380L : 0x1.03be61de0c283c976f29f999f188p+8192L 0x3.f13db93133426b29a4cf68a4792ap+8188L : inexact-ok += csqrt downward ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e4b39969fb0679338p-7172L : inexact-ok += csqrt tonearest ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e4b39969fb067934p-7172L : inexact-ok += csqrt towardzero ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.bf7df5c6a788f0bd8bac8066d4f8p+8188L 0x8.20c524036f3e4b39969fb0679338p-7172L : inexact-ok += csqrt upward ldbl-128 0xf.8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.bf7df5c6a788f0bd8bac8066d5p+8188L 0x8.20c524036f3e4b39969fb067934p-7172L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x7.fffff80000000ffffff00000012cp-388L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffdep+508L 0x7.fffff80000000ffffff00000013p-388L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x7.fffff80000000ffffff00000012cp-388L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffdep+508L 0x7.fffff80000000ffffff00000013p-388L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffcp+508L 0x7.fffff80000000ffffffp-388L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffcp+508L 0x7.fffff80000000ffffff0000002p-388L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffdffffffffffffcp+508L 0x7.fffff80000000ffffffp-388L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : 0xf.ffffffffffffep+508L 0x7.fffff80000000ffffff0000002p-388L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861ecdp+512L 0x7.480c4e3db209e2319866075d4f78p+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861ecep+512L 0x7.480c4e3db209e2319866075d4f78p+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861ecdp+512L 0x7.480c4e3db209e2319866075d4f78p+508L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861ecep+512L 0x7.480c4e3db209e2319866075d4f7cp+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861e8p+512L 0x7.480c4e3db209e2319866075d4ep+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861fp+512L 0x7.480c4e3db209e2319866075d5p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861e8p+512L 0x7.480c4e3db209e2319866075d4ep+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : 0x1.19435caffa9f88803bb657861fp+512L 0x7.480c4e3db209e2319866075d5p+508L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p+16380L : 0x8.0000000000000000000000000008p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59daep+512L 0x7.480c4e3db209fb0dda7f44b950ecp+508L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59dafp+512L 0x7.480c4e3db209fb0dda7f44b950ecp+508L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59daep+512L 0x7.480c4e3db209fb0dda7f44b950ecp+508L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59dafp+512L 0x7.480c4e3db209fb0dda7f44b950fp+508L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59d8p+512L 0x7.480c4e3db209fb0dda7f44b95p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59d8p+512L 0x7.480c4e3db209fb0dda7f44b95p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59d8p+512L 0x7.480c4e3db209fb0dda7f44b95p+508L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.19435caffa9f8924fe4e23a59ep+512L 0x7.480c4e3db209fb0dda7f44b952p+508L : inexact-ok +csqrt 0x1p-16440 0x1p-16441 += csqrt downward flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efdep-76 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396696p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320d8p-76L : inexact-ok += csqrt downward flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x0p+0f : 0x2.d413dp-76f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd6p-76L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6484597d89b3754bp-1004L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd6p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-16444L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16368L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-16444L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16368L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-16444L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16368L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-16444L : 0x2.d413cccfe7799214p-76L 0x1.6a09e667f3bcc90ap-16368L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-16444L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16368L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-16444L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16368L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-16444L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16368L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-16444L : 0x2.d413cccfe7799214p-76L 0x1.6a09e667f3bcc90ap-16368L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-16444L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-16368L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-16444L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-16368L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-16444L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-16368L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-16444L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x1.6a09e667f3bcc908b2fb1366ea96p-16368L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L 0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-16444L : 0x8p-8224L 0x8p-8224L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x8p-152 : 0x2.0000000000002p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2.00000000000000000000000001p-76L 0x2p-76L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed905p-540 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed9052p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fep-540L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p-16444L : 0x8p-540L 0x7.fffffffffffffff8p-15908L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p-16444L : 0x8p-540L 0x8p-15908L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p-16444L : 0x8p-540L 0x7.fffffffffffffff8p-15908L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p-16444L : 0x8.000000000000001p-540L 0x8p-15908L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p-16444L : 0x8p-540L 0x7.fffffffffffffff8p-15908L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p-16444L : 0x8p-540L 0x8p-15908L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p-16444L : 0x8p-540L 0x7.fffffffffffffff8p-15908L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p-16444L : 0x8.000000000000001p-540L 0x8p-15908L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p-16444L : 0x8p-540L 0x7.fffffffffffffffffffffffffffcp-15908L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p-16444L : 0x8p-540L 0x8p-15908L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p-16444L : 0x8p-540L 0x7.fffffffffffffffffffffffffffcp-15908L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p-16444L : 0x8.0000000000000000000000000008p-540L 0x8p-15908L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-16440L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-16440L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-16440L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-16440L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-16440L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-16440L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-16440L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-16440L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x1p-16440L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x1p-16440L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x1p-16440L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x1p-16440L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x1p-16440L 0x0p+0L : 0x1p-8220L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x1p-16440L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571bacp-8220L 0x3.e30ee78adee42e5cp-8224L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571bacp-8220L 0x3.e30ee78adee42e6p-8224L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571bacp-8220L 0x3.e30ee78adee42e5cp-8224L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571baep-8220L 0x3.e30ee78adee42e6p-8224L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571bacp-8220L 0x3.e30ee78adee42e5cp-8224L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571bacp-8220L 0x3.e30ee78adee42e6p-8224L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571bacp-8220L 0x3.e30ee78adee42e5cp-8224L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571baep-8220L 0x3.e30ee78adee42e6p-8224L : inexact-ok += csqrt downward ldbl-128 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571bac72dad8647708p-8220L 0x3.e30ee78adee42e5e26a28ada7bc2p-8224L : inexact-ok += csqrt tonearest ldbl-128 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571bac72dad8647709p-8220L 0x3.e30ee78adee42e5e26a28ada7bc4p-8224L : inexact-ok += csqrt towardzero ldbl-128 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571bac72dad8647708p-8220L 0x3.e30ee78adee42e5e26a28ada7bc2p-8224L : inexact-ok += csqrt upward ldbl-128 0x1p-16440L 0x8p-16444L : 0x1.077225f1da571bac72dad8647709p-8220L 0x3.e30ee78adee42e5e26a28ada7bc4p-8224L : inexact-ok +csqrt 0 0x1p-16445 += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L 0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok +csqrt 0x1p-5000 0x1p-16445 += csqrt downward flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efdep-76 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396696p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320d8p-76L : inexact-ok += csqrt downward flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x0p+0f : 0x2.d413dp-76f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd6p-76L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6484597d89b3754bp-1004L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd6p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x2.d413cccfe7799214p-76L 0x1.6a09e667f3bcc90ap-16372L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x2.d413cccfe7799214p-76L 0x1.6a09e667f3bcc90ap-16372L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-16372L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-16372L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-16372L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x1.6a09e667f3bcc908b2fb1366ea96p-16372L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L 0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x8p-152 : 0x2.0000000000002p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2.00000000000000000000000001p-76L 0x2p-76L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed905p-540 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed9052p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fep-540L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffff8p-15912L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x8p-15912L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffff8p-15912L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x8.000000000000001p-540L 0x8p-15912L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffff8p-15912L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x8p-15912L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffff8p-15912L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x8.000000000000001p-540L 0x8p-15912L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffffffffffffffffcp-15912L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x8p-15912L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffffffffffffffffcp-15912L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p-16448L : 0x8.0000000000000000000000000008p-540L 0x8p-15912L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-5000L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-5000L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-5000L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-5000L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x1p-5000L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x1p-5000L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffcp-13948L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x4p-13948L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffcp-13948L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-5000L 0x8p-16448L : 0x1.0000000000000002p-2500L 0x4p-13948L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffcp-13948L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x4p-13948L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffcp-13948L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-5000L 0x8p-16448L : 0x1.0000000000000002p-2500L 0x4p-13948L : inexact-ok += csqrt downward ldbl-128 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffffffffffffffep-13948L : inexact-ok += csqrt tonearest ldbl-128 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x4p-13948L : inexact-ok += csqrt towardzero ldbl-128 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffffffffffffffep-13948L : inexact-ok += csqrt upward ldbl-128 0x1p-5000L 0x8p-16448L : 0x1.0000000000000000000000000001p-2500L 0x4p-13948L : inexact-ok +csqrt 0x1p+16383 0x1p-16445 += csqrt downward flt-32 0xf.fffffp+124f 0x8p-152f : 0xf.fffffp+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0x8p-152f : 0xf.fffffp+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0x8p-152f : 0xf.fffffp+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt upward flt-32 0xf.fffffp+124f 0x8p-152f : 0x1p+64f 0x8p-152f : inexact-ok underflow errno-erange-ok += csqrt downward dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffd8p+60 0x4.0000020000018p-216 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffep+60 0x4.0000020000018p-216 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffd8p+60 0x4.0000020000018p-216 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffep+60 0x4.000002000001cp-216 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018p-216L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018008p-216L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018p-216L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018008p-216L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.0000020000018000014000011804p-216L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.0000020000018000014000011ap-216L : inexact-ok += csqrt downward flt-32 0xf.fffffp+124f 0x0p+0f : 0xf.fffffp+60f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0x0p+0f : 0xf.fffffp+60f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0x0p+0f : 0xf.fffffp+60f 0x0p+0f : inexact-ok += csqrt upward flt-32 0xf.fffffp+124f 0x0p+0f : 0x1p+64f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffep+60 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffep+60 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffep+60 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt upward dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffep+60 0x4p-1076 : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000c004p-1140L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000c004p-1140L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x2.000001000000c00000a000008cp-1140L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x2.000001000000c00000a000008cp-1140L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x2.000001000000c00000a000008cp-1140L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x2.000001000000c00000a000008c02p-1140L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4p-1076L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffep+60L 0x8p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffep+60L 0x4p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0xf.ffffffffffff8p+508 0x4p-664 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0xf.ffffffffffff8p+508 0x4p-664 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0xf.ffffffffffff8p+508 0x4p-664 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x1p+512 0x4.0000000000004p-664 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.0000000000001008p-664L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.0000000000001008p-664L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x4.000000000000100000000000006p-664L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x4.000000000000100000000000006p-664L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x4.000000000000100000000000006p-664L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x4.0000000000001000000000000064p-664L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.00000000000010000000000002p-664L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0x1p+512 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x1p+512 0x4p-1076 : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x2.0000000000000804p-1588L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x2.0000000000000804p-1588L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x2.000000000000080000000000003p-1588L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x2.000000000000080000000000003p-1588L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x2.000000000000080000000000003p-1588L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x2.0000000000000800000000000032p-1588L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x4p-1076L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffcp+508L 0x8p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffcp+508L 0x4p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt upward ldbl-96-intel 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6485p+8188L 0x5.a827999fcef32428p-8344L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6485p+8188L 0x5.a827999fcef32428p-8344L : inexact-ok += csqrt downward ldbl-128 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x5.a827999fcef32422cbec4d9baa54p-8344L : inexact-ok += csqrt tonearest ldbl-128 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x5.a827999fcef32422cbec4d9baa54p-8344L : inexact-ok += csqrt towardzero ldbl-128 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x5.a827999fcef32422cbec4d9baa54p-8344L : inexact-ok += csqrt upward ldbl-128 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484597d89b3754bp+8188L 0x5.a827999fcef32422cbec4d9baa58p-8344L : inexact-ok += csqrt downward ldbl-96-intel 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6485p+8188L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6485p+8188L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484597d89b3754bp+8188L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-intel 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt upward ldbl-96-intel 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6485p+8188L 0x2.d413cccfe7799214p-9268L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6485p+8188L 0x2.d413cccfe7799214p-9268L : inexact-ok += csqrt downward ldbl-128 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x2.d413cccfe779921165f626cdd52ap-9268L : inexact-ok += csqrt tonearest ldbl-128 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x2.d413cccfe779921165f626cdd52ap-9268L : inexact-ok += csqrt towardzero ldbl-128 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x2.d413cccfe779921165f626cdd52ap-9268L : inexact-ok += csqrt upward ldbl-128 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754bp+8188L 0x2.d413cccfe779921165f626cdd52cp-9268L : inexact-ok += csqrt downward ldbl-96-intel 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-intel 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-intel 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-intel 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6485p+8188L 0x8p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-m68k 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-m68k 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-m68k 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-m68k 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6485p+8188L 0x4p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484597d89b3754bp+8188L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x4.0000000000000800000000000098p-664L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffdep+508L 0x4.0000000000000800000000000098p-664L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x4.0000000000000800000000000098p-664L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffdep+508L 0x4.000000000000080000000000009cp-664L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffcp+508L 0x4.00000000000008p-664L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffcp+508L 0x4.00000000000008p-664L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffcp+508L 0x4.00000000000008p-664L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffep+508L 0x4.00000000000008000000000002p-664L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffdep+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffdep+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffep+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x2.000000000000040000000000004cp-1588L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffdep+508L 0x2.000000000000040000000000004cp-1588L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x2.000000000000040000000000004cp-1588L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffdep+508L 0x2.000000000000040000000000004ep-1588L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffep+508L 0x4p-1076L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0xf.ffffffffffffdffffffffffffdep+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0xf.ffffffffffffdffffffffffffdep+508L 0x4p-16496L : inexact-ok underflow errno-erange-ok +csqrt 0x1p-16445 0x1p+16383 += csqrt downward flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt upward flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt downward dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt upward dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764b8p+60 0xb.504f2d97764b8p+60 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt downward dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt upward dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de68p+508 0xb.504f333f9de68p+508 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p+16380L : 0x8.0000000000000000000000000008p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt downward flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt upward flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt downward dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt upward dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764b8p+60 0xb.504f2d97764b8p+60 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt downward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt upward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de68p+508 0xb.504f333f9de68p+508 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764b8p+60 0xb.504f2d97764b8p+60 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de68p+508 0xb.504f333f9de68p+508 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p+16380L : 0x8.0000000000000000000000000008p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt downward ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-96-intel 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-16448L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-16448L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt tonearest ldbl-128 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt upward ldbl-128 0x8p-16448L 0x8p+16380L : 0x8.0000000000000000000000000008p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok +csqrt 0x1.0000000000000002p-16382 0x1.0000000000000002p-16382 += csqrt downward flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efdep-76 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396696p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320d8p-76L : inexact-ok += csqrt downward flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x0p+0f : 0x2.d413dp-76f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd6p-76L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6484597d89b3754bp-1004L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd6p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6485p-16312L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6486p-16312L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6485p-16312L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6486p-16312L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6485p-16312L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6486p-16312L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6485p-16312L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6486p-16312L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6485c387701b69078p-16312L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6485c387701b69078p-16312L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6485c387701b69078p-16312L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6485c387701b6908p-16312L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L 0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90cp-8192L 0x1.6a09e667f3bcc90cp-8192L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90cp-8192L 0x1.6a09e667f3bcc90cp-8192L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede53p-8192L 0x1.6a09e667f3bcc90a1d04f9cede53p-8192L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x8p-152 : 0x2.0000000000002p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2.00000000000000000000000001p-76L 0x2p-76L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed905p-540 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed9052p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fep-540L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8.000000000000001p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8.000000000000001p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4.0000000000000007fffffffffffcp-15848L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4.0000000000000007fffffffffffcp-15848L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8.0000000000000000000000000008p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000000008p-16384L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000008p-16384L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000004p-8192L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000004p-8192L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000001fffffffffffep-8192L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000002p-8192L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000001fffffffffffep-8192L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000002p-8192L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b4p-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b4p-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b13c95c095af14p-8192L 0xe.90189c7b6414134a76501cb63p-8196L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b13c95c095af14p-8192L 0xe.90189c7b6414134a76501cb63008p-8196L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b13c95c095af14p-8192L 0xe.90189c7b6414134a76501cb63p-8196L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b13c95c095af16p-8192L 0xe.90189c7b6414134a76501cb63008p-8196L : inexact-ok +csqrt -0x1.0000000000000002p-16382 -0x1.0000000000000002p-16382 += csqrt downward flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt tonearest flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt towardzero flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt upward flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt downward dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt tonearest dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt towardzero dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt upward dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt tonearest flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt towardzero flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt upward flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt downward dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt tonearest dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt towardzero dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt upward dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward dbl-64 -0x0p+0 -0x4p-1076 : 0x5.a827999fcef3p-540 -0x5.a827999fcef34p-540 : inexact-ok += csqrt tonearest dbl-64 -0x0p+0 -0x4p-1076 : 0x5.a827999fcef34p-540 -0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 -0x0p+0 -0x4p-1076 : 0x5.a827999fcef3p-540 -0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 -0x0p+0 -0x4p-1076 : 0x5.a827999fcef34p-540 -0x5.a827999fcef3p-540 : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef32428p-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32428p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef32428p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32428p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt downward ldbl-128ibm -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L -0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok += csqrt tonearest ldbl-128ibm -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L -0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L -0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L -0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90cp-8192L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90cp-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90cp-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90cp-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L -0x1.6a09e667f3bcc90a1d04f9cede53p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L -0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L -0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede53p-8192L -0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt downward flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413dp-76f : inexact-ok += csqrt tonearest flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413ccp-76f : inexact-ok += csqrt towardzero flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413ccp-76f : inexact-ok += csqrt upward flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413ccp-76f : inexact-ok += csqrt downward dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt tonearest dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt towardzero dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt upward dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52cp-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt downward ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd6p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt downward flt-32 -0x8p-152f -0x8p-152f : 0x1.49852ep-76f -0x3.1b8844p-76f : inexact-ok += csqrt tonearest flt-32 -0x8p-152f -0x8p-152f : 0x1.49853p-76f -0x3.1b8844p-76f : inexact-ok += csqrt towardzero flt-32 -0x8p-152f -0x8p-152f : 0x1.49852ep-76f -0x3.1b884p-76f : inexact-ok += csqrt upward flt-32 -0x8p-152f -0x8p-152f : 0x1.49853p-76f -0x3.1b884p-76f : inexact-ok += csqrt downward dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efddp-76 -0x3.1b884327ab806p-76 : inexact-ok += csqrt tonearest dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efddp-76 -0x3.1b884327ab806p-76 : inexact-ok += csqrt towardzero dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efddp-76 -0x3.1b884327ab804p-76 : inexact-ok += csqrt upward dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efdep-76 -0x3.1b884327ab804p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d16p-76L -0x3.1b884327ab8057e2c8727f396696p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d17p-76L -0x3.1b884327ab8057e2c8727f396694p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d16p-76L -0x3.1b884327ab8057e2c8727f396694p-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d17p-76L -0x3.1b884327ab8057e2c8727f396694p-76L : inexact-ok += csqrt downward ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320dp-76L -0x3.1b884327ab8057e2c8727f3967p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320dp-76L -0x3.1b884327ab8057e2c8727f3967p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320dp-76L -0x3.1b884327ab8057e2c8727f3966p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d8p-76L -0x3.1b884327ab8057e2c8727f3966p-76L : inexact-ok += csqrt downward dbl-64 -0x8p-152 -0x4p-1076 : 0xb.504f333f9de6p-1004 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt tonearest dbl-64 -0x8p-152 -0x4p-1076 : 0xb.504f333f9de68p-1004 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt towardzero dbl-64 -0x8p-152 -0x4p-1076 : 0xb.504f333f9de6p-1004 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt upward dbl-64 -0x8p-152 -0x4p-1076 : 0xb.504f333f9de68p-1004 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6485p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6485p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p-1004L -0x2.d413cccfe779921165f626cdd52cp-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p-1004L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p-1004L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484597d89b3754bp-1004L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt downward ldbl-128ibm -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484594p-1004L -0x2.d413cccfe779921165f626cdd6p-76L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484598p-1004L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484594p-1004L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484598p-1004L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485p-16312L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6486p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6486p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485p-16312L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6486p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6486p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485c387701b69078p-16312L -0x2.d413cccfe779921165f626cdd52cp-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485c387701b69078p-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485c387701b69078p-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485c387701b6908p-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt downward dbl-64 -0x4p-1076 -0x0p+0 : 0x0p+0 -0x8p-540 : inexact-ok += csqrt tonearest dbl-64 -0x4p-1076 -0x0p+0 : 0x0p+0 -0x8p-540 : inexact-ok += csqrt towardzero dbl-64 -0x4p-1076 -0x0p+0 : 0x0p+0 -0x8p-540 : inexact-ok += csqrt upward dbl-64 -0x4p-1076 -0x0p+0 : 0x0p+0 -0x8p-540 : inexact-ok += csqrt downward ldbl-96-intel -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt downward ldbl-128 -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt upward ldbl-128 -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt downward ldbl-128ibm -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-128ibm -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-128ibm -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt upward ldbl-128ibm -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt downward dbl-64 -0x4p-1076 -0x8p-152 : 0x1.fffffffffffffp-76 -0x2p-76 : inexact-ok += csqrt tonearest dbl-64 -0x4p-1076 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt towardzero dbl-64 -0x4p-1076 -0x8p-152 : 0x1.fffffffffffffp-76 -0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 -0x4p-1076 -0x8p-152 : 0x2p-76 -0x1.fffffffffffffp-76 : inexact-ok += csqrt downward ldbl-96-intel -0x4p-1076L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-1076L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-1076L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-1076L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-1076L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-1076L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-1076L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-1076L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-128 -0x4p-1076L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-1076L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-1076L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 -0x4p-1076L -0x8p-152L : 0x2p-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt downward ldbl-128ibm -0x4p-1076L -0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x4p-1076L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x4p-1076L -0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-76L -0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x4p-1076L -0x8p-152L : 0x2p-76L -0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt downward dbl-64 -0x4p-1076 -0x4p-1076 : 0x3.a406271ed905p-540 -0x8.ca1ae57fd4fc8p-540 : inexact-ok += csqrt tonearest dbl-64 -0x4p-1076 -0x4p-1076 : 0x3.a406271ed905p-540 -0x8.ca1ae57fd4fc8p-540 : inexact-ok += csqrt towardzero dbl-64 -0x4p-1076 -0x4p-1076 : 0x3.a406271ed905p-540 -0x8.ca1ae57fd4fcp-540 : inexact-ok += csqrt upward dbl-64 -0x4p-1076 -0x4p-1076 : 0x3.a406271ed9052p-540 -0x8.ca1ae57fd4fcp-540 : inexact-ok += csqrt downward ldbl-96-intel -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504ccp-540L -0x8.ca1ae57fd4fc5acp-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504dp-540L -0x8.ca1ae57fd4fc5acp-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504ccp-540L -0x8.ca1ae57fd4fc5abp-540L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504dp-540L -0x8.ca1ae57fd4fc5abp-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504ccp-540L -0x8.ca1ae57fd4fc5acp-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504dp-540L -0x8.ca1ae57fd4fc5acp-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504ccp-540L -0x8.ca1ae57fd4fc5abp-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504dp-540L -0x8.ca1ae57fd4fc5abp-540L : inexact-ok += csqrt downward ldbl-128 -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2fcp-540L -0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2fcp-540L -0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2fcp-540L -0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L : inexact-ok += csqrt upward ldbl-128 -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2fep-540L -0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L : inexact-ok += csqrt downward ldbl-128ibm -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2p-540L -0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L : inexact-ok += csqrt tonearest ldbl-128ibm -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb3p-540L -0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L : inexact-ok += csqrt towardzero ldbl-128ibm -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2p-540L -0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L : inexact-ok += csqrt upward ldbl-128ibm -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb3p-540L -0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L : inexact-ok += csqrt downward ldbl-96-intel -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4p-15848L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4p-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4p-15848L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4p-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt downward ldbl-128 -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000007fffffffffffcp-15848L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000007fffffffffffcp-15848L -0x7.fffffffffffffffffffffffffffcp-540L : inexact-ok += csqrt upward ldbl-128 -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x7.fffffffffffffffffffffffffffcp-540L : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000004p-8192L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000004p-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000002p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000002p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000001fffffffffffep-8192L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000001fffffffffffep-8192L : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef32428p-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32428p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef32428p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32428p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16b4p-8192L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16b4p-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134a76501cb63p-8196L -0x2.3286b95ff53f16b13c95c095af16p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134a76501cb63008p-8196L -0x2.3286b95ff53f16b13c95c095af14p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134a76501cb63p-8196L -0x2.3286b95ff53f16b13c95c095af14p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134a76501cb63008p-8196L -0x2.3286b95ff53f16b13c95c095af14p-8192L : inexact-ok +csqrt 0 0x1p-16494 += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L 0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908p-8224L 0x1.6a09e667f3bcc908p-8224L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908p-8224L 0x1.6a09e667f3bcc908p-8224L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908p-8224L 0x1.6a09e667f3bcc908p-8224L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc90ap-8224L 0x1.6a09e667f3bcc90ap-8224L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8224L 0x1.6a09e667f3bcc908b2fb1366ea96p-8224L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-16496L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-16496L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-16496L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-16496L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8248L 0x1.6a09e667f3bcc908b2fb1366ea96p-8248L : inexact-ok +csqrt 0x1p-5000 0x1p-16494 += csqrt downward flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efdep-76 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396696p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320d8p-76L : inexact-ok += csqrt downward flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x0p+0f : 0x2.d413dp-76f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd6p-76L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6484597d89b3754bp-1004L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd6p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x2.d413cccfe7799214p-76L 0x1.6a09e667f3bcc90ap-16372L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921p-76L 0x1.6a09e667f3bcc908p-16372L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x2.d413cccfe7799214p-76L 0x1.6a09e667f3bcc90ap-16372L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-16372L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-16372L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x1.6a09e667f3bcc908b2fb1366ea95p-16372L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-16448L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x1.6a09e667f3bcc908b2fb1366ea96p-16372L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-16376L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-16376L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-16376L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-16376L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4p-16448L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-16376L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4p-16448L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-16376L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4p-16448L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-16376L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4p-16448L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6484597d89b3754bp-16376L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4p-16496L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484594p-16424L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4p-16496L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484598p-16424L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4p-16496L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484594p-16424L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0x8p-152L 0x4p-16496L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6484598p-16424L : inexact-ok underflow errno-erange-ok += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L 0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-16448L : 0x2p-8224L 0x2p-8224L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908p-8224L 0x1.6a09e667f3bcc908p-8224L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908p-8224L 0x1.6a09e667f3bcc908p-8224L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908p-8224L 0x1.6a09e667f3bcc908p-8224L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc90ap-8224L 0x1.6a09e667f3bcc90ap-8224L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L 0x1.6a09e667f3bcc908b2fb1366ea95p-8224L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-16448L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8224L 0x1.6a09e667f3bcc908b2fb1366ea96p-8224L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-16496L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-16496L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-16496L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L 0x1.6a09e667f3bcc908b2fb1366ea95p-8248L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-16496L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8248L 0x1.6a09e667f3bcc908b2fb1366ea96p-8248L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x8p-152 : 0x2.0000000000002p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2.00000000000000000000000001p-76L 0x2p-76L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed905p-540 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed9052p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fep-540L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffff8p-15912L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x8p-15912L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffff8p-15912L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x8.000000000000001p-540L 0x8p-15912L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffff8p-15912L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x8p-15912L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffff8p-15912L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x8.000000000000001p-540L 0x8p-15912L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffffffffffffffffcp-15912L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x8p-15912L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p-16448L : 0x8p-540L 0x7.fffffffffffffffffffffffffffcp-15912L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p-16448L : 0x8.0000000000000000000000000008p-540L 0x8p-15912L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x8p-540L 0x3.fffffffffffffffcp-15912L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x8p-540L 0x4p-15912L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x8p-540L 0x3.fffffffffffffffcp-15912L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x8.000000000000001p-540L 0x4p-15912L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4p-16448L : 0x8p-540L 0x3.fffffffffffffffffffffffffffep-15912L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4p-16448L : 0x8p-540L 0x4p-15912L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4p-16448L : 0x8p-540L 0x3.fffffffffffffffffffffffffffep-15912L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4p-16448L : 0x8.0000000000000000000000000008p-540L 0x4p-15912L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4p-16496L : 0x8p-540L 0x3.fffffffffffffffffffffffffffep-15960L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4p-16496L : 0x8p-540L 0x4p-15960L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4p-16496L : 0x8p-540L 0x3.fffffffffffffffffffffffffffep-15960L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4p-16496L : 0x8.0000000000000000000000000008p-540L 0x4p-15960L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-5000L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-5000L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-5000L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-5000L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x1p-5000L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x1p-5000L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x1p-5000L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x1p-5000L 0x0p+0L : 0x1p-2500L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x1p-5000L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-96-intel 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffcp-13948L : inexact-ok += csqrt tonearest ldbl-96-intel 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x4p-13948L : inexact-ok += csqrt towardzero ldbl-96-intel 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffcp-13948L : inexact-ok += csqrt upward ldbl-96-intel 0x1p-5000L 0x8p-16448L : 0x1.0000000000000002p-2500L 0x4p-13948L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffcp-13948L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x4p-13948L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffcp-13948L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-5000L 0x8p-16448L : 0x1.0000000000000002p-2500L 0x4p-13948L : inexact-ok += csqrt downward ldbl-128 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffffffffffffffep-13948L : inexact-ok += csqrt tonearest ldbl-128 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x4p-13948L : inexact-ok += csqrt towardzero ldbl-128 0x1p-5000L 0x8p-16448L : 0x1p-2500L 0x3.fffffffffffffffffffffffffffep-13948L : inexact-ok += csqrt upward ldbl-128 0x1p-5000L 0x8p-16448L : 0x1.0000000000000000000000000001p-2500L 0x4p-13948L : inexact-ok += csqrt downward ldbl-96-m68k 0x1p-5000L 0x4p-16448L : 0x1p-2500L 0x1.fffffffffffffffep-13948L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x1p-5000L 0x4p-16448L : 0x1p-2500L 0x2p-13948L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x1p-5000L 0x4p-16448L : 0x1p-2500L 0x1.fffffffffffffffep-13948L : inexact-ok += csqrt upward ldbl-96-m68k 0x1p-5000L 0x4p-16448L : 0x1.0000000000000002p-2500L 0x2p-13948L : inexact-ok += csqrt downward ldbl-128 0x1p-5000L 0x4p-16448L : 0x1p-2500L 0x1.ffffffffffffffffffffffffffffp-13948L : inexact-ok += csqrt tonearest ldbl-128 0x1p-5000L 0x4p-16448L : 0x1p-2500L 0x2p-13948L : inexact-ok += csqrt towardzero ldbl-128 0x1p-5000L 0x4p-16448L : 0x1p-2500L 0x1.ffffffffffffffffffffffffffffp-13948L : inexact-ok += csqrt upward ldbl-128 0x1p-5000L 0x4p-16448L : 0x1.0000000000000000000000000001p-2500L 0x2p-13948L : inexact-ok += csqrt downward ldbl-128 0x1p-5000L 0x4p-16496L : 0x1p-2500L 0x1.ffffffffffffffffffffffffffffp-13996L : inexact-ok += csqrt tonearest ldbl-128 0x1p-5000L 0x4p-16496L : 0x1p-2500L 0x2p-13996L : inexact-ok += csqrt towardzero ldbl-128 0x1p-5000L 0x4p-16496L : 0x1p-2500L 0x1.ffffffffffffffffffffffffffffp-13996L : inexact-ok += csqrt upward ldbl-128 0x1p-5000L 0x4p-16496L : 0x1.0000000000000000000000000001p-2500L 0x2p-13996L : inexact-ok +csqrt 0x1p+16383 0x1p-16494 += csqrt downward flt-32 0xf.fffffp+124f 0x8p-152f : 0xf.fffffp+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0x8p-152f : 0xf.fffffp+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0x8p-152f : 0xf.fffffp+60f 0x0p+0f : inexact-ok underflow errno-erange-ok += csqrt upward flt-32 0xf.fffffp+124f 0x8p-152f : 0x1p+64f 0x8p-152f : inexact-ok underflow errno-erange-ok += csqrt downward dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffd8p+60 0x4.0000020000018p-216 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffep+60 0x4.0000020000018p-216 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffd8p+60 0x4.0000020000018p-216 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0x8p-152 : 0xf.fffff7fffffep+60 0x4.000002000001cp-216 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018p-216L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018008p-216L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018p-216L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffp+60L 0x4.0000020000018p-216L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffep+60L 0x4.0000020000018008p-216L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.0000020000018000014000011804p-216L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x4.00000200000180000140000118p-216L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4.0000020000018000014000011ap-216L : inexact-ok += csqrt downward flt-32 0xf.fffffp+124f 0x0p+0f : 0xf.fffffp+60f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0xf.fffffp+124f 0x0p+0f : 0xf.fffffp+60f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0xf.fffffp+124f 0x0p+0f : 0xf.fffffp+60f 0x0p+0f : inexact-ok += csqrt upward flt-32 0xf.fffffp+124f 0x0p+0f : 0x1p+64f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffep+60 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok += csqrt upward dbl-64 0xf.fffffp+124 0x0p+0 : 0xf.fffff7fffffep+60 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0x0p+0L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt tonearest dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffep+60 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt towardzero dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffd8p+60 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt upward dbl-64 0xf.fffffp+124 0x4p-1076 : 0xf.fffff7fffffep+60 0x4p-1076 : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000c004p-1140L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffp+60L 0x2.000001000000cp-1140L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffep+60L 0x2.000001000000c004p-1140L : inexact-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x2.000001000000c00000a000008cp-1140L : inexact-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x2.000001000000c00000a000008cp-1140L : inexact-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x2.000001000000c00000a000008cp-1140L : inexact-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x2.000001000000c00000a000008c02p-1140L : inexact-ok += csqrt downward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff5cp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4p-1076L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffep+60L 0x8p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffep+60L 0x4p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0xf.fffff7fffffep+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0xf.fffff7fffffdfffp+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0xf.fffff7fffffep+60L 0x4p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0xf.fffff7fffffdfffffeffffff5ff8p+60L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0xf.fffff7fffffdfffffeffffff6p+60L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0xf.ffffffffffff8p+508 0x4p-664 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0xf.ffffffffffff8p+508 0x4p-664 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0xf.ffffffffffff8p+508 0x4p-664 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x1p+512 0x4.0000000000004p-664 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.0000000000001008p-664L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.0000000000001008p-664L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x4.000000000000100000000000006p-664L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x4.000000000000100000000000006p-664L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x4.000000000000100000000000006p-664L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x4.0000000000001000000000000064p-664L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffbffffffffffffcp+508L 0x4.0000000000001p-664L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0xf.ffffffffffffcp+508L 0x4.00000000000010000000000002p-664L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0x0p+0 : 0x1p+512 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffbffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x0p+0L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt tonearest dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt towardzero dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0xf.ffffffffffff8p+508 0x0p+0 : inexact-ok underflow errno-erange-ok += csqrt upward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x1p+512 0x4p-1076 : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x2.0000000000000804p-1588L : inexact-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffp+508L 0x2.00000000000008p-1588L : inexact-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x2.0000000000000804p-1588L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x2.000000000000080000000000003p-1588L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x2.000000000000080000000000003p-1588L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x2.000000000000080000000000003p-1588L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x2.0000000000000800000000000032p-1588L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffbffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0xf.ffffffffffffcp+508L 0x4p-1076L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffcp+508L 0x8p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffcp+508L 0x4p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0xf.ffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0xf.ffffffffffffbffp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0xf.ffffffffffffcp+508L 0x4p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0xf.ffffffffffffbfffffffffffff78p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0xf.ffffffffffffbfffffffffffff8p+508L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt upward ldbl-96-intel 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6485p+8188L 0x5.a827999fcef32428p-8344L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484p+8188L 0x5.a827999fcef3242p-8344L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6485p+8188L 0x5.a827999fcef32428p-8344L : inexact-ok += csqrt downward ldbl-128 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x5.a827999fcef32422cbec4d9baa54p-8344L : inexact-ok += csqrt tonearest ldbl-128 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x5.a827999fcef32422cbec4d9baa54p-8344L : inexact-ok += csqrt towardzero ldbl-128 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x5.a827999fcef32422cbec4d9baa54p-8344L : inexact-ok += csqrt upward ldbl-128 0x8p+16380L 0x8p-152L : 0xb.504f333f9de6484597d89b3754bp+8188L 0x5.a827999fcef32422cbec4d9baa58p-8344L : inexact-ok += csqrt downward ldbl-96-intel 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6485p+8188L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6485p+8188L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p+16380L 0x0p+0L : 0xb.504f333f9de6484597d89b3754bp+8188L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-intel 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt upward ldbl-96-intel 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6485p+8188L 0x2.d413cccfe7799214p-9268L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484p+8188L 0x2.d413cccfe779921p-9268L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6485p+8188L 0x2.d413cccfe7799214p-9268L : inexact-ok += csqrt downward ldbl-128 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x2.d413cccfe779921165f626cdd52ap-9268L : inexact-ok += csqrt tonearest ldbl-128 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x2.d413cccfe779921165f626cdd52ap-9268L : inexact-ok += csqrt towardzero ldbl-128 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x2.d413cccfe779921165f626cdd52ap-9268L : inexact-ok += csqrt upward ldbl-128 0x8p+16380L 0x4p-1076L : 0xb.504f333f9de6484597d89b3754bp+8188L 0x2.d413cccfe779921165f626cdd52cp-9268L : inexact-ok += csqrt downward ldbl-96-intel 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-intel 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-intel 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-intel 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6485p+8188L 0x8p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-m68k 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-m68k 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-m68k 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-m68k 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6485p+8188L 0x4p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0x8p+16380L 0x8p-16448L : 0xb.504f333f9de6484597d89b3754bp+8188L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-m68k 0x8p+16380L 0x4p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-96-m68k 0x8p+16380L 0x4p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-96-m68k 0x8p+16380L 0x4p-16448L : 0xb.504f333f9de6484p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-96-m68k 0x8p+16380L 0x4p-16448L : 0xb.504f333f9de6485p+8188L 0x4p-16448L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0x8p+16380L 0x4p-16448L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0x8p+16380L 0x4p-16448L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0x8p+16380L 0x4p-16448L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0x8p+16380L 0x4p-16448L : 0xb.504f333f9de6484597d89b3754bp+8188L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0x8p+16380L 0x4p-16496L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0x8p+16380L 0x4p-16496L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0x8p+16380L 0x4p-16496L : 0xb.504f333f9de6484597d89b3754a8p+8188L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0x8p+16380L 0x4p-16496L : 0xb.504f333f9de6484597d89b3754bp+8188L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x4.0000000000000800000000000098p-664L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffdep+508L 0x4.0000000000000800000000000098p-664L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x4.0000000000000800000000000098p-664L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffdep+508L 0x4.000000000000080000000000009cp-664L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffcp+508L 0x4.00000000000008p-664L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffcp+508L 0x4.00000000000008p-664L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffdffffffffffffcp+508L 0x4.00000000000008p-664L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0xf.ffffffffffffep+508L 0x4.00000000000008000000000002p-664L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffdep+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffdep+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x0p+0L : 0xf.ffffffffffffep+508L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x2.000000000000040000000000004cp-1588L : inexact-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffdep+508L 0x2.000000000000040000000000004cp-1588L : inexact-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x2.000000000000040000000000004cp-1588L : inexact-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffdep+508L 0x2.000000000000040000000000004ep-1588L : inexact-ok += csqrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffdffffffffffffcp+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0xf.ffffffffffffep+508L 0x4p-1076L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0xf.ffffffffffffdffffffffffffdep+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0xf.ffffffffffffdffffffffffffdep+508L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0xf.ffffffffffffdffffffffffffdep+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0xf.ffffffffffffdffffffffffffdep+508L 0x4p-16496L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0xf.ffffffffffffdffffffffffffdep+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0xf.ffffffffffffdffffffffffffdd8p+508L 0x0p+0L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0xf.ffffffffffffdffffffffffffdep+508L 0x4p-16496L : inexact-ok underflow errno-erange-ok +csqrt 0x1p-16494 0x1p+16383 += csqrt downward flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt upward flt-32 0x8p-152f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt downward dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt upward dbl-64 0x8p-152 0xf.fffffp+124 : 0xb.504f2d97764b8p+60 0xb.504f2d97764b8p+60 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt downward dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt upward dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de68p+508 0xb.504f333f9de68p+508 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p+16380L : 0x8.0000000000000000000000000008p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt downward flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f2p+60f 0xb.504f2p+60f : inexact-ok += csqrt upward flt-32 0x0p+0f 0xf.fffffp+124f : 0xb.504f3p+60f 0xb.504f3p+60f : inexact-ok += csqrt downward dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt upward dbl-64 0x0p+0 0xf.fffffp+124 : 0xb.504f2d97764b8p+60 0xb.504f2d97764b8p+60 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt downward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt upward dbl-64 0x0p+0 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de68p+508 0xb.504f333f9de68p+508 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764bp+60 0xb.504f2d97764bp+60 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0xf.fffffp+124 : 0xb.504f2d97764b8p+60 0xb.504f2d97764b8p+60 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbaf8p+60L 0xb.504f2d97764b3e6cbd977fbaf8p+60L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafcp+60L 0xb.504f2d97764b3e6cbd977fbafcp+60L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de6p+508 0xb.504f333f9de6p+508 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0xb.504f333f9de68p+508 0xb.504f333f9de68p+508 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfb8p+508L 0xb.504f333f9de61b045b0b9cbfb8p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbcp+508L 0xb.504f333f9de61b045b0b9cbfbcp+508L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p+16380L : 0x8.0000000000000000000000000008p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb84p+508L 0xb.504f333f9de631a4f9721bfb84p+508L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb88p+508L 0xb.504f333f9de631a4f9721bfb88p+508L : inexact-ok += csqrt downward ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-96-intel 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-16448L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-16448L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt tonearest ldbl-128 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0x8p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt upward ldbl-128 0x8p-16448L 0x8p+16380L : 0x8.0000000000000000000000000008p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6p+60L 0xb.504f2d97764b3e6p+60L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e7p+60L 0xb.504f2d97764b3e7p+60L : inexact-ok += csqrt downward ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61bp+508L 0xb.504f333f9de61bp+508L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b1p+508L 0xb.504f333f9de61b1p+508L : inexact-ok += csqrt downward ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-16448L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffff8p+8188L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-16448L 0x8p+16380L : 0x8.000000000000001p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x4p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16448L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16448L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt upward ldbl-128 0x4p-16448L 0x8p+16380L : 0x8.0000000000000000000000000008p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok += csqrt downward ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa38p+60L 0xb.504f2d97764b3e6cbd977fbafa38p+60L : inexact-ok += csqrt upward ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0xb.504f2d97764b3e6cbd977fbafa4p+60L 0xb.504f2d97764b3e6cbd977fbafa4p+60L : inexact-ok += csqrt downward ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb3p+508L 0xb.504f333f9de61b045b0b9cbfbb3p+508L : inexact-ok += csqrt upward ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0xb.504f333f9de61b045b0b9cbfbb38p+508L 0xb.504f333f9de61b045b0b9cbfbb38p+508L : inexact-ok += csqrt downward ldbl-128 0x4p-16496L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16496L 0x8p+16380L : 0x8p+8188L 0x8p+8188L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16496L 0x8p+16380L : 0x8p+8188L 0x7.fffffffffffffffffffffffffffcp+8188L : inexact-ok += csqrt upward ldbl-128 0x4p-16496L 0x8p+16380L : 0x8.0000000000000000000000000008p+8188L 0x8p+8188L : inexact-ok += csqrt downward ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb8698p+508L 0xb.504f333f9de631a4f9721bfb8698p+508L : inexact-ok += csqrt upward ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xb.504f333f9de631a4f9721bfb86ap+508L 0xb.504f333f9de631a4f9721bfb86ap+508L : inexact-ok +csqrt 0x1.0000000000000000000000000001p-16382 0x1.0000000000000000000000000001p-16382 += csqrt downward flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x8p-152f : 0x3.1b884p-76f 0x1.49852ep-76f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x8p-152f : 0x3.1b8844p-76f 0x1.49853p-76f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab804p-76 0x1.49852f983efddp-76 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x8p-152 : 0x3.1b884327ab806p-76 0x1.49852f983efdep-76 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057ep-76L 0x1.49852f983efdd57ap-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e4p-76L 0x1.49852f983efdd57cp-76L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396694p-76L 0x1.49852f983efdd57b4bab8f320d16p-76L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f396696p-76L 0x1.49852f983efdd57b4bab8f320d17p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3966p-76L 0x1.49852f983efdd57b4bab8f320dp-76L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0x3.1b884327ab8057e2c8727f3967p-76L 0x1.49852f983efdd57b4bab8f320d8p-76L : inexact-ok += csqrt downward flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x8p-152f 0x0p+0f : 0x2.d413ccp-76f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x8p-152f 0x0p+0f : 0x2.d413dp-76f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe7798p-76 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x0p+0 : 0x2.d413cccfe779ap-76 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x0p+0L : 0x2.d413cccfe7799214p-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52ap-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd52cp-76L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd5p-76L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x0p+0L : 0x2.d413cccfe779921165f626cdd6p-76L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt tonearest dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt towardzero dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe7798p-76 0xb.504f333f9de6p-1004 : inexact-ok += csqrt upward dbl-64 0x8p-152 0x4p-1076 : 0x2.d413cccfe779ap-76 0xb.504f333f9de68p-1004 : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-1004L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-1004L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-1004L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6484597d89b3754bp-1004L : inexact-ok += csqrt downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd5p-76L 0xb.504f333f9de6484594p-1004L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x2.d413cccfe779921165f626cdd6p-76L 0xb.504f333f9de6484598p-1004L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6485p-16312L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6486p-16312L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6485p-16312L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6486p-16312L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6485p-16312L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6486p-16312L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6485p-16312L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6486p-16312L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6485c387701b69078p-16312L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6485c387701b69078p-16312L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6485c387701b69078p-16312L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4.0000000000000008p-16384L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6485c387701b6908p-16312L : inexact-ok += csqrt downward ldbl-96-intel 0x8p-152L 0x4p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-16312L : inexact-ok += csqrt tonearest ldbl-96-intel 0x8p-152L 0x4p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-16312L : inexact-ok += csqrt towardzero ldbl-96-intel 0x8p-152L 0x4p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-16312L : inexact-ok += csqrt upward ldbl-96-intel 0x8p-152L 0x4p-16384L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-16312L : inexact-ok += csqrt downward ldbl-96-m68k 0x8p-152L 0x4p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-16312L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x8p-152L 0x4p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-16312L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x8p-152L 0x4p-16384L : 0x2.d413cccfe779921p-76L 0xb.504f333f9de6484p-16312L : inexact-ok += csqrt upward ldbl-96-m68k 0x8p-152L 0x4p-16384L : 0x2.d413cccfe7799214p-76L 0xb.504f333f9de6485p-16312L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-16312L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-16312L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754a8p-16312L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4p-16384L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6484597d89b3754bp-16312L : inexact-ok += csqrt downward ldbl-128 0x8p-152L 0x4.0000000000000000000000000004p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754bp-16312L : inexact-ok += csqrt tonearest ldbl-128 0x8p-152L 0x4.0000000000000000000000000004p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754b8p-16312L : inexact-ok += csqrt towardzero ldbl-128 0x8p-152L 0x4.0000000000000000000000000004p-16384L : 0x2.d413cccfe779921165f626cdd52ap-76L 0xb.504f333f9de6484597d89b3754bp-16312L : inexact-ok += csqrt upward ldbl-128 0x8p-152L 0x4.0000000000000000000000000004p-16384L : 0x2.d413cccfe779921165f626cdd52cp-76L 0xb.504f333f9de6484597d89b3754b8p-16312L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x8p-152f : 0x2p-76f 0x2p-76f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += csqrt downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt tonearest dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef3p-540 0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 0x0p+0 0x4p-1076 : 0x5.a827999fcef34p-540 0x5.a827999fcef34p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L 0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm 0x0p+0L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L 0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90cp-8192L 0x1.6a09e667f3bcc90cp-8192L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90cp-8192L 0x1.6a09e667f3bcc90cp-8192L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede53p-8192L 0x1.6a09e667f3bcc90a1d04f9cede53p-8192L : inexact-ok += csqrt downward ldbl-96-intel 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L 0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt tonearest ldbl-96-intel 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L 0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt towardzero ldbl-96-intel 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L 0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt upward ldbl-96-intel 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt downward ldbl-96-m68k 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L 0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L 0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L 0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt upward ldbl-96-m68k 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc90ap-8192L 0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8192L 0x1.6a09e667f3bcc908b2fb1366ea95p-8192L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8192L 0x1.6a09e667f3bcc908b2fb1366ea95p-8192L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8192L 0x1.6a09e667f3bcc908b2fb1366ea95p-8192L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L : inexact-ok += csqrt downward ldbl-128 0x0p+0L 0x4.0000000000000000000000000004p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L : inexact-ok += csqrt tonearest ldbl-128 0x0p+0L 0x4.0000000000000000000000000004p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L : inexact-ok += csqrt towardzero ldbl-128 0x0p+0L 0x4.0000000000000000000000000004p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L : inexact-ok += csqrt upward ldbl-128 0x0p+0L 0x4.0000000000000000000000000004p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea97p-8192L 0x1.6a09e667f3bcc908b2fb1366ea97p-8192L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x2p-76 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x8p-152 : 0x2p-76 0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x8p-152 : 0x2.0000000000002p-76 0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x2.00000000000000000000000001p-76L 0x2p-76L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x0p+0 : 0x8p-540 0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x0p+0L : 0x8p-540L 0x0p+0L : inexact-ok += csqrt downward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt tonearest dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed905p-540 : inexact-ok += csqrt towardzero dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fcp-540 0x3.a406271ed905p-540 : inexact-ok += csqrt upward dbl-64 0x4p-1076 0x4p-1076 : 0x8.ca1ae57fd4fc8p-540 0x3.a406271ed9052p-540 : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abp-540L 0x3.a406271ed90504ccp-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5acp-540L 0x3.a406271ed90504dp-540L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L 0x3.a406271ed90504cef98de00eb2fcp-540L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L 0x3.a406271ed90504cef98de00eb2fep-540L : inexact-ok += csqrt downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok += csqrt towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L 0x3.a406271ed90504cef98de00eb2p-540L : inexact-ok += csqrt upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L 0x3.a406271ed90504cef98de00eb3p-540L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8.000000000000001p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8.000000000000001p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4.0000000000000007fffffffffffcp-15848L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8p-540L 0x4.0000000000000007fffffffffffcp-15848L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4.0000000000000008p-16384L : 0x8.0000000000000000000000000008p-540L 0x4.0000000000000008p-15848L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-1076L 0x4p-16384L : 0x8p-540L 0x3.fffffffffffffffcp-15848L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-1076L 0x4p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-1076L 0x4p-16384L : 0x8p-540L 0x3.fffffffffffffffcp-15848L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-1076L 0x4p-16384L : 0x8.000000000000001p-540L 0x4p-15848L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-1076L 0x4p-16384L : 0x8p-540L 0x3.fffffffffffffffcp-15848L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-1076L 0x4p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-1076L 0x4p-16384L : 0x8p-540L 0x3.fffffffffffffffcp-15848L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-1076L 0x4p-16384L : 0x8.000000000000001p-540L 0x4p-15848L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4p-16384L : 0x8p-540L 0x3.fffffffffffffffffffffffffffep-15848L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4p-16384L : 0x8p-540L 0x3.fffffffffffffffffffffffffffep-15848L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4p-16384L : 0x8.0000000000000000000000000008p-540L 0x4p-15848L : inexact-ok += csqrt downward ldbl-128 0x4p-1076L 0x4.0000000000000000000000000004p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt tonearest ldbl-128 0x4p-1076L 0x4.0000000000000000000000000004p-16384L : 0x8p-540L 0x4.0000000000000000000000000004p-15848L : inexact-ok += csqrt towardzero ldbl-128 0x4p-1076L 0x4.0000000000000000000000000004p-16384L : 0x8p-540L 0x4p-15848L : inexact-ok += csqrt upward ldbl-128 0x4p-1076L 0x4.0000000000000000000000000004p-16384L : 0x8.0000000000000000000000000008p-540L 0x4.0000000000000000000000000004p-15848L : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000000008p-16384L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000008p-16384L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000008p-16384L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000004p-8192L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000000008p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000004p-8192L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000001fffffffffffep-8192L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000002p-8192L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000001fffffffffffep-8192L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000008p-16384L 0x0p+0L : 0x2.0000000000000002p-8192L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000008p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b4p-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b4p-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b13c95c095af14p-8192L 0xe.90189c7b6414134a76501cb63p-8196L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b13c95c095af14p-8192L 0xe.90189c7b6414134a76501cb63008p-8196L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b13c95c095af14p-8192L 0xe.90189c7b6414134a76501cb63p-8196L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16b13c95c095af16p-8192L 0xe.90189c7b6414134a76501cb63008p-8196L : inexact-ok += csqrt downward ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414133p-8196L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414133p-8196L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414133p-8196L : inexact-ok += csqrt upward ldbl-96-intel 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16b4p-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt downward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414133p-8196L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414133p-8196L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414133p-8196L : inexact-ok += csqrt upward ldbl-96-m68k 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16b4p-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16b097d328c98f96p-8192L 0xe.90189c7b641413319a0e0378d4p-8196L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16b097d328c98f96p-8192L 0xe.90189c7b641413319a0e0378d4p-8196L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16b097d328c98f96p-8192L 0xe.90189c7b641413319a0e0378d4p-8196L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000008p-16384L 0x4p-16384L : 0x2.3286b95ff53f16b097d328c98f98p-8192L 0xe.90189c7b641413319a0e0378d408p-8196L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16b097d328c98f96p-8192L 0xe.90189c7b641413319a0e0378d408p-8196L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16b097d328c98f96p-8192L 0xe.90189c7b641413319a0e0378d41p-8196L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16b097d328c98f96p-8192L 0xe.90189c7b641413319a0e0378d408p-8196L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000008p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16b097d328c98f98p-8192L 0xe.90189c7b641413319a0e0378d41p-8196L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-16384L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-16384L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-16384L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-16384L 0x8p-152L : 0x2p-76L 0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-16384L 0x8p-152L : 0x2.0000000000000004p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x4p-16384L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16384L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16384L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x4p-16384L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x4p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef3242p-540L 0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef32428p-540L 0x5.a827999fcef32428p-540L : inexact-ok += csqrt downward ldbl-128 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x4p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16acp-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16acp-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414136p-8196L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16acp-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16acp-8192L 0xe.90189c7b6414135p-8196L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414136p-8196L : inexact-ok += csqrt downward ldbl-128 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16afaed19f01d954p-8192L 0xe.90189c7b64141354c279997827fp-8196L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16afaed19f01d954p-8192L 0xe.90189c7b64141354c279997827fp-8196L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16afaed19f01d954p-8192L 0xe.90189c7b64141354c279997827fp-8196L : inexact-ok += csqrt upward ldbl-128 0x4p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16afaed19f01d956p-8192L 0xe.90189c7b64141354c279997827f8p-8196L : inexact-ok += csqrt downward ldbl-96-intel 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16acp-8192L 0xe.90189c7b6414133p-8196L : inexact-ok += csqrt tonearest ldbl-96-intel 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt towardzero ldbl-96-intel 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16acp-8192L 0xe.90189c7b6414133p-8196L : inexact-ok += csqrt upward ldbl-96-intel 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt downward ldbl-96-m68k 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16acp-8192L 0xe.90189c7b6414133p-8196L : inexact-ok += csqrt tonearest ldbl-96-m68k 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt towardzero ldbl-96-m68k 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16acp-8192L 0xe.90189c7b6414133p-8196L : inexact-ok += csqrt upward ldbl-96-m68k 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16bp-8192L 0xe.90189c7b6414134p-8196L : inexact-ok += csqrt downward ldbl-128 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d4p-8192L 0xe.90189c7b6414133be637803acbfp-8196L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d6p-8192L 0xe.90189c7b6414133be637803acbfp-8196L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d4p-8192L 0xe.90189c7b6414133be637803acbfp-8196L : inexact-ok += csqrt upward ldbl-128 0x4p-16384L 0x4p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d6p-8192L 0xe.90189c7b6414133be637803acbf8p-8196L : inexact-ok += csqrt downward ldbl-128 0x4p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d6p-8192L 0xe.90189c7b6414133be637803acbf8p-8196L : inexact-ok += csqrt tonearest ldbl-128 0x4p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d6p-8192L 0xe.90189c7b6414133be637803accp-8196L : inexact-ok += csqrt towardzero ldbl-128 0x4p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d6p-8192L 0xe.90189c7b6414133be637803acbf8p-8196L : inexact-ok += csqrt upward ldbl-128 0x4p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d8p-8192L 0xe.90189c7b6414133be637803accp-8196L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000000000000000004p-16384L 0x8p-152L : 0x2p-76L 0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000000000000000004p-16384L 0x8p-152L : 0x2p-76L 0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x8p-152L : 0x2.0000000000000000000000000002p-76L 0x2p-76L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000000000000000004p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000000000000000004p-16384L 0x0p+0L : 0x2p-8192L 0x0p+0L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x0p+0L : 0x2.0000000000000000000000000002p-8192L 0x0p+0L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L 0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L 0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16afaed19f01d954p-8192L 0xe.90189c7b64141354c279997827e8p-8196L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16afaed19f01d956p-8192L 0xe.90189c7b64141354c279997827fp-8196L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16afaed19f01d954p-8192L 0xe.90189c7b64141354c279997827e8p-8196L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4.0000000000000008p-16384L : 0x2.3286b95ff53f16afaed19f01d956p-8192L 0xe.90189c7b64141354c279997827fp-8196L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d6p-8192L 0xe.90189c7b6414133be637803acbe8p-8196L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d6p-8192L 0xe.90189c7b6414133be637803acbe8p-8196L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d6p-8192L 0xe.90189c7b6414133be637803acbe8p-8196L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d8p-8192L 0xe.90189c7b6414133be637803acbfp-8196L : inexact-ok += csqrt downward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d6p-8192L 0xe.90189c7b6414133be637803acbfp-8196L : inexact-ok += csqrt tonearest ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d8p-8192L 0xe.90189c7b6414133be637803acbf8p-8196L : inexact-ok += csqrt towardzero ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d6p-8192L 0xe.90189c7b6414133be637803acbfp-8196L : inexact-ok += csqrt upward ldbl-128 0x4.0000000000000000000000000004p-16384L 0x4.0000000000000000000000000004p-16384L : 0x2.3286b95ff53f16af0a0f0735b9d8p-8192L 0xe.90189c7b6414133be637803acbf8p-8196L : inexact-ok +csqrt -0x1.0000000000000000000000000001p-16382 -0x1.0000000000000000000000000001p-16382 += csqrt downward flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt tonearest flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt towardzero flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt upward flt-32 -0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += csqrt downward dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt tonearest dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt towardzero dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt upward dbl-64 -0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt tonearest ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt towardzero ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt upward ldbl-128ibm -0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += csqrt downward flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt tonearest flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt towardzero flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt upward flt-32 -0x0p+0f -0x8p-152f : 0x2p-76f -0x2p-76f : inexact-ok += csqrt downward dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt tonearest dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt towardzero dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt upward dbl-64 -0x0p+0 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x0p+0L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt downward dbl-64 -0x0p+0 -0x4p-1076 : 0x5.a827999fcef3p-540 -0x5.a827999fcef34p-540 : inexact-ok += csqrt tonearest dbl-64 -0x0p+0 -0x4p-1076 : 0x5.a827999fcef34p-540 -0x5.a827999fcef34p-540 : inexact-ok += csqrt towardzero dbl-64 -0x0p+0 -0x4p-1076 : 0x5.a827999fcef3p-540 -0x5.a827999fcef3p-540 : inexact-ok += csqrt upward dbl-64 -0x0p+0 -0x4p-1076 : 0x5.a827999fcef34p-540 -0x5.a827999fcef3p-540 : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef32428p-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32428p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef32428p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32428p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt downward ldbl-128ibm -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L -0x5.a827999fcef32422cbec4d9bacp-540L : inexact-ok += csqrt tonearest ldbl-128ibm -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L -0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt towardzero ldbl-128ibm -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baap-540L -0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt upward ldbl-128ibm -0x0p+0L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9bacp-540L -0x5.a827999fcef32422cbec4d9baap-540L : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L -0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L -0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L -0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc908p-8192L -0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc908p-8192L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8192L -0x1.6a09e667f3bcc908b2fb1366ea96p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8192L -0x1.6a09e667f3bcc908b2fb1366ea95p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea95p-8192L -0x1.6a09e667f3bcc908b2fb1366ea95p-8192L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x4p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L -0x1.6a09e667f3bcc908b2fb1366ea95p-8192L : inexact-ok += csqrt downward ldbl-96-intel -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90cp-8192L : inexact-ok += csqrt tonearest ldbl-96-intel -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt towardzero ldbl-96-intel -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt upward ldbl-96-intel -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90cp-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt downward ldbl-96-m68k -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90cp-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90ap-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt upward ldbl-96-m68k -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90cp-8192L -0x1.6a09e667f3bcc90ap-8192L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L -0x1.6a09e667f3bcc90a1d04f9cede53p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L -0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede52p-8192L -0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x4.0000000000000008p-16384L : 0x1.6a09e667f3bcc90a1d04f9cede53p-8192L -0x1.6a09e667f3bcc90a1d04f9cede52p-8192L : inexact-ok += csqrt downward ldbl-128 -0x0p+0L -0x4.0000000000000000000000000004p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L -0x1.6a09e667f3bcc908b2fb1366ea96p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x0p+0L -0x4.0000000000000000000000000004p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L -0x1.6a09e667f3bcc908b2fb1366ea96p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x0p+0L -0x4.0000000000000000000000000004p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea96p-8192L -0x1.6a09e667f3bcc908b2fb1366ea95p-8192L : inexact-ok += csqrt upward ldbl-128 -0x0p+0L -0x4.0000000000000000000000000004p-16384L : 0x1.6a09e667f3bcc908b2fb1366ea97p-8192L -0x1.6a09e667f3bcc908b2fb1366ea95p-8192L : inexact-ok += csqrt downward flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413dp-76f : inexact-ok += csqrt tonearest flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413ccp-76f : inexact-ok += csqrt towardzero flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413ccp-76f : inexact-ok += csqrt upward flt-32 -0x8p-152f -0x0p+0f : 0x0p+0f -0x2.d413ccp-76f : inexact-ok += csqrt downward dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt tonearest dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt towardzero dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt upward dbl-64 -0x8p-152 -0x0p+0 : 0x0p+0 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52cp-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt downward ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd6p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x8p-152L -0x0p+0L : 0x0p+0L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok += csqrt downward flt-32 -0x8p-152f -0x8p-152f : 0x1.49852ep-76f -0x3.1b8844p-76f : inexact-ok += csqrt tonearest flt-32 -0x8p-152f -0x8p-152f : 0x1.49853p-76f -0x3.1b8844p-76f : inexact-ok += csqrt towardzero flt-32 -0x8p-152f -0x8p-152f : 0x1.49852ep-76f -0x3.1b884p-76f : inexact-ok += csqrt upward flt-32 -0x8p-152f -0x8p-152f : 0x1.49853p-76f -0x3.1b884p-76f : inexact-ok += csqrt downward dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efddp-76 -0x3.1b884327ab806p-76 : inexact-ok += csqrt tonearest dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efddp-76 -0x3.1b884327ab806p-76 : inexact-ok += csqrt towardzero dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efddp-76 -0x3.1b884327ab804p-76 : inexact-ok += csqrt upward dbl-64 -0x8p-152 -0x8p-152 : 0x1.49852f983efdep-76 -0x3.1b884327ab804p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057e4p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57ap-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57cp-76L -0x3.1b884327ab8057ep-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d16p-76L -0x3.1b884327ab8057e2c8727f396696p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d17p-76L -0x3.1b884327ab8057e2c8727f396694p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d16p-76L -0x3.1b884327ab8057e2c8727f396694p-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d17p-76L -0x3.1b884327ab8057e2c8727f396694p-76L : inexact-ok += csqrt downward ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320dp-76L -0x3.1b884327ab8057e2c8727f3967p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320dp-76L -0x3.1b884327ab8057e2c8727f3967p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320dp-76L -0x3.1b884327ab8057e2c8727f3966p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x8p-152L -0x8p-152L : 0x1.49852f983efdd57b4bab8f320d8p-76L -0x3.1b884327ab8057e2c8727f3966p-76L : inexact-ok += csqrt downward dbl-64 -0x8p-152 -0x4p-1076 : 0xb.504f333f9de6p-1004 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt tonearest dbl-64 -0x8p-152 -0x4p-1076 : 0xb.504f333f9de68p-1004 -0x2.d413cccfe779ap-76 : inexact-ok += csqrt towardzero dbl-64 -0x8p-152 -0x4p-1076 : 0xb.504f333f9de6p-1004 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt upward dbl-64 -0x8p-152 -0x4p-1076 : 0xb.504f333f9de68p-1004 -0x2.d413cccfe7798p-76 : inexact-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6485p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6485p-1004L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p-1004L -0x2.d413cccfe779921165f626cdd52cp-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p-1004L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484597d89b3754a8p-1004L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484597d89b3754bp-1004L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt downward ldbl-128ibm -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484594p-1004L -0x2.d413cccfe779921165f626cdd6p-76L : inexact-ok underflow errno-erange-ok += csqrt tonearest ldbl-128ibm -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484598p-1004L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok underflow errno-erange-ok += csqrt towardzero ldbl-128ibm -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484594p-1004L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok underflow errno-erange-ok += csqrt upward ldbl-128ibm -0x8p-152L -0x4p-1076L : 0xb.504f333f9de6484598p-1004L -0x2.d413cccfe779921165f626cdd5p-76L : inexact-ok underflow errno-erange-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6484p-16312L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6484p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6484p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6485p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6484p-16312L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6484p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6484p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6485p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6484597d89b3754a8p-16312L -0x2.d413cccfe779921165f626cdd52cp-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6484597d89b3754a8p-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6484597d89b3754a8p-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x4p-16384L : 0xb.504f333f9de6484597d89b3754bp-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt downward ldbl-96-intel -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485p-16312L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6486p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-intel -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6486p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485p-16312L -0x2.d413cccfe7799214p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6486p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6486p-16312L -0x2.d413cccfe779921p-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485c387701b69078p-16312L -0x2.d413cccfe779921165f626cdd52cp-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485c387701b69078p-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485c387701b69078p-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x4.0000000000000008p-16384L : 0xb.504f333f9de6485c387701b6908p-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt downward ldbl-128 -0x8p-152L -0x4.0000000000000000000000000004p-16384L : 0xb.504f333f9de6484597d89b3754bp-16312L -0x2.d413cccfe779921165f626cdd52cp-76L : inexact-ok += csqrt tonearest ldbl-128 -0x8p-152L -0x4.0000000000000000000000000004p-16384L : 0xb.504f333f9de6484597d89b3754b8p-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt towardzero ldbl-128 -0x8p-152L -0x4.0000000000000000000000000004p-16384L : 0xb.504f333f9de6484597d89b3754bp-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt upward ldbl-128 -0x8p-152L -0x4.0000000000000000000000000004p-16384L : 0xb.504f333f9de6484597d89b3754b8p-16312L -0x2.d413cccfe779921165f626cdd52ap-76L : inexact-ok += csqrt downward dbl-64 -0x4p-1076 -0x0p+0 : 0x0p+0 -0x8p-540 : inexact-ok += csqrt tonearest dbl-64 -0x4p-1076 -0x0p+0 : 0x0p+0 -0x8p-540 : inexact-ok += csqrt towardzero dbl-64 -0x4p-1076 -0x0p+0 : 0x0p+0 -0x8p-540 : inexact-ok += csqrt upward dbl-64 -0x4p-1076 -0x0p+0 : 0x0p+0 -0x8p-540 : inexact-ok += csqrt downward ldbl-96-intel -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt downward ldbl-128 -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt upward ldbl-128 -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt downward ldbl-128ibm -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-128ibm -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-128ibm -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt upward ldbl-128ibm -0x4p-1076L -0x0p+0L : 0x0p+0L -0x8p-540L : inexact-ok += csqrt downward dbl-64 -0x4p-1076 -0x8p-152 : 0x1.fffffffffffffp-76 -0x2p-76 : inexact-ok += csqrt tonearest dbl-64 -0x4p-1076 -0x8p-152 : 0x2p-76 -0x2p-76 : inexact-ok += csqrt towardzero dbl-64 -0x4p-1076 -0x8p-152 : 0x1.fffffffffffffp-76 -0x1.fffffffffffffp-76 : inexact-ok += csqrt upward dbl-64 -0x4p-1076 -0x8p-152 : 0x2p-76 -0x1.fffffffffffffp-76 : inexact-ok += csqrt downward ldbl-96-intel -0x4p-1076L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-1076L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-1076L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-1076L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-1076L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-1076L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-1076L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-1076L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-128 -0x4p-1076L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-1076L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-1076L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 -0x4p-1076L -0x8p-152L : 0x2p-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt downward ldbl-128ibm -0x4p-1076L -0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128ibm -0x4p-1076L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128ibm -0x4p-1076L -0x8p-152L : 0x1.ffffffffffffffffffffffffff8p-76L -0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt upward ldbl-128ibm -0x4p-1076L -0x8p-152L : 0x2p-76L -0x1.ffffffffffffffffffffffffff8p-76L : inexact-ok += csqrt downward dbl-64 -0x4p-1076 -0x4p-1076 : 0x3.a406271ed905p-540 -0x8.ca1ae57fd4fc8p-540 : inexact-ok += csqrt tonearest dbl-64 -0x4p-1076 -0x4p-1076 : 0x3.a406271ed905p-540 -0x8.ca1ae57fd4fc8p-540 : inexact-ok += csqrt towardzero dbl-64 -0x4p-1076 -0x4p-1076 : 0x3.a406271ed905p-540 -0x8.ca1ae57fd4fcp-540 : inexact-ok += csqrt upward dbl-64 -0x4p-1076 -0x4p-1076 : 0x3.a406271ed9052p-540 -0x8.ca1ae57fd4fcp-540 : inexact-ok += csqrt downward ldbl-96-intel -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504ccp-540L -0x8.ca1ae57fd4fc5acp-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504dp-540L -0x8.ca1ae57fd4fc5acp-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504ccp-540L -0x8.ca1ae57fd4fc5abp-540L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504dp-540L -0x8.ca1ae57fd4fc5abp-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504ccp-540L -0x8.ca1ae57fd4fc5acp-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504dp-540L -0x8.ca1ae57fd4fc5acp-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504ccp-540L -0x8.ca1ae57fd4fc5abp-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504dp-540L -0x8.ca1ae57fd4fc5abp-540L : inexact-ok += csqrt downward ldbl-128 -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2fcp-540L -0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2fcp-540L -0x8.ca1ae57fd4fc5abc283c1cd6e758p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2fcp-540L -0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L : inexact-ok += csqrt upward ldbl-128 -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2fep-540L -0x8.ca1ae57fd4fc5abc283c1cd6e75p-540L : inexact-ok += csqrt downward ldbl-128ibm -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2p-540L -0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L : inexact-ok += csqrt tonearest ldbl-128ibm -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb3p-540L -0x8.ca1ae57fd4fc5abc283c1cd6e8p-540L : inexact-ok += csqrt towardzero ldbl-128ibm -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb2p-540L -0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L : inexact-ok += csqrt upward ldbl-128ibm -0x4p-1076L -0x4p-1076L : 0x3.a406271ed90504cef98de00eb3p-540L -0x8.ca1ae57fd4fc5abc283c1cd6e4p-540L : inexact-ok += csqrt downward ldbl-96-intel -0x4p-1076L -0x4p-16384L : 0x3.fffffffffffffffcp-15848L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-1076L -0x4p-16384L : 0x4p-15848L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-1076L -0x4p-16384L : 0x3.fffffffffffffffcp-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-1076L -0x4p-16384L : 0x4p-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-1076L -0x4p-16384L : 0x3.fffffffffffffffcp-15848L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-1076L -0x4p-16384L : 0x4p-15848L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-1076L -0x4p-16384L : 0x3.fffffffffffffffcp-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-1076L -0x4p-16384L : 0x4p-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt downward ldbl-128 -0x4p-1076L -0x4p-16384L : 0x3.fffffffffffffffffffffffffffep-15848L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-1076L -0x4p-16384L : 0x4p-15848L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-1076L -0x4p-16384L : 0x3.fffffffffffffffffffffffffffep-15848L -0x7.fffffffffffffffffffffffffffcp-540L : inexact-ok += csqrt upward ldbl-128 -0x4p-1076L -0x4p-16384L : 0x4p-15848L -0x7.fffffffffffffffffffffffffffcp-540L : inexact-ok += csqrt downward ldbl-96-intel -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4p-15848L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4p-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4p-15848L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4p-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x7.fffffffffffffff8p-540L : inexact-ok += csqrt downward ldbl-128 -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000007fffffffffffcp-15848L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000007fffffffffffcp-15848L -0x7.fffffffffffffffffffffffffffcp-540L : inexact-ok += csqrt upward ldbl-128 -0x4p-1076L -0x4.0000000000000008p-16384L : 0x4.0000000000000008p-15848L -0x7.fffffffffffffffffffffffffffcp-540L : inexact-ok += csqrt downward ldbl-128 -0x4p-1076L -0x4.0000000000000000000000000004p-16384L : 0x4p-15848L -0x8p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-1076L -0x4.0000000000000000000000000004p-16384L : 0x4.0000000000000000000000000004p-15848L -0x8p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-1076L -0x4.0000000000000000000000000004p-16384L : 0x4p-15848L -0x7.fffffffffffffffffffffffffffcp-540L : inexact-ok += csqrt upward ldbl-128 -0x4p-1076L -0x4.0000000000000000000000000004p-16384L : 0x4.0000000000000000000000000004p-15848L -0x7.fffffffffffffffffffffffffffcp-540L : inexact-ok += csqrt downward ldbl-96-intel -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt downward ldbl-128 -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt downward ldbl-96-intel -0x4p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-16384L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-16384L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-16384L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-16384L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-128 -0x4p-16384L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-16384L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-16384L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 -0x4p-16384L -0x8p-152L : 0x2p-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt downward ldbl-96-intel -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef32428p-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef32428p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef32428p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef32428p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt downward ldbl-128 -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 -0x4p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt downward ldbl-96-intel -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414133p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414133p-8196L -0x2.3286b95ff53f16acp-8192L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16acp-8192L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414133p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414133p-8196L -0x2.3286b95ff53f16acp-8192L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16acp-8192L : inexact-ok += csqrt downward ldbl-128 -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414133be637803acbfp-8196L -0x2.3286b95ff53f16af0a0f0735b9d6p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414133be637803acbfp-8196L -0x2.3286b95ff53f16af0a0f0735b9d6p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414133be637803acbfp-8196L -0x2.3286b95ff53f16af0a0f0735b9d4p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4p-16384L -0x4p-16384L : 0xe.90189c7b6414133be637803acbf8p-8196L -0x2.3286b95ff53f16af0a0f0735b9d4p-8192L : inexact-ok += csqrt downward ldbl-96-intel -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16acp-8192L : inexact-ok += csqrt upward ldbl-96-intel -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414136p-8196L -0x2.3286b95ff53f16acp-8192L : inexact-ok += csqrt downward ldbl-96-m68k -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16acp-8192L : inexact-ok += csqrt upward ldbl-96-m68k -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414136p-8196L -0x2.3286b95ff53f16acp-8192L : inexact-ok += csqrt downward ldbl-128 -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b64141354c279997827fp-8196L -0x2.3286b95ff53f16afaed19f01d956p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b64141354c279997827fp-8196L -0x2.3286b95ff53f16afaed19f01d954p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b64141354c279997827fp-8196L -0x2.3286b95ff53f16afaed19f01d954p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b64141354c279997827f8p-8196L -0x2.3286b95ff53f16afaed19f01d954p-8192L : inexact-ok += csqrt downward ldbl-128 -0x4p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b6414133be637803acbf8p-8196L -0x2.3286b95ff53f16af0a0f0735b9d6p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b6414133be637803accp-8196L -0x2.3286b95ff53f16af0a0f0735b9d6p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b6414133be637803acbf8p-8196L -0x2.3286b95ff53f16af0a0f0735b9d4p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b6414133be637803accp-8196L -0x2.3286b95ff53f16af0a0f0735b9d4p-8192L : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000004p-8192L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000004p-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000002p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000002p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000001fffffffffffep-8192L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000008p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000001fffffffffffep-8192L : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.fffffffffffffffep-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x1.fffffffffffffffep-76L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000008p-16384L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000008p-16384L -0x8p-152L : 0x2p-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef32428p-540L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32428p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef32428p-540L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef3242p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32428p-540L -0x5.a827999fcef3242p-540L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000008p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b6414133p-8196L -0x2.3286b95ff53f16b4p-8192L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b6414133p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b6414133p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b6414133p-8196L -0x2.3286b95ff53f16b4p-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b6414133p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b6414133p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b641413319a0e0378d4p-8196L -0x2.3286b95ff53f16b097d328c98f96p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b641413319a0e0378d4p-8196L -0x2.3286b95ff53f16b097d328c98f96p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b641413319a0e0378d4p-8196L -0x2.3286b95ff53f16b097d328c98f94p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000008p-16384L -0x4p-16384L : 0xe.90189c7b641413319a0e0378d408p-8196L -0x2.3286b95ff53f16b097d328c98f94p-8192L : inexact-ok += csqrt downward ldbl-96-intel -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16b4p-8192L : inexact-ok += csqrt tonearest ldbl-96-intel -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt towardzero ldbl-96-intel -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt upward ldbl-96-intel -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt downward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16b4p-8192L : inexact-ok += csqrt tonearest ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt towardzero ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt upward ldbl-96-m68k -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414135p-8196L -0x2.3286b95ff53f16bp-8192L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134a76501cb63p-8196L -0x2.3286b95ff53f16b13c95c095af16p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134a76501cb63008p-8196L -0x2.3286b95ff53f16b13c95c095af14p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134a76501cb63p-8196L -0x2.3286b95ff53f16b13c95c095af14p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b6414134a76501cb63008p-8196L -0x2.3286b95ff53f16b13c95c095af14p-8192L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b641413319a0e0378d408p-8196L -0x2.3286b95ff53f16b097d328c98f96p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b641413319a0e0378d41p-8196L -0x2.3286b95ff53f16b097d328c98f96p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b641413319a0e0378d408p-8196L -0x2.3286b95ff53f16b097d328c98f94p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000008p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b641413319a0e0378d41p-8196L -0x2.3286b95ff53f16b097d328c98f94p-8192L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x0p+0L : 0x0p+0L -0x2.0000000000000000000000000002p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x0p+0L : 0x0p+0L -0x2p-8192L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x2p-76L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x8p-152L : 0x2p-76L -0x2p-76L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x8p-152L : 0x1.ffffffffffffffffffffffffffffp-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x8p-152L : 0x2p-76L -0x1.ffffffffffffffffffffffffffffp-76L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa58p-540L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa54p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4p-1076L : 0x5.a827999fcef32422cbec4d9baa58p-540L -0x5.a827999fcef32422cbec4d9baa54p-540L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4p-16384L : 0xe.90189c7b6414133be637803acbe8p-8196L -0x2.3286b95ff53f16af0a0f0735b9d8p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4p-16384L : 0xe.90189c7b6414133be637803acbe8p-8196L -0x2.3286b95ff53f16af0a0f0735b9d6p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4p-16384L : 0xe.90189c7b6414133be637803acbe8p-8196L -0x2.3286b95ff53f16af0a0f0735b9d6p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4p-16384L : 0xe.90189c7b6414133be637803acbfp-8196L -0x2.3286b95ff53f16af0a0f0735b9d6p-8192L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b64141354c279997827e8p-8196L -0x2.3286b95ff53f16afaed19f01d956p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b64141354c279997827fp-8196L -0x2.3286b95ff53f16afaed19f01d956p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b64141354c279997827e8p-8196L -0x2.3286b95ff53f16afaed19f01d954p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4.0000000000000008p-16384L : 0xe.90189c7b64141354c279997827fp-8196L -0x2.3286b95ff53f16afaed19f01d954p-8192L : inexact-ok += csqrt downward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b6414133be637803acbfp-8196L -0x2.3286b95ff53f16af0a0f0735b9d8p-8192L : inexact-ok += csqrt tonearest ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b6414133be637803acbf8p-8196L -0x2.3286b95ff53f16af0a0f0735b9d6p-8192L : inexact-ok += csqrt towardzero ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b6414133be637803acbfp-8196L -0x2.3286b95ff53f16af0a0f0735b9d6p-8192L : inexact-ok += csqrt upward ldbl-128 -0x4.0000000000000000000000000004p-16384L -0x4.0000000000000000000000000004p-16384L : 0xe.90189c7b6414133be637803acbf8p-8196L -0x2.3286b95ff53f16af0a0f0735b9d6p-8192L : inexact-ok +ctan 0 0 += ctan downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += ctan tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += ctan towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += ctan upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += ctan downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += ctan tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += ctan towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += ctan upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += ctan downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctan upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok +ctan 0 -0 += ctan downward flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += ctan tonearest flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += ctan towardzero flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += ctan upward flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += ctan downward dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += ctan tonearest dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += ctan towardzero dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += ctan upward dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += ctan downward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan upward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan downward ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan tonearest ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan towardzero ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan upward ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan downward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctan upward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok +ctan -0 0 += ctan downward flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f 0x0p+0f : inexact-ok += ctan tonearest flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f 0x0p+0f : inexact-ok += ctan towardzero flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f 0x0p+0f : inexact-ok += ctan upward flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f 0x0p+0f : inexact-ok += ctan downward dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 0x0p+0 : inexact-ok += ctan tonearest dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 0x0p+0 : inexact-ok += ctan towardzero dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 0x0p+0 : inexact-ok += ctan upward dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 0x0p+0 : inexact-ok += ctan downward ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan upward ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan downward ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan upward ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan downward ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctan upward ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok +ctan -0 -0 += ctan downward flt-32 -0x0p+0f -0x0p+0f : -0x0p+0f -0x0p+0f : inexact-ok += ctan tonearest flt-32 -0x0p+0f -0x0p+0f : -0x0p+0f -0x0p+0f : inexact-ok += ctan towardzero flt-32 -0x0p+0f -0x0p+0f : -0x0p+0f -0x0p+0f : inexact-ok += ctan upward flt-32 -0x0p+0f -0x0p+0f : -0x0p+0f -0x0p+0f : inexact-ok += ctan downward dbl-64 -0x0p+0 -0x0p+0 : -0x0p+0 -0x0p+0 : inexact-ok += ctan tonearest dbl-64 -0x0p+0 -0x0p+0 : -0x0p+0 -0x0p+0 : inexact-ok += ctan towardzero dbl-64 -0x0p+0 -0x0p+0 : -0x0p+0 -0x0p+0 : inexact-ok += ctan upward dbl-64 -0x0p+0 -0x0p+0 : -0x0p+0 -0x0p+0 : inexact-ok += ctan downward ldbl-96-intel -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan upward ldbl-96-intel -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan downward ldbl-128 -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan tonearest ldbl-128 -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan towardzero ldbl-128 -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan upward ldbl-128 -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan downward ldbl-128ibm -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctan upward ldbl-128ibm -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok +ctan 0.75 1.25 += ctan downward flt-32 0xcp-4f 0x1.4p+0f : 0x2.92ab2cp-4f 0xf.9b168p-4f : inexact-ok += ctan tonearest flt-32 0xcp-4f 0x1.4p+0f : 0x2.92ab3p-4f 0xf.9b169p-4f : inexact-ok += ctan towardzero flt-32 0xcp-4f 0x1.4p+0f : 0x2.92ab2cp-4f 0xf.9b168p-4f : inexact-ok += ctan upward flt-32 0xcp-4f 0x1.4p+0f : 0x2.92ab3p-4f 0xf.9b169p-4f : inexact-ok += ctan downward dbl-64 0xcp-4 0x1.4p+0 : 0x2.92ab2f573c85cp-4 0xf.9b16882eda3f8p-4 : inexact-ok += ctan tonearest dbl-64 0xcp-4 0x1.4p+0 : 0x2.92ab2f573c85cp-4 0xf.9b16882eda3f8p-4 : inexact-ok += ctan towardzero dbl-64 0xcp-4 0x1.4p+0 : 0x2.92ab2f573c85cp-4 0xf.9b16882eda3f8p-4 : inexact-ok += ctan upward dbl-64 0xcp-4 0x1.4p+0 : 0x2.92ab2f573c85ep-4 0xf.9b16882eda4p-4 : inexact-ok += ctan downward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c21p-4L 0xf.9b16882eda3fbc3p-4L : inexact-ok += ctan tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c214p-4L 0xf.9b16882eda3fbc3p-4L : inexact-ok += ctan towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c21p-4L 0xf.9b16882eda3fbc3p-4L : inexact-ok += ctan upward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c214p-4L 0xf.9b16882eda3fbc4p-4L : inexact-ok += ctan downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c21p-4L 0xf.9b16882eda3fbc3p-4L : inexact-ok += ctan tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c214p-4L 0xf.9b16882eda3fbc3p-4L : inexact-ok += ctan towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c21p-4L 0xf.9b16882eda3fbc3p-4L : inexact-ok += ctan upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c214p-4L 0xf.9b16882eda3fbc4p-4L : inexact-ok += ctan downward ldbl-128 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c2132fe40ca506dap-4L 0xf.9b16882eda3fbc35e672250c71ep-4L : inexact-ok += ctan tonearest ldbl-128 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c2132fe40ca506dcp-4L 0xf.9b16882eda3fbc35e672250c71ep-4L : inexact-ok += ctan towardzero ldbl-128 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c2132fe40ca506dap-4L 0xf.9b16882eda3fbc35e672250c71ep-4L : inexact-ok += ctan upward ldbl-128 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c2132fe40ca506dcp-4L 0xf.9b16882eda3fbc35e672250c71e8p-4L : inexact-ok += ctan downward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c2132fe40ca506p-4L 0xf.9b16882eda3fbc35e672250c7p-4L : inexact-ok += ctan tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c2132fe40ca507p-4L 0xf.9b16882eda3fbc35e672250c7p-4L : inexact-ok += ctan towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c2132fe40ca506p-4L 0xf.9b16882eda3fbc35e672250c7p-4L : inexact-ok += ctan upward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x2.92ab2f573c85c2132fe40ca507p-4L 0xf.9b16882eda3fbc35e672250c74p-4L : inexact-ok +ctan -2 -3 += ctan downward flt-32 -0x2p+0f -0x3p+0f : 0xf.6addfp-12f -0x1.00d44p+0f : inexact-ok += ctan tonearest flt-32 -0x2p+0f -0x3p+0f : 0xf.6addfp-12f -0x1.00d44p+0f : inexact-ok += ctan towardzero flt-32 -0x2p+0f -0x3p+0f : 0xf.6addfp-12f -0x1.00d43ep+0f : inexact-ok += ctan upward flt-32 -0x2p+0f -0x3p+0f : 0xf.6adep-12f -0x1.00d43ep+0f : inexact-ok += ctan downward dbl-64 -0x2p+0 -0x3p+0 : 0xf.6addf0814b86p-12 -0x1.00d43f269153dp+0 : inexact-ok += ctan tonearest dbl-64 -0x2p+0 -0x3p+0 : 0xf.6addf0814b868p-12 -0x1.00d43f269153dp+0 : inexact-ok += ctan towardzero dbl-64 -0x2p+0 -0x3p+0 : 0xf.6addf0814b86p-12 -0x1.00d43f269153cp+0 : inexact-ok += ctan upward dbl-64 -0x2p+0 -0x3p+0 : 0xf.6addf0814b868p-12 -0x1.00d43f269153cp+0 : inexact-ok += ctan downward ldbl-96-intel -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579p-12L -0x1.00d43f269153cff6p+0L : inexact-ok += ctan tonearest ldbl-96-intel -0x2p+0L -0x3p+0L : 0xf.6addf0814b8657ap-12L -0x1.00d43f269153cff6p+0L : inexact-ok += ctan towardzero ldbl-96-intel -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579p-12L -0x1.00d43f269153cff4p+0L : inexact-ok += ctan upward ldbl-96-intel -0x2p+0L -0x3p+0L : 0xf.6addf0814b8657ap-12L -0x1.00d43f269153cff4p+0L : inexact-ok += ctan downward ldbl-96-m68k -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579p-12L -0x1.00d43f269153cff6p+0L : inexact-ok += ctan tonearest ldbl-96-m68k -0x2p+0L -0x3p+0L : 0xf.6addf0814b8657ap-12L -0x1.00d43f269153cff6p+0L : inexact-ok += ctan towardzero ldbl-96-m68k -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579p-12L -0x1.00d43f269153cff4p+0L : inexact-ok += ctan upward ldbl-96-m68k -0x2p+0L -0x3p+0L : 0xf.6addf0814b8657ap-12L -0x1.00d43f269153cff4p+0L : inexact-ok += ctan downward ldbl-128 -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579a84338ca61388p-12L -0x1.00d43f269153cff541f87dd4f834p+0L : inexact-ok += ctan tonearest ldbl-128 -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579a84338ca6139p-12L -0x1.00d43f269153cff541f87dd4f833p+0L : inexact-ok += ctan towardzero ldbl-128 -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579a84338ca61388p-12L -0x1.00d43f269153cff541f87dd4f833p+0L : inexact-ok += ctan upward ldbl-128 -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579a84338ca6139p-12L -0x1.00d43f269153cff541f87dd4f833p+0L : inexact-ok += ctan downward ldbl-128ibm -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579a84338ca61p-12L -0x1.00d43f269153cff541f87dd4f88p+0L : inexact-ok += ctan tonearest ldbl-128ibm -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579a84338ca614p-12L -0x1.00d43f269153cff541f87dd4f8p+0L : inexact-ok += ctan towardzero ldbl-128ibm -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579a84338ca61p-12L -0x1.00d43f269153cff541f87dd4f8p+0L : inexact-ok += ctan upward ldbl-128ibm -0x2p+0L -0x3p+0L : 0xf.6addf0814b86579a84338ca614p-12L -0x1.00d43f269153cff541f87dd4f8p+0L : inexact-ok +ctan 1 45 += ctan downward flt-32 0x1p+0f 0x2.dp+4f : 0x8.1cfap-132f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan tonearest flt-32 0x1p+0f 0x2.dp+4f : 0x8.1cfa8p-132f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan towardzero flt-32 0x1p+0f 0x2.dp+4f : 0x8.1cfap-132f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan upward flt-32 0x1p+0f 0x2.dp+4f : 0x8.1cfa8p-132f 0x1.000002p+0f : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 0x1p+0 0x2.dp+4 : 0x8.1cfa783d16f4p-132 0x1p+0 : inexact-ok += ctan tonearest dbl-64 0x1p+0 0x2.dp+4 : 0x8.1cfa783d16f48p-132 0x1p+0 : inexact-ok += ctan towardzero dbl-64 0x1p+0 0x2.dp+4 : 0x8.1cfa783d16f4p-132 0x1p+0 : inexact-ok += ctan upward dbl-64 0x1p+0 0x2.dp+4 : 0x8.1cfa783d16f48p-132 0x1.0000000000001p+0 : inexact-ok += ctan downward ldbl-96-intel 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462ap-132L 0x1p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462ap-132L 0x1p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462ap-132L 0x1p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462bp-132L 0x1.0000000000000002p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462ap-132L 0x1p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462ap-132L 0x1p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462ap-132L 0x1p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462bp-132L 0x1.0000000000000002p+0L : inexact-ok += ctan downward ldbl-128 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462a5a6cd1741d1a8p-132L 0x1p+0L : inexact-ok += ctan tonearest ldbl-128 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462a5a6cd1741d1bp-132L 0x1p+0L : inexact-ok += ctan towardzero ldbl-128 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462a5a6cd1741d1a8p-132L 0x1p+0L : inexact-ok += ctan upward ldbl-128 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462a5a6cd1741d1bp-132L 0x1.0000000000000000000000000001p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462a5a6cd1741dp-132L 0x1p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462a5a6cd1741dp-132L 0x1p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462a5a6cd1741dp-132L 0x1p+0L : inexact-ok += ctan upward ldbl-128ibm 0x1p+0L 0x2.dp+4L : 0x8.1cfa783d16f462a5a6cd1741d4p-132L 0x1.000000000000000000000000008p+0L : inexact-ok +ctan 1 47 += ctan downward flt-32 0x1p+0f 0x2.fp+4f : 0x2.60a8p-136f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan tonearest flt-32 0x1p+0f 0x2.fp+4f : 0x2.60a8p-136f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan towardzero flt-32 0x1p+0f 0x2.fp+4f : 0x2.60a8p-136f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan upward flt-32 0x1p+0f 0x2.fp+4f : 0x2.60bp-136f 0x1.000002p+0f : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 0x1p+0 0x2.fp+4 : 0x2.60a8b2f7f524p-136 0x1p+0 : inexact-ok += ctan tonearest dbl-64 0x1p+0 0x2.fp+4 : 0x2.60a8b2f7f5242p-136 0x1p+0 : inexact-ok += ctan towardzero dbl-64 0x1p+0 0x2.fp+4 : 0x2.60a8b2f7f524p-136 0x1p+0 : inexact-ok += ctan upward dbl-64 0x1p+0 0x2.fp+4 : 0x2.60a8b2f7f5242p-136 0x1.0000000000001p+0 : inexact-ok += ctan downward ldbl-96-intel 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241554p-136L 0x1p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241554p-136L 0x1p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241554p-136L 0x1p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241558p-136L 0x1.0000000000000002p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241554p-136L 0x1p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241554p-136L 0x1p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241554p-136L 0x1p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241558p-136L 0x1.0000000000000002p+0L : inexact-ok += ctan downward ldbl-128 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241555288ba7825782p-136L 0x1p+0L : inexact-ok += ctan tonearest ldbl-128 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241555288ba7825782p-136L 0x1p+0L : inexact-ok += ctan towardzero ldbl-128 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241555288ba7825782p-136L 0x1p+0L : inexact-ok += ctan upward ldbl-128 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241555288ba7825784p-136L 0x1.0000000000000000000000000001p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241555288ba78257p-136L 0x1p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241555288ba78258p-136L 0x1p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241555288ba78257p-136L 0x1p+0L : inexact-ok += ctan upward ldbl-128ibm 0x1p+0L 0x2.fp+4L : 0x2.60a8b2f7f5241555288ba78258p-136L 0x1.000000000000000000000000008p+0L : inexact-ok +ctan 1 355 += ctan downward flt-32 0x1p+0f 0x1.63p+8f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan tonearest flt-32 0x1p+0f 0x1.63p+8f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan towardzero flt-32 0x1p+0f 0x1.63p+8f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan upward flt-32 0x1p+0f 0x1.63p+8f : 0x8p-152f 0x1.000002p+0f : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 0x1p+0 0x1.63p+8 : 0x1.76a2c6f034b48p-1024 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 0x1p+0 0x1.63p+8 : 0x1.76a2c6f034b4cp-1024 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 0x1p+0 0x1.63p+8 : 0x1.76a2c6f034b48p-1024 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 0x1p+0 0x1.63p+8 : 0x1.76a2c6f034b4cp-1024 0x1.0000000000001p+0 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fcp-1024L 0x1p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fcp-1024L 0x1p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fcp-1024L 0x1p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fep-1024L 0x1.0000000000000002p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fcp-1024L 0x1p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fcp-1024L 0x1p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fcp-1024L 0x1p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fep-1024L 0x1.0000000000000002p+0L : inexact-ok += ctan downward ldbl-128 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fc921d45c1e929p-1024L 0x1p+0L : inexact-ok += ctan tonearest ldbl-128 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fc921d45c1e929p-1024L 0x1p+0L : inexact-ok += ctan towardzero ldbl-128 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fc921d45c1e929p-1024L 0x1p+0L : inexact-ok += ctan upward ldbl-128 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4a7fc921d45c1e92ap-1024L 0x1.0000000000000000000000000001p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b48p-1024L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4cp-1024L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b48p-1024L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm 0x1p+0L 0x1.63p+8L : 0x1.76a2c6f034b4cp-1024L 0x1.000000000000000000000000008p+0L : inexact-ok underflow errno-erange-ok +ctan 1 365 += ctan downward flt-32 0x1p+0f 0x1.6dp+8f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan tonearest flt-32 0x1p+0f 0x1.6dp+8f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan towardzero flt-32 0x1p+0f 0x1.6dp+8f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan upward flt-32 0x1p+0f 0x1.6dp+8f : 0x8p-152f 0x1.000002p+0f : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 0x1p+0 0x1.6dp+8 : 0xc.f47fp-1056 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 0x1p+0 0x1.6dp+8 : 0xc.f47f4p-1056 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 0x1p+0 0x1.6dp+8 : 0xc.f47fp-1056 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 0x1p+0 0x1.6dp+8 : 0xc.f47f4p-1056 0x1.0000000000001p+0 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b7p-1056L 0x1p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b7p-1056L 0x1p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b7p-1056L 0x1p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b71p-1056L 0x1.0000000000000002p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b7p-1056L 0x1p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b7p-1056L 0x1p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b7p-1056L 0x1p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b71p-1056L 0x1.0000000000000002p+0L : inexact-ok += ctan downward ldbl-128 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b7024c3d69ff0358p-1056L 0x1p+0L : inexact-ok += ctan tonearest ldbl-128 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b7024c3d69ff0358p-1056L 0x1p+0L : inexact-ok += ctan towardzero ldbl-128 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b7024c3d69ff0358p-1056L 0x1p+0L : inexact-ok += ctan upward ldbl-128 0x1p+0L 0x1.6dp+8L : 0xc.f47f20686b62b7024c3d69ff036p-1056L 0x1.0000000000000000000000000001p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1p+0L 0x1.6dp+8L : 0xc.f47fp-1056L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm 0x1p+0L 0x1.6dp+8L : 0xc.f47f4p-1056L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm 0x1p+0L 0x1.6dp+8L : 0xc.f47fp-1056L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm 0x1p+0L 0x1.6dp+8L : 0xc.f47f4p-1056L 0x1.000000000000000000000000008p+0L : inexact-ok underflow errno-erange-ok +ctan 1 5680 += ctan downward flt-32 0x1p+0f 0x1.63p+12f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan tonearest flt-32 0x1p+0f 0x1.63p+12f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan towardzero flt-32 0x1p+0f 0x1.63p+12f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan upward flt-32 0x1p+0f 0x1.63p+12f : 0x8p-152f 0x1.000002p+0f : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 0x1p+0 0x1.63p+12 : 0x0p+0 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 0x1p+0 0x1.63p+12 : 0x0p+0 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 0x1p+0 0x1.63p+12 : 0x0p+0 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 0x1p+0 0x1.63p+12 : 0x4p-1076 0x1.0000000000001p+0 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba298p-16392L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-intel 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba2ap-16392L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-intel 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba298p-16392L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-intel 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba2ap-16392L 0x1.0000000000000002p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-m68k 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba29cp-16392L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-m68k 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba2ap-16392L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-m68k 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba29cp-16392L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-m68k 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba2ap-16392L 0x1.0000000000000002p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba29e34d4429f85ccp-16392L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba29e34d4429f85ccp-16392L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba29e34d4429f85ccp-16392L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128 0x1p+0L 0x1.63p+12L : 0xe.6442e59c9ba29e34d4429f85dp-16392L 0x1.0000000000000000000000000001p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128ibm 0x1p+0L 0x1.63p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm 0x1p+0L 0x1.63p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm 0x1p+0L 0x1.63p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm 0x1p+0L 0x1.63p+12L : 0x4p-1076L 0x1.000000000000000000000000008p+0L : inexact-ok underflow errno-erange-ok +ctan 1 5690 += ctan downward flt-32 0x1p+0f 0x1.63ap+12f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan tonearest flt-32 0x1p+0f 0x1.63ap+12f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan towardzero flt-32 0x1p+0f 0x1.63ap+12f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan upward flt-32 0x1p+0f 0x1.63ap+12f : 0x8p-152f 0x1.000002p+0f : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 0x1p+0 0x1.63ap+12 : 0x0p+0 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 0x1p+0 0x1.63ap+12 : 0x0p+0 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 0x1p+0 0x1.63ap+12 : 0x0p+0 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 0x1p+0 0x1.63ap+12 : 0x4p-1076 0x1.0000000000001p+0 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0x1p+0L 0x1.63ap+12L : 0x7.f673ec8p-16420L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-intel 0x1p+0L 0x1.63ap+12L : 0x7.f673edp-16420L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-intel 0x1p+0L 0x1.63ap+12L : 0x7.f673ec8p-16420L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-intel 0x1p+0L 0x1.63ap+12L : 0x7.f673edp-16420L 0x1.0000000000000002p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-m68k 0x1p+0L 0x1.63ap+12L : 0x7.f673eccp-16420L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-m68k 0x1p+0L 0x1.63ap+12L : 0x7.f673eccp-16420L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-m68k 0x1p+0L 0x1.63ap+12L : 0x7.f673eccp-16420L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-m68k 0x1p+0L 0x1.63ap+12L : 0x7.f673edp-16420L 0x1.0000000000000002p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128 0x1p+0L 0x1.63ap+12L : 0x7.f673ecc6b39aff738e4p-16420L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128 0x1p+0L 0x1.63ap+12L : 0x7.f673ecc6b39aff738e8p-16420L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128 0x1p+0L 0x1.63ap+12L : 0x7.f673ecc6b39aff738e4p-16420L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128 0x1p+0L 0x1.63ap+12L : 0x7.f673ecc6b39aff738e8p-16420L 0x1.0000000000000000000000000001p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128ibm 0x1p+0L 0x1.63ap+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm 0x1p+0L 0x1.63ap+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm 0x1p+0L 0x1.63ap+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm 0x1p+0L 0x1.63ap+12L : 0x4p-1076L 0x1.000000000000000000000000008p+0L : inexact-ok underflow errno-erange-ok +ctan 0x3.243f6cp-1 0 += ctan downward flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1496p+24f 0x0p+0f : inexact-ok += ctan tonearest flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1494p+24f 0x0p+0f : inexact-ok += ctan towardzero flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1494p+24f 0x0p+0f : inexact-ok += ctan upward flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1494p+24f 0x0p+0f : inexact-ok += ctan downward dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9898p+24 0x0p+0 : inexact-ok += ctan tonearest dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9897p+24 0x0p+0 : inexact-ok += ctan towardzero dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9897p+24 0x0p+0 : inexact-ok += ctan upward dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9897p+24 0x0p+0 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d8p+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d8p+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan downward ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fep+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fep+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0x0p+0L : inexact-ok += ctan upward ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0x0p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55285p+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55285p+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284f8p+24L 0x0p+0L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284f8p+24L 0x0p+0L : inexact-ok +ctan 0x1p127 1 += ctan downward flt-32 0x8p+124f 0x1p+0f : 0x3.ea075cp-4f 0xe.8fe8p-4f : inexact-ok += ctan tonearest flt-32 0x8p+124f 0x1p+0f : 0x3.ea076p-4f 0xe.8fe81p-4f : inexact-ok += ctan towardzero flt-32 0x8p+124f 0x1p+0f : 0x3.ea075cp-4f 0xe.8fe8p-4f : inexact-ok += ctan upward flt-32 0x8p+124f 0x1p+0f : 0x3.ea076p-4f 0xe.8fe81p-4f : inexact-ok += ctan downward dbl-64 0x8p+124 0x1p+0 : 0x3.ea075fdf18c8ap-4 0xe.8fe80b8795b68p-4 : inexact-ok += ctan tonearest dbl-64 0x8p+124 0x1p+0 : 0x3.ea075fdf18c8ap-4 0xe.8fe80b8795b7p-4 : inexact-ok += ctan towardzero dbl-64 0x8p+124 0x1p+0 : 0x3.ea075fdf18c8ap-4 0xe.8fe80b8795b68p-4 : inexact-ok += ctan upward dbl-64 0x8p+124 0x1p+0 : 0x3.ea075fdf18c8cp-4 0xe.8fe80b8795b7p-4 : inexact-ok += ctan downward ldbl-96-intel 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a748p-4L 0xe.8fe80b8795b6ed2p-4L : inexact-ok += ctan tonearest ldbl-96-intel 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74cp-4L 0xe.8fe80b8795b6ed3p-4L : inexact-ok += ctan towardzero ldbl-96-intel 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a748p-4L 0xe.8fe80b8795b6ed2p-4L : inexact-ok += ctan upward ldbl-96-intel 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74cp-4L 0xe.8fe80b8795b6ed3p-4L : inexact-ok += ctan downward ldbl-96-m68k 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a748p-4L 0xe.8fe80b8795b6ed2p-4L : inexact-ok += ctan tonearest ldbl-96-m68k 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74cp-4L 0xe.8fe80b8795b6ed3p-4L : inexact-ok += ctan towardzero ldbl-96-m68k 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a748p-4L 0xe.8fe80b8795b6ed2p-4L : inexact-ok += ctan upward ldbl-96-m68k 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74cp-4L 0xe.8fe80b8795b6ed3p-4L : inexact-ok += ctan downward ldbl-128 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74bfc7e25465e78p-4L 0xe.8fe80b8795b6ed2c28e53930ce48p-4L : inexact-ok += ctan tonearest ldbl-128 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74bfc7e25465e78p-4L 0xe.8fe80b8795b6ed2c28e53930ce48p-4L : inexact-ok += ctan towardzero ldbl-128 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74bfc7e25465e78p-4L 0xe.8fe80b8795b6ed2c28e53930ce48p-4L : inexact-ok += ctan upward ldbl-128 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74bfc7e25465e7ap-4L 0xe.8fe80b8795b6ed2c28e53930ce5p-4L : inexact-ok += ctan downward ldbl-128ibm 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74bfc7e25465ep-4L 0xe.8fe80b8795b6ed2c28e53930ccp-4L : inexact-ok += ctan tonearest ldbl-128ibm 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74bfc7e25465ep-4L 0xe.8fe80b8795b6ed2c28e53930dp-4L : inexact-ok += ctan towardzero ldbl-128ibm 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74bfc7e25465ep-4L 0xe.8fe80b8795b6ed2c28e53930ccp-4L : inexact-ok += ctan upward ldbl-128ibm 0x8p+124L 0x1p+0L : 0x3.ea075fdf18c8a74bfc7e25465fp-4L 0xe.8fe80b8795b6ed2c28e53930dp-4L : inexact-ok +ctan 0x1p1023 1 += ctan downward flt-32 0xf.fffffp+124f 0x1p+0f : -0x3.60b264p-4f 0xd.c2635p-4f : inexact-ok += ctan tonearest flt-32 0xf.fffffp+124f 0x1p+0f : -0x3.60b26p-4f 0xd.c2635p-4f : inexact-ok += ctan towardzero flt-32 0xf.fffffp+124f 0x1p+0f : -0x3.60b26p-4f 0xd.c2635p-4f : inexact-ok += ctan upward flt-32 0xf.fffffp+124f 0x1p+0f : -0x3.60b26p-4f 0xd.c2636p-4f : inexact-ok += ctan downward dbl-64 0xf.fffffp+124 0x1p+0 : -0x3.60b2616c1339ap-4 0xd.c26353c0682p-4 : inexact-ok += ctan tonearest dbl-64 0xf.fffffp+124 0x1p+0 : -0x3.60b2616c1339ap-4 0xd.c26353c0682p-4 : inexact-ok += ctan towardzero dbl-64 0xf.fffffp+124 0x1p+0 : -0x3.60b2616c13398p-4 0xd.c26353c0682p-4 : inexact-ok += ctan upward dbl-64 0xf.fffffp+124 0x1p+0 : -0x3.60b2616c13398p-4 0xd.c26353c068208p-4 : inexact-ok += ctan downward ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906cp-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan tonearest ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan towardzero ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan upward ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203cp-4L : inexact-ok += ctan downward ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906cp-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan tonearest ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan towardzero ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan upward ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203cp-4L : inexact-ok += ctan downward ldbl-128 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90d002p-4L 0xd.c26353c068203bf3a2f7a9b94db8p-4L : inexact-ok += ctan tonearest ldbl-128 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90d002p-4L 0xd.c26353c068203bf3a2f7a9b94dcp-4L : inexact-ok += ctan towardzero ldbl-128 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90dp-4L 0xd.c26353c068203bf3a2f7a9b94db8p-4L : inexact-ok += ctan upward ldbl-128 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90dp-4L 0xd.c26353c068203bf3a2f7a9b94dcp-4L : inexact-ok += ctan downward ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90d1p-4L 0xd.c26353c068203bf3a2f7a9b94cp-4L : inexact-ok += ctan tonearest ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90dp-4L 0xd.c26353c068203bf3a2f7a9b94cp-4L : inexact-ok += ctan towardzero ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90dp-4L 0xd.c26353c068203bf3a2f7a9b94cp-4L : inexact-ok += ctan upward ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90dp-4L 0xd.c26353c068203bf3a2f7a9b95p-4L : inexact-ok += ctan downward dbl-64 0x8p+1020 0x1p+0 : -0x3.9b7edf84053dep-4 0xe.0ec57df9e9488p-4 : inexact-ok += ctan tonearest dbl-64 0x8p+1020 0x1p+0 : -0x3.9b7edf84053dep-4 0xe.0ec57df9e9488p-4 : inexact-ok += ctan towardzero dbl-64 0x8p+1020 0x1p+0 : -0x3.9b7edf84053dcp-4 0xe.0ec57df9e9488p-4 : inexact-ok += ctan upward dbl-64 0x8p+1020 0x1p+0 : -0x3.9b7edf84053dcp-4 0xe.0ec57df9e949p-4 : inexact-ok += ctan downward ldbl-96-intel 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda48p-4L 0xe.0ec57df9e9489b8p-4L : inexact-ok += ctan tonearest ldbl-96-intel 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda48p-4L 0xe.0ec57df9e9489b8p-4L : inexact-ok += ctan towardzero ldbl-96-intel 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda44p-4L 0xe.0ec57df9e9489b8p-4L : inexact-ok += ctan upward ldbl-96-intel 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda44p-4L 0xe.0ec57df9e9489b9p-4L : inexact-ok += ctan downward ldbl-96-m68k 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda48p-4L 0xe.0ec57df9e9489b8p-4L : inexact-ok += ctan tonearest ldbl-96-m68k 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda48p-4L 0xe.0ec57df9e9489b8p-4L : inexact-ok += ctan towardzero ldbl-96-m68k 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda44p-4L 0xe.0ec57df9e9489b8p-4L : inexact-ok += ctan upward ldbl-96-m68k 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda44p-4L 0xe.0ec57df9e9489b9p-4L : inexact-ok += ctan downward ldbl-128 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda473c3ba3e75288p-4L 0xe.0ec57df9e9489b83c566cd1868b8p-4L : inexact-ok += ctan tonearest ldbl-128 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda473c3ba3e75286p-4L 0xe.0ec57df9e9489b83c566cd1868b8p-4L : inexact-ok += ctan towardzero ldbl-128 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda473c3ba3e75286p-4L 0xe.0ec57df9e9489b83c566cd1868b8p-4L : inexact-ok += ctan upward ldbl-128 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda473c3ba3e75286p-4L 0xe.0ec57df9e9489b83c566cd1868cp-4L : inexact-ok += ctan downward ldbl-128ibm 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda473c3ba3e753p-4L 0xe.0ec57df9e9489b83c566cd1868p-4L : inexact-ok += ctan tonearest ldbl-128ibm 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda473c3ba3e753p-4L 0xe.0ec57df9e9489b83c566cd1868p-4L : inexact-ok += ctan towardzero ldbl-128ibm 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda473c3ba3e752p-4L 0xe.0ec57df9e9489b83c566cd1868p-4L : inexact-ok += ctan upward ldbl-128ibm 0x8p+1020L 0x1p+0L : -0x3.9b7edf84053dda473c3ba3e752p-4L 0xe.0ec57df9e9489b83c566cd186cp-4L : inexact-ok +ctan 0x1p16383 1 += ctan downward flt-32 0xf.fffffp+124f 0x1p+0f : -0x3.60b264p-4f 0xd.c2635p-4f : inexact-ok += ctan tonearest flt-32 0xf.fffffp+124f 0x1p+0f : -0x3.60b26p-4f 0xd.c2635p-4f : inexact-ok += ctan towardzero flt-32 0xf.fffffp+124f 0x1p+0f : -0x3.60b26p-4f 0xd.c2635p-4f : inexact-ok += ctan upward flt-32 0xf.fffffp+124f 0x1p+0f : -0x3.60b26p-4f 0xd.c2636p-4f : inexact-ok += ctan downward dbl-64 0xf.fffffp+124 0x1p+0 : -0x3.60b2616c1339ap-4 0xd.c26353c0682p-4 : inexact-ok += ctan tonearest dbl-64 0xf.fffffp+124 0x1p+0 : -0x3.60b2616c1339ap-4 0xd.c26353c0682p-4 : inexact-ok += ctan towardzero dbl-64 0xf.fffffp+124 0x1p+0 : -0x3.60b2616c13398p-4 0xd.c26353c0682p-4 : inexact-ok += ctan upward dbl-64 0xf.fffffp+124 0x1p+0 : -0x3.60b2616c13398p-4 0xd.c26353c068208p-4 : inexact-ok += ctan downward ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906cp-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan tonearest ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan towardzero ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan upward ldbl-96-intel 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203cp-4L : inexact-ok += ctan downward ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906cp-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan tonearest ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan towardzero ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203bfp-4L : inexact-ok += ctan upward ldbl-96-m68k 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c13399068p-4L 0xd.c26353c068203cp-4L : inexact-ok += ctan downward ldbl-128 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90d002p-4L 0xd.c26353c068203bf3a2f7a9b94db8p-4L : inexact-ok += ctan tonearest ldbl-128 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90d002p-4L 0xd.c26353c068203bf3a2f7a9b94dcp-4L : inexact-ok += ctan towardzero ldbl-128 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90dp-4L 0xd.c26353c068203bf3a2f7a9b94db8p-4L : inexact-ok += ctan upward ldbl-128 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90dp-4L 0xd.c26353c068203bf3a2f7a9b94dcp-4L : inexact-ok += ctan downward ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90d1p-4L 0xd.c26353c068203bf3a2f7a9b94cp-4L : inexact-ok += ctan tonearest ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90dp-4L 0xd.c26353c068203bf3a2f7a9b94cp-4L : inexact-ok += ctan towardzero ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90dp-4L 0xd.c26353c068203bf3a2f7a9b94cp-4L : inexact-ok += ctan upward ldbl-128ibm 0xf.fffffp+124L 0x1p+0L : -0x3.60b2616c1339906858c23a90dp-4L 0xd.c26353c068203bf3a2f7a9b95p-4L : inexact-ok += ctan downward dbl-64 0xf.ffffffffffff8p+1020 0x1p+0 : -0x8.891dda2c06578p-12 0xc.2f859c7fb353p-4 : inexact-ok += ctan tonearest dbl-64 0xf.ffffffffffff8p+1020 0x1p+0 : -0x8.891dda2c06578p-12 0xc.2f859c7fb353p-4 : inexact-ok += ctan towardzero dbl-64 0xf.ffffffffffff8p+1020 0x1p+0 : -0x8.891dda2c0657p-12 0xc.2f859c7fb353p-4 : inexact-ok += ctan upward dbl-64 0xf.ffffffffffff8p+1020 0x1p+0 : -0x8.891dda2c0657p-12 0xc.2f859c7fb3538p-4 : inexact-ok += ctan downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c0657715p-12L 0xc.2f859c7fb353152p-4L : inexact-ok += ctan tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c0657714p-12L 0xc.2f859c7fb353152p-4L : inexact-ok += ctan towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c0657714p-12L 0xc.2f859c7fb353152p-4L : inexact-ok += ctan upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c0657714p-12L 0xc.2f859c7fb353153p-4L : inexact-ok += ctan downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c0657715p-12L 0xc.2f859c7fb353152p-4L : inexact-ok += ctan tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c0657714p-12L 0xc.2f859c7fb353152p-4L : inexact-ok += ctan towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c0657714p-12L 0xc.2f859c7fb353152p-4L : inexact-ok += ctan upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c0657714p-12L 0xc.2f859c7fb353153p-4L : inexact-ok += ctan downward ldbl-128 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c06577145af81f4f5604p-12L 0xc.2f859c7fb3531523e975e1dad058p-4L : inexact-ok += ctan tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c06577145af81f4f5604p-12L 0xc.2f859c7fb3531523e975e1dad058p-4L : inexact-ok += ctan towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c06577145af81f4f56038p-12L 0xc.2f859c7fb3531523e975e1dad058p-4L : inexact-ok += ctan upward ldbl-128 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c06577145af81f4f56038p-12L 0xc.2f859c7fb3531523e975e1dad06p-4L : inexact-ok += ctan downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c06577145af81f4f564p-12L 0xc.2f859c7fb3531523e975e1dadp-4L : inexact-ok += ctan tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c06577145af81f4f56p-12L 0xc.2f859c7fb3531523e975e1dadp-4L : inexact-ok += ctan towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c06577145af81f4f56p-12L 0xc.2f859c7fb3531523e975e1dadp-4L : inexact-ok += ctan upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x1p+0L : -0x8.891dda2c06577145af81f4f56p-12L 0xc.2f859c7fb3531523e975e1dad4p-4L : inexact-ok += ctan downward ldbl-96-intel 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb660cp-4L 0xd.039cb06618c08bfp-4L : inexact-ok += ctan tonearest ldbl-96-intel 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb660cp-4L 0xd.039cb06618c08cp-4L : inexact-ok += ctan towardzero ldbl-96-intel 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb660cp-4L 0xd.039cb06618c08bfp-4L : inexact-ok += ctan upward ldbl-96-intel 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb661p-4L 0xd.039cb06618c08cp-4L : inexact-ok += ctan downward ldbl-96-m68k 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb660cp-4L 0xd.039cb06618c08bfp-4L : inexact-ok += ctan tonearest ldbl-96-m68k 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb660cp-4L 0xd.039cb06618c08cp-4L : inexact-ok += ctan towardzero ldbl-96-m68k 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb660cp-4L 0xd.039cb06618c08bfp-4L : inexact-ok += ctan upward ldbl-96-m68k 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb661p-4L 0xd.039cb06618c08cp-4L : inexact-ok += ctan downward ldbl-128 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb660c9a8081990afap-4L 0xd.039cb06618c08bfe358cf75c6128p-4L : inexact-ok += ctan tonearest ldbl-128 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb660c9a8081990afcp-4L 0xd.039cb06618c08bfe358cf75c6128p-4L : inexact-ok += ctan towardzero ldbl-128 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb660c9a8081990afap-4L 0xd.039cb06618c08bfe358cf75c6128p-4L : inexact-ok += ctan upward ldbl-128 0x8p+16380L 0x1p+0L : 0x2.92e1ce9b08cb660c9a8081990afcp-4L 0xd.039cb06618c08bfe358cf75c613p-4L : inexact-ok += ctan downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+0L : 0x3.89f37a0888a0e05652b04c0aa334p-4L 0x1.33b2569c333811735902f282a0fp+0L : inexact-ok += ctan tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+0L : 0x3.89f37a0888a0e05652b04c0aa334p-4L 0x1.33b2569c333811735902f282a0fp+0L : inexact-ok += ctan towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+0L : 0x3.89f37a0888a0e05652b04c0aa334p-4L 0x1.33b2569c333811735902f282a0fp+0L : inexact-ok += ctan upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+0L : 0x3.89f37a0888a0e05652b04c0aa336p-4L 0x1.33b2569c333811735902f282a0f1p+0L : inexact-ok += ctan downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+0L : 0x3.89f37a0888a0e05652b04c0aa3p-4L 0x1.33b2569c333811735902f282a08p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+0L : 0x3.89f37a0888a0e05652b04c0aa3p-4L 0x1.33b2569c333811735902f282a1p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+0L : 0x3.89f37a0888a0e05652b04c0aa3p-4L 0x1.33b2569c333811735902f282a08p+0L : inexact-ok += ctan upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x1p+0L : 0x3.89f37a0888a0e05652b04c0aa4p-4L 0x1.33b2569c333811735902f282a1p+0L : inexact-ok +ctan 50000 50000 += ctan downward flt-32 0xc.35p+12f 0xc.35p+12f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan tonearest flt-32 0xc.35p+12f 0xc.35p+12f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan towardzero flt-32 0xc.35p+12f 0xc.35p+12f : 0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan upward flt-32 0xc.35p+12f 0xc.35p+12f : 0x8p-152f 0x1.000002p+0f : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 0xc.35p+12 0xc.35p+12 : 0x0p+0 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 0xc.35p+12 0xc.35p+12 : 0x0p+0 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 0xc.35p+12 0xc.35p+12 : 0x0p+0 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 0xc.35p+12 0xc.35p+12 : 0x4p-1076 0x1.0000000000001p+0 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-intel 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-intel 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-intel 0xc.35p+12L 0xc.35p+12L : 0x8p-16448L 0x1.0000000000000002p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-m68k 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-m68k 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-m68k 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-m68k 0xc.35p+12L 0xc.35p+12L : 0x4p-16448L 0x1.0000000000000002p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128 0xc.35p+12L 0xc.35p+12L : 0x4p-16496L 0x1.0000000000000000000000000001p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128ibm 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm 0xc.35p+12L 0xc.35p+12L : 0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm 0xc.35p+12L 0xc.35p+12L : 0x4p-1076L 0x1.000000000000000000000000008p+0L : inexact-ok underflow errno-erange-ok +ctan 50000 -50000 += ctan downward flt-32 0xc.35p+12f -0xc.35p+12f : 0x0p+0f -0x1p+0f : inexact-ok underflow errno-erange-ok += ctan tonearest flt-32 0xc.35p+12f -0xc.35p+12f : 0x0p+0f -0x1p+0f : inexact-ok underflow errno-erange-ok += ctan towardzero flt-32 0xc.35p+12f -0xc.35p+12f : 0x0p+0f -0xf.fffffp-4f : inexact-ok underflow errno-erange-ok += ctan upward flt-32 0xc.35p+12f -0xc.35p+12f : 0x8p-152f -0xf.fffffp-4f : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 0xc.35p+12 -0xc.35p+12 : 0x0p+0 -0x1p+0 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 0xc.35p+12 -0xc.35p+12 : 0x0p+0 -0x1p+0 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 0xc.35p+12 -0xc.35p+12 : 0x0p+0 -0xf.ffffffffffff8p-4 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 0xc.35p+12 -0xc.35p+12 : 0x4p-1076 -0xf.ffffffffffff8p-4 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-intel 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-intel 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0xf.fffffffffffffffp-4L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-intel 0xc.35p+12L -0xc.35p+12L : 0x8p-16448L -0xf.fffffffffffffffp-4L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-m68k 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-m68k 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-m68k 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0xf.fffffffffffffffp-4L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-m68k 0xc.35p+12L -0xc.35p+12L : 0x4p-16448L -0xf.fffffffffffffffp-4L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128 0xc.35p+12L -0xc.35p+12L : 0x4p-16496L -0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128ibm 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm 0xc.35p+12L -0xc.35p+12L : 0x0p+0L -0xf.fffffffffffffffffffffffffcp-4L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm 0xc.35p+12L -0xc.35p+12L : 0x4p-1076L -0xf.fffffffffffffffffffffffffcp-4L : inexact-ok underflow errno-erange-ok +ctan -50000 50000 += ctan downward flt-32 -0xc.35p+12f 0xc.35p+12f : -0x8p-152f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan tonearest flt-32 -0xc.35p+12f 0xc.35p+12f : -0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan towardzero flt-32 -0xc.35p+12f 0xc.35p+12f : -0x0p+0f 0x1p+0f : inexact-ok underflow errno-erange-ok += ctan upward flt-32 -0xc.35p+12f 0xc.35p+12f : -0x0p+0f 0x1.000002p+0f : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 -0xc.35p+12 0xc.35p+12 : -0x4p-1076 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 -0xc.35p+12 0xc.35p+12 : -0x0p+0 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 -0xc.35p+12 0xc.35p+12 : -0x0p+0 0x1p+0 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 -0xc.35p+12 0xc.35p+12 : -0x0p+0 0x1.0000000000001p+0 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel -0xc.35p+12L 0xc.35p+12L : -0x8p-16448L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-intel -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-intel -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-intel -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1.0000000000000002p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-m68k -0xc.35p+12L 0xc.35p+12L : -0x4p-16448L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-m68k -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-m68k -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-m68k -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1.0000000000000002p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128 -0xc.35p+12L 0xc.35p+12L : -0x4p-16496L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128 -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128 -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128 -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1.0000000000000000000000000001p+0L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128ibm -0xc.35p+12L 0xc.35p+12L : -0x4p-1076L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1p+0L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm -0xc.35p+12L 0xc.35p+12L : -0x0p+0L 0x1.000000000000000000000000008p+0L : inexact-ok underflow errno-erange-ok +ctan -50000 -50000 += ctan downward flt-32 -0xc.35p+12f -0xc.35p+12f : -0x8p-152f -0x1p+0f : inexact-ok underflow errno-erange-ok += ctan tonearest flt-32 -0xc.35p+12f -0xc.35p+12f : -0x0p+0f -0x1p+0f : inexact-ok underflow errno-erange-ok += ctan towardzero flt-32 -0xc.35p+12f -0xc.35p+12f : -0x0p+0f -0xf.fffffp-4f : inexact-ok underflow errno-erange-ok += ctan upward flt-32 -0xc.35p+12f -0xc.35p+12f : -0x0p+0f -0xf.fffffp-4f : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 -0xc.35p+12 -0xc.35p+12 : -0x4p-1076 -0x1p+0 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 -0xc.35p+12 -0xc.35p+12 : -0x0p+0 -0x1p+0 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 -0xc.35p+12 -0xc.35p+12 : -0x0p+0 -0xf.ffffffffffff8p-4 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 -0xc.35p+12 -0xc.35p+12 : -0x0p+0 -0xf.ffffffffffff8p-4 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel -0xc.35p+12L -0xc.35p+12L : -0x8p-16448L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-intel -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-intel -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0xf.fffffffffffffffp-4L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-intel -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0xf.fffffffffffffffp-4L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-m68k -0xc.35p+12L -0xc.35p+12L : -0x4p-16448L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-m68k -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-m68k -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0xf.fffffffffffffffp-4L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-m68k -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0xf.fffffffffffffffp-4L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128 -0xc.35p+12L -0xc.35p+12L : -0x4p-16496L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128 -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128 -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128 -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128ibm -0xc.35p+12L -0xc.35p+12L : -0x4p-1076L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0x1p+0L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0xf.fffffffffffffffffffffffffcp-4L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm -0xc.35p+12L -0xc.35p+12L : -0x0p+0L -0xf.fffffffffffffffffffffffffcp-4L : inexact-ok underflow errno-erange-ok +ctan 0x1.921fb6p+0 0x1p-149 += ctan downward flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1496p+24f 0xe.e008fp-104f : inexact-ok += ctan tonearest flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1494p+24f 0xe.e008fp-104f : inexact-ok += ctan towardzero flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1494p+24f 0xe.e008fp-104f : inexact-ok += ctan upward flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1494p+24f 0xe.e009p-104f : inexact-ok += ctan downward dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9898p+24 0xe.e008f2d6f5c3p-104 : inexact-ok += ctan tonearest dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9897p+24 0xe.e008f2d6f5c38p-104 : inexact-ok += ctan towardzero dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9897p+24 0xe.e008f2d6f5c3p-104 : inexact-ok += ctan upward dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9897p+24 0xe.e008f2d6f5c38p-104 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d8p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c3471p-104L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d8p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c3471p-104L : inexact-ok += ctan downward ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fep+24L 0xe.e008f2d6f5c347063d6ad04df2bp-104L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fep+24L 0xe.e008f2d6f5c347063d6ad04df2bp-104L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0xe.e008f2d6f5c347063d6ad04df2bp-104L : inexact-ok += ctan upward ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0xe.e008f2d6f5c347063d6ad04df2b8p-104L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55285p+24L 0xe.e008f2d6f5c347063d6ad04dfp-104L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55285p+24L 0xe.e008f2d6f5c347063d6ad04df4p-104L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284f8p+24L 0xe.e008f2d6f5c347063d6ad04dfp-104L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284f8p+24L 0xe.e008f2d6f5c347063d6ad04df4p-104L : inexact-ok +ctan 0x1.921fb54442d18p+0 0x1p-1074 += ctan downward flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1496p+24f 0xe.e008fp-104f : inexact-ok += ctan tonearest flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1494p+24f 0xe.e008fp-104f : inexact-ok += ctan towardzero flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1494p+24f 0xe.e008fp-104f : inexact-ok += ctan upward flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1494p+24f 0xe.e009p-104f : inexact-ok += ctan downward dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9898p+24 0xe.e008f2d6f5c3p-104 : inexact-ok += ctan tonearest dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9897p+24 0xe.e008f2d6f5c38p-104 : inexact-ok += ctan towardzero dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9897p+24 0xe.e008f2d6f5c3p-104 : inexact-ok += ctan upward dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9897p+24 0xe.e008f2d6f5c38p-104 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d8p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c3471p-104L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d8p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c3471p-104L : inexact-ok += ctan downward ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fep+24L 0xe.e008f2d6f5c347063d6ad04df2bp-104L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fep+24L 0xe.e008f2d6f5c347063d6ad04df2bp-104L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0xe.e008f2d6f5c347063d6ad04df2bp-104L : inexact-ok += ctan upward ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0xe.e008f2d6f5c347063d6ad04df2b8p-104L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55285p+24L 0xe.e008f2d6f5c347063d6ad04dfp-104L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55285p+24L 0xe.e008f2d6f5c347063d6ad04df4p-104L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284f8p+24L 0xe.e008f2d6f5c347063d6ad04dfp-104L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284f8p+24L 0xe.e008f2d6f5c347063d6ad04df4p-104L : inexact-ok += ctan downward flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1496p+24f 0x0p+0f : inexact-ok += ctan tonearest flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1494p+24f 0x0p+0f : inexact-ok += ctan towardzero flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1494p+24f 0x0p+0f : inexact-ok += ctan upward flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1494p+24f 0x0p+0f : inexact-ok += ctan downward dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9898p+24 0x0p+0 : inexact-ok += ctan tonearest dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9897p+24 0x0p+0 : inexact-ok += ctan towardzero dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9897p+24 0x0p+0 : inexact-ok += ctan upward dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9897p+24 0x0p+0 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d8p+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d8p+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan downward ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fep+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fep+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0x0p+0L : inexact-ok += ctan upward ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0x0p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55285p+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55285p+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284f8p+24L 0x0p+0L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284f8p+24L 0x0p+0L : inexact-ok += ctan downward dbl-64 0x1.921fb6p+0 0x4p-1076 : -0x1.5d14946dc9898p+24 0x7.7004796b7aep-1028 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 0x1.921fb6p+0 0x4p-1076 : -0x1.5d14946dc9897p+24 0x7.7004796b7aep-1028 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 0x1.921fb6p+0 0x4p-1076 : -0x1.5d14946dc9897p+24 0x7.7004796b7aep-1028 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 0x1.921fb6p+0 0x4p-1076 : -0x1.5d14946dc9897p+24 0x7.7004796b7ae4p-1028 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d8p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a388p-1028L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d8p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a388p-1028L : inexact-ok += ctan downward ldbl-128 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284fep+24L 0x7.7004796b7ae1a3831eb56826f958p-1028L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284fep+24L 0x7.7004796b7ae1a3831eb56826f958p-1028L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0x7.7004796b7ae1a3831eb56826f958p-1028L : inexact-ok += ctan upward ldbl-128 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0x7.7004796b7ae1a3831eb56826f95cp-1028L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55285p+24L 0x7.7004796b7aep-1028L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55285p+24L 0x7.7004796b7aep-1028L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284f8p+24L 0x7.7004796b7aep-1028L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284f8p+24L 0x7.7004796b7ae4p-1028L : inexact-ok underflow errno-erange-ok += ctan downward flt-32 0x1.921fb4p+0f 0x8p-152f : 0xc.a1bd9p+20f 0x4.fc7fbp-104f : inexact-ok += ctan tonearest flt-32 0x1.921fb4p+0f 0x8p-152f : 0xc.a1bdap+20f 0x4.fc7fbp-104f : inexact-ok += ctan towardzero flt-32 0x1.921fb4p+0f 0x8p-152f : 0xc.a1bd9p+20f 0x4.fc7fbp-104f : inexact-ok += ctan upward flt-32 0x1.921fb4p+0f 0x8p-152f : 0xc.a1bdap+20f 0x4.fc7fb8p-104f : inexact-ok += ctan downward dbl-64 0x1.921fb4p+0 0x8p-152 : 0xc.a1bd99b5b586p+20 0x4.fc7fb3865f33cp-104 : inexact-ok += ctan tonearest dbl-64 0x1.921fb4p+0 0x8p-152 : 0xc.a1bd99b5b586p+20 0x4.fc7fb3865f34p-104 : inexact-ok += ctan towardzero dbl-64 0x1.921fb4p+0 0x8p-152 : 0xc.a1bd99b5b586p+20 0x4.fc7fb3865f33cp-104 : inexact-ok += ctan upward dbl-64 0x1.921fb4p+0 0x8p-152 : 0xc.a1bd99b5b5868p+20 0x4.fc7fb3865f34p-104 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f33f688p-104L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f33f688p-104L : inexact-ok += ctan downward ldbl-128 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x4.fc7fb3865f33f6829c9b9ed04c94p-104L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x4.fc7fb3865f33f6829c9b9ed04c98p-104L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x4.fc7fb3865f33f6829c9b9ed04c94p-104L : inexact-ok += ctan upward ldbl-128 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8cbp+20L 0x4.fc7fb3865f33f6829c9b9ed04c98p-104L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x4.fc7fb3865f33f6829c9b9ed04cp-104L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x4.fc7fb3865f33f6829c9b9ed04cp-104L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x4.fc7fb3865f33f6829c9b9ed04cp-104L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd9p+20L 0x4.fc7fb3865f33f6829c9b9ed04ep-104L : inexact-ok += ctan downward flt-32 0x1.921fb4p+0f 0x0p+0f : 0xc.a1bd9p+20f 0x0p+0f : inexact-ok += ctan tonearest flt-32 0x1.921fb4p+0f 0x0p+0f : 0xc.a1bdap+20f 0x0p+0f : inexact-ok += ctan towardzero flt-32 0x1.921fb4p+0f 0x0p+0f : 0xc.a1bd9p+20f 0x0p+0f : inexact-ok += ctan upward flt-32 0x1.921fb4p+0f 0x0p+0f : 0xc.a1bdap+20f 0x0p+0f : inexact-ok += ctan downward dbl-64 0x1.921fb4p+0 0x0p+0 : 0xc.a1bd99b5b586p+20 0x0p+0 : inexact-ok += ctan tonearest dbl-64 0x1.921fb4p+0 0x0p+0 : 0xc.a1bd99b5b586p+20 0x0p+0 : inexact-ok += ctan towardzero dbl-64 0x1.921fb4p+0 0x0p+0 : 0xc.a1bd99b5b586p+20 0x0p+0 : inexact-ok += ctan upward dbl-64 0x1.921fb4p+0 0x0p+0 : 0xc.a1bd99b5b5868p+20 0x0p+0 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cp+20L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623dp+20L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cp+20L 0x0p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623dp+20L 0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cp+20L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623dp+20L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cp+20L 0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623dp+20L 0x0p+0L : inexact-ok += ctan downward ldbl-128 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x0p+0L : inexact-ok += ctan upward ldbl-128 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8cbp+20L 0x0p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x0p+0L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd9p+20L 0x0p+0L : inexact-ok += ctan downward dbl-64 0x1.921fb4p+0 0x4p-1076 : 0xc.a1bd99b5b586p+20 0x2.7e3fd9c32f98p-1028 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 0x1.921fb4p+0 0x4p-1076 : 0xc.a1bd99b5b586p+20 0x2.7e3fd9c32f98p-1028 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 0x1.921fb4p+0 0x4p-1076 : 0xc.a1bd99b5b586p+20 0x2.7e3fd9c32f98p-1028 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 0x1.921fb4p+0 0x4p-1076 : 0xc.a1bd99b5b5868p+20 0x2.7e3fd9c32f9cp-1028 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623dp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623dp+20L 0x2.7e3fd9c32f99fb44p-1028L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623dp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623dp+20L 0x2.7e3fd9c32f99fb44p-1028L : inexact-ok += ctan downward ldbl-128 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x2.7e3fd9c32f99fb414e4dcf68264ap-1028L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x2.7e3fd9c32f99fb414e4dcf68264cp-1028L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x2.7e3fd9c32f99fb414e4dcf68264ap-1028L : inexact-ok += ctan upward ldbl-128 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8cbp+20L 0x2.7e3fd9c32f99fb414e4dcf68264cp-1028L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x2.7e3fd9c32f98p-1028L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x2.7e3fd9c32f98p-1028L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x2.7e3fd9c32f98p-1028L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd9p+20L 0x2.7e3fd9c32f9cp-1028L : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 0x1.921fb54442d18p+0 0x8p-152 : 0x3.a052cf8639b68p+52 0x6.932c3dab5e518p-44 : inexact-ok += ctan tonearest dbl-64 0x1.921fb54442d18p+0 0x8p-152 : 0x3.a052cf8639b6ap+52 0x6.932c3dab5e518p-44 : inexact-ok += ctan towardzero dbl-64 0x1.921fb54442d18p+0 0x8p-152 : 0x3.a052cf8639b68p+52 0x6.932c3dab5e518p-44 : inexact-ok += ctan upward dbl-64 0x1.921fb54442d18p+0 0x8p-152 : 0x3.a052cf8639b6ap+52 0x6.932c3dab5e51cp-44 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1cp+52L 0x6.932c3dab5e519e38p-44L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1cp+52L 0x6.932c3dab5e519e38p-44L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x6.932c3dab5e519e3180080e7f12c8p-44L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x6.932c3dab5e519e3180080e7f12c8p-44L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x6.932c3dab5e519e3180080e7f12c8p-44L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cababep+52L 0x6.932c3dab5e519e3180080e7f12ccp-44L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cabap+52L 0x6.932c3dab5e519e3180080e7f12p-44L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x6.932c3dab5e519e3180080e7f12p-44L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cabap+52L 0x6.932c3dab5e519e3180080e7f12p-44L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x6.932c3dab5e519e3180080e7f14p-44L : inexact-ok += ctan downward dbl-64 0x1.921fb54442d18p+0 0x0p+0 : 0x3.a052cf8639b68p+52 0x0p+0 : inexact-ok += ctan tonearest dbl-64 0x1.921fb54442d18p+0 0x0p+0 : 0x3.a052cf8639b6ap+52 0x0p+0 : inexact-ok += ctan towardzero dbl-64 0x1.921fb54442d18p+0 0x0p+0 : 0x3.a052cf8639b68p+52 0x0p+0 : inexact-ok += ctan upward dbl-64 0x1.921fb54442d18p+0 0x0p+0 : 0x3.a052cf8639b6ap+52 0x0p+0 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1cp+52L 0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1cp+52L 0x0p+0L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x0p+0L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cababep+52L 0x0p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cabap+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cabap+52L 0x0p+0L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x0p+0L : inexact-ok += ctan downward dbl-64 0x1.921fb54442d18p+0 0x4p-1076 : 0x3.a052cf8639b68p+52 0x3.49961ed5af28cp-968 : inexact-ok += ctan tonearest dbl-64 0x1.921fb54442d18p+0 0x4p-1076 : 0x3.a052cf8639b6ap+52 0x3.49961ed5af28cp-968 : inexact-ok += ctan towardzero dbl-64 0x1.921fb54442d18p+0 0x4p-1076 : 0x3.a052cf8639b68p+52 0x3.49961ed5af28cp-968 : inexact-ok += ctan upward dbl-64 0x1.921fb54442d18p+0 0x4p-1076 : 0x3.a052cf8639b6ap+52 0x3.49961ed5af28ep-968 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1cp+52L 0x3.49961ed5af28cf1cp-968L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1cp+52L 0x3.49961ed5af28cf1cp-968L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x3.49961ed5af28cf18c004073f8964p-968L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x3.49961ed5af28cf18c004073f8964p-968L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x3.49961ed5af28cf18c004073f8964p-968L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cababep+52L 0x3.49961ed5af28cf18c004073f8966p-968L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cabap+52L 0x3.49961ed5af28cf18c004073f89p-968L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x3.49961ed5af28cf18c004073f89p-968L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cabap+52L 0x3.49961ed5af28cf18c004073f89p-968L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x3.49961ed5af28cf18c004073f8ap-968L : inexact-ok +ctan 0x1.921fb54442d1846ap+0 0x1p-16445 += ctan downward flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1496p+24f 0xe.e008fp-104f : inexact-ok += ctan tonearest flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1494p+24f 0xe.e008fp-104f : inexact-ok += ctan towardzero flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1494p+24f 0xe.e008fp-104f : inexact-ok += ctan upward flt-32 0x1.921fb6p+0f 0x8p-152f : -0x1.5d1494p+24f 0xe.e009p-104f : inexact-ok += ctan downward dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9898p+24 0xe.e008f2d6f5c3p-104 : inexact-ok += ctan tonearest dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9897p+24 0xe.e008f2d6f5c38p-104 : inexact-ok += ctan towardzero dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9897p+24 0xe.e008f2d6f5c3p-104 : inexact-ok += ctan upward dbl-64 0x1.921fb6p+0 0x8p-152 : -0x1.5d14946dc9897p+24 0xe.e008f2d6f5c38p-104 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d8p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c3471p-104L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d8p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c347p-104L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c3471p-104L : inexact-ok += ctan downward ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fep+24L 0xe.e008f2d6f5c347063d6ad04df2bp-104L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fep+24L 0xe.e008f2d6f5c347063d6ad04df2bp-104L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0xe.e008f2d6f5c347063d6ad04df2bp-104L : inexact-ok += ctan upward ldbl-128 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0xe.e008f2d6f5c347063d6ad04df2b8p-104L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55285p+24L 0xe.e008f2d6f5c347063d6ad04dfp-104L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55285p+24L 0xe.e008f2d6f5c347063d6ad04df4p-104L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284f8p+24L 0xe.e008f2d6f5c347063d6ad04dfp-104L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb6p+0L 0x8p-152L : -0x1.5d14946dc98975d6421a55284f8p+24L 0xe.e008f2d6f5c347063d6ad04df4p-104L : inexact-ok += ctan downward flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1496p+24f 0x0p+0f : inexact-ok += ctan tonearest flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1494p+24f 0x0p+0f : inexact-ok += ctan towardzero flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1494p+24f 0x0p+0f : inexact-ok += ctan upward flt-32 0x1.921fb6p+0f 0x0p+0f : -0x1.5d1494p+24f 0x0p+0f : inexact-ok += ctan downward dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9898p+24 0x0p+0 : inexact-ok += ctan tonearest dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9897p+24 0x0p+0 : inexact-ok += ctan towardzero dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9897p+24 0x0p+0 : inexact-ok += ctan upward dbl-64 0x1.921fb6p+0 0x0p+0 : -0x1.5d14946dc9897p+24 0x0p+0 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d8p+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d8p+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6p+24L 0x0p+0L : inexact-ok += ctan downward ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fep+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fep+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0x0p+0L : inexact-ok += ctan upward ldbl-128 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0x0p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55285p+24L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55285p+24L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284f8p+24L 0x0p+0L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb6p+0L 0x0p+0L : -0x1.5d14946dc98975d6421a55284f8p+24L 0x0p+0L : inexact-ok += ctan downward dbl-64 0x1.921fb6p+0 0x4p-1076 : -0x1.5d14946dc9898p+24 0x7.7004796b7aep-1028 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 0x1.921fb6p+0 0x4p-1076 : -0x1.5d14946dc9897p+24 0x7.7004796b7aep-1028 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 0x1.921fb6p+0 0x4p-1076 : -0x1.5d14946dc9897p+24 0x7.7004796b7aep-1028 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 0x1.921fb6p+0 0x4p-1076 : -0x1.5d14946dc9897p+24 0x7.7004796b7ae4p-1028 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d8p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a388p-1028L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d8p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a38p-1028L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6p+24L 0x7.7004796b7ae1a388p-1028L : inexact-ok += ctan downward ldbl-128 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284fep+24L 0x7.7004796b7ae1a3831eb56826f958p-1028L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284fep+24L 0x7.7004796b7ae1a3831eb56826f958p-1028L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0x7.7004796b7ae1a3831eb56826f958p-1028L : inexact-ok += ctan upward ldbl-128 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0x7.7004796b7ae1a3831eb56826f95cp-1028L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55285p+24L 0x7.7004796b7aep-1028L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55285p+24L 0x7.7004796b7aep-1028L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284f8p+24L 0x7.7004796b7aep-1028L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm 0x1.921fb6p+0L 0x4p-1076L : -0x1.5d14946dc98975d6421a55284f8p+24L 0x7.7004796b7ae4p-1028L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d8p+24L 0xe.e008f2d6f5cp-16400L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-intel 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5cp-16400L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-intel 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5cp-16400L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-intel 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c8p-16400L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-m68k 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d8p+24L 0xe.e008f2d6f5cp-16400L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-m68k 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c4p-16400L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-m68k 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5cp-16400L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-m68k 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d6p+24L 0xe.e008f2d6f5c4p-16400L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d6421a55284fep+24L 0xe.e008f2d6f5c347063d6ad04cp-16400L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d6421a55284fep+24L 0xe.e008f2d6f5c347063d6ad04cp-16400L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0xe.e008f2d6f5c347063d6ad04cp-16400L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128 0x1.921fb6p+0L 0x8p-16448L : -0x1.5d14946dc98975d6421a55284fdfp+24L 0xe.e008f2d6f5c347063d6ad05p-16400L : inexact-ok underflow errno-erange-ok += ctan downward flt-32 0x1.921fb4p+0f 0x8p-152f : 0xc.a1bd9p+20f 0x4.fc7fbp-104f : inexact-ok += ctan tonearest flt-32 0x1.921fb4p+0f 0x8p-152f : 0xc.a1bdap+20f 0x4.fc7fbp-104f : inexact-ok += ctan towardzero flt-32 0x1.921fb4p+0f 0x8p-152f : 0xc.a1bd9p+20f 0x4.fc7fbp-104f : inexact-ok += ctan upward flt-32 0x1.921fb4p+0f 0x8p-152f : 0xc.a1bdap+20f 0x4.fc7fb8p-104f : inexact-ok += ctan downward dbl-64 0x1.921fb4p+0 0x8p-152 : 0xc.a1bd99b5b586p+20 0x4.fc7fb3865f33cp-104 : inexact-ok += ctan tonearest dbl-64 0x1.921fb4p+0 0x8p-152 : 0xc.a1bd99b5b586p+20 0x4.fc7fb3865f34p-104 : inexact-ok += ctan towardzero dbl-64 0x1.921fb4p+0 0x8p-152 : 0xc.a1bd99b5b586p+20 0x4.fc7fb3865f33cp-104 : inexact-ok += ctan upward dbl-64 0x1.921fb4p+0 0x8p-152 : 0xc.a1bd99b5b5868p+20 0x4.fc7fb3865f34p-104 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f33f688p-104L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f33f68p-104L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f33f688p-104L : inexact-ok += ctan downward ldbl-128 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x4.fc7fb3865f33f6829c9b9ed04c94p-104L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x4.fc7fb3865f33f6829c9b9ed04c98p-104L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x4.fc7fb3865f33f6829c9b9ed04c94p-104L : inexact-ok += ctan upward ldbl-128 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8cbp+20L 0x4.fc7fb3865f33f6829c9b9ed04c98p-104L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x4.fc7fb3865f33f6829c9b9ed04cp-104L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x4.fc7fb3865f33f6829c9b9ed04cp-104L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x4.fc7fb3865f33f6829c9b9ed04cp-104L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb4p+0L 0x8p-152L : 0xc.a1bd99b5b58623cd91404ccd9p+20L 0x4.fc7fb3865f33f6829c9b9ed04ep-104L : inexact-ok += ctan downward flt-32 0x1.921fb4p+0f 0x0p+0f : 0xc.a1bd9p+20f 0x0p+0f : inexact-ok += ctan tonearest flt-32 0x1.921fb4p+0f 0x0p+0f : 0xc.a1bdap+20f 0x0p+0f : inexact-ok += ctan towardzero flt-32 0x1.921fb4p+0f 0x0p+0f : 0xc.a1bd9p+20f 0x0p+0f : inexact-ok += ctan upward flt-32 0x1.921fb4p+0f 0x0p+0f : 0xc.a1bdap+20f 0x0p+0f : inexact-ok += ctan downward dbl-64 0x1.921fb4p+0 0x0p+0 : 0xc.a1bd99b5b586p+20 0x0p+0 : inexact-ok += ctan tonearest dbl-64 0x1.921fb4p+0 0x0p+0 : 0xc.a1bd99b5b586p+20 0x0p+0 : inexact-ok += ctan towardzero dbl-64 0x1.921fb4p+0 0x0p+0 : 0xc.a1bd99b5b586p+20 0x0p+0 : inexact-ok += ctan upward dbl-64 0x1.921fb4p+0 0x0p+0 : 0xc.a1bd99b5b5868p+20 0x0p+0 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cp+20L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623dp+20L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cp+20L 0x0p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623dp+20L 0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cp+20L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623dp+20L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cp+20L 0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623dp+20L 0x0p+0L : inexact-ok += ctan downward ldbl-128 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x0p+0L : inexact-ok += ctan upward ldbl-128 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8cbp+20L 0x0p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x0p+0L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb4p+0L 0x0p+0L : 0xc.a1bd99b5b58623cd91404ccd9p+20L 0x0p+0L : inexact-ok += ctan downward dbl-64 0x1.921fb4p+0 0x4p-1076 : 0xc.a1bd99b5b586p+20 0x2.7e3fd9c32f98p-1028 : inexact-ok underflow errno-erange-ok += ctan tonearest dbl-64 0x1.921fb4p+0 0x4p-1076 : 0xc.a1bd99b5b586p+20 0x2.7e3fd9c32f98p-1028 : inexact-ok underflow errno-erange-ok += ctan towardzero dbl-64 0x1.921fb4p+0 0x4p-1076 : 0xc.a1bd99b5b586p+20 0x2.7e3fd9c32f98p-1028 : inexact-ok underflow errno-erange-ok += ctan upward dbl-64 0x1.921fb4p+0 0x4p-1076 : 0xc.a1bd99b5b5868p+20 0x2.7e3fd9c32f9cp-1028 : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623dp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623dp+20L 0x2.7e3fd9c32f99fb44p-1028L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623dp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cp+20L 0x2.7e3fd9c32f99fb4p-1028L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623dp+20L 0x2.7e3fd9c32f99fb44p-1028L : inexact-ok += ctan downward ldbl-128 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x2.7e3fd9c32f99fb414e4dcf68264ap-1028L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x2.7e3fd9c32f99fb414e4dcf68264cp-1028L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x2.7e3fd9c32f99fb414e4dcf68264ap-1028L : inexact-ok += ctan upward ldbl-128 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8cbp+20L 0x2.7e3fd9c32f99fb414e4dcf68264cp-1028L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x2.7e3fd9c32f98p-1028L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x2.7e3fd9c32f98p-1028L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd8cp+20L 0x2.7e3fd9c32f98p-1028L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm 0x1.921fb4p+0L 0x4p-1076L : 0xc.a1bd99b5b58623cd91404ccd9p+20L 0x2.7e3fd9c32f9cp-1028L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f3p-16400L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-intel 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f3p-16400L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-intel 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f3p-16400L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-intel 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f38p-16400L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-m68k 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f3p-16400L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-96-m68k 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f34p-16400L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-96-m68k 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623cp+20L 0x4.fc7fb3865f3p-16400L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-96-m68k 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623dp+20L 0x4.fc7fb3865f34p-16400L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-128 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x4.fc7fb3865f33f6829c9b9edp-16400L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x4.fc7fb3865f33f6829c9b9edp-16400L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L 0x4.fc7fb3865f33f6829c9b9edp-16400L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128 0x1.921fb4p+0L 0x8p-16448L : 0xc.a1bd99b5b58623cd91404ccd8cbp+20L 0x4.fc7fb3865f33f6829c9b9ed4p-16400L : inexact-ok underflow errno-erange-ok += ctan downward dbl-64 0x1.921fb54442d19p+0 0x8p-152 : -0x1.617a15494767bp+52 0xf.408f476314478p-48 : inexact-ok += ctan tonearest dbl-64 0x1.921fb54442d19p+0 0x8p-152 : -0x1.617a15494767ap+52 0xf.408f476314478p-48 : inexact-ok += ctan towardzero dbl-64 0x1.921fb54442d19p+0 0x8p-152 : -0x1.617a15494767ap+52 0xf.408f476314478p-48 : inexact-ok += ctan upward dbl-64 0x1.921fb54442d19p+0 0x8p-152 : -0x1.617a15494767ap+52 0xf.408f47631448p-48 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a04ap+52L 0xf.408f476314478bep-48L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a048p+52L 0xf.408f476314478bfp-48L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a048p+52L 0xf.408f476314478bep-48L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a048p+52L 0xf.408f476314478bfp-48L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a04ap+52L 0xf.408f476314478bep-48L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a048p+52L 0xf.408f476314478bfp-48L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a048p+52L 0xf.408f476314478bep-48L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a048p+52L 0xf.408f476314478bfp-48L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a04882c320317f3fp+52L 0xf.408f476314478bec5855a362f718p-48L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a04882c320317f3ep+52L 0xf.408f476314478bec5855a362f72p-48L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a04882c320317f3ep+52L 0xf.408f476314478bec5855a362f718p-48L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a04882c320317f3ep+52L 0xf.408f476314478bec5855a362f72p-48L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a04882c320317f8p+52L 0xf.408f476314478bec5855a362f4p-48L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a04882c320317fp+52L 0xf.408f476314478bec5855a362f8p-48L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a04882c320317fp+52L 0xf.408f476314478bec5855a362f4p-48L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb54442d19p+0L 0x8p-152L : -0x1.617a15494767a04882c320317fp+52L 0xf.408f476314478bec5855a362f8p-48L : inexact-ok += ctan downward dbl-64 0x1.921fb54442d19p+0 0x0p+0 : -0x1.617a15494767bp+52 0x0p+0 : inexact-ok += ctan tonearest dbl-64 0x1.921fb54442d19p+0 0x0p+0 : -0x1.617a15494767ap+52 0x0p+0 : inexact-ok += ctan towardzero dbl-64 0x1.921fb54442d19p+0 0x0p+0 : -0x1.617a15494767ap+52 0x0p+0 : inexact-ok += ctan upward dbl-64 0x1.921fb54442d19p+0 0x0p+0 : -0x1.617a15494767ap+52 0x0p+0 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a04ap+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a048p+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a048p+52L 0x0p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a048p+52L 0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a04ap+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a048p+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a048p+52L 0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a048p+52L 0x0p+0L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a04882c320317f3fp+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a04882c320317f3ep+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a04882c320317f3ep+52L 0x0p+0L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a04882c320317f3ep+52L 0x0p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a04882c320317f8p+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a04882c320317fp+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a04882c320317fp+52L 0x0p+0L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb54442d19p+0L 0x0p+0L : -0x1.617a15494767a04882c320317fp+52L 0x0p+0L : inexact-ok += ctan downward dbl-64 0x1.921fb54442d19p+0 0x4p-1076 : -0x1.617a15494767bp+52 0x7.a047a3b18a23cp-972 : inexact-ok += ctan tonearest dbl-64 0x1.921fb54442d19p+0 0x4p-1076 : -0x1.617a15494767ap+52 0x7.a047a3b18a23cp-972 : inexact-ok += ctan towardzero dbl-64 0x1.921fb54442d19p+0 0x4p-1076 : -0x1.617a15494767ap+52 0x7.a047a3b18a23cp-972 : inexact-ok += ctan upward dbl-64 0x1.921fb54442d19p+0 0x4p-1076 : -0x1.617a15494767ap+52 0x7.a047a3b18a24p-972 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a04ap+52L 0x7.a047a3b18a23c5fp-972L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a048p+52L 0x7.a047a3b18a23c5f8p-972L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a048p+52L 0x7.a047a3b18a23c5fp-972L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a048p+52L 0x7.a047a3b18a23c5f8p-972L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a04ap+52L 0x7.a047a3b18a23c5fp-972L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a048p+52L 0x7.a047a3b18a23c5f8p-972L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a048p+52L 0x7.a047a3b18a23c5fp-972L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a048p+52L 0x7.a047a3b18a23c5f8p-972L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a04882c320317f3fp+52L 0x7.a047a3b18a23c5f62c2ad1b17b8cp-972L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a04882c320317f3ep+52L 0x7.a047a3b18a23c5f62c2ad1b17b9p-972L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a04882c320317f3ep+52L 0x7.a047a3b18a23c5f62c2ad1b17b8cp-972L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a04882c320317f3ep+52L 0x7.a047a3b18a23c5f62c2ad1b17b9p-972L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a04882c320317f8p+52L 0x7.a047a3b18a23c5f62c2ad1b178p-972L : inexact-ok underflow errno-erange-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a04882c320317fp+52L 0x7.a047a3b18a23c5f62c2ad1b17cp-972L : inexact-ok underflow errno-erange-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a04882c320317fp+52L 0x7.a047a3b18a23c5f62c2ad1b178p-972L : inexact-ok underflow errno-erange-ok += ctan upward ldbl-128ibm 0x1.921fb54442d19p+0L 0x4p-1076L : -0x1.617a15494767a04882c320317fp+52L 0x7.a047a3b18a23c5f62c2ad1b17cp-972L : inexact-ok underflow errno-erange-ok += ctan downward ldbl-96-intel 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a04ap+52L 0xf.408f476314478bep-16344L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a048p+52L 0xf.408f476314478bfp-16344L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a048p+52L 0xf.408f476314478bep-16344L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a048p+52L 0xf.408f476314478bfp-16344L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a04ap+52L 0xf.408f476314478bep-16344L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a048p+52L 0xf.408f476314478bfp-16344L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a048p+52L 0xf.408f476314478bep-16344L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a048p+52L 0xf.408f476314478bfp-16344L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a04882c320317f3fp+52L 0xf.408f476314478bec5855a362f718p-16344L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a04882c320317f3ep+52L 0xf.408f476314478bec5855a362f72p-16344L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a04882c320317f3ep+52L 0xf.408f476314478bec5855a362f718p-16344L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d19p+0L 0x8p-16448L : -0x1.617a15494767a04882c320317f3ep+52L 0xf.408f476314478bec5855a362f72p-16344L : inexact-ok += ctan downward dbl-64 0x1.921fb54442d18p+0 0x8p-152 : 0x3.a052cf8639b68p+52 0x6.932c3dab5e518p-44 : inexact-ok += ctan tonearest dbl-64 0x1.921fb54442d18p+0 0x8p-152 : 0x3.a052cf8639b6ap+52 0x6.932c3dab5e518p-44 : inexact-ok += ctan towardzero dbl-64 0x1.921fb54442d18p+0 0x8p-152 : 0x3.a052cf8639b68p+52 0x6.932c3dab5e518p-44 : inexact-ok += ctan upward dbl-64 0x1.921fb54442d18p+0 0x8p-152 : 0x3.a052cf8639b6ap+52 0x6.932c3dab5e51cp-44 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1cp+52L 0x6.932c3dab5e519e38p-44L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-44L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1cp+52L 0x6.932c3dab5e519e38p-44L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x6.932c3dab5e519e3180080e7f12c8p-44L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x6.932c3dab5e519e3180080e7f12c8p-44L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x6.932c3dab5e519e3180080e7f12c8p-44L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cababep+52L 0x6.932c3dab5e519e3180080e7f12ccp-44L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cabap+52L 0x6.932c3dab5e519e3180080e7f12p-44L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x6.932c3dab5e519e3180080e7f12p-44L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cabap+52L 0x6.932c3dab5e519e3180080e7f12p-44L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb54442d18p+0L 0x8p-152L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x6.932c3dab5e519e3180080e7f14p-44L : inexact-ok += ctan downward dbl-64 0x1.921fb54442d18p+0 0x0p+0 : 0x3.a052cf8639b68p+52 0x0p+0 : inexact-ok += ctan tonearest dbl-64 0x1.921fb54442d18p+0 0x0p+0 : 0x3.a052cf8639b6ap+52 0x0p+0 : inexact-ok += ctan towardzero dbl-64 0x1.921fb54442d18p+0 0x0p+0 : 0x3.a052cf8639b68p+52 0x0p+0 : inexact-ok += ctan upward dbl-64 0x1.921fb54442d18p+0 0x0p+0 : 0x3.a052cf8639b6ap+52 0x0p+0 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1cp+52L 0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c18p+52L 0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1cp+52L 0x0p+0L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x0p+0L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cababep+52L 0x0p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cabap+52L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cabap+52L 0x0p+0L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb54442d18p+0L 0x0p+0L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x0p+0L : inexact-ok += ctan downward dbl-64 0x1.921fb54442d18p+0 0x4p-1076 : 0x3.a052cf8639b68p+52 0x3.49961ed5af28cp-968 : inexact-ok += ctan tonearest dbl-64 0x1.921fb54442d18p+0 0x4p-1076 : 0x3.a052cf8639b6ap+52 0x3.49961ed5af28cp-968 : inexact-ok += ctan towardzero dbl-64 0x1.921fb54442d18p+0 0x4p-1076 : 0x3.a052cf8639b68p+52 0x3.49961ed5af28cp-968 : inexact-ok += ctan upward dbl-64 0x1.921fb54442d18p+0 0x4p-1076 : 0x3.a052cf8639b6ap+52 0x3.49961ed5af28ep-968 : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1cp+52L 0x3.49961ed5af28cf1cp-968L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c18p+52L 0x3.49961ed5af28cf18p-968L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1cp+52L 0x3.49961ed5af28cf1cp-968L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x3.49961ed5af28cf18c004073f8964p-968L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x3.49961ed5af28cf18c004073f8964p-968L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x3.49961ed5af28cf18c004073f8964p-968L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cababep+52L 0x3.49961ed5af28cf18c004073f8966p-968L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cabap+52L 0x3.49961ed5af28cf18c004073f89p-968L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x3.49961ed5af28cf18c004073f89p-968L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cabap+52L 0x3.49961ed5af28cf18c004073f89p-968L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb54442d18p+0L 0x4p-1076L : 0x3.a052cf8639b69c1871a036cabbp+52L 0x3.49961ed5af28cf18c004073f8ap-968L : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-16340L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-16340L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-16340L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c1cp+52L 0x6.932c3dab5e519e38p-16340L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-16340L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-16340L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c18p+52L 0x6.932c3dab5e519e3p-16340L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c1cp+52L 0x6.932c3dab5e519e38p-16340L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x6.932c3dab5e519e3180080e7f12c8p-16340L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x6.932c3dab5e519e3180080e7f12c8p-16340L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c1871a036cababcp+52L 0x6.932c3dab5e519e3180080e7f12c8p-16340L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d18p+0L 0x8p-16448L : 0x3.a052cf8639b69c1871a036cababep+52L 0x6.932c3dab5e519e3180080e7f12ccp-16340L : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7cp+64L 0x2.55e3001b8e1413fcp-20L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7cp+64L 0x2.55e3001b8e1413fcp-20L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d78p+64L 0x2.55e3001b8e1413fcp-20L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d78p+64L 0x2.55e3001b8e1414p-20L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7cp+64L 0x2.55e3001b8e1413fcp-20L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7cp+64L 0x2.55e3001b8e1413fcp-20L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d78p+64L 0x2.55e3001b8e1413fcp-20L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d78p+64L 0x2.55e3001b8e1414p-20L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7b3b807fb349bcp+64L 0x2.55e3001b8e1413fcf7193625f378p-20L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x2.55e3001b8e1413fcf7193625f37ap-20L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x2.55e3001b8e1413fcf7193625f378p-20L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x2.55e3001b8e1413fcf7193625f37ap-20L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7b3b807fb34ap+64L 0x2.55e3001b8e1413fcf7193625f3p-20L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7b3b807fb34ap+64L 0x2.55e3001b8e1413fcf7193625f3p-20L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7b3b807fb349p+64L 0x2.55e3001b8e1413fcf7193625f3p-20L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x8p-152L : -0x2.29478136aaf68d7b3b807fb349p+64L 0x2.55e3001b8e1413fcf7193625f4p-20L : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7cp+64L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7cp+64L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d78p+64L 0x0p+0L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d78p+64L 0x0p+0L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7cp+64L 0x0p+0L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7cp+64L 0x0p+0L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d78p+64L 0x0p+0L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d78p+64L 0x0p+0L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7b3b807fb349bcp+64L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x0p+0L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x0p+0L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7b3b807fb34ap+64L 0x0p+0L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7b3b807fb34ap+64L 0x0p+0L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7b3b807fb349p+64L 0x0p+0L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x0p+0L : -0x2.29478136aaf68d7b3b807fb349p+64L 0x0p+0L : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7cp+64L 0x1.2af1800dc70a09fep-944L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7cp+64L 0x1.2af1800dc70a09fep-944L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d78p+64L 0x1.2af1800dc70a09fep-944L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d78p+64L 0x1.2af1800dc70a0ap-944L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7cp+64L 0x1.2af1800dc70a09fep-944L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7cp+64L 0x1.2af1800dc70a09fep-944L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d78p+64L 0x1.2af1800dc70a09fep-944L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d78p+64L 0x1.2af1800dc70a0ap-944L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7b3b807fb349bcp+64L 0x1.2af1800dc70a09fe7b8c9b12f9bcp-944L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x1.2af1800dc70a09fe7b8c9b12f9bdp-944L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x1.2af1800dc70a09fe7b8c9b12f9bcp-944L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x1.2af1800dc70a09fe7b8c9b12f9bdp-944L : inexact-ok += ctan downward ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7b3b807fb34ap+64L 0x1.2af1800dc70a09fe7b8c9b12f98p-944L : inexact-ok += ctan tonearest ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7b3b807fb34ap+64L 0x1.2af1800dc70a09fe7b8c9b12f98p-944L : inexact-ok += ctan towardzero ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7b3b807fb349p+64L 0x1.2af1800dc70a09fe7b8c9b12f98p-944L : inexact-ok += ctan upward ldbl-128ibm 0x1.921fb54442d1846ap+0L 0x4p-1076L : -0x2.29478136aaf68d7b3b807fb349p+64L 0x1.2af1800dc70a09fe7b8c9b12fap-944L : inexact-ok += ctan downward ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d7cp+64L 0x2.55e3001b8e1413fcp-16316L : inexact-ok += ctan tonearest ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d7cp+64L 0x2.55e3001b8e1413fcp-16316L : inexact-ok += ctan towardzero ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d78p+64L 0x2.55e3001b8e1413fcp-16316L : inexact-ok += ctan upward ldbl-96-intel 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d78p+64L 0x2.55e3001b8e1414p-16316L : inexact-ok += ctan downward ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d7cp+64L 0x2.55e3001b8e1413fcp-16316L : inexact-ok += ctan tonearest ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d7cp+64L 0x2.55e3001b8e1413fcp-16316L : inexact-ok += ctan towardzero ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d78p+64L 0x2.55e3001b8e1413fcp-16316L : inexact-ok += ctan upward ldbl-96-m68k 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d78p+64L 0x2.55e3001b8e1414p-16316L : inexact-ok += ctan downward ldbl-128 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d7b3b807fb349bcp+64L 0x2.55e3001b8e1413fcf7193625f378p-16316L : inexact-ok += ctan tonearest ldbl-128 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x2.55e3001b8e1413fcf7193625f37ap-16316L : inexact-ok += ctan towardzero ldbl-128 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x2.55e3001b8e1413fcf7193625f378p-16316L : inexact-ok += ctan upward ldbl-128 0x1.921fb54442d1846ap+0L 0x8p-16448L : -0x2.29478136aaf68d7b3b807fb349bap+64L 0x2.55e3001b8e1413fcf7193625f37ap-16316L : inexact-ok +ctanh 0 0 += ctanh downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += ctanh tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += ctanh towardzero flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += ctanh upward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok += ctanh downward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += ctanh upward dbl-64 0x0p+0 0x0p+0 : 0x0p+0 0x0p+0 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0x0p+0L : 0x0p+0L 0x0p+0L : inexact-ok +ctanh 0 -0 += ctanh downward flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += ctanh tonearest flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += ctanh towardzero flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += ctanh upward flt-32 0x0p+0f -0x0p+0f : 0x0p+0f -0x0p+0f : inexact-ok += ctanh downward dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += ctanh upward dbl-64 0x0p+0 -0x0p+0 : 0x0p+0 -0x0p+0 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh downward ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh upward ldbl-128 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L -0x0p+0L : 0x0p+0L -0x0p+0L : inexact-ok +ctanh -0 0 += ctanh downward flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f 0x0p+0f : inexact-ok += ctanh tonearest flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f 0x0p+0f : inexact-ok += ctanh towardzero flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f 0x0p+0f : inexact-ok += ctanh upward flt-32 -0x0p+0f 0x0p+0f : -0x0p+0f 0x0p+0f : inexact-ok += ctanh downward dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 0x0p+0 : inexact-ok += ctanh tonearest dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 0x0p+0 : inexact-ok += ctanh towardzero dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 0x0p+0 : inexact-ok += ctanh upward dbl-64 -0x0p+0 0x0p+0 : -0x0p+0 0x0p+0 : inexact-ok += ctanh downward ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh tonearest ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh towardzero ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh upward ldbl-96-intel -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh downward ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh tonearest ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh towardzero ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh upward ldbl-96-m68k -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh downward ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh tonearest ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh towardzero ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh upward ldbl-128 -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh downward ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh tonearest ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh towardzero ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok += ctanh upward ldbl-128ibm -0x0p+0L 0x0p+0L : -0x0p+0L 0x0p+0L : inexact-ok +ctanh -0 -0 += ctanh downward flt-32 -0x0p+0f -0x0p+0f : -0x0p+0f -0x0p+0f : inexact-ok += ctanh tonearest flt-32 -0x0p+0f -0x0p+0f : -0x0p+0f -0x0p+0f : inexact-ok += ctanh towardzero flt-32 -0x0p+0f -0x0p+0f : -0x0p+0f -0x0p+0f : inexact-ok += ctanh upward flt-32 -0x0p+0f -0x0p+0f : -0x0p+0f -0x0p+0f : inexact-ok += ctanh downward dbl-64 -0x0p+0 -0x0p+0 : -0x0p+0 -0x0p+0 : inexact-ok += ctanh tonearest dbl-64 -0x0p+0 -0x0p+0 : -0x0p+0 -0x0p+0 : inexact-ok += ctanh towardzero dbl-64 -0x0p+0 -0x0p+0 : -0x0p+0 -0x0p+0 : inexact-ok += ctanh upward dbl-64 -0x0p+0 -0x0p+0 : -0x0p+0 -0x0p+0 : inexact-ok += ctanh downward ldbl-96-intel -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh tonearest ldbl-96-intel -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh towardzero ldbl-96-intel -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh upward ldbl-96-intel -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh downward ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh tonearest ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh towardzero ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh upward ldbl-96-m68k -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh downward ldbl-128 -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh tonearest ldbl-128 -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh towardzero ldbl-128 -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh upward ldbl-128 -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh downward ldbl-128ibm -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh tonearest ldbl-128ibm -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh towardzero ldbl-128ibm -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok += ctanh upward ldbl-128ibm -0x0p+0L -0x0p+0L : -0x0p+0L -0x0p+0L : inexact-ok +ctanh 0 pi/4 += ctanh downward flt-32 0x0p+0f 0xc.90fdbp-4f : 0x0p+0f 0x1p+0f : inexact-ok += ctanh tonearest flt-32 0x0p+0f 0xc.90fdbp-4f : 0x0p+0f 0x1p+0f : inexact-ok += ctanh towardzero flt-32 0x0p+0f 0xc.90fdbp-4f : 0x0p+0f 0x1p+0f : inexact-ok += ctanh upward flt-32 0x0p+0f 0xc.90fdbp-4f : 0x0p+0f 0x1.000002p+0f : inexact-ok += ctanh downward dbl-64 0x0p+0 0xc.90fdbp-4 : 0x0p+0 0x1.000000bbbd2ecp+0 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0xc.90fdbp-4 : 0x0p+0 0x1.000000bbbd2ecp+0 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0xc.90fdbp-4 : 0x0p+0 0x1.000000bbbd2ecp+0 : inexact-ok += ctanh upward dbl-64 0x0p+0 0xc.90fdbp-4 : 0x0p+0 0x1.000000bbbd2edp+0 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06cp+0L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06ep+0L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06cp+0L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06ep+0L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06cp+0L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06ep+0L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06cp+0L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06ep+0L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06d6d6fff3655a3p+0L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06d6d6fff3655a3p+0L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06d6d6fff3655a3p+0L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06d6d6fff3655a4p+0L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06d6d6fff36558p+0L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06d6d6fff36558p+0L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06d6d6fff36558p+0L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0xc.90fdbp-4L : 0x0p+0L 0x1.000000bbbd2ec06d6d6fff3656p+0L : inexact-ok += ctanh downward flt-32 0x0p+0f 0xc.90fdap-4f : 0x0p+0f 0xf.ffffep-4f : inexact-ok += ctanh tonearest flt-32 0x0p+0f 0xc.90fdap-4f : 0x0p+0f 0xf.fffffp-4f : inexact-ok += ctanh towardzero flt-32 0x0p+0f 0xc.90fdap-4f : 0x0p+0f 0xf.ffffep-4f : inexact-ok += ctanh upward flt-32 0x0p+0f 0xc.90fdap-4f : 0x0p+0f 0xf.fffffp-4f : inexact-ok += ctanh downward dbl-64 0x0p+0 0xc.90fdap-4 : 0x0p+0 0xf.ffffebbbd2f48p-4 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0xc.90fdap-4 : 0x0p+0 0xf.ffffebbbd2f48p-4 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0xc.90fdap-4 : 0x0p+0 0xf.ffffebbbd2f48p-4 : inexact-ok += ctanh upward dbl-64 0x0p+0 0xc.90fdap-4 : 0x0p+0 0xf.ffffebbbd2f5p-4 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f3p-4L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f3p-4L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f3p-4L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f4p-4L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f3p-4L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f3p-4L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f3p-4L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f4p-4L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f30fa9c07dc0468p-4L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f30fa9c07dc0468p-4L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f30fa9c07dc0468p-4L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f30fa9c07dc047p-4L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f30fa9c07dc04p-4L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f30fa9c07dc04p-4L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f30fa9c07dc04p-4L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0xc.90fdap-4L : 0x0p+0L 0xf.ffffebbbd2f48f30fa9c07dc08p-4L : inexact-ok += ctanh downward dbl-64 0x0p+0 0xc.90fdaa22168c8p-4 : 0x0p+0 0x1p+0 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0xc.90fdaa22168c8p-4 : 0x0p+0 0x1.0000000000001p+0 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0xc.90fdaa22168c8p-4 : 0x0p+0 0x1p+0 : inexact-ok += ctanh upward dbl-64 0x0p+0 0xc.90fdaa22168c8p-4 : 0x0p+0 0x1.0000000000001p+0 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b96p+0L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b96p+0L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b96p+0L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b98p+0L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b96p+0L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b96p+0L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b96p+0L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b98p+0L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b9676733ae8fe8ap+0L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b9676733ae8fe8bp+0L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b9676733ae8fe8ap+0L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b9676733ae8fe8bp+0L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b9676733ae8fe8p+0L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b9676733ae8fe8p+0L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b9676733ae8fe8p+0L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c8p-4L : 0x0p+0L 0x1.0000000000000b9676733ae8ffp+0L : inexact-ok += ctanh downward dbl-64 0x0p+0 0xc.90fdaa22168cp-4 : 0x0p+0 0xf.ffffffffffff8p-4 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0xc.90fdaa22168cp-4 : 0x0p+0 0xf.ffffffffffff8p-4 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0xc.90fdaa22168cp-4 : 0x0p+0 0xf.ffffffffffff8p-4 : inexact-ok += ctanh upward dbl-64 0x0p+0 0xc.90fdaa22168cp-4 : 0x0p+0 0x1p+0 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb96p-4L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb96p-4L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb96p-4L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb97p-4L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb96p-4L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb96p-4L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb96p-4L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb97p-4L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb9676733ae8fe518p-4L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb9676733ae8fe518p-4L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb9676733ae8fe518p-4L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb9676733ae8fe52p-4L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb9676733ae8fe4p-4L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb9676733ae8fe4p-4L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb9676733ae8fe4p-4L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168cp-4L : 0x0p+0L 0xf.ffffffffffffb9676733ae8fe8p-4L : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1.0000000000000002p+0L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1.0000000000000002p+0L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1.000000000000000076733ae8fe47p+0L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1.000000000000000076733ae8fe48p+0L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1.000000000000000076733ae8fe47p+0L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1.000000000000000076733ae8fe48p+0L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1.000000000000000076733ae8fep+0L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1.000000000000000076733ae8fe8p+0L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1.000000000000000076733ae8fep+0L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c235p-4L : 0x0p+0L 0x1.000000000000000076733ae8fe8p+0L : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffep-4L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffep-4L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffep-4L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.fffffffffffffffp-4L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffep-4L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffep-4L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffep-4L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.fffffffffffffffp-4L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffe76733ae8fe478p-4L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffe76733ae8fe48p-4L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffe76733ae8fe478p-4L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffe76733ae8fe48p-4L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffe76733ae8fe4p-4L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffe76733ae8fe4p-4L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffe76733ae8fe4p-4L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234p-4L : 0x0p+0L 0xf.ffffffffffffffe76733ae8fe8p-4L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : 0x0p+0L 0x1.0000000000000000000000000001p+0L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80dc8p-4L : 0x0p+0L 0x1.0000000000000000000000000001p+0L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80dcp-4L : 0x0p+0L 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80dcp-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80dcp-4L : 0x0p+0L 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80dcp-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b81p-4L : 0x0p+0L 0x1.0000000000000000000000000047p+0L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b81p-4L : 0x0p+0L 0x1.0000000000000000000000000048p+0L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b81p-4L : 0x0p+0L 0x1.0000000000000000000000000047p+0L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b81p-4L : 0x0p+0L 0x1.0000000000000000000000000048p+0L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234c4c6628b81p-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234c4c6628b81p-4L : 0x0p+0L 0x1.000000000000000000000000008p+0L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234c4c6628b81p-4L : 0x0p+0L 0x1p+0L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234c4c6628b81p-4L : 0x0p+0L 0x1.000000000000000000000000008p+0L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80cp-4L : 0x0p+0L 0xf.fffffffffffffffffffffffffc78p-4L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80cp-4L : 0x0p+0L 0xf.fffffffffffffffffffffffffc8p-4L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80cp-4L : 0x0p+0L 0xf.fffffffffffffffffffffffffc78p-4L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0xc.90fdaa22168c234c4c6628b80cp-4L : 0x0p+0L 0xf.fffffffffffffffffffffffffc8p-4L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234c4c6628b80cp-4L : 0x0p+0L 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234c4c6628b80cp-4L : 0x0p+0L 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234c4c6628b80cp-4L : 0x0p+0L 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0xc.90fdaa22168c234c4c6628b80cp-4L : 0x0p+0L 0x1p+0L : inexact-ok +ctanh 0.75 1.25 += ctanh downward flt-32 0xcp-4f 0x1.4p+0f : 0x1.5f6334p+0f 0x6.2c386p-4f : inexact-ok += ctanh tonearest flt-32 0xcp-4f 0x1.4p+0f : 0x1.5f6336p+0f 0x6.2c386p-4f : inexact-ok += ctanh towardzero flt-32 0xcp-4f 0x1.4p+0f : 0x1.5f6334p+0f 0x6.2c386p-4f : inexact-ok += ctanh upward flt-32 0xcp-4f 0x1.4p+0f : 0x1.5f6336p+0f 0x6.2c3868p-4f : inexact-ok += ctanh downward dbl-64 0xcp-4 0x1.4p+0 : 0x1.5f6335b1af42bp+0 0x6.2c386076356e8p-4 : inexact-ok += ctanh tonearest dbl-64 0xcp-4 0x1.4p+0 : 0x1.5f6335b1af42cp+0 0x6.2c386076356ecp-4 : inexact-ok += ctanh towardzero dbl-64 0xcp-4 0x1.4p+0 : 0x1.5f6335b1af42bp+0 0x6.2c386076356e8p-4 : inexact-ok += ctanh upward dbl-64 0xcp-4 0x1.4p+0 : 0x1.5f6335b1af42cp+0 0x6.2c386076356ecp-4 : inexact-ok += ctanh downward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62p+0L 0x6.2c386076356eap-4L : inexact-ok += ctanh tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62p+0L 0x6.2c386076356eap-4L : inexact-ok += ctanh towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62p+0L 0x6.2c386076356eap-4L : inexact-ok += ctanh upward ldbl-96-intel 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd64p+0L 0x6.2c386076356ea008p-4L : inexact-ok += ctanh downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62p+0L 0x6.2c386076356eap-4L : inexact-ok += ctanh tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62p+0L 0x6.2c386076356eap-4L : inexact-ok += ctanh towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62p+0L 0x6.2c386076356eap-4L : inexact-ok += ctanh upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd64p+0L 0x6.2c386076356ea008p-4L : inexact-ok += ctanh downward ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62464d7689818cp+0L 0x6.2c386076356ea000be129c14b8c4p-4L : inexact-ok += ctanh tonearest ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62464d7689818cp+0L 0x6.2c386076356ea000be129c14b8c4p-4L : inexact-ok += ctanh towardzero ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62464d7689818cp+0L 0x6.2c386076356ea000be129c14b8c4p-4L : inexact-ok += ctanh upward ldbl-128 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62464d7689818dp+0L 0x6.2c386076356ea000be129c14b8c8p-4L : inexact-ok += ctanh downward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62464d7689818p+0L 0x6.2c386076356ea000be129c14b8p-4L : inexact-ok += ctanh tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62464d7689818p+0L 0x6.2c386076356ea000be129c14b8p-4L : inexact-ok += ctanh towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62464d7689818p+0L 0x6.2c386076356ea000be129c14b8p-4L : inexact-ok += ctanh upward ldbl-128ibm 0xcp-4L 0x1.4p+0L : 0x1.5f6335b1af42bd62464d768982p+0L 0x6.2c386076356ea000be129c14bap-4L : inexact-ok +ctanh -2 -3 += ctanh downward flt-32 -0x2p+0f -0x3p+0f : -0xf.72388p-4f 0x2.87c848p-8f : inexact-ok += ctanh tonearest flt-32 -0x2p+0f -0x3p+0f : -0xf.72387p-4f 0x2.87c84cp-8f : inexact-ok += ctanh towardzero flt-32 -0x2p+0f -0x3p+0f : -0xf.72387p-4f 0x2.87c848p-8f : inexact-ok += ctanh upward flt-32 -0x2p+0f -0x3p+0f : -0xf.72387p-4f 0x2.87c84cp-8f : inexact-ok += ctanh downward dbl-64 -0x2p+0 -0x3p+0 : -0xf.723876a6b9718p-4 0x2.87c84b87ef36ap-8 : inexact-ok += ctanh tonearest dbl-64 -0x2p+0 -0x3p+0 : -0xf.723876a6b9718p-4 0x2.87c84b87ef36ap-8 : inexact-ok += ctanh towardzero dbl-64 -0x2p+0 -0x3p+0 : -0xf.723876a6b971p-4 0x2.87c84b87ef36ap-8 : inexact-ok += ctanh upward dbl-64 -0x2p+0 -0x3p+0 : -0xf.723876a6b971p-4 0x2.87c84b87ef36cp-8 : inexact-ok += ctanh downward ldbl-96-intel -0x2p+0L -0x3p+0L : -0xf.723876a6b971785p-4L 0x2.87c84b87ef36a32cp-8L : inexact-ok += ctanh tonearest ldbl-96-intel -0x2p+0L -0x3p+0L : -0xf.723876a6b971785p-4L 0x2.87c84b87ef36a32cp-8L : inexact-ok += ctanh towardzero ldbl-96-intel -0x2p+0L -0x3p+0L : -0xf.723876a6b971784p-4L 0x2.87c84b87ef36a32cp-8L : inexact-ok += ctanh upward ldbl-96-intel -0x2p+0L -0x3p+0L : -0xf.723876a6b971784p-4L 0x2.87c84b87ef36a33p-8L : inexact-ok += ctanh downward ldbl-96-m68k -0x2p+0L -0x3p+0L : -0xf.723876a6b971785p-4L 0x2.87c84b87ef36a32cp-8L : inexact-ok += ctanh tonearest ldbl-96-m68k -0x2p+0L -0x3p+0L : -0xf.723876a6b971785p-4L 0x2.87c84b87ef36a32cp-8L : inexact-ok += ctanh towardzero ldbl-96-m68k -0x2p+0L -0x3p+0L : -0xf.723876a6b971784p-4L 0x2.87c84b87ef36a32cp-8L : inexact-ok += ctanh upward ldbl-96-m68k -0x2p+0L -0x3p+0L : -0xf.723876a6b971784p-4L 0x2.87c84b87ef36a33p-8L : inexact-ok += ctanh downward ldbl-128 -0x2p+0L -0x3p+0L : -0xf.723876a6b9717849ff07dfd98898p-4L 0x2.87c84b87ef36a32deb7b60c8a6d4p-8L : inexact-ok += ctanh tonearest ldbl-128 -0x2p+0L -0x3p+0L : -0xf.723876a6b9717849ff07dfd9889p-4L 0x2.87c84b87ef36a32deb7b60c8a6d6p-8L : inexact-ok += ctanh towardzero ldbl-128 -0x2p+0L -0x3p+0L : -0xf.723876a6b9717849ff07dfd9889p-4L 0x2.87c84b87ef36a32deb7b60c8a6d4p-8L : inexact-ok += ctanh upward ldbl-128 -0x2p+0L -0x3p+0L : -0xf.723876a6b9717849ff07dfd9889p-4L 0x2.87c84b87ef36a32deb7b60c8a6d6p-8L : inexact-ok += ctanh downward ldbl-128ibm -0x2p+0L -0x3p+0L : -0xf.723876a6b9717849ff07dfd98cp-4L 0x2.87c84b87ef36a32deb7b60c8a6p-8L : inexact-ok += ctanh tonearest ldbl-128ibm -0x2p+0L -0x3p+0L : -0xf.723876a6b9717849ff07dfd988p-4L 0x2.87c84b87ef36a32deb7b60c8a7p-8L : inexact-ok += ctanh towardzero ldbl-128ibm -0x2p+0L -0x3p+0L : -0xf.723876a6b9717849ff07dfd988p-4L 0x2.87c84b87ef36a32deb7b60c8a6p-8L : inexact-ok += ctanh upward ldbl-128ibm -0x2p+0L -0x3p+0L : -0xf.723876a6b9717849ff07dfd988p-4L 0x2.87c84b87ef36a32deb7b60c8a7p-8L : inexact-ok +ctanh 45 1 += ctanh downward flt-32 0x2.dp+4f 0x1p+0f : 0x1p+0f 0x8.1cfap-132f : inexact-ok underflow errno-erange-ok += ctanh tonearest flt-32 0x2.dp+4f 0x1p+0f : 0x1p+0f 0x8.1cfa8p-132f : inexact-ok underflow errno-erange-ok += ctanh towardzero flt-32 0x2.dp+4f 0x1p+0f : 0x1p+0f 0x8.1cfap-132f : inexact-ok underflow errno-erange-ok += ctanh upward flt-32 0x2.dp+4f 0x1p+0f : 0x1.000002p+0f 0x8.1cfa8p-132f : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0x2.dp+4 0x1p+0 : 0x1p+0 0x8.1cfa783d16f4p-132 : inexact-ok += ctanh tonearest dbl-64 0x2.dp+4 0x1p+0 : 0x1p+0 0x8.1cfa783d16f48p-132 : inexact-ok += ctanh towardzero dbl-64 0x2.dp+4 0x1p+0 : 0x1p+0 0x8.1cfa783d16f4p-132 : inexact-ok += ctanh upward dbl-64 0x2.dp+4 0x1p+0 : 0x1.0000000000001p+0 0x8.1cfa783d16f48p-132 : inexact-ok += ctanh downward ldbl-96-intel 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462ap-132L : inexact-ok += ctanh tonearest ldbl-96-intel 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462ap-132L : inexact-ok += ctanh towardzero ldbl-96-intel 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462ap-132L : inexact-ok += ctanh upward ldbl-96-intel 0x2.dp+4L 0x1p+0L : 0x1.0000000000000002p+0L 0x8.1cfa783d16f462bp-132L : inexact-ok += ctanh downward ldbl-96-m68k 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462ap-132L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462ap-132L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462ap-132L : inexact-ok += ctanh upward ldbl-96-m68k 0x2.dp+4L 0x1p+0L : 0x1.0000000000000002p+0L 0x8.1cfa783d16f462bp-132L : inexact-ok += ctanh downward ldbl-128 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462a5a6cd1741d1a8p-132L : inexact-ok += ctanh tonearest ldbl-128 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462a5a6cd1741d1bp-132L : inexact-ok += ctanh towardzero ldbl-128 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462a5a6cd1741d1a8p-132L : inexact-ok += ctanh upward ldbl-128 0x2.dp+4L 0x1p+0L : 0x1.0000000000000000000000000001p+0L 0x8.1cfa783d16f462a5a6cd1741d1bp-132L : inexact-ok += ctanh downward ldbl-128ibm 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462a5a6cd1741dp-132L : inexact-ok += ctanh tonearest ldbl-128ibm 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462a5a6cd1741dp-132L : inexact-ok += ctanh towardzero ldbl-128ibm 0x2.dp+4L 0x1p+0L : 0x1p+0L 0x8.1cfa783d16f462a5a6cd1741dp-132L : inexact-ok += ctanh upward ldbl-128ibm 0x2.dp+4L 0x1p+0L : 0x1.000000000000000000000000008p+0L 0x8.1cfa783d16f462a5a6cd1741d4p-132L : inexact-ok +ctanh 47 1 += ctanh downward flt-32 0x2.fp+4f 0x1p+0f : 0x1p+0f 0x2.60a8p-136f : inexact-ok underflow errno-erange-ok += ctanh tonearest flt-32 0x2.fp+4f 0x1p+0f : 0x1p+0f 0x2.60a8p-136f : inexact-ok underflow errno-erange-ok += ctanh towardzero flt-32 0x2.fp+4f 0x1p+0f : 0x1p+0f 0x2.60a8p-136f : inexact-ok underflow errno-erange-ok += ctanh upward flt-32 0x2.fp+4f 0x1p+0f : 0x1.000002p+0f 0x2.60bp-136f : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0x2.fp+4 0x1p+0 : 0x1p+0 0x2.60a8b2f7f524p-136 : inexact-ok += ctanh tonearest dbl-64 0x2.fp+4 0x1p+0 : 0x1p+0 0x2.60a8b2f7f5242p-136 : inexact-ok += ctanh towardzero dbl-64 0x2.fp+4 0x1p+0 : 0x1p+0 0x2.60a8b2f7f524p-136 : inexact-ok += ctanh upward dbl-64 0x2.fp+4 0x1p+0 : 0x1.0000000000001p+0 0x2.60a8b2f7f5242p-136 : inexact-ok += ctanh downward ldbl-96-intel 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241554p-136L : inexact-ok += ctanh tonearest ldbl-96-intel 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241554p-136L : inexact-ok += ctanh towardzero ldbl-96-intel 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241554p-136L : inexact-ok += ctanh upward ldbl-96-intel 0x2.fp+4L 0x1p+0L : 0x1.0000000000000002p+0L 0x2.60a8b2f7f5241558p-136L : inexact-ok += ctanh downward ldbl-96-m68k 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241554p-136L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241554p-136L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241554p-136L : inexact-ok += ctanh upward ldbl-96-m68k 0x2.fp+4L 0x1p+0L : 0x1.0000000000000002p+0L 0x2.60a8b2f7f5241558p-136L : inexact-ok += ctanh downward ldbl-128 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241555288ba7825782p-136L : inexact-ok += ctanh tonearest ldbl-128 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241555288ba7825782p-136L : inexact-ok += ctanh towardzero ldbl-128 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241555288ba7825782p-136L : inexact-ok += ctanh upward ldbl-128 0x2.fp+4L 0x1p+0L : 0x1.0000000000000000000000000001p+0L 0x2.60a8b2f7f5241555288ba7825784p-136L : inexact-ok += ctanh downward ldbl-128ibm 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241555288ba78257p-136L : inexact-ok += ctanh tonearest ldbl-128ibm 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241555288ba78258p-136L : inexact-ok += ctanh towardzero ldbl-128ibm 0x2.fp+4L 0x1p+0L : 0x1p+0L 0x2.60a8b2f7f5241555288ba78257p-136L : inexact-ok += ctanh upward ldbl-128ibm 0x2.fp+4L 0x1p+0L : 0x1.000000000000000000000000008p+0L 0x2.60a8b2f7f5241555288ba78258p-136L : inexact-ok +ctanh 355 1 += ctanh downward flt-32 0x1.63p+8f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh tonearest flt-32 0x1.63p+8f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh towardzero flt-32 0x1.63p+8f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh upward flt-32 0x1.63p+8f 0x1p+0f : 0x1.000002p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0x1.63p+8 0x1p+0 : 0x1p+0 0x1.76a2c6f034b48p-1024 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 0x1.63p+8 0x1p+0 : 0x1p+0 0x1.76a2c6f034b4cp-1024 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 0x1.63p+8 0x1p+0 : 0x1p+0 0x1.76a2c6f034b48p-1024 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 0x1.63p+8 0x1p+0 : 0x1.0000000000001p+0 0x1.76a2c6f034b4cp-1024 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b4a7fcp-1024L : inexact-ok += ctanh tonearest ldbl-96-intel 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b4a7fcp-1024L : inexact-ok += ctanh towardzero ldbl-96-intel 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b4a7fcp-1024L : inexact-ok += ctanh upward ldbl-96-intel 0x1.63p+8L 0x1p+0L : 0x1.0000000000000002p+0L 0x1.76a2c6f034b4a7fep-1024L : inexact-ok += ctanh downward ldbl-96-m68k 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b4a7fcp-1024L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b4a7fcp-1024L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b4a7fcp-1024L : inexact-ok += ctanh upward ldbl-96-m68k 0x1.63p+8L 0x1p+0L : 0x1.0000000000000002p+0L 0x1.76a2c6f034b4a7fep-1024L : inexact-ok += ctanh downward ldbl-128 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b4a7fc921d45c1e929p-1024L : inexact-ok += ctanh tonearest ldbl-128 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b4a7fc921d45c1e929p-1024L : inexact-ok += ctanh towardzero ldbl-128 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b4a7fc921d45c1e929p-1024L : inexact-ok += ctanh upward ldbl-128 0x1.63p+8L 0x1p+0L : 0x1.0000000000000000000000000001p+0L 0x1.76a2c6f034b4a7fc921d45c1e92ap-1024L : inexact-ok += ctanh downward ldbl-128ibm 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b48p-1024L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b4cp-1024L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm 0x1.63p+8L 0x1p+0L : 0x1p+0L 0x1.76a2c6f034b48p-1024L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm 0x1.63p+8L 0x1p+0L : 0x1.000000000000000000000000008p+0L 0x1.76a2c6f034b4cp-1024L : inexact-ok underflow errno-erange-ok +ctanh 365 1 += ctanh downward flt-32 0x1.6dp+8f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh tonearest flt-32 0x1.6dp+8f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh towardzero flt-32 0x1.6dp+8f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh upward flt-32 0x1.6dp+8f 0x1p+0f : 0x1.000002p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0x1.6dp+8 0x1p+0 : 0x1p+0 0xc.f47fp-1056 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 0x1.6dp+8 0x1p+0 : 0x1p+0 0xc.f47f4p-1056 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 0x1.6dp+8 0x1p+0 : 0x1p+0 0xc.f47fp-1056 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 0x1.6dp+8 0x1p+0 : 0x1.0000000000001p+0 0xc.f47f4p-1056 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47f20686b62b7p-1056L : inexact-ok += ctanh tonearest ldbl-96-intel 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47f20686b62b7p-1056L : inexact-ok += ctanh towardzero ldbl-96-intel 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47f20686b62b7p-1056L : inexact-ok += ctanh upward ldbl-96-intel 0x1.6dp+8L 0x1p+0L : 0x1.0000000000000002p+0L 0xc.f47f20686b62b71p-1056L : inexact-ok += ctanh downward ldbl-96-m68k 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47f20686b62b7p-1056L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47f20686b62b7p-1056L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47f20686b62b7p-1056L : inexact-ok += ctanh upward ldbl-96-m68k 0x1.6dp+8L 0x1p+0L : 0x1.0000000000000002p+0L 0xc.f47f20686b62b71p-1056L : inexact-ok += ctanh downward ldbl-128 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47f20686b62b7024c3d69ff0358p-1056L : inexact-ok += ctanh tonearest ldbl-128 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47f20686b62b7024c3d69ff0358p-1056L : inexact-ok += ctanh towardzero ldbl-128 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47f20686b62b7024c3d69ff0358p-1056L : inexact-ok += ctanh upward ldbl-128 0x1.6dp+8L 0x1p+0L : 0x1.0000000000000000000000000001p+0L 0xc.f47f20686b62b7024c3d69ff036p-1056L : inexact-ok += ctanh downward ldbl-128ibm 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47fp-1056L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47f4p-1056L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm 0x1.6dp+8L 0x1p+0L : 0x1p+0L 0xc.f47fp-1056L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm 0x1.6dp+8L 0x1p+0L : 0x1.000000000000000000000000008p+0L 0xc.f47f4p-1056L : inexact-ok underflow errno-erange-ok +ctanh 5680 1 += ctanh downward flt-32 0x1.63p+12f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh tonearest flt-32 0x1.63p+12f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh towardzero flt-32 0x1.63p+12f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh upward flt-32 0x1.63p+12f 0x1p+0f : 0x1.000002p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0x1.63p+12 0x1p+0 : 0x1p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 0x1.63p+12 0x1p+0 : 0x1p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 0x1.63p+12 0x1p+0 : 0x1p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 0x1.63p+12 0x1p+0 : 0x1.0000000000001p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0x1.63p+12L 0x1p+0L : 0x1p+0L 0xe.6442e59c9ba298p-16392L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-intel 0x1.63p+12L 0x1p+0L : 0x1p+0L 0xe.6442e59c9ba2ap-16392L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-intel 0x1.63p+12L 0x1p+0L : 0x1p+0L 0xe.6442e59c9ba298p-16392L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-intel 0x1.63p+12L 0x1p+0L : 0x1.0000000000000002p+0L 0xe.6442e59c9ba2ap-16392L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-m68k 0x1.63p+12L 0x1p+0L : 0x1p+0L 0xe.6442e59c9ba29cp-16392L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-m68k 0x1.63p+12L 0x1p+0L : 0x1p+0L 0xe.6442e59c9ba2ap-16392L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-m68k 0x1.63p+12L 0x1p+0L : 0x1p+0L 0xe.6442e59c9ba29cp-16392L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-m68k 0x1.63p+12L 0x1p+0L : 0x1.0000000000000002p+0L 0xe.6442e59c9ba2ap-16392L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128 0x1.63p+12L 0x1p+0L : 0x1p+0L 0xe.6442e59c9ba29e34d4429f85ccp-16392L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128 0x1.63p+12L 0x1p+0L : 0x1p+0L 0xe.6442e59c9ba29e34d4429f85ccp-16392L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128 0x1.63p+12L 0x1p+0L : 0x1p+0L 0xe.6442e59c9ba29e34d4429f85ccp-16392L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128 0x1.63p+12L 0x1p+0L : 0x1.0000000000000000000000000001p+0L 0xe.6442e59c9ba29e34d4429f85dp-16392L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128ibm 0x1.63p+12L 0x1p+0L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm 0x1.63p+12L 0x1p+0L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm 0x1.63p+12L 0x1p+0L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm 0x1.63p+12L 0x1p+0L : 0x1.000000000000000000000000008p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok +ctanh 5690 1 += ctanh downward flt-32 0x1.63ap+12f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh tonearest flt-32 0x1.63ap+12f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh towardzero flt-32 0x1.63ap+12f 0x1p+0f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh upward flt-32 0x1.63ap+12f 0x1p+0f : 0x1.000002p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0x1.63ap+12 0x1p+0 : 0x1p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 0x1.63ap+12 0x1p+0 : 0x1p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 0x1.63ap+12 0x1p+0 : 0x1p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 0x1.63ap+12 0x1p+0 : 0x1.0000000000001p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x7.f673ec8p-16420L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-intel 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x7.f673edp-16420L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-intel 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x7.f673ec8p-16420L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-intel 0x1.63ap+12L 0x1p+0L : 0x1.0000000000000002p+0L 0x7.f673edp-16420L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-m68k 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x7.f673eccp-16420L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-m68k 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x7.f673eccp-16420L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-m68k 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x7.f673eccp-16420L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-m68k 0x1.63ap+12L 0x1p+0L : 0x1.0000000000000002p+0L 0x7.f673edp-16420L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x7.f673ecc6b39aff738e4p-16420L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x7.f673ecc6b39aff738e8p-16420L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x7.f673ecc6b39aff738e4p-16420L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128 0x1.63ap+12L 0x1p+0L : 0x1.0000000000000000000000000001p+0L 0x7.f673ecc6b39aff738e8p-16420L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128ibm 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm 0x1.63ap+12L 0x1p+0L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm 0x1.63ap+12L 0x1p+0L : 0x1.000000000000000000000000008p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok +ctanh 0 0x3.243f6cp-1 += ctanh downward flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1496p+24f : inexact-ok += ctanh tonearest flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1494p+24f : inexact-ok += ctanh towardzero flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1494p+24f : inexact-ok += ctanh upward flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1494p+24f : inexact-ok += ctanh downward dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9898p+24 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh upward dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok +ctanh 1 0x1p127 += ctanh downward flt-32 0x1p+0f 0x8p+124f : 0xe.8fe8p-4f 0x3.ea075cp-4f : inexact-ok += ctanh tonearest flt-32 0x1p+0f 0x8p+124f : 0xe.8fe81p-4f 0x3.ea076p-4f : inexact-ok += ctanh towardzero flt-32 0x1p+0f 0x8p+124f : 0xe.8fe8p-4f 0x3.ea075cp-4f : inexact-ok += ctanh upward flt-32 0x1p+0f 0x8p+124f : 0xe.8fe81p-4f 0x3.ea076p-4f : inexact-ok += ctanh downward dbl-64 0x1p+0 0x8p+124 : 0xe.8fe80b8795b68p-4 0x3.ea075fdf18c8ap-4 : inexact-ok += ctanh tonearest dbl-64 0x1p+0 0x8p+124 : 0xe.8fe80b8795b7p-4 0x3.ea075fdf18c8ap-4 : inexact-ok += ctanh towardzero dbl-64 0x1p+0 0x8p+124 : 0xe.8fe80b8795b68p-4 0x3.ea075fdf18c8ap-4 : inexact-ok += ctanh upward dbl-64 0x1p+0 0x8p+124 : 0xe.8fe80b8795b7p-4 0x3.ea075fdf18c8cp-4 : inexact-ok += ctanh downward ldbl-96-intel 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2p-4L 0x3.ea075fdf18c8a748p-4L : inexact-ok += ctanh tonearest ldbl-96-intel 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed3p-4L 0x3.ea075fdf18c8a74cp-4L : inexact-ok += ctanh towardzero ldbl-96-intel 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2p-4L 0x3.ea075fdf18c8a748p-4L : inexact-ok += ctanh upward ldbl-96-intel 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed3p-4L 0x3.ea075fdf18c8a74cp-4L : inexact-ok += ctanh downward ldbl-96-m68k 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2p-4L 0x3.ea075fdf18c8a748p-4L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed3p-4L 0x3.ea075fdf18c8a74cp-4L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2p-4L 0x3.ea075fdf18c8a748p-4L : inexact-ok += ctanh upward ldbl-96-m68k 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed3p-4L 0x3.ea075fdf18c8a74cp-4L : inexact-ok += ctanh downward ldbl-128 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2c28e53930ce48p-4L 0x3.ea075fdf18c8a74bfc7e25465e78p-4L : inexact-ok += ctanh tonearest ldbl-128 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2c28e53930ce48p-4L 0x3.ea075fdf18c8a74bfc7e25465e78p-4L : inexact-ok += ctanh towardzero ldbl-128 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2c28e53930ce48p-4L 0x3.ea075fdf18c8a74bfc7e25465e78p-4L : inexact-ok += ctanh upward ldbl-128 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2c28e53930ce5p-4L 0x3.ea075fdf18c8a74bfc7e25465e7ap-4L : inexact-ok += ctanh downward ldbl-128ibm 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2c28e53930ccp-4L 0x3.ea075fdf18c8a74bfc7e25465ep-4L : inexact-ok += ctanh tonearest ldbl-128ibm 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2c28e53930dp-4L 0x3.ea075fdf18c8a74bfc7e25465ep-4L : inexact-ok += ctanh towardzero ldbl-128ibm 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2c28e53930ccp-4L 0x3.ea075fdf18c8a74bfc7e25465ep-4L : inexact-ok += ctanh upward ldbl-128ibm 0x1p+0L 0x8p+124L : 0xe.8fe80b8795b6ed2c28e53930dp-4L 0x3.ea075fdf18c8a74bfc7e25465fp-4L : inexact-ok +ctanh 1 0x1p1023 += ctanh downward flt-32 0x1p+0f 0xf.fffffp+124f : 0xd.c2635p-4f -0x3.60b264p-4f : inexact-ok += ctanh tonearest flt-32 0x1p+0f 0xf.fffffp+124f : 0xd.c2635p-4f -0x3.60b26p-4f : inexact-ok += ctanh towardzero flt-32 0x1p+0f 0xf.fffffp+124f : 0xd.c2635p-4f -0x3.60b26p-4f : inexact-ok += ctanh upward flt-32 0x1p+0f 0xf.fffffp+124f : 0xd.c2636p-4f -0x3.60b26p-4f : inexact-ok += ctanh downward dbl-64 0x1p+0 0xf.fffffp+124 : 0xd.c26353c0682p-4 -0x3.60b2616c1339ap-4 : inexact-ok += ctanh tonearest dbl-64 0x1p+0 0xf.fffffp+124 : 0xd.c26353c0682p-4 -0x3.60b2616c1339ap-4 : inexact-ok += ctanh towardzero dbl-64 0x1p+0 0xf.fffffp+124 : 0xd.c26353c0682p-4 -0x3.60b2616c13398p-4 : inexact-ok += ctanh upward dbl-64 0x1p+0 0xf.fffffp+124 : 0xd.c26353c068208p-4 -0x3.60b2616c13398p-4 : inexact-ok += ctanh downward ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c1339906cp-4L : inexact-ok += ctanh tonearest ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh towardzero ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh upward ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203cp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh downward ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c1339906cp-4L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh upward ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203cp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh downward ldbl-128 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94db8p-4L -0x3.60b2616c1339906858c23a90d002p-4L : inexact-ok += ctanh tonearest ldbl-128 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94dcp-4L -0x3.60b2616c1339906858c23a90d002p-4L : inexact-ok += ctanh towardzero ldbl-128 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94db8p-4L -0x3.60b2616c1339906858c23a90dp-4L : inexact-ok += ctanh upward ldbl-128 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94dcp-4L -0x3.60b2616c1339906858c23a90dp-4L : inexact-ok += ctanh downward ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94cp-4L -0x3.60b2616c1339906858c23a90d1p-4L : inexact-ok += ctanh tonearest ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94cp-4L -0x3.60b2616c1339906858c23a90dp-4L : inexact-ok += ctanh towardzero ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94cp-4L -0x3.60b2616c1339906858c23a90dp-4L : inexact-ok += ctanh upward ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b95p-4L -0x3.60b2616c1339906858c23a90dp-4L : inexact-ok += ctanh downward dbl-64 0x1p+0 0x8p+1020 : 0xe.0ec57df9e9488p-4 -0x3.9b7edf84053dep-4 : inexact-ok += ctanh tonearest dbl-64 0x1p+0 0x8p+1020 : 0xe.0ec57df9e9488p-4 -0x3.9b7edf84053dep-4 : inexact-ok += ctanh towardzero dbl-64 0x1p+0 0x8p+1020 : 0xe.0ec57df9e9488p-4 -0x3.9b7edf84053dcp-4 : inexact-ok += ctanh upward dbl-64 0x1p+0 0x8p+1020 : 0xe.0ec57df9e949p-4 -0x3.9b7edf84053dcp-4 : inexact-ok += ctanh downward ldbl-96-intel 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b8p-4L -0x3.9b7edf84053dda48p-4L : inexact-ok += ctanh tonearest ldbl-96-intel 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b8p-4L -0x3.9b7edf84053dda48p-4L : inexact-ok += ctanh towardzero ldbl-96-intel 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b8p-4L -0x3.9b7edf84053dda44p-4L : inexact-ok += ctanh upward ldbl-96-intel 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b9p-4L -0x3.9b7edf84053dda44p-4L : inexact-ok += ctanh downward ldbl-96-m68k 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b8p-4L -0x3.9b7edf84053dda48p-4L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b8p-4L -0x3.9b7edf84053dda48p-4L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b8p-4L -0x3.9b7edf84053dda44p-4L : inexact-ok += ctanh upward ldbl-96-m68k 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b9p-4L -0x3.9b7edf84053dda44p-4L : inexact-ok += ctanh downward ldbl-128 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b83c566cd1868b8p-4L -0x3.9b7edf84053dda473c3ba3e75288p-4L : inexact-ok += ctanh tonearest ldbl-128 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b83c566cd1868b8p-4L -0x3.9b7edf84053dda473c3ba3e75286p-4L : inexact-ok += ctanh towardzero ldbl-128 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b83c566cd1868b8p-4L -0x3.9b7edf84053dda473c3ba3e75286p-4L : inexact-ok += ctanh upward ldbl-128 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b83c566cd1868cp-4L -0x3.9b7edf84053dda473c3ba3e75286p-4L : inexact-ok += ctanh downward ldbl-128ibm 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b83c566cd1868p-4L -0x3.9b7edf84053dda473c3ba3e753p-4L : inexact-ok += ctanh tonearest ldbl-128ibm 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b83c566cd1868p-4L -0x3.9b7edf84053dda473c3ba3e753p-4L : inexact-ok += ctanh towardzero ldbl-128ibm 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b83c566cd1868p-4L -0x3.9b7edf84053dda473c3ba3e752p-4L : inexact-ok += ctanh upward ldbl-128ibm 0x1p+0L 0x8p+1020L : 0xe.0ec57df9e9489b83c566cd186cp-4L -0x3.9b7edf84053dda473c3ba3e752p-4L : inexact-ok +ctanh 1 0x1p16383 += ctanh downward flt-32 0x1p+0f 0xf.fffffp+124f : 0xd.c2635p-4f -0x3.60b264p-4f : inexact-ok += ctanh tonearest flt-32 0x1p+0f 0xf.fffffp+124f : 0xd.c2635p-4f -0x3.60b26p-4f : inexact-ok += ctanh towardzero flt-32 0x1p+0f 0xf.fffffp+124f : 0xd.c2635p-4f -0x3.60b26p-4f : inexact-ok += ctanh upward flt-32 0x1p+0f 0xf.fffffp+124f : 0xd.c2636p-4f -0x3.60b26p-4f : inexact-ok += ctanh downward dbl-64 0x1p+0 0xf.fffffp+124 : 0xd.c26353c0682p-4 -0x3.60b2616c1339ap-4 : inexact-ok += ctanh tonearest dbl-64 0x1p+0 0xf.fffffp+124 : 0xd.c26353c0682p-4 -0x3.60b2616c1339ap-4 : inexact-ok += ctanh towardzero dbl-64 0x1p+0 0xf.fffffp+124 : 0xd.c26353c0682p-4 -0x3.60b2616c13398p-4 : inexact-ok += ctanh upward dbl-64 0x1p+0 0xf.fffffp+124 : 0xd.c26353c068208p-4 -0x3.60b2616c13398p-4 : inexact-ok += ctanh downward ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c1339906cp-4L : inexact-ok += ctanh tonearest ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh towardzero ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh upward ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203cp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh downward ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c1339906cp-4L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bfp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh upward ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203cp-4L -0x3.60b2616c13399068p-4L : inexact-ok += ctanh downward ldbl-128 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94db8p-4L -0x3.60b2616c1339906858c23a90d002p-4L : inexact-ok += ctanh tonearest ldbl-128 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94dcp-4L -0x3.60b2616c1339906858c23a90d002p-4L : inexact-ok += ctanh towardzero ldbl-128 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94db8p-4L -0x3.60b2616c1339906858c23a90dp-4L : inexact-ok += ctanh upward ldbl-128 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94dcp-4L -0x3.60b2616c1339906858c23a90dp-4L : inexact-ok += ctanh downward ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94cp-4L -0x3.60b2616c1339906858c23a90d1p-4L : inexact-ok += ctanh tonearest ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94cp-4L -0x3.60b2616c1339906858c23a90dp-4L : inexact-ok += ctanh towardzero ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b94cp-4L -0x3.60b2616c1339906858c23a90dp-4L : inexact-ok += ctanh upward ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0xd.c26353c068203bf3a2f7a9b95p-4L -0x3.60b2616c1339906858c23a90dp-4L : inexact-ok += ctanh downward dbl-64 0x1p+0 0xf.ffffffffffff8p+1020 : 0xc.2f859c7fb353p-4 -0x8.891dda2c06578p-12 : inexact-ok += ctanh tonearest dbl-64 0x1p+0 0xf.ffffffffffff8p+1020 : 0xc.2f859c7fb353p-4 -0x8.891dda2c06578p-12 : inexact-ok += ctanh towardzero dbl-64 0x1p+0 0xf.ffffffffffff8p+1020 : 0xc.2f859c7fb353p-4 -0x8.891dda2c0657p-12 : inexact-ok += ctanh upward dbl-64 0x1p+0 0xf.ffffffffffff8p+1020 : 0xc.2f859c7fb3538p-4 -0x8.891dda2c0657p-12 : inexact-ok += ctanh downward ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb353152p-4L -0x8.891dda2c0657715p-12L : inexact-ok += ctanh tonearest ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb353152p-4L -0x8.891dda2c0657714p-12L : inexact-ok += ctanh towardzero ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb353152p-4L -0x8.891dda2c0657714p-12L : inexact-ok += ctanh upward ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb353153p-4L -0x8.891dda2c0657714p-12L : inexact-ok += ctanh downward ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb353152p-4L -0x8.891dda2c0657715p-12L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb353152p-4L -0x8.891dda2c0657714p-12L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb353152p-4L -0x8.891dda2c0657714p-12L : inexact-ok += ctanh upward ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb353153p-4L -0x8.891dda2c0657714p-12L : inexact-ok += ctanh downward ldbl-128 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb3531523e975e1dad058p-4L -0x8.891dda2c06577145af81f4f5604p-12L : inexact-ok += ctanh tonearest ldbl-128 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb3531523e975e1dad058p-4L -0x8.891dda2c06577145af81f4f5604p-12L : inexact-ok += ctanh towardzero ldbl-128 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb3531523e975e1dad058p-4L -0x8.891dda2c06577145af81f4f56038p-12L : inexact-ok += ctanh upward ldbl-128 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb3531523e975e1dad06p-4L -0x8.891dda2c06577145af81f4f56038p-12L : inexact-ok += ctanh downward ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb3531523e975e1dadp-4L -0x8.891dda2c06577145af81f4f564p-12L : inexact-ok += ctanh tonearest ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb3531523e975e1dadp-4L -0x8.891dda2c06577145af81f4f56p-12L : inexact-ok += ctanh towardzero ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb3531523e975e1dadp-4L -0x8.891dda2c06577145af81f4f56p-12L : inexact-ok += ctanh upward ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p+1020L : 0xc.2f859c7fb3531523e975e1dad4p-4L -0x8.891dda2c06577145af81f4f56p-12L : inexact-ok += ctanh downward ldbl-96-intel 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08bfp-4L 0x2.92e1ce9b08cb660cp-4L : inexact-ok += ctanh tonearest ldbl-96-intel 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08cp-4L 0x2.92e1ce9b08cb660cp-4L : inexact-ok += ctanh towardzero ldbl-96-intel 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08bfp-4L 0x2.92e1ce9b08cb660cp-4L : inexact-ok += ctanh upward ldbl-96-intel 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08cp-4L 0x2.92e1ce9b08cb661p-4L : inexact-ok += ctanh downward ldbl-96-m68k 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08bfp-4L 0x2.92e1ce9b08cb660cp-4L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08cp-4L 0x2.92e1ce9b08cb660cp-4L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08bfp-4L 0x2.92e1ce9b08cb660cp-4L : inexact-ok += ctanh upward ldbl-96-m68k 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08cp-4L 0x2.92e1ce9b08cb661p-4L : inexact-ok += ctanh downward ldbl-128 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08bfe358cf75c6128p-4L 0x2.92e1ce9b08cb660c9a8081990afap-4L : inexact-ok += ctanh tonearest ldbl-128 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08bfe358cf75c6128p-4L 0x2.92e1ce9b08cb660c9a8081990afcp-4L : inexact-ok += ctanh towardzero ldbl-128 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08bfe358cf75c6128p-4L 0x2.92e1ce9b08cb660c9a8081990afap-4L : inexact-ok += ctanh upward ldbl-128 0x1p+0L 0x8p+16380L : 0xd.039cb06618c08bfe358cf75c613p-4L 0x2.92e1ce9b08cb660c9a8081990afcp-4L : inexact-ok += ctanh downward ldbl-128 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.33b2569c333811735902f282a0fp+0L 0x3.89f37a0888a0e05652b04c0aa334p-4L : inexact-ok += ctanh tonearest ldbl-128 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.33b2569c333811735902f282a0fp+0L 0x3.89f37a0888a0e05652b04c0aa334p-4L : inexact-ok += ctanh towardzero ldbl-128 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.33b2569c333811735902f282a0fp+0L 0x3.89f37a0888a0e05652b04c0aa334p-4L : inexact-ok += ctanh upward ldbl-128 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.33b2569c333811735902f282a0f1p+0L 0x3.89f37a0888a0e05652b04c0aa336p-4L : inexact-ok += ctanh downward ldbl-128ibm 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.33b2569c333811735902f282a08p+0L 0x3.89f37a0888a0e05652b04c0aa3p-4L : inexact-ok += ctanh tonearest ldbl-128ibm 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.33b2569c333811735902f282a1p+0L 0x3.89f37a0888a0e05652b04c0aa3p-4L : inexact-ok += ctanh towardzero ldbl-128ibm 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.33b2569c333811735902f282a08p+0L 0x3.89f37a0888a0e05652b04c0aa3p-4L : inexact-ok += ctanh upward ldbl-128ibm 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.33b2569c333811735902f282a1p+0L 0x3.89f37a0888a0e05652b04c0aa4p-4L : inexact-ok +ctanh 50000 50000 += ctanh downward flt-32 0xc.35p+12f 0xc.35p+12f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh tonearest flt-32 0xc.35p+12f 0xc.35p+12f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh towardzero flt-32 0xc.35p+12f 0xc.35p+12f : 0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh upward flt-32 0xc.35p+12f 0xc.35p+12f : 0x1.000002p+0f 0x8p-152f : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0xc.35p+12 0xc.35p+12 : 0x1p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 0xc.35p+12 0xc.35p+12 : 0x1p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 0xc.35p+12 0xc.35p+12 : 0x1p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 0xc.35p+12 0xc.35p+12 : 0x1.0000000000001p+0 0x4p-1076 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-intel 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-intel 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-intel 0xc.35p+12L 0xc.35p+12L : 0x1.0000000000000002p+0L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-m68k 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-m68k 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-m68k 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-m68k 0xc.35p+12L 0xc.35p+12L : 0x1.0000000000000002p+0L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128 0xc.35p+12L 0xc.35p+12L : 0x1.0000000000000000000000000001p+0L 0x4p-16496L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128ibm 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm 0xc.35p+12L 0xc.35p+12L : 0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm 0xc.35p+12L 0xc.35p+12L : 0x1.000000000000000000000000008p+0L 0x4p-1076L : inexact-ok underflow errno-erange-ok +ctanh 50000 -50000 += ctanh downward flt-32 0xc.35p+12f -0xc.35p+12f : 0x1p+0f -0x8p-152f : inexact-ok underflow errno-erange-ok += ctanh tonearest flt-32 0xc.35p+12f -0xc.35p+12f : 0x1p+0f -0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh towardzero flt-32 0xc.35p+12f -0xc.35p+12f : 0x1p+0f -0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh upward flt-32 0xc.35p+12f -0xc.35p+12f : 0x1.000002p+0f -0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0xc.35p+12 -0xc.35p+12 : 0x1p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 0xc.35p+12 -0xc.35p+12 : 0x1p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 0xc.35p+12 -0xc.35p+12 : 0x1p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 0xc.35p+12 -0xc.35p+12 : 0x1.0000000000001p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-intel 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-intel 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-intel 0xc.35p+12L -0xc.35p+12L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-m68k 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-m68k 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-m68k 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-m68k 0xc.35p+12L -0xc.35p+12L : 0x1.0000000000000002p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128 0xc.35p+12L -0xc.35p+12L : 0x1.0000000000000000000000000001p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128ibm 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm 0xc.35p+12L -0xc.35p+12L : 0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm 0xc.35p+12L -0xc.35p+12L : 0x1.000000000000000000000000008p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok +ctanh -50000 50000 += ctanh downward flt-32 -0xc.35p+12f 0xc.35p+12f : -0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh tonearest flt-32 -0xc.35p+12f 0xc.35p+12f : -0x1p+0f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh towardzero flt-32 -0xc.35p+12f 0xc.35p+12f : -0xf.fffffp-4f 0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh upward flt-32 -0xc.35p+12f 0xc.35p+12f : -0xf.fffffp-4f 0x8p-152f : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 -0xc.35p+12 0xc.35p+12 : -0x1p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 -0xc.35p+12 0xc.35p+12 : -0x1p+0 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 -0xc.35p+12 0xc.35p+12 : -0xf.ffffffffffff8p-4 0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 -0xc.35p+12 0xc.35p+12 : -0xf.ffffffffffff8p-4 0x4p-1076 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel -0xc.35p+12L 0xc.35p+12L : -0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-intel -0xc.35p+12L 0xc.35p+12L : -0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-intel -0xc.35p+12L 0xc.35p+12L : -0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-intel -0xc.35p+12L 0xc.35p+12L : -0xf.fffffffffffffffp-4L 0x8p-16448L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-m68k -0xc.35p+12L 0xc.35p+12L : -0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-m68k -0xc.35p+12L 0xc.35p+12L : -0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-m68k -0xc.35p+12L 0xc.35p+12L : -0xf.fffffffffffffffp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-m68k -0xc.35p+12L 0xc.35p+12L : -0xf.fffffffffffffffp-4L 0x4p-16448L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128 -0xc.35p+12L 0xc.35p+12L : -0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128 -0xc.35p+12L 0xc.35p+12L : -0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128 -0xc.35p+12L 0xc.35p+12L : -0xf.fffffffffffffffffffffffffff8p-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128 -0xc.35p+12L 0xc.35p+12L : -0xf.fffffffffffffffffffffffffff8p-4L 0x4p-16496L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128ibm -0xc.35p+12L 0xc.35p+12L : -0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm -0xc.35p+12L 0xc.35p+12L : -0x1p+0L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm -0xc.35p+12L 0xc.35p+12L : -0xf.fffffffffffffffffffffffffcp-4L 0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm -0xc.35p+12L 0xc.35p+12L : -0xf.fffffffffffffffffffffffffcp-4L 0x4p-1076L : inexact-ok underflow errno-erange-ok +ctanh -50000 -50000 += ctanh downward flt-32 -0xc.35p+12f -0xc.35p+12f : -0x1p+0f -0x8p-152f : inexact-ok underflow errno-erange-ok += ctanh tonearest flt-32 -0xc.35p+12f -0xc.35p+12f : -0x1p+0f -0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh towardzero flt-32 -0xc.35p+12f -0xc.35p+12f : -0xf.fffffp-4f -0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh upward flt-32 -0xc.35p+12f -0xc.35p+12f : -0xf.fffffp-4f -0x0p+0f : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 -0xc.35p+12 -0xc.35p+12 : -0x1p+0 -0x4p-1076 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 -0xc.35p+12 -0xc.35p+12 : -0x1p+0 -0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 -0xc.35p+12 -0xc.35p+12 : -0xf.ffffffffffff8p-4 -0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 -0xc.35p+12 -0xc.35p+12 : -0xf.ffffffffffff8p-4 -0x0p+0 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel -0xc.35p+12L -0xc.35p+12L : -0x1p+0L -0x8p-16448L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-intel -0xc.35p+12L -0xc.35p+12L : -0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-intel -0xc.35p+12L -0xc.35p+12L : -0xf.fffffffffffffffp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-intel -0xc.35p+12L -0xc.35p+12L : -0xf.fffffffffffffffp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-m68k -0xc.35p+12L -0xc.35p+12L : -0x1p+0L -0x4p-16448L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-m68k -0xc.35p+12L -0xc.35p+12L : -0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-m68k -0xc.35p+12L -0xc.35p+12L : -0xf.fffffffffffffffp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-m68k -0xc.35p+12L -0xc.35p+12L : -0xf.fffffffffffffffp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128 -0xc.35p+12L -0xc.35p+12L : -0x1p+0L -0x4p-16496L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128 -0xc.35p+12L -0xc.35p+12L : -0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128 -0xc.35p+12L -0xc.35p+12L : -0xf.fffffffffffffffffffffffffff8p-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128 -0xc.35p+12L -0xc.35p+12L : -0xf.fffffffffffffffffffffffffff8p-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128ibm -0xc.35p+12L -0xc.35p+12L : -0x1p+0L -0x4p-1076L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm -0xc.35p+12L -0xc.35p+12L : -0x1p+0L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm -0xc.35p+12L -0xc.35p+12L : -0xf.fffffffffffffffffffffffffcp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm -0xc.35p+12L -0xc.35p+12L : -0xf.fffffffffffffffffffffffffcp-4L -0x0p+0L : inexact-ok underflow errno-erange-ok +ctanh 0x1p-149 0x1.921fb6p+0 += ctanh downward flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e008fp-104f -0x1.5d1496p+24f : inexact-ok += ctanh tonearest flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e008fp-104f -0x1.5d1494p+24f : inexact-ok += ctanh towardzero flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e008fp-104f -0x1.5d1494p+24f : inexact-ok += ctanh upward flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e009p-104f -0x1.5d1494p+24f : inexact-ok += ctanh downward dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c3p-104 -0x1.5d14946dc9898p+24 : inexact-ok += ctanh tonearest dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c38p-104 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh towardzero dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c3p-104 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh upward dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c38p-104 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh downward ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c3471p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c3471p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2bp-104L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh tonearest ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2bp-104L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh towardzero ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2bp-104L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh upward ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2b8p-104L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh downward ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04dfp-104L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh tonearest ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df4p-104L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh towardzero ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04dfp-104L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok += ctanh upward ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df4p-104L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok +ctanh 0x1p-1074 0x1.921fb54442d18p+0 += ctanh downward flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e008fp-104f -0x1.5d1496p+24f : inexact-ok += ctanh tonearest flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e008fp-104f -0x1.5d1494p+24f : inexact-ok += ctanh towardzero flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e008fp-104f -0x1.5d1494p+24f : inexact-ok += ctanh upward flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e009p-104f -0x1.5d1494p+24f : inexact-ok += ctanh downward dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c3p-104 -0x1.5d14946dc9898p+24 : inexact-ok += ctanh tonearest dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c38p-104 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh towardzero dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c3p-104 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh upward dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c38p-104 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh downward ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c3471p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c3471p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2bp-104L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh tonearest ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2bp-104L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh towardzero ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2bp-104L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh upward ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2b8p-104L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh downward ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04dfp-104L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh tonearest ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df4p-104L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh towardzero ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04dfp-104L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok += ctanh upward ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df4p-104L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok += ctanh downward flt-32 0x8p-152f 0x1.921fb4p+0f : 0x4.fc7fbp-104f 0xc.a1bd9p+20f : inexact-ok += ctanh tonearest flt-32 0x8p-152f 0x1.921fb4p+0f : 0x4.fc7fbp-104f 0xc.a1bdap+20f : inexact-ok += ctanh towardzero flt-32 0x8p-152f 0x1.921fb4p+0f : 0x4.fc7fbp-104f 0xc.a1bd9p+20f : inexact-ok += ctanh upward flt-32 0x8p-152f 0x1.921fb4p+0f : 0x4.fc7fb8p-104f 0xc.a1bdap+20f : inexact-ok += ctanh downward dbl-64 0x8p-152 0x1.921fb4p+0 : 0x4.fc7fb3865f33cp-104 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh tonearest dbl-64 0x8p-152 0x1.921fb4p+0 : 0x4.fc7fb3865f34p-104 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh towardzero dbl-64 0x8p-152 0x1.921fb4p+0 : 0x4.fc7fb3865f33cp-104 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh upward dbl-64 0x8p-152 0x1.921fb4p+0 : 0x4.fc7fb3865f34p-104 0xc.a1bd99b5b5868p+20 : inexact-ok += ctanh downward ldbl-96-intel 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f688p-104L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f688p-104L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-128 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04c94p-104L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh tonearest ldbl-128 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04c98p-104L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh towardzero ldbl-128 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04c94p-104L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh upward ldbl-128 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04c98p-104L 0xc.a1bd99b5b58623cd91404ccd8cbp+20L : inexact-ok += ctanh downward ldbl-128ibm 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04cp-104L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh tonearest ldbl-128ibm 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04cp-104L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh towardzero ldbl-128ibm 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04cp-104L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh upward ldbl-128ibm 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04ep-104L 0xc.a1bd99b5b58623cd91404ccd9p+20L : inexact-ok += ctanh downward dbl-64 0x8p-152 0x1.921fb54442d18p+0 : 0x6.932c3dab5e518p-44 0x3.a052cf8639b68p+52 : inexact-ok += ctanh tonearest dbl-64 0x8p-152 0x1.921fb54442d18p+0 : 0x6.932c3dab5e518p-44 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh towardzero dbl-64 0x8p-152 0x1.921fb54442d18p+0 : 0x6.932c3dab5e518p-44 0x3.a052cf8639b68p+52 : inexact-ok += ctanh upward dbl-64 0x8p-152 0x1.921fb54442d18p+0 : 0x6.932c3dab5e51cp-44 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh downward ldbl-96-intel 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e38p-44L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e38p-44L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-128 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12c8p-44L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh tonearest ldbl-128 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12c8p-44L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh towardzero ldbl-128 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12c8p-44L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh upward ldbl-128 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12ccp-44L 0x3.a052cf8639b69c1871a036cababep+52L : inexact-ok += ctanh downward ldbl-128ibm 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12p-44L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh tonearest ldbl-128ibm 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12p-44L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok += ctanh towardzero ldbl-128ibm 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12p-44L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh upward ldbl-128ibm 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f14p-44L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok += ctanh downward flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1496p+24f : inexact-ok += ctanh tonearest flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1494p+24f : inexact-ok += ctanh towardzero flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1494p+24f : inexact-ok += ctanh upward flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1494p+24f : inexact-ok += ctanh downward dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9898p+24 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh upward dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok += ctanh downward flt-32 0x0p+0f 0x1.921fb4p+0f : 0x0p+0f 0xc.a1bd9p+20f : inexact-ok += ctanh tonearest flt-32 0x0p+0f 0x1.921fb4p+0f : 0x0p+0f 0xc.a1bdap+20f : inexact-ok += ctanh towardzero flt-32 0x0p+0f 0x1.921fb4p+0f : 0x0p+0f 0xc.a1bd9p+20f : inexact-ok += ctanh upward flt-32 0x0p+0f 0x1.921fb4p+0f : 0x0p+0f 0xc.a1bdap+20f : inexact-ok += ctanh downward dbl-64 0x0p+0 0x1.921fb4p+0 : 0x0p+0 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0x1.921fb4p+0 : 0x0p+0 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0x1.921fb4p+0 : 0x0p+0 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh upward dbl-64 0x0p+0 0x1.921fb4p+0 : 0x0p+0 0xc.a1bd99b5b5868p+20 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8cbp+20L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd9p+20L : inexact-ok += ctanh downward dbl-64 0x0p+0 0x1.921fb54442d18p+0 : 0x0p+0 0x3.a052cf8639b68p+52 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0x1.921fb54442d18p+0 : 0x0p+0 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0x1.921fb54442d18p+0 : 0x0p+0 0x3.a052cf8639b68p+52 : inexact-ok += ctanh upward dbl-64 0x0p+0 0x1.921fb54442d18p+0 : 0x0p+0 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cababep+52L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok += ctanh downward dbl-64 0x4p-1076 0x1.921fb6p+0 : 0x7.7004796b7aep-1028 -0x1.5d14946dc9898p+24 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 0x4p-1076 0x1.921fb6p+0 : 0x7.7004796b7aep-1028 -0x1.5d14946dc9897p+24 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 0x4p-1076 0x1.921fb6p+0 : 0x7.7004796b7aep-1028 -0x1.5d14946dc9897p+24 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 0x4p-1076 0x1.921fb6p+0 : 0x7.7004796b7ae4p-1028 -0x1.5d14946dc9897p+24 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-intel 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-intel 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-intel 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a388p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-96-m68k 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-m68k 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a388p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-128 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a3831eb56826f958p-1028L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh tonearest ldbl-128 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a3831eb56826f958p-1028L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh towardzero ldbl-128 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a3831eb56826f958p-1028L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh upward ldbl-128 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a3831eb56826f95cp-1028L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh downward ldbl-128ibm 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7aep-1028L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7aep-1028L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7aep-1028L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae4p-1028L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0x4p-1076 0x1.921fb4p+0 : 0x2.7e3fd9c32f98p-1028 0xc.a1bd99b5b586p+20 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 0x4p-1076 0x1.921fb4p+0 : 0x2.7e3fd9c32f98p-1028 0xc.a1bd99b5b586p+20 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 0x4p-1076 0x1.921fb4p+0 : 0x2.7e3fd9c32f98p-1028 0xc.a1bd99b5b586p+20 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 0x4p-1076 0x1.921fb4p+0 : 0x2.7e3fd9c32f9cp-1028 0xc.a1bd99b5b5868p+20 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-intel 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-intel 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-intel 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb44p-1028L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-96-m68k 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-m68k 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb44p-1028L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-128 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb414e4dcf68264ap-1028L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh tonearest ldbl-128 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb414e4dcf68264cp-1028L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh towardzero ldbl-128 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb414e4dcf68264ap-1028L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh upward ldbl-128 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb414e4dcf68264cp-1028L 0xc.a1bd99b5b58623cd91404ccd8cbp+20L : inexact-ok += ctanh downward ldbl-128ibm 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f98p-1028L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f98p-1028L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f98p-1028L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f9cp-1028L 0xc.a1bd99b5b58623cd91404ccd9p+20L : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0x4p-1076 0x1.921fb54442d18p+0 : 0x3.49961ed5af28cp-968 0x3.a052cf8639b68p+52 : inexact-ok += ctanh tonearest dbl-64 0x4p-1076 0x1.921fb54442d18p+0 : 0x3.49961ed5af28cp-968 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh towardzero dbl-64 0x4p-1076 0x1.921fb54442d18p+0 : 0x3.49961ed5af28cp-968 0x3.a052cf8639b68p+52 : inexact-ok += ctanh upward dbl-64 0x4p-1076 0x1.921fb54442d18p+0 : 0x3.49961ed5af28ep-968 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh downward ldbl-96-intel 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-intel 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-intel 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-intel 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf1cp-968L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf1cp-968L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-128 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f8964p-968L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh tonearest ldbl-128 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f8964p-968L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh towardzero ldbl-128 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f8964p-968L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh upward ldbl-128 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f8966p-968L 0x3.a052cf8639b69c1871a036cababep+52L : inexact-ok += ctanh downward ldbl-128ibm 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f89p-968L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh tonearest ldbl-128ibm 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f89p-968L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok += ctanh towardzero ldbl-128ibm 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f89p-968L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh upward ldbl-128ibm 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f8ap-968L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok +ctanh 0x1p-16445 0x1.921fb54442d1846ap+0 += ctanh downward flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e008fp-104f -0x1.5d1496p+24f : inexact-ok += ctanh tonearest flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e008fp-104f -0x1.5d1494p+24f : inexact-ok += ctanh towardzero flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e008fp-104f -0x1.5d1494p+24f : inexact-ok += ctanh upward flt-32 0x8p-152f 0x1.921fb6p+0f : 0xe.e009p-104f -0x1.5d1494p+24f : inexact-ok += ctanh downward dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c3p-104 -0x1.5d14946dc9898p+24 : inexact-ok += ctanh tonearest dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c38p-104 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh towardzero dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c3p-104 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh upward dbl-64 0x8p-152 0x1.921fb6p+0 : 0xe.e008f2d6f5c38p-104 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh downward ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c3471p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c3471p-104L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2bp-104L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh tonearest ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2bp-104L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh towardzero ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2bp-104L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh upward ldbl-128 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df2b8p-104L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh downward ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04dfp-104L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh tonearest ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df4p-104L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh towardzero ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04dfp-104L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok += ctanh upward ldbl-128ibm 0x8p-152L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04df4p-104L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok += ctanh downward flt-32 0x8p-152f 0x1.921fb4p+0f : 0x4.fc7fbp-104f 0xc.a1bd9p+20f : inexact-ok += ctanh tonearest flt-32 0x8p-152f 0x1.921fb4p+0f : 0x4.fc7fbp-104f 0xc.a1bdap+20f : inexact-ok += ctanh towardzero flt-32 0x8p-152f 0x1.921fb4p+0f : 0x4.fc7fbp-104f 0xc.a1bd9p+20f : inexact-ok += ctanh upward flt-32 0x8p-152f 0x1.921fb4p+0f : 0x4.fc7fb8p-104f 0xc.a1bdap+20f : inexact-ok += ctanh downward dbl-64 0x8p-152 0x1.921fb4p+0 : 0x4.fc7fb3865f33cp-104 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh tonearest dbl-64 0x8p-152 0x1.921fb4p+0 : 0x4.fc7fb3865f34p-104 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh towardzero dbl-64 0x8p-152 0x1.921fb4p+0 : 0x4.fc7fb3865f33cp-104 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh upward dbl-64 0x8p-152 0x1.921fb4p+0 : 0x4.fc7fb3865f34p-104 0xc.a1bd99b5b5868p+20 : inexact-ok += ctanh downward ldbl-96-intel 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f688p-104L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f68p-104L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f688p-104L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-128 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04c94p-104L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh tonearest ldbl-128 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04c98p-104L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh towardzero ldbl-128 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04c94p-104L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh upward ldbl-128 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04c98p-104L 0xc.a1bd99b5b58623cd91404ccd8cbp+20L : inexact-ok += ctanh downward ldbl-128ibm 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04cp-104L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh tonearest ldbl-128ibm 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04cp-104L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh towardzero ldbl-128ibm 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04cp-104L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh upward ldbl-128ibm 0x8p-152L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed04ep-104L 0xc.a1bd99b5b58623cd91404ccd9p+20L : inexact-ok += ctanh downward dbl-64 0x8p-152 0x1.921fb54442d19p+0 : 0xf.408f476314478p-48 -0x1.617a15494767bp+52 : inexact-ok += ctanh tonearest dbl-64 0x8p-152 0x1.921fb54442d19p+0 : 0xf.408f476314478p-48 -0x1.617a15494767ap+52 : inexact-ok += ctanh towardzero dbl-64 0x8p-152 0x1.921fb54442d19p+0 : 0xf.408f476314478p-48 -0x1.617a15494767ap+52 : inexact-ok += ctanh upward dbl-64 0x8p-152 0x1.921fb54442d19p+0 : 0xf.408f47631448p-48 -0x1.617a15494767ap+52 : inexact-ok += ctanh downward ldbl-96-intel 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bep-48L -0x1.617a15494767a04ap+52L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bfp-48L -0x1.617a15494767a048p+52L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bep-48L -0x1.617a15494767a048p+52L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bfp-48L -0x1.617a15494767a048p+52L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bep-48L -0x1.617a15494767a04ap+52L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bfp-48L -0x1.617a15494767a048p+52L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bep-48L -0x1.617a15494767a048p+52L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bfp-48L -0x1.617a15494767a048p+52L : inexact-ok += ctanh downward ldbl-128 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f718p-48L -0x1.617a15494767a04882c320317f3fp+52L : inexact-ok += ctanh tonearest ldbl-128 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f72p-48L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh towardzero ldbl-128 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f718p-48L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh upward ldbl-128 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f72p-48L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh downward ldbl-128ibm 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f4p-48L -0x1.617a15494767a04882c320317f8p+52L : inexact-ok += ctanh tonearest ldbl-128ibm 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f8p-48L -0x1.617a15494767a04882c320317fp+52L : inexact-ok += ctanh towardzero ldbl-128ibm 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f4p-48L -0x1.617a15494767a04882c320317fp+52L : inexact-ok += ctanh upward ldbl-128ibm 0x8p-152L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f8p-48L -0x1.617a15494767a04882c320317fp+52L : inexact-ok += ctanh downward dbl-64 0x8p-152 0x1.921fb54442d18p+0 : 0x6.932c3dab5e518p-44 0x3.a052cf8639b68p+52 : inexact-ok += ctanh tonearest dbl-64 0x8p-152 0x1.921fb54442d18p+0 : 0x6.932c3dab5e518p-44 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh towardzero dbl-64 0x8p-152 0x1.921fb54442d18p+0 : 0x6.932c3dab5e518p-44 0x3.a052cf8639b68p+52 : inexact-ok += ctanh upward dbl-64 0x8p-152 0x1.921fb54442d18p+0 : 0x6.932c3dab5e51cp-44 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh downward ldbl-96-intel 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e38p-44L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-44L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e38p-44L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-128 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12c8p-44L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh tonearest ldbl-128 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12c8p-44L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh towardzero ldbl-128 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12c8p-44L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh upward ldbl-128 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12ccp-44L 0x3.a052cf8639b69c1871a036cababep+52L : inexact-ok += ctanh downward ldbl-128ibm 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12p-44L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh tonearest ldbl-128ibm 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12p-44L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok += ctanh towardzero ldbl-128ibm 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12p-44L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh upward ldbl-128ibm 0x8p-152L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f14p-44L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok += ctanh downward ldbl-96-intel 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-20L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-20L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-20L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1414p-20L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-20L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-20L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-20L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1414p-20L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh downward ldbl-128 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f378p-20L -0x2.29478136aaf68d7b3b807fb349bcp+64L : inexact-ok += ctanh tonearest ldbl-128 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f37ap-20L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok += ctanh towardzero ldbl-128 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f378p-20L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok += ctanh upward ldbl-128 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f37ap-20L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok += ctanh downward ldbl-128ibm 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f3p-20L -0x2.29478136aaf68d7b3b807fb34ap+64L : inexact-ok += ctanh tonearest ldbl-128ibm 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f3p-20L -0x2.29478136aaf68d7b3b807fb34ap+64L : inexact-ok += ctanh towardzero ldbl-128ibm 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f3p-20L -0x2.29478136aaf68d7b3b807fb349p+64L : inexact-ok += ctanh upward ldbl-128ibm 0x8p-152L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f4p-20L -0x2.29478136aaf68d7b3b807fb349p+64L : inexact-ok += ctanh downward flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1496p+24f : inexact-ok += ctanh tonearest flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1494p+24f : inexact-ok += ctanh towardzero flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1494p+24f : inexact-ok += ctanh upward flt-32 0x0p+0f 0x1.921fb6p+0f : 0x0p+0f -0x1.5d1494p+24f : inexact-ok += ctanh downward dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9898p+24 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh upward dbl-64 0x0p+0 0x1.921fb6p+0 : 0x0p+0 -0x1.5d14946dc9897p+24 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0x1.921fb6p+0L : 0x0p+0L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok += ctanh downward flt-32 0x0p+0f 0x1.921fb4p+0f : 0x0p+0f 0xc.a1bd9p+20f : inexact-ok += ctanh tonearest flt-32 0x0p+0f 0x1.921fb4p+0f : 0x0p+0f 0xc.a1bdap+20f : inexact-ok += ctanh towardzero flt-32 0x0p+0f 0x1.921fb4p+0f : 0x0p+0f 0xc.a1bd9p+20f : inexact-ok += ctanh upward flt-32 0x0p+0f 0x1.921fb4p+0f : 0x0p+0f 0xc.a1bdap+20f : inexact-ok += ctanh downward dbl-64 0x0p+0 0x1.921fb4p+0 : 0x0p+0 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0x1.921fb4p+0 : 0x0p+0 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0x1.921fb4p+0 : 0x0p+0 0xc.a1bd99b5b586p+20 : inexact-ok += ctanh upward dbl-64 0x0p+0 0x1.921fb4p+0 : 0x0p+0 0xc.a1bd99b5b5868p+20 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8cbp+20L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0x1.921fb4p+0L : 0x0p+0L 0xc.a1bd99b5b58623cd91404ccd9p+20L : inexact-ok += ctanh downward dbl-64 0x0p+0 0x1.921fb54442d19p+0 : 0x0p+0 -0x1.617a15494767bp+52 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0x1.921fb54442d19p+0 : 0x0p+0 -0x1.617a15494767ap+52 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0x1.921fb54442d19p+0 : 0x0p+0 -0x1.617a15494767ap+52 : inexact-ok += ctanh upward dbl-64 0x0p+0 0x1.921fb54442d19p+0 : 0x0p+0 -0x1.617a15494767ap+52 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a04ap+52L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a048p+52L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a048p+52L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a048p+52L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a04ap+52L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a048p+52L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a048p+52L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a048p+52L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a04882c320317f3fp+52L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a04882c320317f8p+52L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a04882c320317fp+52L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a04882c320317fp+52L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0x1.921fb54442d19p+0L : 0x0p+0L -0x1.617a15494767a04882c320317fp+52L : inexact-ok += ctanh downward dbl-64 0x0p+0 0x1.921fb54442d18p+0 : 0x0p+0 0x3.a052cf8639b68p+52 : inexact-ok += ctanh tonearest dbl-64 0x0p+0 0x1.921fb54442d18p+0 : 0x0p+0 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh towardzero dbl-64 0x0p+0 0x1.921fb54442d18p+0 : 0x0p+0 0x3.a052cf8639b68p+52 : inexact-ok += ctanh upward dbl-64 0x0p+0 0x1.921fb54442d18p+0 : 0x0p+0 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cababep+52L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0x1.921fb54442d18p+0L : 0x0p+0L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok += ctanh downward ldbl-96-intel 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh tonearest ldbl-96-intel 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh towardzero ldbl-96-intel 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh upward ldbl-96-intel 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh downward ldbl-96-m68k 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh upward ldbl-96-m68k 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh downward ldbl-128 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7b3b807fb349bcp+64L : inexact-ok += ctanh tonearest ldbl-128 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok += ctanh towardzero ldbl-128 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok += ctanh upward ldbl-128 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok += ctanh downward ldbl-128ibm 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7b3b807fb34ap+64L : inexact-ok += ctanh tonearest ldbl-128ibm 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7b3b807fb34ap+64L : inexact-ok += ctanh towardzero ldbl-128ibm 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7b3b807fb349p+64L : inexact-ok += ctanh upward ldbl-128ibm 0x0p+0L 0x1.921fb54442d1846ap+0L : 0x0p+0L -0x2.29478136aaf68d7b3b807fb349p+64L : inexact-ok += ctanh downward dbl-64 0x4p-1076 0x1.921fb6p+0 : 0x7.7004796b7aep-1028 -0x1.5d14946dc9898p+24 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 0x4p-1076 0x1.921fb6p+0 : 0x7.7004796b7aep-1028 -0x1.5d14946dc9897p+24 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 0x4p-1076 0x1.921fb6p+0 : 0x7.7004796b7aep-1028 -0x1.5d14946dc9897p+24 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 0x4p-1076 0x1.921fb6p+0 : 0x7.7004796b7ae4p-1028 -0x1.5d14946dc9897p+24 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-intel 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-intel 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-intel 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a388p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-96-m68k 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d8p+24L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a38p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh upward ldbl-96-m68k 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a388p-1028L -0x1.5d14946dc98975d6p+24L : inexact-ok += ctanh downward ldbl-128 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a3831eb56826f958p-1028L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh tonearest ldbl-128 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a3831eb56826f958p-1028L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok += ctanh towardzero ldbl-128 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a3831eb56826f958p-1028L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh upward ldbl-128 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae1a3831eb56826f95cp-1028L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok += ctanh downward ldbl-128ibm 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7aep-1028L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7aep-1028L -0x1.5d14946dc98975d6421a55285p+24L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7aep-1028L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm 0x4p-1076L 0x1.921fb6p+0L : 0x7.7004796b7ae4p-1028L -0x1.5d14946dc98975d6421a55284f8p+24L : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0x4p-1076 0x1.921fb4p+0 : 0x2.7e3fd9c32f98p-1028 0xc.a1bd99b5b586p+20 : inexact-ok underflow errno-erange-ok += ctanh tonearest dbl-64 0x4p-1076 0x1.921fb4p+0 : 0x2.7e3fd9c32f98p-1028 0xc.a1bd99b5b586p+20 : inexact-ok underflow errno-erange-ok += ctanh towardzero dbl-64 0x4p-1076 0x1.921fb4p+0 : 0x2.7e3fd9c32f98p-1028 0xc.a1bd99b5b586p+20 : inexact-ok underflow errno-erange-ok += ctanh upward dbl-64 0x4p-1076 0x1.921fb4p+0 : 0x2.7e3fd9c32f9cp-1028 0xc.a1bd99b5b5868p+20 : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-intel 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-intel 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-intel 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb44p-1028L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-96-m68k 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb4p-1028L 0xc.a1bd99b5b58623cp+20L : inexact-ok += ctanh upward ldbl-96-m68k 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb44p-1028L 0xc.a1bd99b5b58623dp+20L : inexact-ok += ctanh downward ldbl-128 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb414e4dcf68264ap-1028L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh tonearest ldbl-128 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb414e4dcf68264cp-1028L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh towardzero ldbl-128 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb414e4dcf68264ap-1028L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok += ctanh upward ldbl-128 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f99fb414e4dcf68264cp-1028L 0xc.a1bd99b5b58623cd91404ccd8cbp+20L : inexact-ok += ctanh downward ldbl-128ibm 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f98p-1028L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f98p-1028L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f98p-1028L 0xc.a1bd99b5b58623cd91404ccd8cp+20L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm 0x4p-1076L 0x1.921fb4p+0L : 0x2.7e3fd9c32f9cp-1028L 0xc.a1bd99b5b58623cd91404ccd9p+20L : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0x4p-1076 0x1.921fb54442d19p+0 : 0x7.a047a3b18a23cp-972 -0x1.617a15494767bp+52 : inexact-ok += ctanh tonearest dbl-64 0x4p-1076 0x1.921fb54442d19p+0 : 0x7.a047a3b18a23cp-972 -0x1.617a15494767ap+52 : inexact-ok += ctanh towardzero dbl-64 0x4p-1076 0x1.921fb54442d19p+0 : 0x7.a047a3b18a23cp-972 -0x1.617a15494767ap+52 : inexact-ok += ctanh upward dbl-64 0x4p-1076 0x1.921fb54442d19p+0 : 0x7.a047a3b18a24p-972 -0x1.617a15494767ap+52 : inexact-ok += ctanh downward ldbl-96-intel 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5fp-972L -0x1.617a15494767a04ap+52L : inexact-ok += ctanh tonearest ldbl-96-intel 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f8p-972L -0x1.617a15494767a048p+52L : inexact-ok += ctanh towardzero ldbl-96-intel 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5fp-972L -0x1.617a15494767a048p+52L : inexact-ok += ctanh upward ldbl-96-intel 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f8p-972L -0x1.617a15494767a048p+52L : inexact-ok += ctanh downward ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5fp-972L -0x1.617a15494767a04ap+52L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f8p-972L -0x1.617a15494767a048p+52L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5fp-972L -0x1.617a15494767a048p+52L : inexact-ok += ctanh upward ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f8p-972L -0x1.617a15494767a048p+52L : inexact-ok += ctanh downward ldbl-128 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f62c2ad1b17b8cp-972L -0x1.617a15494767a04882c320317f3fp+52L : inexact-ok += ctanh tonearest ldbl-128 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f62c2ad1b17b9p-972L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh towardzero ldbl-128 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f62c2ad1b17b8cp-972L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh upward ldbl-128 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f62c2ad1b17b9p-972L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh downward ldbl-128ibm 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f62c2ad1b178p-972L -0x1.617a15494767a04882c320317f8p+52L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128ibm 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f62c2ad1b17cp-972L -0x1.617a15494767a04882c320317fp+52L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128ibm 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f62c2ad1b178p-972L -0x1.617a15494767a04882c320317fp+52L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128ibm 0x4p-1076L 0x1.921fb54442d19p+0L : 0x7.a047a3b18a23c5f62c2ad1b17cp-972L -0x1.617a15494767a04882c320317fp+52L : inexact-ok underflow errno-erange-ok += ctanh downward dbl-64 0x4p-1076 0x1.921fb54442d18p+0 : 0x3.49961ed5af28cp-968 0x3.a052cf8639b68p+52 : inexact-ok += ctanh tonearest dbl-64 0x4p-1076 0x1.921fb54442d18p+0 : 0x3.49961ed5af28cp-968 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh towardzero dbl-64 0x4p-1076 0x1.921fb54442d18p+0 : 0x3.49961ed5af28cp-968 0x3.a052cf8639b68p+52 : inexact-ok += ctanh upward dbl-64 0x4p-1076 0x1.921fb54442d18p+0 : 0x3.49961ed5af28ep-968 0x3.a052cf8639b6ap+52 : inexact-ok += ctanh downward ldbl-96-intel 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-intel 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-intel 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-intel 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf1cp-968L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18p-968L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf1cp-968L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-128 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f8964p-968L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh tonearest ldbl-128 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f8964p-968L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh towardzero ldbl-128 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f8964p-968L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh upward ldbl-128 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f8966p-968L 0x3.a052cf8639b69c1871a036cababep+52L : inexact-ok += ctanh downward ldbl-128ibm 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f89p-968L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh tonearest ldbl-128ibm 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f89p-968L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok += ctanh towardzero ldbl-128ibm 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f89p-968L 0x3.a052cf8639b69c1871a036cabap+52L : inexact-ok += ctanh upward ldbl-128ibm 0x4p-1076L 0x1.921fb54442d18p+0L : 0x3.49961ed5af28cf18c004073f8ap-968L 0x3.a052cf8639b69c1871a036cabbp+52L : inexact-ok += ctanh downward ldbl-96-intel 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fep-944L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh tonearest ldbl-96-intel 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fep-944L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh towardzero ldbl-96-intel 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fep-944L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh upward ldbl-96-intel 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a0ap-944L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh downward ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fep-944L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fep-944L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fep-944L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh upward ldbl-96-m68k 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a0ap-944L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh downward ldbl-128 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fe7b8c9b12f9bcp-944L -0x2.29478136aaf68d7b3b807fb349bcp+64L : inexact-ok += ctanh tonearest ldbl-128 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fe7b8c9b12f9bdp-944L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok += ctanh towardzero ldbl-128 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fe7b8c9b12f9bcp-944L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok += ctanh upward ldbl-128 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fe7b8c9b12f9bdp-944L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok += ctanh downward ldbl-128ibm 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fe7b8c9b12f98p-944L -0x2.29478136aaf68d7b3b807fb34ap+64L : inexact-ok += ctanh tonearest ldbl-128ibm 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fe7b8c9b12f98p-944L -0x2.29478136aaf68d7b3b807fb34ap+64L : inexact-ok += ctanh towardzero ldbl-128ibm 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fe7b8c9b12f98p-944L -0x2.29478136aaf68d7b3b807fb349p+64L : inexact-ok += ctanh upward ldbl-128ibm 0x4p-1076L 0x1.921fb54442d1846ap+0L : 0x1.2af1800dc70a09fe7b8c9b12fap-944L -0x2.29478136aaf68d7b3b807fb349p+64L : inexact-ok += ctanh downward ldbl-96-intel 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5cp-16400L -0x1.5d14946dc98975d8p+24L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-intel 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5cp-16400L -0x1.5d14946dc98975d6p+24L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-intel 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5cp-16400L -0x1.5d14946dc98975d6p+24L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-intel 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5c8p-16400L -0x1.5d14946dc98975d6p+24L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-m68k 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5cp-16400L -0x1.5d14946dc98975d8p+24L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-m68k 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5c4p-16400L -0x1.5d14946dc98975d6p+24L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-m68k 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5cp-16400L -0x1.5d14946dc98975d6p+24L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-m68k 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5c4p-16400L -0x1.5d14946dc98975d6p+24L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04cp-16400L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04cp-16400L -0x1.5d14946dc98975d6421a55284fep+24L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad04cp-16400L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128 0x8p-16448L 0x1.921fb6p+0L : 0xe.e008f2d6f5c347063d6ad05p-16400L -0x1.5d14946dc98975d6421a55284fdfp+24L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f3p-16400L 0xc.a1bd99b5b58623cp+20L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-intel 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f3p-16400L 0xc.a1bd99b5b58623dp+20L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-intel 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f3p-16400L 0xc.a1bd99b5b58623cp+20L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-intel 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f38p-16400L 0xc.a1bd99b5b58623dp+20L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-m68k 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f3p-16400L 0xc.a1bd99b5b58623cp+20L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-96-m68k 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f34p-16400L 0xc.a1bd99b5b58623dp+20L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-96-m68k 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f3p-16400L 0xc.a1bd99b5b58623cp+20L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-96-m68k 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f34p-16400L 0xc.a1bd99b5b58623dp+20L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-128 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9edp-16400L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok underflow errno-erange-ok += ctanh tonearest ldbl-128 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9edp-16400L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok underflow errno-erange-ok += ctanh towardzero ldbl-128 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9edp-16400L 0xc.a1bd99b5b58623cd91404ccd8ca8p+20L : inexact-ok underflow errno-erange-ok += ctanh upward ldbl-128 0x8p-16448L 0x1.921fb4p+0L : 0x4.fc7fb3865f33f6829c9b9ed4p-16400L 0xc.a1bd99b5b58623cd91404ccd8cbp+20L : inexact-ok underflow errno-erange-ok += ctanh downward ldbl-96-intel 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bep-16344L -0x1.617a15494767a04ap+52L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bfp-16344L -0x1.617a15494767a048p+52L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bep-16344L -0x1.617a15494767a048p+52L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bfp-16344L -0x1.617a15494767a048p+52L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bep-16344L -0x1.617a15494767a04ap+52L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bfp-16344L -0x1.617a15494767a048p+52L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bep-16344L -0x1.617a15494767a048p+52L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bfp-16344L -0x1.617a15494767a048p+52L : inexact-ok += ctanh downward ldbl-128 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f718p-16344L -0x1.617a15494767a04882c320317f3fp+52L : inexact-ok += ctanh tonearest ldbl-128 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f72p-16344L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh towardzero ldbl-128 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f718p-16344L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh upward ldbl-128 0x8p-16448L 0x1.921fb54442d19p+0L : 0xf.408f476314478bec5855a362f72p-16344L -0x1.617a15494767a04882c320317f3ep+52L : inexact-ok += ctanh downward ldbl-96-intel 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-16340L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-16340L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-16340L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e38p-16340L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-16340L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-16340L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3p-16340L 0x3.a052cf8639b69c18p+52L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e38p-16340L 0x3.a052cf8639b69c1cp+52L : inexact-ok += ctanh downward ldbl-128 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12c8p-16340L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh tonearest ldbl-128 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12c8p-16340L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh towardzero ldbl-128 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12c8p-16340L 0x3.a052cf8639b69c1871a036cababcp+52L : inexact-ok += ctanh upward ldbl-128 0x8p-16448L 0x1.921fb54442d18p+0L : 0x6.932c3dab5e519e3180080e7f12ccp-16340L 0x3.a052cf8639b69c1871a036cababep+52L : inexact-ok += ctanh downward ldbl-96-intel 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-16316L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh tonearest ldbl-96-intel 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-16316L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh towardzero ldbl-96-intel 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-16316L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh upward ldbl-96-intel 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1414p-16316L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh downward ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-16316L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh tonearest ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-16316L -0x2.29478136aaf68d7cp+64L : inexact-ok += ctanh towardzero ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcp-16316L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh upward ldbl-96-m68k 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1414p-16316L -0x2.29478136aaf68d78p+64L : inexact-ok += ctanh downward ldbl-128 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f378p-16316L -0x2.29478136aaf68d7b3b807fb349bcp+64L : inexact-ok += ctanh tonearest ldbl-128 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f37ap-16316L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok += ctanh towardzero ldbl-128 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f378p-16316L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok += ctanh upward ldbl-128 0x8p-16448L 0x1.921fb54442d1846ap+0L : 0x2.55e3001b8e1413fcf7193625f37ap-16316L -0x2.29478136aaf68d7b3b807fb349bap+64L : inexact-ok erf 0 = erf downward flt-32 0x0p+0f : 0x0p+0f : inexact-ok = erf tonearest flt-32 0x0p+0f : 0x0p+0f : inexact-ok diff --git a/math/gen-auto-libm-tests.c b/math/gen-auto-libm-tests.c index 0201b8ae8b..c96615fbfa 100644 --- a/math/gen-auto-libm-tests.c +++ b/math/gen-auto-libm-tests.c @@ -406,6 +406,9 @@ typedef enum /* MPC function with a single complex argument and one real result. */ mpc_c_f, + /* MPC function with a single complex argument and one complex + result. */ + mpc_c_c, } func_calc_method; /* Description of how to calculate a function. */ @@ -422,6 +425,7 @@ typedef struct int (*mpfr_if_f) (mpfr_t, long, const mpfr_t, mpfr_rnd_t); int (*mpfr_f_11) (mpfr_t, mpfr_t, const mpfr_t, mpfr_rnd_t); int (*mpc_c_f) (mpfr_t, const mpc_t, mpfr_rnd_t); + int (*mpc_c_c) (mpc_t, const mpc_t, mpc_rnd_t); } func; } func_calc_desc; @@ -478,6 +482,9 @@ typedef struct #define FUNC_mpc_c_f(NAME, MPFR_FUNC, EXACT) \ FUNC (NAME, ARGS2 (type_fp, type_fp), RET1 (type_fp), EXACT, true, \ CALC (mpc_c_f, MPFR_FUNC)) +#define FUNC_mpc_c_c(NAME, MPFR_FUNC, EXACT) \ + FUNC (NAME, ARGS2 (type_fp, type_fp), RET2 (type_fp, type_fp), EXACT, \ + true, CALC (mpc_c_c, MPFR_FUNC)) /* List of functions handled by this program. */ static test_function test_functions[] = @@ -490,10 +497,26 @@ static test_function test_functions[] = FUNC_mpfr_ff_f ("atan2", mpfr_atan2, false), FUNC_mpfr_f_f ("atanh", mpfr_atanh, false), FUNC_mpc_c_f ("cabs", mpc_abs, false), + FUNC_mpc_c_c ("cacos", mpc_acos, false), + FUNC_mpc_c_c ("cacosh", mpc_acosh, false), FUNC_mpc_c_f ("carg", mpc_arg, false), + FUNC_mpc_c_c ("casin", mpc_asin, false), + FUNC_mpc_c_c ("casinh", mpc_asinh, false), + FUNC_mpc_c_c ("catan", mpc_atan, false), + FUNC_mpc_c_c ("catanh", mpc_atanh, false), FUNC_mpfr_f_f ("cbrt", mpfr_cbrt, false), + FUNC_mpc_c_c ("ccos", mpc_cos, false), + FUNC_mpc_c_c ("ccosh", mpc_cosh, false), + FUNC_mpc_c_c ("cexp", mpc_exp, false), + FUNC_mpc_c_c ("clog", mpc_log, false), + FUNC_mpc_c_c ("clog10", mpc_log10, false), FUNC_mpfr_f_f ("cos", mpfr_cos, false), FUNC_mpfr_f_f ("cosh", mpfr_cosh, false), + FUNC_mpc_c_c ("csin", mpc_sin, false), + FUNC_mpc_c_c ("csinh", mpc_sinh, false), + FUNC_mpc_c_c ("csqrt", mpc_sqrt, false), + FUNC_mpc_c_c ("ctan", mpc_tan, false), + FUNC_mpc_c_c ("ctanh", mpc_tanh, false), FUNC_mpfr_f_f ("erf", mpfr_erf, false), FUNC_mpfr_f_f ("erfc", mpfr_erfc, false), FUNC_mpfr_f_f ("exp", mpfr_exp, false), @@ -734,6 +757,17 @@ special_fill_minus_min_subnorm (mpfr_t res0, return 1; } +static size_t +special_fill_min_subnorm_p120 (mpfr_t res0, + mpfr_t res1 __attribute__ ((unused)), + fp_format format) +{ + mpfr_init2 (res0, fp_formats[format].mant_dig); + assert_exact (mpfr_mul_2ui (res0, fp_formats[format].subnorm_min, + 120, MPFR_RNDN)); + return 1; +} + static size_t special_fill_pi (mpfr_t res0, mpfr_t res1, fp_format format) { @@ -899,6 +933,7 @@ static const special_real_input special_real_inputs[] = { "-min", special_fill_minus_min }, { "min_subnorm", special_fill_min_subnorm }, { "-min_subnorm", special_fill_minus_min_subnorm }, + { "min_subnorm_p120", special_fill_min_subnorm_p120 }, { "pi", special_fill_pi }, { "-pi", special_fill_minus_pi }, { "pi/2", special_fill_pi_2 }, @@ -1402,6 +1437,29 @@ calc_generic_results (generic_value *outputs, generic_value *inputs, mpc_clear (ci); break; + case mpc_c_c: + assert (inputs[0].type == gtype_fp); + assert (inputs[1].type == gtype_fp); + outputs[0].type = gtype_fp; + mpfr_init (outputs[0].value.f); + outputs[1].type = gtype_fp; + mpfr_init (outputs[1].value.f); + mpc_t co; + mpc_init2 (ci, internal_precision); + mpc_init2 (co, internal_precision); + assert_exact (mpc_set_fr_fr (ci, inputs[0].value.f, inputs[1].value.f, + MPC_RNDNN)); + int mpc_ternary = calc->func.mpc_c_c (co, ci, MPC_RNDZZ); + assert_exact (mpfr_set (outputs[0].value.f, mpc_realref (co), + MPFR_RNDN)); + assert_exact (mpfr_set (outputs[1].value.f, mpc_imagref (co), + MPFR_RNDN)); + adjust_real (outputs[0].value.f, MPC_INEX_RE (mpc_ternary)); + adjust_real (outputs[1].value.f, MPC_INEX_IM (mpc_ternary)); + mpc_clear (ci); + mpc_clear (co); + break; + default: abort (); } diff --git a/math/libm-test.inc b/math/libm-test.inc index c23696a3a7..ee183eab0e 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -267,6 +267,18 @@ struct ulp_data #define TEST_COND_before_rounding (!TININESS_AFTER_ROUNDING) #define TEST_COND_after_rounding TININESS_AFTER_ROUNDING +#ifdef __x86_64__ +# define TEST_COND_x86_64 1 +#else +# define TEST_COND_x86_64 0 +#endif + +#ifdef __i386__ +# define TEST_COND_x86 1 +#else +# define TEST_COND_x86 0 +#endif + /* Various constants (we must supply them precalculated for accuracy). */ #define M_PI_6l .52359877559829887307710723054658383L #define M_PI_34l 2.356194490192344928846982537459627163L /* 3*pi/4 */ @@ -5776,11 +5788,6 @@ cbrt_test (void) static const struct test_c_c_data ccos_test_data[] = { - TEST_c_c (ccos, 0.0, 0.0, 1.0, minus_zero), - TEST_c_c (ccos, minus_zero, 0.0, 1.0, 0.0), - TEST_c_c (ccos, 0.0, minus_zero, 1.0, 0.0), - TEST_c_c (ccos, minus_zero, minus_zero, 1.0, minus_zero), - TEST_c_c (ccos, plus_infty, 0.0, qnan_value, 0.0, INVALID_EXCEPTION|IGNORE_ZERO_INF_SIGN), TEST_c_c (ccos, plus_infty, minus_zero, qnan_value, 0.0, INVALID_EXCEPTION|IGNORE_ZERO_INF_SIGN), TEST_c_c (ccos, minus_infty, 0.0, qnan_value, 0.0, INVALID_EXCEPTION|IGNORE_ZERO_INF_SIGN), @@ -5826,42 +5833,7 @@ static const struct test_c_c_data ccos_test_data[] = TEST_c_c (ccos, qnan_value, qnan_value, qnan_value, qnan_value), - TEST_c_c (ccos, 0.75L, 1.25L, 1.38173873063425888530729933139078645L, -1.09193013555397466170919531722024128L), - TEST_c_c (ccos, -2, -3, -4.18962569096880723013255501961597373L, -9.10922789375533659797919726277886212L), - - TEST_c_c (ccos, 0.75, 89.5, 2.708024460708609732016532185663087200560e38L, -2.522786001038096774676288412995370563339e38L), - TEST_c_c (ccos, 0.75, -89.5, 2.708024460708609732016532185663087200560e38L, 2.522786001038096774676288412995370563339e38L), - TEST_c_c (ccos, -0.75, 89.5, 2.708024460708609732016532185663087200560e38L, 2.522786001038096774676288412995370563339e38L), - TEST_c_c (ccos, -0.75, -89.5, 2.708024460708609732016532185663087200560e38L, -2.522786001038096774676288412995370563339e38L), - -#ifndef TEST_FLOAT - TEST_c_c (ccos, 0.75, 710.5, 1.347490911916428129246890157395342279438e308L, -1.255317763348154410745082950806112487736e308L), - TEST_c_c (ccos, 0.75, -710.5, 1.347490911916428129246890157395342279438e308L, 1.255317763348154410745082950806112487736e308L), - TEST_c_c (ccos, -0.75, 710.5, 1.347490911916428129246890157395342279438e308L, 1.255317763348154410745082950806112487736e308L), - TEST_c_c (ccos, -0.75, -710.5, 1.347490911916428129246890157395342279438e308L, -1.255317763348154410745082950806112487736e308L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (ccos, 0.75, 11357.25, 9.001213196851067077465606717616495588201e4931L, -8.385498349388321535962327491346664141020e4931L), - TEST_c_c (ccos, 0.75, -11357.25, 9.001213196851067077465606717616495588201e4931L, 8.385498349388321535962327491346664141020e4931L), - TEST_c_c (ccos, -0.75, 11357.25, 9.001213196851067077465606717616495588201e4931L, 8.385498349388321535962327491346664141020e4931L), - TEST_c_c (ccos, -0.75, -11357.25, 9.001213196851067077465606717616495588201e4931L, -8.385498349388321535962327491346664141020e4931L), -#endif - -#ifdef TEST_FLOAT - TEST_c_c (ccos, 0x1p-149, 180, plus_infty, -1.043535896672617552965983803453927655332e33L, OVERFLOW_EXCEPTION), -#endif - -#if defined TEST_DOUBLE || (defined TEST_LDOUBLE && LDBL_MAX_EXP == 1024) - TEST_c_c (ccos, 0x1p-1074, 1440, plus_infty, -5.981479269486130556466515778180916082415e301L, OVERFLOW_EXCEPTION), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (ccos, 0x1p-16434L, 22730, plus_infty, -1.217853148905605987081057582351152052687e4924L, OVERFLOW_EXCEPTION), -#endif - - TEST_c_c (ccos, min_subnorm_value * 0x1p120, 0x1p-120, 1.0, -min_subnorm_value, UNDERFLOW_EXCEPTION), - TEST_c_c (ccos, 0x1p-120, min_subnorm_value * 0x1p120, 1.0, -min_subnorm_value, UNDERFLOW_EXCEPTION), + AUTO_TESTS_c_c (ccos, tonearest), }; static void @@ -5875,11 +5847,6 @@ ccos_test (void) static const struct test_c_c_data ccosh_test_data[] = { - TEST_c_c (ccosh, 0.0, 0.0, 1.0, 0.0), - TEST_c_c (ccosh, minus_zero, 0.0, 1.0, minus_zero), - TEST_c_c (ccosh, 0.0, minus_zero, 1.0, minus_zero), - TEST_c_c (ccosh, minus_zero, minus_zero, 1.0, 0.0), - TEST_c_c (ccosh, 0.0, plus_infty, qnan_value, 0.0, INVALID_EXCEPTION|IGNORE_ZERO_INF_SIGN), TEST_c_c (ccosh, minus_zero, plus_infty, qnan_value, 0.0, INVALID_EXCEPTION|IGNORE_ZERO_INF_SIGN), TEST_c_c (ccosh, 0.0, minus_infty, qnan_value, 0.0, INVALID_EXCEPTION|IGNORE_ZERO_INF_SIGN), @@ -5925,43 +5892,7 @@ static const struct test_c_c_data ccosh_test_data[] = TEST_c_c (ccosh, qnan_value, qnan_value, qnan_value, qnan_value), - TEST_c_c (ccosh, 0.75L, 1.25L, 0.408242591877968807788852146397499084L, 0.780365930845853240391326216300863152L), - - TEST_c_c (ccosh, -2, -3, -3.72454550491532256547397070325597253L, 0.511822569987384608834463849801875634L), - - TEST_c_c (ccosh, 89.5, 0.75, 2.708024460708609732016532185663087200560e38L, 2.522786001038096774676288412995370563339e38L), - TEST_c_c (ccosh, -89.5, 0.75, 2.708024460708609732016532185663087200560e38L, -2.522786001038096774676288412995370563339e38L), - TEST_c_c (ccosh, 89.5, -0.75, 2.708024460708609732016532185663087200560e38L, -2.522786001038096774676288412995370563339e38L), - TEST_c_c (ccosh, -89.5, -0.75, 2.708024460708609732016532185663087200560e38L, 2.522786001038096774676288412995370563339e38L), - -#ifndef TEST_FLOAT - TEST_c_c (ccosh, 710.5, 0.75, 1.347490911916428129246890157395342279438e308L, 1.255317763348154410745082950806112487736e308L), - TEST_c_c (ccosh, -710.5, 0.75, 1.347490911916428129246890157395342279438e308L, -1.255317763348154410745082950806112487736e308L), - TEST_c_c (ccosh, 710.5, -0.75, 1.347490911916428129246890157395342279438e308L, -1.255317763348154410745082950806112487736e308L), - TEST_c_c (ccosh, -710.5, -0.75, 1.347490911916428129246890157395342279438e308L, 1.255317763348154410745082950806112487736e308L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (ccosh, 11357.25, 0.75, 9.001213196851067077465606717616495588201e4931L, 8.385498349388321535962327491346664141020e4931L), - TEST_c_c (ccosh, -11357.25, 0.75, 9.001213196851067077465606717616495588201e4931L, -8.385498349388321535962327491346664141020e4931L), - TEST_c_c (ccosh, 11357.25, -0.75, 9.001213196851067077465606717616495588201e4931L, -8.385498349388321535962327491346664141020e4931L), - TEST_c_c (ccosh, -11357.25, -0.75, 9.001213196851067077465606717616495588201e4931L, 8.385498349388321535962327491346664141020e4931L), -#endif - -#ifdef TEST_FLOAT - TEST_c_c (ccosh, 180, 0x1p-149, plus_infty, 1.043535896672617552965983803453927655332e33L, OVERFLOW_EXCEPTION), -#endif - -#if defined TEST_DOUBLE || (defined TEST_LDOUBLE && LDBL_MAX_EXP == 1024) - TEST_c_c (ccosh, 1440, 0x1p-1074, plus_infty, 5.981479269486130556466515778180916082415e301L, OVERFLOW_EXCEPTION), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (ccosh, 22730, 0x1p-16434L, plus_infty, 1.217853148905605987081057582351152052687e4924L, OVERFLOW_EXCEPTION), -#endif - - TEST_c_c (ccosh, min_subnorm_value * 0x1p120, 0x1p-120, 1.0, min_subnorm_value, UNDERFLOW_EXCEPTION), - TEST_c_c (ccosh, 0x1p-120, min_subnorm_value * 0x1p120, 1.0, min_subnorm_value, UNDERFLOW_EXCEPTION), + AUTO_TESTS_c_c (ccosh, tonearest), }; static void @@ -6073,11 +6004,6 @@ ceil_test (void) static const struct test_c_c_data cexp_test_data[] = { - TEST_c_c (cexp, plus_zero, plus_zero, 1, 0.0), - TEST_c_c (cexp, minus_zero, plus_zero, 1, 0.0), - TEST_c_c (cexp, plus_zero, minus_zero, 1, minus_zero), - TEST_c_c (cexp, minus_zero, minus_zero, 1, minus_zero), - TEST_c_c (cexp, plus_infty, plus_zero, plus_infty, 0.0), TEST_c_c (cexp, plus_infty, minus_zero, plus_infty, minus_zero), @@ -6120,55 +6046,7 @@ static const struct test_c_c_data cexp_test_data[] = TEST_c_c (cexp, 1, qnan_value, qnan_value, qnan_value, INVALID_EXCEPTION_OK), TEST_c_c (cexp, qnan_value, qnan_value, qnan_value, qnan_value), - TEST_c_c (cexp, 0.75L, 1.25L, 0.667537446429131586942201977015932112L, 2.00900045494094876258347228145863909L), - TEST_c_c (cexp, -2.0, -3.0, -0.13398091492954261346140525546115575L, -0.019098516261135196432576240858800925L), - - TEST_c_c (cexp, 0, 0x1p65, 0.99888622066058013610642172179340364209972L, -0.047183876212354673805106149805700013943218L), - TEST_c_c (cexp, 0, -0x1p65, 0.99888622066058013610642172179340364209972L, 0.047183876212354673805106149805700013943218L), - TEST_c_c (cexp, 50, 0x1p127, 4.053997150228616856622417636046265337193e21L, 3.232070315463388524466674772633810238819e21L), - -#ifndef TEST_FLOAT - TEST_c_c (cexp, 0, 1e22, 0.5232147853951389454975944733847094921409L, -0.8522008497671888017727058937530293682618L), - TEST_c_c (cexp, 0, 0x1p1023, -0.826369834614147994500785680811743734805L, 0.5631277798508840134529434079444683477104L), - TEST_c_c (cexp, 500, 0x1p1023, -1.159886268932754433233243794561351783426e217L, 7.904017694554466595359379965081774849708e216L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (cexp, 0, 0x1p16383L, 0.9210843909921906206874509522505756251609L, 0.3893629985894208126948115852610595405563L), - TEST_c_c (cexp, -10000, 0x1p16383L, 1.045876464564882298442774542991176546722e-4343L, 4.421154026488516836023811173959413420548e-4344L), -#endif - - TEST_c_c (cexp, 88.75, 0.75, 2.558360358486542817001900410314204322891e38L, 2.383359453227311447654736314679677655100e38L), - TEST_c_c (cexp, -95, 0.75, 4.039714446238306526889476684000081624047e-42L, 3.763383677300535390271646960780570275931e-42L, UNDERFLOW_EXCEPTION_FLOAT), - -#ifndef TEST_FLOAT - TEST_c_c (cexp, 709.8125, 0.75, 1.355121963080879535248452862759108365762e308L, 1.262426823598609432507811340856186873507e308L), - TEST_c_c (cexp, -720, 0.75, 1.486960657116368433685753325516638551722e-313L, 1.385247284245720590980701226843815229385e-313L, UNDERFLOW_EXCEPTION_DOUBLE), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (cexp, 11356.5625, 0.75, 9.052188470850960144814815984311663764287e4931L, 8.432986734191301036267148978260970230200e4931L), - TEST_c_c (cexp, -11370, 0.75, 8.631121063182211587489310508568170739592e-4939L, 8.040721827809267291427062346918413482824e-4939L, UNDERFLOW_EXCEPTION), -#endif - -#ifdef TEST_FLOAT - TEST_c_c (cexp, 180, 0x1p-149, plus_infty, 2.087071793345235105931967606907855310664e33L, OVERFLOW_EXCEPTION), -#endif - -#if defined TEST_DOUBLE || (defined TEST_LDOUBLE && LDBL_MAX_EXP == 1024) - TEST_c_c (cexp, 1440, 0x1p-1074, plus_infty, 1.196295853897226111293303155636183216483e302L, OVERFLOW_EXCEPTION), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (cexp, 22730, 0x1p-16434L, plus_infty, 2.435706297811211974162115164702304105374e4924L, OVERFLOW_EXCEPTION), -#endif - - TEST_c_c (cexp, 1e6, 0, plus_infty, 0, OVERFLOW_EXCEPTION), - TEST_c_c (cexp, 1e6, min_value, plus_infty, plus_infty, OVERFLOW_EXCEPTION), - TEST_c_c (cexp, 1e6, -min_value, plus_infty, minus_infty, OVERFLOW_EXCEPTION), - - TEST_c_c (cexp, min_value, min_subnorm_value, 1.0, min_subnorm_value, UNDERFLOW_EXCEPTION), - TEST_c_c (cexp, min_value, -min_subnorm_value, 1.0, -min_subnorm_value, UNDERFLOW_EXCEPTION), + AUTO_TESTS_c_c (cexp, tonearest), }; static void @@ -6250,162 +6128,7 @@ static const struct test_c_c_data clog_test_data[] = TEST_c_c (clog, qnan_value, qnan_value, qnan_value, qnan_value), - TEST_c_c (clog, 0.75L, 1.25L, 0.376885901188190075998919126749298416L, 1.03037682652431246378774332703115153L), - TEST_c_c (clog, -2, -3, 1.2824746787307683680267437207826593L, -2.1587989303424641704769327722648368L), - - TEST_c_c (clog, 0x1.fffffep+127L, 0x1.fffffep+127L, 89.06941264234832570836679262104313101776L, M_PI_4l), - TEST_c_c (clog, 0x1.fffffep+127L, 1.0L, 88.72283905206835305365817656031404273372L, 2.938736052218037251011746307725933020145e-39L, UNDERFLOW_EXCEPTION_FLOAT), - TEST_c_c (clog, 0x1p-149L, 0x1p-149L, -102.9323563131518784484589700365392203592L, M_PI_4l), - TEST_c_c (clog, 0x1p-147L, 0x1p-147L, -101.5460619520319878296245057936228672231L, M_PI_4l), - -#ifndef TEST_FLOAT - TEST_c_c (clog, 0x1.fffffffffffffp+1023L, 0x1.fffffffffffffp+1023L, 710.1292864836639693869320059713862337880L, M_PI_4l), - TEST_c_c (clog, 0x1.fffffffffffffp+1023L, 0x1p+1023L, 709.8942846690411016323109979483151967689L, 0.4636476090008061606231772164674799632783L), - TEST_c_c (clog, 0x1p-1074L, 0x1p-1074L, -744.0934983311012896593986823853525458290L, M_PI_4l), - TEST_c_c (clog, 0x1p-1073L, 0x1p-1073L, -743.4003511505413443499814502638943692610L, M_PI_4l), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (clog, 0x1.fp+16383L, 0x1.fp+16383L, 11356.83823118610934184548269774874545400L, M_PI_4l), - TEST_c_c (clog, 0x1.fp+16383L, 0x1p+16383L, 11356.60974243783798653123798337822335902L, 0.4764674194737066993385333770295162295856L), - TEST_c_c (clog, 0x1p-16440L, 0x1p-16441L, -11395.22807662984378194141292922726786191L, 0.4636476090008061162142562314612144020285L), -#endif - - TEST_c_c (clog, 0x1p-149L, 0x1.fp+127L, 88.69109041335841930424871526389807508374L, M_PI_2l), - TEST_c_c (clog, -0x1p-149L, 0x1.fp+127L, 88.69109041335841930424871526389807508374L, M_PI_2l), - TEST_c_c (clog, 0x1p-149L, -0x1.fp+127L, 88.69109041335841930424871526389807508374L, -M_PI_2l), - TEST_c_c (clog, -0x1p-149L, -0x1.fp+127L, 88.69109041335841930424871526389807508374L, -M_PI_2l), - TEST_c_c (clog, -0x1.fp+127L, 0x1p-149L, 88.69109041335841930424871526389807508374L, M_PIl), - TEST_c_c (clog, -0x1.fp+127L, -0x1p-149L, 88.69109041335841930424871526389807508374L, -M_PIl), -#ifdef TEST_FLOAT - TEST_c_c (clog, 0x1.fp+127L, 0x1p-149L, 88.69109041335841930424871526389807508374L, plus_zero, UNDERFLOW_EXCEPTION), - TEST_c_c (clog, 0x1.fp+127L, -0x1p-149L, 88.69109041335841930424871526389807508374L, minus_zero, UNDERFLOW_EXCEPTION), -#endif - -#ifndef TEST_FLOAT - TEST_c_c (clog, 0x1p-1074L, 0x1.fp+1023L, 709.7509641950694165420886960904242800794L, M_PI_2l), - TEST_c_c (clog, -0x1p-1074L, 0x1.fp+1023L, 709.7509641950694165420886960904242800794L, M_PI_2l), - TEST_c_c (clog, 0x1p-1074L, -0x1.fp+1023L, 709.7509641950694165420886960904242800794L, -M_PI_2l), - TEST_c_c (clog, -0x1p-1074L, -0x1.fp+1023L, 709.7509641950694165420886960904242800794L, -M_PI_2l), - TEST_c_c (clog, -0x1.fp+1023L, 0x1p-1074L, 709.7509641950694165420886960904242800794L, M_PIl), - TEST_c_c (clog, -0x1.fp+1023L, -0x1p-1074L, 709.7509641950694165420886960904242800794L, -M_PIl), -#endif -#if defined TEST_DOUBLE || (defined TEST_LDOUBLE && LDBL_MAX_EXP == 1024) - TEST_c_c (clog, 0x1.fp+1023L, 0x1p-1074L, 709.7509641950694165420886960904242800794L, plus_zero, UNDERFLOW_EXCEPTION), - TEST_c_c (clog, 0x1.fp+1023L, -0x1p-1074L, 709.7509641950694165420886960904242800794L, minus_zero, UNDERFLOW_EXCEPTION), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (clog, 0x1p-16445L, 0x1.fp+16383L, 11356.49165759582936919077408168801636572L, M_PI_2l), - TEST_c_c (clog, -0x1p-16445L, 0x1.fp+16383L, 11356.49165759582936919077408168801636572L, M_PI_2l), - TEST_c_c (clog, 0x1p-16445L, -0x1.fp+16383L, 11356.49165759582936919077408168801636572L, -M_PI_2l), - TEST_c_c (clog, -0x1p-16445L, -0x1.fp+16383L, 11356.49165759582936919077408168801636572L, -M_PI_2l), - TEST_c_c (clog, -0x1.fp+16383L, 0x1p-16445L, 11356.49165759582936919077408168801636572L, M_PIl), - TEST_c_c (clog, -0x1.fp+16383L, -0x1p-16445L, 11356.49165759582936919077408168801636572L, -M_PIl), - TEST_c_c (clog, 0x1.fp+16383L, 0x1p-16445L, 11356.49165759582936919077408168801636572L, plus_zero, UNDERFLOW_EXCEPTION), - TEST_c_c (clog, 0x1.fp+16383L, -0x1p-16445L, 11356.49165759582936919077408168801636572L, minus_zero, UNDERFLOW_EXCEPTION), -# if LDBL_MANT_DIG >= 113 - TEST_c_c (clog, 0x1p-16494L, 0x1.fp+16383L, 11356.49165759582936919077408168801636572L, M_PI_2l), - TEST_c_c (clog, -0x1p-16494L, 0x1.fp+16383L, 11356.49165759582936919077408168801636572L, M_PI_2l), - TEST_c_c (clog, 0x1p-16494L, -0x1.fp+16383L, 11356.49165759582936919077408168801636572L, -M_PI_2l), - TEST_c_c (clog, -0x1p-16494L, -0x1.fp+16383L, 11356.49165759582936919077408168801636572L, -M_PI_2l), - TEST_c_c (clog, -0x1.fp+16383L, 0x1p-16494L, 11356.49165759582936919077408168801636572L, M_PIl), - TEST_c_c (clog, -0x1.fp+16383L, -0x1p-16494L, 11356.49165759582936919077408168801636572L, -M_PIl), - TEST_c_c (clog, 0x1.fp+16383L, 0x1p-16494L, 11356.49165759582936919077408168801636572L, plus_zero, UNDERFLOW_EXCEPTION), - TEST_c_c (clog, 0x1.fp+16383L, -0x1p-16494L, 11356.49165759582936919077408168801636572L, minus_zero, UNDERFLOW_EXCEPTION), -# endif -#endif - - TEST_c_c (clog, 1.0L, 0x1.234566p-10L, 6.172834701221959432440126967147726538097e-7L, 1.111110564353742042376451655136933182201e-3L), - TEST_c_c (clog, -1.0L, 0x1.234566p-20L, 5.886877547844618300918562490463748605537e-13L, 3.141591568520436206990380699322226378452L), - TEST_c_c (clog, 0x1.234566p-30L, 1.0L, 5.614163921211322622623353961365728040115e-19L, 1.570796325735258575254858696548386439740L), - TEST_c_c (clog, -0x1.234566p-40L, -1.0L, 5.354083939753840089583620652120903838944e-25L, -1.570796326795931422008642456283782656359L), - TEST_c_c (clog, 0x1.234566p-50L, 1.0L, 5.106052341226425256332038420428899201070e-31L, 1.570796326794895608681734464330528755366L), - TEST_c_c (clog, 0x1.234566p-60L, 1.0L, 4.869510976053643471080816669875627875933e-37L, 1.570796326794896618244456860363082279319L), - TEST_c_c (clog, 0x1p-62L, 1.0L, 2.350988701644575015937473074444491355582e-38L, 1.570796326794896619014481257142650555297L), - TEST_c_c (clog, 0x1p-63L, 1.0L, 5.877471754111437539843682686111228389059e-39L, 1.570796326794896619122901474391200998698L, UNDERFLOW_EXCEPTION_FLOAT), - TEST_c_c (clog, 0x1p-64L, 1.0L, 1.469367938527859384960920671527807097271e-39L, 1.570796326794896619177111583015476220398L, UNDERFLOW_EXCEPTION_FLOAT), -#ifndef TEST_FLOAT - TEST_c_c (clog, 0x1p-510L, 1.0L, 4.450147717014402766180465434664808128438e-308L, 1.570796326794896619231321691639751442099L, UNDERFLOW_EXCEPTION_LDOUBLE_IBM), - TEST_c_c (clog, 0x1p-511L, 1.0L, 1.112536929253600691545116358666202032110e-308L, 1.570796326794896619231321691639751442099L, UNDERFLOW_EXCEPTION_DOUBLE), - TEST_c_c (clog, 0x1p-512L, 1.0L, 2.781342323134001728862790896665505080274e-309L, 1.570796326794896619231321691639751442099L, UNDERFLOW_EXCEPTION_DOUBLE), -#endif -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (clog, 0x1p-8190L, 1.0L, 6.724206286224187012525355634643505205196e-4932L, 1.570796326794896619231321691639751442099L), - TEST_c_c (clog, 0x1p-8191L, 1.0L, 1.681051571556046753131338908660876301299e-4932L, 1.570796326794896619231321691639751442099L, UNDERFLOW_EXCEPTION), - TEST_c_c (clog, 0x1p-8192L, 1.0L, 4.202628928890116882828347271652190753248e-4933L, 1.570796326794896619231321691639751442099L, UNDERFLOW_EXCEPTION), -#endif - - TEST_c_c (clog, 0x1.000566p0L, 0x1.234p-10L, 8.298731898331237038231468223024422855654e-5L, 1.110938609507128729312743251313024793990e-3L), - TEST_c_c (clog, 0x1.000566p0L, 0x1.234p-100L, 8.237022655933121125560939513260027133767e-5L, 8.974094312218060110948251664314290484113e-31L), -#ifndef TEST_FLOAT - TEST_c_c (clog, -0x1.0000000123456p0L, 0x1.2345678p-30L, 2.649094282537168795982991778475646793277e-10L, 3.141592652530155111500161671113150737892L), - TEST_c_c (clog, -0x1.0000000123456p0L, 0x1.2345678p-1000L, 2.649094276923003995420209214900915462737e-10L, 3.141592653589793238462643383279502884197L), -#endif -#if defined TEST_LDOUBLE && LDBL_MANT_DIG >= 106 - TEST_c_c (clog, 0x1.00000000000000123456789abcp0L, 0x1.23456789p-60L, 9.868649107778739757272772275265050767867e-19L, 9.868649106423871142816660980898339912137e-19L), - TEST_c_c (clog, 0x1.00000000000000123456789abcp0L, 0x1.23456789p-1000L, 9.868649107778739752403260515979017248596e-19L, 1.061846605795612822522063052130030717368e-301L, UNDERFLOW_EXCEPTION_LDOUBLE_IBM), -#endif - - TEST_c_c (clog, 0x0.ffffffp0L, 0x0.ffffffp-100L, -5.960464655174753498633255797994360530379e-8L, 7.888609052210118054117285652827862296732e-31L), -#ifndef TEST_FLOAT - TEST_c_c (clog, 0x0.fffffffffffff8p0L, 0x0.fffffffffffff8p-1000L, -1.110223024625156602053389888482372171810e-16L, 9.332636185032188789900895447238171696171e-302L, UNDERFLOW_EXCEPTION_LDOUBLE_IBM), -#endif -#if defined TEST_LDOUBLE && LDBL_MIN_EXP <= -16381 - TEST_c_c (clog, 0x0.ffffffffffffffffp0L, 0x0.ffffffffffffffffp-15000L, -5.421010862427522170184200798202494495630e-20L, 3.548665303440282824232502561095699343814e-4516L), -#endif - - TEST_c_c (clog, 0x1a6p-10L, 0x3a5p-10L, -1.4305135209763571252847059962654228661815e-06L, 1.1460277178115757370775644871674016684074L), - TEST_c_c (clog, 0xf2p-10L, 0x3e3p-10L, 6.1988446308070710970664736815277450078106e-06L, 1.3322126499153926210226335249558203898460L), - TEST_c_c (clog, 0x4d4ep-15L, 0x6605p-15L, -1.6298145321400412054744424587143483169412e-08L, 0.9223574537155056772124552172295398141249L), - TEST_c_c (clog, 0x2818p-15L, 0x798fp-15L, 1.5366822245016167178749091974664853785194e-08L, 1.2522014929038946066987318471922169174157L), - TEST_c_c (clog, 0x9b57bp-20L, 0xcb7b4p-20L, -3.9563019528687610863490232935890272740908e-11L, 0.9187593477446338910857133065497364950682L), - TEST_c_c (clog, 0x2731p-20L, 0xfffd0p-20L, 4.4110493034041283943115971658295280288115e-11L, 1.5612279663766352262688735061954290528838L), - TEST_c_c (clog, 0x2ede88p-23L, 0x771c3fp-23L, -4.4764192352906350039050902870893173560494e-13L, 1.1959106857549200806818600493552847793381L), - TEST_c_c (clog, 0x11682p-23L, 0x7ffed1p-23L, 1.1723955140027907954461000991619077811832e-12L, 1.5622968405332756349813737986164832897108L), - TEST_c_c (clog, 0xa1f2c1p-24L, 0xc643aep-24L, -1.0480505352462576151523512837107080269981e-13L, 0.8858771987699967480545613322309315260313L), - TEST_c_c (clog, 0x659feap-24L, 0xeaf6f9p-24L, 3.7303493627403868207597214252239749960738e-14L, 1.1625816408046866464773042283673653469061L), -#ifndef TEST_FLOAT - TEST_c_c (clog, 0x4447d7175p-35L, 0x6c445e00ap-35L, -1.4823076576950255933915367361099865652625e-20L, 1.0081311552703893116404606212158840190615L), - TEST_c_c (clog, 0x2dd46725bp-35L, 0x7783a1284p-35L, 4.4469229730850767799109418892826021157328e-20L, 1.2046235979300843056806465045930070146351L), - TEST_c_c (clog, 0x164c74eea876p-45L, 0x16f393482f77p-45L, -3.0292258760486853327810377824479932031744e-26L, 0.7998237934177411746093524982030330293980L), - TEST_c_c (clog, 0xfe961079616p-45L, 0x1bc37e09e6d1p-45L, 5.3718272201930019901317065495843842735179e-26L, 1.0503831592447830576186444373011142397404L), - TEST_c_c (clog, 0xa4722f19346cp-51L, 0x7f9631c5e7f07p-51L, -6.2122796286154679676173624516405339768606e-30L, 1.4904138780720095276446375492434049214172L), - TEST_c_c (clog, 0x10673dd0f2481p-51L, 0x7ef1d17cefbd2p-51L, 3.2047474274603604594851472963586149973093e-29L, 1.4422922682185099608731642353544207976604L), - TEST_c_c (clog, 0x8ecbf810c4ae6p-52L, 0xd479468b09a37p-52L, -9.7375017988218644730510244778042114638107e-30L, 0.9790637929494922564724108399524154766631L), - TEST_c_c (clog, 0x5b06b680ea2ccp-52L, 0xef452b965da9fp-52L, 8.3076914081087805757422664530653247447136e-30L, 1.2072712126771536614482822173033535043206L), - TEST_c_c (clog, 0x659b70ab7971bp-53L, 0x1f5d111e08abecp-53L, -2.5083311595699359750201056724289010648701e-30L, 1.3710185432462268491534742969536240564640L), - TEST_c_c (clog, 0x15cfbd1990d1ffp-53L, 0x176a3973e09a9ap-53L, 1.0168910106364605304135563536838075568606e-30L, 0.8208373755522359859870890246475340086663L), - TEST_c_c (clog, 0x1367a310575591p-54L, 0x3cfcc0a0541f60p-54L, 5.0844550531823026520677817684239496041087e-32L, 1.2627468605458094918919206628466016525397L), - TEST_c_c (clog, 0x55cb6d0c83af5p-55L, 0x7fe33c0c7c4e90p-55L, -5.2000108498455368032511404449795741611813e-32L, 1.5288921536982513453421343495466824420259L), -#endif -#if defined TEST_LDOUBLE && LDBL_MANT_DIG >= 64 - TEST_c_c (clog, 0x298c62cb546588a7p-63L, 0x7911b1dfcc4ecdaep-63L, -1.1931267660846218205882675852805793644095e-36L, 1.2402109774337032400594953899784058127412L), - TEST_c_c (clog, 0x4d9c37e2b5cb4533p-63L, 0x65c98be2385a042ep-63L, 6.4064442119814669184296141278612389400075e-37L, 0.9193591364645830864185131402313014890145L), - TEST_c_c (clog, 0x602fd5037c4792efp-64L, 0xed3e2086dcca80b8p-64L, -2.3362950222592964220878638677292132852104e-37L, 1.1856121127236268105413184264288408265852L), - TEST_c_c (clog, 0x6b10b4f3520217b6p-64L, 0xe8893cbb449253a1p-64L, 2.4244570985709679851855191080208817099132e-37L, 1.1393074519572050614551047548718495655972L), - TEST_c_c (clog, 0x81b7efa81fc35ad1p-65L, 0x1ef4b835f1c79d812p-65L, -9.9182335850630508484862145328126979066934e-39L, 1.3146479888794807046338799047003947008804L), -#endif -#if defined TEST_LDOUBLE && LDBL_MANT_DIG >= 106 - TEST_c_c (clog, 0x3f96469050f650869c2p-75L, 0x6f16b2c9c8b05988335p-75L, -1.0509738482436128031927971874674370984602e-45L, 1.0509191467640012308402149909370784281448L), - TEST_c_c (clog, 0x3157fc1d73233e580c8p-75L, 0x761b52ccd435d7c7f5fp-75L, 1.3487497719126364307640897239165442763573e-43L, 1.1750493008528425228929764149024375035382L), - TEST_c_c (clog, 0x155f8afc4c48685bf63610p-85L, 0x17d0cf2652cdbeb1294e19p-85L, -4.7775669192897997174762089350332738583822e-50L, 0.8393953487996880419413728440067635213372L), - TEST_c_c (clog, 0x13836d58a13448d750b4b9p-85L, 0x195ca7bc3ab4f9161edbe6p-85L, 2.8398125044729578740243199963484494962411e-50L, 0.9149964976334130461795060758257083099706L), - TEST_c_c (clog, 0x1df515eb171a808b9e400266p-95L, 0x7c71eb0cd4688dfe98581c77p-95L, -3.5048022044913950094635368750889659723004e-57L, 1.3345633256521815205858155673950177421079L), - TEST_c_c (clog, 0xe33f66c9542ca25cc43c867p-95L, 0x7f35a68ebd3704a43c465864p-95L, 4.1101771307217268747345114262406964584250e-56L, 1.4596065864518742494094402406719567059585L), - TEST_c_c (clog, 0x6771f22c64ed551b857c128b4cp-105L, 0x1f570e7a13cc3cf2f44fd793ea1p-105L, -1.4281333889622737316199756373421183559948e-62L, 1.3673546561165378090903506783353927980633L), - TEST_c_c (clog, 0x15d8ab6ed05ca514086ac3a1e84p-105L, 0x1761e480aa094c0b10b34b09ce9p-105L, 1.0027319539522347477331743836657426754857e-62L, 0.8193464073721167323313606647411269414759L), - TEST_c_c (clog, 0x187190c1a334497bdbde5a95f48p-106L, 0x3b25f08062d0a095c4cfbbc338dp-106L, -1.7471844652198029695350765775994001163767e-63L, 1.1789110097072986038243729592318526094314L), - TEST_c_c (clog, 0x6241ef0da53f539f02fad67dabp-106L, 0x3fb46641182f7efd9caa769dac0p-106L, 4.3299788920664682288477984749202524623248e-63L, 1.4746938237585656250866370987773473745867L), -#endif -#if defined TEST_LDOUBLE && LDBL_MANT_DIG >= 113 - TEST_c_c (clog, 0x3e1d0a105ac4ebeacd9c6952d34cp-112L, 0xf859b3d1b06d005dcbb5516d5479p-112L, -1.1683999374665377365054966073875064467108e-66L, 1.3257197596350832748781065387304444940172L), - TEST_c_c (clog, 0x47017a2e36807acb1e5214b209dep-112L, 0xf5f4a550c9d75e3bb1839d865f0dp-112L, 1.5077923002544367932999503838191154621839e-65L, 1.2897445708311412721399861948957141824914L), - TEST_c_c (clog, 0x148f818cb7a9258fca942ade2a0cap-113L, 0x18854a34780b8333ec53310ad7001p-113L, -7.1865869169568789348552370692485515571497e-67L, 0.8730167479365994646287897223471819363668L), - TEST_c_c (clog, 0xfd95243681c055c2632286921092p-113L, 0x1bccabcd29ca2152860ec29e34ef7p-113L, 6.6255694866654064502633121109394710807528e-66L, 1.0526409614996288387567810726095850312049L), - TEST_c_c (clog, 0xdb85c467ee2aadd5f425fe0f4b8dp-114L, 0x3e83162a0f95f1dcbf97dddf410eap-114L, 4.6017338806965821566734340588575402712716e-67L, 1.3547418904611758959096647942223384691728L), - TEST_c_c (clog, 0x1415bcaf2105940d49a636e98ae59p-115L, 0x7e6a150adfcd1b0921d44b31f40f4p-115L, 2.5993421227864195179698176012564317527271e-67L, 1.4132318089683022770487383611430906982461L), -#endif + AUTO_TESTS_c_c (clog, tonearest), }; static void @@ -7152,11 +6875,6 @@ csinh_test (void) static const struct test_c_c_data csqrt_test_data[] = { - TEST_c_c (csqrt, 0, 0, 0.0, 0.0), - TEST_c_c (csqrt, 0, minus_zero, 0, minus_zero), - TEST_c_c (csqrt, minus_zero, 0, 0.0, 0.0), - TEST_c_c (csqrt, minus_zero, minus_zero, 0.0, minus_zero), - TEST_c_c (csqrt, minus_infty, 0, 0.0, plus_infty), TEST_c_c (csqrt, minus_infty, 6, 0.0, plus_infty), TEST_c_c (csqrt, minus_infty, minus_zero, 0.0, minus_infty), @@ -7196,68 +6914,7 @@ static const struct test_c_c_data csqrt_test_data[] = TEST_c_c (csqrt, qnan_value, qnan_value, qnan_value, qnan_value), - TEST_c_c (csqrt, 16.0, -30.0, 5.0, -3.0), - TEST_c_c (csqrt, -1, 0, 0.0, 1.0), - TEST_c_c (csqrt, 0, 2, 1.0, 1.0), - TEST_c_c (csqrt, 119, 120, 12.0, 5.0), - TEST_c_c (csqrt, 0.75L, 1.25L, 1.05065169626078392338656675760808326L, 0.594868882070379067881984030639932657L), - TEST_c_c (csqrt, -2, -3, 0.89597747612983812471573375529004348L, -1.6741492280355400404480393008490519L), - TEST_c_c (csqrt, -2, 3, 0.89597747612983812471573375529004348L, 1.6741492280355400404480393008490519L), - /* Principal square root should be returned (i.e., non-negative real - part). */ - TEST_c_c (csqrt, 0, -1, M_SQRT1_2l, -M_SQRT1_2l), - - TEST_c_c (csqrt, 0x1.fffffep+127L, 0x1.fffffep+127L, 2.026714405498316804978751017492482558075e+19L, 8.394925938143272988211878516208015586281e+18L), - TEST_c_c (csqrt, 0x1.fffffep+127L, 1.0L, 1.844674352395372953599975585936590505260e+19L, 2.710505511993121390769065968615872097053e-20L), - TEST_c_c (csqrt, 0x1p-149L, 0x1p-149L, 4.112805464342778798097003462770175200803e-23L, 1.703579802732953750368659735601389709551e-23L), - TEST_c_c (csqrt, 0x1p-147L, 0x1p-147L, 8.225610928685557596194006925540350401606e-23L, 3.407159605465907500737319471202779419102e-23L), - - TEST_c_c (csqrt, plus_zero, 0x1p-149L, 2.646977960169688559588507814623881131411e-23L, 2.646977960169688559588507814623881131411e-23L), - TEST_c_c (csqrt, 0x1p-50L, 0x1p-149L, 2.980232238769531250000000000000000000000e-8L, 2.350988701644575015937473074444491355637e-38L), -#ifdef TEST_FLOAT - TEST_c_c (csqrt, 0x1p+127L, 0x1p-149L, 1.304381782533278221234957180625250836888e19L, plus_zero, UNDERFLOW_EXCEPTION), -#endif - TEST_c_c (csqrt, 0x1p-149L, 0x1p+127L, 9.223372036854775808000000000000000000000e18L, 9.223372036854775808000000000000000000000e18L), - TEST_c_c (csqrt, 0x1.000002p-126L, 0x1.000002p-126L, 1.191195773697904627170323731331667740087e-19L, 4.934094449071842328766868579214125217132e-20L), - TEST_c_c (csqrt, -0x1.000002p-126L, -0x1.000002p-126L, 4.934094449071842328766868579214125217132e-20L, -1.191195773697904627170323731331667740087e-19L), - -#ifndef TEST_FLOAT - TEST_c_c (csqrt, 0x1.fffffffffffffp+1023L, 0x1.fffffffffffffp+1023L, 1.473094556905565378990473658199034571917e+154L, 6.101757441282702188537080005372547713595e+153L), - TEST_c_c (csqrt, 0x1.fffffffffffffp+1023L, 0x1p+1023L, 1.379778091031440685006200821918878702861e+154L, 3.257214233483129514781233066898042490248e+153L), - TEST_c_c (csqrt, 0x1p-1074L, 0x1p-1074L, 2.442109726130830256743814843868934877597e-162L, 1.011554969366634726113090867589031782487e-162L), - TEST_c_c (csqrt, 0x1p-1073L, 0x1p-1073L, 3.453664695497464982856905711457966660085e-162L, 1.430554756764195530630723976279903095110e-162L), - - TEST_c_c (csqrt, plus_zero, 0x1p-1074L, 1.571727784702628688909515672805082228285e-162L, 1.571727784702628688909515672805082228285e-162L), - TEST_c_c (csqrt, 0x1p-500L, 0x1p-1074L, 5.527147875260444560247265192192255725514e-76L, 4.469444793151709302716387622440056066334e-249L), -#if defined TEST_DOUBLE || (defined TEST_LDOUBLE && LDBL_MAX_EXP == 1024) - TEST_c_c (csqrt, 0x1p+1023L, 0x1p-1074L, 9.480751908109176726832526455652159260085e153L, plus_zero, UNDERFLOW_EXCEPTION), -#endif - TEST_c_c (csqrt, 0x1p-1074L, 0x1p+1023L, 6.703903964971298549787012499102923063740e153L, 6.703903964971298549787012499102923063740e153L), - TEST_c_c (csqrt, 0x1.0000000000001p-1022L, 0x1.0000000000001p-1022L, 1.638872094839911521020410942677082920935e-154L, 6.788430486774966350907249113759995429568e-155L), - TEST_c_c (csqrt, -0x1.0000000000001p-1022L, -0x1.0000000000001p-1022L, 6.788430486774966350907249113759995429568e-155L, -1.638872094839911521020410942677082920935e-154L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (csqrt, 0x1.fp+16383L, 0x1.fp+16383L, 1.179514222452201722651836720466795901016e+2466L, 4.885707879516577666702435054303191575148e+2465L), - TEST_c_c (csqrt, 0x1.fp+16383L, 0x1p+16383L, 1.106698967236475180613254276996359485630e+2466L, 2.687568007603946993388538156299100955642e+2465L), - TEST_c_c (csqrt, 0x1p-16440L, 0x1p-16441L, 3.514690655930285351254618340783294558136e-2475L, 8.297059146828716918029689466551384219370e-2476L), - - TEST_c_c (csqrt, plus_zero, 0x1p-16445L, 4.269191686890197837775136325621239761720e-2476L, 4.269191686890197837775136325621239761720e-2476L), - TEST_c_c (csqrt, 0x1p-5000L, 0x1p-16445L, 2.660791472672778409283210520357607795518e-753L, 6.849840675828785164910701384823702064234e-4199L), - TEST_c_c (csqrt, 0x1p+16383L, 0x1p-16445L, 7.712754032630730034273323365543179095045e2465L, plus_zero, UNDERFLOW_EXCEPTION), - TEST_c_c (csqrt, 0x1p-16445L, 0x1p+16383L, 5.453740678097079647314921223668914312241e2465L, 5.453740678097079647314921223668914312241e2465L), - TEST_c_c (csqrt, 0x1.0000000000000002p-16382L, 0x1.0000000000000002p-16382L, 2.014551439675644900131815801350165472778e-2466L, 8.344545284118961664300307045791497724440e-2467L), - TEST_c_c (csqrt, -0x1.0000000000000002p-16382L, -0x1.0000000000000002p-16382L, 8.344545284118961664300307045791497724440e-2467L, -2.014551439675644900131815801350165472778e-2466L), - -# if LDBL_MANT_DIG >= 113 - TEST_c_c (csqrt, plus_zero, 0x1p-16494L, 1.799329752913293143453817328207572571442e-2483L, 1.799329752913293143453817328207572571442e-2483L), - TEST_c_c (csqrt, 0x1p-5000L, 0x1p-16494L, 2.660791472672778409283210520357607795518e-753L, 1.216776133331049643422030716668249905907e-4213L), - TEST_c_c (csqrt, 0x1p+16383L, 0x1p-16494L, 7.712754032630730034273323365543179095045e2465L, plus_zero, UNDERFLOW_EXCEPTION), - TEST_c_c (csqrt, 0x1p-16494L, 0x1p+16383L, 5.453740678097079647314921223668914312241e2465L, 5.453740678097079647314921223668914312241e2465L), - TEST_c_c (csqrt, 0x1.0000000000000000000000000001p-16382L, 0x1.0000000000000000000000000001p-16382L, 2.014551439675644900022606748976158925145e-2466L, 8.344545284118961663847948339519226074126e-2467L), - TEST_c_c (csqrt, -0x1.0000000000000000000000000001p-16382L, -0x1.0000000000000000000000000001p-16382L, 8.344545284118961663847948339519226074126e-2467L, -2.014551439675644900022606748976158925145e-2466L), -# endif -#endif + AUTO_TESTS_c_c (csqrt, tonearest), }; static void @@ -7270,11 +6927,6 @@ csqrt_test (void) static const struct test_c_c_data ctan_test_data[] = { - TEST_c_c (ctan, 0, 0, 0.0, 0.0), - TEST_c_c (ctan, 0, minus_zero, 0.0, minus_zero), - TEST_c_c (ctan, minus_zero, 0, minus_zero, 0.0), - TEST_c_c (ctan, minus_zero, minus_zero, minus_zero, minus_zero), - TEST_c_c (ctan, 0, plus_infty, 0.0, 1.0), TEST_c_c (ctan, 1, plus_infty, 0.0, 1.0), TEST_c_c (ctan, minus_zero, plus_infty, minus_zero, 1.0), @@ -7310,38 +6962,7 @@ static const struct test_c_c_data ctan_test_data[] = TEST_c_c (ctan, qnan_value, qnan_value, qnan_value, qnan_value), - TEST_c_c (ctan, 0.75L, 1.25L, 0.160807785916206426725166058173438663L, 0.975363285031235646193581759755216379L), - TEST_c_c (ctan, -2, -3, 0.376402564150424829275122113032269084e-2L, -1.00323862735360980144635859782192726L), - - TEST_c_c (ctan, 1, 45, 1.490158918874345552942703234806348520895e-39L, 1.000000000000000000000000000000000000001L, UNDERFLOW_EXCEPTION_FLOAT), - TEST_c_c (ctan, 1, 47, 2.729321264492904590777293425576722354636e-41L, 1.0, UNDERFLOW_EXCEPTION_FLOAT), - -#ifndef TEST_FLOAT - TEST_c_c (ctan, 1, 355, 8.140551093483276762350406321792653551513e-309L, 1.0, UNDERFLOW_EXCEPTION_DOUBLE), - TEST_c_c (ctan, 1, 365, 1.677892637497921890115075995898773550884e-317L, 1.0, UNDERFLOW_EXCEPTION_DOUBLE), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (ctan, 1, 5680, 4.725214596136812019616700920476949798307e-4934L, 1.0, UNDERFLOW_EXCEPTION), - TEST_c_c (ctan, 1, 5690, 9.739393181626937151720816611272607059057e-4943L, 1.0, UNDERFLOW_EXCEPTION), -#endif - - TEST_c_c (ctan, 0x3.243f6cp-1, 0, -2.287733242885645987394874673945769518150e7L, 0.0), - - TEST_c_c (ctan, 0x1p127, 1, 0.2446359391192790896381501310437708987204L, 0.9101334047676183761532873794426475906201L), - -#ifndef TEST_FLOAT - TEST_c_c (ctan, 0x1p1023, 1, -0.2254627924997545057926782581695274244229L, 0.8786063118883068695462540226219865087189L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (ctan, 0x1p16383L, 1, 0.1608598776370396607204448234354670036772L, 0.8133818522051542536316746743877629761488L), -#endif - - TEST_c_c (ctan, 50000, 50000, plus_zero, 1.0, UNDERFLOW_EXCEPTION), - TEST_c_c (ctan, 50000, -50000, plus_zero, -1.0, UNDERFLOW_EXCEPTION), - TEST_c_c (ctan, -50000, 50000, minus_zero, 1.0, UNDERFLOW_EXCEPTION), - TEST_c_c (ctan, -50000, -50000, minus_zero, -1.0, UNDERFLOW_EXCEPTION), + AUTO_TESTS_c_c (ctan, tonearest), }; static void @@ -7355,15 +6976,7 @@ ctan_test (void) static const struct test_c_c_data ctan_tonearest_test_data[] = { - TEST_c_c (ctan, 0x1.921fb6p+0, 0x1p-149, -2.287733242885645987394874673945769518150e7L, 7.334008549954377778731880988481078535821e-31L), - -#ifndef TEST_FLOAT - TEST_c_c (ctan, 0x1.921fb54442d18p+0, 0x1p-1074, 1.633123935319536975596773704152891653086e16L, 1.317719414943508315995636961402669067843e-291L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MIN_EXP <= -16381 - TEST_c_c (ctan, 0x1.921fb54442d1846ap+0L, 0x1p-16445L, -3.986797629811710706723242948653362815645e19L, 5.793882568875674066286163141055208625180e-4912L), -#endif + AUTO_TESTS_c_c (ctan, tonearest), }; static void @@ -7377,15 +6990,7 @@ ctan_test_tonearest (void) static const struct test_c_c_data ctan_towardzero_test_data[] = { - TEST_c_c (ctan, 0x1.921fb6p+0, 0x1p-149, -2.287733242885645987394874673945769518150e7L, 7.334008549954377778731880988481078535821e-31L), - -#ifndef TEST_FLOAT - TEST_c_c (ctan, 0x1.921fb54442d18p+0, 0x1p-1074, 1.633123935319536975596773704152891653086e16L, 1.317719414943508315995636961402669067843e-291L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MIN_EXP <= -16381 - TEST_c_c (ctan, 0x1.921fb54442d1846ap+0L, 0x1p-16445L, -3.986797629811710706723242948653362815645e19L, 5.793882568875674066286163141055208625180e-4912L), -#endif + AUTO_TESTS_c_c (ctan, towardzero), }; static void @@ -7399,15 +7004,7 @@ ctan_test_towardzero (void) static const struct test_c_c_data ctan_downward_test_data[] = { - TEST_c_c (ctan, 0x1.921fb6p+0, 0x1p-149, -2.287733242885645987394874673945769518150e7L, 7.334008549954377778731880988481078535821e-31L), - -#ifndef TEST_FLOAT - TEST_c_c (ctan, 0x1.921fb54442d18p+0, 0x1p-1074, 1.633123935319536975596773704152891653086e16L, 1.317719414943508315995636961402669067843e-291L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MIN_EXP <= -16381 - TEST_c_c (ctan, 0x1.921fb54442d1846ap+0L, 0x1p-16445L, -3.986797629811710706723242948653362815645e19L, 5.793882568875674066286163141055208625180e-4912L), -#endif + AUTO_TESTS_c_c (ctan, downward), }; static void @@ -7421,15 +7018,7 @@ ctan_test_downward (void) static const struct test_c_c_data ctan_upward_test_data[] = { - TEST_c_c (ctan, 0x1.921fb6p+0, 0x1p-149, -2.287733242885645987394874673945769518150e7L, 7.334008549954377778731880988481078535821e-31L), - -#ifndef TEST_FLOAT - TEST_c_c (ctan, 0x1.921fb54442d18p+0, 0x1p-1074, 1.633123935319536975596773704152891653086e16L, 1.317719414943508315995636961402669067843e-291L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MIN_EXP <= -16381 - TEST_c_c (ctan, 0x1.921fb54442d1846ap+0L, 0x1p-16445L, -3.986797629811710706723242948653362815645e19L, 5.793882568875674066286163141055208625180e-4912L), -#endif + AUTO_TESTS_c_c (ctan, upward), }; static void @@ -7443,11 +7032,6 @@ ctan_test_upward (void) static const struct test_c_c_data ctanh_test_data[] = { - TEST_c_c (ctanh, 0, 0, 0.0, 0.0), - TEST_c_c (ctanh, 0, minus_zero, 0.0, minus_zero), - TEST_c_c (ctanh, minus_zero, 0, minus_zero, 0.0), - TEST_c_c (ctanh, minus_zero, minus_zero, minus_zero, minus_zero), - TEST_c_c (ctanh, plus_infty, 0, 1.0, 0.0), TEST_c_c (ctanh, plus_infty, 1, 1.0, 0.0), TEST_c_c (ctanh, plus_infty, minus_zero, 1.0, minus_zero), @@ -7482,40 +7066,7 @@ static const struct test_c_c_data ctanh_test_data[] = TEST_c_c (ctanh, qnan_value, qnan_value, qnan_value, qnan_value), - TEST_c_c (ctanh, 0, M_PI_4l, 0.0, 1.0), - - TEST_c_c (ctanh, 0.75L, 1.25L, 1.37260757053378320258048606571226857L, 0.385795952609750664177596760720790220L), - TEST_c_c (ctanh, -2, -3, -0.965385879022133124278480269394560686L, 0.988437503832249372031403430350121098e-2L), - - TEST_c_c (ctanh, 45, 1, 1.000000000000000000000000000000000000001L, 1.490158918874345552942703234806348520895e-39L, UNDERFLOW_EXCEPTION_FLOAT), - TEST_c_c (ctanh, 47, 1, 1.0, 2.729321264492904590777293425576722354636e-41L, UNDERFLOW_EXCEPTION_FLOAT), - -#ifndef TEST_FLOAT - TEST_c_c (ctanh, 355, 1, 1.0, 8.140551093483276762350406321792653551513e-309L, UNDERFLOW_EXCEPTION_DOUBLE), - TEST_c_c (ctanh, 365, 1, 1.0, 1.677892637497921890115075995898773550884e-317L, UNDERFLOW_EXCEPTION_DOUBLE), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (ctanh, 5680, 1, 1.0, 4.725214596136812019616700920476949798307e-4934L, UNDERFLOW_EXCEPTION), - TEST_c_c (ctanh, 5690, 1, 1.0, 9.739393181626937151720816611272607059057e-4943L, UNDERFLOW_EXCEPTION), -#endif - - TEST_c_c (ctanh, 0, 0x3.243f6cp-1, 0.0, -2.287733242885645987394874673945769518150e7L), - - TEST_c_c (ctanh, 1, 0x1p127, 0.9101334047676183761532873794426475906201L, 0.2446359391192790896381501310437708987204L), - -#ifndef TEST_FLOAT - TEST_c_c (ctanh, 1, 0x1p1023, 0.8786063118883068695462540226219865087189L, -0.2254627924997545057926782581695274244229L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MAX_EXP >= 16384 - TEST_c_c (ctanh, 1, 0x1p16383L, 0.8133818522051542536316746743877629761488L, 0.1608598776370396607204448234354670036772L), -#endif - - TEST_c_c (ctanh, 50000, 50000, 1.0, plus_zero, UNDERFLOW_EXCEPTION), - TEST_c_c (ctanh, 50000, -50000, 1.0, minus_zero, UNDERFLOW_EXCEPTION), - TEST_c_c (ctanh, -50000, 50000, -1.0, plus_zero, UNDERFLOW_EXCEPTION), - TEST_c_c (ctanh, -50000, -50000, -1.0, minus_zero, UNDERFLOW_EXCEPTION), + AUTO_TESTS_c_c (ctanh, tonearest), }; static void @@ -7529,15 +7080,7 @@ ctanh_test (void) static const struct test_c_c_data ctanh_tonearest_test_data[] = { - TEST_c_c (ctanh, 0x1p-149, 0x1.921fb6p+0, 7.334008549954377778731880988481078535821e-31L, -2.287733242885645987394874673945769518150e7L), - -#ifndef TEST_FLOAT - TEST_c_c (ctanh, 0x1p-1074, 0x1.921fb54442d18p+0, 1.317719414943508315995636961402669067843e-291L, 1.633123935319536975596773704152891653086e16L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MIN_EXP <= -16381 - TEST_c_c (ctanh, 0x1p-16445L, 0x1.921fb54442d1846ap+0L, 5.793882568875674066286163141055208625180e-4912L, -3.986797629811710706723242948653362815645e19L), -#endif + AUTO_TESTS_c_c (ctanh, tonearest), }; static void @@ -7551,15 +7094,7 @@ ctanh_test_tonearest (void) static const struct test_c_c_data ctanh_towardzero_test_data[] = { - TEST_c_c (ctanh, 0x1p-149, 0x1.921fb6p+0, 7.334008549954377778731880988481078535821e-31L, -2.287733242885645987394874673945769518150e7L), - -#ifndef TEST_FLOAT - TEST_c_c (ctanh, 0x1p-1074, 0x1.921fb54442d18p+0, 1.317719414943508315995636961402669067843e-291L, 1.633123935319536975596773704152891653086e16L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MIN_EXP <= -16381 - TEST_c_c (ctanh, 0x1p-16445L, 0x1.921fb54442d1846ap+0L, 5.793882568875674066286163141055208625180e-4912L, -3.986797629811710706723242948653362815645e19L), -#endif + AUTO_TESTS_c_c (ctanh, towardzero), }; static void @@ -7573,15 +7108,7 @@ ctanh_test_towardzero (void) static const struct test_c_c_data ctanh_downward_test_data[] = { - TEST_c_c (ctanh, 0x1p-149, 0x1.921fb6p+0, 7.334008549954377778731880988481078535821e-31L, -2.287733242885645987394874673945769518150e7L), - -#ifndef TEST_FLOAT - TEST_c_c (ctanh, 0x1p-1074, 0x1.921fb54442d18p+0, 1.317719414943508315995636961402669067843e-291L, 1.633123935319536975596773704152891653086e16L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MIN_EXP <= -16381 - TEST_c_c (ctanh, 0x1p-16445L, 0x1.921fb54442d1846ap+0L, 5.793882568875674066286163141055208625180e-4912L, -3.986797629811710706723242948653362815645e19L), -#endif + AUTO_TESTS_c_c (ctanh, downward), }; static void @@ -7595,15 +7122,7 @@ ctanh_test_downward (void) static const struct test_c_c_data ctanh_upward_test_data[] = { - TEST_c_c (ctanh, 0x1p-149, 0x1.921fb6p+0, 7.334008549954377778731880988481078535821e-31L, -2.287733242885645987394874673945769518150e7L), - -#ifndef TEST_FLOAT - TEST_c_c (ctanh, 0x1p-1074, 0x1.921fb54442d18p+0, 1.317719414943508315995636961402669067843e-291L, 1.633123935319536975596773704152891653086e16L), -#endif - -#if defined TEST_LDOUBLE && LDBL_MIN_EXP <= -16381 - TEST_c_c (ctanh, 0x1p-16445L, 0x1.921fb54442d1846ap+0L, 5.793882568875674066286163141055208625180e-4912L, -3.986797629811710706723242948653362815645e19L), -#endif + AUTO_TESTS_c_c (ctanh, upward), }; static void diff --git a/sysdeps/i386/fpu/libm-test-ulps b/sysdeps/i386/fpu/libm-test-ulps index ca16bc5e53..ff70904acf 100644 --- a/sysdeps/i386/fpu/libm-test-ulps +++ b/sysdeps/i386/fpu/libm-test-ulps @@ -4241,6 +4241,33 @@ ifloat: 1 Test "Imaginary part of: ccos (-0.75 - 89.5 i)": float: 1 ifloat: 1 +Test "Imaginary part of: ccos (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ccos (-0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (-0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ccos (-0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (-0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 Test "Imaginary part of: ccos (-2 - 3 i)": float: 1 ifloat: 1 @@ -4281,8 +4308,74 @@ ifloat: 1 Test "Imaginary part of: ccos (0x1p-1074 + 1440 i)": double: 1 idouble: 1 +Test "Imaginary part of: ccos (0x4p-1076 + 0x5.ap+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ccos (0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ccos (0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 # ccosh +Test "Real part of: ccosh (-0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (-0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (-0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (-0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ccosh (-0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 Test "Imaginary part of: ccosh (-2 - 3 i)": float: 1 ifloat: 1 @@ -4318,6 +4411,42 @@ ifloat: 1 Test "Imaginary part of: ccosh (0.75 + 1.25 i)": float: 1 ifloat: 1 +Test "Imaginary part of: ccosh (0x1p-120 + 0x4p-16328 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ccosh (0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ccosh (0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 Test "Imaginary part of: ccosh (1440 + 0x1p-1074 i)": double: 1 idouble: 1 @@ -4347,6 +4476,29 @@ float: 1 ifloat: 1 # cexp +Test "Imaginary part of: cexp (+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (-0x2.71p+12 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.71p+12 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (-0x2.71p+12 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cexp (-0x5.fp+4 + 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x5.fp+4 + 0xcp-4 i)": +double: 1 +idouble: 1 Test "Real part of: cexp (-10000 + 0x1p16383 i)": ildouble: 1 ldouble: 1 @@ -4364,6 +4516,41 @@ idouble: 1 Test "Imaginary part of: cexp (0.75 + 1.25 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: cexp (0x2.c5c9p+12 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cexp (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cexp (11356.5625 + 0.75 i)": ildouble: 1 ldouble: 1 @@ -4398,12 +4585,60 @@ ildouble: 1 ldouble: 1 # clog +Test "Real part of: clog (+0 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": double: 1 idouble: 1 Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": double: 1 idouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d1598p-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d15ap-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 Test "Real part of: clog (-0x1.fp+127 + 0x1p-149 i)": ildouble: 1 ldouble: 1 @@ -4416,6 +4651,9 @@ ldouble: 1 Test "Real part of: clog (-0x1.fp+16383 - 0x1p-16445 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (-0x1p+0 + 0x4.8d15ap-32 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (-0x1p-149 + 0x1.fp+127 i)": ildouble: 1 ldouble: 1 @@ -4428,1495 +4666,4444 @@ ldouble: 1 Test "Real part of: clog (-0x1p-16445 - 0x1.fp+16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x0.ffffffffffffffffp0 + 0x0.ffffffffffffffffp-15000 i)": +Test "Real part of: clog (-0x4p-1076 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x0.ffffffp0 + 0x0.ffffffp-100 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1.000566p0 + 0x1.234p-10 i)": +Test "Real part of: clog (-0x4p-1076 - 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.000566p0 + 0x1.234p-100 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1.fffffep+127 + 0x1.fffffep+127 i)": +Test "Real part of: clog (-0x8p-152 + 0xf.8p+124 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1.fp+16383 i)": +Test "Real part of: clog (-0x8p-152 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p+16383 i)": +Test "Real part of: clog (-0x8p-152 - 0xf.8p+124 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p-16445 i)": +Test "Real part of: clog (-0x8p-152 - 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 - 0x1p-16445 i)": +Test "Real part of: clog (-0x8p-16448 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-1074 + 0x1p-1074 i)": +Test "Real part of: clog (-0x8p-16448 - 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-149 + 0x1.fp+127 i)": +Test "Real part of: clog (-0xf.8p+124 + 0x8p-152 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-149 + 0x1p-149 i)": +Test "Real part of: clog (-0xf.8p+124 - 0x8p-152 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-149 - 0x1.fp+127 i)": +Test "Real part of: clog (-0xf.8p+16380 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-16445 + 0x1.fp+16383 i)": +Test "Real part of: clog (-0xf.8p+16380 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-16445 - 0x1.fp+16383 i)": +Test "Real part of: clog (-0xf.8p+16380 + 0x8p-152 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +Test "Real part of: clog (-0xf.8p+16380 + 0x8p-16448 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (1.0 + 0x1.234566p-10 i)": +Test "Real part of: clog (-0xf.8p+16380 - 0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x0.ffffffffffffffffp0 + 0x0.ffffffffffffffffp-15000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x0.ffffffp0 + 0x0.ffffffp-100 i)": float: 1 ifloat: 1 - -# clog10 -Test "Imaginary part of: clog10 (-0 + inf i)": +Test "Real part of: clog (0x1.0000000000000012p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000000012p+0 + 0x1.234566p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000000012p+0 + 0x1.23456789p-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000000012p+0 + 0x1.23456789p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000000012p+0 + 0x1.234568p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000000012p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.0000000000000014p+0 + 0x1.234566p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.0000000000000014p+0 + 0x1.23456789p-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.0000000000000014p+0 + 0x1.23456789p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.0000000000000014p+0 + 0x1.234568p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + +0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-0 - inf i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234566p-60 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-1000 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-60 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234568p-60 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x8p-152 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234566p-60 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234568p-60 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000566p+0 + 0x1.234p-100 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000566p+0 + 0x4.8dp-12 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.234566p-40 - 1.0 i)": +Test "Real part of: clog (0x1.000566p0 + 0x1.234p-10 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.000566p0 + 0x1.234p-100 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": +Test "Real part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c64p-4 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c63p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x1.48e45ep-4 + 0xf.f2c63p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": -double: 1 +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c64p-4 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": +Test "Real part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bdfbf6p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (-0x1.fp+16383 + 0x1p-16445 i)": +Test "Real part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bep-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (-0x1.fp+16383 - 0x1p-16445 i)": +Test "Real part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bdfbf7p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": +Test "Real part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed19ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": +Test "Real part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdf8p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": +Test "Real part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdfbf6p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": +Test "Real part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdf8p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (-0x1p-16445 + 0x1.fp+16383 i)": +Test "Real part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdfbf6p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (-0x1p-16445 - 0x1.fp+16383 i)": +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdf8p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-2 - 3 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-3 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-3 - inf i)": +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdfbf6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bep-4 + 0xf.ed1990460bdfbf6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e08p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 0 i)": +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e0948p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e1p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 1 i)": -double: 1 +Test "Imaginary part of: clog (0x1.c67eccp-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4ep-4 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (-inf + inf i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-inf - 0 i)": +Test "Imaginary part of: clog (0x1.c67eccp-4 + 0xf.e6b4ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e0948p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e0949p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a85944bap-4 + 0xf.e6b4d1d7a6e0948p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a85944bap-4 + 0xf.e6b4ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4dp-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf - 1 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4ep-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0 + inf i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e1p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0 - inf i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": +Test "Real part of: clog (0x1.fffffep+127 + 0x1.fffffep+127 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x0.ffffffffffffffffp0 + 0x0.ffffffffffffffffp-15000 i)": +Test "Real part of: clog (0x1.fp+16383 + 0x1.fp+16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": +Test "Real part of: clog (0x1.fp+16383 + 0x1p+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.fp+16383 + 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.fp+16383 - 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1p+0 + 0x4.8d1598p-12 i)": float: 1 ifloat: 1 +Test "Real part of: clog (0x1p-1074 + 0x1p-1074 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +Test "Real part of: clog (0x1p-149 + 0x1.fp+127 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +Test "Real part of: clog (0x1p-149 + 0x1p-149 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.234566p-30 + 1.0 i)": +Test "Real part of: clog (0x1p-149 - 0x1.fp+127 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x1p-16440 + +0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +Test "Real part of: clog (0x1p-16445 + 0x1.fp+16383 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +Test "Real part of: clog (0x1p-16445 - 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a38p-4 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 + 0x1.fp+16383 i)": +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 + 0x1p-16445 i)": +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42ap-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 - 0x1p-16445 i)": +Test "Real part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x11682p-23 + 0x7ffed1p-23 i)": +Test "Real part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a38p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": +Test "Real part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42bp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1p-149 + 0x1.fp+127 i)": +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1p-149 + 0x1p-149 i)": +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a38p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +Test "Real part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a38p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1p-16440 + 0x1p-16441 i)": +Test "Real part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-16440 + 0x1p-16441 i)": +Test "Real part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1p-16445 + 0x1.fp+16383 i)": +Test "Real part of: clog (0x2dd46725bp-35 + 0x7783a1284p-35 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1p-16445 - 0x1.fp+16383 i)": +Test "Real part of: clog (0x3.2cdb84p-4 + 0xf.ae888f0455f6p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1p-8190 + 1.0 i)": +Test "Real part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873d09e61e797p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +Test "Real part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +Test "Real part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab874p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab874p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e797p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e8p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873p-4 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58a83e57c772p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x659b70ab7971bp-53 + 0x1f5d111e08abecp-53 i)": +Test "Real part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57cp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x6b10b4f3520217b6p-64 + 0xe8893cbb449253a1p-64 i)": +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x81b7efa81fc35ad1p-65 + 0x1ef4b835f1c79d812p-65 i)": +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c59p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x8ecbf810c4ae6p-52 + 0xd479468b09a37p-52 i)": +Test "Real part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58a83e57c773p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +Test "Real part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58p-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57c772p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (3 + inf i)": +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57cp-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (3 - inf i)": -double: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (inf + inf i)": -double: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (inf - inf i)": +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c59p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e171p-4 + 0xf.a0c59p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d118p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 - -# cos -Test "cos (0x1.921fb4p+0)": +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d11bfdp-4 i)": ildouble: 1 ldouble: 1 -Test "cos (M_PI_6l * 2.0)": +Test "Real part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d6p-4 i)": double: 1 idouble: 1 -Test "cos (M_PI_6l * 4.0)": -double: 2 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d619a8d12p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d7p-4 i)": float: 1 -idouble: 2 ifloat: 1 - -# cos_downward -Test "cos_downward (0x1.000000cf4a2a2p+0)": +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d08p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06dp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.0000010b239a9p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b3d1b06d005dp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.00000162a932bp+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.000002d452a1p+0)": +Test "Real part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06d005ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06d08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d08p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06dp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.000002p+0)": +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1af8e3ce8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1af8e3cec09p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1af8e3cfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1af8e3ce8p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x1.0c152382d7365p+0)": +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x1.921fb4p+0)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d18468p+0)": +Test "Real part of: clog (0x4.0dbf7d40fe1ad688p-4 + 0xf.7a5c1af8e3ce8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d1846ap+0)": +Test "Real part of: clog (0x4.0dbf7d40fe1ad688p-4 + 0xf.7a5c1af8e3cfp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d18p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1bp-4 + 0xf.7a5c2p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d19p+0)": +Test "Imaginary part of: clog (0x4.0dbf8p-4 + 0xf.7a5c1af8e3cfp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb6p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x4.0dbf8p-4 + 0xf.7a5c2p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1p+0)": -double: 1 -idouble: 1 -Test "cos_downward (0x1p+120)": +Test "Imaginary part of: clog (0x4.7017a2e368078p-4 + 0xf.5f4a550c9d75e3bp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1p+28)": +Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a550c9d758p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a5p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d758p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d75e3bp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a44p+0)": +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d75e3cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d75e3cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d76p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a6p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.d9e8c415d5644p-4 + 0xf.3f302p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a4705ae6cap+0)": +Test "Real part of: clog (0x4.d9e8c8p-4 + 0xf.3f303p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.d9e8cp-4 + 0xf.3f30281507d8p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x4p-1076 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a4705ae6cb08cp+0)": +Test "Real part of: clog (0x4p-1076 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a4705ae6cb09p+0)": +Test "Real part of: clog (0x4p-1076 - 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a4705ae6ccp+0)": +Test "Real part of: clog (0x5.318c58p-4 + 0xf.22363p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a48p+0)": +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22364p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.1e19e0c9bab24p+72)": -double: 1 -idouble: 1 -Test "cos_downward (0x2.1e19e4p+72)": +Test "Real part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22364p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb1p-4 + 0xf.22364p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x2.1e19ep+72)": +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452b965da9fp-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x2p+0)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x3p+0)": +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x5.b06b7p-4 + 0xe.f452b965da9fp-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x5.b06b7p-4 + 0xe.f452cp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x4p+0)": +Test "Real part of: clog (0x5.ba8ce4b6p-4 + 0xe.f0742508p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x4p+48)": -double: 1 -idouble: 1 -Test "cos_downward (0x8p+0)": -ildouble: 2 -ldouble: 2 -Test "cos_downward (0x8p+1020)": +Test "Real part of: clog (0x5.ba8cep-4 + 0xe.f0742p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x9p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x6.02fd5037c4792efp-4 + 0xe.d3e21p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0xa.217bap+12)": +Test "Real part of: clog (0x6.02fd5037c4794p-4 + 0xe.d3e21p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0xap+0)": +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e2086dcca80b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e21p-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_downward (0xc.d4966d92d1708p-4)": +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e2p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e2086dcca80b8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0xc.d4966d92d171p-4)": +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e2086dcca8p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0xc.d4966p-4)": +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e21p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x6.02fd5p-4 + 0xe.d3e2086dcca80b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2018b428258p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2018b4288p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0xcp-4)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c2018b4288p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125efp-4 + 0xe.c97c3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd128p-4 + 0xe.c97c2p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0xf.ffffffffffff8p+1020)": +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b4288p-4 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "cos_downward (0xf.fffffp+124)": +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428p-4 i)": double: 1 idouble: 1 -Test "cos_downward (1)": ildouble: 1 ldouble: 1 -Test "cos_downward (10)": +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c3p-4 i)": float: 1 ifloat: 1 +Test "Real part of: clog (0x6.1c643p-4 + 0xe.c97c2018b428258p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (2)": +Test "Real part of: clog (0x6.1c643p-4 + 0xe.c97c2018b4288p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (3)": +Test "Real part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a599a86ba8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (4)": -float: 1 -ifloat: 1 -Test "cos_downward (5)": -float: 1 -ifloat: 1 -Test "cos_downward (7)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a599a86baf8fp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (8)": +Test "Real part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a6p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (9)": -float: 1 -ifloat: 1 - -# cos_tonearest -Test "cos_tonearest (0x1.921fb4p+0)": +Test "Real part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a599a86ba8p-4 i)": ildouble: 1 ldouble: 1 - -# cos_towardzero -Test "cos_towardzero (0x1.000000cf4a2a2p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a599a86baf8fp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x1.0000010b239a9p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a5p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x1.00000162a932bp+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a5p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x1.000002d452a1p+0)": +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a6p-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x1.000002p+0)": +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a599a86ba8p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x1.0c152382d7365p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1.921fb4p+0)": +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a599a86bbp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x1.921fb54442d18p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1.921fb54442d19p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1p+120)": +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a5p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x2.182a4705ae6ccp+0)": +Test "Real part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86ba8p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x2.182a48p+0)": +Test "Real part of: clog (0x6.2aff8p-4 + 0xe.c36a599a86baf8fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff8p-4 + 0xe.c36a599a86baf9p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b48p-4 + 0xe.8893cbb449253a1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b48p-4 + 0xe.8893cbb44925p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x2.1e19e0c9bab24p+72)": +Test "Real part of: clog (0x6.b10b48p-4 + 0xe.8893dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520214p-4 + 0xe.8893cbb449253a1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520214p-4 + 0xe.8893cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520217b6p-4 + 0xe.8893cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cbb44925p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893dp-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x2.1e19e4p+72)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb449258p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x2.1e19ep+72)": +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb44925p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x2p+0)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655fp-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x4p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x4p+48)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x8p+0)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e5108p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e511p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x8p+1020)": -double: 1 -idouble: 1 -Test "cos_towardzero (0xa.217bap+12)": +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x7.eca92p-4 + 0xd.e655e694e510a95p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0xc.d4966d92d1708p-4)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x7.eca92p-4 + 0xd.e655e694e511p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0xc.d4966d92d171p-4)": -double: 1 -idouble: 1 -Test "cos_towardzero (0xc.d4966p-4)": -double: 1 -idouble: 1 -Test "cos_towardzero (0xcp-4)": -double: 1 -idouble: 1 -Test "cos_towardzero (0xf.fffffp+124)": -double: 1 -idouble: 1 -Test "cos_towardzero (1)": +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655fp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (10)": +Test "Real part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d65939160b311p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (2)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d65939160b8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (3)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d65939160bp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (5)": -float: 1 -ifloat: 1 -Test "cos_towardzero (7)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d66p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (8)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160b31p-4 i)": ildouble: 1 ldouble: 1 - -# cos_upward -Test "cos_upward (-0x2p+64)": +Test "Real part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d66p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65939160b311p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65939160b311p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d66p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x1.000004p+0)": +Test "Real part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65939160b311p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x1.000005bc7d86dp+0)": +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b31p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b8p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160bp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.000006p+0)": +Test "Real part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160bp-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x1.0c1522p+0)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f4b083cb0bp-4 + 0xd.e1bf1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bf04f3688p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x1.0c152382d7366p+0)": +Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f4b08p-4 + 0xd.e1bf04f3688p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.88fafp-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.47946p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x1.0c1524p+0)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.ecbf8p-4 + 0xd.479468b09a37p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x1.921fb4p+0)": +Test "Real part of: clog (0x8.ecbf9p-4 + 0xd.479468b09a37p-4 i)": double: 1 idouble: 1 -ildouble: 2 -ldouble: 2 -Test "cos_upward (0x1.921fb54442d18468p+0)": +Test "Imaginary part of: clog (0x8.ecbf9p-4 + 0xd.47947p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.921fb54442d1846ap+0)": +Test "Real part of: clog (0x8p-152 + 0x8p-152 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.921fb54442d18p+0)": +Test "Real part of: clog (0x8p-152 + 0xf.8p+124 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.921fb54442d19p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x8p-152 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.921fb6p+0)": -ildouble: 2 -ldouble: 2 -Test "cos_upward (0x1p+120)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x8p-152 - 0xf.8p+124 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1p+28)": +Test "Real part of: clog (0x8p-152 - 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a44p+0)": +Test "Real part of: clog (0x8p-16448 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a4705ae6cap+0)": +Test "Real part of: clog (0x8p-16448 - 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a4705ae6cb08cp+0)": +Test "Real part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b4085cp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a4705ae6cb09p+0)": +Test "Real part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b41p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a4705ae6ccp+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a48p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x9.b386fc56b968a66p-4 + 0xc.b9317p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x9.b386fc56b969p-4 + 0xc.b9317c470b41p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2p+64)": -double: 1 -idouble: 1 -Test "cos_upward (0x3p+0)": +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317c470b408p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x4p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317c470b41p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x5p+0)": +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x9.b387p-4 + 0xc.b9317c470b4085cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b387p-4 + 0xc.b9317c470b41p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b387p-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246bap-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246bap-4 + 0xc.ae53ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7dp-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x6p+0)": +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53ep-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x7p+0)": +Test "Imaginary part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53dp-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x8p+0)": +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53ep-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (0x8p+1020)": +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7dp-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53dp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.c1b6bp-4 + 0xc.ae53de1d5a7c8b1p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x8p+124)": -double: 1 -idouble: 1 -Test "cos_upward (0x9p+0)": +Test "Real part of: clog (0x9.c1b6bp-4 + 0xc.ae53de1d5a7c8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0xa.217bap+12)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "cos_upward (0xap+0)": +Test "Imaginary part of: clog (0x9.c1b6bp-4 + 0xc.ae53de1d5a7c8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0xc.d4967p-4)": -double: 1 -idouble: 1 -Test "cos_upward (0xf.ffffcp+124)": +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0xf.ffffffffffff8p+1020)": +Test "Real part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c18p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (1)": -float: 1 -ifloat: 1 -Test "cos_upward (2)": -float: 1 -ifloat: 1 -Test "cos_upward (3)": -float: 1 -ifloat: 1 -Test "cos_upward (4)": +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c2p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (5)": +Test "Real part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c18p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (6)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199fp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (8)": +Test "Real part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": float: 1 ifloat: 1 +Test "Real part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c18p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (9)": +Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 ldouble: 1 - -# cosh -Test "cosh (-0x2.c5e3acp+8)": +Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df8p-4 i)": ildouble: 1 -Test "cosh (-0x2.c5e3bp+8)": +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df58ap-4 i)": ildouble: 1 -Test "cosh (0x1.6p+4)": ldouble: 1 - -# cosh_downward -Test "cosh_downward (-0x2.c5e3acd2922a6p+8)": +Test "Real part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867ap-4 i)": ildouble: 1 -Test "cosh_downward (-0x2.c5e3bp+8)": +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867ap-4 i)": ildouble: 1 -Test "cosh_downward (0x1.6p+4)": +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 -ldouble: 2 -Test "cosh_downward (22)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df8p-4 i)": ildouble: 1 -ldouble: 2 -Test "cosh_downward (23)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_downward (24)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 ldouble: 1 - -# cosh_tonearest -Test "cosh_tonearest (-0x2.c5e3acp+8)": +Test "Imaginary part of: clog (0xa.afc57p-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 -Test "cosh_tonearest (-0x2.c5e3bp+8)": +ldouble: 1 +Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df58ap-4 i)": ildouble: 1 -Test "cosh_tonearest (0x1.6p+4)": ldouble: 1 -Test "cosh_tonearest (22)": +Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.afc57p-4 + 0xb.e8679p-4 i)": +ildouble: 1 ldouble: 1 - -# cosh_towardzero -Test "cosh_towardzero (-0x2.c5e3acd2922a6p+8)": +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 -Test "cosh_towardzero (0x1.6p+4)": +ldouble: 1 +Test "Real part of: clog (0xa.afc58p-4 + 0xb.e8679p-4 i)": ildouble: 1 -ldouble: 2 -Test "cosh_towardzero (22)": +ldouble: 1 +Test "Real part of: clog (0xa.b96da19075eap-8 + 0xf.fc679p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 -ldouble: 2 -Test "cosh_towardzero (23)": +ldouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc67818f89d2p-4 i)": double: 1 -float: 1 idouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc678p-4 i)": +float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cosh_towardzero (24)": +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc679p-4 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# cosh_upward -Test "cosh_upward (-0x2.c5e3acd2922a6p+8)": +Test "Real part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51cbp-4 i)": double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "cosh_upward (-0x2.c5e3acp+8)": +Test "Real part of: clog (0xa.e7de8p-4 + 0xb.b51cbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.e7de9p-4 + 0xb.b51cb9f04d4dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a6059p-4 i)": ildouble: 1 -Test "cosh_upward (-0x2.c5e3bp+8)": +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a68p-4 i)": ildouble: 1 -Test "cosh_upward (0x1.6p+4)": +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f25p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (0x1.7p+4)": -ildouble: 2 +Test "Real part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 ldouble: 1 -Test "cosh_upward (0x1.8p+4)": +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f24p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f25p-4 i)": ildouble: 1 -Test "cosh_upward (0x2.c5e3acd2922a6p+8)": +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f2405504a6058p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f2405504a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f25p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a68p-4 i)": double: 1 -ildouble: 2 +idouble: 1 +ildouble: 1 ldouble: 1 -Test "cosh_upward (0x2.c5e3acp+8)": +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6p-4 i)": ildouble: 1 -Test "cosh_upward (0x2.c5e3bp+8)": +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f25p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xb.263a77543bp-4 + 0xb.79c9ap-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.8p+124 + 0x8p-152 i)": ildouble: 1 -Test "cosh_upward (22)": -ildouble: 2 ldouble: 1 -Test "cosh_upward (23)": -ildouble: 2 +Test "Real part of: clog (0xf.8p+124 - 0x8p-152 i)": +ildouble: 1 ldouble: 1 -Test "cosh_upward (24)": +Test "Real part of: clog (0xf.8p+16380 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.ffffffffffff8p+1020 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xf.ffffffffffff8p-4 + 0x8p-152 i)": double: 1 idouble: 1 +Test "Real part of: clog (0xf.fffffffffffffffp-4 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffffffffffffp-4 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xf.fffffffffffffffp-4 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffffffffffffp-4 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xf.fffffffffffffffp-4 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffffffffffffp-4 + 0xf.fffffffffffffffp-15004 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0xf.fffffp+124 i)": ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffp-104 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (1.0 + 0x1.234566p-10 i)": +float: 1 +ifloat: 1 -# cpow -Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": +# clog10 +Test "Imaginary part of: clog10 (-0 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0 - inf i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +Test "Imaginary part of: clog10 (-0x1.234566p-40 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": double: 1 -float: 3 idouble: 1 -ifloat: 3 +Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 0.0 i)": +Test "Real part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Real part of: clog10 (-0x1.fp+16383 + 0x1p-16445 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": -double: 2 -float: 4 -idouble: 2 -ifloat: 4 -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": +Test "Real part of: clog10 (-0x1.fp+16383 - 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": double: 1 idouble: 1 -Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": +Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": +Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": double: 1 -float: 5 +float: 1 idouble: 1 -ifloat: 5 +ifloat: 1 +Test "Real part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": +Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 4 -ldouble: 4 - -# csin -Test "Real part of: csin (-0.75 + 710.5 i)": +Test "Real part of: clog10 (-0x1p-16445 + 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (-0x1p-16445 - 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": double: 1 idouble: 1 -Test "Imaginary part of: csin (-0.75 + 710.5 i)": +Test "Imaginary part of: clog10 (-2 - 3 i)": double: 1 idouble: 1 -Test "Real part of: csin (-0.75 + 89.5 i)": +Test "Imaginary part of: clog10 (-3 + inf i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: csin (-0.75 + 89.5 i)": +Test "Imaginary part of: clog10 (-3 - inf i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: csin (-0.75 - 710.5 i)": +Test "Imaginary part of: clog10 (-inf + 0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: csin (-0.75 - 710.5 i)": +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + 1 i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: csin (-0.75 - 89.5 i)": +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + inf i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-inf - 0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: csin (-0.75 - 89.5 i)": +Test "Imaginary part of: clog10 (-inf - 1 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0 + inf i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: csin (0.75 + 1.25 i)": +Test "Imaginary part of: clog10 (0 - inf i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csin (0.75 + 1.25 i)": +Test "Real part of: clog10 (0x0.ffffffffffffffffp0 + 0x0.ffffffffffffffffp-15000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": float: 1 ifloat: 1 -Test "Real part of: csin (0.75 + 710.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": double: 1 idouble: 1 -Test "Imaginary part of: csin (0.75 + 710.5 i)": +Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.234566p-30 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": double: 1 -idouble: 1 -Test "Real part of: csin (0.75 + 89.5 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: csin (0.75 + 89.5 i)": +Test "Real part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: csin (0.75 - 710.5 i)": +Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": double: 1 idouble: 1 -Test "Imaginary part of: csin (0.75 - 710.5 i)": +Test "Real part of: clog10 (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 + 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 + 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 - 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x11682p-23 + 0x7ffed1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1p-149 + 0x1.fp+127 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1p-149 + 0x1p-149 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1p-16440 + 0x1p-16441 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-16440 + 0x1p-16441 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1p-16445 + 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1p-16445 - 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1p-8190 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x659b70ab7971bp-53 + 0x1f5d111e08abecp-53 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x6b10b4f3520217b6p-64 + 0xe8893cbb449253a1p-64 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x81b7efa81fc35ad1p-65 + 0x1ef4b835f1c79d812p-65 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x8ecbf810c4ae6p-52 + 0xd479468b09a37p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (3 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (3 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (inf + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (inf - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# cos +Test "cos (0x1.921fb4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos (M_PI_6l * 2.0)": +double: 1 +idouble: 1 +Test "cos (M_PI_6l * 4.0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 + +# cos_downward +Test "cos_downward (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.000002p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.921fb4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d19p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb6p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1p+120)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1p+28)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a44p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cap+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb09p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6ccp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a48p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x3p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_downward (0x8p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x9p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xa.217bap+12)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xap+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_downward (1)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (10)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (2)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (3)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (4)": +float: 1 +ifloat: 1 +Test "cos_downward (5)": +float: 1 +ifloat: 1 +Test "cos_downward (7)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (8)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (9)": +float: 1 +ifloat: 1 + +# cos_tonearest +Test "cos_tonearest (0x1.921fb4p+0)": +ildouble: 1 +ldouble: 1 + +# cos_towardzero +Test "cos_towardzero (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.000002p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1p+120)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.182a48p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x8p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p+1020)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xa.217bap+12)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_towardzero (1)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (10)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (2)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (3)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (5)": +float: 1 +ifloat: 1 +Test "cos_towardzero (7)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (8)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# cos_upward +Test "cos_upward (-0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.000004p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.000005bc7d86dp+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.000006p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.0c1522p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.0c152382d7366p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.0c1524p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.921fb4p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb6p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x1p+120)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1p+28)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a44p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb08cp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb09p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a48p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x4p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x5p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x6p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x7p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x8p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+124)": +double: 1 +idouble: 1 +Test "cos_upward (0x9p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xa.217bap+12)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0xap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xc.d4967p-4)": +double: 1 +idouble: 1 +Test "cos_upward (0xf.ffffcp+124)": +double: 1 +idouble: 1 +Test "cos_upward (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (1)": +float: 1 +ifloat: 1 +Test "cos_upward (2)": +float: 1 +ifloat: 1 +Test "cos_upward (3)": +float: 1 +ifloat: 1 +Test "cos_upward (4)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (5)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (6)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (8)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (9)": +ildouble: 1 +ldouble: 1 + +# cosh +Test "cosh (-0x2.c5e3acp+8)": +ildouble: 1 +Test "cosh (-0x2.c5e3bp+8)": +ildouble: 1 +Test "cosh (0x1.6p+4)": +ldouble: 1 + +# cosh_downward +Test "cosh_downward (-0x2.c5e3acd2922a6p+8)": +ildouble: 1 +Test "cosh_downward (-0x2.c5e3bp+8)": +ildouble: 1 +Test "cosh_downward (0x1.6p+4)": +ildouble: 1 +ldouble: 2 +Test "cosh_downward (22)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 2 +Test "cosh_downward (23)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_downward (24)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# cosh_tonearest +Test "cosh_tonearest (-0x2.c5e3acp+8)": +ildouble: 1 +Test "cosh_tonearest (-0x2.c5e3bp+8)": +ildouble: 1 +Test "cosh_tonearest (0x1.6p+4)": +ldouble: 1 +Test "cosh_tonearest (22)": +ldouble: 1 + +# cosh_towardzero +Test "cosh_towardzero (-0x2.c5e3acd2922a6p+8)": +ildouble: 1 +Test "cosh_towardzero (0x1.6p+4)": +ildouble: 1 +ldouble: 2 +Test "cosh_towardzero (22)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 2 +Test "cosh_towardzero (23)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (24)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# cosh_upward +Test "cosh_upward (-0x2.c5e3acd2922a6p+8)": +double: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c5e3acp+8)": +ildouble: 1 +Test "cosh_upward (-0x2.c5e3bp+8)": +ildouble: 1 +Test "cosh_upward (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x1.7p+4)": +ildouble: 2 +ldouble: 1 +Test "cosh_upward (0x1.8p+4)": +ildouble: 1 +Test "cosh_upward (0x2.c5e3acd2922a6p+8)": +double: 1 +ildouble: 2 +ldouble: 1 +Test "cosh_upward (0x2.c5e3acp+8)": +ildouble: 1 +Test "cosh_upward (0x2.c5e3bp+8)": +ildouble: 1 +Test "cosh_upward (22)": +ildouble: 2 +ldouble: 1 +Test "cosh_upward (23)": +ildouble: 2 +ldouble: 1 +Test "cosh_upward (24)": +double: 1 +idouble: 1 +ildouble: 1 + +# cpow +Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 0.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": +double: 2 +float: 4 +idouble: 2 +ifloat: 4 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": +double: 1 +float: 5 +idouble: 1 +ifloat: 5 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": +float: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 + +# csin +Test "Real part of: csin (-0.75 + 710.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csin (-0.75 + 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (-0.75 + 89.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csin (-0.75 + 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (-0.75 - 710.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csin (-0.75 - 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (-0.75 - 89.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csin (-0.75 - 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csin (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (0.75 + 710.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csin (0.75 + 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (0.75 + 89.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csin (0.75 + 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (0.75 - 710.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csin (0.75 - 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (0.75 - 89.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csin (0.75 - 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (0x1p-1074 + 1440 i)": +double: 1 +idouble: 1 + +# csinh +Test "Imaginary part of: csinh (-2 - 3 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: csinh (-710.5 + 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +double: 1 +idouble: 1 +Test "Real part of: csinh (-710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Real part of: csinh (-89.5 + 0.75 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (-89.5 + 0.75 i)": +float: 1 +ifloat: 1 +Test "Real part of: csinh (-89.5 - 0.75 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (-89.5 - 0.75 i)": +float: 1 +ifloat: 1 +Test "Real part of: csinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Real part of: csinh (710.5 + 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (710.5 + 0.75 i)": +double: 1 +idouble: 1 +Test "Real part of: csinh (710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Real part of: csinh (89.5 + 0.75 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (89.5 + 0.75 i)": +float: 1 +ifloat: 1 +Test "Real part of: csinh (89.5 - 0.75 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (89.5 - 0.75 i)": +float: 1 +ifloat: 1 + +# csqrt +Test "Real part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x1.0000000000001p-1022 - 0x1.0000000000001p-1022 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x1.000002p-126 - 0x1.000002p-126 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000008p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x4.0000000000000008p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000008p-16384 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000004p-1024 - 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.000008p-128 - 0x4.000008p-128 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4p-1076 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4p-16384 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4p-16384 - 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1.0000000000001p-1022 + 0x1.0000000000001p-1022 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1.000002p-126 + 0x1.000002p-126 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1.fp+16383 + 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-1073 + 0x1p-1073 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-1074 + 0x1p-1074 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-147 + 0x1p-147 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-149 + 0x1p-149 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-16440 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-5000 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x2p-148 + 0x2p-148 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0x4.0000000000000008p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000008p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000008p-16384 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000004p-1024 + 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.000008p-128 + 0x4.000008p-128 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-16384 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-16384 + 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+1020 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+1020 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+124 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+16380 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+16380 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-1076 + 0x8p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-16448 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.8p+16380 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffff8p+1020 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffff8p+1020 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 + +# ctan +Test "Real part of: ctan (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (-0x2p+0 - 0x3p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (-2 - 3 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (-2 - 3 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p+0 + 0x2.dp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p+0 + 0x2.fp+4 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1p1023 + 1 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1p1023 + 1 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x3.243f6cp-1 + 0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctan (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (1 + 45 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (1 + 47 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 + +# ctan_downward +Test "Real part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +float: 2 +ifloat: 2 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": +float: 2 +ifloat: 2 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1p+0 + 0x1.63p+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1p+0 + 0x2.dp+4 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_downward (0x1p+0 + 0x2.fp+4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctan_downward (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# ctan_tonearest +Test "Real part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x2.dp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x2.fp+4 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 + +# ctan_towardzero +Test "Real part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 3 +float: 1 +idouble: 3 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x1.63p+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.dp+4 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.fp+4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctan_towardzero (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 + +# ctan_upward +Test "Real part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": +double: 3 +float: 1 +idouble: 3 +ifloat: 1 +Test "Imaginary part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_upward (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63ap+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1p+0 + 0x1.63p+8 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+8 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.6dp+8 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x8p+124 + 0x1p+0 i)": +double: 3 +idouble: 3 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x8p+16380 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_upward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_upward (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# ctanh +Test "Imaginary part of: ctanh (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdap-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdbp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (-0x2p+0 - 0x3p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (-2 - 3 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (-2 - 3 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0 + 0x3.243f6cp-1 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0 + M_PI_4l i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0 + pi/4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh (0x1p+0 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x2.dp+4 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x2.fp+4 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0x8p-16448 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctanh (1 + 0x1p1023 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (1 + 0x1p1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (45 + 1 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (47 + 1 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 + +# ctanh_downward +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168cp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdap-4 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1.63p+8 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": +float: 2 +ifloat: 2 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x2.dp+4 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_downward (0x2.fp+4 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": +double: 2 +idouble: 2 + +# ctanh_tonearest +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdap-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdbp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_tonearest (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x2.dp+4 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x2.fp+4 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 -Test "Real part of: csin (0.75 - 89.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: csin (0.75 - 89.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 -Test "Real part of: csin (0x1p-1074 + 1440 i)": +Test "Imaginary part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 -# csinh -Test "Imaginary part of: csinh (-2 - 3 i)": +# ctanh_towardzero +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d19p+0 i)": double: 1 -float: 1 idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb6p+0 i)": +float: 1 ifloat: 1 -Test "Real part of: csinh (-710.5 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168cp-4 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdap-4 i)": double: 1 idouble: 1 -Test "Real part of: csinh (-710.5 - 0.75 i)": +Test "Real part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +Test "Real part of: ctanh_towardzero (-0xc.35p+12 + 0xc.35p+12 i)": double: 1 -idouble: 1 -Test "Real part of: csinh (-89.5 + 0.75 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: csinh (-89.5 + 0.75 i)": -float: 1 -ifloat: 1 -Test "Real part of: csinh (-89.5 - 0.75 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: csinh (-89.5 - 0.75 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: csinh (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +Test "Imaginary part of: ctanh_towardzero (0x1.63p+8 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+1020 i)": double: 1 idouble: 1 -Test "Real part of: csinh (710.5 + 0.75 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: csinh (710.5 + 0.75 i)": +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": double: 1 idouble: 1 -Test "Real part of: csinh (710.5 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (710.5 - 0.75 i)": +Test "Real part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 -Test "Real part of: csinh (89.5 + 0.75 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: csinh (89.5 + 0.75 i)": -float: 1 -ifloat: 1 -Test "Real part of: csinh (89.5 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: csinh (89.5 - 0.75 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 - -# csqrt -Test "Real part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-0x1.0000000000001p-1022 - 0x1.0000000000001p-1022 i)": +Test "Imaginary part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x2.fp+4 + 0x1p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-0x1.000002p-126 - 0x1.000002p-126 i)": +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000001p-1022 + 0x1.0000000000001p-1022 i)": +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.000002p-126 + 0x1.000002p-126 i)": +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb6p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fp+16383 + 0x1.fp+16383 i)": +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-1073 + 0x1p-1073 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-1074 + 0x1p-1074 i)": +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-147 + 0x1p-147 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-149 + 0x1p-149 i)": +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# ctan -Test "Real part of: ctan (-2 - 3 i)": +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan (-2 - 3 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan (0.75 + 1.25 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0x1p1023 + 1 i)": -double: 1 -idouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan (0x1p1023 + 1 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0x3.243f6cp-1 + 0 i)": -float: 1 -ifloat: 1 -Test "Real part of: ctan (1 + 45 i)": +Test "Real part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (1 + 47 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": double: 1 +float: 1 idouble: 1 -ildouble: 2 -ldouble: 2 +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": +double: 2 +idouble: 2 -# ctan_downward -Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +# ctanh_upward +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdap-4 i)": double: 1 idouble: 1 -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -float: 2 -ifloat: 2 -ildouble: 4 -ldouble: 4 - -# ctan_tonearest -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdbp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "Real part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": +Test "Real part of: ctanh_upward (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# ctan_towardzero -Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "Real part of: ctanh_upward (-0xc.35p+12 - 0xc.35p+12 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "Real part of: ctanh_upward (0x1.63ap+12 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": +Test "Real part of: ctanh_upward (0x1.63p+12 + 0x1p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": +Test "Real part of: ctanh_upward (0x1.63p+8 + 0x1p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 4 -ldouble: 4 - -# ctan_upward -Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "Imaginary part of: ctanh_upward (0x1.63p+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x1.6dp+8 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+124 i)": +double: 3 +idouble: 3 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+16380 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 ildouble: 4 ldouble: 4 -Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": +Test "Imaginary part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": double: 1 float: 2 idouble: 1 ifloat: 2 ildouble: 1 ldouble: 1 - -# ctanh -Test "Real part of: ctanh (-2 - 3 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (-2 - 3 i)": +Test "Imaginary part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (0 + 0x3.243f6cp-1 i)": +Test "Real part of: ctanh_upward (0x2.fp+4 + 0x1p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: ctanh (0 + M_PI_4l i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x2.fp+4 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (0 + pi/4 i)": +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Real part of: ctanh (1 + 0x1p1023 i)": +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (1 + 0x1p1023 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (45 + 1 i)": +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (47 + 1 i)": +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 ildouble: 2 ldouble: 2 - -# ctanh_downward -Test "Real part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -double: 1 -idouble: 1 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb6p+0 i)": ildouble: 2 ldouble: 2 -Test "Real part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": -float: 2 -ifloat: 2 -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 3 ldouble: 3 -Test "Imaginary part of: ctanh_downward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": -ildouble: 1 -ldouble: 1 - -# ctanh_tonearest -Test "Real part of: ctanh_tonearest (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -Test "Real part of: ctanh_tonearest (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 - -# ctanh_towardzero -Test "Real part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 - -# ctanh_upward -Test "Real part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": double: 1 +float: 1 idouble: 1 -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Real part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": ildouble: 2 ldouble: 2 -Test "Real part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "Real part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb6p+0 i)": ildouble: 2 ldouble: 2 +Test "Real part of: ctanh_upward (0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_upward (0xcp-4 + 0x1.4p+0 i)": +float: 3 +ifloat: 3 # erf Test "erf (-0x8p-4)": @@ -10715,6 +13902,12 @@ ifloat: 1 ildouble: 1 ldouble: 1 +Function: Imaginary part of "clog": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + Function: Real part of "clog10": double: 1 float: 1 @@ -10842,6 +14035,8 @@ idouble: 1 ifloat: 1 Function: Real part of "csqrt": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 @@ -10859,57 +14054,75 @@ ldouble: 2 Function: Imaginary part of "ctan": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: Real part of "ctan_downward": double: 1 +float: 2 idouble: 1 -ildouble: 3 -ldouble: 3 +ifloat: 2 +ildouble: 5 +ldouble: 5 Function: Imaginary part of "ctan_downward": +double: 2 float: 2 +idouble: 2 ifloat: 2 ildouble: 4 ldouble: 4 Function: Real part of "ctan_tonearest": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 Function: Imaginary part of "ctan_tonearest": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: Real part of "ctan_towardzero": -double: 1 +double: 3 float: 1 -idouble: 1 +idouble: 3 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 5 +ldouble: 5 Function: Imaginary part of "ctan_towardzero": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 4 ldouble: 4 Function: Real part of "ctan_upward": -ildouble: 2 -ldouble: 2 - -Function: Imaginary part of "ctan_upward": -double: 1 +double: 3 float: 2 -idouble: 1 +idouble: 3 ifloat: 2 -ildouble: 4 -ldouble: 4 +ildouble: 3 +ldouble: 3 + +Function: Imaginary part of "ctan_upward": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 3 +ldouble: 3 Function: Real part of "ctanh": double: 1 @@ -10928,52 +14141,68 @@ ildouble: 2 ldouble: 2 Function: Real part of "ctanh_downward": +double: 2 float: 2 +idouble: 2 ifloat: 2 ildouble: 4 ldouble: 4 Function: Imaginary part of "ctanh_downward": -double: 1 -idouble: 1 -ildouble: 3 -ldouble: 3 +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 4 +ldouble: 4 Function: Real part of "ctanh_tonearest": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: Imaginary part of "ctanh_tonearest": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 Function: Real part of "ctanh_towardzero": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 4 ldouble: 4 Function: Imaginary part of "ctanh_towardzero": -double: 1 +double: 2 float: 1 -idouble: 1 +idouble: 2 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 3 +ldouble: 3 Function: Real part of "ctanh_upward": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 4 -ldouble: 4 +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 3 +ldouble: 3 Function: Imaginary part of "ctanh_upward": -ildouble: 2 -ldouble: 2 +double: 3 +float: 3 +idouble: 3 +ifloat: 3 +ildouble: 3 +ldouble: 3 Function: "erf": double: 1 diff --git a/sysdeps/x86_64/fpu/libm-test-ulps b/sysdeps/x86_64/fpu/libm-test-ulps index 7e612b0775..cad38a3277 100644 --- a/sysdeps/x86_64/fpu/libm-test-ulps +++ b/sysdeps/x86_64/fpu/libm-test-ulps @@ -5047,6 +5047,21 @@ idouble: 1 Test "Imaginary part of: ccos (-0.75 - 89.5 i)": float: 1 ifloat: 1 +Test "Imaginary part of: ccos (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 Test "Imaginary part of: ccos (-2 - 3 i)": float: 1 ifloat: 1 @@ -5077,8 +5092,55 @@ ifloat: 1 Test "Imaginary part of: ccos (0x1p-1074 + 1440 i)": double: 1 idouble: 1 +Test "Imaginary part of: ccos (0x4p-1076 + 0x5.ap+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 # ccosh +Test "Imaginary part of: ccosh (-0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (-0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 Test "Real part of: ccosh (-2 - 3 i)": float: 1 ifloat: 1 @@ -5107,6 +5169,32 @@ ifloat: 1 Test "Imaginary part of: ccosh (0.75 + 1.25 i)": float: 1 ifloat: 1 +Test "Imaginary part of: ccosh (0x1p-120 + 0x4p-16328 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 Test "Imaginary part of: ccosh (1440 + 0x1p-1074 i)": double: 1 idouble: 1 @@ -5124,6 +5212,27 @@ float: 1 ifloat: 1 # cexp +Test "Imaginary part of: cexp (+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (-0x2.71p+12 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.71p+12 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (-0x2.71p+12 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cexp (-0x5.fp+4 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x5.fp+4 + 0xcp-4 i)": +double: 1 +idouble: 1 Test "Real part of: cexp (-10000 + 0x1p16383 i)": ildouble: 1 ldouble: 1 @@ -5142,6 +5251,47 @@ ifloat: 1 Test "Imaginary part of: cexp (0.75 + 1.25 i)": ildouble: 1 ldouble: 1 +Test "Real part of: cexp (0x1.f4p+8 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cexp (0x2.c5c9p+12 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cexp (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cexp (11356.5625 + 0.75 i)": ildouble: 1 ldouble: 1 @@ -5179,12 +5329,69 @@ ildouble: 1 ldouble: 1 # clog +Test "Real part of: clog (+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (+0 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d1598p-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": double: 1 idouble: 1 Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": double: 1 idouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d1598p-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d15ap-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x1.234566p-40 - 0x1p+0 i)": +float: 1 +ifloat: 1 Test "Imaginary part of: clog (-0x1.234566p-40 - 1.0 i)": float: 1 ifloat: 1 @@ -5204,6 +5411,9 @@ ldouble: 1 Test "Real part of: clog (-0x1.fp+16383 - 0x1p-16445 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (-0x1p+0 + 0x4.8d15ap-32 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (-0x1p-149 + 0x1.fp+127 i)": float: 1 ifloat: 1 @@ -5226,1537 +5436,4833 @@ ldouble: 1 Test "Real part of: clog (-0x1p-16445 - 0x1.fp+16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x0.ffffffffffffffffp0 + 0x0.ffffffffffffffffp-15000 i)": +Test "Real part of: clog (-0x4p-1076 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x0.ffffffp0 + 0x0.ffffffp-100 i)": +Test "Real part of: clog (-0x4p-1076 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x8p-152 + 0xf.8p+124 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1.000566p0 + 0x1.234p-10 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (-0x8p-152 + 0xf.8p+124 i)": float: 1 ifloat: 1 +Test "Real part of: clog (-0x8p-152 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.234566p-30 + 1.0 i)": +Test "Imaginary part of: clog (-0x8p-152 + 0xf.fffffp+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fffffep+127 + 0x1.fffffep+127 i)": +Test "Imaginary part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 - 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+127 + 0x1p-149 i)": +Test "Imaginary part of: clog (-0x8p-152 - 0xf.fffffp+124 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1.fp+127 - 0x1p-149 i)": +Test "Real part of: clog (-0x8p-16448 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x8p-16448 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+124 + 0x8p-152 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1.fp+16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p+16383 i)": +Test "Real part of: clog (-0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p-16445 i)": +Test "Real part of: clog (-0xf.8p+16380 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 - 0x1p-16445 i)": +Test "Real part of: clog (-0xf.8p+16380 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +Test "Real part of: clog (-0xf.8p+16380 + 0x8p-152 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-1074 + 0x1p-1074 i)": -double: 1 -idouble: 1 +Test "Real part of: clog (-0xf.8p+16380 + 0x8p-16448 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-147 + 0x1p-147 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-149 + 0x1p-149 i)": +Test "Real part of: clog (-0xf.8p+16380 - 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-149 - 0x1.fp+127 i)": -float: 1 -ifloat: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x8p-152 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-16445 + 0x1.fp+16383 i)": +Test "Real part of: clog (-0xf.8p+16380 - 0x8p-16448 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-16445 - 0x1.fp+16383 i)": +Test "Real part of: clog (0x0.ffffffffffffffffp0 + 0x0.ffffffffffffffffp-15000 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x2818p-15 + 0x798fp-15 i)": +Test "Real part of: clog (0x0.ffffffp0 + 0x0.ffffffp-100 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +Test "Real part of: clog (0x1.0000000000000012p+0 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (1.0 + 0x1.234566p-10 i)": -float: 1 -ifloat: 1 - -# clog10 -Test "Imaginary part of: clog10 (-0 + inf i)": +Test "Real part of: clog (0x1.0000000000000012p+0 + 0x1.234566p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000000012p+0 + 0x1.23456789p-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000000012p+0 + 0x1.23456789p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000000012p+0 + 0x1.234568p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000000012p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.0000000000000014p+0 + 0x1.234566p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.0000000000000014p+0 + 0x1.23456789p-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.0000000000000014p+0 + 0x1.23456789p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.0000000000000014p+0 + 0x1.234568p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + +0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-0 - inf i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234566p-60 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 2 -idouble: 2 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-1000 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 2 -idouble: 2 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-60 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234568p-60 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x8p-152 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": -double: 1 +Test "Real part of: clog (0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234566p-60 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234568p-60 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000566p+0 + 0x4.8dp-12 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": -double: 1 +Test "Real part of: clog (0x1.000566p0 + 0x1.234p-10 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: clog10 (-0x1.fp+16383 + 0x1p-16445 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (-0x1.fp+16383 - 0x1p-16445 i)": +Test "Real part of: clog (0x1.234566p-30 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": +Test "Real part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c64p-4 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c63p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x1.48e45ep-4 + 0xf.f2c63p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c64p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bdfbf6p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (-0x1p-16445 + 0x1.fp+16383 i)": +Test "Real part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bep-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (-0x1p-16445 - 0x1.fp+16383 i)": +Test "Real part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bdfbf7p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-2 - 3 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-3 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-3 - inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 1 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + inf i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-inf - 0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf - 1 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0 - inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": +Test "Real part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdf8p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdfbf6p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x0.ffffffffffffffffp0 + 0x0.ffffffffffffffffp-15000 i)": +Test "Real part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdfbf7p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": +Test "Real part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdf8p-4 i)": double: 1 -float: 2 idouble: 1 -ifloat: 2 +Test "Real part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdfbf6p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdf8p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdfbf6p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.234566p-30 + 1.0 i)": +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdfbf7p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x1.8907bep-4 + 0xf.ed1990460bdfbf6p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e08p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e0948p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e1p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1.fffffep+127 + 1.0 i)": +Test "Imaginary part of: clog (0x1.c67eccp-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4ep-4 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +Test "Imaginary part of: clog (0x1.c67eccp-4 + 0xf.e6b4ep-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 + 0x1.fp+16383 i)": +Test "Real part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e08p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 + 0x1p+16383 i)": +Test "Real part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e0948p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 + 0x1p-16445 i)": +Test "Real part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e0949p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 - 0x1p-16445 i)": +Test "Real part of: clog (0x1.c67ecd92a85944bap-4 + 0xf.e6b4d1d7a6e0948p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x11682p-23 + 0x7ffed1p-23 i)": +Test "Real part of: clog (0x1.c67ecd92a85944bap-4 + 0xf.e6b4ep-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4dp-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4ep-4 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x1p-1074 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1p-149 + 0x1.fp+127 i)": +Test "Real part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e08p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1p-149 + 0x1p-149 i)": +Test "Real part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e1p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": +Test "Real part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +Test "Real part of: clog (0x1.fffffep+127 + 0x1.fffffep+127 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": -double: 1 +Test "Real part of: clog (0x1.fp+127 + 0x1p-149 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: clog10 (0x1p-16440 + 0x1p-16441 i)": +Test "Real part of: clog (0x1.fp+127 - 0x1p-149 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.fp+16383 + 0x1.fp+16383 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-16440 + 0x1p-16441 i)": +Test "Real part of: clog (0x1.fp+16383 + 0x1p+16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1p-16445 + 0x1.fp+16383 i)": +Test "Real part of: clog (0x1.fp+16383 + 0x1p-16445 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1p-16445 - 0x1.fp+16383 i)": +Test "Real part of: clog (0x1.fp+16383 - 0x1p-16445 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": -double: 1 +Test "Imaginary part of: clog (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1p+0 + 0x4.8d1598p-12 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +Test "Real part of: clog (0x1p-1074 + 0x1p-1074 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1p-8190 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": -double: 1 +Test "Real part of: clog (0x1p-147 + 0x1p-147 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +Test "Real part of: clog (0x1p-149 + 0x1.fp+127 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +Test "Real part of: clog (0x1p-149 + 0x1p-149 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +Test "Real part of: clog (0x1p-149 - 0x1.fp+127 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x1p-16440 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +Test "Real part of: clog (0x1p-16445 + 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1p-16445 - 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3612p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a38p-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x659b70ab7971bp-53 + 0x1f5d111e08abecp-53 i)": +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x6b10b4f3520217b6p-64 + 0xe8893cbb449253a1p-64 i)": +Test "Real part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x81b7efa81fc35ad1p-65 + 0x1ef4b835f1c79d812p-65 i)": +Test "Real part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a38p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x8ecbf810c4ae6p-52 + 0xd479468b09a37p-52 i)": +Test "Real part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42bp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a38p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3p-4 i)": double: 1 idouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (3 + inf i)": -double: 1 +Test "Real part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2818p-15 + 0x798fp-15 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (3 - inf i)": -double: 1 +Test "Real part of: clog (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2p-148 + 0x2p-148 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (inf + inf i)": -double: 1 +Test "Real part of: clog (0x3.2cdb84p-4 + 0xf.ae888f0455f6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873p-4 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (inf - inf i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58a83e57c772p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c59p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 - -# cos -Test "cos (0x1.921fb4p+0)": ildouble: 1 ldouble: 1 -Test "cos (M_PI_6l * 2.0)": +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57c772p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57cp-4 i)": double: 1 idouble: 1 -Test "cos (M_PI_6l * 4.0)": -double: 2 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": float: 1 -idouble: 2 ifloat: 1 - -# cos_downward -Test "cos_downward (0x1.000000cf4a2a2p+0)": +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c59p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e171p-4 + 0xf.a0c59p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d118p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d11bfdp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.0000010b239a9p+0)": +Test "Real part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d6p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d619a8d12p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.00000162a932bp+0)": +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d6p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d7p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d08p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06dp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.000002d452a1p+0)": +Test "Real part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06d005ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06d08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d08p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06dp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.000002p+0)": +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b4p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1af8e3ce8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1af8e3cec09p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1af8e3cfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1af8e3ce8p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x1.0c152382d7365p+0)": +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x1.921fb4p+0)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d18468p+0)": +Test "Real part of: clog (0x4.0dbf7d40fe1ad688p-4 + 0xf.7a5c1af8e3ce8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d1846ap+0)": +Test "Real part of: clog (0x4.0dbf7d40fe1ad688p-4 + 0xf.7a5c1af8e3cfp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d18p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1bp-4 + 0xf.7a5c2p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d19p+0)": +Test "Imaginary part of: clog (0x4.0dbf8p-4 + 0xf.7a5c1af8e3cfp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb6p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x4.0dbf8p-4 + 0xf.7a5c2p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1p+0)": -double: 1 -idouble: 1 -Test "cos_downward (0x1p+120)": +Test "Imaginary part of: clog (0x4.7017a2e368078p-4 + 0xf.5f4a550c9d75e3bp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1p+28)": +Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a550c9d758p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a5p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d758p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d75e3bp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a44p+0)": +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d75e3cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d75e3cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d76p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a6p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.d9e8c415d5644p-4 + 0xf.3f302p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a4705ae6cap+0)": +Test "Real part of: clog (0x4.d9e8c8p-4 + 0xf.3f303p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.d9e8cp-4 + 0xf.3f30281507d8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4p-1076 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4p-1076 + 0x4p-1076 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a4705ae6cb08cp+0)": +Test "Real part of: clog (0x4p-1076 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a4705ae6cb09p+0)": +Test "Real part of: clog (0x4p-1076 - 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a4705ae6ccp+0)": +Test "Imaginary part of: clog (0x5.03p-4 + 0xf.31ep-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x5.318c58p-4 + 0xf.22363p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a48p+0)": +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22364p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.1e19e0c9bab24p+72)": -double: 1 -idouble: 1 -Test "cos_downward (0x2.1e19e4p+72)": +Test "Real part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22364p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb1p-4 + 0xf.22364p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x2.1e19ep+72)": +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452b965da9fp-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x2p+0)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x3p+0)": +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x5.b06b7p-4 + 0xe.f452b965da9fp-4 i)": double: 1 idouble: 1 +Test "Imaginary part of: clog (0x5.b06b7p-4 + 0xe.f452bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x5.b06b7p-4 + 0xe.f452cp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x4p+0)": +Test "Real part of: clog (0x5.ba8ce4b6p-4 + 0xe.f0742508p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x4p+48)": -double: 1 -idouble: 1 -Test "cos_downward (0x8p+0)": -ildouble: 2 -ldouble: 2 -Test "cos_downward (0x8p+1020)": +Test "Real part of: clog (0x5.ba8cep-4 + 0xe.f0742p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x9p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x6.02fd5037c4792efp-4 + 0xe.d3e21p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0xa.217bap+12)": +Test "Real part of: clog (0x6.02fd5037c4794p-4 + 0xe.d3e21p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0xap+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e2086dcca80b8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0xc.d4966d92d1708p-4)": +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e21p-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_downward (0xc.d4966d92d171p-4)": +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e2p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0xc.d4966p-4)": +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e2086dcca80b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e2086dcca8p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0xcp-4)": +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e21p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x6.02fd5p-4 + 0xe.d3e2086dcca80b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.02fd5p-4 + 0xe.d3e21p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2018b428258p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2018b4288p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c2018b4288p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125efp-4 + 0xe.c97c3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd128p-4 + 0xe.c97c2p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0xf.ffffffffffff8p+1020)": +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b4288p-4 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "cos_downward (0xf.fffffp+124)": +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428p-4 i)": double: 1 idouble: 1 -Test "cos_downward (1)": ildouble: 1 ldouble: 1 -Test "cos_downward (10)": +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c3p-4 i)": float: 1 ifloat: 1 +Test "Real part of: clog (0x6.1c643p-4 + 0xe.c97c2018b428258p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (2)": +Test "Real part of: clog (0x6.1c643p-4 + 0xe.c97c2018b4288p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (3)": +Test "Real part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a599a86ba8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (4)": -float: 1 -ifloat: 1 -Test "cos_downward (5)": -float: 1 -ifloat: 1 -Test "cos_downward (7)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a599a86baf8fp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (8)": +Test "Real part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a6p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (9)": -float: 1 -ifloat: 1 - -# cos_tonearest -Test "cos_tonearest (0x1.921fb4p+0)": +Test "Real part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a599a86ba8p-4 i)": ildouble: 1 ldouble: 1 - -# cos_towardzero -Test "cos_towardzero (0x1.000000cf4a2a2p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a599a86baf8fp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x1.0000010b239a9p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a5p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x1.00000162a932bp+0)": +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a5p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a6p-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x1.000002d452a1p+0)": +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a599a86ba8p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a599a86bbp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x1.000002p+0)": +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a5p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x1.0c152382d7365p+0)": +Test "Real part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86ba8p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x1.921fb4p+0)": +Test "Real part of: clog (0x6.2aff8p-4 + 0xe.c36a599a86baf8fp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x1.921fb54442d18p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1.921fb54442d19p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1p+120)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x2.182a4705ae6ccp+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x2.182a48p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x2.1e19e0c9bab24p+72)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x2.1e19e4p+72)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x2.1e19ep+72)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x2p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x4p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x4p+48)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x8p+0)": +Test "Real part of: clog (0x6.2aff8p-4 + 0xe.c36a599a86baf9p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b48p-4 + 0xe.8893cbb449253a1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b48p-4 + 0xe.8893cbb44925p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x6.b10b48p-4 + 0xe.8893dp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x8p+1020)": -double: 1 -idouble: 1 -Test "cos_towardzero (0xa.217bap+12)": +Test "Real part of: clog (0x6.b10b4f3520214p-4 + 0xe.8893cbb449253a1p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0xc.d4966d92d1708p-4)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x6.b10b4f3520214p-4 + 0xe.8893cp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0xc.d4966d92d171p-4)": -double: 1 -idouble: 1 -Test "cos_towardzero (0xc.d4966p-4)": +Test "Real part of: clog (0x6.b10b4f3520217b6p-4 + 0xe.8893cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cbb44925p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893dp-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0xcp-4)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb449258p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0xf.fffffp+124)": +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb44925p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (1)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (10)": +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e5108p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (2)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e510a94p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (3)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655fp-4 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_towardzero (5)": -float: 1 -ifloat: 1 -Test "cos_towardzero (7)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655fp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (8)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e510a94p-4 i)": ildouble: 1 ldouble: 1 - -# cos_upward -Test "cos_upward (-0x2p+64)": -double: 1 -idouble: 1 -Test "cos_upward (0x1.000004p+0)": -double: 1 -idouble: 1 -Test "cos_upward (0x1.000005bc7d86dp+0)": +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e5108p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e511p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.000006p+0)": -double: 1 -idouble: 1 -Test "cos_upward (0x1.0c1522p+0)": -double: 1 -idouble: 1 -Test "cos_upward (0x1.0c152382d7366p+0)": -double: 1 -idouble: 1 -Test "cos_upward (0x1.0c1524p+0)": -double: 1 -idouble: 1 -Test "cos_upward (0x1.921fb4p+0)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "cos_upward (0x1.921fb54442d18468p+0)": +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x7.eca92p-4 + 0xd.e655e694e510a95p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.921fb54442d1846ap+0)": +Test "Real part of: clog (0x7.eca92p-4 + 0xd.e655e694e511p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.921fb54442d18p+0)": +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655fp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.921fb54442d19p+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d65939160b311p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.921fb6p+0)": -ildouble: 2 -ldouble: 2 -Test "cos_upward (0x1p+120)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d65939160b8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1p+28)": +Test "Real part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d65939160bp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a44p+0)": +Test "Real part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d66p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a4705ae6cap+0)": +Test "Real part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160b31p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a4705ae6cb08cp+0)": +Test "Real part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160bp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a4705ae6cb09p+0)": +Test "Real part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d66p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a4705ae6ccp+0)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65939160b311p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a48p+0)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65939160b311p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2p+0)": +Test "Real part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d66p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65939160b311p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2p+64)": +Test "Real part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x3p+0)": +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b31p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x4p+0)": +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b8p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160bp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x5p+0)": -double: 1 -idouble: 1 -Test "cos_upward (0x6p+0)": -double: 1 -idouble: 1 -Test "cos_upward (0x7p+0)": -double: 1 -idouble: 1 -Test "cos_upward (0x8p+0)": +Test "Real part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160bp-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (0x8p+1020)": -double: 1 -idouble: 1 +Test "Real part of: clog (0x7.f4b083cb0bp-4 + 0xd.e1bf1p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x8p+124)": +Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bf04f3688p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x9p+0)": +Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bfp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0xa.217bap+12)": +Test "Real part of: clog (0x7.f4b08p-4 + 0xd.e1bf04f3688p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.88fafp-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.47946p-4 i)": double: 1 idouble: 1 -ildouble: 2 -ldouble: 2 -Test "cos_upward (0xap+0)": ildouble: 1 ldouble: 1 -Test "cos_upward (0xc.d4967p-4)": +Test "Real part of: clog (0x8.ecbf8p-4 + 0xd.479468b09a37p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0xf.ffffcp+124)": +Test "Imaginary part of: clog (0x8.ecbf8p-4 + 0xd.47946p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.ecbf9p-4 + 0xd.479468b09a37p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0xf.ffffffffffff8p+1020)": +Test "Imaginary part of: clog (0x8.ecbf9p-4 + 0xd.47947p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (1)": -float: 1 -ifloat: 1 -Test "cos_upward (2)": -float: 1 -ifloat: 1 -Test "cos_upward (3)": +Test "Real part of: clog (0x8p-152 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 + 0xf.8p+124 i)": float: 1 ifloat: 1 -Test "cos_upward (4)": ildouble: 1 ldouble: 1 -Test "cos_upward (5)": +Test "Real part of: clog (0x8p-152 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (6)": +Test "Real part of: clog (0x8p-152 - 0xf.8p+124 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (8)": +Test "Real part of: clog (0x8p-152 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-16448 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-16448 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b4085cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b41p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fc56b968a66p-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fc56b969p-4 + 0xc.b9317c470b41p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317c470b408p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317c470b41p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": float: 1 ifloat: 1 +Test "Real part of: clog (0x9.b387p-4 + 0xc.b9317c470b4085cp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (9)": +Test "Real part of: clog (0x9.b387p-4 + 0xc.b9317c470b41p-4 i)": ildouble: 1 ldouble: 1 - -# cosh -Test "cosh (-0x2.c5e3acp+8)": -double: 1 -idouble: 1 -Test "cosh (0x1.6p+4)": +Test "Real part of: clog (0x9.b387p-4 + 0xc.b9317p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh (0x2.c5e3acp+8)": +Test "Real part of: clog (0x9.c1b6ac509a246bap-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246bap-4 + 0xc.ae53ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7dp-4 i)": double: 1 idouble: 1 - -# cosh_downward -Test "cosh_downward (-0x2.c5e3bp+8)": +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53ep-4 i)": double: 1 idouble: 1 -Test "cosh_downward (0x1.6p+4)": +Test "Imaginary part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53dp-4 i)": double: 1 idouble: 1 -ildouble: 2 -ldouble: 2 -Test "cosh_downward (0x1.7p+4)": +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53ep-4 i)": double: 1 idouble: 1 -Test "cosh_downward (0x2.c5e3bp+8)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7dp-4 i)": double: 1 idouble: 1 -Test "cosh_downward (22)": +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53dp-4 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "cosh_downward (23)": +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53ep-4 i)": float: 1 ifloat: 1 +Test "Imaginary part of: clog (0x9.c1b6bp-4 + 0xc.ae53de1d5a7c8b1p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_downward (24)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x9.c1b6bp-4 + 0xc.ae53de1d5a7c8p-4 i)": ildouble: 1 ldouble: 1 - -# cosh_tonearest -Test "cosh_tonearest (-0x2.c5e3acp+8)": -double: 1 -idouble: 1 -Test "cosh_tonearest (0x1.6p+4)": +Test "Imaginary part of: clog (0x9.c1b6bp-4 + 0xc.ae53de1d5a7c8p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_tonearest (0x2.c5e3acp+8)": -double: 1 -idouble: 1 -Test "cosh_tonearest (22)": +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c19ap-4 i)": ildouble: 1 ldouble: 1 - -# cosh_towardzero -Test "cosh_towardzero (-0x2.c5e3bp+8)": +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51p-4 i)": double: 1 idouble: 1 -Test "cosh_towardzero (0x1.6p+4)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "cosh_towardzero (0x1.7p+4)": -double: 1 -idouble: 1 -Test "cosh_towardzero (0x2.c5e3bp+8)": -double: 1 -idouble: 1 -Test "cosh_towardzero (22)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +Test "Real part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df58ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57p-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df58ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.afc57p-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc58p-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e867ap-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.b96da19075eap-8 + 0xf.fc679p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc67818f89d2p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc678p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc679p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51cbp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.e7de8p-4 + 0xb.b51cbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.e7de9p-4 + 0xb.b51cb9f04d4dp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.e7de9p-4 + 0xb.b51cbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f25p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f24p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f25p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f2405504a6058p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f2405504a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f25p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a68p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f25p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xb.263a77543bp-4 + 0xb.79c9ap-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.8p+124 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.ffffffffffff8p+1020 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffffffffffffp-4 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffffffffffffp-4 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xf.fffffffffffffffp-4 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffffffffffffp-4 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xf.fffffffffffffffp-4 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffffffffffffp-4 + 0xf.fffffffffffffffp-15004 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffp-104 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (1.0 + 0x1.234566p-10 i)": +float: 1 +ifloat: 1 + +# clog10 +Test "Imaginary part of: clog10 (-0 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (-0x1.fp+16383 + 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (-0x1.fp+16383 - 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1p-16445 + 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (-0x1p-16445 - 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-2 - 3 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-3 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-3 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + 1 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + inf i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-inf - 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf - 1 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x0.ffffffffffffffffp0 + 0x0.ffffffffffffffffp-15000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.234566p-30 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1.fffffep+127 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 + 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 + 0x1p+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 + 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 - 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x11682p-23 + 0x7ffed1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1p-149 + 0x1.fp+127 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1p-149 + 0x1p-149 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1p-16440 + 0x1p-16441 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-16440 + 0x1p-16441 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1p-16445 + 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1p-16445 - 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1p-8190 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x659b70ab7971bp-53 + 0x1f5d111e08abecp-53 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x6b10b4f3520217b6p-64 + 0xe8893cbb449253a1p-64 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x81b7efa81fc35ad1p-65 + 0x1ef4b835f1c79d812p-65 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x8ecbf810c4ae6p-52 + 0xd479468b09a37p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (3 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (3 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (inf + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (inf - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# cos +Test "cos (0x1.921fb4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos (M_PI_6l * 2.0)": +double: 1 +idouble: 1 +Test "cos (M_PI_6l * 4.0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 + +# cos_downward +Test "cos_downward (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.000002p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.921fb4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d19p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb6p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1p+120)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1p+28)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a44p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cap+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb09p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6ccp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a48p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x3p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_downward (0x8p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x9p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xa.217bap+12)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xap+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_downward (1)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (10)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (2)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (3)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (4)": +float: 1 +ifloat: 1 +Test "cos_downward (5)": +float: 1 +ifloat: 1 +Test "cos_downward (7)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (8)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (9)": +float: 1 +ifloat: 1 + +# cos_tonearest +Test "cos_tonearest (0x1.921fb4p+0)": +ildouble: 1 +ldouble: 1 + +# cos_towardzero +Test "cos_towardzero (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.000002p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1p+120)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.182a48p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x8p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p+1020)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xa.217bap+12)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_towardzero (1)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (10)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (2)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (3)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (5)": +float: 1 +ifloat: 1 +Test "cos_towardzero (7)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (8)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# cos_upward +Test "cos_upward (-0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.000004p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.000005bc7d86dp+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.000006p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.0c1522p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.0c152382d7366p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.0c1524p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.921fb4p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb6p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x1p+120)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1p+28)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a44p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb08cp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb09p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a48p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x4p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x5p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x6p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x7p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x8p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+124)": +double: 1 +idouble: 1 +Test "cos_upward (0x9p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xa.217bap+12)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0xap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xc.d4967p-4)": +double: 1 +idouble: 1 +Test "cos_upward (0xf.ffffcp+124)": +double: 1 +idouble: 1 +Test "cos_upward (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (1)": +float: 1 +ifloat: 1 +Test "cos_upward (2)": +float: 1 +ifloat: 1 +Test "cos_upward (3)": +float: 1 +ifloat: 1 +Test "cos_upward (4)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (5)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (6)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (8)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (9)": +ildouble: 1 +ldouble: 1 + +# cosh +Test "cosh (-0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh (0x2.c5e3acp+8)": +double: 1 +idouble: 1 + +# cosh_downward +Test "cosh_downward (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x1.6p+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_downward (0x1.7p+4)": +double: 1 +idouble: 1 +Test "cosh_downward (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (22)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_downward (23)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_downward (24)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# cosh_tonearest +Test "cosh_tonearest (-0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (22)": +ildouble: 1 +ldouble: 1 + +# cosh_towardzero +Test "cosh_towardzero (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x1.6p+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (0x1.7p+4)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (22)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 Test "cosh_towardzero (23)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "cosh_towardzero (24)": -float: 1 -ifloat: 1 +Test "cosh_towardzero (24)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# cosh_upward +Test "cosh_upward (-0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x1.7p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x1.8p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (22)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (23)": +ildouble: 1 +ldouble: 1 + +# cpow +Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 3 +ldouble: 3 +Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": +double: 1 +float: 5 +idouble: 1 +ifloat: 5 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": +float: 2 +ifloat: 2 +ildouble: 4 +ldouble: 4 + +# csin +Test "Real part of: csin (-0.75 + 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (-0.75 + 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (-0.75 - 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (-0.75 - 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 + 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (0.75 + 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (0.75 - 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (0.75 - 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (0x1p-1074 + 1440 i)": +double: 1 +idouble: 1 + +# csinh +Test "Imaginary part of: csinh (-2 - 3 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-89.5 + 0.75 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (-89.5 - 0.75 i)": +float: 1 +ifloat: 1 +Test "Real part of: csinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (710.5 + 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (89.5 + 0.75 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (89.5 - 0.75 i)": +float: 1 +ifloat: 1 + +# csqrt +Test "Real part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x1.0000000000001p-1022 - 0x1.0000000000001p-1022 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x1.000002p-126 - 0x1.000002p-126 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x2p+0 + 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (-0x4.0000000000000008p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x4.0000000000000008p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000008p-16384 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000004p-1024 - 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.000008p-128 - 0x4.000008p-128 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4p-1076 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4p-16384 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4p-16384 - 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-2 + 3 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (-2 - 3 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1.0000000000001p-1022 + 0x1.0000000000001p-1022 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1.000002p-126 + 0x1.000002p-126 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1.fffffep+127 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1.fp+16383 + 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-1073 + 0x1p-1073 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-1074 + 0x1p-1074 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-147 + 0x1p-147 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-149 + 0x1p-149 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-16440 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-5000 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x2p-148 + 0x2p-148 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0x4.0000000000000008p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000008p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000008p-16384 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000004p-1024 + 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.000008p-128 + 0x4.000008p-128 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x4p-16384 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-16384 + 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+1020 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+1020 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+124 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+16380 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+16380 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-1076 + 0x8p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p-16448 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.8p+16380 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 + +# ctan +Test "Real part of: ctan (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (-2 - 3 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (-2 - 3 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (0.75 + 1.25 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p+0 + 0x2.dp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p+0 + 0x2.fp+4 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1p1023 + 1 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1p1023 + 1 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p127 + 1 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (0x1p127 + 1 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "Real part of: ctan (0x3.243f6cp-1 + 0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctan (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x8p+124 + 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (0x8p+124 + 0x1p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "Imaginary part of: ctan (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (1 + 45 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (1 + 47 i)": +ildouble: 2 +ldouble: 2 + +# ctan_downward +Test "Real part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +double: 3 +float: 2 +idouble: 3 +ifloat: 2 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1p+0 + 0x1.63p+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1p+0 + 0x2.dp+4 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_downward (0x1p+0 + 0x2.fp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x8p+1020 + 0x1p+0 i)": +double: 6 +idouble: 6 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctan_downward (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 3 +idouble: 3 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0xf.fffffp+124 + 0x1p+0 i)": +double: 5 +float: 5 +idouble: 5 +ifloat: 5 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 + +# ctan_tonearest +Test "Real part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x2.dp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x2.fp+4 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x8p+124 + 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_tonearest (0x8p+124 + 0x1p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "Imaginary part of: ctan_tonearest (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# ctan_towardzero +Test "Real part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x1.63p+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.dp+4 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.fp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x8p+1020 + 0x1p+0 i)": +double: 5 +idouble: 5 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctan_towardzero (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +Test "Imaginary part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 + +# ctan_upward +Test "Real part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": +double: 2 +float: 4 +idouble: 2 +ifloat: 4 +Test "Imaginary part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctan_upward (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + +0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63ap+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1p+0 + 0x1.63p+8 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+8 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.6dp+8 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x8p+124 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x8p+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_upward (0x8p+16380 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_upward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0xf.fffffp+124 + 0x1p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_upward (0xf.fffffp+124 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 + +# ctanh +Test "Imaginary part of: ctanh (+0 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168cp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdap-4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdbp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (-2 - 3 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (-2 - 3 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0 + 0x3.243f6cp-1 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0 + M_PI_4l i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0 + pi/4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0.75 + 1.25 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0.75 + 1.25 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "Real part of: ctanh (0x1p+0 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0x8p+124 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x2.dp+4 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x2.fp+4 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0x8p-16448 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +float: 2 +ifloat: 2 +Test "Real part of: ctanh (1 + 0x1p1023 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (1 + 0x1p1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (1 + 0x1p127 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "Imaginary part of: ctanh (1 + 0x1p127 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (45 + 1 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (47 + 1 i)": +ildouble: 2 +ldouble: 2 + +# ctanh_downward +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": +double: 4 +float: 1 +idouble: 4 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1.63p+8 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1.6dp+8 + 0x1p+0 i)": ildouble: 1 ldouble: 1 - -# cosh_upward -Test "cosh_upward (-0x2.c5e3acd2922a6p+8)": +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+1020 i)": +double: 6 +idouble: 6 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+16380 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (-0x2.c5e3bp+8)": +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 3 +idouble: 3 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x1p+0 + 0xf.fffffp+124 i)": double: 1 idouble: 1 -Test "cosh_upward (0x1.6p+4)": +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.fffffp+124 i)": +double: 5 +float: 5 +idouble: 5 +ifloat: 5 ildouble: 1 ldouble: 1 -Test "cosh_upward (0x1.7p+4)": +Test "Real part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (0x1.8p+4)": +Test "Imaginary part of: ctanh_downward (0x2.dp+4 + 0x1p+0 i)": double: 1 idouble: 1 -Test "cosh_upward (0x2.c5e3acd2922a6p+8)": +Test "Imaginary part of: ctanh_downward (0x2.fp+4 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (0x2.c5e3bp+8)": -double: 1 -idouble: 1 -Test "cosh_upward (22)": +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (23)": +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 - -# cpow -Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d18p+0 i)": double: 1 -float: 4 idouble: 1 -ifloat: 4 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 ildouble: 2 ldouble: 2 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 0.0 i)": +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": -double: 2 -float: 3 -idouble: 2 -ifloat: 3 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": ildouble: 3 ldouble: 3 -Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": double: 1 -float: 5 +float: 1 idouble: 1 -ifloat: 5 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": -float: 2 -ifloat: 2 -ildouble: 4 -ldouble: 4 +ifloat: 1 -# csin -Test "Real part of: csin (-0.75 + 710.5 i)": +# ctanh_tonearest +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb4p+0 i)": double: 1 -idouble: 1 -Test "Real part of: csin (-0.75 + 89.5 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: csin (-0.75 - 710.5 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 -Test "Real part of: csin (-0.75 - 89.5 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 -Test "Real part of: csin (0.75 + 1.25 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c235p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 + 710.5 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168cp-4 i)": double: 1 idouble: 1 -Test "Real part of: csin (0.75 + 89.5 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdap-4 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Real part of: csin (0.75 - 710.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdbp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": double: 1 -idouble: 1 -Test "Real part of: csin (0.75 - 89.5 i)": float: 1 -ifloat: 1 -Test "Real part of: csin (0x1p-1074 + 1440 i)": -double: 1 idouble: 1 - -# csinh -Test "Imaginary part of: csinh (-2 - 3 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+124 i)": double: 1 +float: 2 idouble: 1 -Test "Imaginary part of: csinh (-89.5 + 0.75 i)": +ifloat: 2 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+124 i)": float: 1 ifloat: 1 -Test "Imaginary part of: csinh (-89.5 - 0.75 i)": +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: csinh (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (0.75 + 1.25 i)": +Test "Imaginary part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +Test "Real part of: ctanh_tonearest (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x2.dp+4 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x2.fp+4 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (710.5 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (710.5 - 0.75 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (89.5 + 0.75 i)": +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: csinh (89.5 - 0.75 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 - -# csqrt -Test "Real part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": +float: 2 +ifloat: 2 + +# ctanh_towardzero +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-0x1.0000000000001p-1022 - 0x1.0000000000001p-1022 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-0x1.000002p-126 - 0x1.000002p-126 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-2 + 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: csqrt (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000001p-1022 + 0x1.0000000000001p-1022 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.000002p-126 + 0x1.000002p-126 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c8p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffep+127 + 1.0 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdbp-4 i)": float: 1 ifloat: 1 -Test "Real part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +Test "Real part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +ifloat: 1 +Test "Real part of: ctanh_towardzero (-0xc.35p+12 + 0xc.35p+12 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fp+16383 + 0x1.fp+16383 i)": +Test "Imaginary part of: ctanh_towardzero (0x1.63p+8 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-1073 + 0x1p-1073 i)": +Test "Imaginary part of: ctanh_towardzero (0x1.6dp+8 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-1074 + 0x1p-1074 i)": +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+1020 i)": +double: 5 +idouble: 5 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-147 + 0x1p-147 i)": +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-149 + 0x1p-149 i)": +Test "Real part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +Test "Real part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 - -# ctan -Test "Real part of: ctan (-2 - 3 i)": +Test "Imaginary part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan (-2 - 3 i)": +Test "Imaginary part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": double: 1 idouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x2.fp+4 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan (0.75 + 1.25 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0x1p1023 + 1 i)": +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan (0x1p1023 + 1 i)": +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0x1p127 + 1 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan (0x1p127 + 1 i)": +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": double: 1 float: 2 idouble: 1 ifloat: 2 -Test "Real part of: ctan (0x3.243f6cp-1 + 0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": float: 1 ifloat: 1 -Test "Real part of: ctan (1 + 45 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (1 + 47 i)": -ildouble: 2 -ldouble: 2 - -# ctan_downward -Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d19p+0 i)": ildouble: 3 ldouble: 3 -Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 4 ldouble: 4 - -# ctan_tonearest -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 - -# ctan_towardzero -Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "Real part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 +Test "Real part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 4 -ldouble: 4 -# ctan_upward -Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +# ctanh_upward +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 4 -ldouble: 4 -Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb6p+0 i)": double: 2 float: 1 idouble: 2 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdap-4 i)": double: 1 idouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdbp-4 i)": ildouble: 1 ldouble: 1 - -# ctanh -Test "Real part of: ctanh (-2 - 3 i)": +Test "Real part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": double: 1 float: 2 idouble: 1 ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (-2 - 3 i)": +Test "Real part of: ctanh_upward (-0xc.35p+12 + 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (0 + 0x3.243f6cp-1 i)": +Test "Real part of: ctanh_upward (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: ctanh (0 + M_PI_4l i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1.63ap+12 + 0x1p+0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (0 + pi/4 i)": +Test "Real part of: ctanh_upward (0x1.63p+12 + 0x1p+0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctanh (0.75 + 1.25 i)": +Test "Real part of: ctanh_upward (0x1.63p+8 + 0x1p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: ctanh (0.75 + 1.25 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1.63p+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x1.6dp+8 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+16380 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x1p+0 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.fffffp+124 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -Test "Real part of: ctanh (1 + 0x1p1023 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (1 + 0x1p1023 i)": +Test "Real part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctanh (1 + 0x1p127 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "Imaginary part of: ctanh (1 + 0x1p127 i)": +Test "Imaginary part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Imaginary part of: ctanh (45 + 1 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (47 + 1 i)": +Test "Imaginary part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": ildouble: 2 ldouble: 2 - -# ctanh_downward -Test "Real part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "Real part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Imaginary part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": float: 1 ifloat: 1 -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x2.fp+4 + 0x1p+0 i)": double: 2 float: 1 idouble: 2 ifloat: 1 -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_downward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x2.fp+4 + 0x1p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# ctanh_tonearest -Test "Real part of: ctanh_tonearest (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -Test "Real part of: ctanh_tonearest (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 - -# ctanh_towardzero -Test "Real part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb6p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb6p+0 i)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# ctanh_upward -Test "Real part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": double: 2 float: 1 idouble: 2 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "Real part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": ildouble: 2 ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0xcp-4 + 0x1.4p+0 i)": +float: 2 +ifloat: 2 # erf Test "erf (-0x8p-4)": @@ -12137,128 +15643,156 @@ ildouble: 2 ldouble: 2 Function: Imaginary part of "ctan": -double: 1 +double: 2 float: 2 -idouble: 1 +idouble: 2 ifloat: 2 ildouble: 1 ldouble: 1 Function: Real part of "ctan_downward": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 3 -ldouble: 3 +double: 6 +float: 5 +idouble: 6 +ifloat: 5 +ildouble: 5 +ldouble: 5 Function: Imaginary part of "ctan_downward": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 4 ldouble: 4 Function: Real part of "ctan_tonearest": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 Function: Imaginary part of "ctan_tonearest": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 1 ldouble: 1 Function: Real part of "ctan_towardzero": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 5 +ldouble: 5 Function: Imaginary part of "ctan_towardzero": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 4 ldouble: 4 Function: Real part of "ctan_upward": double: 2 -float: 1 +float: 4 idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 +ifloat: 4 +ildouble: 3 +ldouble: 3 Function: Imaginary part of "ctan_upward": -double: 1 -idouble: 1 -ildouble: 4 -ldouble: 4 +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 3 +ldouble: 3 Function: Real part of "ctanh": -double: 1 +double: 2 float: 2 -idouble: 1 +idouble: 2 ifloat: 2 ildouble: 1 ldouble: 1 Function: Imaginary part of "ctanh": -double: 1 +double: 2 float: 2 -idouble: 1 +idouble: 2 ifloat: 2 ildouble: 2 ldouble: 2 Function: Real part of "ctanh_downward": -float: 1 -ifloat: 1 +double: 4 +float: 2 +idouble: 4 +ifloat: 2 ildouble: 4 ldouble: 4 Function: Imaginary part of "ctanh_downward": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 3 -ldouble: 3 +double: 6 +float: 5 +idouble: 6 +ifloat: 5 +ildouble: 4 +ldouble: 4 Function: Real part of "ctanh_tonearest": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 1 ldouble: 1 Function: Imaginary part of "ctanh_tonearest": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 Function: Real part of "ctanh_towardzero": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 4 ldouble: 4 Function: Imaginary part of "ctanh_towardzero": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 3 +ldouble: 3 Function: Real part of "ctanh_upward": -double: 1 -idouble: 1 -ildouble: 4 -ldouble: 4 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 3 +ldouble: 3 Function: Imaginary part of "ctanh_upward": double: 2 -float: 1 +float: 3 idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 +ifloat: 3 +ildouble: 3 +ldouble: 3 Function: "erf": double: 1 -- cgit v1.2.3 From b7867a3bfb9d7e00204c088feb227abddfc7bb43 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 20 Dec 2013 12:35:10 +0000 Subject: Move tests of cpow from libm-test.inc to auto-libm-test-in. This patch moves tests of cpow to auto-libm-test-in, adding the required support to gen-auto-libm-tests. Tested x86_64 and x86 and ulps updated accordingly. * math/auto-libm-test-in: Add tests of cpow. * math/auto-libm-test-out: Regenerated. * math/libm-test.inc (cpow_test_data): Use AUTO_TESTS_cc_c. * * math/gen-auto-libm-tests.c (func_calc_method): Add value mpc_cc_c. (func_calc_desc): Add mpc_cc_c union field. (test_functions): Add cpow. (special_fill_2pi): New function. (special_real_inputs): Add 2pi. (calc_generic_results): Handle mpc_cc_c. * sysdeps/i386/fpu/libm-test-ulps: Update. * sysdeps/x86_64/fpu/libm-test-ulps: Likewise. --- ChangeLog | 13 + math/auto-libm-test-in | 11 + math/auto-libm-test-out | 1200 +++++++++++++++++++++++++++++++++++++ math/gen-auto-libm-tests.c | 68 ++- math/libm-test.inc | 13 +- sysdeps/i386/fpu/libm-test-ulps | 49 ++ sysdeps/x86_64/fpu/libm-test-ulps | 40 ++ 7 files changed, 1372 insertions(+), 22 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 793d0b0c43..1a1b93237e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,18 @@ 2013-12-20 Joseph Myers + * math/auto-libm-test-in: Add tests of cpow. + * math/auto-libm-test-out: Regenerated. + * math/libm-test.inc (cpow_test_data): Use AUTO_TESTS_cc_c. + * * math/gen-auto-libm-tests.c (func_calc_method): Add value + mpc_cc_c. + (func_calc_desc): Add mpc_cc_c union field. + (test_functions): Add cpow. + (special_fill_2pi): New function. + (special_real_inputs): Add 2pi. + (calc_generic_results): Handle mpc_cc_c. + * sysdeps/i386/fpu/libm-test-ulps: Update. + * sysdeps/x86_64/fpu/libm-test-ulps: Likewise. + * math/auto-libm-test-in: Add tests of ccos, ccosh, cexp, clog, csqrt, ctan and ctanh. * math/auto-libm-test-out: Regenerated. diff --git a/math/auto-libm-test-in b/math/auto-libm-test-in index 4b3c7581b6..947b2af11a 100644 --- a/math/auto-libm-test-in +++ b/math/auto-libm-test-in @@ -412,6 +412,17 @@ cosh 22 cosh 23 cosh 24 +cpow 1 0 0 0 +cpow 2 0 10 0 +# Bug 14473: cpow results inaccurate. +cpow e 0 0 2pi xfail +cpow 2 3 4 0 + +cpow 0.75 1.25 0.75 1.25 +cpow 0.75 1.25 1.0 1.0 +cpow 0.75 1.25 1.0 0.0 +cpow 0.75 1.25 0.0 1.0 + csqrt 0 0 csqrt 0 -0 csqrt -0 0 diff --git a/math/auto-libm-test-out b/math/auto-libm-test-out index f89223e809..0e7ab0db79 100644 --- a/math/auto-libm-test-out +++ b/math/auto-libm-test-out @@ -38184,6 +38184,1206 @@ cosh 24 = cosh tonearest ldbl-128ibm 0x1.8p+4L : 0x3.156ff6a8ebf6e66f4935281c6p+32L : inexact-ok = cosh towardzero ldbl-128ibm 0x1.8p+4L : 0x3.156ff6a8ebf6e66f4935281c5fp+32L : inexact-ok = cosh upward ldbl-128ibm 0x1.8p+4L : 0x3.156ff6a8ebf6e66f4935281c6p+32L : inexact-ok +cpow 1 0 0 0 += cpow downward flt-32 0x1p+0f 0x0p+0f 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cpow tonearest flt-32 0x1p+0f 0x0p+0f 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cpow towardzero flt-32 0x1p+0f 0x0p+0f 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cpow upward flt-32 0x1p+0f 0x0p+0f 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok += cpow downward dbl-64 0x1p+0 0x0p+0 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cpow tonearest dbl-64 0x1p+0 0x0p+0 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cpow towardzero dbl-64 0x1p+0 0x0p+0 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cpow upward dbl-64 0x1p+0 0x0p+0 0x0p+0 0x0p+0 : 0x1p+0 0x0p+0 : inexact-ok += cpow downward ldbl-96-intel 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow tonearest ldbl-96-intel 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow towardzero ldbl-96-intel 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow upward ldbl-96-intel 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow downward ldbl-96-m68k 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow tonearest ldbl-96-m68k 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow towardzero ldbl-96-m68k 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow upward ldbl-96-m68k 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow downward ldbl-128 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow tonearest ldbl-128 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow towardzero ldbl-128 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow upward ldbl-128 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow downward ldbl-128ibm 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow tonearest ldbl-128ibm 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow towardzero ldbl-128ibm 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok += cpow upward ldbl-128ibm 0x1p+0L 0x0p+0L 0x0p+0L 0x0p+0L : 0x1p+0L 0x0p+0L : inexact-ok +cpow 2 0 10 0 += cpow downward flt-32 0x2p+0f 0x0p+0f 0xap+0f 0x0p+0f : 0x4p+8f 0x0p+0f : inexact-ok += cpow tonearest flt-32 0x2p+0f 0x0p+0f 0xap+0f 0x0p+0f : 0x4p+8f 0x0p+0f : inexact-ok += cpow towardzero flt-32 0x2p+0f 0x0p+0f 0xap+0f 0x0p+0f : 0x4p+8f 0x0p+0f : inexact-ok += cpow upward flt-32 0x2p+0f 0x0p+0f 0xap+0f 0x0p+0f : 0x4p+8f 0x0p+0f : inexact-ok += cpow downward dbl-64 0x2p+0 0x0p+0 0xap+0 0x0p+0 : 0x4p+8 0x0p+0 : inexact-ok += cpow tonearest dbl-64 0x2p+0 0x0p+0 0xap+0 0x0p+0 : 0x4p+8 0x0p+0 : inexact-ok += cpow towardzero dbl-64 0x2p+0 0x0p+0 0xap+0 0x0p+0 : 0x4p+8 0x0p+0 : inexact-ok += cpow upward dbl-64 0x2p+0 0x0p+0 0xap+0 0x0p+0 : 0x4p+8 0x0p+0 : inexact-ok += cpow downward ldbl-96-intel 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow tonearest ldbl-96-intel 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow towardzero ldbl-96-intel 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow upward ldbl-96-intel 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow downward ldbl-96-m68k 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow tonearest ldbl-96-m68k 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow towardzero ldbl-96-m68k 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow upward ldbl-96-m68k 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow downward ldbl-128 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow tonearest ldbl-128 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow towardzero ldbl-128 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow upward ldbl-128 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow downward ldbl-128ibm 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow tonearest ldbl-128ibm 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow towardzero ldbl-128ibm 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok += cpow upward ldbl-128ibm 0x2p+0L 0x0p+0L 0xap+0L 0x0p+0L : 0x4p+8L 0x0p+0L : inexact-ok +cpow e 0 0 2pi xfail += cpow downward flt-32 0x2.b7e154p+0f 0x0p+0f 0x0p+0f 0x6.487ed8p+0f : 0xf.fffffp-4f 0x8.fa605p-24f : xfail inexact-ok += cpow tonearest flt-32 0x2.b7e154p+0f 0x0p+0f 0x0p+0f 0x6.487ed8p+0f : 0x1p+0f 0x8.fa605p-24f : xfail inexact-ok += cpow towardzero flt-32 0x2.b7e154p+0f 0x0p+0f 0x0p+0f 0x6.487ed8p+0f : 0xf.fffffp-4f 0x8.fa605p-24f : xfail inexact-ok += cpow upward flt-32 0x2.b7e154p+0f 0x0p+0f 0x0p+0f 0x6.487ed8p+0f : 0x1p+0f 0x8.fa606p-24f : xfail inexact-ok += cpow downward dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.fffffffffd7bp-4 0x8.fa60505acb79p-24 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.fffffffffd7bp-4 0x8.fa60505acb798p-24 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.fffffffffd7bp-4 0x8.fa60505acb79p-24 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.fffffffffd7b8p-4 0x8.fa60505acb798p-24 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28dp-4L 0x8.fa60505acb795d3p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28dp-4L 0x8.fa60505acb795d3p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28dp-4L 0x8.fa60505acb795d3p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28ep-4L 0x8.fa60505acb795d4p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28dp-4L 0x8.fa60505acb795d3p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28dp-4L 0x8.fa60505acb795d3p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28dp-4L 0x8.fa60505acb795d3p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28ep-4L 0x8.fa60505acb795d4p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28d5c92c7abae9bp-4L 0x8.fa60505acb795d31d8828462e6ap-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28d5c92c7abae9bp-4L 0x8.fa60505acb795d31d8828462e6a8p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28d5c92c7abae9bp-4L 0x8.fa60505acb795d31d8828462e6ap-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28d5c92c7abae9b8p-4L 0x8.fa60505acb795d31d8828462e6a8p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28d5c92c7abae8p-4L 0x8.fa60505acb795d31d8828462e4p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28d5c92c7abae8p-4L 0x8.fa60505acb795d31d8828462e8p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28d5c92c7abae8p-4L 0x8.fa60505acb795d31d8828462e4p-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.fffffffffd7b28d5c92c7abaecp-4L 0x8.fa60505acb795d31d8828462e8p-24L : xfail inexact-ok += cpow downward flt-32 0x2.b7e154p+0f 0x0p+0f 0x0p+0f 0x6.487edp+0f : 0xf.fffffp-4f 0xf.a6048p-28f : xfail inexact-ok += cpow tonearest flt-32 0x2.b7e154p+0f 0x0p+0f 0x0p+0f 0x6.487edp+0f : 0x1p+0f 0xf.a6049p-28f : xfail inexact-ok += cpow towardzero flt-32 0x2.b7e154p+0f 0x0p+0f 0x0p+0f 0x6.487edp+0f : 0xf.fffffp-4f 0xf.a6048p-28f : xfail inexact-ok += cpow upward flt-32 0x2.b7e154p+0f 0x0p+0f 0x0p+0f 0x6.487edp+0f : 0x1p+0f 0xf.a6049p-28f : xfail inexact-ok += cpow downward dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.fffffffffff8p-4 0xf.a6048a88f5ed8p-28 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.fffffffffff88p-4 0xf.a6048a88f5ed8p-28 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.fffffffffff8p-4 0xf.a6048a88f5ed8p-28 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.fffffffffff88p-4 0xf.a6048a88f5eep-28 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fp-4L 0xf.a6048a88f5ed86bp-28L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff859p-4L 0xf.a6048a88f5ed86cp-28L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fp-4L 0xf.a6048a88f5ed86bp-28L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff859p-4L 0xf.a6048a88f5ed86cp-28L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fp-4L 0xf.a6048a88f5ed86bp-28L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff859p-4L 0xf.a6048a88f5ed86cp-28L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fp-4L 0xf.a6048a88f5ed86bp-28L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff859p-4L 0xf.a6048a88f5ed86cp-28L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fe6f01a77dffdp-4L 0xf.a6048a88f5ed86bbfddbf1bd8208p-28L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fe6f01a77dffdp-4L 0xf.a6048a88f5ed86bbfddbf1bd821p-28L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fe6f01a77dffdp-4L 0xf.a6048a88f5ed86bbfddbf1bd8208p-28L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fe6f01a77dffd8p-4L 0xf.a6048a88f5ed86bbfddbf1bd821p-28L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fe6f01a77dfcp-4L 0xf.a6048a88f5ed86bbfddbf1bd8p-28L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fe6f01a77ep-4L 0xf.a6048a88f5ed86bbfddbf1bd84p-28L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fe6f01a77dfcp-4L 0xf.a6048a88f5ed86bbfddbf1bd8p-28L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffff858fe6f01a77ep-4L 0xf.a6048a88f5ed86bbfddbf1bd84p-28L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.fffffffffedb8p-4 0x6.0b6b93c85aaf4p-24 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.fffffffffedb8p-4 0x6.0b6b93c85aaf8p-24 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.fffffffffedb8p-4 0x6.0b6b93c85aaf4p-24 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.fffffffffedcp-4 0x6.0b6b93c85aaf8p-24 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93c85aaf6ep-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93c85aaf6e08p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93c85aaf6ep-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb3ap-4L 0x6.0b6b93c85aaf6e08p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93c85aaf6ep-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93c85aaf6e08p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93c85aaf6ep-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb3ap-4L 0x6.0b6b93c85aaf6e08p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb395359d3f1411e8p-4L 0x6.0b6b93c85aaf6e06365ed9368c68p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb395359d3f1411e8p-4L 0x6.0b6b93c85aaf6e06365ed9368c6cp-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb395359d3f1411e8p-4L 0x6.0b6b93c85aaf6e06365ed9368c68p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb395359d3f1411fp-4L 0x6.0b6b93c85aaf6e06365ed9368c6cp-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb395359d3f141p-4L 0x6.0b6b93c85aaf6e06365ed9368cp-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb395359d3f141p-4L 0x6.0b6b93c85aaf6e06365ed9368cp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb395359d3f141p-4L 0x6.0b6b93c85aaf6e06365ed9368cp-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffedbb395359d3f1414p-4L 0x6.0b6b93c85aaf6e06365ed9368ep-24L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.fffffffffedb8p-4 0x6.0b6b93885aafp-24 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.fffffffffedb8p-4 0x6.0b6b93885aaf4p-24 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.fffffffffedb8p-4 0x6.0b6b93885aafp-24 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e154p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.fffffffffedcp-4 0x6.0b6b93885aaf4p-24 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93885aaf307p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93885aaf3078p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93885aaf307p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb3ap-4L 0x6.0b6b93885aaf3078p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93885aaf307p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93885aaf3078p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b93885aaf307p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb3ap-4L 0x6.0b6b93885aaf3078p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb3954dcaed79f5f8p-4L 0x6.0b6b93885aaf307456583db1dcap-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb3954dcaed79f6p-4L 0x6.0b6b93885aaf307456583db1dcap-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb3954dcaed79f5f8p-4L 0x6.0b6b93885aaf307456583db1dcap-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb3954dcaed79f6p-4L 0x6.0b6b93885aaf307456583db1dca4p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb3954dcaed79f4p-4L 0x6.0b6b93885aaf307456583db1dcp-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb3954dcaed79f4p-4L 0x6.0b6b93885aaf307456583db1dcp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb3954dcaed79f4p-4L 0x6.0b6b93885aaf307456583db1dcp-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffedbb3954dcaed79f8p-4L 0x6.0b6b93885aaf307456583db1dep-24L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b939a02af417p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b939a02af417p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b939a02af417p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb3ap-4L 0x6.0b6b939a02af4178p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b939a02af417p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b939a02af417p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b939a02af417p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb3ap-4L 0x6.0b6b939a02af4178p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb395471f533d338p-4L 0x6.0b6b939a02af4170b4c610596148p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb395471f533d338p-4L 0x6.0b6b939a02af4170b4c610596148p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb395471f533d338p-4L 0x6.0b6b939a02af4170b4c610596148p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb395471f533d3388p-4L 0x6.0b6b939a02af4170b4c61059614cp-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb395471f533d3p-4L 0x6.0b6b939a02af4170b4c610596p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb395471f533d34p-4L 0x6.0b6b939a02af4170b4c6105962p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb395471f533d3p-4L 0x6.0b6b939a02af4170b4c610596p-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffedbb395471f533d34p-4L 0x6.0b6b939a02af4170b4c6105962p-24L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b9399faaf4168p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b9399faaf4168p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b9399faaf4168p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb3ap-4L 0x6.0b6b9399faaf417p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b9399faaf4168p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b9399faaf4168p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb39p-4L 0x6.0b6b9399faaf4168p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb3ap-4L 0x6.0b6b9399faaf417p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb395472258f30038p-4L 0x6.0b6b9399faaf4169028a0f85f0bp-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb395472258f30038p-4L 0x6.0b6b9399faaf4169028a0f85f0bp-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb395472258f30038p-4L 0x6.0b6b9399faaf4169028a0f85f0bp-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb395472258f3004p-4L 0x6.0b6b9399faaf4169028a0f85f0b4p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb395472258f3p-4L 0x6.0b6b9399faaf4169028a0f85fp-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb395472258f3p-4L 0x6.0b6b9399faaf4169028a0f85fp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb395472258f3p-4L 0x6.0b6b9399faaf4169028a0f85fp-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffedbb395472258f304p-4L 0x6.0b6b9399faaf4169028a0f85f2p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fdb4fd151p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fdb4fd1514p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fdb4fd151p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffedbb3954720063c3b1p-4L 0x6.0b6b939a00d5748348fdb4fd1514p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fdb0fd150cp-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fdb0fd151p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fdb0fd150cp-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffedbb3954720063c3b1p-4L 0x6.0b6b939a00d5748348fdb0fd151p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fed0fd1624p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fed0fd1624p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fed0fd1624p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffedbb3954720063c3b1p-4L 0x6.0b6b939a00d5748348fed0fd1628p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffedbb3954720063c38p-4L 0x6.0b6b939a00d5748348fed0fd16p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffedbb3954720063c3cp-4L 0x6.0b6b939a00d5748348fed0fd16p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffedbb3954720063c38p-4L 0x6.0b6b939a00d5748348fed0fd16p-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffedbb3954720063c3cp-4L 0x6.0b6b939a00d5748348fed0fd18p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fcd0fd1434p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fcd0fd1438p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffedbb3954720063c3b08p-4L 0x6.0b6b939a00d5748348fcd0fd1434p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffedbb3954720063c3b1p-4L 0x6.0b6b939a00d5748348fcd0fd1438p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffedbb3954720063c38p-4L 0x6.0b6b939a00d5748348fcd0fd14p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffedbb3954720063c3cp-4L 0x6.0b6b939a00d5748348fcd0fd14p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffedbb3954720063c38p-4L 0x6.0b6b939a00d5748348fcd0fd14p-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e154p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffedbb3954720063c3cp-4L 0x6.0b6b939a00d5748348fcd0fd16p-24L : xfail inexact-ok += cpow downward flt-32 0x2.b7e15p+0f 0x0p+0f 0x0p+0f 0x6.487ed8p+0f : 0xf.fffffp-4f -0x4.48dadp-28f : xfail inexact-ok += cpow tonearest flt-32 0x2.b7e15p+0f 0x0p+0f 0x0p+0f 0x6.487ed8p+0f : 0x1p+0f -0x4.48dadp-28f : xfail inexact-ok += cpow towardzero flt-32 0x2.b7e15p+0f 0x0p+0f 0x0p+0f 0x6.487ed8p+0f : 0xf.fffffp-4f -0x4.48dac8p-28f : xfail inexact-ok += cpow upward flt-32 0x2.b7e15p+0f 0x0p+0f 0x0p+0f 0x6.487ed8p+0f : 0x1p+0f -0x4.48dac8p-28f : xfail inexact-ok += cpow downward dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffffp-4 -0x4.48dacf23d53e8p-28 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffff8p-4 -0x4.48dacf23d53e8p-28 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffffp-4 -0x4.48dacf23d53e4p-28 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffff8p-4 -0x4.48dacf23d53e4p-28 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d2p-4L -0x4.48dacf23d53e61b8p-28L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d2p-4L -0x4.48dacf23d53e61b8p-28L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d2p-4L -0x4.48dacf23d53e61bp-28L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d3p-4L -0x4.48dacf23d53e61bp-28L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d2p-4L -0x4.48dacf23d53e61b8p-28L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d2p-4L -0x4.48dacf23d53e61b8p-28L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d2p-4L -0x4.48dacf23d53e61bp-28L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d3p-4L -0x4.48dacf23d53e61bp-28L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d236dbabdebbbp-4L -0x4.48dacf23d53e61b713c9d2f46438p-28L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d236dbabdebbb08p-4L -0x4.48dacf23d53e61b713c9d2f46434p-28L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d236dbabdebbbp-4L -0x4.48dacf23d53e61b713c9d2f46434p-28L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d236dbabdebbb08p-4L -0x4.48dacf23d53e61b713c9d2f46434p-28L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d236dbabdebb8p-4L -0x4.48dacf23d53e61b713c9d2f466p-28L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d236dbabdebbcp-4L -0x4.48dacf23d53e61b713c9d2f464p-28L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d236dbabdebb8p-4L -0x4.48dacf23d53e61b713c9d2f464p-28L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffff6d236dbabdebbcp-4L -0x4.48dacf23d53e61b713c9d2f464p-28L : xfail inexact-ok += cpow downward flt-32 0x2.b7e15p+0f 0x0p+0f 0x0p+0f 0x6.487edp+0f : 0xf.fffffp-4f -0x8.448dbp-24f : xfail inexact-ok += cpow tonearest flt-32 0x2.b7e15p+0f 0x0p+0f 0x0p+0f 0x6.487edp+0f : 0x1p+0f -0x8.448dbp-24f : xfail inexact-ok += cpow towardzero flt-32 0x2.b7e15p+0f 0x0p+0f 0x0p+0f 0x6.487edp+0f : 0xf.fffffp-4f -0x8.448dap-24f : xfail inexact-ok += cpow upward flt-32 0x2.b7e15p+0f 0x0p+0f 0x0p+0f 0x6.487edp+0f : 0x1p+0f -0x8.448dap-24f : xfail inexact-ok += cpow downward dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.fffffffffdddp-4 -0x8.448da8dece708p-24 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.fffffffffdddp-4 -0x8.448da8dece708p-24 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.fffffffffdddp-4 -0x8.448da8dece7p-24 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.fffffffffddd8p-4 -0x8.448da8dece7p-24 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264p-4L -0x8.448da8dece7042cp-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd265p-4L -0x8.448da8dece7042cp-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264p-4L -0x8.448da8dece7042bp-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd265p-4L -0x8.448da8dece7042bp-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264p-4L -0x8.448da8dece7042cp-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd265p-4L -0x8.448da8dece7042cp-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264p-4L -0x8.448da8dece7042bp-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd265p-4L -0x8.448da8dece7042bp-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264f0fca0f5b9908p-4L -0x8.448da8dece7042b950121c28a188p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264f0fca0f5b9908p-4L -0x8.448da8dece7042b950121c28a188p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264f0fca0f5b9908p-4L -0x8.448da8dece7042b950121c28a18p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264f0fca0f5b991p-4L -0x8.448da8dece7042b950121c28a18p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264f0fca0f5b98p-4L -0x8.448da8dece7042b950121c28a4p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264f0fca0f5b98p-4L -0x8.448da8dece7042b950121c28ap-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264f0fca0f5b98p-4L -0x8.448da8dece7042b950121c28ap-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.fffffffffddd264f0fca0f5b9cp-4L -0x8.448da8dece7042b950121c28ap-24L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.ffffffffffaep-4 -0x3.33826533a2e5ep-24 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.ffffffffffaep-4 -0x3.33826533a2e5cp-24 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.ffffffffffaep-4 -0x3.33826533a2e5cp-24 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.ffffffffffae8p-4 -0x3.33826533a2e5cp-24 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826533a2e5c258p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826533a2e5c254p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826533a2e5c254p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04bp-4L -0x3.33826533a2e5c254p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826533a2e5c258p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826533a2e5c254p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826533a2e5c254p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04bp-4L -0x3.33826533a2e5c254p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04a3506559435a2p-4L -0x3.33826533a2e5c2544573ca0273fcp-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04a3506559435a2p-4L -0x3.33826533a2e5c2544573ca0273fcp-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04a3506559435a2p-4L -0x3.33826533a2e5c2544573ca0273fap-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04a3506559435a28p-4L -0x3.33826533a2e5c2544573ca0273fap-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04a35065594358p-4L -0x3.33826533a2e5c2544573ca0274p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04a3506559435cp-4L -0x3.33826533a2e5c2544573ca0274p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04a35065594358p-4L -0x3.33826533a2e5c2544573ca0273p-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffae04a3506559435cp-4L -0x3.33826533a2e5c2544573ca0273p-24L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.ffffffffffaep-4 -0x3.33826573a2e5cp-24 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.ffffffffffaep-4 -0x3.33826573a2e5ap-24 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.ffffffffffaep-4 -0x3.33826573a2e5ap-24 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e15p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.ffffffffffae8p-4 -0x3.33826573a2e5ap-24 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826573a2e5a1bcp-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826573a2e5a1b8p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826573a2e5a1b8p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04bp-4L -0x3.33826573a2e5a1b8p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826573a2e5a1bcp-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826573a2e5a1b8p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826573a2e5a1b8p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04bp-4L -0x3.33826573a2e5a1b8p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04a343974fb491bp-4L -0x3.33826573a2e5a1b8d0004544c53ep-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04a343974fb491b8p-4L -0x3.33826573a2e5a1b8d0004544c53cp-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04a343974fb491bp-4L -0x3.33826573a2e5a1b8d0004544c53cp-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04a343974fb491b8p-4L -0x3.33826573a2e5a1b8d0004544c53cp-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04a343974fb49p-4L -0x3.33826573a2e5a1b8d0004544c6p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04a343974fb49p-4L -0x3.33826573a2e5a1b8d0004544c5p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04a343974fb49p-4L -0x3.33826573a2e5a1b8d0004544c5p-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffae04a343974fb494p-4L -0x3.33826573a2e5a1b8d0004544c5p-24L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826561fae5aab8p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826561fae5aab8p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826561fae5aab4p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04bp-4L -0x3.33826561fae5aab4p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826561fae5aab8p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826561fae5aab8p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04ap-4L -0x3.33826561fae5aab4p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04bp-4L -0x3.33826561fae5aab4p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04a3471fa717af5p-4L -0x3.33826561fae5aab7b34743c39ebp-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04a3471fa717af5p-4L -0x3.33826561fae5aab7b34743c39ebp-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04a3471fa717af5p-4L -0x3.33826561fae5aab7b34743c39eaep-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04a3471fa717af58p-4L -0x3.33826561fae5aab7b34743c39eaep-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04a3471fa717acp-4L -0x3.33826561fae5aab7b34743c39fp-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04a3471fa717bp-4L -0x3.33826561fae5aab7b34743c39fp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04a3471fa717acp-4L -0x3.33826561fae5aab7b34743c39ep-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffae04a3471fa717bp-4L -0x3.33826561fae5aab7b34743c39ep-24L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04ap-4L -0x3.3382656202e5aab4p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04ap-4L -0x3.3382656202e5aab4p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04ap-4L -0x3.3382656202e5aabp-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04bp-4L -0x3.3382656202e5aabp-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04ap-4L -0x3.3382656202e5aab4p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04ap-4L -0x3.3382656202e5aab4p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04ap-4L -0x3.3382656202e5aabp-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04bp-4L -0x3.3382656202e5aabp-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04a3471e0d567d7p-4L -0x3.3382656202e5aab39fd8955306fap-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04a3471e0d567d7p-4L -0x3.3382656202e5aab39fd8955306f8p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04a3471e0d567d7p-4L -0x3.3382656202e5aab39fd8955306f8p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04a3471e0d567d78p-4L -0x3.3382656202e5aab39fd8955306f8p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04a3471e0d567cp-4L -0x3.3382656202e5aab39fd8955307p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04a3471e0d567cp-4L -0x3.3382656202e5aab39fd8955307p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04a3471e0d567cp-4L -0x3.3382656202e5aab39fd8955306p-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffae04a3471e0d568p-4L -0x3.3382656202e5aab39fd8955306p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265db08251f52p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265db08251f5p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265db08251f5p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffae04a3471f484bf0dp-4L -0x3.33826561fcbf77a265db08251f5p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265db0c251f4ep-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265db0c251f4ep-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265db0c251f4cp-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffae04a3471f484bf0dp-4L -0x3.33826561fcbf77a265db0c251f4cp-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265d9ec251fe2p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265d9ec251fep-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265d9ec251fep-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffae04a3471f484bf0dp-4L -0x3.33826561fcbf77a265d9ec251fep-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffae04a3471f484bfp-4L -0x3.33826561fcbf77a265d9ec252p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffae04a3471f484bfp-4L -0x3.33826561fcbf77a265d9ec252p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffae04a3471f484bfp-4L -0x3.33826561fcbf77a265d9ec251fp-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffae04a3471f484bf4p-4L -0x3.33826561fcbf77a265d9ec251fp-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265dbec251edcp-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265dbec251edcp-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffae04a3471f484bf0c8p-4L -0x3.33826561fcbf77a265dbec251edap-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffae04a3471f484bf0dp-4L -0x3.33826561fcbf77a265dbec251edap-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffae04a3471f484bfp-4L -0x3.33826561fcbf77a265dbec251fp-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffae04a3471f484bfp-4L -0x3.33826561fcbf77a265dbec251fp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffae04a3471f484bfp-4L -0x3.33826561fcbf77a265dbec251ep-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e15p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffae04a3471f484bf4p-4L -0x3.33826561fcbf77a265dbec251ep-24L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffbbp-4 0x2.eef4ba203d346p-24 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffbbp-4 0x2.eef4ba203d346p-24 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffbbp-4 0x2.eef4ba203d346p-24 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffbb8p-4 0x2.eef4ba203d348p-24 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4ba203d346ec4p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4ba203d346ec4p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4ba203d346ec4p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4ba203d346ec8p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4ba203d346ec4p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4ba203d346ec4p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4ba203d346ec4p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4ba203d346ec8p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29091bbe2435d8fp-4L 0x2.eef4ba203d346ec486fd3d07aaa4p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29091bbe2435d8fp-4L 0x2.eef4ba203d346ec486fd3d07aaa4p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29091bbe2435d8fp-4L 0x2.eef4ba203d346ec486fd3d07aaa4p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29091bbe2435d8f8p-4L 0x2.eef4ba203d346ec486fd3d07aaa6p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29091bbe2435d8p-4L 0x2.eef4ba203d346ec486fd3d07aap-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29091bbe2435d8p-4L 0x2.eef4ba203d346ec486fd3d07abp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29091bbe2435d8p-4L 0x2.eef4ba203d346ec486fd3d07aap-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29091bbe2435dcp-4L 0x2.eef4ba203d346ec486fd3d07abp-24L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.ffffffffff328p-4 -0x5.110b45dfc2b2p-24 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.ffffffffff328p-4 -0x5.110b45dfc2b2p-24 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.ffffffffff328p-4 -0x5.110b45dfc2b1cp-24 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.ffffffffff33p-4 -0x5.110b45dfc2b1cp-24 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b45dfc2b1ee88p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b45dfc2b1ee88p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b45dfc2b1ee8p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a37p-4L -0x5.110b45dfc2b1ee8p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b45dfc2b1ee88p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b45dfc2b1ee88p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b45dfc2b1ee8p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a37p-4L -0x5.110b45dfc2b1ee8p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3662bdcc1f98e48p-4L -0x5.110b45dfc2b1ee86f90695ac39ecp-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3662bdcc1f98e48p-4L -0x5.110b45dfc2b1ee86f90695ac39e8p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3662bdcc1f98e48p-4L -0x5.110b45dfc2b1ee86f90695ac39e8p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3662bdcc1f98e5p-4L -0x5.110b45dfc2b1ee86f90695ac39e8p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3662bdcc1f98cp-4L -0x5.110b45dfc2b1ee86f90695ac3ap-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3662bdcc1f99p-4L -0x5.110b45dfc2b1ee86f90695ac3ap-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3662bdcc1f98cp-4L -0x5.110b45dfc2b1ee86f90695ac38p-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3662bdcc1f99p-4L -0x5.110b45dfc2b1ee86f90695ac38p-24L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.ffffffffffff8p-4 0x6.03d388c77c5ep-52 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0x1p+0 0x6.03d388c77c5e4p-52 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.ffffffffffff8p-4 0x6.03d388c77c5ep-52 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0x1p+0 0x6.03d388c77c5e4p-52 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x6.03d388c77c5e3198p-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x6.03d388c77c5e31ap-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x6.03d388c77c5e3198p-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x6.03d388c77c5e31ap-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x6.03d388c77c5e3198p-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x6.03d388c77c5e31ap-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x6.03d388c77c5e3198p-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x6.03d388c77c5e31ap-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffede9p-4L 0x6.03d388c77c5e319e62c402661708p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffede9p-4L 0x6.03d388c77c5e319e62c40266170cp-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffede9p-4L 0x6.03d388c77c5e319e62c402661708p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffede98p-4L 0x6.03d388c77c5e319e62c40266170cp-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffedcp-4L 0x6.03d388c77c5e319e62c4026616p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffeep-4L 0x6.03d388c77c5e319e62c4026618p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffedcp-4L 0x6.03d388c77c5e319e62c4026616p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffeep-4L 0x6.03d388c77c5e319e62c4026618p-52L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.ffffffffffff8p-4 0x2.03d388c77c5ep-52 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0x1p+0 0x2.03d388c77c5e2p-52 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.ffffffffffff8p-4 0x2.03d388c77c5ep-52 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e151628aed4p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0x1p+0 0x2.03d388c77c5e2p-52 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L 0x2.03d388c77c5e11d8p-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L 0x2.03d388c77c5e11dcp-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L 0x2.03d388c77c5e11d8p-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L 0x2.03d388c77c5e11dcp-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L 0x2.03d388c77c5e11d8p-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L 0x2.03d388c77c5e11dcp-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L 0x2.03d388c77c5e11d8p-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L 0x2.03d388c77c5e11dcp-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffdf8p-4L 0x2.03d388c77c5e11dbe10acafa3168p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffdf88p-4L 0x2.03d388c77c5e11dbe10acafa316ap-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffdf8p-4L 0x2.03d388c77c5e11dbe10acafa3168p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffdf88p-4L 0x2.03d388c77c5e11dbe10acafa316ap-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffdcp-4L 0x2.03d388c77c5e11dbe10acafa31p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffep-4L 0x2.03d388c77c5e11dbe10acafa31p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffdcp-4L 0x2.03d388c77c5e11dbe10acafa31p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffep-4L 0x2.03d388c77c5e11dbe10acafa32p-52L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L 0x3.1e5388c77c5e1a9cp-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x3.1e5388c77c5e1aap-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L 0x3.1e5388c77c5e1a9cp-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x3.1e5388c77c5e1aap-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L 0x3.1e5388c77c5e1a9cp-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x3.1e5388c77c5e1aap-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L 0x3.1e5388c77c5e1a9cp-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x3.1e5388c77c5e1aap-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffb23p-4L 0x3.1e5388c77c5e1a9eea1483e45b92p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffb23p-4L 0x3.1e5388c77c5e1a9eea1483e45b94p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffb23p-4L 0x3.1e5388c77c5e1a9eea1483e45b92p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e5388c77c5e1a9eea1483e45b94p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffbp-4L 0x3.1e5388c77c5e1a9eea1483e45bp-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffb4p-4L 0x3.1e5388c77c5e1a9eea1483e45cp-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffbp-4L 0x3.1e5388c77c5e1a9eea1483e45bp-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffb4p-4L 0x3.1e5388c77c5e1a9eea1483e45cp-52L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L 0x3.1dd388c77c5e1a98p-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L 0x3.1dd388c77c5e1a9cp-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L 0x3.1dd388c77c5e1a98p-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L 0x3.1dd388c77c5e1a9cp-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L 0x3.1dd388c77c5e1a98p-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L 0x3.1dd388c77c5e1a9cp-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L 0x3.1dd388c77c5e1a98p-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L 0x3.1dd388c77c5e1a9cp-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffb248p-4L 0x3.1dd388c77c5e1a9af1c44cbd6e14p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffb25p-4L 0x3.1dd388c77c5e1a9af1c44cbd6e16p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffb248p-4L 0x3.1dd388c77c5e1a9af1c44cbd6e14p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffb25p-4L 0x3.1dd388c77c5e1a9af1c44cbd6e16p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffbp-4L 0x3.1dd388c77c5e1a9af1c44cbd6ep-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffb4p-4L 0x3.1dd388c77c5e1a9af1c44cbd6ep-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffbp-4L 0x3.1dd388c77c5e1a9af1c44cbd6ep-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffb4p-4L 0x3.1dd388c77c5e1a9af1c44cbd6fp-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e88ddfef54c3a6c44p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e88ddfef54c3a6c44p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e88ddfef54c3a6c44p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffffffffffffffffb24p-4L 0x3.1e35ebf8c21e88ddfef54c3a6c46p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e889dfef54c3a6c42p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e889dfef54c3a6c42p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e889dfef54c3a6c42p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffffffffffffffffb24p-4L 0x3.1e35ebf8c21e889dfef54c3a6c44p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e9a9dfef54c3a6cdp-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e9a9dfef54c3a6cd2p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e9a9dfef54c3a6cdp-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffb24p-4L 0x3.1e35ebf8c21e9a9dfef54c3a6cd2p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffbp-4L 0x3.1e35ebf8c21e9a9dfef54c3a6cp-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffb4p-4L 0x3.1e35ebf8c21e9a9dfef54c3a6dp-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffbp-4L 0x3.1e35ebf8c21e9a9dfef54c3a6cp-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffb4p-4L 0x3.1e35ebf8c21e9a9dfef54c3a6dp-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e7a9dfef54c3a6bd2p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e7a9dfef54c3a6bd4p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffb238p-4L 0x3.1e35ebf8c21e7a9dfef54c3a6bd2p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffb24p-4L 0x3.1e35ebf8c21e7a9dfef54c3a6bd4p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffbp-4L 0x3.1e35ebf8c21e7a9dfef54c3a6bp-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffb4p-4L 0x3.1e35ebf8c21e7a9dfef54c3a6cp-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffbp-4L 0x3.1e35ebf8c21e7a9dfef54c3a6bp-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffb4p-4L 0x3.1e35ebf8c21e7a9dfef54c3a6cp-52L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffbbp-4 0x2.eef4b9d645c46p-24 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffbbp-4 0x2.eef4b9d645c48p-24 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffbbp-4 0x2.eef4b9d645c46p-24 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed8p+0 : 0xf.ffffffffffbb8p-4 0x2.eef4b9d645c48p-24 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9d645c4739cp-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9d645c473ap-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9d645c4739cp-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9d645c473ap-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9d645c4739cp-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9d645c473ap-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9d645c4739cp-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9d645c473ap-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb2909294dbe302788p-4L 0x2.eef4b9d645c4739fb50712af351p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb2909294dbe30279p-4L 0x2.eef4b9d645c4739fb50712af3512p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb2909294dbe302788p-4L 0x2.eef4b9d645c4739fb50712af351p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb2909294dbe30279p-4L 0x2.eef4b9d645c4739fb50712af3512p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb2909294dbe3024p-4L 0x2.eef4b9d645c4739fb50712af35p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb2909294dbe3028p-4L 0x2.eef4b9d645c4739fb50712af35p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb2909294dbe3024p-4L 0x2.eef4b9d645c4739fb50712af35p-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb2909294dbe3028p-4L 0x2.eef4b9d645c4739fb50712af36p-24L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.ffffffffff328p-4 -0x5.110b4629ba21cp-24 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.ffffffffff328p-4 -0x5.110b4629ba218p-24 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.ffffffffff328p-4 -0x5.110b4629ba218p-24 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487edp+0 : 0xf.ffffffffff33p-4 -0x5.110b4629ba218p-24 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4629ba218b8p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4629ba218b8p-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4629ba218b78p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a37p-4L -0x5.110b4629ba218b78p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4629ba218b8p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4629ba218b8p-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4629ba218b78p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a37p-4L -0x5.110b4629ba218b78p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661470a4141cf8p-4L -0x5.110b4629ba218b7e6faceb4a4cap-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661470a4141cf8p-4L -0x5.110b4629ba218b7e6faceb4a4c9cp-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661470a4141cf8p-4L -0x5.110b4629ba218b7e6faceb4a4c9cp-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661470a4141dp-4L -0x5.110b4629ba218b7e6faceb4a4c9cp-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661470a4141cp-4L -0x5.110b4629ba218b7e6faceb4a4ep-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661470a4141cp-4L -0x5.110b4629ba218b7e6faceb4a4cp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661470a4141cp-4L -0x5.110b4629ba218b7e6faceb4a4cp-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661470a4142p-4L -0x5.110b4629ba218b7e6faceb4a4cp-24L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.ffffffffffff8p-4 0x1.645c8b3db4ee9p-52 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0x1p+0 0x1.645c8b3db4eeap-52 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0xf.ffffffffffff8p-4 0x1.645c8b3db4ee9p-52 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed5110b464p+0 : 0x1p+0 0x1.645c8b3db4eeap-52 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x1.645c8b3db4ee9d0ap-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x1.645c8b3db4ee9d0cp-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x1.645c8b3db4ee9d0ap-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x1.645c8b3db4ee9d0cp-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x1.645c8b3db4ee9d0ap-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x1.645c8b3db4ee9d0cp-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x1.645c8b3db4ee9d0ap-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x1.645c8b3db4ee9d0cp-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffff078p-4L 0x1.645c8b3db4ee9d0b9d154b5c11c7p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffff08p-4L 0x1.645c8b3db4ee9d0b9d154b5c11c8p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffff078p-4L 0x1.645c8b3db4ee9d0b9d154b5c11c7p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffff08p-4L 0x1.645c8b3db4ee9d0b9d154b5c11c8p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffffp-4L 0x1.645c8b3db4ee9d0b9d154b5c118p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffffp-4L 0x1.645c8b3db4ee9d0b9d154b5c12p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffffp-4L 0x1.645c8b3db4ee9d0b9d154b5c118p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffffffffffff4p-4L 0x1.645c8b3db4ee9d0b9d154b5c12p-52L : xfail inexact-ok += cpow downward dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.ffffffffffff8p-4 -0x2.9ba374c24b116p-52 : xfail inexact-ok += cpow tonearest dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0x1p+0 -0x2.9ba374c24b116p-52 : xfail inexact-ok += cpow towardzero dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0xf.ffffffffffff8p-4 -0x2.9ba374c24b114p-52 : xfail inexact-ok += cpow upward dbl-64 0x2.b7e151628aed2p+0 0x0p+0 0x0p+0 0x6.487ed5110b46p+0 : 0x1p+0 -0x2.9ba374c24b114p-52 : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x2.9ba374c24b1153a4p-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x2.9ba374c24b1153ap-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x2.9ba374c24b1153ap-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x2.9ba374c24b1153ap-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x2.9ba374c24b1153a4p-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x2.9ba374c24b1153ap-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x2.9ba374c24b1153ap-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x2.9ba374c24b1153ap-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffc99p-4L -0x2.9ba374c24b1153a038379231842ep-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffc998p-4L -0x2.9ba374c24b1153a038379231842cp-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffc99p-4L -0x2.9ba374c24b1153a038379231842cp-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffc998p-4L -0x2.9ba374c24b1153a038379231842cp-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffc8p-4L -0x2.9ba374c24b1153a03837923185p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffc8p-4L -0x2.9ba374c24b1153a03837923184p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffc8p-4L -0x2.9ba374c24b1153a03837923184p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.ffffffffffffffffffffffffccp-4L -0x2.9ba374c24b1153a03837923184p-52L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L -0x1.812374c24b1157dcp-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x1.812374c24b1157dap-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L -0x1.812374c24b1157dap-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x1.812374c24b1157dap-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L -0x1.812374c24b1157dcp-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x1.812374c24b1157dap-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L -0x1.812374c24b1157dap-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x1.812374c24b1157dap-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.812374c24b1157dad07f3d925622p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffede8p-4L -0x1.812374c24b1157dad07f3d925621p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.812374c24b1157dad07f3d925621p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffede8p-4L -0x1.812374c24b1157dad07f3d925621p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.812374c24b1157dad07f3d92568p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.812374c24b1157dad07f3d9256p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.812374c24b1157dad07f3d9256p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffp-4L -0x1.812374c24b1157dad07f3d9256p-52L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0x1.81a374c24b1157dap-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x1.81a374c24b1157d8p-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0x1.81a374c24b1157d8p-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x1.81a374c24b1157d8p-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0x1.81a374c24b1157dap-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x1.81a374c24b1157d8p-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0x1.81a374c24b1157d8p-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x1.81a374c24b1157d8p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffedd8p-4L -0x1.81a374c24b1157d8e5f9e72e07d4p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffedd8p-4L -0x1.81a374c24b1157d8e5f9e72e07d4p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffedd8p-4L -0x1.81a374c24b1157d8e5f9e72e07d3p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.81a374c24b1157d8e5f9e72e07d3p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.81a374c24b1157d8e5f9e72e08p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.81a374c24b1157d8e5f9e72e08p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.81a374c24b1157d8e5f9e72e078p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffp-4L -0x1.81a374c24b1157d8e5f9e72e078p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550e99a5f041d45fdbep-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550e99a5f041d45fdbdp-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550e99a5f041d45fdbdp-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.ffffffffffffffffffffffffede8p-4L -0x1.814111910550e99a5f041d45fdbdp-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550e9da5f041d45fdbdp-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550e9da5f041d45fdbcp-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550e9da5f041d45fdbcp-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.ffffffffffffffffffffffffede8p-4L -0x1.814111910550e9da5f041d45fdbcp-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550d7da5f041d45fe02p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550d7da5f041d45fe01p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550d7da5f041d45fe01p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffede8p-4L -0x1.814111910550d7da5f041d45fe01p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.814111910550d7da5f041d45fe8p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.814111910550d7da5f041d45fep-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.814111910550d7da5f041d45fep-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffp-4L -0x1.814111910550d7da5f041d45fep-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550f7da5f041d45fd87p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550f7da5f041d45fd87p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffedep-4L -0x1.814111910550f7da5f041d45fd86p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffede8p-4L -0x1.814111910550f7da5f041d45fd86p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.814111910550f7da5f041d45fep-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.814111910550f7da5f041d45fd8p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.ffffffffffffffffffffffffecp-4L -0x1.814111910550f7da5f041d45fd8p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffp-4L -0x1.814111910550f7da5f041d45fd8p-52L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9ee5cba8c08p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9ee5cba8c0cp-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9ee5cba8c08p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9ee5cba8c0cp-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9ee5cba8c08p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9ee5cba8c0cp-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9ee5cba8c08p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9ee5cba8c0cp-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3196a67b8p-4L 0x2.eef4b9ee5cba8c0ad2e8fe56ebe4p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3196a67cp-4L 0x2.eef4b9ee5cba8c0ad2e8fe56ebe6p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3196a67b8p-4L 0x2.eef4b9ee5cba8c0ad2e8fe56ebe4p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3196a67cp-4L 0x2.eef4b9ee5cba8c0ad2e8fe56ebe6p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3196a64p-4L 0x2.eef4b9ee5cba8c0ad2e8fe56ebp-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3196a68p-4L 0x2.eef4b9ee5cba8c0ad2e8fe56ecp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3196a64p-4L 0x2.eef4b9ee5cba8c0ad2e8fe56ebp-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3196a68p-4L 0x2.eef4b9ee5cba8c0ad2e8fe56ecp-24L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611a32b91cp-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611a32b91cp-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611a32b91b8p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a37p-4L -0x5.110b4611a32b91b8p-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611a32b91cp-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611a32b91cp-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611a32b91b8p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a37p-4L -0x5.110b4611a32b91b8p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c117a50dc48p-4L -0x5.110b4611a32b91bf57681f8addp-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c117a50dc5p-4L -0x5.110b4611a32b91bf57681f8adcfcp-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c117a50dc48p-4L -0x5.110b4611a32b91bf57681f8adcfcp-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c117a50dc5p-4L -0x5.110b4611a32b91bf57681f8adcfcp-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c117a50dcp-4L -0x5.110b4611a32b91bf57681f8adep-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c117a50dcp-4L -0x5.110b4611a32b91bf57681f8adcp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c117a50dcp-4L -0x5.110b4611a32b91bf57681f8adcp-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c117a50ep-4L -0x5.110b4611a32b91bf57681f8adcp-24L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x2.e5cbec1074429a08p-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x2.e5cbec1074429a08p-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x2.e5cbec1074429a08p-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x2.e5cbec1074429a0cp-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x2.e5cbec1074429a08p-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x2.e5cbec1074429a08p-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x2.e5cbec1074429a08p-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x2.e5cbec1074429a0cp-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcdp-4L 0x2.e5cbec1074429a08bc3eb1402856p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcd8p-4L 0x2.e5cbec1074429a08bc3eb1402858p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcdp-4L 0x2.e5cbec1074429a08bc3eb1402856p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcd8p-4L 0x2.e5cbec1074429a08bc3eb1402858p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e5cbec1074429a08bc3eb14028p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e5cbec1074429a08bc3eb14028p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e5cbec1074429a08bc3eb14028p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffcp-4L 0x2.e5cbec1074429a08bc3eb14029p-52L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x1.1a3413ef8bbd65fap-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x1.1a3413ef8bbd65fap-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x1.1a3413ef8bbd65f8p-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x1.1a3413ef8bbd65f8p-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x1.1a3413ef8bbd65fap-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x1.1a3413ef8bbd65fap-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x1.1a3413ef8bbd65f8p-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x1.1a3413ef8bbd65f8p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1a3413ef8bbd65f91b75f6123e71p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff648p-4L -0x1.1a3413ef8bbd65f91b75f6123e7p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1a3413ef8bbd65f91b75f6123e7p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff648p-4L -0x1.1a3413ef8bbd65f91b75f6123e7p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff4p-4L -0x1.1a3413ef8bbd65f91b75f6123e8p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff8p-4L -0x1.1a3413ef8bbd65f91b75f6123e8p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff4p-4L -0x1.1a3413ef8bbd65f91b75f6123ep-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff8p-4L -0x1.1a3413ef8bbd65f91b75f6123ep-52L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L 0x4.bec1074429a07668p-64L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x4.bec1074429a07668p-64L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L 0x4.bec1074429a07668p-64L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x4.bec1074429a0767p-64L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L 0x4.bec1074429a07668p-64L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x4.bec1074429a07668p-64L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L 0x4.bec1074429a07668p-64L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x4.bec1074429a0767p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x4.bec1074429a0766ac4096de1f708p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x4.bec1074429a0766ac4096de1f708p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x4.bec1074429a0766ac4096de1f708p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x4.bec1074429a0766ac4096de1f70cp-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x4.bec1074429a0766ac4096de1f6p-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x4.bec1074429a0766ac4096de1f8p-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x4.bec1074429a0766ac4096de1f6p-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x4.bec1074429a0766ac4096de1f8p-64L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0x3.413ef8bbd65f899cp-64L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x3.413ef8bbd65f8998p-64L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0x3.413ef8bbd65f8998p-64L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x3.413ef8bbd65f8998p-64L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0x3.413ef8bbd65f899cp-64L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x3.413ef8bbd65f8998p-64L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0x3.413ef8bbd65f8998p-64L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x3.413ef8bbd65f8998p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x3.413ef8bbd65f8998eb5fe0c2df16p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x3.413ef8bbd65f8998eb5fe0c2df16p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x3.413ef8bbd65f8998eb5fe0c2df14p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x3.413ef8bbd65f8998eb5fe0c2df14p-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x3.413ef8bbd65f8998eb5fe0c2ep-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x3.413ef8bbd65f8998eb5fe0c2dfp-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x3.413ef8bbd65f8998eb5fe0c2dfp-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x3.413ef8bbd65f8998eb5fe0c2dfp-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x2.e4f41ba030847669e9c7d60e918p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L 0x2.e4f41ba030847669e9c7d60e9182p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x2.e4f41ba030847669e9c7d60e918p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L 0x2.e4f41ba030847669e9c7d60e9182p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x2.e4f41ba030807669e9c7d60e917ep-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L 0x2.e4f41ba030807669e9c7d60e918p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x2.e4f41ba030807669e9c7d60e917ep-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L 0x2.e4f41ba030807669e9c7d60e918p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x2.e4f41ba031a07669e9c7d60e9202p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x2.e4f41ba031a07669e9c7d60e9204p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x2.e4f41ba031a07669e9c7d60e9202p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x2.e4f41ba031a07669e9c7d60e9204p-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x2.e4f41ba031a07669e9c7d60e92p-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x2.e4f41ba031a07669e9c7d60e92p-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x2.e4f41ba031a07669e9c7d60e92p-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x2.e4f41ba031a07669e9c7d60e93p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x2.e4f41ba02fa07669e9c7d60e9118p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L 0x2.e4f41ba02fa07669e9c7d60e9118p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x2.e4f41ba02fa07669e9c7d60e9118p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L 0x2.e4f41ba02fa07669e9c7d60e911ap-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x2.e4f41ba02fa07669e9c7d60e91p-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L 0x2.e4f41ba02fa07669e9c7d60e91p-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x2.e4f41ba02fa07669e9c7d60e91p-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L 0x2.e4f41ba02fa07669e9c7d60e92p-64L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9ee537b9e08p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9ee537b9e0cp-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9ee537b9e08p-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9ee537b9e0cp-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9ee537b9e08p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9ee537b9e0cp-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb29p-4L 0x2.eef4b9ee537b9e08p-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb291p-4L 0x2.eef4b9ee537b9e0cp-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e4cb5da7p-4L 0x2.eef4b9ee537b9e0b6e4ebf7ea0e8p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e4cb5da7p-4L 0x2.eef4b9ee537b9e0b6e4ebf7ea0e8p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e4cb5da7p-4L 0x2.eef4b9ee537b9e0b6e4ebf7ea0e8p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e4cb5da708p-4L 0x2.eef4b9ee537b9e0b6e4ebf7ea0eap-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e4cb5da4p-4L 0x2.eef4b9ee537b9e0b6e4ebf7eap-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e4cb5da8p-4L 0x2.eef4b9ee537b9e0b6e4ebf7ea1p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e4cb5da4p-4L 0x2.eef4b9ee537b9e0b6e4ebf7eap-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e4cb5da8p-4L 0x2.eef4b9ee537b9e0b6e4ebf7ea1p-24L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611ac6a7fb8p-24L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611ac6a7fbp-24L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611ac6a7fbp-24L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a37p-4L -0x5.110b4611ac6a7fbp-24L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611ac6a7fb8p-24L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611ac6a7fbp-24L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a36p-4L -0x5.110b4611ac6a7fbp-24L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a37p-4L -0x5.110b4611ac6a7fbp-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c0e8ccd1f98p-4L -0x5.110b4611ac6a7fb2f656f46890acp-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c0e8ccd1f98p-4L -0x5.110b4611ac6a7fb2f656f46890a8p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c0e8ccd1f98p-4L -0x5.110b4611ac6a7fb2f656f46890a8p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c0e8ccd1fap-4L -0x5.110b4611ac6a7fb2f656f46890a8p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c0e8ccd1cp-4L -0x5.110b4611ac6a7fb2f656f46892p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c0e8ccd2p-4L -0x5.110b4611ac6a7fb2f656f4689p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c0e8ccd1cp-4L -0x5.110b4611ac6a7fb2f656f4689p-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c0e8ccd2p-4L -0x5.110b4611ac6a7fb2f656f4689p-24L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x2.e537fd30c309ac14p-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x2.e537fd30c309ac14p-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x2.e537fd30c309ac14p-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x2.e537fd30c309ac18p-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x2.e537fd30c309ac14p-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x2.e537fd30c309ac14p-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.fffffffffffffffp-4L 0x2.e537fd30c309ac14p-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0x1p+0L 0x2.e537fd30c309ac18p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbce8p-4L 0x2.e537fd30c309ac14f9e72bb0767ap-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcfp-4L 0x2.e537fd30c309ac14f9e72bb0767ap-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbce8p-4L 0x2.e537fd30c309ac14f9e72bb0767ap-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcfp-4L 0x2.e537fd30c309ac14f9e72bb0767cp-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e537fd30c309ac14f9e72bb076p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e537fd30c309ac14f9e72bb076p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e537fd30c309ac14f9e72bb076p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffcp-4L 0x2.e537fd30c309ac14f9e72bb077p-52L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x1.1ac802cf3cf653e8p-52L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x1.1ac802cf3cf653e6p-52L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x1.1ac802cf3cf653e6p-52L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x1.1ac802cf3cf653e6p-52L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x1.1ac802cf3cf653e8p-52L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x1.1ac802cf3cf653e6p-52L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffp-4L -0x1.1ac802cf3cf653e6p-52L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0x1p+0L -0x1.1ac802cf3cf653e6p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff638p-4L -0x1.1ac802cf3cf653e6faf7ee16b482p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1ac802cf3cf653e6faf7ee16b482p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff638p-4L -0x1.1ac802cf3cf653e6faf7ee16b481p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1ac802cf3cf653e6faf7ee16b481p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff4p-4L -0x1.1ac802cf3cf653e6faf7ee16b5p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff8p-4L -0x1.1ac802cf3cf653e6faf7ee16b48p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff4p-4L -0x1.1ac802cf3cf653e6faf7ee16b48p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff8p-4L -0x1.1ac802cf3cf653e6faf7ee16b48p-52L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L -0x4.802cf3cf653e819p-64L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x4.802cf3cf653e8188p-64L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L -0x4.802cf3cf653e8188p-64L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x4.802cf3cf653e8188p-64L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L -0x4.802cf3cf653e819p-64L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x4.802cf3cf653e8188p-64L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffp-4L -0x4.802cf3cf653e8188p-64L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x4.802cf3cf653e8188p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x4.802cf3cf653e81889e19a21520f4p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x4.802cf3cf653e81889e19a21520f4p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x4.802cf3cf653e81889e19a21520fp-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x4.802cf3cf653e81889e19a21520fp-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x4.802cf3cf653e81889e19a21522p-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x4.802cf3cf653e81889e19a2152p-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x4.802cf3cf653e81889e19a2152p-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L -0x4.802cf3cf653e81889e19a2152p-64L : xfail inexact-ok += cpow downward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0xc.802cf3cf653e819p-64L : xfail inexact-ok += cpow tonearest ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0xc.802cf3cf653e818p-64L : xfail inexact-ok += cpow towardzero ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0xc.802cf3cf653e818p-64L : xfail inexact-ok += cpow upward ldbl-96-intel 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0xc.802cf3cf653e818p-64L : xfail inexact-ok += cpow downward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0xc.802cf3cf653e819p-64L : xfail inexact-ok += cpow tonearest ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0xc.802cf3cf653e818p-64L : xfail inexact-ok += cpow towardzero ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffp-4L -0xc.802cf3cf653e818p-64L : xfail inexact-ok += cpow upward ldbl-96-m68k 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0xc.802cf3cf653e818p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0xc.802cf3cf653e818087d7d5a37f78p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0xc.802cf3cf653e818087d7d5a37f78p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0xc.802cf3cf653e818087d7d5a37f7p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0xc.802cf3cf653e818087d7d5a37f7p-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffcp-4L -0xc.802cf3cf653e818087d7d5a38p-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0xc.802cf3cf653e818087d7d5a38p-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffcp-4L -0xc.802cf3cf653e818087d7d5a37cp-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0xc.802cf3cf653e818087d7d5a37cp-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.59f9df735e5a8186bf2689fbf714p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L -0x6.59f9df735e5a8186bf2689fbf714p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.59f9df735e5a8186bf2689fbf71p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L -0x6.59f9df735e5a8186bf2689fbf71p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.59f9df735e5e8186bf2689fbf71p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L -0x6.59f9df735e5e8186bf2689fbf71p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.59f9df735e5e8186bf2689fbf70cp-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L -0x6.59f9df735e5e8186bf2689fbf70cp-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.59f9df735d3e8186bf2689fbf834p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L -0x6.59f9df735d3e8186bf2689fbf834p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.59f9df735d3e8186bf2689fbf83p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L -0x6.59f9df735d3e8186bf2689fbf83p-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x6.59f9df735d3e8186bf2689fbfap-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L -0x6.59f9df735d3e8186bf2689fbf8p-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x6.59f9df735d3e8186bf2689fbf8p-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L -0x6.59f9df735d3e8186bf2689fbf8p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.59f9df735f3e8186bf2689fbf63p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0x6.59f9df735f3e8186bf2689fbf62cp-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.59f9df735f3e8186bf2689fbf62cp-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0x6.59f9df735f3e8186bf2689fbf62cp-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x6.59f9df735f3e8186bf2689fbf8p-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0x6.59f9df735f3e8186bf2689fbf6p-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x6.59f9df735f3e8186bf2689fbf6p-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a68p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0x6.59f9df735f3e8186bf2689fbf6p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8caff9af914p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8caff9af914p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8caff9af914p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfcp-4L 0x2.eef4b9ee59d597edd8caff9af916p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46fp-4L -0x5.110b4611a61085d8a21cb6efb24p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46f8p-4L -0x5.110b4611a61085d8a21cb6efb24p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46fp-4L -0x5.110b4611a61085d8a21cb6efb23cp-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46f8p-4L -0x5.110b4611a61085d8a21cb6efb23cp-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcd8p-4L 0x2.e59d9cceba3f9218571dcc6fc01ep-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcep-4L 0x2.e59d9cceba3f9218571dcc6fc01ep-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcd8p-4L 0x2.e59d9cceba3f9218571dcc6fc01ep-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcep-4L 0x2.e59d9cceba3f9218571dcc6fc02p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1a62633145c06de7a8e233903b9dp-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff648p-4L -0x1.1a62633145c06de7a8e233903b9cp-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1a62633145c06de7a8e233903b9cp-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff648p-4L -0x1.1a62633145c06de7a8e233903b9cp-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.d9cceba3f9218571dcc6fc42acc4p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f9218571dcc6fc42acc5p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.d9cceba3f9218571dcc6fc42acc4p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f9218571dcc6fc42acc5p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.2633145c06de7a8e233903bd534p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c06de7a8e233903bd533cp-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.2633145c06de7a8e233903bd533cp-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c06de7a8e233903bd533cp-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x5.8571dcc6fc42acc4044b87cbaaacp-112L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L 0x5.8571dcc6fc42acc4044b87cbaaacp-112L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x5.8571dcc6fc42acc4044b87cbaaacp-112L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L 0x5.8571dcc6fc42acc4044b87cbaabp-112L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.8571dcc6fc42acc4044b87cbaaabp-112L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L 0x1.8571dcc6fc42acc4044b87cbaaacp-112L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.8571dcc6fc42acc4044b87cbaaabp-112L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L 0x1.8571dcc6fc42acc4044b87cbaaacp-112L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.218571dcc6fc42acc4044b87cbabp-104L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x1.218571dcc6fc42acc4044b87cbabp-104L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.218571dcc6fc42acc4044b87cbabp-104L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x1.218571dcc6fc42acc4044b87cbacp-104L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0xd.e7a8e233903bd533bfbb4783456p-108L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0xd.e7a8e233903bd533bfbb47834558p-108L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0xd.e7a8e233903bd533bfbb47834558p-108L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf6p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0xd.e7a8e233903bd533bfbb47834558p-108L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8cafafb8214p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8cafafb8216p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8cafafb8214p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfcp-4L 0x2.eef4b9ee59d597edd8cafafb8216p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46fp-4L -0x5.110b4611a61085d8a21cbb8f293cp-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46f8p-4L -0x5.110b4611a61085d8a21cbb8f2938p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46fp-4L -0x5.110b4611a61085d8a21cbb8f2938p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46f8p-4L -0x5.110b4611a61085d8a21cbb8f2938p-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcd8p-4L 0x2.e59d9cceba3f91ce5fadf3d34924p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcep-4L 0x2.e59d9cceba3f91ce5fadf3d34924p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcd8p-4L 0x2.e59d9cceba3f91ce5fadf3d34924p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcep-4L 0x2.e59d9cceba3f91ce5fadf3d34926p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1a62633145c06e31a0520c2cb294p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff648p-4L -0x1.1a62633145c06e31a0520c2cb293p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1a62633145c06e31a0520c2cb293p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff648p-4L -0x1.1a62633145c06e31a0520c2cb293p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.d9cceba3f91ce5fadf3d34d330ccp-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f91ce5fadf3d34d330ccp-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.d9cceba3f91ce5fadf3d34d330ccp-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f91ce5fadf3d34d330cdp-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.2633145c06e31a0520c2cb2ccf3p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c06e31a0520c2cb2ccf3p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.2633145c06e31a0520c2cb2ccf2cp-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c06e31a0520c2cb2ccf2cp-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0xe.5fadf3d34d330ccf5693ad882e68p-116L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L 0xe.5fadf3d34d330ccf5693ad882e68p-116L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0xe.5fadf3d34d330ccf5693ad882e68p-116L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L 0xe.5fadf3d34d330ccf5693ad882e7p-116L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x3.1a0520c2cb2ccf330a96c5277d18p-112L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L -0x3.1a0520c2cb2ccf330a96c5277d18p-112L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x3.1a0520c2cb2ccf330a96c5277d16p-112L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L -0x3.1a0520c2cb2ccf330a96c5277d16p-112L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.1ce5fadf3d34d330ccf5693ad882p-104L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x1.1ce5fadf3d34d330ccf5693ad883p-104L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.1ce5fadf3d34d330ccf5693ad882p-104L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x1.1ce5fadf3d34d330ccf5693ad883p-104L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0xe.31a0520c2cb2ccf330a96c5277dp-108L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0xe.31a0520c2cb2ccf330a96c5277c8p-108L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0xe.31a0520c2cb2ccf330a96c5277c8p-108L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cf4p+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0xe.31a0520c2cb2ccf330a96c5277c8p-108L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8cb16b84c12p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8cb16b84c14p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8cb16b84c12p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfcp-4L 0x2.eef4b9ee59d597edd8cb16b84c14p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dcp-4L 0x2.eef4b9ee59d597edd8cb16b84cp-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142ep-4L 0x2.eef4b9ee59d597edd8cb16b84cp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dcp-4L 0x2.eef4b9ee59d597edd8cb16b84cp-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142ep-4L 0x2.eef4b9ee59d597edd8cb16b84dp-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46fp-4L -0x5.110b4611a61085d8a21c9fd25f6p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46f8p-4L -0x5.110b4611a61085d8a21c9fd25f5cp-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46fp-4L -0x5.110b4611a61085d8a21c9fd25f5cp-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46f8p-4L -0x5.110b4611a61085d8a21c9fd25f5cp-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf44p-4L -0x5.110b4611a61085d8a21c9fd26p-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf48p-4L -0x5.110b4611a61085d8a21c9fd26p-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf44p-4L -0x5.110b4611a61085d8a21c9fd25ep-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf48p-4L -0x5.110b4611a61085d8a21c9fd25ep-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcd8p-4L 0x2.e59d9cceba3f938a2c4d077e13p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcep-4L 0x2.e59d9cceba3f938a2c4d077e13p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcd8p-4L 0x2.e59d9cceba3f938a2c4d077e13p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcep-4L 0x2.e59d9cceba3f938a2c4d077e1302p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e59d9cceba3f938a2c4d077e13p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e59d9cceba3f938a2c4d077e13p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e59d9cceba3f938a2c4d077e13p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffcp-4L 0x2.e59d9cceba3f938a2c4d077e14p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1a62633145c06c75d3b2f881e8cap-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff648p-4L -0x1.1a62633145c06c75d3b2f881e8c9p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1a62633145c06c75d3b2f881e8c9p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff648p-4L -0x1.1a62633145c06c75d3b2f881e8c9p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff4p-4L -0x1.1a62633145c06c75d3b2f881e9p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff8p-4L -0x1.1a62633145c06c75d3b2f881e9p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff4p-4L -0x1.1a62633145c06c75d3b2f881e88p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff8p-4L -0x1.1a62633145c06c75d3b2f881e88p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.d9cceba3f938a2c4d077e170189ep-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f938a2c4d077e170189fp-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.d9cceba3f938a2c4d077e170189ep-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f938a2c4d077e170189fp-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x1.d9cceba3f938a2c4d077e170188p-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f938a2c4d077e170188p-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x1.d9cceba3f938a2c4d077e170188p-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f938a2c4d077e17019p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.2633145c06c75d3b2f881e8fe784p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c06c75d3b2f881e8fe78p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.2633145c06c75d3b2f881e8fe78p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c06c75d3b2f881e8fe78p-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x6.2633145c06c75d3b2f881e8fe8p-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c06c75d3b2f881e8fe8p-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x6.2633145c06c75d3b2f881e8fe6p-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c06c75d3b2f881e8fe6p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.ca2c4d077e17018974eb7088b715p-108L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L 0x1.ca2c4d077e17018974eb7088b716p-108L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.ca2c4d077e17018974eb7088b715p-108L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L 0x1.ca2c4d077e17018974eb7088b716p-108L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.8a2c4d077e17018974eb7088b714p-108L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L 0x1.8a2c4d077e17018974eb7088b715p-108L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.8a2c4d077e17018974eb7088b714p-108L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L 0x1.8a2c4d077e17018974eb7088b715p-108L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.38a2c4d077e17018974eb7088b75p-104L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x1.38a2c4d077e17018974eb7088b76p-104L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.38a2c4d077e17018974eb7088b75p-104L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x1.38a2c4d077e17018974eb7088b76p-104L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x1.38a2c4d077e17018974eb7088bp-104L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x1.38a2c4d077e17018974eb7088b8p-104L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x1.38a2c4d077e17018974eb7088bp-104L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L 0x1.38a2c4d077e17018974eb7088b8p-104L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0xc.75d3b2f881e8fe768b148f774928p-108L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0xc.75d3b2f881e8fe768b148f77492p-108L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0xc.75d3b2f881e8fe768b148f77492p-108L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0xc.75d3b2f881e8fe768b148f77492p-108L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0xc.75d3b2f881e8fe768b148f774cp-108L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0xc.75d3b2f881e8fe768b148f7748p-108L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0xc.75d3b2f881e8fe768b148f7748p-108L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809dp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0xc.75d3b2f881e8fe768b148f7748p-108L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8c8c6fccc3ap-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8c8c6fccc3ap-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfb8p-4L 0x2.eef4b9ee59d597edd8c8c6fccc3ap-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dfcp-4L 0x2.eef4b9ee59d597edd8c8c6fccc3cp-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dcp-4L 0x2.eef4b9ee59d597edd8c8c6fcccp-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142ep-4L 0x2.eef4b9ee59d597edd8c8c6fcccp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142dcp-4L 0x2.eef4b9ee59d597edd8c8c6fcccp-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed8p+0L : 0xf.ffffffffffbb290924e3a142ep-4L 0x2.eef4b9ee59d597edd8c8c6fccdp-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46fp-4L -0x5.110b4611a61085d8a21eef8ddc48p-24L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46f8p-4L -0x5.110b4611a61085d8a21eef8ddc44p-24L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46fp-4L -0x5.110b4611a61085d8a21eef8ddc44p-24L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf46f8p-4L -0x5.110b4611a61085d8a21eef8ddc44p-24L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf44p-4L -0x5.110b4611a61085d8a21eef8ddep-24L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf48p-4L -0x5.110b4611a61085d8a21eef8ddcp-24L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf44p-4L -0x5.110b4611a61085d8a21eef8ddcp-24L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487edp+0L : 0xf.ffffffffff32a3661c108faf48p-4L -0x5.110b4611a61085d8a21eef8ddcp-24L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcd8p-4L 0x2.e59d9cceba3f6e8e7460b942960ep-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcep-4L 0x2.e59d9cceba3f6e8e7460b942961p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcd8p-4L 0x2.e59d9cceba3f6e8e7460b942960ep-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcep-4L 0x2.e59d9cceba3f6e8e7460b942961p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e59d9cceba3f6e8e7460b94296p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e59d9cceba3f6e8e7460b94296p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffbcp-4L 0x2.e59d9cceba3f6e8e7460b94296p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b464p+0L : 0xf.ffffffffffffffffffffffffcp-4L 0x2.e59d9cceba3f6e8e7460b94297p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1a62633145c091718b9f46bd6442p-52L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff648p-4L -0x1.1a62633145c091718b9f46bd6441p-52L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff64p-4L -0x1.1a62633145c091718b9f46bd6441p-52L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff648p-4L -0x1.1a62633145c091718b9f46bd6441p-52L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff4p-4L -0x1.1a62633145c091718b9f46bd648p-52L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff8p-4L -0x1.1a62633145c091718b9f46bd648p-52L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff4p-4L -0x1.1a62633145c091718b9f46bd64p-52L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b46p+0L : 0xf.fffffffffffffffffffffffff8p-4L -0x1.1a62633145c091718b9f46bd64p-52L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.d9cceba3f6e8e7460b9429b21c69p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f6e8e7460b9429b21c69p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffff8p-4L 0x1.d9cceba3f6e8e7460b9429b21c69p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f6e8e7460b9429b21c6ap-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x1.d9cceba3f6e8e7460b9429b21cp-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f6e8e7460b9429b21c8p-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0xf.fffffffffffffffffffffffffcp-4L 0x1.d9cceba3f6e8e7460b9429b21cp-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a8p+0L : 0x1p+0L 0x1.d9cceba3f6e8e7460b9429b21c8p-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.2633145c091718b9f46bd64de0c8p-64L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c091718b9f46bd64de0c4p-64L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x6.2633145c091718b9f46bd64de0c4p-64L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c091718b9f46bd64de0c4p-64L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x6.2633145c091718b9f46bd64de2p-64L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c091718b9f46bd64dep-64L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x6.2633145c091718b9f46bd64dep-64L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611ap+0L : 0x1p+0L -0x6.2633145c091718b9f46bd64dep-64L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x2.3318b9f46bd64de2f0226f7108d6p-104L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L -0x2.3318b9f46bd64de2f0226f7108d6p-104L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x2.3318b9f46bd64de2f0226f7108d4p-104L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06e4p+0L : 0x1p+0L -0x2.3318b9f46bd64de2f0226f7108d4p-104L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x2.3718b9f46bd64de2f0226f7108d4p-104L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L -0x2.3718b9f46bd64de2f0226f7108d4p-104L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x2.3718b9f46bd64de2f0226f7108d2p-104L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06ep+0L : 0x1p+0L -0x2.3718b9f46bd64de2f0226f7108d2p-104L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x1.1718b9f46bd64de2f0226f71093ap-104L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L -0x1.1718b9f46bd64de2f0226f710939p-104L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x1.1718b9f46bd64de2f0226f710939p-104L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L -0x1.1718b9f46bd64de2f0226f710939p-104L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x1.1718b9f46bd64de2f0226f71098p-104L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L -0x1.1718b9f46bd64de2f0226f7109p-104L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x1.1718b9f46bd64de2f0226f7109p-104L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c08p+0L : 0x1p+0L -0x1.1718b9f46bd64de2f0226f7109p-104L : xfail inexact-ok += cpow downward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x3.1718b9f46bd64de2f0226f710886p-104L : xfail inexact-ok += cpow tonearest ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0x3.1718b9f46bd64de2f0226f710884p-104L : xfail inexact-ok += cpow towardzero ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffff8p-4L -0x3.1718b9f46bd64de2f0226f710884p-104L : xfail inexact-ok += cpow upward ldbl-128 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0x3.1718b9f46bd64de2f0226f710884p-104L : xfail inexact-ok += cpow downward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x3.1718b9f46bd64de2f0226f7109p-104L : xfail inexact-ok += cpow tonearest ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0x3.1718b9f46bd64de2f0226f7109p-104L : xfail inexact-ok += cpow towardzero ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0xf.fffffffffffffffffffffffffcp-4L -0x3.1718b9f46bd64de2f0226f7108p-104L : xfail inexact-ok += cpow upward ldbl-128ibm 0x2.b7e151628aed2a6abf7158809cp+0L 0x0p+0L 0x0p+0L 0x6.487ed5110b4611a62633145c06p+0L : 0x1p+0L -0x3.1718b9f46bd64de2f0226f7108p-104L : xfail inexact-ok +cpow 2 3 4 0 += cpow downward flt-32 0x2p+0f 0x3p+0f 0x4p+0f 0x0p+0f : -0x7.7p+4f -0x7.8p+4f : inexact-ok += cpow tonearest flt-32 0x2p+0f 0x3p+0f 0x4p+0f 0x0p+0f : -0x7.7p+4f -0x7.8p+4f : inexact-ok += cpow towardzero flt-32 0x2p+0f 0x3p+0f 0x4p+0f 0x0p+0f : -0x7.7p+4f -0x7.8p+4f : inexact-ok += cpow upward flt-32 0x2p+0f 0x3p+0f 0x4p+0f 0x0p+0f : -0x7.7p+4f -0x7.8p+4f : inexact-ok += cpow downward dbl-64 0x2p+0 0x3p+0 0x4p+0 0x0p+0 : -0x7.7p+4 -0x7.8p+4 : inexact-ok += cpow tonearest dbl-64 0x2p+0 0x3p+0 0x4p+0 0x0p+0 : -0x7.7p+4 -0x7.8p+4 : inexact-ok += cpow towardzero dbl-64 0x2p+0 0x3p+0 0x4p+0 0x0p+0 : -0x7.7p+4 -0x7.8p+4 : inexact-ok += cpow upward dbl-64 0x2p+0 0x3p+0 0x4p+0 0x0p+0 : -0x7.7p+4 -0x7.8p+4 : inexact-ok += cpow downward ldbl-96-intel 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow tonearest ldbl-96-intel 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow towardzero ldbl-96-intel 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow upward ldbl-96-intel 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow downward ldbl-96-m68k 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow tonearest ldbl-96-m68k 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow towardzero ldbl-96-m68k 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow upward ldbl-96-m68k 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow downward ldbl-128 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow tonearest ldbl-128 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow towardzero ldbl-128 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow upward ldbl-128 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow downward ldbl-128ibm 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow tonearest ldbl-128ibm 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow towardzero ldbl-128ibm 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok += cpow upward ldbl-128ibm 0x2p+0L 0x3p+0L 0x4p+0L 0x0p+0L : -0x7.7p+4L -0x7.8p+4L : inexact-ok +cpow 0.75 1.25 0.75 1.25 += cpow downward flt-32 0xcp-4f 0x1.4p+0f 0xcp-4f 0x1.4p+0f : 0x1.e14e46p-4f 0x5.8b7aep-4f : inexact-ok += cpow tonearest flt-32 0xcp-4f 0x1.4p+0f 0xcp-4f 0x1.4p+0f : 0x1.e14e48p-4f 0x5.8b7ae8p-4f : inexact-ok += cpow towardzero flt-32 0xcp-4f 0x1.4p+0f 0xcp-4f 0x1.4p+0f : 0x1.e14e46p-4f 0x5.8b7aep-4f : inexact-ok += cpow upward flt-32 0xcp-4f 0x1.4p+0f 0xcp-4f 0x1.4p+0f : 0x1.e14e48p-4f 0x5.8b7ae8p-4f : inexact-ok += cpow downward dbl-64 0xcp-4 0x1.4p+0 0xcp-4 0x1.4p+0 : 0x1.e14e4796fd3f1p-4 0x5.8b7ae4dbf0a78p-4 : inexact-ok += cpow tonearest dbl-64 0xcp-4 0x1.4p+0 0xcp-4 0x1.4p+0 : 0x1.e14e4796fd3f1p-4 0x5.8b7ae4dbf0a78p-4 : inexact-ok += cpow towardzero dbl-64 0xcp-4 0x1.4p+0 0xcp-4 0x1.4p+0 : 0x1.e14e4796fd3f1p-4 0x5.8b7ae4dbf0a78p-4 : inexact-ok += cpow upward dbl-64 0xcp-4 0x1.4p+0 0xcp-4 0x1.4p+0 : 0x1.e14e4796fd3f2p-4 0x5.8b7ae4dbf0a7cp-4 : inexact-ok += cpow downward ldbl-96-intel 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16p-4L 0x5.8b7ae4dbf0a7933p-4L : inexact-ok += cpow tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f1602p-4L 0x5.8b7ae4dbf0a79338p-4L : inexact-ok += cpow towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16p-4L 0x5.8b7ae4dbf0a7933p-4L : inexact-ok += cpow upward ldbl-96-intel 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f1602p-4L 0x5.8b7ae4dbf0a79338p-4L : inexact-ok += cpow downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16p-4L 0x5.8b7ae4dbf0a7933p-4L : inexact-ok += cpow tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f1602p-4L 0x5.8b7ae4dbf0a79338p-4L : inexact-ok += cpow towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16p-4L 0x5.8b7ae4dbf0a7933p-4L : inexact-ok += cpow upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f1602p-4L 0x5.8b7ae4dbf0a79338p-4L : inexact-ok += cpow downward ldbl-128 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16019f9eb01485e3p-4L 0x5.8b7ae4dbf0a7933416f4a46c0bb8p-4L : inexact-ok += cpow tonearest ldbl-128 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16019f9eb01485e3p-4L 0x5.8b7ae4dbf0a7933416f4a46c0bbcp-4L : inexact-ok += cpow towardzero ldbl-128 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16019f9eb01485e3p-4L 0x5.8b7ae4dbf0a7933416f4a46c0bb8p-4L : inexact-ok += cpow upward ldbl-128 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16019f9eb01485e4p-4L 0x5.8b7ae4dbf0a7933416f4a46c0bbcp-4L : inexact-ok += cpow downward ldbl-128ibm 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16019f9eb014858p-4L 0x5.8b7ae4dbf0a7933416f4a46c0ap-4L : inexact-ok += cpow tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16019f9eb01486p-4L 0x5.8b7ae4dbf0a7933416f4a46c0cp-4L : inexact-ok += cpow towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16019f9eb014858p-4L 0x5.8b7ae4dbf0a7933416f4a46c0ap-4L : inexact-ok += cpow upward ldbl-128ibm 0xcp-4L 0x1.4p+0L 0xcp-4L 0x1.4p+0L : 0x1.e14e4796fd3f16019f9eb01486p-4L 0x5.8b7ae4dbf0a7933416f4a46c0cp-4L : inexact-ok +cpow 0.75 1.25 1.0 1.0 += cpow downward flt-32 0xcp-4f 0x1.4p+0f 0x1p+0f 0x1p+0f : 0x1.5aea02p-4f 0x8.366b1p-4f : inexact-ok += cpow tonearest flt-32 0xcp-4f 0x1.4p+0f 0x1p+0f 0x1p+0f : 0x1.5aea04p-4f 0x8.366b2p-4f : inexact-ok += cpow towardzero flt-32 0xcp-4f 0x1.4p+0f 0x1p+0f 0x1p+0f : 0x1.5aea02p-4f 0x8.366b1p-4f : inexact-ok += cpow upward flt-32 0xcp-4f 0x1.4p+0f 0x1p+0f 0x1p+0f : 0x1.5aea04p-4f 0x8.366b2p-4f : inexact-ok += cpow downward dbl-64 0xcp-4 0x1.4p+0 0x1p+0 0x1p+0 : 0x1.5aea037cc815ap-4 0x8.366b1e23e511p-4 : inexact-ok += cpow tonearest dbl-64 0xcp-4 0x1.4p+0 0x1p+0 0x1p+0 : 0x1.5aea037cc815bp-4 0x8.366b1e23e5118p-4 : inexact-ok += cpow towardzero dbl-64 0xcp-4 0x1.4p+0 0x1p+0 0x1p+0 : 0x1.5aea037cc815ap-4 0x8.366b1e23e511p-4 : inexact-ok += cpow upward dbl-64 0xcp-4 0x1.4p+0 0x1p+0 0x1p+0 : 0x1.5aea037cc815bp-4 0x8.366b1e23e5118p-4 : inexact-ok += cpow downward ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16p-4L 0x8.366b1e23e511575p-4L : inexact-ok += cpow tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16p-4L 0x8.366b1e23e511576p-4L : inexact-ok += cpow towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16p-4L 0x8.366b1e23e511575p-4L : inexact-ok += cpow upward ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad18p-4L 0x8.366b1e23e511576p-4L : inexact-ok += cpow downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16p-4L 0x8.366b1e23e511575p-4L : inexact-ok += cpow tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16p-4L 0x8.366b1e23e511576p-4L : inexact-ok += cpow towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16p-4L 0x8.366b1e23e511575p-4L : inexact-ok += cpow upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad18p-4L 0x8.366b1e23e511576p-4L : inexact-ok += cpow downward ldbl-128 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16ef12e71ae37cp-4L 0x8.366b1e23e511575a102515116418p-4L : inexact-ok += cpow tonearest ldbl-128 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16ef12e71ae37dp-4L 0x8.366b1e23e511575a102515116418p-4L : inexact-ok += cpow towardzero ldbl-128 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16ef12e71ae37cp-4L 0x8.366b1e23e511575a102515116418p-4L : inexact-ok += cpow upward ldbl-128 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16ef12e71ae37dp-4L 0x8.366b1e23e511575a10251511642p-4L : inexact-ok += cpow downward ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16ef12e71ae3p-4L 0x8.366b1e23e511575a1025151164p-4L : inexact-ok += cpow tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16ef12e71ae38p-4L 0x8.366b1e23e511575a1025151164p-4L : inexact-ok += cpow towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16ef12e71ae3p-4L 0x8.366b1e23e511575a1025151164p-4L : inexact-ok += cpow upward ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x1p+0L 0x1p+0L : 0x1.5aea037cc815ad16ef12e71ae38p-4L 0x8.366b1e23e511575a1025151168p-4L : inexact-ok +cpow 0.75 1.25 1.0 0.0 += cpow downward flt-32 0xcp-4f 0x1.4p+0f 0x1p+0f 0x0p+0f : 0xcp-4f 0x1.4p+0f : inexact-ok += cpow tonearest flt-32 0xcp-4f 0x1.4p+0f 0x1p+0f 0x0p+0f : 0xcp-4f 0x1.4p+0f : inexact-ok += cpow towardzero flt-32 0xcp-4f 0x1.4p+0f 0x1p+0f 0x0p+0f : 0xcp-4f 0x1.4p+0f : inexact-ok += cpow upward flt-32 0xcp-4f 0x1.4p+0f 0x1p+0f 0x0p+0f : 0xcp-4f 0x1.4p+0f : inexact-ok += cpow downward dbl-64 0xcp-4 0x1.4p+0 0x1p+0 0x0p+0 : 0xcp-4 0x1.4p+0 : inexact-ok += cpow tonearest dbl-64 0xcp-4 0x1.4p+0 0x1p+0 0x0p+0 : 0xcp-4 0x1.4p+0 : inexact-ok += cpow towardzero dbl-64 0xcp-4 0x1.4p+0 0x1p+0 0x0p+0 : 0xcp-4 0x1.4p+0 : inexact-ok += cpow upward dbl-64 0xcp-4 0x1.4p+0 0x1p+0 0x0p+0 : 0xcp-4 0x1.4p+0 : inexact-ok += cpow downward ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow upward ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow downward ldbl-128 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow tonearest ldbl-128 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow towardzero ldbl-128 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow upward ldbl-128 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow downward ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok += cpow upward ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x1p+0L 0x0p+0L : 0xcp-4L 0x1.4p+0L : inexact-ok +cpow 0.75 1.25 0.0 1.0 += cpow downward flt-32 0xcp-4f 0x1.4p+0f 0x0p+0f 0x1p+0f : 0x5.4f283p-4f 0x2.19f68p-4f : inexact-ok += cpow tonearest flt-32 0xcp-4f 0x1.4p+0f 0x0p+0f 0x1p+0f : 0x5.4f283p-4f 0x2.19f68p-4f : inexact-ok += cpow towardzero flt-32 0xcp-4f 0x1.4p+0f 0x0p+0f 0x1p+0f : 0x5.4f283p-4f 0x2.19f68p-4f : inexact-ok += cpow upward flt-32 0xcp-4f 0x1.4p+0f 0x0p+0f 0x1p+0f : 0x5.4f2838p-4f 0x2.19f684p-4f : inexact-ok += cpow downward dbl-64 0xcp-4 0x1.4p+0 0x0p+0 0x1p+0 : 0x5.4f283113fa8a4p-4 0x2.19f6810e8fdb4p-4 : inexact-ok += cpow tonearest dbl-64 0xcp-4 0x1.4p+0 0x0p+0 0x1p+0 : 0x5.4f283113fa8a4p-4 0x2.19f6810e8fdb4p-4 : inexact-ok += cpow towardzero dbl-64 0xcp-4 0x1.4p+0 0x0p+0 0x1p+0 : 0x5.4f283113fa8a4p-4 0x2.19f6810e8fdb4p-4 : inexact-ok += cpow upward dbl-64 0xcp-4 0x1.4p+0 0x0p+0 0x1p+0 : 0x5.4f283113fa8a8p-4 0x2.19f6810e8fdb6p-4 : inexact-ok += cpow downward ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a5258p-4L 0x2.19f6810e8fdb4088p-4L : inexact-ok += cpow tonearest ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a5258p-4L 0x2.19f6810e8fdb408cp-4L : inexact-ok += cpow towardzero ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a5258p-4L 0x2.19f6810e8fdb4088p-4L : inexact-ok += cpow upward ldbl-96-intel 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a526p-4L 0x2.19f6810e8fdb408cp-4L : inexact-ok += cpow downward ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a5258p-4L 0x2.19f6810e8fdb4088p-4L : inexact-ok += cpow tonearest ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a5258p-4L 0x2.19f6810e8fdb408cp-4L : inexact-ok += cpow towardzero ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a5258p-4L 0x2.19f6810e8fdb4088p-4L : inexact-ok += cpow upward ldbl-96-m68k 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a526p-4L 0x2.19f6810e8fdb408cp-4L : inexact-ok += cpow downward ldbl-128 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a525b30b312aa4efp-4L 0x2.19f6810e8fdb408ac45c5250ac92p-4L : inexact-ok += cpow tonearest ldbl-128 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a525b30b312aa4efp-4L 0x2.19f6810e8fdb408ac45c5250ac94p-4L : inexact-ok += cpow towardzero ldbl-128 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a525b30b312aa4efp-4L 0x2.19f6810e8fdb408ac45c5250ac92p-4L : inexact-ok += cpow upward ldbl-128 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a525b30b312aa4ef4p-4L 0x2.19f6810e8fdb408ac45c5250ac94p-4L : inexact-ok += cpow downward ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a525b30b312aa4ep-4L 0x2.19f6810e8fdb408ac45c5250acp-4L : inexact-ok += cpow tonearest ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a525b30b312aa4ep-4L 0x2.19f6810e8fdb408ac45c5250adp-4L : inexact-ok += cpow towardzero ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a525b30b312aa4ep-4L 0x2.19f6810e8fdb408ac45c5250acp-4L : inexact-ok += cpow upward ldbl-128ibm 0xcp-4L 0x1.4p+0L 0x0p+0L 0x1p+0L : 0x5.4f283113fa8a525b30b312aa5p-4L 0x2.19f6810e8fdb408ac45c5250adp-4L : inexact-ok csqrt 0 0 = csqrt downward flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok = csqrt tonearest flt-32 0x0p+0f 0x0p+0f : 0x0p+0f 0x0p+0f : inexact-ok diff --git a/math/gen-auto-libm-tests.c b/math/gen-auto-libm-tests.c index c96615fbfa..e8a5393fa9 100644 --- a/math/gen-auto-libm-tests.c +++ b/math/gen-auto-libm-tests.c @@ -409,6 +409,9 @@ typedef enum /* MPC function with a single complex argument and one complex result. */ mpc_c_c, + /* MPC function with two complex arguments and one complex + result. */ + mpc_cc_c, } func_calc_method; /* Description of how to calculate a function. */ @@ -426,6 +429,7 @@ typedef struct int (*mpfr_f_11) (mpfr_t, mpfr_t, const mpfr_t, mpfr_rnd_t); int (*mpc_c_f) (mpfr_t, const mpc_t, mpfr_rnd_t); int (*mpc_c_c) (mpc_t, const mpc_t, mpc_rnd_t); + int (*mpc_cc_c) (mpc_t, const mpc_t, const mpc_t, mpc_rnd_t); } func; } func_calc_desc; @@ -512,6 +516,8 @@ static test_function test_functions[] = FUNC_mpc_c_c ("clog10", mpc_log10, false), FUNC_mpfr_f_f ("cos", mpfr_cos, false), FUNC_mpfr_f_f ("cosh", mpfr_cosh, false), + FUNC ("cpow", ARGS4 (type_fp, type_fp, type_fp, type_fp), + RET2 (type_fp, type_fp), false, true, CALC (mpc_cc_c, mpc_pow)), FUNC_mpc_c_c ("csin", mpc_sin, false), FUNC_mpc_c_c ("csinh", mpc_sinh, false), FUNC_mpc_c_c ("csqrt", mpc_sqrt, false), @@ -876,6 +882,18 @@ special_fill_2pi_3 (mpfr_t res0, mpfr_t res1, fp_format format) return 2; } +static size_t +special_fill_2pi (mpfr_t res0, mpfr_t res1, fp_format format) +{ + mpfr_init2 (res0, fp_formats[format].mant_dig); + mpfr_const_pi (res0, MPFR_RNDU); + assert_exact (mpfr_mul_ui (res0, res0, 2, MPFR_RNDN)); + mpfr_init2 (res1, fp_formats[format].mant_dig); + mpfr_const_pi (res1, MPFR_RNDD); + assert_exact (mpfr_mul_ui (res1, res1, 2, MPFR_RNDN)); + return 2; +} + static size_t special_fill_e (mpfr_t res0, mpfr_t res1, fp_format format) { @@ -943,6 +961,7 @@ static const special_real_input special_real_inputs[] = { "-pi/6", special_fill_minus_pi_6 }, { "pi/3", special_fill_pi_3 }, { "2pi/3", special_fill_2pi_3 }, + { "2pi", special_fill_2pi }, { "e", special_fill_e }, { "1/e", special_fill_1_e }, { "e-1", special_fill_e_minus_1 }, @@ -1364,6 +1383,9 @@ calc_generic_results (generic_value *outputs, generic_value *inputs, const func_calc_desc *calc) { bool inexact; + int mpc_ternary; + mpc_t ci1, ci2, co; + switch (calc->method) { case mpfr_f_f: @@ -1428,13 +1450,12 @@ calc_generic_results (generic_value *outputs, generic_value *inputs, assert (inputs[1].type == gtype_fp); outputs[0].type = gtype_fp; mpfr_init (outputs[0].value.f); - mpc_t ci; - mpc_init2 (ci, internal_precision); - assert_exact (mpc_set_fr_fr (ci, inputs[0].value.f, inputs[1].value.f, + mpc_init2 (ci1, internal_precision); + assert_exact (mpc_set_fr_fr (ci1, inputs[0].value.f, inputs[1].value.f, MPC_RNDNN)); - inexact = calc->func.mpc_c_f (outputs[0].value.f, ci, MPFR_RNDZ); + inexact = calc->func.mpc_c_f (outputs[0].value.f, ci1, MPFR_RNDZ); adjust_real (outputs[0].value.f, inexact); - mpc_clear (ci); + mpc_clear (ci1); break; case mpc_c_c: @@ -1444,19 +1465,46 @@ calc_generic_results (generic_value *outputs, generic_value *inputs, mpfr_init (outputs[0].value.f); outputs[1].type = gtype_fp; mpfr_init (outputs[1].value.f); - mpc_t co; - mpc_init2 (ci, internal_precision); + mpc_init2 (ci1, internal_precision); mpc_init2 (co, internal_precision); - assert_exact (mpc_set_fr_fr (ci, inputs[0].value.f, inputs[1].value.f, + assert_exact (mpc_set_fr_fr (ci1, inputs[0].value.f, inputs[1].value.f, + MPC_RNDNN)); + mpc_ternary = calc->func.mpc_c_c (co, ci1, MPC_RNDZZ); + assert_exact (mpfr_set (outputs[0].value.f, mpc_realref (co), + MPFR_RNDN)); + assert_exact (mpfr_set (outputs[1].value.f, mpc_imagref (co), + MPFR_RNDN)); + adjust_real (outputs[0].value.f, MPC_INEX_RE (mpc_ternary)); + adjust_real (outputs[1].value.f, MPC_INEX_IM (mpc_ternary)); + mpc_clear (ci1); + mpc_clear (co); + break; + + case mpc_cc_c: + assert (inputs[0].type == gtype_fp); + assert (inputs[1].type == gtype_fp); + assert (inputs[2].type == gtype_fp); + assert (inputs[3].type == gtype_fp); + outputs[0].type = gtype_fp; + mpfr_init (outputs[0].value.f); + outputs[1].type = gtype_fp; + mpfr_init (outputs[1].value.f); + mpc_init2 (ci1, internal_precision); + mpc_init2 (ci2, internal_precision); + mpc_init2 (co, internal_precision); + assert_exact (mpc_set_fr_fr (ci1, inputs[0].value.f, inputs[1].value.f, + MPC_RNDNN)); + assert_exact (mpc_set_fr_fr (ci2, inputs[2].value.f, inputs[3].value.f, MPC_RNDNN)); - int mpc_ternary = calc->func.mpc_c_c (co, ci, MPC_RNDZZ); + mpc_ternary = calc->func.mpc_cc_c (co, ci1, ci2, MPC_RNDZZ); assert_exact (mpfr_set (outputs[0].value.f, mpc_realref (co), MPFR_RNDN)); assert_exact (mpfr_set (outputs[1].value.f, mpc_imagref (co), MPFR_RNDN)); adjust_real (outputs[0].value.f, MPC_INEX_RE (mpc_ternary)); adjust_real (outputs[1].value.f, MPC_INEX_IM (mpc_ternary)); - mpc_clear (ci); + mpc_clear (ci1); + mpc_clear (ci2); mpc_clear (co); break; diff --git a/math/libm-test.inc b/math/libm-test.inc index ee183eab0e..abe12dbe2e 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -6564,20 +6564,9 @@ cosh_test_upward (void) static const struct test_cc_c_data cpow_test_data[] = { - TEST_cc_c (cpow, 1, 0, 0, 0, 1.0, 0.0), - TEST_cc_c (cpow, 2, 0, 10, 0, 1024.0, 0.0), -#if 0 - /* Disabled until we fix bug 14473. */ - TEST_cc_c (cpow, M_El, 0, 0, 2 * M_PIl, 1.0, 0.0), -#endif - TEST_cc_c (cpow, 2, 3, 4, 0, -119.0, -120.0), - TEST_cc_c (cpow, qnan_value, qnan_value, qnan_value, qnan_value, qnan_value, qnan_value), - TEST_cc_c (cpow, 0.75L, 1.25L, 0.75L, 1.25L, 0.117506293914473555420279832210420483L, 0.346552747708338676483025352060418001L), - TEST_cc_c (cpow, 0.75L, 1.25L, 1.0L, 1.0L, 0.0846958290317209430433805274189191353L, 0.513285749182902449043287190519090481L), - TEST_cc_c (cpow, 0.75L, 1.25L, 1.0L, 0.0L, 0.75L, 1.25L), - TEST_cc_c (cpow, 0.75L, 1.25L, 0.0L, 1.0L, 0.331825439177608832276067945276730566L, 0.131338600281188544930936345230903032L), + AUTO_TESTS_cc_c (cpow, tonearest), }; static void diff --git a/sysdeps/i386/fpu/libm-test-ulps b/sysdeps/i386/fpu/libm-test-ulps index ff70904acf..50bbe77000 100644 --- a/sysdeps/i386/fpu/libm-test-ulps +++ b/sysdeps/i386/fpu/libm-test-ulps @@ -6886,6 +6886,55 @@ ldouble: 3 Test "Imaginary part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": double: 1 idouble: 1 +Test "Real part of: cpow (0x2p+0 + +0 i, 0xap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +double: 1 +float: 5 +idouble: 1 +ifloat: 5 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, +0 + 0x1p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + 0x1p+0 i)": +double: 2 +float: 4 +idouble: 2 +ifloat: 4 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cpow (0xcp-4 + 0x1.4p+0 i, 0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": ildouble: 1 ldouble: 1 diff --git a/sysdeps/x86_64/fpu/libm-test-ulps b/sysdeps/x86_64/fpu/libm-test-ulps index cad38a3277..6ff7008472 100644 --- a/sysdeps/x86_64/fpu/libm-test-ulps +++ b/sysdeps/x86_64/fpu/libm-test-ulps @@ -7759,6 +7759,46 @@ idouble: 2 ifloat: 3 ildouble: 3 ldouble: 3 +Test "Real part of: cpow (0x2p+0 + +0 i, 0xap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +double: 1 +float: 5 +idouble: 1 +ifloat: 5 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +float: 2 +ifloat: 2 +ildouble: 4 +ldouble: 4 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, +0 + 0x1p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + 0x1p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 3 +ldouble: 3 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cpow (0xcp-4 + 0x1.4p+0 i, 0xcp-4 + 0x1.4p+0 i)": +ildouble: 2 +ldouble: 2 Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": ildouble: 1 ldouble: 1 -- cgit v1.2.3 From 31e3a40588f6b215f2583c12ba29ff5cea63d2ef Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 20 Dec 2013 21:03:39 +0000 Subject: Add more libm-test coverage of [a-c]* real functions. Various libm functions have inadequate test coverage in libm-test.inc / auto-libm-test-in - failing to cover all the usual special cases (infinities, NaNs, zero, large and small finite values, subnormals) as well as a reasonable range of ordinary inputs and, where appropriate, inputs close to the thresholds for underflow and overflow. This patch improves test coverage for real functions [a-c]* (with the expectation of adding more coverage for other functions later). Tested x86_64 and x86 and ulps updated accordingly (and eight glibc bugs and one C11 DR filed for issues found in the process). * math/auto-libm-test-in: Add more tests of acos, acosh, asin, asinh, atan, atan2, atanh, cbrt, cos and cosh. * math/auto-libm-test-out: Regenerated. * math/libm-test.inc (acosh_test_data): Add more tests. (atanh_test_data): Likewise. (ceil_test_data): Likewise. (copysign_test_data): Likewise. * sysdeps/i386/fpu/libm-test-ulps: Update. * sysdeps/x86_64/fpu/libm-test-ulps: Likewise. --- ChangeLog | 10 + math/auto-libm-test-in | 121 + math/auto-libm-test-out | 12536 ++++++++++++++++++++++++++++++++++++ math/libm-test.inc | 30 + sysdeps/i386/fpu/libm-test-ulps | 483 +- sysdeps/x86_64/fpu/libm-test-ulps | 531 +- 6 files changed, 13700 insertions(+), 11 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 80fab8e00e..e05e23485a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,15 @@ 2013-12-20 Joseph Myers + * math/auto-libm-test-in: Add more tests of acos, acosh, asin, + asinh, atan, atan2, atanh, cbrt, cos and cosh. + * math/auto-libm-test-out: Regenerated. + * math/libm-test.inc (acosh_test_data): Add more tests. + (atanh_test_data): Likewise. + (ceil_test_data): Likewise. + (copysign_test_data): Likewise. + * sysdeps/i386/fpu/libm-test-ulps: Update. + * sysdeps/x86_64/fpu/libm-test-ulps: Likewise. + * timezone/checktab.awk: Update from tzcode 2013i. * timezone/private.h: Likewise. * timezone/scheck.c: Likewise. diff --git a/math/auto-libm-test-in b/math/auto-libm-test-in index 947b2af11a..532b17e4a8 100644 --- a/math/auto-libm-test-in +++ b/math/auto-libm-test-in @@ -33,9 +33,17 @@ acos 0x0.ffffffffffffp0 acos -0x0.ffffffffffffp0 acos 0x0.ffffffffffffffffp0 acos -0x0.ffffffffffffffffp0 +acos min +acos -min +acos min_subnorm +acos -min_subnorm acosh 1 +acosh 1.625 acosh 7 +acosh 100 +acosh 1e5 +acosh max no-test-inline asin 0 asin -0 @@ -52,10 +60,27 @@ asin 0x0.ffffffffffffp0 asin -0x0.ffffffffffffp0 asin 0x0.ffffffffffffffffp0 asin -0x0.ffffffffffffffffp0 +# Bug 16351: underflow exception may be missing. +asin min missing-underflow +asin -min missing-underflow +asin min_subnorm missing-underflow +asin -min_subnorm missing-underflow asinh 0 asinh -0 asinh 0.75 +asinh 1 +asinh 10 +asinh 100 +asinh 1e6 +asinh 0x1p100 +# Bug 16350: underflow exception may be missing. +asinh min missing-underflow +asinh -min missing-underflow +asinh min_subnorm missing-underflow +asinh -min_subnorm missing-underflow +asinh max no-test-inline +asinh -max no-test-inline atan 0 atan -0 @@ -64,10 +89,18 @@ atan -max atan 1 atan -1 atan 0.75 +atan 0x1p-5 +atan 2.5 +atan 10 +atan 1e6 # Bug 15319: underflow exception may be missing. atan 0x1p-100 missing-underflow atan 0x1p-600 missing-underflow atan 0x1p-10000 missing-underflow +atan min missing-underflow +atan -min missing-underflow +atan min_subnorm missing-underflow +atan -min_subnorm missing-underflow # atan2 (0,x) == 0 for x > 0. atan2 0 1 @@ -90,8 +123,17 @@ atan2 -1 0 # atan2 (y,-0) == -pi/2 for y < 0. atan2 -1 -0 atan2 max max +atan2 max -max +atan2 -max max +atan2 -max -max atan2 max min atan2 -max -min +atan2 -max min +atan2 max -min +atan2 max min_subnorm +atan2 -max -min_subnorm +atan2 -max min_subnorm +atan2 max -min_subnorm atan2 0.75 1 atan2 -0.75 1.0 atan2 0.75 -1.0 @@ -100,10 +142,43 @@ atan2 0.390625 .00029 atan2 1.390625 0.9296875 atan2 -0.00756827042671106339 -.001792735857538728036 atan2 0x1.00000000000001p0 0x1.00000000000001p0 +atan2 min min +atan2 min -min +atan2 -min min +atan2 -min -min +atan2 min_subnorm min_subnorm +atan2 min_subnorm -min_subnorm +atan2 -min_subnorm min_subnorm +atan2 -min_subnorm -min_subnorm +atan2 1 -max +atan2 -1 -max +atan2 min -max +atan2 -min -max +atan2 min_subnorm -max +atan2 -min_subnorm -max +# Bug 15319: underflow exception may be missing. +# Bug 16349: errno setting may be missing. +atan2 1 max missing-underflow +atan2 -1 max missing-underflow +atan2 min max missing-underflow missing-errno +atan2 -min max missing-underflow missing-errno +atan2 min_subnorm max missing-underflow missing-errno +atan2 -min_subnorm max missing-underflow missing-errno atanh 0 atanh -0 atanh 0.75 +atanh -0.75 +atanh 0.25 +atanh 0x1p-5 +atanh 0x1p-10 +atanh 0x1.2345p-20 +# Bug 16352: underflow exception may be missing. +# Bug 16357: spurious underflow may occur. +atanh min missing-underflow spurious-underflow:ldbl-96-intel:x86 +atanh -min missing-underflow spurious-underflow:ldbl-96-intel:x86 +atanh min_subnorm missing-underflow +atanh -min_subnorm missing-underflow # cabs (x,y) == cabs (y,x). cabs 0.75 12.390625 @@ -154,6 +229,13 @@ cbrt 0.9921875 cbrt 0.75 cbrt 0x1p16383 cbrt 0x1p-16383 +cbrt 1e5 +cbrt max +cbrt -max +cbrt min +cbrt -min +cbrt min_subnorm +cbrt -min_subnorm ccos 0.0 0.0 ccos -0 0.0 @@ -402,6 +484,12 @@ cos 7 cos 8 cos 9 cos 10 +cos max +cos -max +cos min +cos -min +cos min_subnorm +cos -min_subnorm cosh 0 cosh -0 @@ -411,6 +499,39 @@ cosh -709.8893558127259666434838436543941497802734375 cosh 22 cosh 23 cosh 24 +cosh 0x1p-5 +cosh 0x1p-20 +cosh -1 +cosh 50 +cosh max no-test-inline +cosh -max no-test-inline +# Bug 16354: spurious underflow may occur. +cosh min spurious-underflow +cosh -min spurious-underflow +cosh min_subnorm spurious-underflow +cosh -min_subnorm spurious-underflow +# Test values either side of overflow for each floating-point format. +cosh 0x5.96a7ep+4 +cosh 0x5.96a7e8p+4 +cosh -0x5.96a7ep+4 +cosh -0x5.96a7e8p+4 +cosh 0x2.c679d1f73f0fap+8 +cosh 0x2.c679d1f73f0fcp+8 +cosh -0x2.c679d1f73f0fap+8 +cosh -0x2.c679d1f73f0fcp+8 +# Bug 16356: bad results from expl (and so coshl) in round-upward mode. +cosh 0x2.c679d1f73f0fb624d358b213a7p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 +cosh 0x2.c679d1f73f0fb624d358b213a8p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 +cosh -0x2.c679d1f73f0fb624d358b213a7p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 +cosh -0x2.c679d1f73f0fb624d358b213a8p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 +cosh 0x2.c5d37700c6bb03a4p+12 no-test-inline +cosh 0x2.c5d37700c6bb03a8p+12 no-test-inline +cosh -0x2.c5d37700c6bb03a4p+12 no-test-inline +cosh -0x2.c5d37700c6bb03a8p+12 no-test-inline +cosh 0x2.c5d37700c6bb03a6c24b6c9b494cp+12 no-test-inline +cosh 0x2.c5d37700c6bb03a6c24b6c9b494ep+12 no-test-inline +cosh -0x2.c5d37700c6bb03a6c24b6c9b494cp+12 no-test-inline +cosh -0x2.c5d37700c6bb03a6c24b6c9b494ep+12 no-test-inline cpow 1 0 0 0 cpow 2 0 10 0 diff --git a/math/auto-libm-test-out b/math/auto-libm-test-out index 0e7ab0db79..0b51fa0e5c 100644 --- a/math/auto-libm-test-out +++ b/math/auto-libm-test-out @@ -839,6 +839,322 @@ acos -0x0.ffffffffffffffffp0 = acos tonearest ldbl-128ibm -0xf.fffffffffffffffp-4L : 0x3.243f6a871b99226b1f5cc12532p+0L : inexact-ok = acos towardzero ldbl-128ibm -0xf.fffffffffffffffp-4L : 0x3.243f6a871b99226b1f5cc12532p+0L : inexact-ok = acos upward ldbl-128ibm -0xf.fffffffffffffffp-4L : 0x3.243f6a871b99226b1f5cc12533p+0L : inexact-ok +acos min += acos downward flt-32 0x4p-128f : 0x1.921fb4p+0f : inexact-ok += acos tonearest flt-32 0x4p-128f : 0x1.921fb6p+0f : inexact-ok += acos towardzero flt-32 0x4p-128f : 0x1.921fb4p+0f : inexact-ok += acos upward flt-32 0x4p-128f : 0x1.921fb6p+0f : inexact-ok += acos downward dbl-64 0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += acos tonearest dbl-64 0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += acos towardzero dbl-64 0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += acos upward dbl-64 0x4p-128 : 0x1.921fb54442d19p+0 : inexact-ok += acos downward ldbl-96-intel 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k 0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k 0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128ibm 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos tonearest ldbl-128ibm 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos towardzero ldbl-128ibm 0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos upward ldbl-128ibm 0x4p-128L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += acos downward dbl-64 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += acos tonearest dbl-64 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += acos towardzero dbl-64 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += acos upward dbl-64 0x4p-1024 : 0x1.921fb54442d19p+0 : inexact-ok += acos downward ldbl-96-intel 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128ibm 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos tonearest ldbl-128ibm 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos towardzero ldbl-128ibm 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos upward ldbl-128ibm 0x4p-1024L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += acos downward ldbl-96-intel 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-96-intel 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward dbl-64 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += acos tonearest dbl-64 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += acos towardzero dbl-64 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += acos upward dbl-64 0x8p-972 : 0x1.921fb54442d19p+0 : inexact-ok += acos downward ldbl-96-intel 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128ibm 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos tonearest ldbl-128ibm 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos towardzero ldbl-128ibm 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos upward ldbl-128ibm 0x8p-972L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok +acos -min += acos downward flt-32 -0x4p-128f : 0x1.921fb4p+0f : inexact-ok += acos tonearest flt-32 -0x4p-128f : 0x1.921fb6p+0f : inexact-ok += acos towardzero flt-32 -0x4p-128f : 0x1.921fb4p+0f : inexact-ok += acos upward flt-32 -0x4p-128f : 0x1.921fb6p+0f : inexact-ok += acos downward dbl-64 -0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += acos tonearest dbl-64 -0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += acos towardzero dbl-64 -0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += acos upward dbl-64 -0x4p-128 : 0x1.921fb54442d19p+0 : inexact-ok += acos downward ldbl-96-intel -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 -0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128ibm -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos tonearest ldbl-128ibm -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos towardzero ldbl-128ibm -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos upward ldbl-128ibm -0x4p-128L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += acos downward dbl-64 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += acos tonearest dbl-64 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += acos towardzero dbl-64 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += acos upward dbl-64 -0x4p-1024 : 0x1.921fb54442d19p+0 : inexact-ok += acos downward ldbl-96-intel -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 -0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128ibm -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos tonearest ldbl-128ibm -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos towardzero ldbl-128ibm -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos upward ldbl-128ibm -0x4p-1024L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += acos downward ldbl-96-intel -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 -0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-96-intel -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 -0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward dbl-64 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += acos tonearest dbl-64 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += acos towardzero dbl-64 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += acos upward dbl-64 -0x8p-972 : 0x1.921fb54442d19p+0 : inexact-ok += acos downward ldbl-96-intel -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 -0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128ibm -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos tonearest ldbl-128ibm -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos towardzero ldbl-128ibm -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos upward ldbl-128ibm -0x8p-972L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok +acos min_subnorm += acos downward flt-32 0x8p-152f : 0x1.921fb4p+0f : inexact-ok += acos tonearest flt-32 0x8p-152f : 0x1.921fb6p+0f : inexact-ok += acos towardzero flt-32 0x8p-152f : 0x1.921fb4p+0f : inexact-ok += acos upward flt-32 0x8p-152f : 0x1.921fb6p+0f : inexact-ok += acos downward dbl-64 0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += acos tonearest dbl-64 0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += acos towardzero dbl-64 0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += acos upward dbl-64 0x8p-152 : 0x1.921fb54442d19p+0 : inexact-ok += acos downward ldbl-96-intel 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128ibm 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos tonearest ldbl-128ibm 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos towardzero ldbl-128ibm 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos upward ldbl-128ibm 0x8p-152L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += acos downward dbl-64 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += acos tonearest dbl-64 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += acos towardzero dbl-64 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += acos upward dbl-64 0x4p-1076 : 0x1.921fb54442d19p+0 : inexact-ok += acos downward ldbl-96-intel 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128ibm 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos tonearest ldbl-128ibm 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos towardzero ldbl-128ibm 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos upward ldbl-128ibm 0x4p-1076L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += acos downward ldbl-96-intel 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-96-m68k 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok +acos -min_subnorm += acos downward flt-32 -0x8p-152f : 0x1.921fb4p+0f : inexact-ok += acos tonearest flt-32 -0x8p-152f : 0x1.921fb6p+0f : inexact-ok += acos towardzero flt-32 -0x8p-152f : 0x1.921fb4p+0f : inexact-ok += acos upward flt-32 -0x8p-152f : 0x1.921fb6p+0f : inexact-ok += acos downward dbl-64 -0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += acos tonearest dbl-64 -0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += acos towardzero dbl-64 -0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += acos upward dbl-64 -0x8p-152 : 0x1.921fb54442d19p+0 : inexact-ok += acos downward ldbl-96-intel -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 -0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128ibm -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos tonearest ldbl-128ibm -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos towardzero ldbl-128ibm -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos upward ldbl-128ibm -0x8p-152L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += acos downward dbl-64 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += acos tonearest dbl-64 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += acos towardzero dbl-64 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += acos upward dbl-64 -0x4p-1076 : 0x1.921fb54442d19p+0 : inexact-ok += acos downward ldbl-96-intel -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 -0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128ibm -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos tonearest ldbl-128ibm -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos towardzero ldbl-128ibm -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += acos upward ldbl-128ibm -0x4p-1076L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += acos downward ldbl-96-intel -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-intel -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-intel -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-intel -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-96-m68k -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 -0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-96-m68k -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos tonearest ldbl-96-m68k -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos towardzero ldbl-96-m68k -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += acos upward ldbl-96-m68k -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += acos downward ldbl-128 -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 -0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += acos downward ldbl-128 -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos tonearest ldbl-128 -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos towardzero ldbl-128 -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += acos upward ldbl-128 -0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok acosh 1 = acosh downward flt-32 0x1p+0f : 0x0p+0f : inexact-ok = acosh tonearest flt-32 0x1p+0f : 0x0p+0f : inexact-ok @@ -864,6 +1180,31 @@ acosh 1 = acosh tonearest ldbl-128ibm 0x1p+0L : 0x0p+0L : inexact-ok = acosh towardzero ldbl-128ibm 0x1p+0L : 0x0p+0L : inexact-ok = acosh upward ldbl-128ibm 0x1p+0L : 0x0p+0L : inexact-ok +acosh 1.625 += acosh downward flt-32 0x1.ap+0f : 0x1.11156p+0f : inexact-ok += acosh tonearest flt-32 0x1.ap+0f : 0x1.11156p+0f : inexact-ok += acosh towardzero flt-32 0x1.ap+0f : 0x1.11156p+0f : inexact-ok += acosh upward flt-32 0x1.ap+0f : 0x1.111562p+0f : inexact-ok += acosh downward dbl-64 0x1.ap+0 : 0x1.1115606c9966p+0 : inexact-ok += acosh tonearest dbl-64 0x1.ap+0 : 0x1.1115606c9966p+0 : inexact-ok += acosh towardzero dbl-64 0x1.ap+0 : 0x1.1115606c9966p+0 : inexact-ok += acosh upward dbl-64 0x1.ap+0 : 0x1.1115606c99661p+0 : inexact-ok += acosh downward ldbl-96-intel 0x1.ap+0L : 0x1.1115606c996603fcp+0L : inexact-ok += acosh tonearest ldbl-96-intel 0x1.ap+0L : 0x1.1115606c996603fcp+0L : inexact-ok += acosh towardzero ldbl-96-intel 0x1.ap+0L : 0x1.1115606c996603fcp+0L : inexact-ok += acosh upward ldbl-96-intel 0x1.ap+0L : 0x1.1115606c996603fep+0L : inexact-ok += acosh downward ldbl-96-m68k 0x1.ap+0L : 0x1.1115606c996603fcp+0L : inexact-ok += acosh tonearest ldbl-96-m68k 0x1.ap+0L : 0x1.1115606c996603fcp+0L : inexact-ok += acosh towardzero ldbl-96-m68k 0x1.ap+0L : 0x1.1115606c996603fcp+0L : inexact-ok += acosh upward ldbl-96-m68k 0x1.ap+0L : 0x1.1115606c996603fep+0L : inexact-ok += acosh downward ldbl-128 0x1.ap+0L : 0x1.1115606c996603fcd1822ec9d025p+0L : inexact-ok += acosh tonearest ldbl-128 0x1.ap+0L : 0x1.1115606c996603fcd1822ec9d026p+0L : inexact-ok += acosh towardzero ldbl-128 0x1.ap+0L : 0x1.1115606c996603fcd1822ec9d025p+0L : inexact-ok += acosh upward ldbl-128 0x1.ap+0L : 0x1.1115606c996603fcd1822ec9d026p+0L : inexact-ok += acosh downward ldbl-128ibm 0x1.ap+0L : 0x1.1115606c996603fcd1822ec9dp+0L : inexact-ok += acosh tonearest ldbl-128ibm 0x1.ap+0L : 0x1.1115606c996603fcd1822ec9dp+0L : inexact-ok += acosh towardzero ldbl-128ibm 0x1.ap+0L : 0x1.1115606c996603fcd1822ec9dp+0L : inexact-ok += acosh upward ldbl-128ibm 0x1.ap+0L : 0x1.1115606c996603fcd1822ec9d08p+0L : inexact-ok acosh 7 = acosh downward flt-32 0x7p+0f : 0x2.a2484cp+0f : inexact-ok = acosh tonearest flt-32 0x7p+0f : 0x2.a2485p+0f : inexact-ok @@ -889,6 +1230,125 @@ acosh 7 = acosh tonearest ldbl-128ibm 0x7p+0L : 0x2.a2484e330086937cd097a0311bp+0L : inexact-ok = acosh towardzero ldbl-128ibm 0x7p+0L : 0x2.a2484e330086937cd097a0311ap+0L : inexact-ok = acosh upward ldbl-128ibm 0x7p+0L : 0x2.a2484e330086937cd097a0311bp+0L : inexact-ok +acosh 100 += acosh downward flt-32 0x6.4p+4f : 0x5.4c5cep+0f : inexact-ok += acosh tonearest flt-32 0x6.4p+4f : 0x5.4c5cep+0f : inexact-ok += acosh towardzero flt-32 0x6.4p+4f : 0x5.4c5cep+0f : inexact-ok += acosh upward flt-32 0x6.4p+4f : 0x5.4c5ce8p+0f : inexact-ok += acosh downward dbl-64 0x6.4p+4 : 0x5.4c5ce372f1898p+0 : inexact-ok += acosh tonearest dbl-64 0x6.4p+4 : 0x5.4c5ce372f189cp+0 : inexact-ok += acosh towardzero dbl-64 0x6.4p+4 : 0x5.4c5ce372f1898p+0 : inexact-ok += acosh upward dbl-64 0x6.4p+4 : 0x5.4c5ce372f189cp+0 : inexact-ok += acosh downward ldbl-96-intel 0x6.4p+4L : 0x5.4c5ce372f189a288p+0L : inexact-ok += acosh tonearest ldbl-96-intel 0x6.4p+4L : 0x5.4c5ce372f189a288p+0L : inexact-ok += acosh towardzero ldbl-96-intel 0x6.4p+4L : 0x5.4c5ce372f189a288p+0L : inexact-ok += acosh upward ldbl-96-intel 0x6.4p+4L : 0x5.4c5ce372f189a29p+0L : inexact-ok += acosh downward ldbl-96-m68k 0x6.4p+4L : 0x5.4c5ce372f189a288p+0L : inexact-ok += acosh tonearest ldbl-96-m68k 0x6.4p+4L : 0x5.4c5ce372f189a288p+0L : inexact-ok += acosh towardzero ldbl-96-m68k 0x6.4p+4L : 0x5.4c5ce372f189a288p+0L : inexact-ok += acosh upward ldbl-96-m68k 0x6.4p+4L : 0x5.4c5ce372f189a29p+0L : inexact-ok += acosh downward ldbl-128 0x6.4p+4L : 0x5.4c5ce372f189a2883e416c225658p+0L : inexact-ok += acosh tonearest ldbl-128 0x6.4p+4L : 0x5.4c5ce372f189a2883e416c22565cp+0L : inexact-ok += acosh towardzero ldbl-128 0x6.4p+4L : 0x5.4c5ce372f189a2883e416c225658p+0L : inexact-ok += acosh upward ldbl-128 0x6.4p+4L : 0x5.4c5ce372f189a2883e416c22565cp+0L : inexact-ok += acosh downward ldbl-128ibm 0x6.4p+4L : 0x5.4c5ce372f189a2883e416c2256p+0L : inexact-ok += acosh tonearest ldbl-128ibm 0x6.4p+4L : 0x5.4c5ce372f189a2883e416c2256p+0L : inexact-ok += acosh towardzero ldbl-128ibm 0x6.4p+4L : 0x5.4c5ce372f189a2883e416c2256p+0L : inexact-ok += acosh upward ldbl-128ibm 0x6.4p+4L : 0x5.4c5ce372f189a2883e416c2258p+0L : inexact-ok +acosh 1e5 += acosh downward flt-32 0x1.86ap+16f : 0xc.34c12p+0f : inexact-ok += acosh tonearest flt-32 0x1.86ap+16f : 0xc.34c13p+0f : inexact-ok += acosh towardzero flt-32 0x1.86ap+16f : 0xc.34c12p+0f : inexact-ok += acosh upward flt-32 0x1.86ap+16f : 0xc.34c13p+0f : inexact-ok += acosh downward dbl-64 0x1.86ap+16 : 0xc.34c12d490b8p+0 : inexact-ok += acosh tonearest dbl-64 0x1.86ap+16 : 0xc.34c12d490b8p+0 : inexact-ok += acosh towardzero dbl-64 0x1.86ap+16 : 0xc.34c12d490b8p+0 : inexact-ok += acosh upward dbl-64 0x1.86ap+16 : 0xc.34c12d490b808p+0 : inexact-ok += acosh downward ldbl-96-intel 0x1.86ap+16L : 0xc.34c12d490b800b9p+0L : inexact-ok += acosh tonearest ldbl-96-intel 0x1.86ap+16L : 0xc.34c12d490b800bap+0L : inexact-ok += acosh towardzero ldbl-96-intel 0x1.86ap+16L : 0xc.34c12d490b800b9p+0L : inexact-ok += acosh upward ldbl-96-intel 0x1.86ap+16L : 0xc.34c12d490b800bap+0L : inexact-ok += acosh downward ldbl-96-m68k 0x1.86ap+16L : 0xc.34c12d490b800b9p+0L : inexact-ok += acosh tonearest ldbl-96-m68k 0x1.86ap+16L : 0xc.34c12d490b800bap+0L : inexact-ok += acosh towardzero ldbl-96-m68k 0x1.86ap+16L : 0xc.34c12d490b800b9p+0L : inexact-ok += acosh upward ldbl-96-m68k 0x1.86ap+16L : 0xc.34c12d490b800bap+0L : inexact-ok += acosh downward ldbl-128 0x1.86ap+16L : 0xc.34c12d490b800b9c3c815614094p+0L : inexact-ok += acosh tonearest ldbl-128 0x1.86ap+16L : 0xc.34c12d490b800b9c3c8156140948p+0L : inexact-ok += acosh towardzero ldbl-128 0x1.86ap+16L : 0xc.34c12d490b800b9c3c815614094p+0L : inexact-ok += acosh upward ldbl-128 0x1.86ap+16L : 0xc.34c12d490b800b9c3c8156140948p+0L : inexact-ok += acosh downward ldbl-128ibm 0x1.86ap+16L : 0xc.34c12d490b800b9c3c81561408p+0L : inexact-ok += acosh tonearest ldbl-128ibm 0x1.86ap+16L : 0xc.34c12d490b800b9c3c81561408p+0L : inexact-ok += acosh towardzero ldbl-128ibm 0x1.86ap+16L : 0xc.34c12d490b800b9c3c81561408p+0L : inexact-ok += acosh upward ldbl-128ibm 0x1.86ap+16L : 0xc.34c12d490b800b9c3c8156140cp+0L : inexact-ok +acosh max no-test-inline += acosh downward flt-32 0xf.fffffp+124f : 0x5.96a7ep+4f : no-test-inline inexact-ok += acosh tonearest flt-32 0xf.fffffp+124f : 0x5.96a7ep+4f : no-test-inline inexact-ok += acosh towardzero flt-32 0xf.fffffp+124f : 0x5.96a7ep+4f : no-test-inline inexact-ok += acosh upward flt-32 0xf.fffffp+124f : 0x5.96a7e8p+4f : no-test-inline inexact-ok += acosh downward dbl-64 0xf.fffffp+124 : 0x5.96a7e12e0b988p+4 : no-test-inline inexact-ok += acosh tonearest dbl-64 0xf.fffffp+124 : 0x5.96a7e12e0b98cp+4 : no-test-inline inexact-ok += acosh towardzero dbl-64 0xf.fffffp+124 : 0x5.96a7e12e0b988p+4 : no-test-inline inexact-ok += acosh upward dbl-64 0xf.fffffp+124 : 0x5.96a7e12e0b98cp+4 : no-test-inline inexact-ok += acosh downward ldbl-96-intel 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += acosh tonearest ldbl-96-intel 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += acosh towardzero ldbl-96-intel 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += acosh upward ldbl-96-intel 0xf.fffffp+124L : 0x5.96a7e12e0b98bdp+4L : no-test-inline inexact-ok += acosh downward ldbl-96-m68k 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += acosh tonearest ldbl-96-m68k 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += acosh towardzero ldbl-96-m68k 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += acosh upward ldbl-96-m68k 0xf.fffffp+124L : 0x5.96a7e12e0b98bdp+4L : no-test-inline inexact-ok += acosh downward ldbl-128 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a4468p+4L : no-test-inline inexact-ok += acosh tonearest ldbl-128 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a4468p+4L : no-test-inline inexact-ok += acosh towardzero ldbl-128 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a4468p+4L : no-test-inline inexact-ok += acosh upward ldbl-128 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a44684p+4L : no-test-inline inexact-ok += acosh downward ldbl-128ibm 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a446p+4L : no-test-inline inexact-ok += acosh tonearest ldbl-128ibm 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a446p+4L : no-test-inline inexact-ok += acosh towardzero ldbl-128ibm 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a446p+4L : no-test-inline inexact-ok += acosh upward ldbl-128ibm 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a448p+4L : no-test-inline inexact-ok += acosh downward dbl-64 0xf.ffffffffffff8p+1020 : 0x2.c679d1f73f0fap+8 : no-test-inline inexact-ok += acosh tonearest dbl-64 0xf.ffffffffffff8p+1020 : 0x2.c679d1f73f0fcp+8 : no-test-inline inexact-ok += acosh towardzero dbl-64 0xf.ffffffffffff8p+1020 : 0x2.c679d1f73f0fap+8 : no-test-inline inexact-ok += acosh upward dbl-64 0xf.ffffffffffff8p+1020 : 0x2.c679d1f73f0fcp+8 : no-test-inline inexact-ok += acosh downward ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += acosh tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += acosh towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += acosh upward ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb624p+8L : no-test-inline inexact-ok += acosh downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += acosh tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += acosh towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += acosh upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb624p+8L : no-test-inline inexact-ok += acosh downward ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7cep+8L : no-test-inline inexact-ok += acosh tonearest ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7dp+8L : no-test-inline inexact-ok += acosh towardzero ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7cep+8L : no-test-inline inexact-ok += acosh upward ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7dp+8L : no-test-inline inexact-ok += acosh downward ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7p+8L : no-test-inline inexact-ok += acosh tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a8p+8L : no-test-inline inexact-ok += acosh towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7p+8L : no-test-inline inexact-ok += acosh upward ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a8p+8L : no-test-inline inexact-ok += acosh downward ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += acosh tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += acosh towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += acosh upward ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += acosh downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += acosh tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += acosh towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += acosh upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += acosh downward ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a6c23b6c9b494cp+12L : no-test-inline inexact-ok += acosh tonearest ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a6c23b6c9b494cp+12L : no-test-inline inexact-ok += acosh towardzero ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a6c23b6c9b494cp+12L : no-test-inline inexact-ok += acosh upward ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a6c23b6c9b494ep+12L : no-test-inline inexact-ok += acosh downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : no-test-inline inexact-ok += acosh tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : no-test-inline inexact-ok += acosh towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : no-test-inline inexact-ok += acosh upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.c5d37700c6bb03a6c24b6c9b494ep+12L : no-test-inline inexact-ok += acosh downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7cep+8L : no-test-inline inexact-ok += acosh tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7dp+8L : no-test-inline inexact-ok += acosh towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7cep+8L : no-test-inline inexact-ok += acosh upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7dp+8L : no-test-inline inexact-ok += acosh downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7p+8L : no-test-inline inexact-ok += acosh tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a8p+8L : no-test-inline inexact-ok += acosh towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7p+8L : no-test-inline inexact-ok += acosh upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a8p+8L : no-test-inline inexact-ok asin 0 = asin downward flt-32 0x0p+0f : 0x0p+0f : inexact-ok = asin tonearest flt-32 0x0p+0f : 0x0p+0f : inexact-ok @@ -1560,6 +2020,322 @@ asin -0x0.ffffffffffffffffp0 = asin tonearest ldbl-128ibm -0xf.fffffffffffffffp-4L : -0x1.921fb542d8c79e0195cffc0e308p+0L : inexact-ok = asin towardzero ldbl-128ibm -0xf.fffffffffffffffp-4L : -0x1.921fb542d8c79e0195cffc0e308p+0L : inexact-ok = asin upward ldbl-128ibm -0xf.fffffffffffffffp-4L : -0x1.921fb542d8c79e0195cffc0e308p+0L : inexact-ok +asin min missing-underflow += asin downward flt-32 0x4p-128f : 0x4p-128f : inexact-ok += asin tonearest flt-32 0x4p-128f : 0x4p-128f : inexact-ok += asin towardzero flt-32 0x4p-128f : 0x4p-128f : inexact-ok += asin upward flt-32 0x4p-128f : 0x4.000008p-128f : inexact-ok += asin downward dbl-64 0x4p-128 : 0x4p-128 : inexact-ok += asin tonearest dbl-64 0x4p-128 : 0x4p-128 : inexact-ok += asin towardzero dbl-64 0x4p-128 : 0x4p-128 : inexact-ok += asin upward dbl-64 0x4p-128 : 0x4.0000000000004p-128 : inexact-ok += asin downward ldbl-96-intel 0x4p-128L : 0x4p-128L : inexact-ok += asin tonearest ldbl-96-intel 0x4p-128L : 0x4p-128L : inexact-ok += asin towardzero ldbl-96-intel 0x4p-128L : 0x4p-128L : inexact-ok += asin upward ldbl-96-intel 0x4p-128L : 0x4.0000000000000008p-128L : inexact-ok += asin downward ldbl-96-m68k 0x4p-128L : 0x4p-128L : inexact-ok += asin tonearest ldbl-96-m68k 0x4p-128L : 0x4p-128L : inexact-ok += asin towardzero ldbl-96-m68k 0x4p-128L : 0x4p-128L : inexact-ok += asin upward ldbl-96-m68k 0x4p-128L : 0x4.0000000000000008p-128L : inexact-ok += asin downward ldbl-128 0x4p-128L : 0x4p-128L : inexact-ok += asin tonearest ldbl-128 0x4p-128L : 0x4p-128L : inexact-ok += asin towardzero ldbl-128 0x4p-128L : 0x4p-128L : inexact-ok += asin upward ldbl-128 0x4p-128L : 0x4.0000000000000000000000000004p-128L : inexact-ok += asin downward ldbl-128ibm 0x4p-128L : 0x4p-128L : inexact-ok += asin tonearest ldbl-128ibm 0x4p-128L : 0x4p-128L : inexact-ok += asin towardzero ldbl-128ibm 0x4p-128L : 0x4p-128L : inexact-ok += asin upward ldbl-128ibm 0x4p-128L : 0x4.00000000000000000000000002p-128L : inexact-ok += asin downward dbl-64 0x4p-1024 : 0x4p-1024 : inexact-ok += asin tonearest dbl-64 0x4p-1024 : 0x4p-1024 : inexact-ok += asin towardzero dbl-64 0x4p-1024 : 0x4p-1024 : inexact-ok += asin upward dbl-64 0x4p-1024 : 0x4.0000000000004p-1024 : inexact-ok += asin downward ldbl-96-intel 0x4p-1024L : 0x4p-1024L : inexact-ok += asin tonearest ldbl-96-intel 0x4p-1024L : 0x4p-1024L : inexact-ok += asin towardzero ldbl-96-intel 0x4p-1024L : 0x4p-1024L : inexact-ok += asin upward ldbl-96-intel 0x4p-1024L : 0x4.0000000000000008p-1024L : inexact-ok += asin downward ldbl-96-m68k 0x4p-1024L : 0x4p-1024L : inexact-ok += asin tonearest ldbl-96-m68k 0x4p-1024L : 0x4p-1024L : inexact-ok += asin towardzero ldbl-96-m68k 0x4p-1024L : 0x4p-1024L : inexact-ok += asin upward ldbl-96-m68k 0x4p-1024L : 0x4.0000000000000008p-1024L : inexact-ok += asin downward ldbl-128 0x4p-1024L : 0x4p-1024L : inexact-ok += asin tonearest ldbl-128 0x4p-1024L : 0x4p-1024L : inexact-ok += asin towardzero ldbl-128 0x4p-1024L : 0x4p-1024L : inexact-ok += asin upward ldbl-128 0x4p-1024L : 0x4.0000000000000000000000000004p-1024L : inexact-ok += asin downward ldbl-128ibm 0x4p-1024L : 0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128ibm 0x4p-1024L : 0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128ibm 0x4p-1024L : 0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128ibm 0x4p-1024L : 0x4.0000000000004p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-intel 0x4p-16384L : 0x4p-16384L : inexact-ok += asin tonearest ldbl-96-intel 0x4p-16384L : 0x4p-16384L : inexact-ok += asin towardzero ldbl-96-intel 0x4p-16384L : 0x4p-16384L : inexact-ok += asin upward ldbl-96-intel 0x4p-16384L : 0x4.0000000000000008p-16384L : inexact-ok += asin downward ldbl-96-m68k 0x4p-16384L : 0x4p-16384L : inexact-ok += asin tonearest ldbl-96-m68k 0x4p-16384L : 0x4p-16384L : inexact-ok += asin towardzero ldbl-96-m68k 0x4p-16384L : 0x4p-16384L : inexact-ok += asin upward ldbl-96-m68k 0x4p-16384L : 0x4.0000000000000008p-16384L : inexact-ok += asin downward ldbl-128 0x4p-16384L : 0x4p-16384L : inexact-ok += asin tonearest ldbl-128 0x4p-16384L : 0x4p-16384L : inexact-ok += asin towardzero ldbl-128 0x4p-16384L : 0x4p-16384L : inexact-ok += asin upward ldbl-128 0x4p-16384L : 0x4.0000000000000000000000000004p-16384L : inexact-ok += asin downward ldbl-96-intel 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-96-intel 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-96-intel 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-96-intel 0x2p-16384L : 0x2.0000000000000008p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-m68k 0x2p-16384L : 0x2p-16384L : inexact-ok += asin tonearest ldbl-96-m68k 0x2p-16384L : 0x2p-16384L : inexact-ok += asin towardzero ldbl-96-m68k 0x2p-16384L : 0x2p-16384L : inexact-ok += asin upward ldbl-96-m68k 0x2p-16384L : 0x2.0000000000000004p-16384L : inexact-ok += asin downward ldbl-128 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128 0x2p-16384L : 0x2.0000000000000000000000000004p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward dbl-64 0x8p-972 : 0x8p-972 : inexact-ok += asin tonearest dbl-64 0x8p-972 : 0x8p-972 : inexact-ok += asin towardzero dbl-64 0x8p-972 : 0x8p-972 : inexact-ok += asin upward dbl-64 0x8p-972 : 0x8.0000000000008p-972 : inexact-ok += asin downward ldbl-96-intel 0x8p-972L : 0x8p-972L : inexact-ok += asin tonearest ldbl-96-intel 0x8p-972L : 0x8p-972L : inexact-ok += asin towardzero ldbl-96-intel 0x8p-972L : 0x8p-972L : inexact-ok += asin upward ldbl-96-intel 0x8p-972L : 0x8.000000000000001p-972L : inexact-ok += asin downward ldbl-96-m68k 0x8p-972L : 0x8p-972L : inexact-ok += asin tonearest ldbl-96-m68k 0x8p-972L : 0x8p-972L : inexact-ok += asin towardzero ldbl-96-m68k 0x8p-972L : 0x8p-972L : inexact-ok += asin upward ldbl-96-m68k 0x8p-972L : 0x8.000000000000001p-972L : inexact-ok += asin downward ldbl-128 0x8p-972L : 0x8p-972L : inexact-ok += asin tonearest ldbl-128 0x8p-972L : 0x8p-972L : inexact-ok += asin towardzero ldbl-128 0x8p-972L : 0x8p-972L : inexact-ok += asin upward ldbl-128 0x8p-972L : 0x8.0000000000000000000000000008p-972L : inexact-ok += asin downward ldbl-128ibm 0x8p-972L : 0x8p-972L : inexact-ok += asin tonearest ldbl-128ibm 0x8p-972L : 0x8p-972L : inexact-ok += asin towardzero ldbl-128ibm 0x8p-972L : 0x8p-972L : inexact-ok += asin upward ldbl-128ibm 0x8p-972L : 0x8.00000000000000000000000004p-972L : inexact-ok +asin -min missing-underflow += asin downward flt-32 -0x4p-128f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok += asin tonearest flt-32 -0x4p-128f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok += asin towardzero flt-32 -0x4p-128f : -0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += asin upward flt-32 -0x4p-128f : -0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += asin downward dbl-64 -0x4p-128 : -0x4p-128 : inexact-ok += asin tonearest dbl-64 -0x4p-128 : -0x4p-128 : inexact-ok += asin towardzero dbl-64 -0x4p-128 : -0x3.ffffffffffffep-128 : inexact-ok += asin upward dbl-64 -0x4p-128 : -0x3.ffffffffffffep-128 : inexact-ok += asin downward ldbl-96-intel -0x4p-128L : -0x4p-128L : inexact-ok += asin tonearest ldbl-96-intel -0x4p-128L : -0x4p-128L : inexact-ok += asin towardzero ldbl-96-intel -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += asin upward ldbl-96-intel -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += asin downward ldbl-96-m68k -0x4p-128L : -0x4p-128L : inexact-ok += asin tonearest ldbl-96-m68k -0x4p-128L : -0x4p-128L : inexact-ok += asin towardzero ldbl-96-m68k -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += asin upward ldbl-96-m68k -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += asin downward ldbl-128 -0x4p-128L : -0x4p-128L : inexact-ok += asin tonearest ldbl-128 -0x4p-128L : -0x4p-128L : inexact-ok += asin towardzero ldbl-128 -0x4p-128L : -0x3.fffffffffffffffffffffffffffep-128L : inexact-ok += asin upward ldbl-128 -0x4p-128L : -0x3.fffffffffffffffffffffffffffep-128L : inexact-ok += asin downward ldbl-128ibm -0x4p-128L : -0x4p-128L : inexact-ok += asin tonearest ldbl-128ibm -0x4p-128L : -0x4p-128L : inexact-ok += asin towardzero ldbl-128ibm -0x4p-128L : -0x3.ffffffffffffffffffffffffffp-128L : inexact-ok += asin upward ldbl-128ibm -0x4p-128L : -0x3.ffffffffffffffffffffffffffp-128L : inexact-ok += asin downward dbl-64 -0x4p-1024 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += asin tonearest dbl-64 -0x4p-1024 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += asin towardzero dbl-64 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += asin upward dbl-64 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += asin downward ldbl-96-intel -0x4p-1024L : -0x4p-1024L : inexact-ok += asin tonearest ldbl-96-intel -0x4p-1024L : -0x4p-1024L : inexact-ok += asin towardzero ldbl-96-intel -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += asin upward ldbl-96-intel -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += asin downward ldbl-96-m68k -0x4p-1024L : -0x4p-1024L : inexact-ok += asin tonearest ldbl-96-m68k -0x4p-1024L : -0x4p-1024L : inexact-ok += asin towardzero ldbl-96-m68k -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += asin upward ldbl-96-m68k -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += asin downward ldbl-128 -0x4p-1024L : -0x4p-1024L : inexact-ok += asin tonearest ldbl-128 -0x4p-1024L : -0x4p-1024L : inexact-ok += asin towardzero ldbl-128 -0x4p-1024L : -0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok += asin upward ldbl-128 -0x4p-1024L : -0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok += asin downward ldbl-128ibm -0x4p-1024L : -0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128ibm -0x4p-1024L : -0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128ibm -0x4p-1024L : -0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128ibm -0x4p-1024L : -0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-intel -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asin tonearest ldbl-96-intel -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asin towardzero ldbl-96-intel -0x4p-16384L : -0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += asin upward ldbl-96-intel -0x4p-16384L : -0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += asin downward ldbl-96-m68k -0x4p-16384L : -0x4p-16384L : inexact-ok += asin tonearest ldbl-96-m68k -0x4p-16384L : -0x4p-16384L : inexact-ok += asin towardzero ldbl-96-m68k -0x4p-16384L : -0x3.fffffffffffffffcp-16384L : inexact-ok += asin upward ldbl-96-m68k -0x4p-16384L : -0x3.fffffffffffffffcp-16384L : inexact-ok += asin downward ldbl-128 -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asin tonearest ldbl-128 -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asin towardzero ldbl-128 -0x4p-16384L : -0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asin upward ldbl-128 -0x4p-16384L : -0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asin downward ldbl-96-intel -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-96-intel -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-96-intel -0x2p-16384L : -0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-96-intel -0x2p-16384L : -0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-m68k -0x2p-16384L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += asin tonearest ldbl-96-m68k -0x2p-16384L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += asin towardzero ldbl-96-m68k -0x2p-16384L : -0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asin upward ldbl-96-m68k -0x2p-16384L : -0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asin downward ldbl-128 -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128 -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128 -0x2p-16384L : -0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128 -0x2p-16384L : -0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward dbl-64 -0x8p-972 : -0x8p-972 : inexact-ok += asin tonearest dbl-64 -0x8p-972 : -0x8p-972 : inexact-ok += asin towardzero dbl-64 -0x8p-972 : -0x7.ffffffffffffcp-972 : inexact-ok += asin upward dbl-64 -0x8p-972 : -0x7.ffffffffffffcp-972 : inexact-ok += asin downward ldbl-96-intel -0x8p-972L : -0x8p-972L : inexact-ok += asin tonearest ldbl-96-intel -0x8p-972L : -0x8p-972L : inexact-ok += asin towardzero ldbl-96-intel -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += asin upward ldbl-96-intel -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += asin downward ldbl-96-m68k -0x8p-972L : -0x8p-972L : inexact-ok += asin tonearest ldbl-96-m68k -0x8p-972L : -0x8p-972L : inexact-ok += asin towardzero ldbl-96-m68k -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += asin upward ldbl-96-m68k -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += asin downward ldbl-128 -0x8p-972L : -0x8p-972L : inexact-ok += asin tonearest ldbl-128 -0x8p-972L : -0x8p-972L : inexact-ok += asin towardzero ldbl-128 -0x8p-972L : -0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok += asin upward ldbl-128 -0x8p-972L : -0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok += asin downward ldbl-128ibm -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok += asin tonearest ldbl-128ibm -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok += asin towardzero ldbl-128ibm -0x8p-972L : -0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok += asin upward ldbl-128ibm -0x8p-972L : -0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok +asin min_subnorm missing-underflow += asin downward flt-32 0x8p-152f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest flt-32 0x8p-152f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero flt-32 0x8p-152f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += asin upward flt-32 0x8p-152f : 0x1p-148f : inexact-ok underflow underflow-ok errno-erange-ok += asin downward dbl-64 0x8p-152 : 0x8p-152 : inexact-ok += asin tonearest dbl-64 0x8p-152 : 0x8p-152 : inexact-ok += asin towardzero dbl-64 0x8p-152 : 0x8p-152 : inexact-ok += asin upward dbl-64 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok += asin downward ldbl-96-intel 0x8p-152L : 0x8p-152L : inexact-ok += asin tonearest ldbl-96-intel 0x8p-152L : 0x8p-152L : inexact-ok += asin towardzero ldbl-96-intel 0x8p-152L : 0x8p-152L : inexact-ok += asin upward ldbl-96-intel 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok += asin downward ldbl-96-m68k 0x8p-152L : 0x8p-152L : inexact-ok += asin tonearest ldbl-96-m68k 0x8p-152L : 0x8p-152L : inexact-ok += asin towardzero ldbl-96-m68k 0x8p-152L : 0x8p-152L : inexact-ok += asin upward ldbl-96-m68k 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok += asin downward ldbl-128 0x8p-152L : 0x8p-152L : inexact-ok += asin tonearest ldbl-128 0x8p-152L : 0x8p-152L : inexact-ok += asin towardzero ldbl-128 0x8p-152L : 0x8p-152L : inexact-ok += asin upward ldbl-128 0x8p-152L : 0x8.0000000000000000000000000008p-152L : inexact-ok += asin downward ldbl-128ibm 0x8p-152L : 0x8p-152L : inexact-ok += asin tonearest ldbl-128ibm 0x8p-152L : 0x8p-152L : inexact-ok += asin towardzero ldbl-128ibm 0x8p-152L : 0x8p-152L : inexact-ok += asin upward ldbl-128ibm 0x8p-152L : 0x8.00000000000000000000000004p-152L : inexact-ok += asin downward dbl-64 0x4p-1076 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest dbl-64 0x4p-1076 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero dbl-64 0x4p-1076 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += asin upward dbl-64 0x4p-1076 : 0x8p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-intel 0x4p-1076L : 0x4p-1076L : inexact-ok += asin tonearest ldbl-96-intel 0x4p-1076L : 0x4p-1076L : inexact-ok += asin towardzero ldbl-96-intel 0x4p-1076L : 0x4p-1076L : inexact-ok += asin upward ldbl-96-intel 0x4p-1076L : 0x4.0000000000000008p-1076L : inexact-ok += asin downward ldbl-96-m68k 0x4p-1076L : 0x4p-1076L : inexact-ok += asin tonearest ldbl-96-m68k 0x4p-1076L : 0x4p-1076L : inexact-ok += asin towardzero ldbl-96-m68k 0x4p-1076L : 0x4p-1076L : inexact-ok += asin upward ldbl-96-m68k 0x4p-1076L : 0x4.0000000000000008p-1076L : inexact-ok += asin downward ldbl-128 0x4p-1076L : 0x4p-1076L : inexact-ok += asin tonearest ldbl-128 0x4p-1076L : 0x4p-1076L : inexact-ok += asin towardzero ldbl-128 0x4p-1076L : 0x4p-1076L : inexact-ok += asin upward ldbl-128 0x4p-1076L : 0x4.0000000000000000000000000004p-1076L : inexact-ok += asin downward ldbl-128ibm 0x4p-1076L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128ibm 0x4p-1076L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128ibm 0x4p-1076L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128ibm 0x4p-1076L : 0x8p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-intel 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-96-intel 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-96-intel 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-96-intel 0x8p-16448L : 0x1p-16444L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-m68k 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-96-m68k 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-96-m68k 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-96-m68k 0x8p-16448L : 0xcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-128 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128 0x8p-16448L : 0x8.000000000004p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-m68k 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-96-m68k 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-96-m68k 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-96-m68k 0x4p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-128 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128 0x4p-16448L : 0x4.000000000004p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-128 0x4p-16496L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128 0x4p-16496L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128 0x4p-16496L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128 0x4p-16496L : 0x8p-16496L : inexact-ok underflow underflow-ok errno-erange-ok +asin -min_subnorm missing-underflow += asin downward flt-32 -0x8p-152f : -0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest flt-32 -0x8p-152f : -0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero flt-32 -0x8p-152f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += asin upward flt-32 -0x8p-152f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += asin downward dbl-64 -0x8p-152 : -0x8p-152 : inexact-ok += asin tonearest dbl-64 -0x8p-152 : -0x8p-152 : inexact-ok += asin towardzero dbl-64 -0x8p-152 : -0x7.ffffffffffffcp-152 : inexact-ok += asin upward dbl-64 -0x8p-152 : -0x7.ffffffffffffcp-152 : inexact-ok += asin downward ldbl-96-intel -0x8p-152L : -0x8p-152L : inexact-ok += asin tonearest ldbl-96-intel -0x8p-152L : -0x8p-152L : inexact-ok += asin towardzero ldbl-96-intel -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += asin upward ldbl-96-intel -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += asin downward ldbl-96-m68k -0x8p-152L : -0x8p-152L : inexact-ok += asin tonearest ldbl-96-m68k -0x8p-152L : -0x8p-152L : inexact-ok += asin towardzero ldbl-96-m68k -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += asin upward ldbl-96-m68k -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += asin downward ldbl-128 -0x8p-152L : -0x8p-152L : inexact-ok += asin tonearest ldbl-128 -0x8p-152L : -0x8p-152L : inexact-ok += asin towardzero ldbl-128 -0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += asin upward ldbl-128 -0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += asin downward ldbl-128ibm -0x8p-152L : -0x8p-152L : inexact-ok += asin tonearest ldbl-128ibm -0x8p-152L : -0x8p-152L : inexact-ok += asin towardzero ldbl-128ibm -0x8p-152L : -0x7.fffffffffffffffffffffffffep-152L : inexact-ok += asin upward ldbl-128ibm -0x8p-152L : -0x7.fffffffffffffffffffffffffep-152L : inexact-ok += asin downward dbl-64 -0x4p-1076 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest dbl-64 -0x4p-1076 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero dbl-64 -0x4p-1076 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += asin upward dbl-64 -0x4p-1076 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-intel -0x4p-1076L : -0x4p-1076L : inexact-ok += asin tonearest ldbl-96-intel -0x4p-1076L : -0x4p-1076L : inexact-ok += asin towardzero ldbl-96-intel -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += asin upward ldbl-96-intel -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += asin downward ldbl-96-m68k -0x4p-1076L : -0x4p-1076L : inexact-ok += asin tonearest ldbl-96-m68k -0x4p-1076L : -0x4p-1076L : inexact-ok += asin towardzero ldbl-96-m68k -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += asin upward ldbl-96-m68k -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += asin downward ldbl-128 -0x4p-1076L : -0x4p-1076L : inexact-ok += asin tonearest ldbl-128 -0x4p-1076L : -0x4p-1076L : inexact-ok += asin towardzero ldbl-128 -0x4p-1076L : -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += asin upward ldbl-128 -0x4p-1076L : -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += asin downward ldbl-128ibm -0x4p-1076L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128ibm -0x4p-1076L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128ibm -0x4p-1076L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128ibm -0x4p-1076L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-intel -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-96-intel -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-96-intel -0x8p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-96-intel -0x8p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-m68k -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-96-m68k -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-96-m68k -0x8p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-96-m68k -0x8p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-128 -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128 -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128 -0x8p-16448L : -0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128 -0x8p-16448L : -0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-96-m68k -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-96-m68k -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-96-m68k -0x4p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-96-m68k -0x4p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-128 -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128 -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128 -0x4p-16448L : -0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128 -0x4p-16448L : -0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asin downward ldbl-128 -0x4p-16496L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += asin tonearest ldbl-128 -0x4p-16496L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += asin towardzero ldbl-128 -0x4p-16496L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asin upward ldbl-128 -0x4p-16496L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok asinh 0 = asinh downward flt-32 0x0p+0f : 0x0p+0f : inexact-ok = asinh tonearest flt-32 0x0p+0f : 0x0p+0f : inexact-ok @@ -1635,6 +2411,585 @@ asinh 0.75 = asinh tonearest ldbl-128ibm 0xcp-4L : 0xb.17217f7d1cf79abc9e3b39804p-4L : inexact-ok = asinh towardzero ldbl-128ibm 0xcp-4L : 0xb.17217f7d1cf79abc9e3b39803cp-4L : inexact-ok = asinh upward ldbl-128ibm 0xcp-4L : 0xb.17217f7d1cf79abc9e3b39804p-4L : inexact-ok +asinh 1 += asinh downward flt-32 0x1p+0f : 0xe.1a1b3p-4f : inexact-ok += asinh tonearest flt-32 0x1p+0f : 0xe.1a1b3p-4f : inexact-ok += asinh towardzero flt-32 0x1p+0f : 0xe.1a1b3p-4f : inexact-ok += asinh upward flt-32 0x1p+0f : 0xe.1a1b4p-4f : inexact-ok += asinh downward dbl-64 0x1p+0 : 0xe.1a1b30bcea13p-4 : inexact-ok += asinh tonearest dbl-64 0x1p+0 : 0xe.1a1b30bcea138p-4 : inexact-ok += asinh towardzero dbl-64 0x1p+0 : 0xe.1a1b30bcea13p-4 : inexact-ok += asinh upward dbl-64 0x1p+0 : 0xe.1a1b30bcea138p-4 : inexact-ok += asinh downward ldbl-96-intel 0x1p+0L : 0xe.1a1b30bcea1366p-4L : inexact-ok += asinh tonearest ldbl-96-intel 0x1p+0L : 0xe.1a1b30bcea13661p-4L : inexact-ok += asinh towardzero ldbl-96-intel 0x1p+0L : 0xe.1a1b30bcea1366p-4L : inexact-ok += asinh upward ldbl-96-intel 0x1p+0L : 0xe.1a1b30bcea13661p-4L : inexact-ok += asinh downward ldbl-96-m68k 0x1p+0L : 0xe.1a1b30bcea1366p-4L : inexact-ok += asinh tonearest ldbl-96-m68k 0x1p+0L : 0xe.1a1b30bcea13661p-4L : inexact-ok += asinh towardzero ldbl-96-m68k 0x1p+0L : 0xe.1a1b30bcea1366p-4L : inexact-ok += asinh upward ldbl-96-m68k 0x1p+0L : 0xe.1a1b30bcea13661p-4L : inexact-ok += asinh downward ldbl-128 0x1p+0L : 0xe.1a1b30bcea13660d8f99e8dd2518p-4L : inexact-ok += asinh tonearest ldbl-128 0x1p+0L : 0xe.1a1b30bcea13660d8f99e8dd2518p-4L : inexact-ok += asinh towardzero ldbl-128 0x1p+0L : 0xe.1a1b30bcea13660d8f99e8dd2518p-4L : inexact-ok += asinh upward ldbl-128 0x1p+0L : 0xe.1a1b30bcea13660d8f99e8dd252p-4L : inexact-ok += asinh downward ldbl-128ibm 0x1p+0L : 0xe.1a1b30bcea13660d8f99e8dd24p-4L : inexact-ok += asinh tonearest ldbl-128ibm 0x1p+0L : 0xe.1a1b30bcea13660d8f99e8dd24p-4L : inexact-ok += asinh towardzero ldbl-128ibm 0x1p+0L : 0xe.1a1b30bcea13660d8f99e8dd24p-4L : inexact-ok += asinh upward ldbl-128ibm 0x1p+0L : 0xe.1a1b30bcea13660d8f99e8dd28p-4L : inexact-ok +asinh 10 += asinh downward flt-32 0xap+0f : 0x2.ff8b88p+0f : inexact-ok += asinh tonearest flt-32 0xap+0f : 0x2.ff8b8cp+0f : inexact-ok += asinh towardzero flt-32 0xap+0f : 0x2.ff8b88p+0f : inexact-ok += asinh upward flt-32 0xap+0f : 0x2.ff8b8cp+0f : inexact-ok += asinh downward dbl-64 0xap+0 : 0x2.ff8b8a0da57b4p+0 : inexact-ok += asinh tonearest dbl-64 0xap+0 : 0x2.ff8b8a0da57b6p+0 : inexact-ok += asinh towardzero dbl-64 0xap+0 : 0x2.ff8b8a0da57b4p+0 : inexact-ok += asinh upward dbl-64 0xap+0 : 0x2.ff8b8a0da57b6p+0 : inexact-ok += asinh downward ldbl-96-intel 0xap+0L : 0x2.ff8b8a0da57b5aap+0L : inexact-ok += asinh tonearest ldbl-96-intel 0xap+0L : 0x2.ff8b8a0da57b5aa4p+0L : inexact-ok += asinh towardzero ldbl-96-intel 0xap+0L : 0x2.ff8b8a0da57b5aap+0L : inexact-ok += asinh upward ldbl-96-intel 0xap+0L : 0x2.ff8b8a0da57b5aa4p+0L : inexact-ok += asinh downward ldbl-96-m68k 0xap+0L : 0x2.ff8b8a0da57b5aap+0L : inexact-ok += asinh tonearest ldbl-96-m68k 0xap+0L : 0x2.ff8b8a0da57b5aa4p+0L : inexact-ok += asinh towardzero ldbl-96-m68k 0xap+0L : 0x2.ff8b8a0da57b5aap+0L : inexact-ok += asinh upward ldbl-96-m68k 0xap+0L : 0x2.ff8b8a0da57b5aa4p+0L : inexact-ok += asinh downward ldbl-128 0xap+0L : 0x2.ff8b8a0da57b5aa38395e907170cp+0L : inexact-ok += asinh tonearest ldbl-128 0xap+0L : 0x2.ff8b8a0da57b5aa38395e907170ep+0L : inexact-ok += asinh towardzero ldbl-128 0xap+0L : 0x2.ff8b8a0da57b5aa38395e907170cp+0L : inexact-ok += asinh upward ldbl-128 0xap+0L : 0x2.ff8b8a0da57b5aa38395e907170ep+0L : inexact-ok += asinh downward ldbl-128ibm 0xap+0L : 0x2.ff8b8a0da57b5aa38395e90717p+0L : inexact-ok += asinh tonearest ldbl-128ibm 0xap+0L : 0x2.ff8b8a0da57b5aa38395e90717p+0L : inexact-ok += asinh towardzero ldbl-128ibm 0xap+0L : 0x2.ff8b8a0da57b5aa38395e90717p+0L : inexact-ok += asinh upward ldbl-128ibm 0xap+0L : 0x2.ff8b8a0da57b5aa38395e90718p+0L : inexact-ok +asinh 100 += asinh downward flt-32 0x6.4p+4f : 0x5.4c6028p+0f : inexact-ok += asinh tonearest flt-32 0x6.4p+4f : 0x5.4c6028p+0f : inexact-ok += asinh towardzero flt-32 0x6.4p+4f : 0x5.4c6028p+0f : inexact-ok += asinh upward flt-32 0x6.4p+4f : 0x5.4c603p+0f : inexact-ok += asinh downward dbl-64 0x6.4p+4 : 0x5.4c602a4f4f0a4p+0 : inexact-ok += asinh tonearest dbl-64 0x6.4p+4 : 0x5.4c602a4f4f0a8p+0 : inexact-ok += asinh towardzero dbl-64 0x6.4p+4 : 0x5.4c602a4f4f0a4p+0 : inexact-ok += asinh upward dbl-64 0x6.4p+4 : 0x5.4c602a4f4f0a8p+0 : inexact-ok += asinh downward ldbl-96-intel 0x6.4p+4L : 0x5.4c602a4f4f0a7ce8p+0L : inexact-ok += asinh tonearest ldbl-96-intel 0x6.4p+4L : 0x5.4c602a4f4f0a7cfp+0L : inexact-ok += asinh towardzero ldbl-96-intel 0x6.4p+4L : 0x5.4c602a4f4f0a7ce8p+0L : inexact-ok += asinh upward ldbl-96-intel 0x6.4p+4L : 0x5.4c602a4f4f0a7cfp+0L : inexact-ok += asinh downward ldbl-96-m68k 0x6.4p+4L : 0x5.4c602a4f4f0a7ce8p+0L : inexact-ok += asinh tonearest ldbl-96-m68k 0x6.4p+4L : 0x5.4c602a4f4f0a7cfp+0L : inexact-ok += asinh towardzero ldbl-96-m68k 0x6.4p+4L : 0x5.4c602a4f4f0a7ce8p+0L : inexact-ok += asinh upward ldbl-96-m68k 0x6.4p+4L : 0x5.4c602a4f4f0a7cfp+0L : inexact-ok += asinh downward ldbl-128 0x6.4p+4L : 0x5.4c602a4f4f0a7cedac9045f3d3f8p+0L : inexact-ok += asinh tonearest ldbl-128 0x6.4p+4L : 0x5.4c602a4f4f0a7cedac9045f3d3f8p+0L : inexact-ok += asinh towardzero ldbl-128 0x6.4p+4L : 0x5.4c602a4f4f0a7cedac9045f3d3f8p+0L : inexact-ok += asinh upward ldbl-128 0x6.4p+4L : 0x5.4c602a4f4f0a7cedac9045f3d3fcp+0L : inexact-ok += asinh downward ldbl-128ibm 0x6.4p+4L : 0x5.4c602a4f4f0a7cedac9045f3d2p+0L : inexact-ok += asinh tonearest ldbl-128ibm 0x6.4p+4L : 0x5.4c602a4f4f0a7cedac9045f3d4p+0L : inexact-ok += asinh towardzero ldbl-128ibm 0x6.4p+4L : 0x5.4c602a4f4f0a7cedac9045f3d2p+0L : inexact-ok += asinh upward ldbl-128ibm 0x6.4p+4L : 0x5.4c602a4f4f0a7cedac9045f3d4p+0L : inexact-ok +asinh 1e6 += asinh downward flt-32 0xf.424p+16f : 0xe.82376p+0f : inexact-ok += asinh tonearest flt-32 0xf.424p+16f : 0xe.82376p+0f : inexact-ok += asinh towardzero flt-32 0xf.424p+16f : 0xe.82376p+0f : inexact-ok += asinh upward flt-32 0xf.424p+16f : 0xe.82377p+0f : inexact-ok += asinh downward dbl-64 0xf.424p+16 : 0xe.823764bfd1e58p+0 : inexact-ok += asinh tonearest dbl-64 0xf.424p+16 : 0xe.823764bfd1e6p+0 : inexact-ok += asinh towardzero dbl-64 0xf.424p+16 : 0xe.823764bfd1e58p+0 : inexact-ok += asinh upward dbl-64 0xf.424p+16 : 0xe.823764bfd1e6p+0 : inexact-ok += asinh downward ldbl-96-intel 0xf.424p+16L : 0xe.823764bfd1e5fa3p+0L : inexact-ok += asinh tonearest ldbl-96-intel 0xf.424p+16L : 0xe.823764bfd1e5fa3p+0L : inexact-ok += asinh towardzero ldbl-96-intel 0xf.424p+16L : 0xe.823764bfd1e5fa3p+0L : inexact-ok += asinh upward ldbl-96-intel 0xf.424p+16L : 0xe.823764bfd1e5fa4p+0L : inexact-ok += asinh downward ldbl-96-m68k 0xf.424p+16L : 0xe.823764bfd1e5fa3p+0L : inexact-ok += asinh tonearest ldbl-96-m68k 0xf.424p+16L : 0xe.823764bfd1e5fa3p+0L : inexact-ok += asinh towardzero ldbl-96-m68k 0xf.424p+16L : 0xe.823764bfd1e5fa3p+0L : inexact-ok += asinh upward ldbl-96-m68k 0xf.424p+16L : 0xe.823764bfd1e5fa4p+0L : inexact-ok += asinh downward ldbl-128 0xf.424p+16L : 0xe.823764bfd1e5fa37c6bf52ed09dp+0L : inexact-ok += asinh tonearest ldbl-128 0xf.424p+16L : 0xe.823764bfd1e5fa37c6bf52ed09dp+0L : inexact-ok += asinh towardzero ldbl-128 0xf.424p+16L : 0xe.823764bfd1e5fa37c6bf52ed09dp+0L : inexact-ok += asinh upward ldbl-128 0xf.424p+16L : 0xe.823764bfd1e5fa37c6bf52ed09d8p+0L : inexact-ok += asinh downward ldbl-128ibm 0xf.424p+16L : 0xe.823764bfd1e5fa37c6bf52ed08p+0L : inexact-ok += asinh tonearest ldbl-128ibm 0xf.424p+16L : 0xe.823764bfd1e5fa37c6bf52ed08p+0L : inexact-ok += asinh towardzero ldbl-128ibm 0xf.424p+16L : 0xe.823764bfd1e5fa37c6bf52ed08p+0L : inexact-ok += asinh upward ldbl-128ibm 0xf.424p+16L : 0xe.823764bfd1e5fa37c6bf52ed0cp+0L : inexact-ok +asinh 0x1p100 += asinh downward flt-32 0x1p+100f : 0x4.60203p+4f : inexact-ok += asinh tonearest flt-32 0x1p+100f : 0x4.602038p+4f : inexact-ok += asinh towardzero flt-32 0x1p+100f : 0x4.60203p+4f : inexact-ok += asinh upward flt-32 0x1p+100f : 0x4.602038p+4f : inexact-ok += asinh downward dbl-64 0x1p+100 : 0x4.6020374c5c6d8p+4 : inexact-ok += asinh tonearest dbl-64 0x1p+100 : 0x4.6020374c5c6dcp+4 : inexact-ok += asinh towardzero dbl-64 0x1p+100 : 0x4.6020374c5c6d8p+4 : inexact-ok += asinh upward dbl-64 0x1p+100 : 0x4.6020374c5c6dcp+4 : inexact-ok += asinh downward ldbl-96-intel 0x1p+100L : 0x4.6020374c5c6db008p+4L : inexact-ok += asinh tonearest ldbl-96-intel 0x1p+100L : 0x4.6020374c5c6db01p+4L : inexact-ok += asinh towardzero ldbl-96-intel 0x1p+100L : 0x4.6020374c5c6db008p+4L : inexact-ok += asinh upward ldbl-96-intel 0x1p+100L : 0x4.6020374c5c6db01p+4L : inexact-ok += asinh downward ldbl-96-m68k 0x1p+100L : 0x4.6020374c5c6db008p+4L : inexact-ok += asinh tonearest ldbl-96-m68k 0x1p+100L : 0x4.6020374c5c6db01p+4L : inexact-ok += asinh towardzero ldbl-96-m68k 0x1p+100L : 0x4.6020374c5c6db008p+4L : inexact-ok += asinh upward ldbl-96-m68k 0x1p+100L : 0x4.6020374c5c6db01p+4L : inexact-ok += asinh downward ldbl-128 0x1p+100L : 0x4.6020374c5c6db00c6a6d5daf98ecp+4L : inexact-ok += asinh tonearest ldbl-128 0x1p+100L : 0x4.6020374c5c6db00c6a6d5daf98ecp+4L : inexact-ok += asinh towardzero ldbl-128 0x1p+100L : 0x4.6020374c5c6db00c6a6d5daf98ecp+4L : inexact-ok += asinh upward ldbl-128 0x1p+100L : 0x4.6020374c5c6db00c6a6d5daf98fp+4L : inexact-ok += asinh downward ldbl-128ibm 0x1p+100L : 0x4.6020374c5c6db00c6a6d5daf98p+4L : inexact-ok += asinh tonearest ldbl-128ibm 0x1p+100L : 0x4.6020374c5c6db00c6a6d5daf98p+4L : inexact-ok += asinh towardzero ldbl-128ibm 0x1p+100L : 0x4.6020374c5c6db00c6a6d5daf98p+4L : inexact-ok += asinh upward ldbl-128ibm 0x1p+100L : 0x4.6020374c5c6db00c6a6d5daf9ap+4L : inexact-ok +asinh min missing-underflow += asinh downward flt-32 0x4p-128f : 0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += asinh tonearest flt-32 0x4p-128f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok += asinh towardzero flt-32 0x4p-128f : 0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += asinh upward flt-32 0x4p-128f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok += asinh downward dbl-64 0x4p-128 : 0x3.ffffffffffffep-128 : inexact-ok += asinh tonearest dbl-64 0x4p-128 : 0x4p-128 : inexact-ok += asinh towardzero dbl-64 0x4p-128 : 0x3.ffffffffffffep-128 : inexact-ok += asinh upward dbl-64 0x4p-128 : 0x4p-128 : inexact-ok += asinh downward ldbl-96-intel 0x4p-128L : 0x3.fffffffffffffffcp-128L : inexact-ok += asinh tonearest ldbl-96-intel 0x4p-128L : 0x4p-128L : inexact-ok += asinh towardzero ldbl-96-intel 0x4p-128L : 0x3.fffffffffffffffcp-128L : inexact-ok += asinh upward ldbl-96-intel 0x4p-128L : 0x4p-128L : inexact-ok += asinh downward ldbl-96-m68k 0x4p-128L : 0x3.fffffffffffffffcp-128L : inexact-ok += asinh tonearest ldbl-96-m68k 0x4p-128L : 0x4p-128L : inexact-ok += asinh towardzero ldbl-96-m68k 0x4p-128L : 0x3.fffffffffffffffcp-128L : inexact-ok += asinh upward ldbl-96-m68k 0x4p-128L : 0x4p-128L : inexact-ok += asinh downward ldbl-128 0x4p-128L : 0x3.fffffffffffffffffffffffffffep-128L : inexact-ok += asinh tonearest ldbl-128 0x4p-128L : 0x4p-128L : inexact-ok += asinh towardzero ldbl-128 0x4p-128L : 0x3.fffffffffffffffffffffffffffep-128L : inexact-ok += asinh upward ldbl-128 0x4p-128L : 0x4p-128L : inexact-ok += asinh downward ldbl-128ibm 0x4p-128L : 0x3.ffffffffffffffffffffffffffp-128L : inexact-ok += asinh tonearest ldbl-128ibm 0x4p-128L : 0x4p-128L : inexact-ok += asinh towardzero ldbl-128ibm 0x4p-128L : 0x3.ffffffffffffffffffffffffffp-128L : inexact-ok += asinh upward ldbl-128ibm 0x4p-128L : 0x4p-128L : inexact-ok += asinh downward dbl-64 0x4p-1024 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += asinh tonearest dbl-64 0x4p-1024 : 0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += asinh towardzero dbl-64 0x4p-1024 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += asinh upward dbl-64 0x4p-1024 : 0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += asinh downward ldbl-96-intel 0x4p-1024L : 0x3.fffffffffffffffcp-1024L : inexact-ok += asinh tonearest ldbl-96-intel 0x4p-1024L : 0x4p-1024L : inexact-ok += asinh towardzero ldbl-96-intel 0x4p-1024L : 0x3.fffffffffffffffcp-1024L : inexact-ok += asinh upward ldbl-96-intel 0x4p-1024L : 0x4p-1024L : inexact-ok += asinh downward ldbl-96-m68k 0x4p-1024L : 0x3.fffffffffffffffcp-1024L : inexact-ok += asinh tonearest ldbl-96-m68k 0x4p-1024L : 0x4p-1024L : inexact-ok += asinh towardzero ldbl-96-m68k 0x4p-1024L : 0x3.fffffffffffffffcp-1024L : inexact-ok += asinh upward ldbl-96-m68k 0x4p-1024L : 0x4p-1024L : inexact-ok += asinh downward ldbl-128 0x4p-1024L : 0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok += asinh tonearest ldbl-128 0x4p-1024L : 0x4p-1024L : inexact-ok += asinh towardzero ldbl-128 0x4p-1024L : 0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok += asinh upward ldbl-128 0x4p-1024L : 0x4p-1024L : inexact-ok += asinh downward ldbl-128ibm 0x4p-1024L : 0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128ibm 0x4p-1024L : 0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128ibm 0x4p-1024L : 0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128ibm 0x4p-1024L : 0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-intel 0x4p-16384L : 0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh tonearest ldbl-96-intel 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh towardzero ldbl-96-intel 0x4p-16384L : 0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh upward ldbl-96-intel 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh downward ldbl-96-m68k 0x4p-16384L : 0x3.fffffffffffffffcp-16384L : inexact-ok += asinh tonearest ldbl-96-m68k 0x4p-16384L : 0x4p-16384L : inexact-ok += asinh towardzero ldbl-96-m68k 0x4p-16384L : 0x3.fffffffffffffffcp-16384L : inexact-ok += asinh upward ldbl-96-m68k 0x4p-16384L : 0x4p-16384L : inexact-ok += asinh downward ldbl-128 0x4p-16384L : 0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asinh tonearest ldbl-128 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh towardzero ldbl-128 0x4p-16384L : 0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asinh upward ldbl-128 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh downward ldbl-96-intel 0x2p-16384L : 0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-96-intel 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-96-intel 0x2p-16384L : 0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-96-intel 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-m68k 0x2p-16384L : 0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asinh tonearest ldbl-96-m68k 0x2p-16384L : 0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh towardzero ldbl-96-m68k 0x2p-16384L : 0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asinh upward ldbl-96-m68k 0x2p-16384L : 0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh downward ldbl-128 0x2p-16384L : 0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128 0x2p-16384L : 0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward dbl-64 0x8p-972 : 0x7.ffffffffffffcp-972 : inexact-ok += asinh tonearest dbl-64 0x8p-972 : 0x8p-972 : inexact-ok += asinh towardzero dbl-64 0x8p-972 : 0x7.ffffffffffffcp-972 : inexact-ok += asinh upward dbl-64 0x8p-972 : 0x8p-972 : inexact-ok += asinh downward ldbl-96-intel 0x8p-972L : 0x7.fffffffffffffff8p-972L : inexact-ok += asinh tonearest ldbl-96-intel 0x8p-972L : 0x8p-972L : inexact-ok += asinh towardzero ldbl-96-intel 0x8p-972L : 0x7.fffffffffffffff8p-972L : inexact-ok += asinh upward ldbl-96-intel 0x8p-972L : 0x8p-972L : inexact-ok += asinh downward ldbl-96-m68k 0x8p-972L : 0x7.fffffffffffffff8p-972L : inexact-ok += asinh tonearest ldbl-96-m68k 0x8p-972L : 0x8p-972L : inexact-ok += asinh towardzero ldbl-96-m68k 0x8p-972L : 0x7.fffffffffffffff8p-972L : inexact-ok += asinh upward ldbl-96-m68k 0x8p-972L : 0x8p-972L : inexact-ok += asinh downward ldbl-128 0x8p-972L : 0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok += asinh tonearest ldbl-128 0x8p-972L : 0x8p-972L : inexact-ok += asinh towardzero ldbl-128 0x8p-972L : 0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok += asinh upward ldbl-128 0x8p-972L : 0x8p-972L : inexact-ok += asinh downward ldbl-128ibm 0x8p-972L : 0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok += asinh tonearest ldbl-128ibm 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok errno-erange-ok += asinh towardzero ldbl-128ibm 0x8p-972L : 0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok += asinh upward ldbl-128ibm 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok errno-erange-ok +asinh -min missing-underflow += asinh downward flt-32 -0x4p-128f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok += asinh tonearest flt-32 -0x4p-128f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok += asinh towardzero flt-32 -0x4p-128f : -0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += asinh upward flt-32 -0x4p-128f : -0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += asinh downward dbl-64 -0x4p-128 : -0x4p-128 : inexact-ok += asinh tonearest dbl-64 -0x4p-128 : -0x4p-128 : inexact-ok += asinh towardzero dbl-64 -0x4p-128 : -0x3.ffffffffffffep-128 : inexact-ok += asinh upward dbl-64 -0x4p-128 : -0x3.ffffffffffffep-128 : inexact-ok += asinh downward ldbl-96-intel -0x4p-128L : -0x4p-128L : inexact-ok += asinh tonearest ldbl-96-intel -0x4p-128L : -0x4p-128L : inexact-ok += asinh towardzero ldbl-96-intel -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += asinh upward ldbl-96-intel -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += asinh downward ldbl-96-m68k -0x4p-128L : -0x4p-128L : inexact-ok += asinh tonearest ldbl-96-m68k -0x4p-128L : -0x4p-128L : inexact-ok += asinh towardzero ldbl-96-m68k -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += asinh upward ldbl-96-m68k -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += asinh downward ldbl-128 -0x4p-128L : -0x4p-128L : inexact-ok += asinh tonearest ldbl-128 -0x4p-128L : -0x4p-128L : inexact-ok += asinh towardzero ldbl-128 -0x4p-128L : -0x3.fffffffffffffffffffffffffffep-128L : inexact-ok += asinh upward ldbl-128 -0x4p-128L : -0x3.fffffffffffffffffffffffffffep-128L : inexact-ok += asinh downward ldbl-128ibm -0x4p-128L : -0x4p-128L : inexact-ok += asinh tonearest ldbl-128ibm -0x4p-128L : -0x4p-128L : inexact-ok += asinh towardzero ldbl-128ibm -0x4p-128L : -0x3.ffffffffffffffffffffffffffp-128L : inexact-ok += asinh upward ldbl-128ibm -0x4p-128L : -0x3.ffffffffffffffffffffffffffp-128L : inexact-ok += asinh downward dbl-64 -0x4p-1024 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += asinh tonearest dbl-64 -0x4p-1024 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += asinh towardzero dbl-64 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += asinh upward dbl-64 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += asinh downward ldbl-96-intel -0x4p-1024L : -0x4p-1024L : inexact-ok += asinh tonearest ldbl-96-intel -0x4p-1024L : -0x4p-1024L : inexact-ok += asinh towardzero ldbl-96-intel -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += asinh upward ldbl-96-intel -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += asinh downward ldbl-96-m68k -0x4p-1024L : -0x4p-1024L : inexact-ok += asinh tonearest ldbl-96-m68k -0x4p-1024L : -0x4p-1024L : inexact-ok += asinh towardzero ldbl-96-m68k -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += asinh upward ldbl-96-m68k -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += asinh downward ldbl-128 -0x4p-1024L : -0x4p-1024L : inexact-ok += asinh tonearest ldbl-128 -0x4p-1024L : -0x4p-1024L : inexact-ok += asinh towardzero ldbl-128 -0x4p-1024L : -0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok += asinh upward ldbl-128 -0x4p-1024L : -0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok += asinh downward ldbl-128ibm -0x4p-1024L : -0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128ibm -0x4p-1024L : -0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128ibm -0x4p-1024L : -0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128ibm -0x4p-1024L : -0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-intel -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh tonearest ldbl-96-intel -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh towardzero ldbl-96-intel -0x4p-16384L : -0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh upward ldbl-96-intel -0x4p-16384L : -0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh downward ldbl-96-m68k -0x4p-16384L : -0x4p-16384L : inexact-ok += asinh tonearest ldbl-96-m68k -0x4p-16384L : -0x4p-16384L : inexact-ok += asinh towardzero ldbl-96-m68k -0x4p-16384L : -0x3.fffffffffffffffcp-16384L : inexact-ok += asinh upward ldbl-96-m68k -0x4p-16384L : -0x3.fffffffffffffffcp-16384L : inexact-ok += asinh downward ldbl-128 -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh tonearest ldbl-128 -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh towardzero ldbl-128 -0x4p-16384L : -0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asinh upward ldbl-128 -0x4p-16384L : -0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asinh downward ldbl-96-intel -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-96-intel -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-96-intel -0x2p-16384L : -0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-96-intel -0x2p-16384L : -0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-m68k -0x2p-16384L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh tonearest ldbl-96-m68k -0x2p-16384L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += asinh towardzero ldbl-96-m68k -0x2p-16384L : -0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asinh upward ldbl-96-m68k -0x2p-16384L : -0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += asinh downward ldbl-128 -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128 -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128 -0x2p-16384L : -0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128 -0x2p-16384L : -0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward dbl-64 -0x8p-972 : -0x8p-972 : inexact-ok += asinh tonearest dbl-64 -0x8p-972 : -0x8p-972 : inexact-ok += asinh towardzero dbl-64 -0x8p-972 : -0x7.ffffffffffffcp-972 : inexact-ok += asinh upward dbl-64 -0x8p-972 : -0x7.ffffffffffffcp-972 : inexact-ok += asinh downward ldbl-96-intel -0x8p-972L : -0x8p-972L : inexact-ok += asinh tonearest ldbl-96-intel -0x8p-972L : -0x8p-972L : inexact-ok += asinh towardzero ldbl-96-intel -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += asinh upward ldbl-96-intel -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += asinh downward ldbl-96-m68k -0x8p-972L : -0x8p-972L : inexact-ok += asinh tonearest ldbl-96-m68k -0x8p-972L : -0x8p-972L : inexact-ok += asinh towardzero ldbl-96-m68k -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += asinh upward ldbl-96-m68k -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += asinh downward ldbl-128 -0x8p-972L : -0x8p-972L : inexact-ok += asinh tonearest ldbl-128 -0x8p-972L : -0x8p-972L : inexact-ok += asinh towardzero ldbl-128 -0x8p-972L : -0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok += asinh upward ldbl-128 -0x8p-972L : -0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok += asinh downward ldbl-128ibm -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok += asinh tonearest ldbl-128ibm -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok += asinh towardzero ldbl-128ibm -0x8p-972L : -0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok += asinh upward ldbl-128ibm -0x8p-972L : -0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok +asinh min_subnorm missing-underflow += asinh downward flt-32 0x8p-152f : 0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest flt-32 0x8p-152f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero flt-32 0x8p-152f : 0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward flt-32 0x8p-152f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward dbl-64 0x8p-152 : 0x7.ffffffffffffcp-152 : inexact-ok += asinh tonearest dbl-64 0x8p-152 : 0x8p-152 : inexact-ok += asinh towardzero dbl-64 0x8p-152 : 0x7.ffffffffffffcp-152 : inexact-ok += asinh upward dbl-64 0x8p-152 : 0x8p-152 : inexact-ok += asinh downward ldbl-96-intel 0x8p-152L : 0x7.fffffffffffffff8p-152L : inexact-ok += asinh tonearest ldbl-96-intel 0x8p-152L : 0x8p-152L : inexact-ok += asinh towardzero ldbl-96-intel 0x8p-152L : 0x7.fffffffffffffff8p-152L : inexact-ok += asinh upward ldbl-96-intel 0x8p-152L : 0x8p-152L : inexact-ok += asinh downward ldbl-96-m68k 0x8p-152L : 0x7.fffffffffffffff8p-152L : inexact-ok += asinh tonearest ldbl-96-m68k 0x8p-152L : 0x8p-152L : inexact-ok += asinh towardzero ldbl-96-m68k 0x8p-152L : 0x7.fffffffffffffff8p-152L : inexact-ok += asinh upward ldbl-96-m68k 0x8p-152L : 0x8p-152L : inexact-ok += asinh downward ldbl-128 0x8p-152L : 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += asinh tonearest ldbl-128 0x8p-152L : 0x8p-152L : inexact-ok += asinh towardzero ldbl-128 0x8p-152L : 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += asinh upward ldbl-128 0x8p-152L : 0x8p-152L : inexact-ok += asinh downward ldbl-128ibm 0x8p-152L : 0x7.fffffffffffffffffffffffffep-152L : inexact-ok += asinh tonearest ldbl-128ibm 0x8p-152L : 0x8p-152L : inexact-ok += asinh towardzero ldbl-128ibm 0x8p-152L : 0x7.fffffffffffffffffffffffffep-152L : inexact-ok += asinh upward ldbl-128ibm 0x8p-152L : 0x8p-152L : inexact-ok += asinh downward dbl-64 0x4p-1076 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest dbl-64 0x4p-1076 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero dbl-64 0x4p-1076 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward dbl-64 0x4p-1076 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-intel 0x4p-1076L : 0x3.fffffffffffffffcp-1076L : inexact-ok += asinh tonearest ldbl-96-intel 0x4p-1076L : 0x4p-1076L : inexact-ok += asinh towardzero ldbl-96-intel 0x4p-1076L : 0x3.fffffffffffffffcp-1076L : inexact-ok += asinh upward ldbl-96-intel 0x4p-1076L : 0x4p-1076L : inexact-ok += asinh downward ldbl-96-m68k 0x4p-1076L : 0x3.fffffffffffffffcp-1076L : inexact-ok += asinh tonearest ldbl-96-m68k 0x4p-1076L : 0x4p-1076L : inexact-ok += asinh towardzero ldbl-96-m68k 0x4p-1076L : 0x3.fffffffffffffffcp-1076L : inexact-ok += asinh upward ldbl-96-m68k 0x4p-1076L : 0x4p-1076L : inexact-ok += asinh downward ldbl-128 0x4p-1076L : 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += asinh tonearest ldbl-128 0x4p-1076L : 0x4p-1076L : inexact-ok += asinh towardzero ldbl-128 0x4p-1076L : 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += asinh upward ldbl-128 0x4p-1076L : 0x4p-1076L : inexact-ok += asinh downward ldbl-128ibm 0x4p-1076L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128ibm 0x4p-1076L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128ibm 0x4p-1076L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128ibm 0x4p-1076L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-intel 0x8p-16448L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-96-intel 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-96-intel 0x8p-16448L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-96-intel 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-m68k 0x8p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-96-m68k 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-96-m68k 0x8p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-96-m68k 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-128 0x8p-16448L : 0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128 0x8p-16448L : 0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-m68k 0x4p-16448L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-96-m68k 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-96-m68k 0x4p-16448L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-96-m68k 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-128 0x4p-16448L : 0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128 0x4p-16448L : 0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-128 0x4p-16496L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128 0x4p-16496L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128 0x4p-16496L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128 0x4p-16496L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok +asinh -min_subnorm missing-underflow += asinh downward flt-32 -0x8p-152f : -0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest flt-32 -0x8p-152f : -0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero flt-32 -0x8p-152f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward flt-32 -0x8p-152f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward dbl-64 -0x8p-152 : -0x8p-152 : inexact-ok += asinh tonearest dbl-64 -0x8p-152 : -0x8p-152 : inexact-ok += asinh towardzero dbl-64 -0x8p-152 : -0x7.ffffffffffffcp-152 : inexact-ok += asinh upward dbl-64 -0x8p-152 : -0x7.ffffffffffffcp-152 : inexact-ok += asinh downward ldbl-96-intel -0x8p-152L : -0x8p-152L : inexact-ok += asinh tonearest ldbl-96-intel -0x8p-152L : -0x8p-152L : inexact-ok += asinh towardzero ldbl-96-intel -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += asinh upward ldbl-96-intel -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += asinh downward ldbl-96-m68k -0x8p-152L : -0x8p-152L : inexact-ok += asinh tonearest ldbl-96-m68k -0x8p-152L : -0x8p-152L : inexact-ok += asinh towardzero ldbl-96-m68k -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += asinh upward ldbl-96-m68k -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += asinh downward ldbl-128 -0x8p-152L : -0x8p-152L : inexact-ok += asinh tonearest ldbl-128 -0x8p-152L : -0x8p-152L : inexact-ok += asinh towardzero ldbl-128 -0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += asinh upward ldbl-128 -0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += asinh downward ldbl-128ibm -0x8p-152L : -0x8p-152L : inexact-ok += asinh tonearest ldbl-128ibm -0x8p-152L : -0x8p-152L : inexact-ok += asinh towardzero ldbl-128ibm -0x8p-152L : -0x7.fffffffffffffffffffffffffep-152L : inexact-ok += asinh upward ldbl-128ibm -0x8p-152L : -0x7.fffffffffffffffffffffffffep-152L : inexact-ok += asinh downward dbl-64 -0x4p-1076 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest dbl-64 -0x4p-1076 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero dbl-64 -0x4p-1076 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward dbl-64 -0x4p-1076 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-intel -0x4p-1076L : -0x4p-1076L : inexact-ok += asinh tonearest ldbl-96-intel -0x4p-1076L : -0x4p-1076L : inexact-ok += asinh towardzero ldbl-96-intel -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += asinh upward ldbl-96-intel -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += asinh downward ldbl-96-m68k -0x4p-1076L : -0x4p-1076L : inexact-ok += asinh tonearest ldbl-96-m68k -0x4p-1076L : -0x4p-1076L : inexact-ok += asinh towardzero ldbl-96-m68k -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += asinh upward ldbl-96-m68k -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += asinh downward ldbl-128 -0x4p-1076L : -0x4p-1076L : inexact-ok += asinh tonearest ldbl-128 -0x4p-1076L : -0x4p-1076L : inexact-ok += asinh towardzero ldbl-128 -0x4p-1076L : -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += asinh upward ldbl-128 -0x4p-1076L : -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += asinh downward ldbl-128ibm -0x4p-1076L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128ibm -0x4p-1076L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128ibm -0x4p-1076L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128ibm -0x4p-1076L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-intel -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-96-intel -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-96-intel -0x8p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-96-intel -0x8p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-m68k -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-96-m68k -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-96-m68k -0x8p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-96-m68k -0x8p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-128 -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128 -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128 -0x8p-16448L : -0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128 -0x8p-16448L : -0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-96-m68k -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-96-m68k -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-96-m68k -0x4p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-96-m68k -0x4p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-128 -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128 -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128 -0x4p-16448L : -0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128 -0x4p-16448L : -0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += asinh downward ldbl-128 -0x4p-16496L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += asinh tonearest ldbl-128 -0x4p-16496L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += asinh towardzero ldbl-128 -0x4p-16496L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += asinh upward ldbl-128 -0x4p-16496L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok +asinh max no-test-inline += asinh downward flt-32 0xf.fffffp+124f : 0x5.96a7ep+4f : no-test-inline inexact-ok += asinh tonearest flt-32 0xf.fffffp+124f : 0x5.96a7ep+4f : no-test-inline inexact-ok += asinh towardzero flt-32 0xf.fffffp+124f : 0x5.96a7ep+4f : no-test-inline inexact-ok += asinh upward flt-32 0xf.fffffp+124f : 0x5.96a7e8p+4f : no-test-inline inexact-ok += asinh downward dbl-64 0xf.fffffp+124 : 0x5.96a7e12e0b988p+4 : no-test-inline inexact-ok += asinh tonearest dbl-64 0xf.fffffp+124 : 0x5.96a7e12e0b98cp+4 : no-test-inline inexact-ok += asinh towardzero dbl-64 0xf.fffffp+124 : 0x5.96a7e12e0b988p+4 : no-test-inline inexact-ok += asinh upward dbl-64 0xf.fffffp+124 : 0x5.96a7e12e0b98cp+4 : no-test-inline inexact-ok += asinh downward ldbl-96-intel 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh tonearest ldbl-96-intel 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh towardzero ldbl-96-intel 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh upward ldbl-96-intel 0xf.fffffp+124L : 0x5.96a7e12e0b98bdp+4L : no-test-inline inexact-ok += asinh downward ldbl-96-m68k 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh tonearest ldbl-96-m68k 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh towardzero ldbl-96-m68k 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh upward ldbl-96-m68k 0xf.fffffp+124L : 0x5.96a7e12e0b98bdp+4L : no-test-inline inexact-ok += asinh downward ldbl-128 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a4468p+4L : no-test-inline inexact-ok += asinh tonearest ldbl-128 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a4468p+4L : no-test-inline inexact-ok += asinh towardzero ldbl-128 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a4468p+4L : no-test-inline inexact-ok += asinh upward ldbl-128 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a44684p+4L : no-test-inline inexact-ok += asinh downward ldbl-128ibm 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a446p+4L : no-test-inline inexact-ok += asinh tonearest ldbl-128ibm 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a446p+4L : no-test-inline inexact-ok += asinh towardzero ldbl-128ibm 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a446p+4L : no-test-inline inexact-ok += asinh upward ldbl-128ibm 0xf.fffffp+124L : 0x5.96a7e12e0b98bcf90bb682a448p+4L : no-test-inline inexact-ok += asinh downward dbl-64 0xf.ffffffffffff8p+1020 : 0x2.c679d1f73f0fap+8 : no-test-inline inexact-ok += asinh tonearest dbl-64 0xf.ffffffffffff8p+1020 : 0x2.c679d1f73f0fcp+8 : no-test-inline inexact-ok += asinh towardzero dbl-64 0xf.ffffffffffff8p+1020 : 0x2.c679d1f73f0fap+8 : no-test-inline inexact-ok += asinh upward dbl-64 0xf.ffffffffffff8p+1020 : 0x2.c679d1f73f0fcp+8 : no-test-inline inexact-ok += asinh downward ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh upward ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb624p+8L : no-test-inline inexact-ok += asinh downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb624p+8L : no-test-inline inexact-ok += asinh downward ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7cep+8L : no-test-inline inexact-ok += asinh tonearest ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7dp+8L : no-test-inline inexact-ok += asinh towardzero ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7cep+8L : no-test-inline inexact-ok += asinh upward ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7dp+8L : no-test-inline inexact-ok += asinh downward ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7p+8L : no-test-inline inexact-ok += asinh tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a8p+8L : no-test-inline inexact-ok += asinh towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a7p+8L : no-test-inline inexact-ok += asinh upward ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.c679d1f73f0fb620d358b213a8p+8L : no-test-inline inexact-ok += asinh downward ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += asinh tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += asinh towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += asinh upward ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += asinh downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += asinh tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += asinh towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += asinh upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += asinh downward ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a6c23b6c9b494cp+12L : no-test-inline inexact-ok += asinh tonearest ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a6c23b6c9b494cp+12L : no-test-inline inexact-ok += asinh towardzero ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a6c23b6c9b494cp+12L : no-test-inline inexact-ok += asinh upward ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.c5d37700c6bb03a6c23b6c9b494ep+12L : no-test-inline inexact-ok += asinh downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : no-test-inline inexact-ok += asinh tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : no-test-inline inexact-ok += asinh towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : no-test-inline inexact-ok += asinh upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.c5d37700c6bb03a6c24b6c9b494ep+12L : no-test-inline inexact-ok += asinh downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7cep+8L : no-test-inline inexact-ok += asinh tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7dp+8L : no-test-inline inexact-ok += asinh towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7cep+8L : no-test-inline inexact-ok += asinh upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7dp+8L : no-test-inline inexact-ok += asinh downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7p+8L : no-test-inline inexact-ok += asinh tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a8p+8L : no-test-inline inexact-ok += asinh towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a7p+8L : no-test-inline inexact-ok += asinh upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.c679d1f73f0fb624d358b213a8p+8L : no-test-inline inexact-ok +asinh -max no-test-inline += asinh downward flt-32 -0xf.fffffp+124f : -0x5.96a7e8p+4f : no-test-inline inexact-ok += asinh tonearest flt-32 -0xf.fffffp+124f : -0x5.96a7ep+4f : no-test-inline inexact-ok += asinh towardzero flt-32 -0xf.fffffp+124f : -0x5.96a7ep+4f : no-test-inline inexact-ok += asinh upward flt-32 -0xf.fffffp+124f : -0x5.96a7ep+4f : no-test-inline inexact-ok += asinh downward dbl-64 -0xf.fffffp+124 : -0x5.96a7e12e0b98cp+4 : no-test-inline inexact-ok += asinh tonearest dbl-64 -0xf.fffffp+124 : -0x5.96a7e12e0b98cp+4 : no-test-inline inexact-ok += asinh towardzero dbl-64 -0xf.fffffp+124 : -0x5.96a7e12e0b988p+4 : no-test-inline inexact-ok += asinh upward dbl-64 -0xf.fffffp+124 : -0x5.96a7e12e0b988p+4 : no-test-inline inexact-ok += asinh downward ldbl-96-intel -0xf.fffffp+124L : -0x5.96a7e12e0b98bdp+4L : no-test-inline inexact-ok += asinh tonearest ldbl-96-intel -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh towardzero ldbl-96-intel -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh upward ldbl-96-intel -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh downward ldbl-96-m68k -0xf.fffffp+124L : -0x5.96a7e12e0b98bdp+4L : no-test-inline inexact-ok += asinh tonearest ldbl-96-m68k -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh towardzero ldbl-96-m68k -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh upward ldbl-96-m68k -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf8p+4L : no-test-inline inexact-ok += asinh downward ldbl-128 -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf90bb682a44684p+4L : no-test-inline inexact-ok += asinh tonearest ldbl-128 -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf90bb682a4468p+4L : no-test-inline inexact-ok += asinh towardzero ldbl-128 -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf90bb682a4468p+4L : no-test-inline inexact-ok += asinh upward ldbl-128 -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf90bb682a4468p+4L : no-test-inline inexact-ok += asinh downward ldbl-128ibm -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf90bb682a448p+4L : no-test-inline inexact-ok += asinh tonearest ldbl-128ibm -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf90bb682a446p+4L : no-test-inline inexact-ok += asinh towardzero ldbl-128ibm -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf90bb682a446p+4L : no-test-inline inexact-ok += asinh upward ldbl-128ibm -0xf.fffffp+124L : -0x5.96a7e12e0b98bcf90bb682a446p+4L : no-test-inline inexact-ok += asinh downward dbl-64 -0xf.ffffffffffff8p+1020 : -0x2.c679d1f73f0fcp+8 : no-test-inline inexact-ok += asinh tonearest dbl-64 -0xf.ffffffffffff8p+1020 : -0x2.c679d1f73f0fcp+8 : no-test-inline inexact-ok += asinh towardzero dbl-64 -0xf.ffffffffffff8p+1020 : -0x2.c679d1f73f0fap+8 : no-test-inline inexact-ok += asinh upward dbl-64 -0xf.ffffffffffff8p+1020 : -0x2.c679d1f73f0fap+8 : no-test-inline inexact-ok += asinh downward ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb624p+8L : no-test-inline inexact-ok += asinh tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh upward ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb624p+8L : no-test-inline inexact-ok += asinh tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb62p+8L : no-test-inline inexact-ok += asinh downward ldbl-128 -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb620d358b213a7dp+8L : no-test-inline inexact-ok += asinh tonearest ldbl-128 -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb620d358b213a7dp+8L : no-test-inline inexact-ok += asinh towardzero ldbl-128 -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb620d358b213a7cep+8L : no-test-inline inexact-ok += asinh upward ldbl-128 -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb620d358b213a7cep+8L : no-test-inline inexact-ok += asinh downward ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb620d358b213a8p+8L : no-test-inline inexact-ok += asinh tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb620d358b213a8p+8L : no-test-inline inexact-ok += asinh towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb620d358b213a7p+8L : no-test-inline inexact-ok += asinh upward ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0x2.c679d1f73f0fb620d358b213a7p+8L : no-test-inline inexact-ok += asinh downward ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += asinh tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += asinh towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += asinh upward ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += asinh downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += asinh tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a8p+12L : no-test-inline inexact-ok += asinh towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += asinh upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a4p+12L : no-test-inline inexact-ok += asinh downward ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a6c23b6c9b494cp+12L : no-test-inline inexact-ok += asinh tonearest ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a6c23b6c9b494cp+12L : no-test-inline inexact-ok += asinh towardzero ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a6c23b6c9b494ap+12L : no-test-inline inexact-ok += asinh upward ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.c5d37700c6bb03a6c23b6c9b494ap+12L : no-test-inline inexact-ok += asinh downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : no-test-inline inexact-ok += asinh tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : no-test-inline inexact-ok += asinh towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.c5d37700c6bb03a6c24b6c9b494ap+12L : no-test-inline inexact-ok += asinh upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.c5d37700c6bb03a6c24b6c9b494ap+12L : no-test-inline inexact-ok += asinh downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.c679d1f73f0fb624d358b213a7dp+8L : no-test-inline inexact-ok += asinh tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.c679d1f73f0fb624d358b213a7dp+8L : no-test-inline inexact-ok += asinh towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.c679d1f73f0fb624d358b213a7cep+8L : no-test-inline inexact-ok += asinh upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.c679d1f73f0fb624d358b213a7cep+8L : no-test-inline inexact-ok += asinh downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.c679d1f73f0fb624d358b213a8p+8L : no-test-inline inexact-ok += asinh tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.c679d1f73f0fb624d358b213a8p+8L : no-test-inline inexact-ok += asinh towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.c679d1f73f0fb624d358b213a7p+8L : no-test-inline inexact-ok += asinh upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.c679d1f73f0fb624d358b213a7p+8L : no-test-inline inexact-ok atan 0 = atan downward flt-32 0x0p+0f : 0x0p+0f : inexact-ok = atan tonearest flt-32 0x0p+0f : 0x0p+0f : inexact-ok @@ -1898,6 +3253,106 @@ atan 0.75 = atan tonearest ldbl-128ibm 0xcp-4L : 0xa.4bc7d1934f7092419a87f2a458p-4L : inexact-ok = atan towardzero ldbl-128ibm 0xcp-4L : 0xa.4bc7d1934f7092419a87f2a454p-4L : inexact-ok = atan upward ldbl-128ibm 0xcp-4L : 0xa.4bc7d1934f7092419a87f2a458p-4L : inexact-ok +atan 0x1p-5 += atan downward flt-32 0x8p-8f : 0x7.ff5568p-8f : inexact-ok += atan tonearest flt-32 0x8p-8f : 0x7.ff557p-8f : inexact-ok += atan towardzero flt-32 0x8p-8f : 0x7.ff5568p-8f : inexact-ok += atan upward flt-32 0x8p-8f : 0x7.ff557p-8f : inexact-ok += atan downward dbl-64 0x8p-8 : 0x7.ff556eea5d89p-8 : inexact-ok += atan tonearest dbl-64 0x8p-8 : 0x7.ff556eea5d894p-8 : inexact-ok += atan towardzero dbl-64 0x8p-8 : 0x7.ff556eea5d89p-8 : inexact-ok += atan upward dbl-64 0x8p-8 : 0x7.ff556eea5d894p-8 : inexact-ok += atan downward ldbl-96-intel 0x8p-8L : 0x7.ff556eea5d892a1p-8L : inexact-ok += atan tonearest ldbl-96-intel 0x8p-8L : 0x7.ff556eea5d892a1p-8L : inexact-ok += atan towardzero ldbl-96-intel 0x8p-8L : 0x7.ff556eea5d892a1p-8L : inexact-ok += atan upward ldbl-96-intel 0x8p-8L : 0x7.ff556eea5d892a18p-8L : inexact-ok += atan downward ldbl-96-m68k 0x8p-8L : 0x7.ff556eea5d892a1p-8L : inexact-ok += atan tonearest ldbl-96-m68k 0x8p-8L : 0x7.ff556eea5d892a1p-8L : inexact-ok += atan towardzero ldbl-96-m68k 0x8p-8L : 0x7.ff556eea5d892a1p-8L : inexact-ok += atan upward ldbl-96-m68k 0x8p-8L : 0x7.ff556eea5d892a18p-8L : inexact-ok += atan downward ldbl-128 0x8p-8L : 0x7.ff556eea5d892a13bcebbb6ed46p-8L : inexact-ok += atan tonearest ldbl-128 0x8p-8L : 0x7.ff556eea5d892a13bcebbb6ed464p-8L : inexact-ok += atan towardzero ldbl-128 0x8p-8L : 0x7.ff556eea5d892a13bcebbb6ed46p-8L : inexact-ok += atan upward ldbl-128 0x8p-8L : 0x7.ff556eea5d892a13bcebbb6ed464p-8L : inexact-ok += atan downward ldbl-128ibm 0x8p-8L : 0x7.ff556eea5d892a13bcebbb6ed4p-8L : inexact-ok += atan tonearest ldbl-128ibm 0x8p-8L : 0x7.ff556eea5d892a13bcebbb6ed4p-8L : inexact-ok += atan towardzero ldbl-128ibm 0x8p-8L : 0x7.ff556eea5d892a13bcebbb6ed4p-8L : inexact-ok += atan upward ldbl-128ibm 0x8p-8L : 0x7.ff556eea5d892a13bcebbb6ed6p-8L : inexact-ok +atan 2.5 += atan downward flt-32 0x2.8p+0f : 0x1.30b6d6p+0f : inexact-ok += atan tonearest flt-32 0x2.8p+0f : 0x1.30b6d8p+0f : inexact-ok += atan towardzero flt-32 0x2.8p+0f : 0x1.30b6d6p+0f : inexact-ok += atan upward flt-32 0x2.8p+0f : 0x1.30b6d8p+0f : inexact-ok += atan downward dbl-64 0x2.8p+0 : 0x1.30b6d796a4da8p+0 : inexact-ok += atan tonearest dbl-64 0x2.8p+0 : 0x1.30b6d796a4da8p+0 : inexact-ok += atan towardzero dbl-64 0x2.8p+0 : 0x1.30b6d796a4da8p+0 : inexact-ok += atan upward dbl-64 0x2.8p+0 : 0x1.30b6d796a4da9p+0 : inexact-ok += atan downward ldbl-96-intel 0x2.8p+0L : 0x1.30b6d796a4da8588p+0L : inexact-ok += atan tonearest ldbl-96-intel 0x2.8p+0L : 0x1.30b6d796a4da858ap+0L : inexact-ok += atan towardzero ldbl-96-intel 0x2.8p+0L : 0x1.30b6d796a4da8588p+0L : inexact-ok += atan upward ldbl-96-intel 0x2.8p+0L : 0x1.30b6d796a4da858ap+0L : inexact-ok += atan downward ldbl-96-m68k 0x2.8p+0L : 0x1.30b6d796a4da8588p+0L : inexact-ok += atan tonearest ldbl-96-m68k 0x2.8p+0L : 0x1.30b6d796a4da858ap+0L : inexact-ok += atan towardzero ldbl-96-m68k 0x2.8p+0L : 0x1.30b6d796a4da8588p+0L : inexact-ok += atan upward ldbl-96-m68k 0x2.8p+0L : 0x1.30b6d796a4da858ap+0L : inexact-ok += atan downward ldbl-128 0x2.8p+0L : 0x1.30b6d796a4da8589532c0eec663ep+0L : inexact-ok += atan tonearest ldbl-128 0x2.8p+0L : 0x1.30b6d796a4da8589532c0eec663ep+0L : inexact-ok += atan towardzero ldbl-128 0x2.8p+0L : 0x1.30b6d796a4da8589532c0eec663ep+0L : inexact-ok += atan upward ldbl-128 0x2.8p+0L : 0x1.30b6d796a4da8589532c0eec663fp+0L : inexact-ok += atan downward ldbl-128ibm 0x2.8p+0L : 0x1.30b6d796a4da8589532c0eec66p+0L : inexact-ok += atan tonearest ldbl-128ibm 0x2.8p+0L : 0x1.30b6d796a4da8589532c0eec66p+0L : inexact-ok += atan towardzero ldbl-128ibm 0x2.8p+0L : 0x1.30b6d796a4da8589532c0eec66p+0L : inexact-ok += atan upward ldbl-128ibm 0x2.8p+0L : 0x1.30b6d796a4da8589532c0eec668p+0L : inexact-ok +atan 10 += atan downward flt-32 0xap+0f : 0x1.789bd2p+0f : inexact-ok += atan tonearest flt-32 0xap+0f : 0x1.789bd2p+0f : inexact-ok += atan towardzero flt-32 0xap+0f : 0x1.789bd2p+0f : inexact-ok += atan upward flt-32 0xap+0f : 0x1.789bd4p+0f : inexact-ok += atan downward dbl-64 0xap+0 : 0x1.789bd2c160053p+0 : inexact-ok += atan tonearest dbl-64 0xap+0 : 0x1.789bd2c160054p+0 : inexact-ok += atan towardzero dbl-64 0xap+0 : 0x1.789bd2c160053p+0 : inexact-ok += atan upward dbl-64 0xap+0 : 0x1.789bd2c160054p+0 : inexact-ok += atan downward ldbl-96-intel 0xap+0L : 0x1.789bd2c16005382ep+0L : inexact-ok += atan tonearest ldbl-96-intel 0xap+0L : 0x1.789bd2c16005382ep+0L : inexact-ok += atan towardzero ldbl-96-intel 0xap+0L : 0x1.789bd2c16005382ep+0L : inexact-ok += atan upward ldbl-96-intel 0xap+0L : 0x1.789bd2c16005383p+0L : inexact-ok += atan downward ldbl-96-m68k 0xap+0L : 0x1.789bd2c16005382ep+0L : inexact-ok += atan tonearest ldbl-96-m68k 0xap+0L : 0x1.789bd2c16005382ep+0L : inexact-ok += atan towardzero ldbl-96-m68k 0xap+0L : 0x1.789bd2c16005382ep+0L : inexact-ok += atan upward ldbl-96-m68k 0xap+0L : 0x1.789bd2c16005383p+0L : inexact-ok += atan downward ldbl-128 0xap+0L : 0x1.789bd2c16005382eabf0cd4b6aaep+0L : inexact-ok += atan tonearest ldbl-128 0xap+0L : 0x1.789bd2c16005382eabf0cd4b6aaep+0L : inexact-ok += atan towardzero ldbl-128 0xap+0L : 0x1.789bd2c16005382eabf0cd4b6aaep+0L : inexact-ok += atan upward ldbl-128 0xap+0L : 0x1.789bd2c16005382eabf0cd4b6aafp+0L : inexact-ok += atan downward ldbl-128ibm 0xap+0L : 0x1.789bd2c16005382eabf0cd4b6a8p+0L : inexact-ok += atan tonearest ldbl-128ibm 0xap+0L : 0x1.789bd2c16005382eabf0cd4b6a8p+0L : inexact-ok += atan towardzero ldbl-128ibm 0xap+0L : 0x1.789bd2c16005382eabf0cd4b6a8p+0L : inexact-ok += atan upward ldbl-128ibm 0xap+0L : 0x1.789bd2c16005382eabf0cd4b6bp+0L : inexact-ok +atan 1e6 += atan downward flt-32 0xf.424p+16f : 0x1.921fa4p+0f : inexact-ok += atan tonearest flt-32 0xf.424p+16f : 0x1.921fa4p+0f : inexact-ok += atan towardzero flt-32 0xf.424p+16f : 0x1.921fa4p+0f : inexact-ok += atan upward flt-32 0xf.424p+16f : 0x1.921fa6p+0f : inexact-ok += atan downward dbl-64 0xf.424p+16 : 0x1.921fa47d4b30cp+0 : inexact-ok += atan tonearest dbl-64 0xf.424p+16 : 0x1.921fa47d4b30dp+0 : inexact-ok += atan towardzero dbl-64 0xf.424p+16 : 0x1.921fa47d4b30cp+0 : inexact-ok += atan upward dbl-64 0xf.424p+16 : 0x1.921fa47d4b30dp+0 : inexact-ok += atan downward ldbl-96-intel 0xf.424p+16L : 0x1.921fa47d4b30ce82p+0L : inexact-ok += atan tonearest ldbl-96-intel 0xf.424p+16L : 0x1.921fa47d4b30ce82p+0L : inexact-ok += atan towardzero ldbl-96-intel 0xf.424p+16L : 0x1.921fa47d4b30ce82p+0L : inexact-ok += atan upward ldbl-96-intel 0xf.424p+16L : 0x1.921fa47d4b30ce84p+0L : inexact-ok += atan downward ldbl-96-m68k 0xf.424p+16L : 0x1.921fa47d4b30ce82p+0L : inexact-ok += atan tonearest ldbl-96-m68k 0xf.424p+16L : 0x1.921fa47d4b30ce82p+0L : inexact-ok += atan towardzero ldbl-96-m68k 0xf.424p+16L : 0x1.921fa47d4b30ce82p+0L : inexact-ok += atan upward ldbl-96-m68k 0xf.424p+16L : 0x1.921fa47d4b30ce84p+0L : inexact-ok += atan downward ldbl-128 0xf.424p+16L : 0x1.921fa47d4b30ce822275563fcb99p+0L : inexact-ok += atan tonearest ldbl-128 0xf.424p+16L : 0x1.921fa47d4b30ce822275563fcb9ap+0L : inexact-ok += atan towardzero ldbl-128 0xf.424p+16L : 0x1.921fa47d4b30ce822275563fcb99p+0L : inexact-ok += atan upward ldbl-128 0xf.424p+16L : 0x1.921fa47d4b30ce822275563fcb9ap+0L : inexact-ok += atan downward ldbl-128ibm 0xf.424p+16L : 0x1.921fa47d4b30ce822275563fcb8p+0L : inexact-ok += atan tonearest ldbl-128ibm 0xf.424p+16L : 0x1.921fa47d4b30ce822275563fcb8p+0L : inexact-ok += atan towardzero ldbl-128ibm 0xf.424p+16L : 0x1.921fa47d4b30ce822275563fcb8p+0L : inexact-ok += atan upward ldbl-128ibm 0xf.424p+16L : 0x1.921fa47d4b30ce822275563fccp+0L : inexact-ok atan 0x1p-100 missing-underflow = atan downward flt-32 0x1p-100f : 0xf.fffffp-104f : inexact-ok = atan tonearest flt-32 0x1p-100f : 0x1p-100f : inexact-ok @@ -2073,6 +3528,322 @@ atan 0x1p-10000 missing-underflow = atan tonearest ldbl-128 0x1p-10000L : 0x1p-10000L : inexact-ok = atan towardzero ldbl-128 0x1p-10000L : 0xf.fffffffffffffffffffffffffff8p-10004L : inexact-ok = atan upward ldbl-128 0x1p-10000L : 0x1p-10000L : inexact-ok +atan min missing-underflow += atan downward flt-32 0x4p-128f : 0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += atan tonearest flt-32 0x4p-128f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok += atan towardzero flt-32 0x4p-128f : 0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += atan upward flt-32 0x4p-128f : 0x4p-128f : inexact-ok underflow-ok errno-erange-ok += atan downward dbl-64 0x4p-128 : 0x3.ffffffffffffep-128 : inexact-ok += atan tonearest dbl-64 0x4p-128 : 0x4p-128 : inexact-ok += atan towardzero dbl-64 0x4p-128 : 0x3.ffffffffffffep-128 : inexact-ok += atan upward dbl-64 0x4p-128 : 0x4p-128 : inexact-ok += atan downward ldbl-96-intel 0x4p-128L : 0x3.fffffffffffffffcp-128L : inexact-ok += atan tonearest ldbl-96-intel 0x4p-128L : 0x4p-128L : inexact-ok += atan towardzero ldbl-96-intel 0x4p-128L : 0x3.fffffffffffffffcp-128L : inexact-ok += atan upward ldbl-96-intel 0x4p-128L : 0x4p-128L : inexact-ok += atan downward ldbl-96-m68k 0x4p-128L : 0x3.fffffffffffffffcp-128L : inexact-ok += atan tonearest ldbl-96-m68k 0x4p-128L : 0x4p-128L : inexact-ok += atan towardzero ldbl-96-m68k 0x4p-128L : 0x3.fffffffffffffffcp-128L : inexact-ok += atan upward ldbl-96-m68k 0x4p-128L : 0x4p-128L : inexact-ok += atan downward ldbl-128 0x4p-128L : 0x3.fffffffffffffffffffffffffffep-128L : inexact-ok += atan tonearest ldbl-128 0x4p-128L : 0x4p-128L : inexact-ok += atan towardzero ldbl-128 0x4p-128L : 0x3.fffffffffffffffffffffffffffep-128L : inexact-ok += atan upward ldbl-128 0x4p-128L : 0x4p-128L : inexact-ok += atan downward ldbl-128ibm 0x4p-128L : 0x3.ffffffffffffffffffffffffffp-128L : inexact-ok += atan tonearest ldbl-128ibm 0x4p-128L : 0x4p-128L : inexact-ok += atan towardzero ldbl-128ibm 0x4p-128L : 0x3.ffffffffffffffffffffffffffp-128L : inexact-ok += atan upward ldbl-128ibm 0x4p-128L : 0x4p-128L : inexact-ok += atan downward dbl-64 0x4p-1024 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += atan tonearest dbl-64 0x4p-1024 : 0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += atan towardzero dbl-64 0x4p-1024 : 0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += atan upward dbl-64 0x4p-1024 : 0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += atan downward ldbl-96-intel 0x4p-1024L : 0x3.fffffffffffffffcp-1024L : inexact-ok += atan tonearest ldbl-96-intel 0x4p-1024L : 0x4p-1024L : inexact-ok += atan towardzero ldbl-96-intel 0x4p-1024L : 0x3.fffffffffffffffcp-1024L : inexact-ok += atan upward ldbl-96-intel 0x4p-1024L : 0x4p-1024L : inexact-ok += atan downward ldbl-96-m68k 0x4p-1024L : 0x3.fffffffffffffffcp-1024L : inexact-ok += atan tonearest ldbl-96-m68k 0x4p-1024L : 0x4p-1024L : inexact-ok += atan towardzero ldbl-96-m68k 0x4p-1024L : 0x3.fffffffffffffffcp-1024L : inexact-ok += atan upward ldbl-96-m68k 0x4p-1024L : 0x4p-1024L : inexact-ok += atan downward ldbl-128 0x4p-1024L : 0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok += atan tonearest ldbl-128 0x4p-1024L : 0x4p-1024L : inexact-ok += atan towardzero ldbl-128 0x4p-1024L : 0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok += atan upward ldbl-128 0x4p-1024L : 0x4p-1024L : inexact-ok += atan downward ldbl-128ibm 0x4p-1024L : 0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128ibm 0x4p-1024L : 0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128ibm 0x4p-1024L : 0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128ibm 0x4p-1024L : 0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-intel 0x4p-16384L : 0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += atan tonearest ldbl-96-intel 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atan towardzero ldbl-96-intel 0x4p-16384L : 0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += atan upward ldbl-96-intel 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atan downward ldbl-96-m68k 0x4p-16384L : 0x3.fffffffffffffffcp-16384L : inexact-ok += atan tonearest ldbl-96-m68k 0x4p-16384L : 0x4p-16384L : inexact-ok += atan towardzero ldbl-96-m68k 0x4p-16384L : 0x3.fffffffffffffffcp-16384L : inexact-ok += atan upward ldbl-96-m68k 0x4p-16384L : 0x4p-16384L : inexact-ok += atan downward ldbl-128 0x4p-16384L : 0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atan tonearest ldbl-128 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atan towardzero ldbl-128 0x4p-16384L : 0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atan upward ldbl-128 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atan downward ldbl-96-intel 0x2p-16384L : 0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-96-intel 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-96-intel 0x2p-16384L : 0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-96-intel 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-m68k 0x2p-16384L : 0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atan tonearest ldbl-96-m68k 0x2p-16384L : 0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += atan towardzero ldbl-96-m68k 0x2p-16384L : 0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atan upward ldbl-96-m68k 0x2p-16384L : 0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += atan downward ldbl-128 0x2p-16384L : 0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128 0x2p-16384L : 0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward dbl-64 0x8p-972 : 0x7.ffffffffffffcp-972 : inexact-ok += atan tonearest dbl-64 0x8p-972 : 0x8p-972 : inexact-ok += atan towardzero dbl-64 0x8p-972 : 0x7.ffffffffffffcp-972 : inexact-ok += atan upward dbl-64 0x8p-972 : 0x8p-972 : inexact-ok += atan downward ldbl-96-intel 0x8p-972L : 0x7.fffffffffffffff8p-972L : inexact-ok += atan tonearest ldbl-96-intel 0x8p-972L : 0x8p-972L : inexact-ok += atan towardzero ldbl-96-intel 0x8p-972L : 0x7.fffffffffffffff8p-972L : inexact-ok += atan upward ldbl-96-intel 0x8p-972L : 0x8p-972L : inexact-ok += atan downward ldbl-96-m68k 0x8p-972L : 0x7.fffffffffffffff8p-972L : inexact-ok += atan tonearest ldbl-96-m68k 0x8p-972L : 0x8p-972L : inexact-ok += atan towardzero ldbl-96-m68k 0x8p-972L : 0x7.fffffffffffffff8p-972L : inexact-ok += atan upward ldbl-96-m68k 0x8p-972L : 0x8p-972L : inexact-ok += atan downward ldbl-128 0x8p-972L : 0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok += atan tonearest ldbl-128 0x8p-972L : 0x8p-972L : inexact-ok += atan towardzero ldbl-128 0x8p-972L : 0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok += atan upward ldbl-128 0x8p-972L : 0x8p-972L : inexact-ok += atan downward ldbl-128ibm 0x8p-972L : 0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok += atan tonearest ldbl-128ibm 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok errno-erange-ok += atan towardzero ldbl-128ibm 0x8p-972L : 0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok += atan upward ldbl-128ibm 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok errno-erange-ok +atan -min missing-underflow += atan downward flt-32 -0x4p-128f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok += atan tonearest flt-32 -0x4p-128f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok += atan towardzero flt-32 -0x4p-128f : -0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += atan upward flt-32 -0x4p-128f : -0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += atan downward dbl-64 -0x4p-128 : -0x4p-128 : inexact-ok += atan tonearest dbl-64 -0x4p-128 : -0x4p-128 : inexact-ok += atan towardzero dbl-64 -0x4p-128 : -0x3.ffffffffffffep-128 : inexact-ok += atan upward dbl-64 -0x4p-128 : -0x3.ffffffffffffep-128 : inexact-ok += atan downward ldbl-96-intel -0x4p-128L : -0x4p-128L : inexact-ok += atan tonearest ldbl-96-intel -0x4p-128L : -0x4p-128L : inexact-ok += atan towardzero ldbl-96-intel -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += atan upward ldbl-96-intel -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += atan downward ldbl-96-m68k -0x4p-128L : -0x4p-128L : inexact-ok += atan tonearest ldbl-96-m68k -0x4p-128L : -0x4p-128L : inexact-ok += atan towardzero ldbl-96-m68k -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += atan upward ldbl-96-m68k -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok += atan downward ldbl-128 -0x4p-128L : -0x4p-128L : inexact-ok += atan tonearest ldbl-128 -0x4p-128L : -0x4p-128L : inexact-ok += atan towardzero ldbl-128 -0x4p-128L : -0x3.fffffffffffffffffffffffffffep-128L : inexact-ok += atan upward ldbl-128 -0x4p-128L : -0x3.fffffffffffffffffffffffffffep-128L : inexact-ok += atan downward ldbl-128ibm -0x4p-128L : -0x4p-128L : inexact-ok += atan tonearest ldbl-128ibm -0x4p-128L : -0x4p-128L : inexact-ok += atan towardzero ldbl-128ibm -0x4p-128L : -0x3.ffffffffffffffffffffffffffp-128L : inexact-ok += atan upward ldbl-128ibm -0x4p-128L : -0x3.ffffffffffffffffffffffffffp-128L : inexact-ok += atan downward dbl-64 -0x4p-1024 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += atan tonearest dbl-64 -0x4p-1024 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += atan towardzero dbl-64 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += atan upward dbl-64 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += atan downward ldbl-96-intel -0x4p-1024L : -0x4p-1024L : inexact-ok += atan tonearest ldbl-96-intel -0x4p-1024L : -0x4p-1024L : inexact-ok += atan towardzero ldbl-96-intel -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += atan upward ldbl-96-intel -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += atan downward ldbl-96-m68k -0x4p-1024L : -0x4p-1024L : inexact-ok += atan tonearest ldbl-96-m68k -0x4p-1024L : -0x4p-1024L : inexact-ok += atan towardzero ldbl-96-m68k -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += atan upward ldbl-96-m68k -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok += atan downward ldbl-128 -0x4p-1024L : -0x4p-1024L : inexact-ok += atan tonearest ldbl-128 -0x4p-1024L : -0x4p-1024L : inexact-ok += atan towardzero ldbl-128 -0x4p-1024L : -0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok += atan upward ldbl-128 -0x4p-1024L : -0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok += atan downward ldbl-128ibm -0x4p-1024L : -0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128ibm -0x4p-1024L : -0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128ibm -0x4p-1024L : -0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128ibm -0x4p-1024L : -0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-intel -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atan tonearest ldbl-96-intel -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atan towardzero ldbl-96-intel -0x4p-16384L : -0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += atan upward ldbl-96-intel -0x4p-16384L : -0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += atan downward ldbl-96-m68k -0x4p-16384L : -0x4p-16384L : inexact-ok += atan tonearest ldbl-96-m68k -0x4p-16384L : -0x4p-16384L : inexact-ok += atan towardzero ldbl-96-m68k -0x4p-16384L : -0x3.fffffffffffffffcp-16384L : inexact-ok += atan upward ldbl-96-m68k -0x4p-16384L : -0x3.fffffffffffffffcp-16384L : inexact-ok += atan downward ldbl-128 -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atan tonearest ldbl-128 -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atan towardzero ldbl-128 -0x4p-16384L : -0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atan upward ldbl-128 -0x4p-16384L : -0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atan downward ldbl-96-intel -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-96-intel -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-96-intel -0x2p-16384L : -0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-96-intel -0x2p-16384L : -0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-m68k -0x2p-16384L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += atan tonearest ldbl-96-m68k -0x2p-16384L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += atan towardzero ldbl-96-m68k -0x2p-16384L : -0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atan upward ldbl-96-m68k -0x2p-16384L : -0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atan downward ldbl-128 -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128 -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128 -0x2p-16384L : -0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128 -0x2p-16384L : -0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward dbl-64 -0x8p-972 : -0x8p-972 : inexact-ok += atan tonearest dbl-64 -0x8p-972 : -0x8p-972 : inexact-ok += atan towardzero dbl-64 -0x8p-972 : -0x7.ffffffffffffcp-972 : inexact-ok += atan upward dbl-64 -0x8p-972 : -0x7.ffffffffffffcp-972 : inexact-ok += atan downward ldbl-96-intel -0x8p-972L : -0x8p-972L : inexact-ok += atan tonearest ldbl-96-intel -0x8p-972L : -0x8p-972L : inexact-ok += atan towardzero ldbl-96-intel -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += atan upward ldbl-96-intel -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += atan downward ldbl-96-m68k -0x8p-972L : -0x8p-972L : inexact-ok += atan tonearest ldbl-96-m68k -0x8p-972L : -0x8p-972L : inexact-ok += atan towardzero ldbl-96-m68k -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += atan upward ldbl-96-m68k -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok += atan downward ldbl-128 -0x8p-972L : -0x8p-972L : inexact-ok += atan tonearest ldbl-128 -0x8p-972L : -0x8p-972L : inexact-ok += atan towardzero ldbl-128 -0x8p-972L : -0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok += atan upward ldbl-128 -0x8p-972L : -0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok += atan downward ldbl-128ibm -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok += atan tonearest ldbl-128ibm -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok += atan towardzero ldbl-128ibm -0x8p-972L : -0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok += atan upward ldbl-128ibm -0x8p-972L : -0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok +atan min_subnorm missing-underflow += atan downward flt-32 0x8p-152f : 0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest flt-32 0x8p-152f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero flt-32 0x8p-152f : 0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += atan upward flt-32 0x8p-152f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atan downward dbl-64 0x8p-152 : 0x7.ffffffffffffcp-152 : inexact-ok += atan tonearest dbl-64 0x8p-152 : 0x8p-152 : inexact-ok += atan towardzero dbl-64 0x8p-152 : 0x7.ffffffffffffcp-152 : inexact-ok += atan upward dbl-64 0x8p-152 : 0x8p-152 : inexact-ok += atan downward ldbl-96-intel 0x8p-152L : 0x7.fffffffffffffff8p-152L : inexact-ok += atan tonearest ldbl-96-intel 0x8p-152L : 0x8p-152L : inexact-ok += atan towardzero ldbl-96-intel 0x8p-152L : 0x7.fffffffffffffff8p-152L : inexact-ok += atan upward ldbl-96-intel 0x8p-152L : 0x8p-152L : inexact-ok += atan downward ldbl-96-m68k 0x8p-152L : 0x7.fffffffffffffff8p-152L : inexact-ok += atan tonearest ldbl-96-m68k 0x8p-152L : 0x8p-152L : inexact-ok += atan towardzero ldbl-96-m68k 0x8p-152L : 0x7.fffffffffffffff8p-152L : inexact-ok += atan upward ldbl-96-m68k 0x8p-152L : 0x8p-152L : inexact-ok += atan downward ldbl-128 0x8p-152L : 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += atan tonearest ldbl-128 0x8p-152L : 0x8p-152L : inexact-ok += atan towardzero ldbl-128 0x8p-152L : 0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += atan upward ldbl-128 0x8p-152L : 0x8p-152L : inexact-ok += atan downward ldbl-128ibm 0x8p-152L : 0x7.fffffffffffffffffffffffffep-152L : inexact-ok += atan tonearest ldbl-128ibm 0x8p-152L : 0x8p-152L : inexact-ok += atan towardzero ldbl-128ibm 0x8p-152L : 0x7.fffffffffffffffffffffffffep-152L : inexact-ok += atan upward ldbl-128ibm 0x8p-152L : 0x8p-152L : inexact-ok += atan downward dbl-64 0x4p-1076 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest dbl-64 0x4p-1076 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero dbl-64 0x4p-1076 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += atan upward dbl-64 0x4p-1076 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-intel 0x4p-1076L : 0x3.fffffffffffffffcp-1076L : inexact-ok += atan tonearest ldbl-96-intel 0x4p-1076L : 0x4p-1076L : inexact-ok += atan towardzero ldbl-96-intel 0x4p-1076L : 0x3.fffffffffffffffcp-1076L : inexact-ok += atan upward ldbl-96-intel 0x4p-1076L : 0x4p-1076L : inexact-ok += atan downward ldbl-96-m68k 0x4p-1076L : 0x3.fffffffffffffffcp-1076L : inexact-ok += atan tonearest ldbl-96-m68k 0x4p-1076L : 0x4p-1076L : inexact-ok += atan towardzero ldbl-96-m68k 0x4p-1076L : 0x3.fffffffffffffffcp-1076L : inexact-ok += atan upward ldbl-96-m68k 0x4p-1076L : 0x4p-1076L : inexact-ok += atan downward ldbl-128 0x4p-1076L : 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += atan tonearest ldbl-128 0x4p-1076L : 0x4p-1076L : inexact-ok += atan towardzero ldbl-128 0x4p-1076L : 0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += atan upward ldbl-128 0x4p-1076L : 0x4p-1076L : inexact-ok += atan downward ldbl-128ibm 0x4p-1076L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128ibm 0x4p-1076L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128ibm 0x4p-1076L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128ibm 0x4p-1076L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-intel 0x8p-16448L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-96-intel 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-96-intel 0x8p-16448L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-96-intel 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-m68k 0x8p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-96-m68k 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-96-m68k 0x8p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-96-m68k 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-128 0x8p-16448L : 0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128 0x8p-16448L : 0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-m68k 0x4p-16448L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-96-m68k 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-96-m68k 0x4p-16448L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-96-m68k 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-128 0x4p-16448L : 0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128 0x4p-16448L : 0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-128 0x4p-16496L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128 0x4p-16496L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128 0x4p-16496L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128 0x4p-16496L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok +atan -min_subnorm missing-underflow += atan downward flt-32 -0x8p-152f : -0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest flt-32 -0x8p-152f : -0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero flt-32 -0x8p-152f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += atan upward flt-32 -0x8p-152f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += atan downward dbl-64 -0x8p-152 : -0x8p-152 : inexact-ok += atan tonearest dbl-64 -0x8p-152 : -0x8p-152 : inexact-ok += atan towardzero dbl-64 -0x8p-152 : -0x7.ffffffffffffcp-152 : inexact-ok += atan upward dbl-64 -0x8p-152 : -0x7.ffffffffffffcp-152 : inexact-ok += atan downward ldbl-96-intel -0x8p-152L : -0x8p-152L : inexact-ok += atan tonearest ldbl-96-intel -0x8p-152L : -0x8p-152L : inexact-ok += atan towardzero ldbl-96-intel -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += atan upward ldbl-96-intel -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += atan downward ldbl-96-m68k -0x8p-152L : -0x8p-152L : inexact-ok += atan tonearest ldbl-96-m68k -0x8p-152L : -0x8p-152L : inexact-ok += atan towardzero ldbl-96-m68k -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += atan upward ldbl-96-m68k -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += atan downward ldbl-128 -0x8p-152L : -0x8p-152L : inexact-ok += atan tonearest ldbl-128 -0x8p-152L : -0x8p-152L : inexact-ok += atan towardzero ldbl-128 -0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += atan upward ldbl-128 -0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += atan downward ldbl-128ibm -0x8p-152L : -0x8p-152L : inexact-ok += atan tonearest ldbl-128ibm -0x8p-152L : -0x8p-152L : inexact-ok += atan towardzero ldbl-128ibm -0x8p-152L : -0x7.fffffffffffffffffffffffffep-152L : inexact-ok += atan upward ldbl-128ibm -0x8p-152L : -0x7.fffffffffffffffffffffffffep-152L : inexact-ok += atan downward dbl-64 -0x4p-1076 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest dbl-64 -0x4p-1076 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero dbl-64 -0x4p-1076 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += atan upward dbl-64 -0x4p-1076 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-intel -0x4p-1076L : -0x4p-1076L : inexact-ok += atan tonearest ldbl-96-intel -0x4p-1076L : -0x4p-1076L : inexact-ok += atan towardzero ldbl-96-intel -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += atan upward ldbl-96-intel -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += atan downward ldbl-96-m68k -0x4p-1076L : -0x4p-1076L : inexact-ok += atan tonearest ldbl-96-m68k -0x4p-1076L : -0x4p-1076L : inexact-ok += atan towardzero ldbl-96-m68k -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += atan upward ldbl-96-m68k -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += atan downward ldbl-128 -0x4p-1076L : -0x4p-1076L : inexact-ok += atan tonearest ldbl-128 -0x4p-1076L : -0x4p-1076L : inexact-ok += atan towardzero ldbl-128 -0x4p-1076L : -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += atan upward ldbl-128 -0x4p-1076L : -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += atan downward ldbl-128ibm -0x4p-1076L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128ibm -0x4p-1076L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128ibm -0x4p-1076L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128ibm -0x4p-1076L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-intel -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-96-intel -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-96-intel -0x8p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-96-intel -0x8p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-m68k -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-96-m68k -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-96-m68k -0x8p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-96-m68k -0x8p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-128 -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128 -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128 -0x8p-16448L : -0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128 -0x8p-16448L : -0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-96-m68k -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-96-m68k -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-96-m68k -0x4p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-96-m68k -0x4p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-128 -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128 -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128 -0x4p-16448L : -0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128 -0x4p-16448L : -0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan downward ldbl-128 -0x4p-16496L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan tonearest ldbl-128 -0x4p-16496L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan towardzero ldbl-128 -0x4p-16496L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atan upward ldbl-128 -0x4p-16496L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok atan2 0 1 = atan2 downward flt-32 0x0p+0f 0x1p+0f : 0x0p+0f : inexact-ok = atan2 tonearest flt-32 0x0p+0f 0x1p+0f : 0x0p+0f : inexact-ok @@ -2602,6 +4373,693 @@ atan2 max max = atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok = atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok = atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok +atan2 max -max += atan2 downward flt-32 0xf.fffffp+124f -0xf.fffffp+124f : 0x2.5b2f8cp+0f : inexact-ok += atan2 tonearest flt-32 0xf.fffffp+124f -0xf.fffffp+124f : 0x2.5b2f9p+0f : inexact-ok += atan2 towardzero flt-32 0xf.fffffp+124f -0xf.fffffp+124f : 0x2.5b2f8cp+0f : inexact-ok += atan2 upward flt-32 0xf.fffffp+124f -0xf.fffffp+124f : 0x2.5b2f9p+0f : inexact-ok += atan2 downward dbl-64 0xf.fffffp+124 -0xf.fffffp+124 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.fffffp+124 -0xf.fffffp+124 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.fffffp+124 -0xf.fffffp+124 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 0xf.fffffp+124 -0xf.fffffp+124 : 0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.fffffp+124L -0xf.fffffp+124L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 downward dbl-64 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward dbl-64 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : 0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a489e4e5327a2828p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a489e4e5327a2828p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a489e4e5327a2828p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a489e4e5327a28282p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a489e4e5327a282p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a489e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a489e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a489e4e5327a283p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.5b2f8fe6643a469ece5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.5b2f8fe6643a469ece5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.5b2f8fe6643a469ece5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.5b2f8fe6643a469ece5327a28296p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469dce5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469dce5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469dce5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : 0x2.5b2f8fe6643a469dce5327a28296p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a449e4e5327a282a8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a449e4e5327a282a8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a449e4e5327a282a8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a449e4e5327a282aap+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a449e4e5327a282p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a449e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a449e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : 0x2.5b2f8fe6643a449e4e5327a283p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok +atan2 -max max += atan2 downward flt-32 -0xf.fffffp+124f 0xf.fffffp+124f : -0xc.90fdbp-4f : inexact-ok += atan2 tonearest flt-32 -0xf.fffffp+124f 0xf.fffffp+124f : -0xc.90fdbp-4f : inexact-ok += atan2 towardzero flt-32 -0xf.fffffp+124f 0xf.fffffp+124f : -0xc.90fdap-4f : inexact-ok += atan2 upward flt-32 -0xf.fffffp+124f 0xf.fffffp+124f : -0xc.90fdap-4f : inexact-ok += atan2 downward dbl-64 -0xf.fffffp+124 0xf.fffffp+124 : -0xc.90fdaa22168c8p-4 : inexact-ok += atan2 tonearest dbl-64 -0xf.fffffp+124 0xf.fffffp+124 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 -0xf.fffffp+124 0xf.fffffp+124 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 -0xf.fffffp+124 0xf.fffffp+124 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L 0xf.fffffp+124L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 downward dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+1020 : -0xf.fffff00000008p-900 : inexact-ok += atan2 tonearest dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+1020 : -0xf.fffff00000008p-900 : inexact-ok += atan2 towardzero dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+1020 : -0xf.fffffp-900 : inexact-ok += atan2 upward dbl-64 -0xf.fffffp+124 0xf.ffffffffffff8p+1020 : -0xf.fffffp-900 : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000008p-900L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000008p-900L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007ffp-900L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007ffp-900L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000008p-900L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000008p-900L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007ffp-900L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007ffp-900L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007fffff80000004p-900L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007fffff80000004p-900L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007fffff80000003f8p-900L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007fffff80000003f8p-900L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007fffff80000004p-900L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007fffff80000004p-900L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007fffff8p-900L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffff8p+1020L : -0xf.fffff00000007fffff8p-900L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffff0000000001p-16260L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffff0000000001p-16260L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffffp-16260L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffffp-16260L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffff0000000001p-16260L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffff0000000001p-16260L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffffp-16260L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffffp-16260L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffff0000000000ffffffp-16260L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffff0000000000ffffffp-16260L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffff0000000000fffffeffffff8p-16260L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffp+16380L : -0xf.fffff0000000000fffffeffffff8p-16260L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.fffff00000000000000000000008p-16260L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.fffff00000000000000000000008p-16260L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.fffffp-16260L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.fffffp-16260L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xf.fffff00000003fffffc0000005p-900L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xf.fffff00000003fffffc0000005p-900L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xf.fffff00000003fffffc0000004f8p-900L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xf.fffff00000003fffffc0000004f8p-900L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xf.fffff00000003fffffc0000008p-900L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xf.fffff00000003fffffc0000004p-900L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xf.fffff00000003fffffc0000004p-900L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xf.fffff00000003fffffc0000004p-900L : inexact-ok += atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+124 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+124 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+124 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 0xf.fffffp+124 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : -0xc.90fdaa22168c8p-4 : inexact-ok += atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 0xf.ffffffffffff8p+1020 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff801p-15364L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff801p-15364L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff8p-15364L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff8p-15364L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff801p-15364L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff801p-15364L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff8p-15364L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff8p-15364L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff801p-15364L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff801p-15364L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff800ffffffffffff8p-15364L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffff800ffffffffffff8p-15364L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.ffffffffffff8000000000000008p-15364L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.ffffffffffff8000000000000008p-15364L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.ffffffffffff8p-15364L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.ffffffffffff8p-15364L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c034c4c6628b80fp-4L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c034c4c6628b80fp-4L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c034c4c6628b80ef8p-4L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c034c4c6628b80ef8p-4L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c034c4c6628b81p-4L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c034c4c6628b81p-4L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c034c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c034c4c6628b80cp-4L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xc.90fdaa22168c23444c6628b80dc8p-4L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xc.90fdaa22168c23444c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xc.90fdaa22168c23444c6628b80dcp-4L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xc.90fdaa22168c23444c6628b80dcp-4L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c23544c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c23544c6628b80db8p-4L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c23544c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffp+16380L : -0xc.90fdaa22168c23544c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c434c4c6628b80c8p-4L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c434c4c6628b80c8p-4L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c434c4c6628b80c78p-4L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c434c4c6628b80c78p-4L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c434c4c6628b81p-4L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffff8p+1020L : -0xc.90fdaa22168c434c4c6628b80cp-4L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffffc00ffffffffffcp-15364L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffffc00ffffffffffcp-15364L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffffc00ffffffffffbf8p-15364L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffp+16380L : -0xf.ffffffffffffc00ffffffffffbf8p-15364L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.ffffffffffffbffffffffffffc08p-15364L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.ffffffffffffbffffffffffffc08p-15364L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.ffffffffffffbffffffffffffcp-15364L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.fffffffffffffffffffffffffff8p+16380L : -0xf.ffffffffffffbffffffffffffcp-15364L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0xf.ffffffffffffbffffffffffffcp+1020L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok +atan2 -max -max += atan2 downward flt-32 -0xf.fffffp+124f -0xf.fffffp+124f : -0x2.5b2f9p+0f : inexact-ok += atan2 tonearest flt-32 -0xf.fffffp+124f -0xf.fffffp+124f : -0x2.5b2f9p+0f : inexact-ok += atan2 towardzero flt-32 -0xf.fffffp+124f -0xf.fffffp+124f : -0x2.5b2f8cp+0f : inexact-ok += atan2 upward flt-32 -0xf.fffffp+124f -0xf.fffffp+124f : -0x2.5b2f8cp+0f : inexact-ok += atan2 downward dbl-64 -0xf.fffffp+124 -0xf.fffffp+124 : -0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.fffffp+124 -0xf.fffffp+124 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.fffffp+124 -0xf.fffffp+124 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 -0xf.fffffp+124 -0xf.fffffp+124 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L -0xf.fffffp+124L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 downward dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0xf.fffffp+124 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.fffffp+124 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : -0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 -0xf.ffffffffffff8p+1020 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a489e4e5327a2828p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a489e4e5327a2828p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a489e4e5327a2827ep+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a489e4e5327a2827ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a489e4e5327a283p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a489e4e5327a282p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a489e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a489e4e5327a282p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.5b2f8fe6643a469ece5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.5b2f8fe6643a469ece5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.5b2f8fe6643a469ece5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.5b2f8fe6643a469ece5327a28292p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffff8p+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469dce5327a28296p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469dce5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469dce5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffp+16380L : -0x2.5b2f8fe6643a469dce5327a28294p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffp+124L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a449e4e5327a282a8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a449e4e5327a282a8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a449e4e5327a282a6p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a449e4e5327a282a6p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a449e4e5327a283p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a449e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a449e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffff8p+1020L : -0x2.5b2f8fe6643a449e4e5327a282p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok atan2 max min = atan2 downward flt-32 0xf.fffffp+124f 0x4p-128f : 0x1.921fb4p+0f : inexact-ok = atan2 tonearest flt-32 0xf.fffffp+124f 0x4p-128f : 0x1.921fb6p+0f : inexact-ok @@ -3172,6 +5630,1492 @@ atan2 -max -min = atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok = atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok = atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok +atan2 -max min += atan2 downward flt-32 -0xf.fffffp+124f 0x4p-128f : -0x1.921fb6p+0f : inexact-ok += atan2 tonearest flt-32 -0xf.fffffp+124f 0x4p-128f : -0x1.921fb6p+0f : inexact-ok += atan2 towardzero flt-32 -0xf.fffffp+124f 0x4p-128f : -0x1.921fb4p+0f : inexact-ok += atan2 upward flt-32 -0xf.fffffp+124f 0x4p-128f : -0x1.921fb4p+0f : inexact-ok += atan2 downward dbl-64 -0xf.fffffp+124 0x4p-128 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.fffffp+124 0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.fffffp+124 0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.fffffp+124 0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L 0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward dbl-64 -0xf.fffffp+124 0x4p-1024 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.fffffp+124 0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.fffffp+124 0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.fffffp+124 0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0xf.fffffp+124 0x8p-972 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.fffffp+124 0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.fffffp+124 0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.fffffp+124 0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 0x4p-128 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 0x4p-128 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 0x8p-972 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-128L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok +atan2 max -min += atan2 downward flt-32 0xf.fffffp+124f -0x4p-128f : 0x1.921fb4p+0f : inexact-ok += atan2 tonearest flt-32 0xf.fffffp+124f -0x4p-128f : 0x1.921fb6p+0f : inexact-ok += atan2 towardzero flt-32 0xf.fffffp+124f -0x4p-128f : 0x1.921fb4p+0f : inexact-ok += atan2 upward flt-32 0xf.fffffp+124f -0x4p-128f : 0x1.921fb6p+0f : inexact-ok += atan2 downward dbl-64 0xf.fffffp+124 -0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.fffffp+124 -0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.fffffp+124 -0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.fffffp+124 -0x4p-128 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.fffffp+124L -0x4p-128L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward dbl-64 0xf.fffffp+124 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.fffffp+124 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.fffffp+124 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.fffffp+124 -0x4p-1024 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.fffffp+124L -0x4p-1024L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0xf.fffffp+124 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.fffffp+124 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.fffffp+124 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.fffffp+124 -0x8p-972 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.fffffp+124L -0x8p-972L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x4p-128 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-128 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-128L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1024 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0xf.ffffffffffff8p+1020 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.ffffffffffff8p+1020 -0x8p-972 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-972L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-128L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1024L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-972L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok +atan2 max min_subnorm += atan2 downward flt-32 0xf.fffffp+124f 0x8p-152f : 0x1.921fb4p+0f : inexact-ok += atan2 tonearest flt-32 0xf.fffffp+124f 0x8p-152f : 0x1.921fb6p+0f : inexact-ok += atan2 towardzero flt-32 0xf.fffffp+124f 0x8p-152f : 0x1.921fb4p+0f : inexact-ok += atan2 upward flt-32 0xf.fffffp+124f 0x8p-152f : 0x1.921fb6p+0f : inexact-ok += atan2 downward dbl-64 0xf.fffffp+124 0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.fffffp+124 0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.fffffp+124 0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.fffffp+124 0x8p-152 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.fffffp+124L 0x8p-152L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward dbl-64 0xf.fffffp+124 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.fffffp+124 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.fffffp+124 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.fffffp+124 0x4p-1076 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.fffffp+124L 0x4p-1076L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.ffffffffffff8p+1020 0x8p-152 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x8p-152L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.ffffffffffff8p+1020 0x4p-1076 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok +atan2 -max -min_subnorm += atan2 downward flt-32 -0xf.fffffp+124f -0x8p-152f : -0x1.921fb6p+0f : inexact-ok += atan2 tonearest flt-32 -0xf.fffffp+124f -0x8p-152f : -0x1.921fb6p+0f : inexact-ok += atan2 towardzero flt-32 -0xf.fffffp+124f -0x8p-152f : -0x1.921fb4p+0f : inexact-ok += atan2 upward flt-32 -0xf.fffffp+124f -0x8p-152f : -0x1.921fb4p+0f : inexact-ok += atan2 downward dbl-64 -0xf.fffffp+124 -0x8p-152 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.fffffp+124 -0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.fffffp+124 -0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.fffffp+124 -0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L -0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward dbl-64 -0xf.fffffp+124 -0x4p-1076 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.fffffp+124 -0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.fffffp+124 -0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.fffffp+124 -0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L -0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L -0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L -0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L -0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 -0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 -0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L -0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L -0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok +atan2 -max min_subnorm += atan2 downward flt-32 -0xf.fffffp+124f 0x8p-152f : -0x1.921fb6p+0f : inexact-ok += atan2 tonearest flt-32 -0xf.fffffp+124f 0x8p-152f : -0x1.921fb6p+0f : inexact-ok += atan2 towardzero flt-32 -0xf.fffffp+124f 0x8p-152f : -0x1.921fb4p+0f : inexact-ok += atan2 upward flt-32 -0xf.fffffp+124f 0x8p-152f : -0x1.921fb4p+0f : inexact-ok += atan2 downward dbl-64 -0xf.fffffp+124 0x8p-152 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.fffffp+124 0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.fffffp+124 0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.fffffp+124 0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L 0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward dbl-64 -0xf.fffffp+124 0x4p-1076 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.fffffp+124 0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.fffffp+124 0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.fffffp+124 0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.fffffp+124L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffp+124L 0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffp+124L 0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffp+124L 0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffp+124L 0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffp+124L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffp+124L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffp+124L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffp+124L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 0x8p-152 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0xf.ffffffffffff8p+1020 0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffff8p+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L 0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffff8p+1020L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L 0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffp+16380L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-152L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok +atan2 max -min_subnorm += atan2 downward flt-32 0xf.fffffp+124f -0x8p-152f : 0x1.921fb4p+0f : inexact-ok += atan2 tonearest flt-32 0xf.fffffp+124f -0x8p-152f : 0x1.921fb6p+0f : inexact-ok += atan2 towardzero flt-32 0xf.fffffp+124f -0x8p-152f : 0x1.921fb4p+0f : inexact-ok += atan2 upward flt-32 0xf.fffffp+124f -0x8p-152f : 0x1.921fb6p+0f : inexact-ok += atan2 downward dbl-64 0xf.fffffp+124 -0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.fffffp+124 -0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.fffffp+124 -0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.fffffp+124 -0x8p-152 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.fffffp+124L -0x8p-152L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.fffffp+124 -0x4p-1076 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.fffffp+124L -0x4p-1076L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffp+124L -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffp+124L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.ffffffffffff8p+1020 -0x8p-152 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x8p-152L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0xf.ffffffffffff8p+1020 -0x4p-1076 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffff8p+1020L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffp+16380L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-152L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-1076L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok atan2 0.75 1 = atan2 downward flt-32 0xcp-4f 0x1p+0f : 0xa.4bc7dp-4f : inexact-ok = atan2 tonearest flt-32 0xcp-4f 0x1p+0f : 0xa.4bc7dp-4f : inexact-ok @@ -4776,6 +8720,4794 @@ atan2 0x1.00000000000001p0 0x1.00000000000001p0 = atan2 tonearest ldbl-128ibm 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok = atan2 towardzero ldbl-128ibm 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok = atan2 upward ldbl-128ibm 0x1.00000000000001p+0L 0x1.00000000000001p+0L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok +atan2 min min += atan2 downward flt-32 0x4p-128f 0x4p-128f : 0xc.90fdap-4f : inexact-ok += atan2 tonearest flt-32 0x4p-128f 0x4p-128f : 0xc.90fdbp-4f : inexact-ok += atan2 towardzero flt-32 0x4p-128f 0x4p-128f : 0xc.90fdap-4f : inexact-ok += atan2 upward flt-32 0x4p-128f 0x4p-128f : 0xc.90fdbp-4f : inexact-ok += atan2 downward dbl-64 0x4p-128 0x4p-128 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 tonearest dbl-64 0x4p-128 0x4p-128 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 0x4p-128 0x4p-128 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 0x4p-128 0x4p-128 : 0xc.90fdaa22168c8p-4 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-128 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 upward ldbl-128 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-128L 0x4p-128L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 downward dbl-64 0x4p-128 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-128 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-128 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0x4p-128 0x4p-1024 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L 0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-128L 0x4p-1024L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0x4p-128 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-128 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-128 0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0x4p-128 0x8p-972 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L 0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L 0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L 0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L 0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-128L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-128L 0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-128L 0x8p-972L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1024 0x4p-128 : 0xf.ffffffffffff8p-900 : inexact-ok += atan2 tonearest dbl-64 0x4p-1024 0x4p-128 : 0x1p-896 : inexact-ok += atan2 towardzero dbl-64 0x4p-1024 0x4p-128 : 0xf.ffffffffffff8p-900 : inexact-ok += atan2 upward dbl-64 0x4p-1024 0x4p-128 : 0x1p-896 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L 0x4p-128L : 0xf.fffffffffffffffp-900L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L 0x4p-128L : 0x1p-896L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L 0x4p-128L : 0xf.fffffffffffffffp-900L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L 0x4p-128L : 0x1p-896L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L 0x4p-128L : 0xf.fffffffffffffffp-900L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L 0x4p-128L : 0x1p-896L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L 0x4p-128L : 0xf.fffffffffffffffp-900L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L 0x4p-128L : 0x1p-896L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L 0x4p-128L : 0xf.fffffffffffffffffffffffffff8p-900L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L 0x4p-128L : 0x1p-896L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L 0x4p-128L : 0xf.fffffffffffffffffffffffffff8p-900L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L 0x4p-128L : 0x1p-896L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L 0x4p-128L : 0xf.fffffffffffffffffffffffffcp-900L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L 0x4p-128L : 0x1p-896L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L 0x4p-128L : 0xf.fffffffffffffffffffffffffcp-900L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1024L 0x4p-128L : 0x1p-896L : inexact-ok += atan2 downward dbl-64 0x4p-1024 0x4p-1024 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 tonearest dbl-64 0x4p-1024 0x4p-1024 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 0x4p-1024 0x4p-1024 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 0x4p-1024 0x4p-1024 : 0xc.90fdaa22168c8p-4 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1024L 0x4p-1024L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1024 0x8p-972 : 0x7.ffffffffffffcp-56 : inexact-ok += atan2 tonearest dbl-64 0x4p-1024 0x8p-972 : 0x8p-56 : inexact-ok += atan2 towardzero dbl-64 0x4p-1024 0x8p-972 : 0x7.ffffffffffffcp-56 : inexact-ok += atan2 upward dbl-64 0x4p-1024 0x8p-972 : 0x8p-56 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L 0x8p-972L : 0x7.fffffffffffffff8p-56L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L 0x8p-972L : 0x8p-56L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L 0x8p-972L : 0x7.fffffffffffffff8p-56L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L 0x8p-972L : 0x8p-56L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L 0x8p-972L : 0x7.fffffffffffffff8p-56L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L 0x8p-972L : 0x8p-56L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L 0x8p-972L : 0x7.fffffffffffffff8p-56L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L 0x8p-972L : 0x8p-56L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L 0x8p-972L : 0x7.ffffffffffffffffffffffffff54p-56L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L 0x8p-972L : 0x7.ffffffffffffffffffffffffff54p-56L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L 0x8p-972L : 0x7.ffffffffffffffffffffffffff54p-56L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L 0x8p-972L : 0x7.ffffffffffffffffffffffffff58p-56L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L 0x8p-972L : 0x7.fffffffffffffffffffffffffep-56L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L 0x8p-972L : 0x8p-56L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L 0x8p-972L : 0x7.fffffffffffffffffffffffffep-56L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1024L 0x8p-972L : 0x8p-56L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L 0x4p-128L : 0xf.fffffffffffffffp-16260L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L 0x4p-128L : 0x1p-16256L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L 0x4p-128L : 0xf.fffffffffffffffp-16260L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L 0x4p-128L : 0x1p-16256L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L 0x4p-128L : 0xf.fffffffffffffffp-16260L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L 0x4p-128L : 0x1p-16256L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L 0x4p-128L : 0xf.fffffffffffffffp-16260L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L 0x4p-128L : 0x1p-16256L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L 0x4p-128L : 0xf.fffffffffffffffffffffffffff8p-16260L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L 0x4p-128L : 0x1p-16256L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L 0x4p-128L : 0xf.fffffffffffffffffffffffffff8p-16260L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L 0x4p-128L : 0x1p-16256L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L 0x4p-1024L : 0xf.fffffffffffffffp-15364L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L 0x4p-1024L : 0x1p-15360L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L 0x4p-1024L : 0xf.fffffffffffffffp-15364L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L 0x4p-1024L : 0x1p-15360L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L 0x4p-1024L : 0xf.fffffffffffffffp-15364L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L 0x4p-1024L : 0x1p-15360L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L 0x4p-1024L : 0xf.fffffffffffffffp-15364L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L 0x4p-1024L : 0x1p-15360L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L 0x4p-1024L : 0xf.fffffffffffffffffffffffffff8p-15364L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L 0x4p-1024L : 0x1p-15360L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L 0x4p-1024L : 0xf.fffffffffffffffffffffffffff8p-15364L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L 0x4p-1024L : 0x1p-15360L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L 0x4p-16384L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c8p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c8p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c6d19aa220a39ap+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c6d19aa220a39bp+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c6d19aa220a39ap+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L 0x2p-16384L : 0x1.1b6e192ebbe446c6d19aa220a39bp+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L 0x8p-972L : 0x7.fffffffffffffff8p-15416L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L 0x8p-972L : 0x8p-15416L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L 0x8p-972L : 0x7.fffffffffffffff8p-15416L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L 0x8p-972L : 0x8p-15416L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L 0x8p-972L : 0x7.fffffffffffffff8p-15416L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L 0x8p-972L : 0x8p-15416L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L 0x8p-972L : 0x7.fffffffffffffff8p-15416L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L 0x8p-972L : 0x8p-15416L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L 0x8p-972L : 0x7.fffffffffffffffffffffffffffcp-15416L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L 0x8p-972L : 0x8p-15416L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L 0x8p-972L : 0x7.fffffffffffffffffffffffffffcp-15416L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L 0x8p-972L : 0x8p-15416L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L 0x4p-128L : 0x7.fffffffffffffff8p-16260L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L 0x4p-128L : 0x8p-16260L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L 0x4p-128L : 0x7.fffffffffffffff8p-16260L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L 0x4p-128L : 0x8p-16260L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L 0x4p-128L : 0x7.fffffffffffffff8p-16260L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L 0x4p-128L : 0x8p-16260L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L 0x4p-128L : 0x7.fffffffffffffff8p-16260L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L 0x4p-128L : 0x8p-16260L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L 0x4p-128L : 0x7.fffffffffffffffffffffffffffcp-16260L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L 0x4p-128L : 0x8p-16260L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L 0x4p-128L : 0x7.fffffffffffffffffffffffffffcp-16260L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L 0x4p-128L : 0x8p-16260L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L 0x4p-1024L : 0x7.fffffffffffffff8p-15364L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L 0x4p-1024L : 0x8p-15364L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L 0x4p-1024L : 0x7.fffffffffffffff8p-15364L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L 0x4p-1024L : 0x8p-15364L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L 0x4p-1024L : 0x7.fffffffffffffff8p-15364L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L 0x4p-1024L : 0x8p-15364L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L 0x4p-1024L : 0x7.fffffffffffffff8p-15364L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L 0x4p-1024L : 0x8p-15364L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L 0x4p-1024L : 0x7.fffffffffffffffffffffffffffcp-15364L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L 0x4p-1024L : 0x8p-15364L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L 0x4p-1024L : 0x7.fffffffffffffffffffffffffffcp-15364L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L 0x4p-1024L : 0x8p-15364L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da3p-4L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da3p-4L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L 0x4p-16384L : 0x7.6b19c1586ed3da2b7f222f65e1d8p-4L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L 0x2p-16384L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L 0x8p-972L : 0x3.fffffffffffffffcp-15416L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L 0x8p-972L : 0x4p-15416L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L 0x8p-972L : 0x3.fffffffffffffffcp-15416L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L 0x8p-972L : 0x4p-15416L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L 0x8p-972L : 0x3.fffffffffffffffcp-15416L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L 0x8p-972L : 0x4p-15416L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L 0x8p-972L : 0x3.fffffffffffffffcp-15416L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L 0x8p-972L : 0x4p-15416L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L 0x8p-972L : 0x3.fffffffffffffffffffffffffffep-15416L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L 0x8p-972L : 0x4p-15416L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L 0x8p-972L : 0x3.fffffffffffffffffffffffffffep-15416L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L 0x8p-972L : 0x4p-15416L : inexact-ok += atan2 downward dbl-64 0x8p-972 0x4p-128 : 0x1.fffffffffffffp-844 : inexact-ok += atan2 tonearest dbl-64 0x8p-972 0x4p-128 : 0x2p-844 : inexact-ok += atan2 towardzero dbl-64 0x8p-972 0x4p-128 : 0x1.fffffffffffffp-844 : inexact-ok += atan2 upward dbl-64 0x8p-972 0x4p-128 : 0x2p-844 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L 0x4p-128L : 0x1.fffffffffffffffep-844L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L 0x4p-128L : 0x2p-844L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L 0x4p-128L : 0x1.fffffffffffffffep-844L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L 0x4p-128L : 0x2p-844L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L 0x4p-128L : 0x1.fffffffffffffffep-844L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L 0x4p-128L : 0x2p-844L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L 0x4p-128L : 0x1.fffffffffffffffep-844L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L 0x4p-128L : 0x2p-844L : inexact-ok += atan2 downward ldbl-128 0x8p-972L 0x4p-128L : 0x1.ffffffffffffffffffffffffffffp-844L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L 0x4p-128L : 0x2p-844L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L 0x4p-128L : 0x1.ffffffffffffffffffffffffffffp-844L : inexact-ok += atan2 upward ldbl-128 0x8p-972L 0x4p-128L : 0x2p-844L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L 0x4p-128L : 0x1.ffffffffffffffffffffffffff8p-844L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-972L 0x4p-128L : 0x2p-844L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-972L 0x4p-128L : 0x1.ffffffffffffffffffffffffff8p-844L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-972L 0x4p-128L : 0x2p-844L : inexact-ok += atan2 downward dbl-64 0x8p-972 0x4p-1024 : 0x1.921fb54442d17p+0 : inexact-ok += atan2 tonearest dbl-64 0x8p-972 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0x8p-972 0x4p-1024 : 0x1.921fb54442d17p+0 : inexact-ok += atan2 upward dbl-64 0x8p-972 0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c68p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c6ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c68p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c6ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c68p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c6ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c68p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c6ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c69898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c69898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c69898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c69898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c69898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c69898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c69898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-972L 0x4p-1024L : 0x1.921fb54442d17c69898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L 0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L 0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L 0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L 0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L 0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L 0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0x8p-972 0x8p-972 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 tonearest dbl-64 0x8p-972 0x8p-972 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 0x8p-972 0x8p-972 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 0x8p-972 0x8p-972 : 0xc.90fdaa22168c8p-4 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-128 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 upward ldbl-128 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-972L 0x8p-972L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok +atan2 min -min += atan2 downward flt-32 0x4p-128f -0x4p-128f : 0x2.5b2f8cp+0f : inexact-ok += atan2 tonearest flt-32 0x4p-128f -0x4p-128f : 0x2.5b2f9p+0f : inexact-ok += atan2 towardzero flt-32 0x4p-128f -0x4p-128f : 0x2.5b2f8cp+0f : inexact-ok += atan2 upward flt-32 0x4p-128f -0x4p-128f : 0x2.5b2f9p+0f : inexact-ok += atan2 downward dbl-64 0x4p-128 -0x4p-128 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-128 -0x4p-128 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-128 -0x4p-128 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 0x4p-128 -0x4p-128 : 0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-128L -0x4p-128L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 downward dbl-64 0x4p-128 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-128 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-128 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0x4p-128 -0x4p-1024 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L -0x4p-1024L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-128L -0x4p-1024L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0x4p-128 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-128 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-128 -0x8p-972 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0x4p-128 -0x8p-972 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L -0x8p-972L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L -0x8p-972L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L -0x8p-972L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L -0x8p-972L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-128L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-128L -0x8p-972L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-128L -0x8p-972L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1024 -0x4p-128 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-1024 -0x4p-128 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-1024 -0x4p-128 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x4p-1024 -0x4p-128 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1024L -0x4p-128L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1024 -0x4p-1024 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-1024 -0x4p-1024 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-1024 -0x4p-1024 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 0x4p-1024 -0x4p-1024 : 0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1024L -0x4p-1024L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1024 -0x8p-972 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-1024 -0x8p-972 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-1024 -0x8p-972 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x4p-1024 -0x8p-972 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1024L -0x8p-972L : 0x3.243f6a8885a300d313198a2e04p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L -0x4p-128L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L -0x4p-1024L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L -0x4p-16384L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec21p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec21p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec20c417ee80d5fd4p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec20c417ee80d5fd6p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec20c417ee80d5fd4p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L -0x2p-16384L : 0x2.08d15159c9bec20c417ee80d5fd6p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L -0x8p-972L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L -0x4p-128L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L -0x4p-1024L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb34p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb34p+0L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb305b276737a552p+0L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb305b276737a554p+0L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb305b276737a552p+0L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L -0x4p-16384L : 0x2.ad8dce72feb5cb305b276737a554p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L -0x2p-16384L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L -0x8p-972L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward dbl-64 0x8p-972 -0x4p-128 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x8p-972 -0x4p-128 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x8p-972 -0x4p-128 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x8p-972 -0x4p-128 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-972L -0x4p-128L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0x8p-972 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0x8p-972 -0x4p-1024 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 towardzero dbl-64 0x8p-972 -0x4p-1024 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0x8p-972 -0x4p-1024 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c68p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c6ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c68p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c6ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c68p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c6ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c68p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c6ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c69898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c69898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c69898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c69898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c69898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c69898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c69898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-972L -0x4p-1024L : 0x1.921fb54442d18c69898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L -0x4p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L -0x4p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L -0x4p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L -0x2p-16384L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L -0x2p-16384L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L -0x2p-16384L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0x8p-972 -0x8p-972 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 tonearest dbl-64 0x8p-972 -0x8p-972 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 0x8p-972 -0x8p-972 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 0x8p-972 -0x8p-972 : 0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-972L -0x8p-972L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok +atan2 -min min += atan2 downward flt-32 -0x4p-128f 0x4p-128f : -0xc.90fdbp-4f : inexact-ok += atan2 tonearest flt-32 -0x4p-128f 0x4p-128f : -0xc.90fdbp-4f : inexact-ok += atan2 towardzero flt-32 -0x4p-128f 0x4p-128f : -0xc.90fdap-4f : inexact-ok += atan2 upward flt-32 -0x4p-128f 0x4p-128f : -0xc.90fdap-4f : inexact-ok += atan2 downward dbl-64 -0x4p-128 0x4p-128 : -0xc.90fdaa22168c8p-4 : inexact-ok += atan2 tonearest dbl-64 -0x4p-128 0x4p-128 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 -0x4p-128 0x4p-128 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 -0x4p-128 0x4p-128 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-128L 0x4p-128L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 downward dbl-64 -0x4p-128 0x4p-1024 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-128 0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-128 0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-128 0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L 0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-128L 0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-128 0x8p-972 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-128 0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-128 0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-128 0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L 0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L 0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L 0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L 0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L 0x8p-972L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-128L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-128L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-128L 0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1024 0x4p-128 : -0x1p-896 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1024 0x4p-128 : -0x1p-896 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1024 0x4p-128 : -0xf.ffffffffffff8p-900 : inexact-ok += atan2 upward dbl-64 -0x4p-1024 0x4p-128 : -0xf.ffffffffffff8p-900 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L 0x4p-128L : -0x1p-896L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L 0x4p-128L : -0x1p-896L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L 0x4p-128L : -0xf.fffffffffffffffp-900L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L 0x4p-128L : -0xf.fffffffffffffffp-900L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L 0x4p-128L : -0x1p-896L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L 0x4p-128L : -0x1p-896L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L 0x4p-128L : -0xf.fffffffffffffffp-900L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L 0x4p-128L : -0xf.fffffffffffffffp-900L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L 0x4p-128L : -0x1p-896L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L 0x4p-128L : -0x1p-896L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L 0x4p-128L : -0xf.fffffffffffffffffffffffffff8p-900L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L 0x4p-128L : -0xf.fffffffffffffffffffffffffff8p-900L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L 0x4p-128L : -0x1p-896L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L 0x4p-128L : -0x1p-896L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L 0x4p-128L : -0xf.fffffffffffffffffffffffffcp-900L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1024L 0x4p-128L : -0xf.fffffffffffffffffffffffffcp-900L : inexact-ok += atan2 downward dbl-64 -0x4p-1024 0x4p-1024 : -0xc.90fdaa22168c8p-4 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1024 0x4p-1024 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1024 0x4p-1024 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 -0x4p-1024 0x4p-1024 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1024L 0x4p-1024L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1024 0x8p-972 : -0x8p-56 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1024 0x8p-972 : -0x8p-56 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1024 0x8p-972 : -0x7.ffffffffffffcp-56 : inexact-ok += atan2 upward dbl-64 -0x4p-1024 0x8p-972 : -0x7.ffffffffffffcp-56 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L 0x8p-972L : -0x8p-56L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L 0x8p-972L : -0x8p-56L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L 0x8p-972L : -0x7.fffffffffffffff8p-56L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L 0x8p-972L : -0x7.fffffffffffffff8p-56L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L 0x8p-972L : -0x8p-56L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L 0x8p-972L : -0x8p-56L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L 0x8p-972L : -0x7.fffffffffffffff8p-56L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L 0x8p-972L : -0x7.fffffffffffffff8p-56L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L 0x8p-972L : -0x7.ffffffffffffffffffffffffff58p-56L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L 0x8p-972L : -0x7.ffffffffffffffffffffffffff54p-56L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L 0x8p-972L : -0x7.ffffffffffffffffffffffffff54p-56L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L 0x8p-972L : -0x7.ffffffffffffffffffffffffff54p-56L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L 0x8p-972L : -0x8p-56L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L 0x8p-972L : -0x8p-56L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L 0x8p-972L : -0x7.fffffffffffffffffffffffffep-56L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1024L 0x8p-972L : -0x7.fffffffffffffffffffffffffep-56L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L 0x4p-128L : -0x1p-16256L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L 0x4p-128L : -0x1p-16256L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L 0x4p-128L : -0xf.fffffffffffffffp-16260L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L 0x4p-128L : -0xf.fffffffffffffffp-16260L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L 0x4p-128L : -0x1p-16256L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L 0x4p-128L : -0x1p-16256L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L 0x4p-128L : -0xf.fffffffffffffffp-16260L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L 0x4p-128L : -0xf.fffffffffffffffp-16260L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L 0x4p-128L : -0x1p-16256L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L 0x4p-128L : -0x1p-16256L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L 0x4p-128L : -0xf.fffffffffffffffffffffffffff8p-16260L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L 0x4p-128L : -0xf.fffffffffffffffffffffffffff8p-16260L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L 0x4p-1024L : -0x1p-15360L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L 0x4p-1024L : -0x1p-15360L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L 0x4p-1024L : -0xf.fffffffffffffffp-15364L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L 0x4p-1024L : -0xf.fffffffffffffffp-15364L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L 0x4p-1024L : -0x1p-15360L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L 0x4p-1024L : -0x1p-15360L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L 0x4p-1024L : -0xf.fffffffffffffffp-15364L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L 0x4p-1024L : -0xf.fffffffffffffffp-15364L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L 0x4p-1024L : -0x1p-15360L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L 0x4p-1024L : -0x1p-15360L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L 0x4p-1024L : -0xf.fffffffffffffffffffffffffff8p-15364L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L 0x4p-1024L : -0xf.fffffffffffffffffffffffffff8p-15364L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L 0x4p-16384L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c8p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c8p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c6d19aa220a39bp+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c6d19aa220a39bp+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c6d19aa220a39ap+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L 0x2p-16384L : -0x1.1b6e192ebbe446c6d19aa220a39ap+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L 0x8p-972L : -0x8p-15416L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L 0x8p-972L : -0x8p-15416L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L 0x8p-972L : -0x7.fffffffffffffff8p-15416L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L 0x8p-972L : -0x7.fffffffffffffff8p-15416L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L 0x8p-972L : -0x8p-15416L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L 0x8p-972L : -0x8p-15416L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L 0x8p-972L : -0x7.fffffffffffffff8p-15416L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L 0x8p-972L : -0x7.fffffffffffffff8p-15416L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L 0x8p-972L : -0x8p-15416L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L 0x8p-972L : -0x8p-15416L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L 0x8p-972L : -0x7.fffffffffffffffffffffffffffcp-15416L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L 0x8p-972L : -0x7.fffffffffffffffffffffffffffcp-15416L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L 0x4p-128L : -0x8p-16260L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L 0x4p-128L : -0x8p-16260L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L 0x4p-128L : -0x7.fffffffffffffff8p-16260L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L 0x4p-128L : -0x7.fffffffffffffff8p-16260L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L 0x4p-128L : -0x8p-16260L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L 0x4p-128L : -0x8p-16260L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L 0x4p-128L : -0x7.fffffffffffffff8p-16260L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L 0x4p-128L : -0x7.fffffffffffffff8p-16260L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L 0x4p-128L : -0x8p-16260L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L 0x4p-128L : -0x8p-16260L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L 0x4p-128L : -0x7.fffffffffffffffffffffffffffcp-16260L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L 0x4p-128L : -0x7.fffffffffffffffffffffffffffcp-16260L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L 0x4p-1024L : -0x8p-15364L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L 0x4p-1024L : -0x8p-15364L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L 0x4p-1024L : -0x7.fffffffffffffff8p-15364L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L 0x4p-1024L : -0x7.fffffffffffffff8p-15364L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L 0x4p-1024L : -0x8p-15364L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L 0x4p-1024L : -0x8p-15364L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L 0x4p-1024L : -0x7.fffffffffffffff8p-15364L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L 0x4p-1024L : -0x7.fffffffffffffff8p-15364L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L 0x4p-1024L : -0x8p-15364L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L 0x4p-1024L : -0x8p-15364L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L 0x4p-1024L : -0x7.fffffffffffffffffffffffffffcp-15364L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L 0x4p-1024L : -0x7.fffffffffffffffffffffffffffcp-15364L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da3p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da3p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da2b7f222f65e1dp-4L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L 0x4p-16384L : -0x7.6b19c1586ed3da2b7f222f65e1dp-4L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L 0x2p-16384L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L 0x8p-972L : -0x4p-15416L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L 0x8p-972L : -0x4p-15416L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L 0x8p-972L : -0x3.fffffffffffffffcp-15416L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L 0x8p-972L : -0x3.fffffffffffffffcp-15416L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L 0x8p-972L : -0x4p-15416L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L 0x8p-972L : -0x4p-15416L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L 0x8p-972L : -0x3.fffffffffffffffcp-15416L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L 0x8p-972L : -0x3.fffffffffffffffcp-15416L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L 0x8p-972L : -0x4p-15416L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L 0x8p-972L : -0x4p-15416L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L 0x8p-972L : -0x3.fffffffffffffffffffffffffffep-15416L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L 0x8p-972L : -0x3.fffffffffffffffffffffffffffep-15416L : inexact-ok += atan2 downward dbl-64 -0x8p-972 0x4p-128 : -0x2p-844 : inexact-ok += atan2 tonearest dbl-64 -0x8p-972 0x4p-128 : -0x2p-844 : inexact-ok += atan2 towardzero dbl-64 -0x8p-972 0x4p-128 : -0x1.fffffffffffffp-844 : inexact-ok += atan2 upward dbl-64 -0x8p-972 0x4p-128 : -0x1.fffffffffffffp-844 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L 0x4p-128L : -0x2p-844L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L 0x4p-128L : -0x2p-844L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L 0x4p-128L : -0x1.fffffffffffffffep-844L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L 0x4p-128L : -0x1.fffffffffffffffep-844L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L 0x4p-128L : -0x2p-844L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L 0x4p-128L : -0x2p-844L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L 0x4p-128L : -0x1.fffffffffffffffep-844L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L 0x4p-128L : -0x1.fffffffffffffffep-844L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L 0x4p-128L : -0x2p-844L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L 0x4p-128L : -0x2p-844L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L 0x4p-128L : -0x1.ffffffffffffffffffffffffffffp-844L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L 0x4p-128L : -0x1.ffffffffffffffffffffffffffffp-844L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L 0x4p-128L : -0x2p-844L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-972L 0x4p-128L : -0x2p-844L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-972L 0x4p-128L : -0x1.ffffffffffffffffffffffffff8p-844L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-972L 0x4p-128L : -0x1.ffffffffffffffffffffffffff8p-844L : inexact-ok += atan2 downward dbl-64 -0x8p-972 0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 -0x8p-972 0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0x8p-972 0x4p-1024 : -0x1.921fb54442d17p+0 : inexact-ok += atan2 upward dbl-64 -0x8p-972 0x4p-1024 : -0x1.921fb54442d17p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c6ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c6ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c68p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c68p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c6ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c6ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c68p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c68p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c69898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c69898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c69898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c69898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c69898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c69898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c69898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-972L 0x4p-1024L : -0x1.921fb54442d17c69898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L 0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L 0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L 0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L 0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L 0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L 0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0x8p-972 0x8p-972 : -0xc.90fdaa22168c8p-4 : inexact-ok += atan2 tonearest dbl-64 -0x8p-972 0x8p-972 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 -0x8p-972 0x8p-972 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 -0x8p-972 0x8p-972 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-972L 0x8p-972L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok +atan2 -min -min += atan2 downward flt-32 -0x4p-128f -0x4p-128f : -0x2.5b2f9p+0f : inexact-ok += atan2 tonearest flt-32 -0x4p-128f -0x4p-128f : -0x2.5b2f9p+0f : inexact-ok += atan2 towardzero flt-32 -0x4p-128f -0x4p-128f : -0x2.5b2f8cp+0f : inexact-ok += atan2 upward flt-32 -0x4p-128f -0x4p-128f : -0x2.5b2f8cp+0f : inexact-ok += atan2 downward dbl-64 -0x4p-128 -0x4p-128 : -0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-128 -0x4p-128 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-128 -0x4p-128 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-128 -0x4p-128 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-128L -0x4p-128L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-128 -0x4p-1024 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-128 -0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-128 -0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-128 -0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L -0x4p-1024L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-128L -0x4p-1024L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-128 -0x8p-972 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-128 -0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-128 -0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-128 -0x8p-972 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L -0x8p-972L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L -0x8p-972L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L -0x8p-972L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L -0x8p-972L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L -0x8p-972L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-128L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-128L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-128L -0x8p-972L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1024 -0x4p-128 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1024 -0x4p-128 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1024 -0x4p-128 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-1024 -0x4p-128 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1024L -0x4p-128L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1024 -0x4p-1024 : -0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1024 -0x4p-1024 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1024 -0x4p-1024 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-1024 -0x4p-1024 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1024L -0x4p-1024L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1024 -0x8p-972 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1024 -0x8p-972 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1024 -0x8p-972 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-1024 -0x8p-972 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1024L -0x8p-972L : -0x3.243f6a8885a300d313198a2e03p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L -0x4p-128L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L -0x4p-1024L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L -0x4p-16384L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec21p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec21p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec20c417ee80d5fd6p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec20c417ee80d5fd6p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec20c417ee80d5fd4p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L -0x2p-16384L : -0x2.08d15159c9bec20c417ee80d5fd4p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L -0x8p-972L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L -0x4p-128L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L -0x4p-1024L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb34p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb34p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb305b276737a554p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb305b276737a552p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb305b276737a552p+0L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L -0x4p-16384L : -0x2.ad8dce72feb5cb305b276737a552p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L -0x2p-16384L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L -0x8p-972L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward dbl-64 -0x8p-972 -0x4p-128 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x8p-972 -0x4p-128 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x8p-972 -0x4p-128 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x8p-972 -0x4p-128 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-972L -0x4p-128L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0x8p-972 -0x4p-1024 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0x8p-972 -0x4p-1024 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 towardzero dbl-64 -0x8p-972 -0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0x8p-972 -0x4p-1024 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c6ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c6ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c68p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c68p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c6ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c6ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c68p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c68p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c69898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c69898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c69898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c69898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c69898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c69898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c69898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-972L -0x4p-1024L : -0x1.921fb54442d18c69898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L -0x4p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L -0x4p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L -0x4p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L -0x2p-16384L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L -0x2p-16384L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L -0x2p-16384L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0x8p-972 -0x8p-972 : -0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 tonearest dbl-64 -0x8p-972 -0x8p-972 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 -0x8p-972 -0x8p-972 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 -0x8p-972 -0x8p-972 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-972L -0x8p-972L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok +atan2 min_subnorm min_subnorm += atan2 downward flt-32 0x8p-152f 0x8p-152f : 0xc.90fdap-4f : inexact-ok += atan2 tonearest flt-32 0x8p-152f 0x8p-152f : 0xc.90fdbp-4f : inexact-ok += atan2 towardzero flt-32 0x8p-152f 0x8p-152f : 0xc.90fdap-4f : inexact-ok += atan2 upward flt-32 0x8p-152f 0x8p-152f : 0xc.90fdbp-4f : inexact-ok += atan2 downward dbl-64 0x8p-152 0x8p-152 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 tonearest dbl-64 0x8p-152 0x8p-152 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 0x8p-152 0x8p-152 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 0x8p-152 0x8p-152 : 0xc.90fdaa22168c8p-4 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-128 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 upward ldbl-128 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-152L 0x8p-152L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 downward dbl-64 0x8p-152 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0x8p-152 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0x8p-152 0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0x8p-152 0x4p-1076 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-152L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L 0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-152L 0x4p-1076L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-152L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1076 0x8p-152 : 0x7.ffffffffffffcp-928 : inexact-ok += atan2 tonearest dbl-64 0x4p-1076 0x8p-152 : 0x8p-928 : inexact-ok += atan2 towardzero dbl-64 0x4p-1076 0x8p-152 : 0x7.ffffffffffffcp-928 : inexact-ok += atan2 upward dbl-64 0x4p-1076 0x8p-152 : 0x8p-928 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x7.fffffffffffffff8p-928L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8p-928L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x7.fffffffffffffff8p-928L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1076L 0x8p-152L : 0x8p-928L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x7.fffffffffffffff8p-928L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8p-928L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x7.fffffffffffffff8p-928L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L 0x8p-152L : 0x8p-928L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L 0x8p-152L : 0x7.fffffffffffffffffffffffffffcp-928L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L 0x8p-152L : 0x8p-928L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L 0x8p-152L : 0x7.fffffffffffffffffffffffffffcp-928L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L 0x8p-152L : 0x8p-928L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x7.fffffffffffffffffffffffffep-928L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8p-928L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x7.fffffffffffffffffffffffffep-928L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1076L 0x8p-152L : 0x8p-928L : inexact-ok += atan2 downward dbl-64 0x4p-1076 0x4p-1076 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 tonearest dbl-64 0x4p-1076 0x4p-1076 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 0x4p-1076 0x4p-1076 : 0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 0x4p-1076 0x4p-1076 : 0xc.90fdaa22168c8p-4 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1076L 0x4p-1076L : 0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L 0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L 0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L 0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L 0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffp-16300L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x1p-16296L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffp-16300L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-16448L 0x8p-152L : 0x1p-16296L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffp-16300L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x1p-16296L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffp-16300L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-16448L 0x8p-152L : 0x1p-16296L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-16300L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L 0x8p-152L : 0x1p-16296L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-16300L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L 0x8p-152L : 0x1p-16296L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x1.fffffffffffffffep-15372L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x2p-15372L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x1.fffffffffffffffep-15372L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-16448L 0x4p-1076L : 0x2p-15372L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x1.fffffffffffffffep-15372L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x2p-15372L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x1.fffffffffffffffep-15372L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-16448L 0x4p-1076L : 0x2p-15372L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L 0x4p-1076L : 0x1.ffffffffffffffffffffffffffffp-15372L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L 0x4p-1076L : 0x2p-15372L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L 0x4p-1076L : 0x1.ffffffffffffffffffffffffffffp-15372L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L 0x4p-1076L : 0x2p-15372L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L 0x8p-16448L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-16448L 0x4p-16448L : 0x1.1b6e192ebbe446c8p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L 0x4p-16448L : 0x1.1b6e192ebbe446c6d19aa220a39ap+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L 0x4p-16448L : 0x1.1b6e192ebbe446c6d19aa220a39bp+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L 0x4p-16448L : 0x1.1b6e192ebbe446c6d19aa220a39ap+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L 0x4p-16448L : 0x1.1b6e192ebbe446c6d19aa220a39bp+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L 0x4p-16496L : 0x1.921fb54442d10469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L 0x4p-16496L : 0x1.921fb54442d10469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L 0x4p-16496L : 0x1.921fb54442d10469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L 0x4p-16496L : 0x1.921fb54442d10469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0x7.fffffffffffffff8p-16300L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0x8p-16300L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0x7.fffffffffffffff8p-16300L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16448L 0x8p-152L : 0x8p-16300L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L 0x8p-152L : 0x7.fffffffffffffffffffffffffffcp-16300L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L 0x8p-152L : 0x8p-16300L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L 0x8p-152L : 0x7.fffffffffffffffffffffffffffcp-16300L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L 0x8p-152L : 0x8p-16300L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0xf.fffffffffffffffp-15376L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0x1p-15372L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0xf.fffffffffffffffp-15376L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16448L 0x4p-1076L : 0x1p-15372L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-15376L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L 0x4p-1076L : 0x1p-15372L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-15376L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L 0x4p-1076L : 0x1p-15372L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16448L 0x8p-16448L : 0x7.6b19c1586ed3da3p-4L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L 0x8p-16448L : 0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L 0x8p-16448L : 0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L 0x8p-16448L : 0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L 0x8p-16448L : 0x7.6b19c1586ed3da2b7f222f65e1d8p-4L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16448L 0x4p-16448L : 0xc.90fdaa22168c235p-4L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L 0x4p-16448L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L 0x4p-16448L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L 0x4p-16448L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L 0x4p-16448L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L 0x4p-16496L : 0x1.921fb54442d08469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L 0x4p-16496L : 0x1.921fb54442d08469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L 0x4p-16496L : 0x1.921fb54442d08469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L 0x4p-16496L : 0x1.921fb54442d08469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L 0x8p-152L : 0x7.fffffffffffffffffffffffffffcp-16348L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L 0x8p-152L : 0x8p-16348L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L 0x8p-152L : 0x7.fffffffffffffffffffffffffffcp-16348L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L 0x8p-152L : 0x8p-16348L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-15424L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L 0x4p-1076L : 0x1p-15420L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-15424L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L 0x4p-1076L : 0x1p-15420L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L 0x8p-16448L : 0x7.ffffffffffffffffffffffff5554p-52L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L 0x8p-16448L : 0x7.ffffffffffffffffffffffff5554p-52L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L 0x8p-16448L : 0x7.ffffffffffffffffffffffff5554p-52L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L 0x8p-16448L : 0x7.ffffffffffffffffffffffff5558p-52L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L 0x4p-16448L : 0xf.fffffffffffffffffffffffaaaa8p-52L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L 0x4p-16448L : 0xf.fffffffffffffffffffffffaaaa8p-52L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L 0x4p-16448L : 0xf.fffffffffffffffffffffffaaaa8p-52L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L 0x4p-16448L : 0xf.fffffffffffffffffffffffaaabp-52L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L 0x4p-16496L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L 0x4p-16496L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L 0x4p-16496L : 0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L 0x4p-16496L : 0xc.90fdaa22168c234c4c6628b80dc8p-4L : inexact-ok +atan2 min_subnorm -min_subnorm += atan2 downward flt-32 0x8p-152f -0x8p-152f : 0x2.5b2f8cp+0f : inexact-ok += atan2 tonearest flt-32 0x8p-152f -0x8p-152f : 0x2.5b2f9p+0f : inexact-ok += atan2 towardzero flt-32 0x8p-152f -0x8p-152f : 0x2.5b2f8cp+0f : inexact-ok += atan2 upward flt-32 0x8p-152f -0x8p-152f : 0x2.5b2f9p+0f : inexact-ok += atan2 downward dbl-64 0x8p-152 -0x8p-152 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 tonearest dbl-64 0x8p-152 -0x8p-152 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 0x8p-152 -0x8p-152 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 0x8p-152 -0x8p-152 : 0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-152L -0x8p-152L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 downward dbl-64 0x8p-152 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 tonearest dbl-64 0x8p-152 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 0x8p-152 -0x4p-1076 : 0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 0x8p-152 -0x4p-1076 : 0x1.921fb54442d19p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-152L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-152L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L -0x4p-1076L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-152L -0x4p-1076L : 0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-152L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-152L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-152L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-152L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1076 -0x8p-152 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-1076 -0x8p-152 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-1076 -0x8p-152 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x4p-1076 -0x8p-152 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1076L -0x8p-152L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1076 -0x4p-1076 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-1076 -0x4p-1076 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-1076 -0x4p-1076 : 0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 0x4p-1076 -0x4p-1076 : 0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1076L -0x4p-1076L : 0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L -0x8p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L -0x4p-16448L : 0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L -0x4p-16448L : 0x1.921fb54442d1846ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L -0x4p-16448L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L -0x4p-16496L : 0x1.921fb54442d18469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L -0x8p-152L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L -0x8p-16448L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-16448L -0x4p-16448L : 0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L -0x4p-16448L : 0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L -0x4p-16448L : 0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-16448L -0x4p-16448L : 0x2.08d15159c9bec21p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L -0x4p-16448L : 0x2.08d15159c9bec20c417ee80d5fd4p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L -0x4p-16448L : 0x2.08d15159c9bec20c417ee80d5fd6p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L -0x4p-16448L : 0x2.08d15159c9bec20c417ee80d5fd4p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L -0x4p-16448L : 0x2.08d15159c9bec20c417ee80d5fd6p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L -0x4p-16496L : 0x1.921fb54442d20469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L -0x4p-16496L : 0x1.921fb54442d20469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L -0x4p-16496L : 0x1.921fb54442d20469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L -0x4p-16496L : 0x1.921fb54442d20469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16448L -0x8p-152L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L -0x8p-152L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L -0x8p-152L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16448L -0x8p-152L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L -0x8p-152L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16448L -0x4p-1076L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L -0x4p-1076L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L -0x4p-1076L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16448L -0x4p-1076L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16448L -0x8p-16448L : 0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L -0x8p-16448L : 0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L -0x8p-16448L : 0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16448L -0x8p-16448L : 0x2.ad8dce72feb5cb34p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L -0x8p-16448L : 0x2.ad8dce72feb5cb305b276737a552p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L -0x8p-16448L : 0x2.ad8dce72feb5cb305b276737a554p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L -0x8p-16448L : 0x2.ad8dce72feb5cb305b276737a552p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L -0x8p-16448L : 0x2.ad8dce72feb5cb305b276737a554p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16448L -0x4p-16448L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L -0x4p-16448L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L -0x4p-16448L : 0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16448L -0x4p-16448L : 0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L -0x4p-16448L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L -0x4p-16448L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L -0x4p-16448L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L -0x4p-16448L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L -0x4p-16496L : 0x1.921fb54442d28469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L -0x4p-16496L : 0x1.921fb54442d28469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L -0x4p-16496L : 0x1.921fb54442d28469898cc51701b8p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L -0x4p-16496L : 0x1.921fb54442d28469898cc51701b9p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L -0x8p-152L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L -0x8p-152L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L -0x4p-1076L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L -0x8p-16448L : 0x3.243f6a8885a288d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L -0x8p-16448L : 0x3.243f6a8885a288d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L -0x8p-16448L : 0x3.243f6a8885a288d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L -0x8p-16448L : 0x3.243f6a8885a288d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L -0x4p-16448L : 0x3.243f6a8885a208d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L -0x4p-16448L : 0x3.243f6a8885a208d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L -0x4p-16448L : 0x3.243f6a8885a208d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L -0x4p-16448L : 0x3.243f6a8885a208d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L -0x4p-16496L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L -0x4p-16496L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L -0x4p-16496L : 0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L -0x4p-16496L : 0x2.5b2f8fe6643a469e4e5327a28296p+0L : inexact-ok +atan2 -min_subnorm min_subnorm += atan2 downward flt-32 -0x8p-152f 0x8p-152f : -0xc.90fdbp-4f : inexact-ok += atan2 tonearest flt-32 -0x8p-152f 0x8p-152f : -0xc.90fdbp-4f : inexact-ok += atan2 towardzero flt-32 -0x8p-152f 0x8p-152f : -0xc.90fdap-4f : inexact-ok += atan2 upward flt-32 -0x8p-152f 0x8p-152f : -0xc.90fdap-4f : inexact-ok += atan2 downward dbl-64 -0x8p-152 0x8p-152 : -0xc.90fdaa22168c8p-4 : inexact-ok += atan2 tonearest dbl-64 -0x8p-152 0x8p-152 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 -0x8p-152 0x8p-152 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 -0x8p-152 0x8p-152 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-152L 0x8p-152L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 downward dbl-64 -0x8p-152 0x4p-1076 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0x8p-152 0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0x8p-152 0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0x8p-152 0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-152L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-152L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L 0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-152L 0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-152L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-152L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-152L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-152L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L 0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L 0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L 0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L 0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1076 0x8p-152 : -0x8p-928 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1076 0x8p-152 : -0x8p-928 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1076 0x8p-152 : -0x7.ffffffffffffcp-928 : inexact-ok += atan2 upward dbl-64 -0x4p-1076 0x8p-152 : -0x7.ffffffffffffcp-928 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1076L 0x8p-152L : -0x8p-928L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L 0x8p-152L : -0x8p-928L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L 0x8p-152L : -0x7.fffffffffffffff8p-928L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1076L 0x8p-152L : -0x7.fffffffffffffff8p-928L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L 0x8p-152L : -0x8p-928L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L 0x8p-152L : -0x8p-928L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L 0x8p-152L : -0x7.fffffffffffffff8p-928L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L 0x8p-152L : -0x7.fffffffffffffff8p-928L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L 0x8p-152L : -0x8p-928L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L 0x8p-152L : -0x8p-928L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L 0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-928L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L 0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-928L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1076L 0x8p-152L : -0x8p-928L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1076L 0x8p-152L : -0x8p-928L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1076L 0x8p-152L : -0x7.fffffffffffffffffffffffffep-928L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1076L 0x8p-152L : -0x7.fffffffffffffffffffffffffep-928L : inexact-ok += atan2 downward dbl-64 -0x4p-1076 0x4p-1076 : -0xc.90fdaa22168c8p-4 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1076 0x4p-1076 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1076 0x4p-1076 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 upward dbl-64 -0x4p-1076 0x4p-1076 : -0xc.90fdaa22168cp-4 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234c4c6628b81p-4L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1076L 0x4p-1076L : -0xc.90fdaa22168c234c4c6628b80cp-4L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L 0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L 0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L 0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L 0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L 0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L 0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L 0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-16448L 0x8p-152L : -0x1p-16296L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L 0x8p-152L : -0x1p-16296L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L 0x8p-152L : -0xf.fffffffffffffffp-16300L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-16448L 0x8p-152L : -0xf.fffffffffffffffp-16300L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-16448L 0x8p-152L : -0x1p-16296L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L 0x8p-152L : -0x1p-16296L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L 0x8p-152L : -0xf.fffffffffffffffp-16300L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-16448L 0x8p-152L : -0xf.fffffffffffffffp-16300L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L 0x8p-152L : -0x1p-16296L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L 0x8p-152L : -0x1p-16296L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L 0x8p-152L : -0xf.fffffffffffffffffffffffffff8p-16300L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L 0x8p-152L : -0xf.fffffffffffffffffffffffffff8p-16300L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-16448L 0x4p-1076L : -0x2p-15372L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L 0x4p-1076L : -0x2p-15372L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L 0x4p-1076L : -0x1.fffffffffffffffep-15372L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-16448L 0x4p-1076L : -0x1.fffffffffffffffep-15372L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-16448L 0x4p-1076L : -0x2p-15372L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L 0x4p-1076L : -0x2p-15372L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L 0x4p-1076L : -0x1.fffffffffffffffep-15372L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-16448L 0x4p-1076L : -0x1.fffffffffffffffep-15372L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L 0x4p-1076L : -0x2p-15372L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L 0x4p-1076L : -0x2p-15372L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L 0x4p-1076L : -0x1.ffffffffffffffffffffffffffffp-15372L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L 0x4p-1076L : -0x1.ffffffffffffffffffffffffffffp-15372L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L 0x8p-16448L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-16448L 0x4p-16448L : -0x1.1b6e192ebbe446c8p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L 0x4p-16448L : -0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L 0x4p-16448L : -0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-16448L 0x4p-16448L : -0x1.1b6e192ebbe446c6p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L 0x4p-16448L : -0x1.1b6e192ebbe446c6d19aa220a39bp+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L 0x4p-16448L : -0x1.1b6e192ebbe446c6d19aa220a39bp+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L 0x4p-16448L : -0x1.1b6e192ebbe446c6d19aa220a39ap+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L 0x4p-16448L : -0x1.1b6e192ebbe446c6d19aa220a39ap+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L 0x4p-16496L : -0x1.921fb54442d10469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L 0x4p-16496L : -0x1.921fb54442d10469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L 0x4p-16496L : -0x1.921fb54442d10469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L 0x4p-16496L : -0x1.921fb54442d10469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16448L 0x8p-152L : -0x8p-16300L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L 0x8p-152L : -0x8p-16300L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L 0x8p-152L : -0x7.fffffffffffffff8p-16300L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16448L 0x8p-152L : -0x7.fffffffffffffff8p-16300L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L 0x8p-152L : -0x8p-16300L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L 0x8p-152L : -0x8p-16300L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L 0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-16300L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L 0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-16300L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16448L 0x4p-1076L : -0x1p-15372L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L 0x4p-1076L : -0x1p-15372L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L 0x4p-1076L : -0xf.fffffffffffffffp-15376L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16448L 0x4p-1076L : -0xf.fffffffffffffffp-15376L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L 0x4p-1076L : -0x1p-15372L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L 0x4p-1076L : -0x1p-15372L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L 0x4p-1076L : -0xf.fffffffffffffffffffffffffff8p-15376L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L 0x4p-1076L : -0xf.fffffffffffffffffffffffffff8p-15376L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16448L 0x8p-16448L : -0x7.6b19c1586ed3da3p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L 0x8p-16448L : -0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L 0x8p-16448L : -0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16448L 0x8p-16448L : -0x7.6b19c1586ed3da28p-4L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L 0x8p-16448L : -0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L 0x8p-16448L : -0x7.6b19c1586ed3da2b7f222f65e1d4p-4L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L 0x8p-16448L : -0x7.6b19c1586ed3da2b7f222f65e1dp-4L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L 0x8p-16448L : -0x7.6b19c1586ed3da2b7f222f65e1dp-4L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16448L 0x4p-16448L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L 0x4p-16448L : -0xc.90fdaa22168c235p-4L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L 0x4p-16448L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16448L 0x4p-16448L : -0xc.90fdaa22168c234p-4L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L 0x4p-16448L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L 0x4p-16448L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L 0x4p-16448L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L 0x4p-16448L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L 0x4p-16496L : -0x1.921fb54442d08469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L 0x4p-16496L : -0x1.921fb54442d08469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L 0x4p-16496L : -0x1.921fb54442d08469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L 0x4p-16496L : -0x1.921fb54442d08469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L 0x8p-152L : -0x8p-16348L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L 0x8p-152L : -0x8p-16348L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L 0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-16348L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L 0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-16348L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L 0x4p-1076L : -0x1p-15420L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L 0x4p-1076L : -0x1p-15420L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L 0x4p-1076L : -0xf.fffffffffffffffffffffffffff8p-15424L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L 0x4p-1076L : -0xf.fffffffffffffffffffffffffff8p-15424L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L 0x8p-16448L : -0x7.ffffffffffffffffffffffff5558p-52L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L 0x8p-16448L : -0x7.ffffffffffffffffffffffff5554p-52L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L 0x8p-16448L : -0x7.ffffffffffffffffffffffff5554p-52L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L 0x8p-16448L : -0x7.ffffffffffffffffffffffff5554p-52L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L 0x4p-16448L : -0xf.fffffffffffffffffffffffaaabp-52L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L 0x4p-16448L : -0xf.fffffffffffffffffffffffaaaa8p-52L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L 0x4p-16448L : -0xf.fffffffffffffffffffffffaaaa8p-52L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L 0x4p-16448L : -0xf.fffffffffffffffffffffffaaaa8p-52L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L 0x4p-16496L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L 0x4p-16496L : -0xc.90fdaa22168c234c4c6628b80dcp-4L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L 0x4p-16496L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L 0x4p-16496L : -0xc.90fdaa22168c234c4c6628b80db8p-4L : inexact-ok +atan2 -min_subnorm -min_subnorm += atan2 downward flt-32 -0x8p-152f -0x8p-152f : -0x2.5b2f9p+0f : inexact-ok += atan2 tonearest flt-32 -0x8p-152f -0x8p-152f : -0x2.5b2f9p+0f : inexact-ok += atan2 towardzero flt-32 -0x8p-152f -0x8p-152f : -0x2.5b2f8cp+0f : inexact-ok += atan2 upward flt-32 -0x8p-152f -0x8p-152f : -0x2.5b2f8cp+0f : inexact-ok += atan2 downward dbl-64 -0x8p-152 -0x8p-152 : -0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 tonearest dbl-64 -0x8p-152 -0x8p-152 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 -0x8p-152 -0x8p-152 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 -0x8p-152 -0x8p-152 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-152L -0x8p-152L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 downward dbl-64 -0x8p-152 -0x4p-1076 : -0x1.921fb54442d19p+0 : inexact-ok += atan2 tonearest dbl-64 -0x8p-152 -0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 towardzero dbl-64 -0x8p-152 -0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 upward dbl-64 -0x8p-152 -0x4p-1076 : -0x1.921fb54442d18p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-152L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-152L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L -0x4p-1076L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18469898cc51702p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-152L -0x4p-1076L : -0x1.921fb54442d18469898cc517018p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-152L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-152L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-152L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-152L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L -0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L -0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L -0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L -0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1076 -0x8p-152 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1076 -0x8p-152 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1076 -0x8p-152 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-1076 -0x8p-152 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1076L -0x8p-152L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1076 -0x4p-1076 : -0x2.5b2f8fe6643a6p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1076 -0x4p-1076 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1076 -0x4p-1076 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-1076 -0x4p-1076 : -0x2.5b2f8fe6643a4p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469e4e5327a283p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1076L -0x4p-1076L : -0x2.5b2f8fe6643a469e4e5327a282p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L -0x8p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L -0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L -0x4p-16448L : -0x1.921fb54442d1846ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L -0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L -0x4p-16448L : -0x1.921fb54442d18468p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L -0x4p-16448L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L -0x4p-16496L : -0x1.921fb54442d18469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L -0x8p-152L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L -0x8p-16448L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-16448L -0x4p-16448L : -0x2.08d15159c9bec21p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L -0x4p-16448L : -0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L -0x4p-16448L : -0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-16448L -0x4p-16448L : -0x2.08d15159c9bec20cp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L -0x4p-16448L : -0x2.08d15159c9bec20c417ee80d5fd6p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L -0x4p-16448L : -0x2.08d15159c9bec20c417ee80d5fd6p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L -0x4p-16448L : -0x2.08d15159c9bec20c417ee80d5fd4p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L -0x4p-16448L : -0x2.08d15159c9bec20c417ee80d5fd4p+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L -0x4p-16496L : -0x1.921fb54442d20469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L -0x4p-16496L : -0x1.921fb54442d20469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L -0x4p-16496L : -0x1.921fb54442d20469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L -0x4p-16496L : -0x1.921fb54442d20469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16448L -0x8p-152L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L -0x8p-152L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L -0x8p-152L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16448L -0x8p-152L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L -0x8p-152L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L -0x8p-152L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L -0x8p-152L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L -0x8p-152L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16448L -0x4p-1076L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L -0x4p-1076L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L -0x4p-1076L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16448L -0x4p-1076L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16448L -0x8p-16448L : -0x2.ad8dce72feb5cb34p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L -0x8p-16448L : -0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L -0x8p-16448L : -0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16448L -0x8p-16448L : -0x2.ad8dce72feb5cb3p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L -0x8p-16448L : -0x2.ad8dce72feb5cb305b276737a554p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L -0x8p-16448L : -0x2.ad8dce72feb5cb305b276737a552p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L -0x8p-16448L : -0x2.ad8dce72feb5cb305b276737a552p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L -0x8p-16448L : -0x2.ad8dce72feb5cb305b276737a552p+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16448L -0x4p-16448L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L -0x4p-16448L : -0x2.5b2f8fe6643a46ap+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L -0x4p-16448L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16448L -0x4p-16448L : -0x2.5b2f8fe6643a469cp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L -0x4p-16448L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L -0x4p-16448L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L -0x4p-16448L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L -0x4p-16448L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L -0x4p-16496L : -0x1.921fb54442d28469898cc51701b8p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L -0x4p-16496L : -0x1.921fb54442d28469898cc51701b8p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L -0x4p-16496L : -0x1.921fb54442d28469898cc51701b7p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L -0x4p-16496L : -0x1.921fb54442d28469898cc51701b7p+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L -0x8p-152L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L -0x8p-152L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L -0x8p-152L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L -0x8p-152L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L -0x4p-1076L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L -0x8p-16448L : -0x3.243f6a8885a288d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L -0x8p-16448L : -0x3.243f6a8885a288d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L -0x8p-16448L : -0x3.243f6a8885a288d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L -0x8p-16448L : -0x3.243f6a8885a288d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L -0x4p-16448L : -0x3.243f6a8885a208d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L -0x4p-16448L : -0x3.243f6a8885a208d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L -0x4p-16448L : -0x3.243f6a8885a208d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L -0x4p-16448L : -0x3.243f6a8885a208d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L -0x4p-16496L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L -0x4p-16496L : -0x2.5b2f8fe6643a469e4e5327a28294p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L -0x4p-16496L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L -0x4p-16496L : -0x2.5b2f8fe6643a469e4e5327a28292p+0L : inexact-ok +atan2 1 -max += atan2 downward flt-32 0x1p+0f -0xf.fffffp+124f : 0x3.243f68p+0f : inexact-ok += atan2 tonearest flt-32 0x1p+0f -0xf.fffffp+124f : 0x3.243f6cp+0f : inexact-ok += atan2 towardzero flt-32 0x1p+0f -0xf.fffffp+124f : 0x3.243f68p+0f : inexact-ok += atan2 upward flt-32 0x1p+0f -0xf.fffffp+124f : 0x3.243f6cp+0f : inexact-ok += atan2 downward dbl-64 0x1p+0 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x1p+0 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x1p+0 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x1p+0 -0xf.fffffp+124 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x1p+0L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0x1p+0 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x1p+0 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x1p+0 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x1p+0 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x1p+0L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x1p+0L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok +atan2 -1 -max += atan2 downward flt-32 -0x1p+0f -0xf.fffffp+124f : -0x3.243f6cp+0f : inexact-ok += atan2 tonearest flt-32 -0x1p+0f -0xf.fffffp+124f : -0x3.243f6cp+0f : inexact-ok += atan2 towardzero flt-32 -0x1p+0f -0xf.fffffp+124f : -0x3.243f68p+0f : inexact-ok += atan2 upward flt-32 -0x1p+0f -0xf.fffffp+124f : -0x3.243f68p+0f : inexact-ok += atan2 downward dbl-64 -0x1p+0 -0xf.fffffp+124 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x1p+0 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x1p+0 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x1p+0 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x1p+0L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0x1p+0 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x1p+0 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x1p+0 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x1p+0 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x1p+0L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x1p+0L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x1p+0L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x1p+0L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok +atan2 min -max += atan2 downward flt-32 0x4p-128f -0xf.fffffp+124f : 0x3.243f68p+0f : inexact-ok += atan2 tonearest flt-32 0x4p-128f -0xf.fffffp+124f : 0x3.243f6cp+0f : inexact-ok += atan2 towardzero flt-32 0x4p-128f -0xf.fffffp+124f : 0x3.243f68p+0f : inexact-ok += atan2 upward flt-32 0x4p-128f -0xf.fffffp+124f : 0x3.243f6cp+0f : inexact-ok += atan2 downward dbl-64 0x4p-128 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-128 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-128 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x4p-128 -0xf.fffffp+124 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-128L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0x4p-128 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-128 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-128 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x4p-128 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-128L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1024 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-1024 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-1024 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x4p-1024 -0xf.fffffp+124 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1024L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1024 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-1024 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-1024 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x4p-1024 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1024L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward dbl-64 0x8p-972 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x8p-972 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x8p-972 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x8p-972 -0xf.fffffp+124 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-972L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0x8p-972 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x8p-972 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x8p-972 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x8p-972 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-972L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok +atan2 -min -max += atan2 downward flt-32 -0x4p-128f -0xf.fffffp+124f : -0x3.243f6cp+0f : inexact-ok += atan2 tonearest flt-32 -0x4p-128f -0xf.fffffp+124f : -0x3.243f6cp+0f : inexact-ok += atan2 towardzero flt-32 -0x4p-128f -0xf.fffffp+124f : -0x3.243f68p+0f : inexact-ok += atan2 upward flt-32 -0x4p-128f -0xf.fffffp+124f : -0x3.243f68p+0f : inexact-ok += atan2 downward dbl-64 -0x4p-128 -0xf.fffffp+124 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-128 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-128 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-128 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-128L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-128 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-128 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-128 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-128 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-128L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-128L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1024 -0xf.fffffp+124 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1024 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1024 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-1024 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1024L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-1024 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1024L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1024L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x2p-16384L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward dbl-64 -0x8p-972 -0xf.fffffp+124 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x8p-972 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x8p-972 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x8p-972 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-972L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0x8p-972 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x8p-972 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x8p-972 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x8p-972 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-972L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-972L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok +atan2 min_subnorm -max += atan2 downward flt-32 0x8p-152f -0xf.fffffp+124f : 0x3.243f68p+0f : inexact-ok += atan2 tonearest flt-32 0x8p-152f -0xf.fffffp+124f : 0x3.243f6cp+0f : inexact-ok += atan2 towardzero flt-32 0x8p-152f -0xf.fffffp+124f : 0x3.243f68p+0f : inexact-ok += atan2 upward flt-32 0x8p-152f -0xf.fffffp+124f : 0x3.243f6cp+0f : inexact-ok += atan2 downward dbl-64 0x8p-152 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x8p-152 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x8p-152 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x8p-152 -0xf.fffffp+124 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-152L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x8p-152 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-152L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x4p-1076 -0xf.fffffp+124 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1076L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 tonearest dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 0x4p-1076 -0xf.ffffffffffff8p+1020 : 0x3.243f6a8885a32p+0 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-intel 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L -0xf.fffffp+124L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L -0xf.ffffffffffff8p+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L -0xf.fffffffffffffffp+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L -0xf.fffffffffffffffffffffffffff8p+16380L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok += atan2 downward ldbl-128 0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 upward ldbl-128 0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : 0x3.243f6a8885a308d313198a2e0372p+0L : inexact-ok +atan2 -min_subnorm -max += atan2 downward flt-32 -0x8p-152f -0xf.fffffp+124f : -0x3.243f6cp+0f : inexact-ok += atan2 tonearest flt-32 -0x8p-152f -0xf.fffffp+124f : -0x3.243f6cp+0f : inexact-ok += atan2 towardzero flt-32 -0x8p-152f -0xf.fffffp+124f : -0x3.243f68p+0f : inexact-ok += atan2 upward flt-32 -0x8p-152f -0xf.fffffp+124f : -0x3.243f68p+0f : inexact-ok += atan2 downward dbl-64 -0x8p-152 -0xf.fffffp+124 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x8p-152 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x8p-152 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x8p-152 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-152L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x8p-152 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-152L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-152L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1076 -0xf.fffffp+124 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1076 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1076 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-1076 -0xf.fffffp+124 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1076L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a32p+0 : inexact-ok += atan2 tonearest dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 towardzero dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 upward dbl-64 -0x4p-1076 -0xf.ffffffffffff8p+1020 : -0x3.243f6a8885a3p+0 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e04p+0L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-1076L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e03p+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-intel -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x8p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d4p+0L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308dp+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16448L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L -0xf.fffffp+124L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L -0xf.ffffffffffff8p+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L -0xf.fffffffffffffffp+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L -0xf.fffffffffffffffffffffffffff8p+16380L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 downward ldbl-128 -0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e037p+0L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok += atan2 upward ldbl-128 -0x4p-16496L -0xf.ffffffffffffbffffffffffffcp+1020L : -0x3.243f6a8885a308d313198a2e036ep+0L : inexact-ok +atan2 1 max missing-underflow += atan2 downward flt-32 0x1p+0f 0xf.fffffp+124f : 0x1p-128f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest flt-32 0x1p+0f 0xf.fffffp+124f : 0x1p-128f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero flt-32 0x1p+0f 0xf.fffffp+124f : 0x1p-128f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward flt-32 0x1p+0f 0xf.fffffp+124f : 0x1.000008p-128f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward dbl-64 0x1p+0 0xf.fffffp+124 : 0x1.000001000001p-128 : inexact-ok += atan2 tonearest dbl-64 0x1p+0 0xf.fffffp+124 : 0x1.000001000001p-128 : inexact-ok += atan2 towardzero dbl-64 0x1p+0 0xf.fffffp+124 : 0x1.000001000001p-128 : inexact-ok += atan2 upward dbl-64 0x1p+0 0xf.fffffp+124 : 0x1.0000010000011p-128 : inexact-ok += atan2 downward ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001p-128L : inexact-ok += atan2 tonearest ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001p-128L : inexact-ok += atan2 towardzero ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001p-128L : inexact-ok += atan2 upward ldbl-96-intel 0x1p+0L 0xf.fffffp+124L : 0x1.0000010000010002p-128L : inexact-ok += atan2 downward ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001p-128L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001p-128L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001p-128L : inexact-ok += atan2 upward ldbl-96-m68k 0x1p+0L 0xf.fffffp+124L : 0x1.0000010000010002p-128L : inexact-ok += atan2 downward ldbl-128 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001000001000001p-128L : inexact-ok += atan2 tonearest ldbl-128 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001000001000001p-128L : inexact-ok += atan2 towardzero ldbl-128 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001000001000001p-128L : inexact-ok += atan2 upward ldbl-128 0x1p+0L 0xf.fffffp+124L : 0x1.0000010000010000010000010001p-128L : inexact-ok += atan2 downward ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001000001000001p-128L : inexact-ok += atan2 tonearest ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001000001000001p-128L : inexact-ok += atan2 towardzero ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001000001000001p-128L : inexact-ok += atan2 upward ldbl-128ibm 0x1p+0L 0xf.fffffp+124L : 0x1.000001000001000001000001008p-128L : inexact-ok += atan2 downward dbl-64 0x1p+0 0xf.ffffffffffff8p+1020 : 0x1p-1024 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest dbl-64 0x1p+0 0xf.ffffffffffff8p+1020 : 0x1p-1024 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero dbl-64 0x1p+0 0xf.ffffffffffff8p+1020 : 0x1p-1024 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward dbl-64 0x1p+0 0xf.ffffffffffff8p+1020 : 0x1.0000000000004p-1024 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.00000000000008p-1024L : inexact-ok += atan2 tonearest ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.00000000000008p-1024L : inexact-ok += atan2 towardzero ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.00000000000008p-1024L : inexact-ok += atan2 upward ldbl-96-intel 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.0000000000000802p-1024L : inexact-ok += atan2 downward ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.00000000000008p-1024L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.00000000000008p-1024L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.00000000000008p-1024L : inexact-ok += atan2 upward ldbl-96-m68k 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.0000000000000802p-1024L : inexact-ok += atan2 downward ldbl-128 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.000000000000080000000000004p-1024L : inexact-ok += atan2 tonearest ldbl-128 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.000000000000080000000000004p-1024L : inexact-ok += atan2 towardzero ldbl-128 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.000000000000080000000000004p-1024L : inexact-ok += atan2 upward ldbl-128 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.0000000000000800000000000041p-1024L : inexact-ok += atan2 downward ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-128ibm 0x1p+0L 0xf.ffffffffffff8p+1020L : 0x1.0000000000004p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-96-intel 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-96-intel 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1.0000000000000008p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-96-m68k 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1.0000000000000004p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1.0000000000000001p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1.0000000000000001p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-128 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1.0000000000000001p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-128 0x1p+0L 0xf.fffffffffffffffp+16380L : 0x1.0000000000000001000000000004p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-128 0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-128 0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x1.0000000000000000000000000004p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.000000000000040000000000005p-1024L : inexact-ok += atan2 tonearest ldbl-128 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.000000000000040000000000005p-1024L : inexact-ok += atan2 towardzero ldbl-128 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.000000000000040000000000005p-1024L : inexact-ok += atan2 upward ldbl-128 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.0000000000000400000000000051p-1024L : inexact-ok += atan2 downward ldbl-128ibm 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-128ibm 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-128ibm 0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x1.0000000000004p-1024L : inexact-ok underflow underflow-ok errno-erange-ok +atan2 -1 max missing-underflow += atan2 downward flt-32 -0x1p+0f 0xf.fffffp+124f : -0x1.000008p-128f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest flt-32 -0x1p+0f 0xf.fffffp+124f : -0x1p-128f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero flt-32 -0x1p+0f 0xf.fffffp+124f : -0x1p-128f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward flt-32 -0x1p+0f 0xf.fffffp+124f : -0x1p-128f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward dbl-64 -0x1p+0 0xf.fffffp+124 : -0x1.0000010000011p-128 : inexact-ok += atan2 tonearest dbl-64 -0x1p+0 0xf.fffffp+124 : -0x1.000001000001p-128 : inexact-ok += atan2 towardzero dbl-64 -0x1p+0 0xf.fffffp+124 : -0x1.000001000001p-128 : inexact-ok += atan2 upward dbl-64 -0x1p+0 0xf.fffffp+124 : -0x1.000001000001p-128 : inexact-ok += atan2 downward ldbl-96-intel -0x1p+0L 0xf.fffffp+124L : -0x1.0000010000010002p-128L : inexact-ok += atan2 tonearest ldbl-96-intel -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001p-128L : inexact-ok += atan2 towardzero ldbl-96-intel -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001p-128L : inexact-ok += atan2 upward ldbl-96-intel -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001p-128L : inexact-ok += atan2 downward ldbl-96-m68k -0x1p+0L 0xf.fffffp+124L : -0x1.0000010000010002p-128L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001p-128L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001p-128L : inexact-ok += atan2 upward ldbl-96-m68k -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001p-128L : inexact-ok += atan2 downward ldbl-128 -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001000001000001p-128L : inexact-ok += atan2 tonearest ldbl-128 -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001000001000001p-128L : inexact-ok += atan2 towardzero ldbl-128 -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001000001000000ffffp-128L : inexact-ok += atan2 upward ldbl-128 -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001000001000000ffffp-128L : inexact-ok += atan2 downward ldbl-128ibm -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001000001000001p-128L : inexact-ok += atan2 tonearest ldbl-128ibm -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001000001000001p-128L : inexact-ok += atan2 towardzero ldbl-128ibm -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001000001000000ff8p-128L : inexact-ok += atan2 upward ldbl-128ibm -0x1p+0L 0xf.fffffp+124L : -0x1.000001000001000001000000ff8p-128L : inexact-ok += atan2 downward dbl-64 -0x1p+0 0xf.ffffffffffff8p+1020 : -0x1.0000000000004p-1024 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest dbl-64 -0x1p+0 0xf.ffffffffffff8p+1020 : -0x1p-1024 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero dbl-64 -0x1p+0 0xf.ffffffffffff8p+1020 : -0x1p-1024 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward dbl-64 -0x1p+0 0xf.ffffffffffff8p+1020 : -0x1p-1024 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.0000000000000802p-1024L : inexact-ok += atan2 tonearest ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.00000000000008p-1024L : inexact-ok += atan2 towardzero ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.00000000000008p-1024L : inexact-ok += atan2 upward ldbl-96-intel -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.00000000000008p-1024L : inexact-ok += atan2 downward ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.0000000000000802p-1024L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.00000000000008p-1024L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.00000000000008p-1024L : inexact-ok += atan2 upward ldbl-96-m68k -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.00000000000008p-1024L : inexact-ok += atan2 downward ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.000000000000080000000000004p-1024L : inexact-ok += atan2 tonearest ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.000000000000080000000000004p-1024L : inexact-ok += atan2 towardzero ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.000000000000080000000000003fp-1024L : inexact-ok += atan2 upward ldbl-128 -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.000000000000080000000000003fp-1024L : inexact-ok += atan2 downward ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1.0000000000004p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-128ibm -0x1p+0L 0xf.ffffffffffff8p+1020L : -0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1.0000000000000008p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-96-intel -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1.0000000000000004p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-96-m68k -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1.0000000000000001p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1.0000000000000001p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1.0000000000000000fffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-128 -0x1p+0L 0xf.fffffffffffffffp+16380L : -0x1.0000000000000000fffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 -0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x1.0000000000000000000000000004p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-128 -0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-128 -0x1p+0L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x1p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.000000000000040000000000005p-1024L : inexact-ok += atan2 tonearest ldbl-128 -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.000000000000040000000000005p-1024L : inexact-ok += atan2 towardzero ldbl-128 -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.000000000000040000000000004fp-1024L : inexact-ok += atan2 upward ldbl-128 -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.000000000000040000000000004fp-1024L : inexact-ok += atan2 downward ldbl-128ibm -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1.0000000000004p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 towardzero ldbl-128ibm -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 upward ldbl-128ibm -0x1p+0L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x1p-1024L : inexact-ok underflow underflow-ok errno-erange-ok +atan2 min max missing-underflow missing-errno += atan2 downward flt-32 0x4p-128f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest flt-32 0x4p-128f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero flt-32 0x4p-128f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward flt-32 0x4p-128f 0xf.fffffp+124f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward dbl-64 0x4p-128 0xf.fffffp+124 : 0x4.000004000004p-256 : inexact-ok += atan2 tonearest dbl-64 0x4p-128 0xf.fffffp+124 : 0x4.000004000004p-256 : inexact-ok += atan2 towardzero dbl-64 0x4p-128 0xf.fffffp+124 : 0x4.000004000004p-256 : inexact-ok += atan2 upward dbl-64 0x4p-128 0xf.fffffp+124 : 0x4.0000040000044p-256 : inexact-ok += atan2 downward ldbl-96-intel 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004p-256L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004p-256L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004p-256L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L 0xf.fffffp+124L : 0x4.0000040000040008p-256L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004p-256L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004p-256L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004p-256L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L 0xf.fffffp+124L : 0x4.0000040000040008p-256L : inexact-ok += atan2 downward ldbl-128 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004000004000004p-256L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004000004000004p-256L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004000004000004p-256L : inexact-ok += atan2 upward ldbl-128 0x4p-128L 0xf.fffffp+124L : 0x4.0000040000040000040000040004p-256L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004000004000004p-256L : inexact-ok += atan2 tonearest ldbl-128ibm 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004000004000004p-256L : inexact-ok += atan2 towardzero ldbl-128ibm 0x4p-128L 0xf.fffffp+124L : 0x4.000004000004000004000004p-256L : inexact-ok += atan2 upward ldbl-128ibm 0x4p-128L 0xf.fffffp+124L : 0x4.00000400000400000400000402p-256L : inexact-ok += atan2 downward dbl-64 0x4p-128 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest dbl-64 0x4p-128 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 0x4p-128 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 0x4p-128 0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-1152L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-1152L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-1152L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002008p-1152L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-1152L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-1152L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-1152L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002008p-1152L : inexact-ok += atan2 downward ldbl-128 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.00000000000020000000000001p-1152L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.00000000000020000000000001p-1152L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.00000000000020000000000001p-1152L : inexact-ok += atan2 upward ldbl-128 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002000000000000104p-1152L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x4p-128L 0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-128L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.000000000000100000000000014p-1152L : inexact-ok += atan2 tonearest ldbl-128 0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.000000000000100000000000014p-1152L : inexact-ok += atan2 towardzero ldbl-128 0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.000000000000100000000000014p-1152L : inexact-ok += atan2 upward ldbl-128 0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.0000000000001000000000000144p-1152L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward dbl-64 0x4p-1024 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest dbl-64 0x4p-1024 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 0x4p-1024 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 0x4p-1024 0xf.fffffp+124 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x4p-1024L 0xf.fffffp+124L : 0x4.000004000004p-1152L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L 0xf.fffffp+124L : 0x4.000004000004p-1152L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L 0xf.fffffp+124L : 0x4.000004000004p-1152L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L 0xf.fffffp+124L : 0x4.0000040000040008p-1152L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L 0xf.fffffp+124L : 0x4.000004000004p-1152L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L 0xf.fffffp+124L : 0x4.000004000004p-1152L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L 0xf.fffffp+124L : 0x4.000004000004p-1152L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L 0xf.fffffp+124L : 0x4.0000040000040008p-1152L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L 0xf.fffffp+124L : 0x4.000004000004000004000004p-1152L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L 0xf.fffffp+124L : 0x4.000004000004000004000004p-1152L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L 0xf.fffffp+124L : 0x4.000004000004000004000004p-1152L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L 0xf.fffffp+124L : 0x4.0000040000040000040000040004p-1152L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x4p-1024L 0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward dbl-64 0x4p-1024 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest dbl-64 0x4p-1024 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 0x4p-1024 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 0x4p-1024 0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2048L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2048L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2048L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002008p-2048L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2048L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2048L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2048L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002008p-2048L : inexact-ok += atan2 downward ldbl-128 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.00000000000020000000000001p-2048L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.00000000000020000000000001p-2048L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.00000000000020000000000001p-2048L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002000000000000104p-2048L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x4p-1024L 0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-1024L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.000000000000100000000000014p-2048L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.000000000000100000000000014p-2048L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.000000000000100000000000014p-2048L : inexact-ok += atan2 upward ldbl-128 0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.0000000000001000000000000144p-2048L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x4p-16384L 0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x4p-16384L 0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16384L 0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16384L 0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16384L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x2p-16384L 0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x2p-16384L 0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x2p-16384L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x2p-16384L 0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x2p-16384L 0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x2p-16384L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward dbl-64 0x8p-972 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest dbl-64 0x8p-972 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 0x8p-972 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 0x8p-972 0xf.fffffp+124 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x8p-972L 0xf.fffffp+124L : 0x8.000008000008p-1100L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L 0xf.fffffp+124L : 0x8.000008000008p-1100L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L 0xf.fffffp+124L : 0x8.000008000008p-1100L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L 0xf.fffffp+124L : 0x8.000008000008001p-1100L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L 0xf.fffffp+124L : 0x8.000008000008p-1100L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L 0xf.fffffp+124L : 0x8.000008000008p-1100L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L 0xf.fffffp+124L : 0x8.000008000008p-1100L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L 0xf.fffffp+124L : 0x8.000008000008001p-1100L : inexact-ok += atan2 downward ldbl-128 0x8p-972L 0xf.fffffp+124L : 0x8.000008000008000008000008p-1100L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L 0xf.fffffp+124L : 0x8.000008000008000008000008p-1100L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L 0xf.fffffp+124L : 0x8.000008000008000008000008p-1100L : inexact-ok += atan2 upward ldbl-128 0x8p-972L 0xf.fffffp+124L : 0x8.0000080000080000080000080008p-1100L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x8p-972L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x8p-972L 0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward dbl-64 0x8p-972 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest dbl-64 0x8p-972 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 0x8p-972 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 0x8p-972 0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1996L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1996L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1996L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.000000000000401p-1996L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1996L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1996L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1996L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.000000000000401p-1996L : inexact-ok += atan2 downward ldbl-128 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.00000000000040000000000002p-1996L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.00000000000040000000000002p-1996L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.00000000000040000000000002p-1996L : inexact-ok += atan2 upward ldbl-128 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004000000000000208p-1996L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x8p-972L 0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x8p-972L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x8.000000000000200000000000028p-1996L : inexact-ok += atan2 tonearest ldbl-128 0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x8.000000000000200000000000028p-1996L : inexact-ok += atan2 towardzero ldbl-128 0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x8.000000000000200000000000028p-1996L : inexact-ok += atan2 upward ldbl-128 0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x8.0000000000002000000000000288p-1996L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok +atan2 -min max missing-underflow missing-errno += atan2 downward flt-32 -0x4p-128f 0xf.fffffp+124f : -0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest flt-32 -0x4p-128f 0xf.fffffp+124f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero flt-32 -0x4p-128f 0xf.fffffp+124f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward flt-32 -0x4p-128f 0xf.fffffp+124f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward dbl-64 -0x4p-128 0xf.fffffp+124 : -0x4.0000040000044p-256 : inexact-ok += atan2 tonearest dbl-64 -0x4p-128 0xf.fffffp+124 : -0x4.000004000004p-256 : inexact-ok += atan2 towardzero dbl-64 -0x4p-128 0xf.fffffp+124 : -0x4.000004000004p-256 : inexact-ok += atan2 upward dbl-64 -0x4p-128 0xf.fffffp+124 : -0x4.000004000004p-256 : inexact-ok += atan2 downward ldbl-96-intel -0x4p-128L 0xf.fffffp+124L : -0x4.0000040000040008p-256L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004p-256L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004p-256L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004p-256L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L 0xf.fffffp+124L : -0x4.0000040000040008p-256L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004p-256L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004p-256L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004p-256L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004000004000004p-256L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004000004000004p-256L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004000004000003fffcp-256L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004000004000003fffcp-256L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004000004000004p-256L : inexact-ok += atan2 tonearest ldbl-128ibm -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004000004000004p-256L : inexact-ok += atan2 towardzero ldbl-128ibm -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004000004000003fep-256L : inexact-ok += atan2 upward ldbl-128ibm -0x4p-128L 0xf.fffffp+124L : -0x4.000004000004000004000003fep-256L : inexact-ok += atan2 downward dbl-64 -0x4p-128 0xf.ffffffffffff8p+1020 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest dbl-64 -0x4p-128 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 -0x4p-128 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 -0x4p-128 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002008p-1152L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-1152L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-1152L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-1152L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002008p-1152L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-1152L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-1152L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-1152L : inexact-ok += atan2 downward ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000001p-1152L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000001p-1152L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000000fcp-1152L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000000fcp-1152L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x4p-128L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-128L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-128L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000014p-1152L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000014p-1152L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000013cp-1152L : inexact-ok += atan2 upward ldbl-128 -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000013cp-1152L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x4p-128L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward dbl-64 -0x4p-1024 0xf.fffffp+124 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest dbl-64 -0x4p-1024 0xf.fffffp+124 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 -0x4p-1024 0xf.fffffp+124 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 -0x4p-1024 0xf.fffffp+124 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x4p-1024L 0xf.fffffp+124L : -0x4.0000040000040008p-1152L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L 0xf.fffffp+124L : -0x4.000004000004p-1152L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L 0xf.fffffp+124L : -0x4.000004000004p-1152L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L 0xf.fffffp+124L : -0x4.000004000004p-1152L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L 0xf.fffffp+124L : -0x4.0000040000040008p-1152L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L 0xf.fffffp+124L : -0x4.000004000004p-1152L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L 0xf.fffffp+124L : -0x4.000004000004p-1152L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L 0xf.fffffp+124L : -0x4.000004000004p-1152L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L 0xf.fffffp+124L : -0x4.000004000004000004000004p-1152L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L 0xf.fffffp+124L : -0x4.000004000004000004000004p-1152L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L 0xf.fffffp+124L : -0x4.000004000004000004000003fffcp-1152L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L 0xf.fffffp+124L : -0x4.000004000004000004000003fffcp-1152L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L 0xf.fffffp+124L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x4p-1024L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward dbl-64 -0x4p-1024 0xf.ffffffffffff8p+1020 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest dbl-64 -0x4p-1024 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 -0x4p-1024 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 -0x4p-1024 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002008p-2048L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2048L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2048L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2048L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002008p-2048L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2048L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2048L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2048L : inexact-ok += atan2 downward ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000001p-2048L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000001p-2048L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000000fcp-2048L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000000fcp-2048L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x4p-1024L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-1024L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-1024L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000014p-2048L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000014p-2048L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000013cp-2048L : inexact-ok += atan2 upward ldbl-128 -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000013cp-2048L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x4p-1024L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x4p-16384L 0xf.fffffp+124L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x4p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x4p-16384L 0xf.fffffp+124L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x4p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16384L 0xf.fffffp+124L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x2p-16384L 0xf.fffffp+124L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x2p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x2p-16384L 0xf.fffffp+124L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x2p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x2p-16384L 0xf.fffffp+124L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x2p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x2p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x2p-16384L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x2p-16384L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x2p-16384L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x2p-16384L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x2p-16384L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward dbl-64 -0x8p-972 0xf.fffffp+124 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest dbl-64 -0x8p-972 0xf.fffffp+124 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 -0x8p-972 0xf.fffffp+124 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 -0x8p-972 0xf.fffffp+124 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008001p-1100L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008p-1100L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008p-1100L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008p-1100L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008001p-1100L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008p-1100L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008p-1100L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008p-1100L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008000008000008p-1100L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008000008000008p-1100L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008000008000007fff8p-1100L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L 0xf.fffffp+124L : -0x8.000008000008000008000007fff8p-1100L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L 0xf.fffffp+124L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x8p-972L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x8p-972L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x8p-972L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward dbl-64 -0x8p-972 0xf.ffffffffffff8p+1020 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest dbl-64 -0x8p-972 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 -0x8p-972 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 -0x8p-972 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.000000000000401p-1996L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1996L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1996L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1996L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.000000000000401p-1996L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1996L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1996L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1996L : inexact-ok += atan2 downward ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.00000000000040000000000002p-1996L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.00000000000040000000000002p-1996L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.00000000000040000000000001f8p-1996L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x8.00000000000040000000000001f8p-1996L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x8p-972L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x8p-972L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x8p-972L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x8.000000000000200000000000028p-1996L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x8.000000000000200000000000028p-1996L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x8.0000000000002000000000000278p-1996L : inexact-ok += atan2 upward ldbl-128 -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x8.0000000000002000000000000278p-1996L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x8p-972L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok +atan2 min_subnorm max missing-underflow missing-errno += atan2 downward flt-32 0x8p-152f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest flt-32 0x8p-152f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero flt-32 0x8p-152f 0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward flt-32 0x8p-152f 0xf.fffffp+124f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward dbl-64 0x8p-152 0xf.fffffp+124 : 0x8.000008000008p-280 : inexact-ok += atan2 tonearest dbl-64 0x8p-152 0xf.fffffp+124 : 0x8.000008000008p-280 : inexact-ok += atan2 towardzero dbl-64 0x8p-152 0xf.fffffp+124 : 0x8.000008000008p-280 : inexact-ok += atan2 upward dbl-64 0x8p-152 0xf.fffffp+124 : 0x8.0000080000088p-280 : inexact-ok += atan2 downward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008p-280L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008p-280L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008p-280L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008001p-280L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008p-280L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008p-280L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008p-280L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008001p-280L : inexact-ok += atan2 downward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008000008000008p-280L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008000008000008p-280L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008000008000008p-280L : inexact-ok += atan2 upward ldbl-128 0x8p-152L 0xf.fffffp+124L : 0x8.0000080000080000080000080008p-280L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008000008000008p-280L : inexact-ok += atan2 tonearest ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008000008000008p-280L : inexact-ok += atan2 towardzero ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x8.000008000008000008000008p-280L : inexact-ok += atan2 upward ldbl-128ibm 0x8p-152L 0xf.fffffp+124L : 0x8.00000800000800000800000804p-280L : inexact-ok += atan2 downward dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 0x8p-152 0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1176L : inexact-ok += atan2 tonearest ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1176L : inexact-ok += atan2 towardzero ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1176L : inexact-ok += atan2 upward ldbl-96-intel 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.000000000000401p-1176L : inexact-ok += atan2 downward ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1176L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1176L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004p-1176L : inexact-ok += atan2 upward ldbl-96-m68k 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.000000000000401p-1176L : inexact-ok += atan2 downward ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.00000000000040000000000002p-1176L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.00000000000040000000000002p-1176L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.00000000000040000000000002p-1176L : inexact-ok += atan2 upward ldbl-128 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x8.0000000000004000000000000208p-1176L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x8p-152L 0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x8p-152L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x8p-152L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x8p-152L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x8p-152L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x8p-152L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x8.000000000000200000000000028p-1176L : inexact-ok += atan2 tonearest ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x8.000000000000200000000000028p-1176L : inexact-ok += atan2 towardzero ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x8.000000000000200000000000028p-1176L : inexact-ok += atan2 upward ldbl-128 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x8.0000000000002000000000000288p-1176L : inexact-ok += atan2 downward ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward dbl-64 0x4p-1076 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest dbl-64 0x4p-1076 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 0x4p-1076 0xf.fffffp+124 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 0x4p-1076 0xf.fffffp+124 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x4.000004000004p-1204L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x4.000004000004p-1204L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x4.000004000004p-1204L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1076L 0xf.fffffp+124L : 0x4.0000040000040008p-1204L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x4.000004000004p-1204L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x4.000004000004p-1204L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x4.000004000004p-1204L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L 0xf.fffffp+124L : 0x4.0000040000040008p-1204L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x4.000004000004000004000004p-1204L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x4.000004000004000004000004p-1204L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x4.000004000004000004000004p-1204L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L 0xf.fffffp+124L : 0x4.0000040000040000040000040004p-1204L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x4p-1076L 0xf.fffffp+124L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 0x4p-1076 0xf.ffffffffffff8p+1020 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2100L : inexact-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2100L : inexact-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2100L : inexact-ok += atan2 upward ldbl-96-intel 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002008p-2100L : inexact-ok += atan2 downward ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2100L : inexact-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2100L : inexact-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002p-2100L : inexact-ok += atan2 upward ldbl-96-m68k 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002008p-2100L : inexact-ok += atan2 downward ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.00000000000020000000000001p-2100L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.00000000000020000000000001p-2100L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.00000000000020000000000001p-2100L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4.0000000000002000000000000104p-2100L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffff8p+1020L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-1076L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-1076L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-1076L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-1076L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-1076L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.000000000000100000000000014p-2100L : inexact-ok += atan2 tonearest ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.000000000000100000000000014p-2100L : inexact-ok += atan2 towardzero ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.000000000000100000000000014p-2100L : inexact-ok += atan2 upward ldbl-128 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4.0000000000001000000000000144p-2100L : inexact-ok += atan2 downward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm 0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x8p-16448L 0xf.fffffp+124L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x8p-16448L 0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x8p-16448L 0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x8p-16448L 0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-intel 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-intel 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x8p-16448L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x8p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x8p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x8p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x8p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x4p-16448L 0xf.fffffp+124L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16448L 0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16448L 0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-96-m68k 0x4p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-96-m68k 0x4p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k 0x4p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k 0x4p-16448L 0xf.fffffffffffffffp+16380L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16448L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16448L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16496L 0xf.fffffp+124L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16496L 0xf.ffffffffffff8p+1020L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16496L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16496L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16496L 0xf.fffffffffffffffp+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16496L 0xf.fffffffffffffffp+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16496L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16496L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16496L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16496L 0xf.fffffffffffffffffffffffffff8p+16380L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 downward ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 tonearest ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok +atan2 -min_subnorm max missing-underflow missing-errno += atan2 downward flt-32 -0x8p-152f 0xf.fffffp+124f : -0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest flt-32 -0x8p-152f 0xf.fffffp+124f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero flt-32 -0x8p-152f 0xf.fffffp+124f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward flt-32 -0x8p-152f 0xf.fffffp+124f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward dbl-64 -0x8p-152 0xf.fffffp+124 : -0x8.0000080000088p-280 : inexact-ok += atan2 tonearest dbl-64 -0x8p-152 0xf.fffffp+124 : -0x8.000008000008p-280 : inexact-ok += atan2 towardzero dbl-64 -0x8p-152 0xf.fffffp+124 : -0x8.000008000008p-280 : inexact-ok += atan2 upward dbl-64 -0x8p-152 0xf.fffffp+124 : -0x8.000008000008p-280 : inexact-ok += atan2 downward ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008001p-280L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008p-280L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008p-280L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008p-280L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008001p-280L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008p-280L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008p-280L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008p-280L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008000008000008p-280L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008000008000008p-280L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008000008000007fff8p-280L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008000008000007fff8p-280L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008000008000008p-280L : inexact-ok += atan2 tonearest ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008000008000008p-280L : inexact-ok += atan2 towardzero ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008000008000007fcp-280L : inexact-ok += atan2 upward ldbl-128ibm -0x8p-152L 0xf.fffffp+124L : -0x8.000008000008000008000007fcp-280L : inexact-ok += atan2 downward dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 -0x8p-152 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.000000000000401p-1176L : inexact-ok += atan2 tonearest ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1176L : inexact-ok += atan2 towardzero ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1176L : inexact-ok += atan2 upward ldbl-96-intel -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1176L : inexact-ok += atan2 downward ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.000000000000401p-1176L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1176L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1176L : inexact-ok += atan2 upward ldbl-96-m68k -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.0000000000004p-1176L : inexact-ok += atan2 downward ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.00000000000040000000000002p-1176L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.00000000000040000000000002p-1176L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.00000000000040000000000001f8p-1176L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x8.00000000000040000000000001f8p-1176L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x8p-152L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x8p-152L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x8p-152L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x8p-152L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x8p-152L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x8p-152L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x8.000000000000200000000000028p-1176L : inexact-ok += atan2 tonearest ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x8.000000000000200000000000028p-1176L : inexact-ok += atan2 towardzero ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x8.0000000000002000000000000278p-1176L : inexact-ok += atan2 upward ldbl-128 -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x8.0000000000002000000000000278p-1176L : inexact-ok += atan2 downward ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x8p-152L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward dbl-64 -0x4p-1076 0xf.fffffp+124 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest dbl-64 -0x4p-1076 0xf.fffffp+124 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 -0x4p-1076 0xf.fffffp+124 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 -0x4p-1076 0xf.fffffp+124 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : -0x4.0000040000040008p-1204L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : -0x4.000004000004p-1204L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : -0x4.000004000004p-1204L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1076L 0xf.fffffp+124L : -0x4.000004000004p-1204L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : -0x4.0000040000040008p-1204L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : -0x4.000004000004p-1204L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : -0x4.000004000004p-1204L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L 0xf.fffffp+124L : -0x4.000004000004p-1204L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L 0xf.fffffp+124L : -0x4.000004000004000004000004p-1204L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L 0xf.fffffp+124L : -0x4.000004000004000004000004p-1204L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L 0xf.fffffp+124L : -0x4.000004000004000004000003fffcp-1204L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L 0xf.fffffp+124L : -0x4.000004000004000004000003fffcp-1204L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x4p-1076L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward dbl-64 -0x4p-1076 0xf.ffffffffffff8p+1020 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002008p-2100L : inexact-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2100L : inexact-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2100L : inexact-ok += atan2 upward ldbl-96-intel -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2100L : inexact-ok += atan2 downward ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002008p-2100L : inexact-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2100L : inexact-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2100L : inexact-ok += atan2 upward ldbl-96-m68k -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.0000000000002p-2100L : inexact-ok += atan2 downward ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000001p-2100L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000001p-2100L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000000fcp-2100L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4.00000000000020000000000000fcp-2100L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-1076L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-1076L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-1076L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-1076L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-1076L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000014p-2100L : inexact-ok += atan2 tonearest ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000014p-2100L : inexact-ok += atan2 towardzero ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000013cp-2100L : inexact-ok += atan2 upward ldbl-128 -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4.000000000000100000000000013cp-2100L : inexact-ok += atan2 downward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128ibm -0x4p-1076L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x8p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x8p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x8p-16448L 0xf.fffffp+124L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x8p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x8p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x8p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x8p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-intel -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-intel -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-intel -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-intel -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x8p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x8p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x8p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x8p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x8p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x8p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x4p-16448L 0xf.fffffp+124L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x4p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16448L 0xf.fffffp+124L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16448L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x4p-16448L 0xf.ffffffffffff8p+1020L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x4p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16448L 0xf.ffffffffffff8p+1020L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16448L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-96-m68k -0x4p-16448L 0xf.fffffffffffffffp+16380L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-96-m68k -0x4p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-96-m68k -0x4p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-96-m68k -0x4p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16448L 0xf.fffffffffffffffp+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16448L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16448L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16448L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16496L 0xf.fffffp+124L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16496L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16496L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16496L 0xf.fffffp+124L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16496L 0xf.ffffffffffff8p+1020L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16496L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16496L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16496L 0xf.ffffffffffff8p+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16496L 0xf.fffffffffffffffp+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16496L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16496L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16496L 0xf.fffffffffffffffp+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16496L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16496L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16496L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16496L 0xf.fffffffffffffffffffffffffff8p+16380L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 downward ldbl-128 -0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atan2 tonearest ldbl-128 -0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 towardzero ldbl-128 -0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok += atan2 upward ldbl-128 -0x4p-16496L 0xf.ffffffffffffbffffffffffffcp+1020L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange errno-erange-ok atanh 0 = atanh downward flt-32 0x0p+0f : 0x0p+0f : inexact-ok = atanh tonearest flt-32 0x0p+0f : 0x0p+0f : inexact-ok @@ -4851,6 +13583,447 @@ atanh 0.75 = atanh tonearest ldbl-128ibm 0xcp-4L : 0xf.913957192d2baa37b4a4b6793p-4L : inexact-ok = atanh towardzero ldbl-128ibm 0xcp-4L : 0xf.913957192d2baa37b4a4b6793p-4L : inexact-ok = atanh upward ldbl-128ibm 0xcp-4L : 0xf.913957192d2baa37b4a4b67934p-4L : inexact-ok +atanh -0.75 += atanh downward flt-32 -0xcp-4f : -0xf.91396p-4f : inexact-ok += atanh tonearest flt-32 -0xcp-4f : -0xf.91395p-4f : inexact-ok += atanh towardzero flt-32 -0xcp-4f : -0xf.91395p-4f : inexact-ok += atanh upward flt-32 -0xcp-4f : -0xf.91395p-4f : inexact-ok += atanh downward dbl-64 -0xcp-4 : -0xf.913957192d2cp-4 : inexact-ok += atanh tonearest dbl-64 -0xcp-4 : -0xf.913957192d2b8p-4 : inexact-ok += atanh towardzero dbl-64 -0xcp-4 : -0xf.913957192d2b8p-4 : inexact-ok += atanh upward dbl-64 -0xcp-4 : -0xf.913957192d2b8p-4 : inexact-ok += atanh downward ldbl-96-intel -0xcp-4L : -0xf.913957192d2baa4p-4L : inexact-ok += atanh tonearest ldbl-96-intel -0xcp-4L : -0xf.913957192d2baa3p-4L : inexact-ok += atanh towardzero ldbl-96-intel -0xcp-4L : -0xf.913957192d2baa3p-4L : inexact-ok += atanh upward ldbl-96-intel -0xcp-4L : -0xf.913957192d2baa3p-4L : inexact-ok += atanh downward ldbl-96-m68k -0xcp-4L : -0xf.913957192d2baa4p-4L : inexact-ok += atanh tonearest ldbl-96-m68k -0xcp-4L : -0xf.913957192d2baa3p-4L : inexact-ok += atanh towardzero ldbl-96-m68k -0xcp-4L : -0xf.913957192d2baa3p-4L : inexact-ok += atanh upward ldbl-96-m68k -0xcp-4L : -0xf.913957192d2baa3p-4L : inexact-ok += atanh downward ldbl-128 -0xcp-4L : -0xf.913957192d2baa37b4a4b67930ep-4L : inexact-ok += atanh tonearest ldbl-128 -0xcp-4L : -0xf.913957192d2baa37b4a4b67930ep-4L : inexact-ok += atanh towardzero ldbl-128 -0xcp-4L : -0xf.913957192d2baa37b4a4b67930d8p-4L : inexact-ok += atanh upward ldbl-128 -0xcp-4L : -0xf.913957192d2baa37b4a4b67930d8p-4L : inexact-ok += atanh downward ldbl-128ibm -0xcp-4L : -0xf.913957192d2baa37b4a4b67934p-4L : inexact-ok += atanh tonearest ldbl-128ibm -0xcp-4L : -0xf.913957192d2baa37b4a4b6793p-4L : inexact-ok += atanh towardzero ldbl-128ibm -0xcp-4L : -0xf.913957192d2baa37b4a4b6793p-4L : inexact-ok += atanh upward ldbl-128ibm -0xcp-4L : -0xf.913957192d2baa37b4a4b6793p-4L : inexact-ok +atanh 0.25 += atanh downward flt-32 0x4p-4f : 0x4.162bb8p-4f : inexact-ok += atanh tonearest flt-32 0x4p-4f : 0x4.162bcp-4f : inexact-ok += atanh towardzero flt-32 0x4p-4f : 0x4.162bb8p-4f : inexact-ok += atanh upward flt-32 0x4p-4f : 0x4.162bcp-4f : inexact-ok += atanh downward dbl-64 0x4p-4 : 0x4.162bbea045144p-4 : inexact-ok += atanh tonearest dbl-64 0x4p-4 : 0x4.162bbea045148p-4 : inexact-ok += atanh towardzero dbl-64 0x4p-4 : 0x4.162bbea045144p-4 : inexact-ok += atanh upward dbl-64 0x4p-4 : 0x4.162bbea045148p-4 : inexact-ok += atanh downward ldbl-96-intel 0x4p-4L : 0x4.162bbea0451469c8p-4L : inexact-ok += atanh tonearest ldbl-96-intel 0x4p-4L : 0x4.162bbea0451469c8p-4L : inexact-ok += atanh towardzero ldbl-96-intel 0x4p-4L : 0x4.162bbea0451469c8p-4L : inexact-ok += atanh upward ldbl-96-intel 0x4p-4L : 0x4.162bbea0451469dp-4L : inexact-ok += atanh downward ldbl-96-m68k 0x4p-4L : 0x4.162bbea0451469c8p-4L : inexact-ok += atanh tonearest ldbl-96-m68k 0x4p-4L : 0x4.162bbea0451469c8p-4L : inexact-ok += atanh towardzero ldbl-96-m68k 0x4p-4L : 0x4.162bbea0451469c8p-4L : inexact-ok += atanh upward ldbl-96-m68k 0x4p-4L : 0x4.162bbea0451469dp-4L : inexact-ok += atanh downward ldbl-128 0x4p-4L : 0x4.162bbea0451469c9daf0be0810ecp-4L : inexact-ok += atanh tonearest ldbl-128 0x4p-4L : 0x4.162bbea0451469c9daf0be0810ecp-4L : inexact-ok += atanh towardzero ldbl-128 0x4p-4L : 0x4.162bbea0451469c9daf0be0810ecp-4L : inexact-ok += atanh upward ldbl-128 0x4p-4L : 0x4.162bbea0451469c9daf0be0810fp-4L : inexact-ok += atanh downward ldbl-128ibm 0x4p-4L : 0x4.162bbea0451469c9daf0be081p-4L : inexact-ok += atanh tonearest ldbl-128ibm 0x4p-4L : 0x4.162bbea0451469c9daf0be081p-4L : inexact-ok += atanh towardzero ldbl-128ibm 0x4p-4L : 0x4.162bbea0451469c9daf0be081p-4L : inexact-ok += atanh upward ldbl-128ibm 0x4p-4L : 0x4.162bbea0451469c9daf0be0812p-4L : inexact-ok +atanh 0x1p-5 += atanh downward flt-32 0x8p-8f : 0x8.00aacp-8f : inexact-ok += atanh tonearest flt-32 0x8p-8f : 0x8.00aacp-8f : inexact-ok += atanh towardzero flt-32 0x8p-8f : 0x8.00aacp-8f : inexact-ok += atanh upward flt-32 0x8p-8f : 0x8.00aadp-8f : inexact-ok += atanh downward dbl-64 0x8p-8 : 0x8.00aac448d771p-8 : inexact-ok += atanh tonearest dbl-64 0x8p-8 : 0x8.00aac448d771p-8 : inexact-ok += atanh towardzero dbl-64 0x8p-8 : 0x8.00aac448d771p-8 : inexact-ok += atanh upward dbl-64 0x8p-8 : 0x8.00aac448d7718p-8 : inexact-ok += atanh downward ldbl-96-intel 0x8p-8L : 0x8.00aac448d77125ap-8L : inexact-ok += atanh tonearest ldbl-96-intel 0x8p-8L : 0x8.00aac448d77125ap-8L : inexact-ok += atanh towardzero ldbl-96-intel 0x8p-8L : 0x8.00aac448d77125ap-8L : inexact-ok += atanh upward ldbl-96-intel 0x8p-8L : 0x8.00aac448d77125bp-8L : inexact-ok += atanh downward ldbl-96-m68k 0x8p-8L : 0x8.00aac448d77125ap-8L : inexact-ok += atanh tonearest ldbl-96-m68k 0x8p-8L : 0x8.00aac448d77125ap-8L : inexact-ok += atanh towardzero ldbl-96-m68k 0x8p-8L : 0x8.00aac448d77125ap-8L : inexact-ok += atanh upward ldbl-96-m68k 0x8p-8L : 0x8.00aac448d77125bp-8L : inexact-ok += atanh downward ldbl-128 0x8p-8L : 0x8.00aac448d77125a4ee9fee2db37p-8L : inexact-ok += atanh tonearest ldbl-128 0x8p-8L : 0x8.00aac448d77125a4ee9fee2db378p-8L : inexact-ok += atanh towardzero ldbl-128 0x8p-8L : 0x8.00aac448d77125a4ee9fee2db37p-8L : inexact-ok += atanh upward ldbl-128 0x8p-8L : 0x8.00aac448d77125a4ee9fee2db378p-8L : inexact-ok += atanh downward ldbl-128ibm 0x8p-8L : 0x8.00aac448d77125a4ee9fee2dbp-8L : inexact-ok += atanh tonearest ldbl-128ibm 0x8p-8L : 0x8.00aac448d77125a4ee9fee2db4p-8L : inexact-ok += atanh towardzero ldbl-128ibm 0x8p-8L : 0x8.00aac448d77125a4ee9fee2dbp-8L : inexact-ok += atanh upward ldbl-128ibm 0x8p-8L : 0x8.00aac448d77125a4ee9fee2db4p-8L : inexact-ok +atanh 0x1p-10 += atanh downward flt-32 0x4p-12f : 0x4.00001p-12f : inexact-ok += atanh tonearest flt-32 0x4p-12f : 0x4.000018p-12f : inexact-ok += atanh towardzero flt-32 0x4p-12f : 0x4.00001p-12f : inexact-ok += atanh upward flt-32 0x4p-12f : 0x4.000018p-12f : inexact-ok += atanh downward dbl-64 0x4p-12 : 0x4.000015555622p-12 : inexact-ok += atanh tonearest dbl-64 0x4p-12 : 0x4.0000155556224p-12 : inexact-ok += atanh towardzero dbl-64 0x4p-12 : 0x4.000015555622p-12 : inexact-ok += atanh upward dbl-64 0x4p-12 : 0x4.0000155556224p-12 : inexact-ok += atanh downward ldbl-96-intel 0x4p-12L : 0x4.0000155556222228p-12L : inexact-ok += atanh tonearest ldbl-96-intel 0x4p-12L : 0x4.0000155556222228p-12L : inexact-ok += atanh towardzero ldbl-96-intel 0x4p-12L : 0x4.0000155556222228p-12L : inexact-ok += atanh upward ldbl-96-intel 0x4p-12L : 0x4.000015555622223p-12L : inexact-ok += atanh downward ldbl-96-m68k 0x4p-12L : 0x4.0000155556222228p-12L : inexact-ok += atanh tonearest ldbl-96-m68k 0x4p-12L : 0x4.0000155556222228p-12L : inexact-ok += atanh towardzero ldbl-96-m68k 0x4p-12L : 0x4.0000155556222228p-12L : inexact-ok += atanh upward ldbl-96-m68k 0x4p-12L : 0x4.000015555622223p-12L : inexact-ok += atanh downward ldbl-128 0x4p-12L : 0x4.000015555622222b46b4dd0dd6acp-12L : inexact-ok += atanh tonearest ldbl-128 0x4p-12L : 0x4.000015555622222b46b4dd0dd6bp-12L : inexact-ok += atanh towardzero ldbl-128 0x4p-12L : 0x4.000015555622222b46b4dd0dd6acp-12L : inexact-ok += atanh upward ldbl-128 0x4p-12L : 0x4.000015555622222b46b4dd0dd6bp-12L : inexact-ok += atanh downward ldbl-128ibm 0x4p-12L : 0x4.000015555622222b46b4dd0dd6p-12L : inexact-ok += atanh tonearest ldbl-128ibm 0x4p-12L : 0x4.000015555622222b46b4dd0dd6p-12L : inexact-ok += atanh towardzero ldbl-128ibm 0x4p-12L : 0x4.000015555622222b46b4dd0dd6p-12L : inexact-ok += atanh upward ldbl-128ibm 0x4p-12L : 0x4.000015555622222b46b4dd0dd8p-12L : inexact-ok +atanh 0x1.2345p-20 += atanh downward flt-32 0x1.2345p-20f : 0x1.2345p-20f : inexact-ok += atanh tonearest flt-32 0x1.2345p-20f : 0x1.2345p-20f : inexact-ok += atanh towardzero flt-32 0x1.2345p-20f : 0x1.2345p-20f : inexact-ok += atanh upward flt-32 0x1.2345p-20f : 0x1.234502p-20f : inexact-ok += atanh downward dbl-64 0x1.2345p-20 : 0x1.23450000007dap-20 : inexact-ok += atanh tonearest dbl-64 0x1.2345p-20 : 0x1.23450000007dbp-20 : inexact-ok += atanh towardzero dbl-64 0x1.2345p-20 : 0x1.23450000007dap-20 : inexact-ok += atanh upward dbl-64 0x1.2345p-20 : 0x1.23450000007dbp-20 : inexact-ok += atanh downward ldbl-96-intel 0x1.2345p-20L : 0x1.23450000007daf66p-20L : inexact-ok += atanh tonearest ldbl-96-intel 0x1.2345p-20L : 0x1.23450000007daf66p-20L : inexact-ok += atanh towardzero ldbl-96-intel 0x1.2345p-20L : 0x1.23450000007daf66p-20L : inexact-ok += atanh upward ldbl-96-intel 0x1.2345p-20L : 0x1.23450000007daf68p-20L : inexact-ok += atanh downward ldbl-96-m68k 0x1.2345p-20L : 0x1.23450000007daf66p-20L : inexact-ok += atanh tonearest ldbl-96-m68k 0x1.2345p-20L : 0x1.23450000007daf66p-20L : inexact-ok += atanh towardzero ldbl-96-m68k 0x1.2345p-20L : 0x1.23450000007daf66p-20L : inexact-ok += atanh upward ldbl-96-m68k 0x1.2345p-20L : 0x1.23450000007daf68p-20L : inexact-ok += atanh downward ldbl-128 0x1.2345p-20L : 0x1.23450000007daf665297209f19c6p-20L : inexact-ok += atanh tonearest ldbl-128 0x1.2345p-20L : 0x1.23450000007daf665297209f19c6p-20L : inexact-ok += atanh towardzero ldbl-128 0x1.2345p-20L : 0x1.23450000007daf665297209f19c6p-20L : inexact-ok += atanh upward ldbl-128 0x1.2345p-20L : 0x1.23450000007daf665297209f19c7p-20L : inexact-ok += atanh downward ldbl-128ibm 0x1.2345p-20L : 0x1.23450000007daf665297209f198p-20L : inexact-ok += atanh tonearest ldbl-128ibm 0x1.2345p-20L : 0x1.23450000007daf665297209f1ap-20L : inexact-ok += atanh towardzero ldbl-128ibm 0x1.2345p-20L : 0x1.23450000007daf665297209f198p-20L : inexact-ok += atanh upward ldbl-128ibm 0x1.2345p-20L : 0x1.23450000007daf665297209f1ap-20L : inexact-ok +atanh min missing-underflow spurious-underflow:ldbl-96-intel:x86 += atanh downward flt-32 0x4p-128f : 0x4p-128f : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest flt-32 0x4p-128f : 0x4p-128f : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero flt-32 0x4p-128f : 0x4p-128f : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward flt-32 0x4p-128f : 0x4.000008p-128f : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward dbl-64 0x4p-128 : 0x4p-128 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest dbl-64 0x4p-128 : 0x4p-128 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero dbl-64 0x4p-128 : 0x4p-128 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward dbl-64 0x4p-128 : 0x4.0000000000004p-128 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-intel 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-intel 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-intel 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-intel 0x4p-128L : 0x4.0000000000000008p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-m68k 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-m68k 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-m68k 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-m68k 0x4p-128L : 0x4.0000000000000008p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-128 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-128 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-128 0x4p-128L : 0x4.0000000000000000000000000004p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128ibm 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-128ibm 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-128ibm 0x4p-128L : 0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-128ibm 0x4p-128L : 0x4.00000000000000000000000002p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward dbl-64 0x4p-1024 : 0x4p-1024 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest dbl-64 0x4p-1024 : 0x4p-1024 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero dbl-64 0x4p-1024 : 0x4p-1024 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward dbl-64 0x4p-1024 : 0x4.0000000000004p-1024 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-intel 0x4p-1024L : 0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-intel 0x4p-1024L : 0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-intel 0x4p-1024L : 0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-intel 0x4p-1024L : 0x4.0000000000000008p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-m68k 0x4p-1024L : 0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-m68k 0x4p-1024L : 0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-m68k 0x4p-1024L : 0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-m68k 0x4p-1024L : 0x4.0000000000000008p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128 0x4p-1024L : 0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-128 0x4p-1024L : 0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-128 0x4p-1024L : 0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-128 0x4p-1024L : 0x4.0000000000000000000000000004p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128ibm 0x4p-1024L : 0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128ibm 0x4p-1024L : 0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128ibm 0x4p-1024L : 0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128ibm 0x4p-1024L : 0x4.0000000000004p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-intel 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-intel 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-intel 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-intel 0x4p-16384L : 0x4.0000000000000008p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-m68k 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-m68k 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-m68k 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-m68k 0x4p-16384L : 0x4.0000000000000008p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-128 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-128 0x4p-16384L : 0x4p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-128 0x4p-16384L : 0x4.0000000000000000000000000004p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-intel 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-96-intel 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-96-intel 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-96-intel 0x2p-16384L : 0x2.0000000000000008p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-m68k 0x2p-16384L : 0x2p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-m68k 0x2p-16384L : 0x2p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-m68k 0x2p-16384L : 0x2p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-m68k 0x2p-16384L : 0x2.0000000000000004p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128 0x2p-16384L : 0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128 0x2p-16384L : 0x2.0000000000000000000000000004p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward dbl-64 0x8p-972 : 0x8p-972 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest dbl-64 0x8p-972 : 0x8p-972 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero dbl-64 0x8p-972 : 0x8p-972 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward dbl-64 0x8p-972 : 0x8.0000000000008p-972 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-intel 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-intel 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-intel 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-intel 0x8p-972L : 0x8.000000000000001p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-m68k 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-m68k 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-m68k 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-m68k 0x8p-972L : 0x8.000000000000001p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-128 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-128 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-128 0x8p-972L : 0x8.0000000000000000000000000008p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128ibm 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-128ibm 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-128ibm 0x8p-972L : 0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-128ibm 0x8p-972L : 0x8.00000000000000000000000004p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 +atanh -min missing-underflow spurious-underflow:ldbl-96-intel:x86 += atanh downward flt-32 -0x4p-128f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok += atanh tonearest flt-32 -0x4p-128f : -0x4p-128f : inexact-ok underflow-ok errno-erange-ok += atanh towardzero flt-32 -0x4p-128f : -0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += atanh upward flt-32 -0x4p-128f : -0x3.fffff8p-128f : inexact-ok underflow-ok errno-erange-ok += atanh downward dbl-64 -0x4p-128 : -0x4p-128 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest dbl-64 -0x4p-128 : -0x4p-128 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero dbl-64 -0x4p-128 : -0x3.ffffffffffffep-128 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward dbl-64 -0x4p-128 : -0x3.ffffffffffffep-128 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-intel -0x4p-128L : -0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-intel -0x4p-128L : -0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-intel -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-intel -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-m68k -0x4p-128L : -0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-m68k -0x4p-128L : -0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-m68k -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-m68k -0x4p-128L : -0x3.fffffffffffffffcp-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128 -0x4p-128L : -0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-128 -0x4p-128L : -0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-128 -0x4p-128L : -0x3.fffffffffffffffffffffffffffep-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-128 -0x4p-128L : -0x3.fffffffffffffffffffffffffffep-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128ibm -0x4p-128L : -0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-128ibm -0x4p-128L : -0x4p-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-128ibm -0x4p-128L : -0x3.ffffffffffffffffffffffffffp-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-128ibm -0x4p-128L : -0x3.ffffffffffffffffffffffffffp-128L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward dbl-64 -0x4p-1024 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += atanh tonearest dbl-64 -0x4p-1024 : -0x4p-1024 : inexact-ok underflow-ok errno-erange-ok += atanh towardzero dbl-64 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += atanh upward dbl-64 -0x4p-1024 : -0x3.ffffffffffffcp-1024 : inexact-ok underflow-ok errno-erange-ok += atanh downward ldbl-96-intel -0x4p-1024L : -0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-intel -0x4p-1024L : -0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-intel -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-intel -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-m68k -0x4p-1024L : -0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-m68k -0x4p-1024L : -0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-m68k -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-m68k -0x4p-1024L : -0x3.fffffffffffffffcp-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128 -0x4p-1024L : -0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-128 -0x4p-1024L : -0x4p-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-128 -0x4p-1024L : -0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-128 -0x4p-1024L : -0x3.fffffffffffffffffffffffffffep-1024L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128ibm -0x4p-1024L : -0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128ibm -0x4p-1024L : -0x4p-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128ibm -0x4p-1024L : -0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128ibm -0x4p-1024L : -0x3.ffffffffffffcp-1024L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-intel -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atanh tonearest ldbl-96-intel -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atanh towardzero ldbl-96-intel -0x4p-16384L : -0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += atanh upward ldbl-96-intel -0x4p-16384L : -0x3.fffffffffffffff8p-16384L : inexact-ok underflow-ok errno-erange-ok += atanh downward ldbl-96-m68k -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-m68k -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-m68k -0x4p-16384L : -0x3.fffffffffffffffcp-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-m68k -0x4p-16384L : -0x3.fffffffffffffffcp-16384L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128 -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atanh tonearest ldbl-128 -0x4p-16384L : -0x4p-16384L : inexact-ok underflow-ok errno-erange-ok += atanh towardzero ldbl-128 -0x4p-16384L : -0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atanh upward ldbl-128 -0x4p-16384L : -0x3.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atanh downward ldbl-96-intel -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-96-intel -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-96-intel -0x2p-16384L : -0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-96-intel -0x2p-16384L : -0x1.fffffffffffffff8p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-m68k -0x2p-16384L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += atanh tonearest ldbl-96-m68k -0x2p-16384L : -0x2p-16384L : inexact-ok underflow-ok errno-erange-ok += atanh towardzero ldbl-96-m68k -0x2p-16384L : -0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atanh upward ldbl-96-m68k -0x2p-16384L : -0x1.fffffffffffffffcp-16384L : inexact-ok underflow-ok errno-erange-ok += atanh downward ldbl-128 -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128 -0x2p-16384L : -0x2p-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128 -0x2p-16384L : -0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128 -0x2p-16384L : -0x1.fffffffffffffffffffffffffffcp-16384L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward dbl-64 -0x8p-972 : -0x8p-972 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest dbl-64 -0x8p-972 : -0x8p-972 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero dbl-64 -0x8p-972 : -0x7.ffffffffffffcp-972 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward dbl-64 -0x8p-972 : -0x7.ffffffffffffcp-972 : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-intel -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-intel -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-intel -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-intel -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-96-m68k -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-96-m68k -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-96-m68k -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-96-m68k -0x8p-972L : -0x7.fffffffffffffff8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128 -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh tonearest ldbl-128 -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh towardzero ldbl-128 -0x8p-972L : -0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh upward ldbl-128 -0x8p-972L : -0x7.fffffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok:ldbl-96-intel:x86 += atanh downward ldbl-128ibm -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok += atanh tonearest ldbl-128ibm -0x8p-972L : -0x8p-972L : inexact-ok underflow-ok errno-erange-ok += atanh towardzero ldbl-128ibm -0x8p-972L : -0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok += atanh upward ldbl-128ibm -0x8p-972L : -0x7.fffffffffffffffffffffffffcp-972L : inexact-ok underflow-ok errno-erange-ok +atanh min_subnorm missing-underflow += atanh downward flt-32 0x8p-152f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest flt-32 0x8p-152f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero flt-32 0x8p-152f : 0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward flt-32 0x8p-152f : 0x1p-148f : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward dbl-64 0x8p-152 : 0x8p-152 : inexact-ok += atanh tonearest dbl-64 0x8p-152 : 0x8p-152 : inexact-ok += atanh towardzero dbl-64 0x8p-152 : 0x8p-152 : inexact-ok += atanh upward dbl-64 0x8p-152 : 0x8.0000000000008p-152 : inexact-ok += atanh downward ldbl-96-intel 0x8p-152L : 0x8p-152L : inexact-ok += atanh tonearest ldbl-96-intel 0x8p-152L : 0x8p-152L : inexact-ok += atanh towardzero ldbl-96-intel 0x8p-152L : 0x8p-152L : inexact-ok += atanh upward ldbl-96-intel 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok += atanh downward ldbl-96-m68k 0x8p-152L : 0x8p-152L : inexact-ok += atanh tonearest ldbl-96-m68k 0x8p-152L : 0x8p-152L : inexact-ok += atanh towardzero ldbl-96-m68k 0x8p-152L : 0x8p-152L : inexact-ok += atanh upward ldbl-96-m68k 0x8p-152L : 0x8.000000000000001p-152L : inexact-ok += atanh downward ldbl-128 0x8p-152L : 0x8p-152L : inexact-ok += atanh tonearest ldbl-128 0x8p-152L : 0x8p-152L : inexact-ok += atanh towardzero ldbl-128 0x8p-152L : 0x8p-152L : inexact-ok += atanh upward ldbl-128 0x8p-152L : 0x8.0000000000000000000000000008p-152L : inexact-ok += atanh downward ldbl-128ibm 0x8p-152L : 0x8p-152L : inexact-ok += atanh tonearest ldbl-128ibm 0x8p-152L : 0x8p-152L : inexact-ok += atanh towardzero ldbl-128ibm 0x8p-152L : 0x8p-152L : inexact-ok += atanh upward ldbl-128ibm 0x8p-152L : 0x8.00000000000000000000000004p-152L : inexact-ok += atanh downward dbl-64 0x4p-1076 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest dbl-64 0x4p-1076 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero dbl-64 0x4p-1076 : 0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward dbl-64 0x4p-1076 : 0x8p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-intel 0x4p-1076L : 0x4p-1076L : inexact-ok += atanh tonearest ldbl-96-intel 0x4p-1076L : 0x4p-1076L : inexact-ok += atanh towardzero ldbl-96-intel 0x4p-1076L : 0x4p-1076L : inexact-ok += atanh upward ldbl-96-intel 0x4p-1076L : 0x4.0000000000000008p-1076L : inexact-ok += atanh downward ldbl-96-m68k 0x4p-1076L : 0x4p-1076L : inexact-ok += atanh tonearest ldbl-96-m68k 0x4p-1076L : 0x4p-1076L : inexact-ok += atanh towardzero ldbl-96-m68k 0x4p-1076L : 0x4p-1076L : inexact-ok += atanh upward ldbl-96-m68k 0x4p-1076L : 0x4.0000000000000008p-1076L : inexact-ok += atanh downward ldbl-128 0x4p-1076L : 0x4p-1076L : inexact-ok += atanh tonearest ldbl-128 0x4p-1076L : 0x4p-1076L : inexact-ok += atanh towardzero ldbl-128 0x4p-1076L : 0x4p-1076L : inexact-ok += atanh upward ldbl-128 0x4p-1076L : 0x4.0000000000000000000000000004p-1076L : inexact-ok += atanh downward ldbl-128ibm 0x4p-1076L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128ibm 0x4p-1076L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128ibm 0x4p-1076L : 0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128ibm 0x4p-1076L : 0x8p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-intel 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-96-intel 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-96-intel 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-96-intel 0x8p-16448L : 0x1p-16444L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-m68k 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-96-m68k 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-96-m68k 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-96-m68k 0x8p-16448L : 0xcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-128 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128 0x8p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128 0x8p-16448L : 0x8.000000000004p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-m68k 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-96-m68k 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-96-m68k 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-96-m68k 0x4p-16448L : 0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-128 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128 0x4p-16448L : 0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128 0x4p-16448L : 0x4.000000000004p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-128 0x4p-16496L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128 0x4p-16496L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128 0x4p-16496L : 0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128 0x4p-16496L : 0x8p-16496L : inexact-ok underflow underflow-ok errno-erange-ok +atanh -min_subnorm missing-underflow += atanh downward flt-32 -0x8p-152f : -0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest flt-32 -0x8p-152f : -0x8p-152f : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero flt-32 -0x8p-152f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward flt-32 -0x8p-152f : -0x0p+0f : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward dbl-64 -0x8p-152 : -0x8p-152 : inexact-ok += atanh tonearest dbl-64 -0x8p-152 : -0x8p-152 : inexact-ok += atanh towardzero dbl-64 -0x8p-152 : -0x7.ffffffffffffcp-152 : inexact-ok += atanh upward dbl-64 -0x8p-152 : -0x7.ffffffffffffcp-152 : inexact-ok += atanh downward ldbl-96-intel -0x8p-152L : -0x8p-152L : inexact-ok += atanh tonearest ldbl-96-intel -0x8p-152L : -0x8p-152L : inexact-ok += atanh towardzero ldbl-96-intel -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += atanh upward ldbl-96-intel -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += atanh downward ldbl-96-m68k -0x8p-152L : -0x8p-152L : inexact-ok += atanh tonearest ldbl-96-m68k -0x8p-152L : -0x8p-152L : inexact-ok += atanh towardzero ldbl-96-m68k -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += atanh upward ldbl-96-m68k -0x8p-152L : -0x7.fffffffffffffff8p-152L : inexact-ok += atanh downward ldbl-128 -0x8p-152L : -0x8p-152L : inexact-ok += atanh tonearest ldbl-128 -0x8p-152L : -0x8p-152L : inexact-ok += atanh towardzero ldbl-128 -0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += atanh upward ldbl-128 -0x8p-152L : -0x7.fffffffffffffffffffffffffffcp-152L : inexact-ok += atanh downward ldbl-128ibm -0x8p-152L : -0x8p-152L : inexact-ok += atanh tonearest ldbl-128ibm -0x8p-152L : -0x8p-152L : inexact-ok += atanh towardzero ldbl-128ibm -0x8p-152L : -0x7.fffffffffffffffffffffffffep-152L : inexact-ok += atanh upward ldbl-128ibm -0x8p-152L : -0x7.fffffffffffffffffffffffffep-152L : inexact-ok += atanh downward dbl-64 -0x4p-1076 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest dbl-64 -0x4p-1076 : -0x4p-1076 : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero dbl-64 -0x4p-1076 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward dbl-64 -0x4p-1076 : -0x0p+0 : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-intel -0x4p-1076L : -0x4p-1076L : inexact-ok += atanh tonearest ldbl-96-intel -0x4p-1076L : -0x4p-1076L : inexact-ok += atanh towardzero ldbl-96-intel -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += atanh upward ldbl-96-intel -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += atanh downward ldbl-96-m68k -0x4p-1076L : -0x4p-1076L : inexact-ok += atanh tonearest ldbl-96-m68k -0x4p-1076L : -0x4p-1076L : inexact-ok += atanh towardzero ldbl-96-m68k -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += atanh upward ldbl-96-m68k -0x4p-1076L : -0x3.fffffffffffffffcp-1076L : inexact-ok += atanh downward ldbl-128 -0x4p-1076L : -0x4p-1076L : inexact-ok += atanh tonearest ldbl-128 -0x4p-1076L : -0x4p-1076L : inexact-ok += atanh towardzero ldbl-128 -0x4p-1076L : -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += atanh upward ldbl-128 -0x4p-1076L : -0x3.fffffffffffffffffffffffffffep-1076L : inexact-ok += atanh downward ldbl-128ibm -0x4p-1076L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128ibm -0x4p-1076L : -0x4p-1076L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128ibm -0x4p-1076L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128ibm -0x4p-1076L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-intel -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-96-intel -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-96-intel -0x8p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-96-intel -0x8p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-m68k -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-96-m68k -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-96-m68k -0x8p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-96-m68k -0x8p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-128 -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128 -0x8p-16448L : -0x8p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128 -0x8p-16448L : -0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128 -0x8p-16448L : -0x7.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-96-m68k -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-96-m68k -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-96-m68k -0x4p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-96-m68k -0x4p-16448L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-128 -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128 -0x4p-16448L : -0x4p-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128 -0x4p-16448L : -0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128 -0x4p-16448L : -0x3.fffffffffffcp-16448L : inexact-ok underflow underflow-ok errno-erange-ok += atanh downward ldbl-128 -0x4p-16496L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atanh tonearest ldbl-128 -0x4p-16496L : -0x4p-16496L : inexact-ok underflow underflow-ok errno-erange-ok += atanh towardzero ldbl-128 -0x4p-16496L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok += atanh upward ldbl-128 -0x4p-16496L : -0x0p+0L : inexact-ok underflow underflow-ok errno-erange-ok cabs 0.75 12.390625 = cabs downward flt-32 0xcp-4f 0xc.64p+0f : 0xc.69ce3p+0f : inexact-ok = cabs tonearest flt-32 0xcp-4f 0xc.64p+0f : 0xc.69ce3p+0f : inexact-ok @@ -5892,6 +15065,485 @@ cbrt 0x1p-16383 = cbrt tonearest ldbl-128 0x2p-16384L : 0x8p-5464L : inexact-ok = cbrt towardzero ldbl-128 0x2p-16384L : 0x8p-5464L : inexact-ok = cbrt upward ldbl-128 0x2p-16384L : 0x8p-5464L : inexact-ok +cbrt 1e5 += cbrt downward flt-32 0x1.86ap+16f : 0x2.e6a778p+4f : inexact-ok += cbrt tonearest flt-32 0x1.86ap+16f : 0x2.e6a77cp+4f : inexact-ok += cbrt towardzero flt-32 0x1.86ap+16f : 0x2.e6a778p+4f : inexact-ok += cbrt upward flt-32 0x1.86ap+16f : 0x2.e6a77cp+4f : inexact-ok += cbrt downward dbl-64 0x1.86ap+16 : 0x2.e6a77a87274eap+4 : inexact-ok += cbrt tonearest dbl-64 0x1.86ap+16 : 0x2.e6a77a87274eap+4 : inexact-ok += cbrt towardzero dbl-64 0x1.86ap+16 : 0x2.e6a77a87274eap+4 : inexact-ok += cbrt upward dbl-64 0x1.86ap+16 : 0x2.e6a77a87274ecp+4 : inexact-ok += cbrt downward ldbl-96-intel 0x1.86ap+16L : 0x2.e6a77a87274eadc8p+4L : inexact-ok += cbrt tonearest ldbl-96-intel 0x1.86ap+16L : 0x2.e6a77a87274eadc8p+4L : inexact-ok += cbrt towardzero ldbl-96-intel 0x1.86ap+16L : 0x2.e6a77a87274eadc8p+4L : inexact-ok += cbrt upward ldbl-96-intel 0x1.86ap+16L : 0x2.e6a77a87274eadccp+4L : inexact-ok += cbrt downward ldbl-96-m68k 0x1.86ap+16L : 0x2.e6a77a87274eadc8p+4L : inexact-ok += cbrt tonearest ldbl-96-m68k 0x1.86ap+16L : 0x2.e6a77a87274eadc8p+4L : inexact-ok += cbrt towardzero ldbl-96-m68k 0x1.86ap+16L : 0x2.e6a77a87274eadc8p+4L : inexact-ok += cbrt upward ldbl-96-m68k 0x1.86ap+16L : 0x2.e6a77a87274eadccp+4L : inexact-ok += cbrt downward ldbl-128 0x1.86ap+16L : 0x2.e6a77a87274eadc9b39cffd8ab94p+4L : inexact-ok += cbrt tonearest ldbl-128 0x1.86ap+16L : 0x2.e6a77a87274eadc9b39cffd8ab96p+4L : inexact-ok += cbrt towardzero ldbl-128 0x1.86ap+16L : 0x2.e6a77a87274eadc9b39cffd8ab94p+4L : inexact-ok += cbrt upward ldbl-128 0x1.86ap+16L : 0x2.e6a77a87274eadc9b39cffd8ab96p+4L : inexact-ok += cbrt downward ldbl-128ibm 0x1.86ap+16L : 0x2.e6a77a87274eadc9b39cffd8abp+4L : inexact-ok += cbrt tonearest ldbl-128ibm 0x1.86ap+16L : 0x2.e6a77a87274eadc9b39cffd8acp+4L : inexact-ok += cbrt towardzero ldbl-128ibm 0x1.86ap+16L : 0x2.e6a77a87274eadc9b39cffd8abp+4L : inexact-ok += cbrt upward ldbl-128ibm 0x1.86ap+16L : 0x2.e6a77a87274eadc9b39cffd8acp+4L : inexact-ok +cbrt max += cbrt downward flt-32 0xf.fffffp+124f : 0x6.597fap+40f : inexact-ok += cbrt tonearest flt-32 0xf.fffffp+124f : 0x6.597fa8p+40f : inexact-ok += cbrt towardzero flt-32 0xf.fffffp+124f : 0x6.597fap+40f : inexact-ok += cbrt upward flt-32 0xf.fffffp+124f : 0x6.597fa8p+40f : inexact-ok += cbrt downward dbl-64 0xf.fffffp+124 : 0x6.597fa7318655cp+40 : inexact-ok += cbrt tonearest dbl-64 0xf.fffffp+124 : 0x6.597fa7318656p+40 : inexact-ok += cbrt towardzero dbl-64 0xf.fffffp+124 : 0x6.597fa7318655cp+40 : inexact-ok += cbrt upward dbl-64 0xf.fffffp+124 : 0x6.597fa7318656p+40 : inexact-ok += cbrt downward ldbl-96-intel 0xf.fffffp+124L : 0x6.597fa7318655fc4p+40L : inexact-ok += cbrt tonearest ldbl-96-intel 0xf.fffffp+124L : 0x6.597fa7318655fc48p+40L : inexact-ok += cbrt towardzero ldbl-96-intel 0xf.fffffp+124L : 0x6.597fa7318655fc4p+40L : inexact-ok += cbrt upward ldbl-96-intel 0xf.fffffp+124L : 0x6.597fa7318655fc48p+40L : inexact-ok += cbrt downward ldbl-96-m68k 0xf.fffffp+124L : 0x6.597fa7318655fc4p+40L : inexact-ok += cbrt tonearest ldbl-96-m68k 0xf.fffffp+124L : 0x6.597fa7318655fc48p+40L : inexact-ok += cbrt towardzero ldbl-96-m68k 0xf.fffffp+124L : 0x6.597fa7318655fc4p+40L : inexact-ok += cbrt upward ldbl-96-m68k 0xf.fffffp+124L : 0x6.597fa7318655fc48p+40L : inexact-ok += cbrt downward ldbl-128 0xf.fffffp+124L : 0x6.597fa7318655fc467e27422a246p+40L : inexact-ok += cbrt tonearest ldbl-128 0xf.fffffp+124L : 0x6.597fa7318655fc467e27422a246p+40L : inexact-ok += cbrt towardzero ldbl-128 0xf.fffffp+124L : 0x6.597fa7318655fc467e27422a246p+40L : inexact-ok += cbrt upward ldbl-128 0xf.fffffp+124L : 0x6.597fa7318655fc467e27422a2464p+40L : inexact-ok += cbrt downward ldbl-128ibm 0xf.fffffp+124L : 0x6.597fa7318655fc467e27422a24p+40L : inexact-ok += cbrt tonearest ldbl-128ibm 0xf.fffffp+124L : 0x6.597fa7318655fc467e27422a24p+40L : inexact-ok += cbrt towardzero ldbl-128ibm 0xf.fffffp+124L : 0x6.597fa7318655fc467e27422a24p+40L : inexact-ok += cbrt upward ldbl-128ibm 0xf.fffffp+124L : 0x6.597fa7318655fc467e27422a26p+40L : inexact-ok += cbrt downward dbl-64 0xf.ffffffffffff8p+1020 : 0x2.85145f31ae514p+340 : inexact-ok += cbrt tonearest dbl-64 0xf.ffffffffffff8p+1020 : 0x2.85145f31ae516p+340 : inexact-ok += cbrt towardzero dbl-64 0xf.ffffffffffff8p+1020 : 0x2.85145f31ae514p+340 : inexact-ok += cbrt upward dbl-64 0xf.ffffffffffff8p+1020 : 0x2.85145f31ae516p+340 : inexact-ok += cbrt downward ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558cp+340L : inexact-ok += cbrt tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558cp+340L : inexact-ok += cbrt towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558cp+340L : inexact-ok += cbrt upward ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51559p+340L : inexact-ok += cbrt downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558cp+340L : inexact-ok += cbrt tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558cp+340L : inexact-ok += cbrt towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558cp+340L : inexact-ok += cbrt upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51559p+340L : inexact-ok += cbrt downward ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558c45623f054decp+340L : inexact-ok += cbrt tonearest ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558c45623f054decp+340L : inexact-ok += cbrt towardzero ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558c45623f054decp+340L : inexact-ok += cbrt upward ldbl-128 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558c45623f054deep+340L : inexact-ok += cbrt downward ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558c45623f054dp+340L : inexact-ok += cbrt tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558c45623f054ep+340L : inexact-ok += cbrt towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558c45623f054dp+340L : inexact-ok += cbrt upward ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0x2.85145f31ae51558c45623f054ep+340L : inexact-ok += cbrt downward ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c4p+5460L : inexact-ok += cbrt tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c44p+5460L : inexact-ok += cbrt towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c4p+5460L : inexact-ok += cbrt upward ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c44p+5460L : inexact-ok += cbrt downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c4p+5460L : inexact-ok += cbrt tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c44p+5460L : inexact-ok += cbrt towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c4p+5460L : inexact-ok += cbrt upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c44p+5460L : inexact-ok += cbrt downward ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c43a4aea3c59784p+5460L : inexact-ok += cbrt tonearest ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c43a4aea3c59784p+5460L : inexact-ok += cbrt towardzero ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c43a4aea3c59784p+5460L : inexact-ok += cbrt upward ldbl-128 0xf.fffffffffffffffp+16380L : 0x2.85145f31ae515c43a4aea3c59786p+5460L : inexact-ok += cbrt downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.85145f31ae515c447bb56e2b7c48p+5460L : inexact-ok += cbrt tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.85145f31ae515c447bb56e2b7c4ap+5460L : inexact-ok += cbrt towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.85145f31ae515c447bb56e2b7c48p+5460L : inexact-ok += cbrt upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0x2.85145f31ae515c447bb56e2b7c4ap+5460L : inexact-ok += cbrt downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.85145f31ae5158e8608bd69864eap+340L : inexact-ok += cbrt tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.85145f31ae5158e8608bd69864eap+340L : inexact-ok += cbrt towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.85145f31ae5158e8608bd69864eap+340L : inexact-ok += cbrt upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.85145f31ae5158e8608bd69864ecp+340L : inexact-ok += cbrt downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.85145f31ae5158e8608bd69864p+340L : inexact-ok += cbrt tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.85145f31ae5158e8608bd69865p+340L : inexact-ok += cbrt towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.85145f31ae5158e8608bd69864p+340L : inexact-ok += cbrt upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0x2.85145f31ae5158e8608bd69865p+340L : inexact-ok +cbrt -max += cbrt downward flt-32 -0xf.fffffp+124f : -0x6.597fa8p+40f : inexact-ok += cbrt tonearest flt-32 -0xf.fffffp+124f : -0x6.597fa8p+40f : inexact-ok += cbrt towardzero flt-32 -0xf.fffffp+124f : -0x6.597fap+40f : inexact-ok += cbrt upward flt-32 -0xf.fffffp+124f : -0x6.597fap+40f : inexact-ok += cbrt downward dbl-64 -0xf.fffffp+124 : -0x6.597fa7318656p+40 : inexact-ok += cbrt tonearest dbl-64 -0xf.fffffp+124 : -0x6.597fa7318656p+40 : inexact-ok += cbrt towardzero dbl-64 -0xf.fffffp+124 : -0x6.597fa7318655cp+40 : inexact-ok += cbrt upward dbl-64 -0xf.fffffp+124 : -0x6.597fa7318655cp+40 : inexact-ok += cbrt downward ldbl-96-intel -0xf.fffffp+124L : -0x6.597fa7318655fc48p+40L : inexact-ok += cbrt tonearest ldbl-96-intel -0xf.fffffp+124L : -0x6.597fa7318655fc48p+40L : inexact-ok += cbrt towardzero ldbl-96-intel -0xf.fffffp+124L : -0x6.597fa7318655fc4p+40L : inexact-ok += cbrt upward ldbl-96-intel -0xf.fffffp+124L : -0x6.597fa7318655fc4p+40L : inexact-ok += cbrt downward ldbl-96-m68k -0xf.fffffp+124L : -0x6.597fa7318655fc48p+40L : inexact-ok += cbrt tonearest ldbl-96-m68k -0xf.fffffp+124L : -0x6.597fa7318655fc48p+40L : inexact-ok += cbrt towardzero ldbl-96-m68k -0xf.fffffp+124L : -0x6.597fa7318655fc4p+40L : inexact-ok += cbrt upward ldbl-96-m68k -0xf.fffffp+124L : -0x6.597fa7318655fc4p+40L : inexact-ok += cbrt downward ldbl-128 -0xf.fffffp+124L : -0x6.597fa7318655fc467e27422a2464p+40L : inexact-ok += cbrt tonearest ldbl-128 -0xf.fffffp+124L : -0x6.597fa7318655fc467e27422a246p+40L : inexact-ok += cbrt towardzero ldbl-128 -0xf.fffffp+124L : -0x6.597fa7318655fc467e27422a246p+40L : inexact-ok += cbrt upward ldbl-128 -0xf.fffffp+124L : -0x6.597fa7318655fc467e27422a246p+40L : inexact-ok += cbrt downward ldbl-128ibm -0xf.fffffp+124L : -0x6.597fa7318655fc467e27422a26p+40L : inexact-ok += cbrt tonearest ldbl-128ibm -0xf.fffffp+124L : -0x6.597fa7318655fc467e27422a24p+40L : inexact-ok += cbrt towardzero ldbl-128ibm -0xf.fffffp+124L : -0x6.597fa7318655fc467e27422a24p+40L : inexact-ok += cbrt upward ldbl-128ibm -0xf.fffffp+124L : -0x6.597fa7318655fc467e27422a24p+40L : inexact-ok += cbrt downward dbl-64 -0xf.ffffffffffff8p+1020 : -0x2.85145f31ae516p+340 : inexact-ok += cbrt tonearest dbl-64 -0xf.ffffffffffff8p+1020 : -0x2.85145f31ae516p+340 : inexact-ok += cbrt towardzero dbl-64 -0xf.ffffffffffff8p+1020 : -0x2.85145f31ae514p+340 : inexact-ok += cbrt upward dbl-64 -0xf.ffffffffffff8p+1020 : -0x2.85145f31ae514p+340 : inexact-ok += cbrt downward ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51559p+340L : inexact-ok += cbrt tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558cp+340L : inexact-ok += cbrt towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558cp+340L : inexact-ok += cbrt upward ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558cp+340L : inexact-ok += cbrt downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51559p+340L : inexact-ok += cbrt tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558cp+340L : inexact-ok += cbrt towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558cp+340L : inexact-ok += cbrt upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558cp+340L : inexact-ok += cbrt downward ldbl-128 -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558c45623f054deep+340L : inexact-ok += cbrt tonearest ldbl-128 -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558c45623f054decp+340L : inexact-ok += cbrt towardzero ldbl-128 -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558c45623f054decp+340L : inexact-ok += cbrt upward ldbl-128 -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558c45623f054decp+340L : inexact-ok += cbrt downward ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558c45623f054ep+340L : inexact-ok += cbrt tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558c45623f054ep+340L : inexact-ok += cbrt towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558c45623f054dp+340L : inexact-ok += cbrt upward ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0x2.85145f31ae51558c45623f054dp+340L : inexact-ok += cbrt downward ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c44p+5460L : inexact-ok += cbrt tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c44p+5460L : inexact-ok += cbrt towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c4p+5460L : inexact-ok += cbrt upward ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c4p+5460L : inexact-ok += cbrt downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c44p+5460L : inexact-ok += cbrt tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c44p+5460L : inexact-ok += cbrt towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c4p+5460L : inexact-ok += cbrt upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c4p+5460L : inexact-ok += cbrt downward ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c43a4aea3c59784p+5460L : inexact-ok += cbrt tonearest ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c43a4aea3c59784p+5460L : inexact-ok += cbrt towardzero ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c43a4aea3c59782p+5460L : inexact-ok += cbrt upward ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.85145f31ae515c43a4aea3c59782p+5460L : inexact-ok += cbrt downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.85145f31ae515c447bb56e2b7c4ap+5460L : inexact-ok += cbrt tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.85145f31ae515c447bb56e2b7c4ap+5460L : inexact-ok += cbrt towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.85145f31ae515c447bb56e2b7c48p+5460L : inexact-ok += cbrt upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x2.85145f31ae515c447bb56e2b7c48p+5460L : inexact-ok += cbrt downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.85145f31ae5158e8608bd69864eap+340L : inexact-ok += cbrt tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.85145f31ae5158e8608bd69864eap+340L : inexact-ok += cbrt towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.85145f31ae5158e8608bd69864e8p+340L : inexact-ok += cbrt upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.85145f31ae5158e8608bd69864e8p+340L : inexact-ok += cbrt downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.85145f31ae5158e8608bd69865p+340L : inexact-ok += cbrt tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.85145f31ae5158e8608bd69865p+340L : inexact-ok += cbrt towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.85145f31ae5158e8608bd69864p+340L : inexact-ok += cbrt upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x2.85145f31ae5158e8608bd69864p+340L : inexact-ok +cbrt min += cbrt downward flt-32 0x4p-128f : 0x4p-44f : inexact-ok += cbrt tonearest flt-32 0x4p-128f : 0x4p-44f : inexact-ok += cbrt towardzero flt-32 0x4p-128f : 0x4p-44f : inexact-ok += cbrt upward flt-32 0x4p-128f : 0x4p-44f : inexact-ok += cbrt downward dbl-64 0x4p-128 : 0x4p-44 : inexact-ok += cbrt tonearest dbl-64 0x4p-128 : 0x4p-44 : inexact-ok += cbrt towardzero dbl-64 0x4p-128 : 0x4p-44 : inexact-ok += cbrt upward dbl-64 0x4p-128 : 0x4p-44 : inexact-ok += cbrt downward ldbl-96-intel 0x4p-128L : 0x4p-44L : inexact-ok += cbrt tonearest ldbl-96-intel 0x4p-128L : 0x4p-44L : inexact-ok += cbrt towardzero ldbl-96-intel 0x4p-128L : 0x4p-44L : inexact-ok += cbrt upward ldbl-96-intel 0x4p-128L : 0x4p-44L : inexact-ok += cbrt downward ldbl-96-m68k 0x4p-128L : 0x4p-44L : inexact-ok += cbrt tonearest ldbl-96-m68k 0x4p-128L : 0x4p-44L : inexact-ok += cbrt towardzero ldbl-96-m68k 0x4p-128L : 0x4p-44L : inexact-ok += cbrt upward ldbl-96-m68k 0x4p-128L : 0x4p-44L : inexact-ok += cbrt downward ldbl-128 0x4p-128L : 0x4p-44L : inexact-ok += cbrt tonearest ldbl-128 0x4p-128L : 0x4p-44L : inexact-ok += cbrt towardzero ldbl-128 0x4p-128L : 0x4p-44L : inexact-ok += cbrt upward ldbl-128 0x4p-128L : 0x4p-44L : inexact-ok += cbrt downward ldbl-128ibm 0x4p-128L : 0x4p-44L : inexact-ok += cbrt tonearest ldbl-128ibm 0x4p-128L : 0x4p-44L : inexact-ok += cbrt towardzero ldbl-128ibm 0x4p-128L : 0x4p-44L : inexact-ok += cbrt upward ldbl-128ibm 0x4p-128L : 0x4p-44L : inexact-ok += cbrt downward dbl-64 0x4p-1024 : 0xa.14517cc6b945p-344 : inexact-ok += cbrt tonearest dbl-64 0x4p-1024 : 0xa.14517cc6b9458p-344 : inexact-ok += cbrt towardzero dbl-64 0x4p-1024 : 0xa.14517cc6b945p-344 : inexact-ok += cbrt upward dbl-64 0x4p-1024 : 0xa.14517cc6b9458p-344 : inexact-ok += cbrt downward ldbl-96-intel 0x4p-1024L : 0xa.14517cc6b945711p-344L : inexact-ok += cbrt tonearest ldbl-96-intel 0x4p-1024L : 0xa.14517cc6b945711p-344L : inexact-ok += cbrt towardzero ldbl-96-intel 0x4p-1024L : 0xa.14517cc6b945711p-344L : inexact-ok += cbrt upward ldbl-96-intel 0x4p-1024L : 0xa.14517cc6b945712p-344L : inexact-ok += cbrt downward ldbl-96-m68k 0x4p-1024L : 0xa.14517cc6b945711p-344L : inexact-ok += cbrt tonearest ldbl-96-m68k 0x4p-1024L : 0xa.14517cc6b945711p-344L : inexact-ok += cbrt towardzero ldbl-96-m68k 0x4p-1024L : 0xa.14517cc6b945711p-344L : inexact-ok += cbrt upward ldbl-96-m68k 0x4p-1024L : 0xa.14517cc6b945712p-344L : inexact-ok += cbrt downward ldbl-128 0x4p-1024L : 0xa.14517cc6b9457111eed5b8adf128p-344L : inexact-ok += cbrt tonearest ldbl-128 0x4p-1024L : 0xa.14517cc6b9457111eed5b8adf128p-344L : inexact-ok += cbrt towardzero ldbl-128 0x4p-1024L : 0xa.14517cc6b9457111eed5b8adf128p-344L : inexact-ok += cbrt upward ldbl-128 0x4p-1024L : 0xa.14517cc6b9457111eed5b8adf13p-344L : inexact-ok += cbrt downward ldbl-128ibm 0x4p-1024L : 0xa.14517cc6b9457111eed5b8adfp-344L : inexact-ok += cbrt tonearest ldbl-128ibm 0x4p-1024L : 0xa.14517cc6b9457111eed5b8adfp-344L : inexact-ok += cbrt towardzero ldbl-128ibm 0x4p-1024L : 0xa.14517cc6b9457111eed5b8adfp-344L : inexact-ok += cbrt upward ldbl-128ibm 0x4p-1024L : 0xa.14517cc6b9457111eed5b8adf4p-344L : inexact-ok += cbrt downward ldbl-96-intel 0x4p-16384L : 0xa.14517cc6b945711p-5464L : inexact-ok += cbrt tonearest ldbl-96-intel 0x4p-16384L : 0xa.14517cc6b945711p-5464L : inexact-ok += cbrt towardzero ldbl-96-intel 0x4p-16384L : 0xa.14517cc6b945711p-5464L : inexact-ok += cbrt upward ldbl-96-intel 0x4p-16384L : 0xa.14517cc6b945712p-5464L : inexact-ok += cbrt downward ldbl-96-m68k 0x4p-16384L : 0xa.14517cc6b945711p-5464L : inexact-ok += cbrt tonearest ldbl-96-m68k 0x4p-16384L : 0xa.14517cc6b945711p-5464L : inexact-ok += cbrt towardzero ldbl-96-m68k 0x4p-16384L : 0xa.14517cc6b945711p-5464L : inexact-ok += cbrt upward ldbl-96-m68k 0x4p-16384L : 0xa.14517cc6b945712p-5464L : inexact-ok += cbrt downward ldbl-128 0x4p-16384L : 0xa.14517cc6b9457111eed5b8adf128p-5464L : inexact-ok += cbrt tonearest ldbl-128 0x4p-16384L : 0xa.14517cc6b9457111eed5b8adf128p-5464L : inexact-ok += cbrt towardzero ldbl-128 0x4p-16384L : 0xa.14517cc6b9457111eed5b8adf128p-5464L : inexact-ok += cbrt upward ldbl-128 0x4p-16384L : 0xa.14517cc6b9457111eed5b8adf13p-5464L : inexact-ok += cbrt downward ldbl-96-intel 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt tonearest ldbl-96-intel 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt towardzero ldbl-96-intel 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt upward ldbl-96-intel 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt downward ldbl-96-m68k 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt tonearest ldbl-96-m68k 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt towardzero ldbl-96-m68k 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt upward ldbl-96-m68k 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt downward ldbl-128 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt tonearest ldbl-128 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt towardzero ldbl-128 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt upward ldbl-128 0x2p-16384L : 0x8p-5464L : inexact-ok += cbrt downward dbl-64 0x8p-972 : 0x2p-324 : inexact-ok += cbrt tonearest dbl-64 0x8p-972 : 0x2p-324 : inexact-ok += cbrt towardzero dbl-64 0x8p-972 : 0x2p-324 : inexact-ok += cbrt upward dbl-64 0x8p-972 : 0x2p-324 : inexact-ok += cbrt downward ldbl-96-intel 0x8p-972L : 0x2p-324L : inexact-ok += cbrt tonearest ldbl-96-intel 0x8p-972L : 0x2p-324L : inexact-ok += cbrt towardzero ldbl-96-intel 0x8p-972L : 0x2p-324L : inexact-ok += cbrt upward ldbl-96-intel 0x8p-972L : 0x2p-324L : inexact-ok += cbrt downward ldbl-96-m68k 0x8p-972L : 0x2p-324L : inexact-ok += cbrt tonearest ldbl-96-m68k 0x8p-972L : 0x2p-324L : inexact-ok += cbrt towardzero ldbl-96-m68k 0x8p-972L : 0x2p-324L : inexact-ok += cbrt upward ldbl-96-m68k 0x8p-972L : 0x2p-324L : inexact-ok += cbrt downward ldbl-128 0x8p-972L : 0x2p-324L : inexact-ok += cbrt tonearest ldbl-128 0x8p-972L : 0x2p-324L : inexact-ok += cbrt towardzero ldbl-128 0x8p-972L : 0x2p-324L : inexact-ok += cbrt upward ldbl-128 0x8p-972L : 0x2p-324L : inexact-ok += cbrt downward ldbl-128ibm 0x8p-972L : 0x2p-324L : inexact-ok += cbrt tonearest ldbl-128ibm 0x8p-972L : 0x2p-324L : inexact-ok += cbrt towardzero ldbl-128ibm 0x8p-972L : 0x2p-324L : inexact-ok += cbrt upward ldbl-128ibm 0x8p-972L : 0x2p-324L : inexact-ok +cbrt -min += cbrt downward flt-32 -0x4p-128f : -0x4p-44f : inexact-ok += cbrt tonearest flt-32 -0x4p-128f : -0x4p-44f : inexact-ok += cbrt towardzero flt-32 -0x4p-128f : -0x4p-44f : inexact-ok += cbrt upward flt-32 -0x4p-128f : -0x4p-44f : inexact-ok += cbrt downward dbl-64 -0x4p-128 : -0x4p-44 : inexact-ok += cbrt tonearest dbl-64 -0x4p-128 : -0x4p-44 : inexact-ok += cbrt towardzero dbl-64 -0x4p-128 : -0x4p-44 : inexact-ok += cbrt upward dbl-64 -0x4p-128 : -0x4p-44 : inexact-ok += cbrt downward ldbl-96-intel -0x4p-128L : -0x4p-44L : inexact-ok += cbrt tonearest ldbl-96-intel -0x4p-128L : -0x4p-44L : inexact-ok += cbrt towardzero ldbl-96-intel -0x4p-128L : -0x4p-44L : inexact-ok += cbrt upward ldbl-96-intel -0x4p-128L : -0x4p-44L : inexact-ok += cbrt downward ldbl-96-m68k -0x4p-128L : -0x4p-44L : inexact-ok += cbrt tonearest ldbl-96-m68k -0x4p-128L : -0x4p-44L : inexact-ok += cbrt towardzero ldbl-96-m68k -0x4p-128L : -0x4p-44L : inexact-ok += cbrt upward ldbl-96-m68k -0x4p-128L : -0x4p-44L : inexact-ok += cbrt downward ldbl-128 -0x4p-128L : -0x4p-44L : inexact-ok += cbrt tonearest ldbl-128 -0x4p-128L : -0x4p-44L : inexact-ok += cbrt towardzero ldbl-128 -0x4p-128L : -0x4p-44L : inexact-ok += cbrt upward ldbl-128 -0x4p-128L : -0x4p-44L : inexact-ok += cbrt downward ldbl-128ibm -0x4p-128L : -0x4p-44L : inexact-ok += cbrt tonearest ldbl-128ibm -0x4p-128L : -0x4p-44L : inexact-ok += cbrt towardzero ldbl-128ibm -0x4p-128L : -0x4p-44L : inexact-ok += cbrt upward ldbl-128ibm -0x4p-128L : -0x4p-44L : inexact-ok += cbrt downward dbl-64 -0x4p-1024 : -0xa.14517cc6b9458p-344 : inexact-ok += cbrt tonearest dbl-64 -0x4p-1024 : -0xa.14517cc6b9458p-344 : inexact-ok += cbrt towardzero dbl-64 -0x4p-1024 : -0xa.14517cc6b945p-344 : inexact-ok += cbrt upward dbl-64 -0x4p-1024 : -0xa.14517cc6b945p-344 : inexact-ok += cbrt downward ldbl-96-intel -0x4p-1024L : -0xa.14517cc6b945712p-344L : inexact-ok += cbrt tonearest ldbl-96-intel -0x4p-1024L : -0xa.14517cc6b945711p-344L : inexact-ok += cbrt towardzero ldbl-96-intel -0x4p-1024L : -0xa.14517cc6b945711p-344L : inexact-ok += cbrt upward ldbl-96-intel -0x4p-1024L : -0xa.14517cc6b945711p-344L : inexact-ok += cbrt downward ldbl-96-m68k -0x4p-1024L : -0xa.14517cc6b945712p-344L : inexact-ok += cbrt tonearest ldbl-96-m68k -0x4p-1024L : -0xa.14517cc6b945711p-344L : inexact-ok += cbrt towardzero ldbl-96-m68k -0x4p-1024L : -0xa.14517cc6b945711p-344L : inexact-ok += cbrt upward ldbl-96-m68k -0x4p-1024L : -0xa.14517cc6b945711p-344L : inexact-ok += cbrt downward ldbl-128 -0x4p-1024L : -0xa.14517cc6b9457111eed5b8adf128p-344L : inexact-ok += cbrt tonearest ldbl-128 -0x4p-1024L : -0xa.14517cc6b9457111eed5b8adf128p-344L : inexact-ok += cbrt towardzero ldbl-128 -0x4p-1024L : -0xa.14517cc6b9457111eed5b8adf12p-344L : inexact-ok += cbrt upward ldbl-128 -0x4p-1024L : -0xa.14517cc6b9457111eed5b8adf12p-344L : inexact-ok += cbrt downward ldbl-128ibm -0x4p-1024L : -0xa.14517cc6b9457111eed5b8adf4p-344L : inexact-ok += cbrt tonearest ldbl-128ibm -0x4p-1024L : -0xa.14517cc6b9457111eed5b8adfp-344L : inexact-ok += cbrt towardzero ldbl-128ibm -0x4p-1024L : -0xa.14517cc6b9457111eed5b8adfp-344L : inexact-ok += cbrt upward ldbl-128ibm -0x4p-1024L : -0xa.14517cc6b9457111eed5b8adfp-344L : inexact-ok += cbrt downward ldbl-96-intel -0x4p-16384L : -0xa.14517cc6b945712p-5464L : inexact-ok += cbrt tonearest ldbl-96-intel -0x4p-16384L : -0xa.14517cc6b945711p-5464L : inexact-ok += cbrt towardzero ldbl-96-intel -0x4p-16384L : -0xa.14517cc6b945711p-5464L : inexact-ok += cbrt upward ldbl-96-intel -0x4p-16384L : -0xa.14517cc6b945711p-5464L : inexact-ok += cbrt downward ldbl-96-m68k -0x4p-16384L : -0xa.14517cc6b945712p-5464L : inexact-ok += cbrt tonearest ldbl-96-m68k -0x4p-16384L : -0xa.14517cc6b945711p-5464L : inexact-ok += cbrt towardzero ldbl-96-m68k -0x4p-16384L : -0xa.14517cc6b945711p-5464L : inexact-ok += cbrt upward ldbl-96-m68k -0x4p-16384L : -0xa.14517cc6b945711p-5464L : inexact-ok += cbrt downward ldbl-128 -0x4p-16384L : -0xa.14517cc6b9457111eed5b8adf128p-5464L : inexact-ok += cbrt tonearest ldbl-128 -0x4p-16384L : -0xa.14517cc6b9457111eed5b8adf128p-5464L : inexact-ok += cbrt towardzero ldbl-128 -0x4p-16384L : -0xa.14517cc6b9457111eed5b8adf12p-5464L : inexact-ok += cbrt upward ldbl-128 -0x4p-16384L : -0xa.14517cc6b9457111eed5b8adf12p-5464L : inexact-ok += cbrt downward ldbl-96-intel -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt tonearest ldbl-96-intel -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt towardzero ldbl-96-intel -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt upward ldbl-96-intel -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt downward ldbl-96-m68k -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt tonearest ldbl-96-m68k -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt towardzero ldbl-96-m68k -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt upward ldbl-96-m68k -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt downward ldbl-128 -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt tonearest ldbl-128 -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt towardzero ldbl-128 -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt upward ldbl-128 -0x2p-16384L : -0x8p-5464L : inexact-ok += cbrt downward dbl-64 -0x8p-972 : -0x2p-324 : inexact-ok += cbrt tonearest dbl-64 -0x8p-972 : -0x2p-324 : inexact-ok += cbrt towardzero dbl-64 -0x8p-972 : -0x2p-324 : inexact-ok += cbrt upward dbl-64 -0x8p-972 : -0x2p-324 : inexact-ok += cbrt downward ldbl-96-intel -0x8p-972L : -0x2p-324L : inexact-ok += cbrt tonearest ldbl-96-intel -0x8p-972L : -0x2p-324L : inexact-ok += cbrt towardzero ldbl-96-intel -0x8p-972L : -0x2p-324L : inexact-ok += cbrt upward ldbl-96-intel -0x8p-972L : -0x2p-324L : inexact-ok += cbrt downward ldbl-96-m68k -0x8p-972L : -0x2p-324L : inexact-ok += cbrt tonearest ldbl-96-m68k -0x8p-972L : -0x2p-324L : inexact-ok += cbrt towardzero ldbl-96-m68k -0x8p-972L : -0x2p-324L : inexact-ok += cbrt upward ldbl-96-m68k -0x8p-972L : -0x2p-324L : inexact-ok += cbrt downward ldbl-128 -0x8p-972L : -0x2p-324L : inexact-ok += cbrt tonearest ldbl-128 -0x8p-972L : -0x2p-324L : inexact-ok += cbrt towardzero ldbl-128 -0x8p-972L : -0x2p-324L : inexact-ok += cbrt upward ldbl-128 -0x8p-972L : -0x2p-324L : inexact-ok += cbrt downward ldbl-128ibm -0x8p-972L : -0x2p-324L : inexact-ok += cbrt tonearest ldbl-128ibm -0x8p-972L : -0x2p-324L : inexact-ok += cbrt towardzero ldbl-128ibm -0x8p-972L : -0x2p-324L : inexact-ok += cbrt upward ldbl-128ibm -0x8p-972L : -0x2p-324L : inexact-ok +cbrt min_subnorm += cbrt downward flt-32 0x8p-152f : 0x5.0a28b8p-52f : inexact-ok += cbrt tonearest flt-32 0x8p-152f : 0x5.0a28cp-52f : inexact-ok += cbrt towardzero flt-32 0x8p-152f : 0x5.0a28b8p-52f : inexact-ok += cbrt upward flt-32 0x8p-152f : 0x5.0a28cp-52f : inexact-ok += cbrt downward dbl-64 0x8p-152 : 0x5.0a28be635ca28p-52 : inexact-ok += cbrt tonearest dbl-64 0x8p-152 : 0x5.0a28be635ca2cp-52 : inexact-ok += cbrt towardzero dbl-64 0x8p-152 : 0x5.0a28be635ca28p-52 : inexact-ok += cbrt upward dbl-64 0x8p-152 : 0x5.0a28be635ca2cp-52 : inexact-ok += cbrt downward ldbl-96-intel 0x8p-152L : 0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt tonearest ldbl-96-intel 0x8p-152L : 0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt towardzero ldbl-96-intel 0x8p-152L : 0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt upward ldbl-96-intel 0x8p-152L : 0x5.0a28be635ca2b89p-52L : inexact-ok += cbrt downward ldbl-96-m68k 0x8p-152L : 0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt tonearest ldbl-96-m68k 0x8p-152L : 0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt towardzero ldbl-96-m68k 0x8p-152L : 0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt upward ldbl-96-m68k 0x8p-152L : 0x5.0a28be635ca2b89p-52L : inexact-ok += cbrt downward ldbl-128 0x8p-152L : 0x5.0a28be635ca2b888f76adc56f894p-52L : inexact-ok += cbrt tonearest ldbl-128 0x8p-152L : 0x5.0a28be635ca2b888f76adc56f894p-52L : inexact-ok += cbrt towardzero ldbl-128 0x8p-152L : 0x5.0a28be635ca2b888f76adc56f894p-52L : inexact-ok += cbrt upward ldbl-128 0x8p-152L : 0x5.0a28be635ca2b888f76adc56f898p-52L : inexact-ok += cbrt downward ldbl-128ibm 0x8p-152L : 0x5.0a28be635ca2b888f76adc56f8p-52L : inexact-ok += cbrt tonearest ldbl-128ibm 0x8p-152L : 0x5.0a28be635ca2b888f76adc56f8p-52L : inexact-ok += cbrt towardzero ldbl-128ibm 0x8p-152L : 0x5.0a28be635ca2b888f76adc56f8p-52L : inexact-ok += cbrt upward ldbl-128ibm 0x8p-152L : 0x5.0a28be635ca2b888f76adc56fap-52L : inexact-ok += cbrt downward dbl-64 0x4p-1076 : 0x4p-360 : inexact-ok += cbrt tonearest dbl-64 0x4p-1076 : 0x4p-360 : inexact-ok += cbrt towardzero dbl-64 0x4p-1076 : 0x4p-360 : inexact-ok += cbrt upward dbl-64 0x4p-1076 : 0x4p-360 : inexact-ok += cbrt downward ldbl-96-intel 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt tonearest ldbl-96-intel 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt towardzero ldbl-96-intel 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt upward ldbl-96-intel 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt downward ldbl-96-m68k 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt tonearest ldbl-96-m68k 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt towardzero ldbl-96-m68k 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt upward ldbl-96-m68k 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt downward ldbl-128 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt tonearest ldbl-128 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt towardzero ldbl-128 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt upward ldbl-128 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt downward ldbl-128ibm 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt tonearest ldbl-128ibm 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt towardzero ldbl-128ibm 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt upward ldbl-128ibm 0x4p-1076L : 0x4p-360L : inexact-ok += cbrt downward ldbl-96-intel 0x8p-16448L : 0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt tonearest ldbl-96-intel 0x8p-16448L : 0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt towardzero ldbl-96-intel 0x8p-16448L : 0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt upward ldbl-96-intel 0x8p-16448L : 0x5.0a28be635ca2b89p-5484L : inexact-ok += cbrt downward ldbl-96-m68k 0x8p-16448L : 0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt tonearest ldbl-96-m68k 0x8p-16448L : 0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt towardzero ldbl-96-m68k 0x8p-16448L : 0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt upward ldbl-96-m68k 0x8p-16448L : 0x5.0a28be635ca2b89p-5484L : inexact-ok += cbrt downward ldbl-128 0x8p-16448L : 0x5.0a28be635ca2b888f76adc56f894p-5484L : inexact-ok += cbrt tonearest ldbl-128 0x8p-16448L : 0x5.0a28be635ca2b888f76adc56f894p-5484L : inexact-ok += cbrt towardzero ldbl-128 0x8p-16448L : 0x5.0a28be635ca2b888f76adc56f894p-5484L : inexact-ok += cbrt upward ldbl-128 0x8p-16448L : 0x5.0a28be635ca2b888f76adc56f898p-5484L : inexact-ok += cbrt downward ldbl-96-m68k 0x4p-16448L : 0x4p-5484L : inexact-ok += cbrt tonearest ldbl-96-m68k 0x4p-16448L : 0x4p-5484L : inexact-ok += cbrt towardzero ldbl-96-m68k 0x4p-16448L : 0x4p-5484L : inexact-ok += cbrt upward ldbl-96-m68k 0x4p-16448L : 0x4p-5484L : inexact-ok += cbrt downward ldbl-128 0x4p-16448L : 0x4p-5484L : inexact-ok += cbrt tonearest ldbl-128 0x4p-16448L : 0x4p-5484L : inexact-ok += cbrt towardzero ldbl-128 0x4p-16448L : 0x4p-5484L : inexact-ok += cbrt upward ldbl-128 0x4p-16448L : 0x4p-5484L : inexact-ok += cbrt downward ldbl-128 0x4p-16496L : 0x4p-5500L : inexact-ok += cbrt tonearest ldbl-128 0x4p-16496L : 0x4p-5500L : inexact-ok += cbrt towardzero ldbl-128 0x4p-16496L : 0x4p-5500L : inexact-ok += cbrt upward ldbl-128 0x4p-16496L : 0x4p-5500L : inexact-ok +cbrt -min_subnorm += cbrt downward flt-32 -0x8p-152f : -0x5.0a28cp-52f : inexact-ok += cbrt tonearest flt-32 -0x8p-152f : -0x5.0a28cp-52f : inexact-ok += cbrt towardzero flt-32 -0x8p-152f : -0x5.0a28b8p-52f : inexact-ok += cbrt upward flt-32 -0x8p-152f : -0x5.0a28b8p-52f : inexact-ok += cbrt downward dbl-64 -0x8p-152 : -0x5.0a28be635ca2cp-52 : inexact-ok += cbrt tonearest dbl-64 -0x8p-152 : -0x5.0a28be635ca2cp-52 : inexact-ok += cbrt towardzero dbl-64 -0x8p-152 : -0x5.0a28be635ca28p-52 : inexact-ok += cbrt upward dbl-64 -0x8p-152 : -0x5.0a28be635ca28p-52 : inexact-ok += cbrt downward ldbl-96-intel -0x8p-152L : -0x5.0a28be635ca2b89p-52L : inexact-ok += cbrt tonearest ldbl-96-intel -0x8p-152L : -0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt towardzero ldbl-96-intel -0x8p-152L : -0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt upward ldbl-96-intel -0x8p-152L : -0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt downward ldbl-96-m68k -0x8p-152L : -0x5.0a28be635ca2b89p-52L : inexact-ok += cbrt tonearest ldbl-96-m68k -0x8p-152L : -0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt towardzero ldbl-96-m68k -0x8p-152L : -0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt upward ldbl-96-m68k -0x8p-152L : -0x5.0a28be635ca2b888p-52L : inexact-ok += cbrt downward ldbl-128 -0x8p-152L : -0x5.0a28be635ca2b888f76adc56f894p-52L : inexact-ok += cbrt tonearest ldbl-128 -0x8p-152L : -0x5.0a28be635ca2b888f76adc56f894p-52L : inexact-ok += cbrt towardzero ldbl-128 -0x8p-152L : -0x5.0a28be635ca2b888f76adc56f89p-52L : inexact-ok += cbrt upward ldbl-128 -0x8p-152L : -0x5.0a28be635ca2b888f76adc56f89p-52L : inexact-ok += cbrt downward ldbl-128ibm -0x8p-152L : -0x5.0a28be635ca2b888f76adc56fap-52L : inexact-ok += cbrt tonearest ldbl-128ibm -0x8p-152L : -0x5.0a28be635ca2b888f76adc56f8p-52L : inexact-ok += cbrt towardzero ldbl-128ibm -0x8p-152L : -0x5.0a28be635ca2b888f76adc56f8p-52L : inexact-ok += cbrt upward ldbl-128ibm -0x8p-152L : -0x5.0a28be635ca2b888f76adc56f8p-52L : inexact-ok += cbrt downward dbl-64 -0x4p-1076 : -0x4p-360 : inexact-ok += cbrt tonearest dbl-64 -0x4p-1076 : -0x4p-360 : inexact-ok += cbrt towardzero dbl-64 -0x4p-1076 : -0x4p-360 : inexact-ok += cbrt upward dbl-64 -0x4p-1076 : -0x4p-360 : inexact-ok += cbrt downward ldbl-96-intel -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt tonearest ldbl-96-intel -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt towardzero ldbl-96-intel -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt upward ldbl-96-intel -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt downward ldbl-96-m68k -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt tonearest ldbl-96-m68k -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt towardzero ldbl-96-m68k -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt upward ldbl-96-m68k -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt downward ldbl-128 -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt tonearest ldbl-128 -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt towardzero ldbl-128 -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt upward ldbl-128 -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt downward ldbl-128ibm -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt tonearest ldbl-128ibm -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt towardzero ldbl-128ibm -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt upward ldbl-128ibm -0x4p-1076L : -0x4p-360L : inexact-ok += cbrt downward ldbl-96-intel -0x8p-16448L : -0x5.0a28be635ca2b89p-5484L : inexact-ok += cbrt tonearest ldbl-96-intel -0x8p-16448L : -0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt towardzero ldbl-96-intel -0x8p-16448L : -0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt upward ldbl-96-intel -0x8p-16448L : -0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt downward ldbl-96-m68k -0x8p-16448L : -0x5.0a28be635ca2b89p-5484L : inexact-ok += cbrt tonearest ldbl-96-m68k -0x8p-16448L : -0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt towardzero ldbl-96-m68k -0x8p-16448L : -0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt upward ldbl-96-m68k -0x8p-16448L : -0x5.0a28be635ca2b888p-5484L : inexact-ok += cbrt downward ldbl-128 -0x8p-16448L : -0x5.0a28be635ca2b888f76adc56f894p-5484L : inexact-ok += cbrt tonearest ldbl-128 -0x8p-16448L : -0x5.0a28be635ca2b888f76adc56f894p-5484L : inexact-ok += cbrt towardzero ldbl-128 -0x8p-16448L : -0x5.0a28be635ca2b888f76adc56f89p-5484L : inexact-ok += cbrt upward ldbl-128 -0x8p-16448L : -0x5.0a28be635ca2b888f76adc56f89p-5484L : inexact-ok += cbrt downward ldbl-96-m68k -0x4p-16448L : -0x4p-5484L : inexact-ok += cbrt tonearest ldbl-96-m68k -0x4p-16448L : -0x4p-5484L : inexact-ok += cbrt towardzero ldbl-96-m68k -0x4p-16448L : -0x4p-5484L : inexact-ok += cbrt upward ldbl-96-m68k -0x4p-16448L : -0x4p-5484L : inexact-ok += cbrt downward ldbl-128 -0x4p-16448L : -0x4p-5484L : inexact-ok += cbrt tonearest ldbl-128 -0x4p-16448L : -0x4p-5484L : inexact-ok += cbrt towardzero ldbl-128 -0x4p-16448L : -0x4p-5484L : inexact-ok += cbrt upward ldbl-128 -0x4p-16448L : -0x4p-5484L : inexact-ok += cbrt downward ldbl-128 -0x4p-16496L : -0x4p-5500L : inexact-ok += cbrt tonearest ldbl-128 -0x4p-16496L : -0x4p-5500L : inexact-ok += cbrt towardzero ldbl-128 -0x4p-16496L : -0x4p-5500L : inexact-ok += cbrt upward ldbl-128 -0x4p-16496L : -0x4p-5500L : inexact-ok ccos 0.0 0.0 = ccos downward flt-32 0x0p+0f 0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok = ccos tonearest flt-32 0x0p+0f 0x0p+0f : 0x1p+0f -0x0p+0f : inexact-ok @@ -37896,6 +47548,460 @@ cos 10 = cos tonearest ldbl-128ibm 0xap+0L : -0xd.6cd64486358f904f7e2a0b9994p-4L : inexact-ok = cos towardzero ldbl-128ibm 0xap+0L : -0xd.6cd64486358f904f7e2a0b9994p-4L : inexact-ok = cos upward ldbl-128ibm 0xap+0L : -0xd.6cd64486358f904f7e2a0b9994p-4L : inexact-ok +cos max += cos downward flt-32 0xf.fffffp+124f : 0xd.a5f96p-4f : inexact-ok += cos tonearest flt-32 0xf.fffffp+124f : 0xd.a5f96p-4f : inexact-ok += cos towardzero flt-32 0xf.fffffp+124f : 0xd.a5f96p-4f : inexact-ok += cos upward flt-32 0xf.fffffp+124f : 0xd.a5f97p-4f : inexact-ok += cos downward dbl-64 0xf.fffffp+124 : 0xd.a5f963cdefe68p-4 : inexact-ok += cos tonearest dbl-64 0xf.fffffp+124 : 0xd.a5f963cdefe7p-4 : inexact-ok += cos towardzero dbl-64 0xf.fffffp+124 : 0xd.a5f963cdefe68p-4 : inexact-ok += cos upward dbl-64 0xf.fffffp+124 : 0xd.a5f963cdefe7p-4 : inexact-ok += cos downward ldbl-96-intel 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L : inexact-ok += cos tonearest ldbl-96-intel 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L : inexact-ok += cos towardzero ldbl-96-intel 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L : inexact-ok += cos upward ldbl-96-intel 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L : inexact-ok += cos downward ldbl-96-m68k 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L : inexact-ok += cos tonearest ldbl-96-m68k 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L : inexact-ok += cos towardzero ldbl-96-m68k 0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L : inexact-ok += cos upward ldbl-96-m68k 0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L : inexact-ok += cos downward ldbl-128 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L : inexact-ok += cos tonearest ldbl-128 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L : inexact-ok += cos towardzero ldbl-128 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L : inexact-ok += cos upward ldbl-128 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2f8p-4L : inexact-ok += cos downward ldbl-128ibm 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fbp-4L : inexact-ok += cos tonearest ldbl-128ibm 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb4p-4L : inexact-ok += cos towardzero ldbl-128ibm 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fbp-4L : inexact-ok += cos upward ldbl-128ibm 0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb4p-4L : inexact-ok += cos downward dbl-64 0xf.ffffffffffff8p+1020 : -0xf.fff31767d5bbp-4 : inexact-ok += cos tonearest dbl-64 0xf.ffffffffffff8p+1020 : -0xf.fff31767d5ba8p-4 : inexact-ok += cos towardzero dbl-64 0xf.ffffffffffff8p+1020 : -0xf.fff31767d5ba8p-4 : inexact-ok += cos upward dbl-64 0xf.ffffffffffff8p+1020 : -0xf.fff31767d5ba8p-4 : inexact-ok += cos downward ldbl-96-intel 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e1p-4L : inexact-ok += cos tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos upward ldbl-96-intel 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e1p-4L : inexact-ok += cos tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos downward ldbl-128 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f138p-4L : inexact-ok += cos tonearest ldbl-128 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f13p-4L : inexact-ok += cos towardzero ldbl-128 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f13p-4L : inexact-ok += cos upward ldbl-128 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f13p-4L : inexact-ok += cos downward ldbl-128ibm 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f4p-4L : inexact-ok += cos tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070fp-4L : inexact-ok += cos towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070fp-4L : inexact-ok += cos upward ldbl-128ibm 0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070fp-4L : inexact-ok += cos downward ldbl-96-intel 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50cp-4L : inexact-ok += cos tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50cp-4L : inexact-ok += cos towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d508p-4L : inexact-ok += cos upward ldbl-96-intel 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d508p-4L : inexact-ok += cos downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50cp-4L : inexact-ok += cos tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50cp-4L : inexact-ok += cos towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d508p-4L : inexact-ok += cos upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d508p-4L : inexact-ok += cos downward ldbl-128 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50b7a7f6bc3f5bap-4L : inexact-ok += cos tonearest ldbl-128 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50b7a7f6bc3f5b8p-4L : inexact-ok += cos towardzero ldbl-128 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50b7a7f6bc3f5b8p-4L : inexact-ok += cos upward ldbl-128 0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50b7a7f6bc3f5b8p-4L : inexact-ok += cos downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4.e6dc95fb529bc365f472e4fbc1f8p-4L : inexact-ok += cos tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4.e6dc95fb529bc365f472e4fbc1f4p-4L : inexact-ok += cos towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4.e6dc95fb529bc365f472e4fbc1f4p-4L : inexact-ok += cos upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : -0x4.e6dc95fb529bc365f472e4fbc1f4p-4L : inexact-ok += cos downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526978p-4L : inexact-ok += cos tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526974p-4L : inexact-ok += cos towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526974p-4L : inexact-ok += cos upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526974p-4L : inexact-ok += cos downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526ap-4L : inexact-ok += cos tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526ap-4L : inexact-ok += cos towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c2306055268p-4L : inexact-ok += cos upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c2306055268p-4L : inexact-ok +cos -max += cos downward flt-32 -0xf.fffffp+124f : 0xd.a5f96p-4f : inexact-ok += cos tonearest flt-32 -0xf.fffffp+124f : 0xd.a5f96p-4f : inexact-ok += cos towardzero flt-32 -0xf.fffffp+124f : 0xd.a5f96p-4f : inexact-ok += cos upward flt-32 -0xf.fffffp+124f : 0xd.a5f97p-4f : inexact-ok += cos downward dbl-64 -0xf.fffffp+124 : 0xd.a5f963cdefe68p-4 : inexact-ok += cos tonearest dbl-64 -0xf.fffffp+124 : 0xd.a5f963cdefe7p-4 : inexact-ok += cos towardzero dbl-64 -0xf.fffffp+124 : 0xd.a5f963cdefe68p-4 : inexact-ok += cos upward dbl-64 -0xf.fffffp+124 : 0xd.a5f963cdefe7p-4 : inexact-ok += cos downward ldbl-96-intel -0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L : inexact-ok += cos tonearest ldbl-96-intel -0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L : inexact-ok += cos towardzero ldbl-96-intel -0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L : inexact-ok += cos upward ldbl-96-intel -0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L : inexact-ok += cos downward ldbl-96-m68k -0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L : inexact-ok += cos tonearest ldbl-96-m68k -0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L : inexact-ok += cos towardzero ldbl-96-m68k -0xf.fffffp+124L : 0xd.a5f963cdefe6d52p-4L : inexact-ok += cos upward ldbl-96-m68k -0xf.fffffp+124L : 0xd.a5f963cdefe6d53p-4L : inexact-ok += cos downward ldbl-128 -0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L : inexact-ok += cos tonearest ldbl-128 -0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L : inexact-ok += cos towardzero ldbl-128 -0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2fp-4L : inexact-ok += cos upward ldbl-128 -0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb2f8p-4L : inexact-ok += cos downward ldbl-128ibm -0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fbp-4L : inexact-ok += cos tonearest ldbl-128ibm -0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb4p-4L : inexact-ok += cos towardzero ldbl-128ibm -0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fbp-4L : inexact-ok += cos upward ldbl-128ibm -0xf.fffffp+124L : 0xd.a5f963cdefe6d529f6b6009fb4p-4L : inexact-ok += cos downward dbl-64 -0xf.ffffffffffff8p+1020 : -0xf.fff31767d5bbp-4 : inexact-ok += cos tonearest dbl-64 -0xf.ffffffffffff8p+1020 : -0xf.fff31767d5ba8p-4 : inexact-ok += cos towardzero dbl-64 -0xf.ffffffffffff8p+1020 : -0xf.fff31767d5ba8p-4 : inexact-ok += cos upward dbl-64 -0xf.ffffffffffff8p+1020 : -0xf.fff31767d5ba8p-4 : inexact-ok += cos downward ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e1p-4L : inexact-ok += cos tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos upward ldbl-96-intel -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e1p-4L : inexact-ok += cos tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9ep-4L : inexact-ok += cos downward ldbl-128 -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f138p-4L : inexact-ok += cos tonearest ldbl-128 -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f13p-4L : inexact-ok += cos towardzero ldbl-128 -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f13p-4L : inexact-ok += cos upward ldbl-128 -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f13p-4L : inexact-ok += cos downward ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070f4p-4L : inexact-ok += cos tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070fp-4L : inexact-ok += cos towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070fp-4L : inexact-ok += cos upward ldbl-128ibm -0xf.ffffffffffff8p+1020L : -0xf.fff31767d5ba9e038d934070fp-4L : inexact-ok += cos downward ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50cp-4L : inexact-ok += cos tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50cp-4L : inexact-ok += cos towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d508p-4L : inexact-ok += cos upward ldbl-96-intel -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d508p-4L : inexact-ok += cos downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50cp-4L : inexact-ok += cos tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50cp-4L : inexact-ok += cos towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d508p-4L : inexact-ok += cos upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d508p-4L : inexact-ok += cos downward ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50b7a7f6bc3f5bap-4L : inexact-ok += cos tonearest ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50b7a7f6bc3f5b8p-4L : inexact-ok += cos towardzero ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50b7a7f6bc3f5b8p-4L : inexact-ok += cos upward ldbl-128 -0xf.fffffffffffffffp+16380L : -0x2.002ef4018753d50b7a7f6bc3f5b8p-4L : inexact-ok += cos downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x4.e6dc95fb529bc365f472e4fbc1f8p-4L : inexact-ok += cos tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x4.e6dc95fb529bc365f472e4fbc1f4p-4L : inexact-ok += cos towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x4.e6dc95fb529bc365f472e4fbc1f4p-4L : inexact-ok += cos upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : -0x4.e6dc95fb529bc365f472e4fbc1f4p-4L : inexact-ok += cos downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526978p-4L : inexact-ok += cos tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526974p-4L : inexact-ok += cos towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526974p-4L : inexact-ok += cos upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526974p-4L : inexact-ok += cos downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526ap-4L : inexact-ok += cos tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c230605526ap-4L : inexact-ok += cos towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c2306055268p-4L : inexact-ok += cos upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : -0x5.b773d971a848e75c2306055268p-4L : inexact-ok +cos min += cos downward flt-32 0x4p-128f : 0xf.fffffp-4f : inexact-ok += cos tonearest flt-32 0x4p-128f : 0x1p+0f : inexact-ok += cos towardzero flt-32 0x4p-128f : 0xf.fffffp-4f : inexact-ok += cos upward flt-32 0x4p-128f : 0x1p+0f : inexact-ok += cos downward dbl-64 0x4p-128 : 0xf.ffffffffffff8p-4 : inexact-ok += cos tonearest dbl-64 0x4p-128 : 0x1p+0 : inexact-ok += cos towardzero dbl-64 0x4p-128 : 0xf.ffffffffffff8p-4 : inexact-ok += cos upward dbl-64 0x4p-128 : 0x1p+0 : inexact-ok += cos downward ldbl-96-intel 0x4p-128L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel 0x4p-128L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel 0x4p-128L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel 0x4p-128L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k 0x4p-128L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k 0x4p-128L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k 0x4p-128L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k 0x4p-128L : 0x1p+0L : inexact-ok += cos downward ldbl-128 0x4p-128L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 0x4p-128L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 0x4p-128L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 0x4p-128L : 0x1p+0L : inexact-ok += cos downward ldbl-128ibm 0x4p-128L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos tonearest ldbl-128ibm 0x4p-128L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128ibm 0x4p-128L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos upward ldbl-128ibm 0x4p-128L : 0x1p+0L : inexact-ok += cos downward dbl-64 0x4p-1024 : 0xf.ffffffffffff8p-4 : inexact-ok += cos tonearest dbl-64 0x4p-1024 : 0x1p+0 : inexact-ok += cos towardzero dbl-64 0x4p-1024 : 0xf.ffffffffffff8p-4 : inexact-ok += cos upward dbl-64 0x4p-1024 : 0x1p+0 : inexact-ok += cos downward ldbl-96-intel 0x4p-1024L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel 0x4p-1024L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel 0x4p-1024L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel 0x4p-1024L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k 0x4p-1024L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k 0x4p-1024L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k 0x4p-1024L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k 0x4p-1024L : 0x1p+0L : inexact-ok += cos downward ldbl-128 0x4p-1024L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 0x4p-1024L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 0x4p-1024L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 0x4p-1024L : 0x1p+0L : inexact-ok += cos downward ldbl-128ibm 0x4p-1024L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos tonearest ldbl-128ibm 0x4p-1024L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128ibm 0x4p-1024L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos upward ldbl-128ibm 0x4p-1024L : 0x1p+0L : inexact-ok += cos downward ldbl-96-intel 0x4p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel 0x4p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel 0x4p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel 0x4p-16384L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k 0x4p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k 0x4p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k 0x4p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k 0x4p-16384L : 0x1p+0L : inexact-ok += cos downward ldbl-128 0x4p-16384L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 0x4p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 0x4p-16384L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 0x4p-16384L : 0x1p+0L : inexact-ok += cos downward ldbl-96-intel 0x2p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel 0x2p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel 0x2p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel 0x2p-16384L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k 0x2p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k 0x2p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k 0x2p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k 0x2p-16384L : 0x1p+0L : inexact-ok += cos downward ldbl-128 0x2p-16384L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 0x2p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 0x2p-16384L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 0x2p-16384L : 0x1p+0L : inexact-ok += cos downward dbl-64 0x8p-972 : 0xf.ffffffffffff8p-4 : inexact-ok += cos tonearest dbl-64 0x8p-972 : 0x1p+0 : inexact-ok += cos towardzero dbl-64 0x8p-972 : 0xf.ffffffffffff8p-4 : inexact-ok += cos upward dbl-64 0x8p-972 : 0x1p+0 : inexact-ok += cos downward ldbl-96-intel 0x8p-972L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel 0x8p-972L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel 0x8p-972L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel 0x8p-972L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k 0x8p-972L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k 0x8p-972L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k 0x8p-972L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k 0x8p-972L : 0x1p+0L : inexact-ok += cos downward ldbl-128 0x8p-972L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 0x8p-972L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 0x8p-972L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 0x8p-972L : 0x1p+0L : inexact-ok += cos downward ldbl-128ibm 0x8p-972L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos tonearest ldbl-128ibm 0x8p-972L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128ibm 0x8p-972L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos upward ldbl-128ibm 0x8p-972L : 0x1p+0L : inexact-ok +cos -min += cos downward flt-32 -0x4p-128f : 0xf.fffffp-4f : inexact-ok += cos tonearest flt-32 -0x4p-128f : 0x1p+0f : inexact-ok += cos towardzero flt-32 -0x4p-128f : 0xf.fffffp-4f : inexact-ok += cos upward flt-32 -0x4p-128f : 0x1p+0f : inexact-ok += cos downward dbl-64 -0x4p-128 : 0xf.ffffffffffff8p-4 : inexact-ok += cos tonearest dbl-64 -0x4p-128 : 0x1p+0 : inexact-ok += cos towardzero dbl-64 -0x4p-128 : 0xf.ffffffffffff8p-4 : inexact-ok += cos upward dbl-64 -0x4p-128 : 0x1p+0 : inexact-ok += cos downward ldbl-96-intel -0x4p-128L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel -0x4p-128L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel -0x4p-128L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel -0x4p-128L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k -0x4p-128L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k -0x4p-128L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k -0x4p-128L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k -0x4p-128L : 0x1p+0L : inexact-ok += cos downward ldbl-128 -0x4p-128L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 -0x4p-128L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 -0x4p-128L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 -0x4p-128L : 0x1p+0L : inexact-ok += cos downward ldbl-128ibm -0x4p-128L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos tonearest ldbl-128ibm -0x4p-128L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128ibm -0x4p-128L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos upward ldbl-128ibm -0x4p-128L : 0x1p+0L : inexact-ok += cos downward dbl-64 -0x4p-1024 : 0xf.ffffffffffff8p-4 : inexact-ok += cos tonearest dbl-64 -0x4p-1024 : 0x1p+0 : inexact-ok += cos towardzero dbl-64 -0x4p-1024 : 0xf.ffffffffffff8p-4 : inexact-ok += cos upward dbl-64 -0x4p-1024 : 0x1p+0 : inexact-ok += cos downward ldbl-96-intel -0x4p-1024L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel -0x4p-1024L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel -0x4p-1024L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel -0x4p-1024L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k -0x4p-1024L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k -0x4p-1024L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k -0x4p-1024L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k -0x4p-1024L : 0x1p+0L : inexact-ok += cos downward ldbl-128 -0x4p-1024L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 -0x4p-1024L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 -0x4p-1024L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 -0x4p-1024L : 0x1p+0L : inexact-ok += cos downward ldbl-128ibm -0x4p-1024L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos tonearest ldbl-128ibm -0x4p-1024L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128ibm -0x4p-1024L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos upward ldbl-128ibm -0x4p-1024L : 0x1p+0L : inexact-ok += cos downward ldbl-96-intel -0x4p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel -0x4p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel -0x4p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel -0x4p-16384L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k -0x4p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k -0x4p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k -0x4p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k -0x4p-16384L : 0x1p+0L : inexact-ok += cos downward ldbl-128 -0x4p-16384L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 -0x4p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 -0x4p-16384L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 -0x4p-16384L : 0x1p+0L : inexact-ok += cos downward ldbl-96-intel -0x2p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel -0x2p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel -0x2p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel -0x2p-16384L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k -0x2p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k -0x2p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k -0x2p-16384L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k -0x2p-16384L : 0x1p+0L : inexact-ok += cos downward ldbl-128 -0x2p-16384L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 -0x2p-16384L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 -0x2p-16384L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 -0x2p-16384L : 0x1p+0L : inexact-ok += cos downward dbl-64 -0x8p-972 : 0xf.ffffffffffff8p-4 : inexact-ok += cos tonearest dbl-64 -0x8p-972 : 0x1p+0 : inexact-ok += cos towardzero dbl-64 -0x8p-972 : 0xf.ffffffffffff8p-4 : inexact-ok += cos upward dbl-64 -0x8p-972 : 0x1p+0 : inexact-ok += cos downward ldbl-96-intel -0x8p-972L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel -0x8p-972L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel -0x8p-972L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel -0x8p-972L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k -0x8p-972L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k -0x8p-972L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k -0x8p-972L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k -0x8p-972L : 0x1p+0L : inexact-ok += cos downward ldbl-128 -0x8p-972L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 -0x8p-972L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 -0x8p-972L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 -0x8p-972L : 0x1p+0L : inexact-ok += cos downward ldbl-128ibm -0x8p-972L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos tonearest ldbl-128ibm -0x8p-972L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128ibm -0x8p-972L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos upward ldbl-128ibm -0x8p-972L : 0x1p+0L : inexact-ok +cos min_subnorm += cos downward flt-32 0x8p-152f : 0xf.fffffp-4f : inexact-ok += cos tonearest flt-32 0x8p-152f : 0x1p+0f : inexact-ok += cos towardzero flt-32 0x8p-152f : 0xf.fffffp-4f : inexact-ok += cos upward flt-32 0x8p-152f : 0x1p+0f : inexact-ok += cos downward dbl-64 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok += cos tonearest dbl-64 0x8p-152 : 0x1p+0 : inexact-ok += cos towardzero dbl-64 0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok += cos upward dbl-64 0x8p-152 : 0x1p+0 : inexact-ok += cos downward ldbl-96-intel 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel 0x8p-152L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel 0x8p-152L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k 0x8p-152L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k 0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k 0x8p-152L : 0x1p+0L : inexact-ok += cos downward ldbl-128 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 0x8p-152L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 0x8p-152L : 0x1p+0L : inexact-ok += cos downward ldbl-128ibm 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos tonearest ldbl-128ibm 0x8p-152L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128ibm 0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos upward ldbl-128ibm 0x8p-152L : 0x1p+0L : inexact-ok += cos downward dbl-64 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok += cos tonearest dbl-64 0x4p-1076 : 0x1p+0 : inexact-ok += cos towardzero dbl-64 0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok += cos upward dbl-64 0x4p-1076 : 0x1p+0 : inexact-ok += cos downward ldbl-96-intel 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel 0x4p-1076L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel 0x4p-1076L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k 0x4p-1076L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k 0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k 0x4p-1076L : 0x1p+0L : inexact-ok += cos downward ldbl-128 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 0x4p-1076L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 0x4p-1076L : 0x1p+0L : inexact-ok += cos downward ldbl-128ibm 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos tonearest ldbl-128ibm 0x4p-1076L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128ibm 0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos upward ldbl-128ibm 0x4p-1076L : 0x1p+0L : inexact-ok += cos downward ldbl-96-intel 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel 0x8p-16448L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel 0x8p-16448L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k 0x8p-16448L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k 0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k 0x8p-16448L : 0x1p+0L : inexact-ok += cos downward ldbl-128 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 0x8p-16448L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 0x8p-16448L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k 0x4p-16448L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k 0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k 0x4p-16448L : 0x1p+0L : inexact-ok += cos downward ldbl-128 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 0x4p-16448L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 0x4p-16448L : 0x1p+0L : inexact-ok += cos downward ldbl-128 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 0x4p-16496L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 0x4p-16496L : 0x1p+0L : inexact-ok +cos -min_subnorm += cos downward flt-32 -0x8p-152f : 0xf.fffffp-4f : inexact-ok += cos tonearest flt-32 -0x8p-152f : 0x1p+0f : inexact-ok += cos towardzero flt-32 -0x8p-152f : 0xf.fffffp-4f : inexact-ok += cos upward flt-32 -0x8p-152f : 0x1p+0f : inexact-ok += cos downward dbl-64 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok += cos tonearest dbl-64 -0x8p-152 : 0x1p+0 : inexact-ok += cos towardzero dbl-64 -0x8p-152 : 0xf.ffffffffffff8p-4 : inexact-ok += cos upward dbl-64 -0x8p-152 : 0x1p+0 : inexact-ok += cos downward ldbl-96-intel -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel -0x8p-152L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel -0x8p-152L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k -0x8p-152L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k -0x8p-152L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k -0x8p-152L : 0x1p+0L : inexact-ok += cos downward ldbl-128 -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 -0x8p-152L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 -0x8p-152L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 -0x8p-152L : 0x1p+0L : inexact-ok += cos downward ldbl-128ibm -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos tonearest ldbl-128ibm -0x8p-152L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128ibm -0x8p-152L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos upward ldbl-128ibm -0x8p-152L : 0x1p+0L : inexact-ok += cos downward dbl-64 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok += cos tonearest dbl-64 -0x4p-1076 : 0x1p+0 : inexact-ok += cos towardzero dbl-64 -0x4p-1076 : 0xf.ffffffffffff8p-4 : inexact-ok += cos upward dbl-64 -0x4p-1076 : 0x1p+0 : inexact-ok += cos downward ldbl-96-intel -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel -0x4p-1076L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel -0x4p-1076L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k -0x4p-1076L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k -0x4p-1076L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k -0x4p-1076L : 0x1p+0L : inexact-ok += cos downward ldbl-128 -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 -0x4p-1076L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 -0x4p-1076L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 -0x4p-1076L : 0x1p+0L : inexact-ok += cos downward ldbl-128ibm -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos tonearest ldbl-128ibm -0x4p-1076L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128ibm -0x4p-1076L : 0xf.fffffffffffffffffffffffffcp-4L : inexact-ok += cos upward ldbl-128ibm -0x4p-1076L : 0x1p+0L : inexact-ok += cos downward ldbl-96-intel -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-intel -0x8p-16448L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-intel -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-intel -0x8p-16448L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k -0x8p-16448L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k -0x8p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k -0x8p-16448L : 0x1p+0L : inexact-ok += cos downward ldbl-128 -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 -0x8p-16448L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 -0x8p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 -0x8p-16448L : 0x1p+0L : inexact-ok += cos downward ldbl-96-m68k -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos tonearest ldbl-96-m68k -0x4p-16448L : 0x1p+0L : inexact-ok += cos towardzero ldbl-96-m68k -0x4p-16448L : 0xf.fffffffffffffffp-4L : inexact-ok += cos upward ldbl-96-m68k -0x4p-16448L : 0x1p+0L : inexact-ok += cos downward ldbl-128 -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 -0x4p-16448L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 -0x4p-16448L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 -0x4p-16448L : 0x1p+0L : inexact-ok += cos downward ldbl-128 -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos tonearest ldbl-128 -0x4p-16496L : 0x1p+0L : inexact-ok += cos towardzero ldbl-128 -0x4p-16496L : 0xf.fffffffffffffffffffffffffff8p-4L : inexact-ok += cos upward ldbl-128 -0x4p-16496L : 0x1p+0L : inexact-ok cosh 0 = cosh downward flt-32 0x0p+0f : 0x1p+0f : inexact-ok = cosh tonearest flt-32 0x0p+0f : 0x1p+0f : inexact-ok @@ -38184,6 +48290,2436 @@ cosh 24 = cosh tonearest ldbl-128ibm 0x1.8p+4L : 0x3.156ff6a8ebf6e66f4935281c6p+32L : inexact-ok = cosh towardzero ldbl-128ibm 0x1.8p+4L : 0x3.156ff6a8ebf6e66f4935281c5fp+32L : inexact-ok = cosh upward ldbl-128ibm 0x1.8p+4L : 0x3.156ff6a8ebf6e66f4935281c6p+32L : inexact-ok +cosh 0x1p-5 += cosh downward flt-32 0x8p-8f : 0x1.002p+0f : inexact-ok += cosh tonearest flt-32 0x8p-8f : 0x1.002p+0f : inexact-ok += cosh towardzero flt-32 0x8p-8f : 0x1.002p+0f : inexact-ok += cosh upward flt-32 0x8p-8f : 0x1.002002p+0f : inexact-ok += cosh downward dbl-64 0x8p-8 : 0x1.002000aaac16cp+0 : inexact-ok += cosh tonearest dbl-64 0x8p-8 : 0x1.002000aaac16cp+0 : inexact-ok += cosh towardzero dbl-64 0x8p-8 : 0x1.002000aaac16cp+0 : inexact-ok += cosh upward dbl-64 0x8p-8 : 0x1.002000aaac16dp+0 : inexact-ok += cosh downward ldbl-96-intel 0x8p-8L : 0x1.002000aaac16c30cp+0L : inexact-ok += cosh tonearest ldbl-96-intel 0x8p-8L : 0x1.002000aaac16c30cp+0L : inexact-ok += cosh towardzero ldbl-96-intel 0x8p-8L : 0x1.002000aaac16c30cp+0L : inexact-ok += cosh upward ldbl-96-intel 0x8p-8L : 0x1.002000aaac16c30ep+0L : inexact-ok += cosh downward ldbl-96-m68k 0x8p-8L : 0x1.002000aaac16c30cp+0L : inexact-ok += cosh tonearest ldbl-96-m68k 0x8p-8L : 0x1.002000aaac16c30cp+0L : inexact-ok += cosh towardzero ldbl-96-m68k 0x8p-8L : 0x1.002000aaac16c30cp+0L : inexact-ok += cosh upward ldbl-96-m68k 0x8p-8L : 0x1.002000aaac16c30ep+0L : inexact-ok += cosh downward ldbl-128 0x8p-8L : 0x1.002000aaac16c30c31eaf1bbb19p+0L : inexact-ok += cosh tonearest ldbl-128 0x8p-8L : 0x1.002000aaac16c30c31eaf1bbb19p+0L : inexact-ok += cosh towardzero ldbl-128 0x8p-8L : 0x1.002000aaac16c30c31eaf1bbb19p+0L : inexact-ok += cosh upward ldbl-128 0x8p-8L : 0x1.002000aaac16c30c31eaf1bbb191p+0L : inexact-ok += cosh downward ldbl-128ibm 0x8p-8L : 0x1.002000aaac16c30c31eaf1bbb18p+0L : inexact-ok += cosh tonearest ldbl-128ibm 0x8p-8L : 0x1.002000aaac16c30c31eaf1bbb18p+0L : inexact-ok += cosh towardzero ldbl-128ibm 0x8p-8L : 0x1.002000aaac16c30c31eaf1bbb18p+0L : inexact-ok += cosh upward ldbl-128ibm 0x8p-8L : 0x1.002000aaac16c30c31eaf1bbb2p+0L : inexact-ok +cosh 0x1p-20 += cosh downward flt-32 0x1p-20f : 0x1p+0f : inexact-ok += cosh tonearest flt-32 0x1p-20f : 0x1p+0f : inexact-ok += cosh towardzero flt-32 0x1p-20f : 0x1p+0f : inexact-ok += cosh upward flt-32 0x1p-20f : 0x1.000002p+0f : inexact-ok += cosh downward dbl-64 0x1p-20 : 0x1.00000000008p+0 : inexact-ok += cosh tonearest dbl-64 0x1p-20 : 0x1.00000000008p+0 : inexact-ok += cosh towardzero dbl-64 0x1p-20 : 0x1.00000000008p+0 : inexact-ok += cosh upward dbl-64 0x1p-20 : 0x1.0000000000801p+0 : inexact-ok += cosh downward ldbl-96-intel 0x1p-20L : 0x1.00000000008p+0L : inexact-ok += cosh tonearest ldbl-96-intel 0x1p-20L : 0x1.00000000008p+0L : inexact-ok += cosh towardzero ldbl-96-intel 0x1p-20L : 0x1.00000000008p+0L : inexact-ok += cosh upward ldbl-96-intel 0x1p-20L : 0x1.0000000000800002p+0L : inexact-ok += cosh downward ldbl-96-m68k 0x1p-20L : 0x1.00000000008p+0L : inexact-ok += cosh tonearest ldbl-96-m68k 0x1p-20L : 0x1.00000000008p+0L : inexact-ok += cosh towardzero ldbl-96-m68k 0x1p-20L : 0x1.00000000008p+0L : inexact-ok += cosh upward ldbl-96-m68k 0x1p-20L : 0x1.0000000000800002p+0L : inexact-ok += cosh downward ldbl-128 0x1p-20L : 0x1.000000000080000000000aaaaaaap+0L : inexact-ok += cosh tonearest ldbl-128 0x1p-20L : 0x1.000000000080000000000aaaaaabp+0L : inexact-ok += cosh towardzero ldbl-128 0x1p-20L : 0x1.000000000080000000000aaaaaaap+0L : inexact-ok += cosh upward ldbl-128 0x1p-20L : 0x1.000000000080000000000aaaaaabp+0L : inexact-ok += cosh downward ldbl-128ibm 0x1p-20L : 0x1.000000000080000000000aaaaa8p+0L : inexact-ok += cosh tonearest ldbl-128ibm 0x1p-20L : 0x1.000000000080000000000aaaaa8p+0L : inexact-ok += cosh towardzero ldbl-128ibm 0x1p-20L : 0x1.000000000080000000000aaaaa8p+0L : inexact-ok += cosh upward ldbl-128ibm 0x1p-20L : 0x1.000000000080000000000aaaabp+0L : inexact-ok +cosh -1 += cosh downward flt-32 -0x1p+0f : 0x1.8b0754p+0f : inexact-ok += cosh tonearest flt-32 -0x1p+0f : 0x1.8b0756p+0f : inexact-ok += cosh towardzero flt-32 -0x1p+0f : 0x1.8b0754p+0f : inexact-ok += cosh upward flt-32 -0x1p+0f : 0x1.8b0756p+0f : inexact-ok += cosh downward dbl-64 -0x1p+0 : 0x1.8b07551d9f55p+0 : inexact-ok += cosh tonearest dbl-64 -0x1p+0 : 0x1.8b07551d9f55p+0 : inexact-ok += cosh towardzero dbl-64 -0x1p+0 : 0x1.8b07551d9f55p+0 : inexact-ok += cosh upward dbl-64 -0x1p+0 : 0x1.8b07551d9f551p+0 : inexact-ok += cosh downward ldbl-96-intel -0x1p+0L : 0x1.8b07551d9f5504c2p+0L : inexact-ok += cosh tonearest ldbl-96-intel -0x1p+0L : 0x1.8b07551d9f5504c2p+0L : inexact-ok += cosh towardzero ldbl-96-intel -0x1p+0L : 0x1.8b07551d9f5504c2p+0L : inexact-ok += cosh upward ldbl-96-intel -0x1p+0L : 0x1.8b07551d9f5504c4p+0L : inexact-ok += cosh downward ldbl-96-m68k -0x1p+0L : 0x1.8b07551d9f5504c2p+0L : inexact-ok += cosh tonearest ldbl-96-m68k -0x1p+0L : 0x1.8b07551d9f5504c2p+0L : inexact-ok += cosh towardzero ldbl-96-m68k -0x1p+0L : 0x1.8b07551d9f5504c2p+0L : inexact-ok += cosh upward ldbl-96-m68k -0x1p+0L : 0x1.8b07551d9f5504c4p+0L : inexact-ok += cosh downward ldbl-128 -0x1p+0L : 0x1.8b07551d9f5504c2bd28100196a4p+0L : inexact-ok += cosh tonearest ldbl-128 -0x1p+0L : 0x1.8b07551d9f5504c2bd28100196a5p+0L : inexact-ok += cosh towardzero ldbl-128 -0x1p+0L : 0x1.8b07551d9f5504c2bd28100196a4p+0L : inexact-ok += cosh upward ldbl-128 -0x1p+0L : 0x1.8b07551d9f5504c2bd28100196a5p+0L : inexact-ok += cosh downward ldbl-128ibm -0x1p+0L : 0x1.8b07551d9f5504c2bd281001968p+0L : inexact-ok += cosh tonearest ldbl-128ibm -0x1p+0L : 0x1.8b07551d9f5504c2bd281001968p+0L : inexact-ok += cosh towardzero ldbl-128ibm -0x1p+0L : 0x1.8b07551d9f5504c2bd281001968p+0L : inexact-ok += cosh upward ldbl-128ibm -0x1p+0L : 0x1.8b07551d9f5504c2bd28100197p+0L : inexact-ok +cosh 50 += cosh downward flt-32 0x3.2p+4f : 0x8.c881fp+68f : inexact-ok += cosh tonearest flt-32 0x3.2p+4f : 0x8.c881fp+68f : inexact-ok += cosh towardzero flt-32 0x3.2p+4f : 0x8.c881fp+68f : inexact-ok += cosh upward flt-32 0x3.2p+4f : 0x8.c882p+68f : inexact-ok += cosh downward dbl-64 0x3.2p+4 : 0x8.c881f20405a28p+68 : inexact-ok += cosh tonearest dbl-64 0x3.2p+4 : 0x8.c881f20405a28p+68 : inexact-ok += cosh towardzero dbl-64 0x3.2p+4 : 0x8.c881f20405a28p+68 : inexact-ok += cosh upward dbl-64 0x3.2p+4 : 0x8.c881f20405a3p+68 : inexact-ok += cosh downward ldbl-96-intel 0x3.2p+4L : 0x8.c881f20405a2b32p+68L : inexact-ok += cosh tonearest ldbl-96-intel 0x3.2p+4L : 0x8.c881f20405a2b32p+68L : inexact-ok += cosh towardzero ldbl-96-intel 0x3.2p+4L : 0x8.c881f20405a2b32p+68L : inexact-ok += cosh upward ldbl-96-intel 0x3.2p+4L : 0x8.c881f20405a2b33p+68L : inexact-ok += cosh downward ldbl-96-m68k 0x3.2p+4L : 0x8.c881f20405a2b32p+68L : inexact-ok += cosh tonearest ldbl-96-m68k 0x3.2p+4L : 0x8.c881f20405a2b32p+68L : inexact-ok += cosh towardzero ldbl-96-m68k 0x3.2p+4L : 0x8.c881f20405a2b32p+68L : inexact-ok += cosh upward ldbl-96-m68k 0x3.2p+4L : 0x8.c881f20405a2b33p+68L : inexact-ok += cosh downward ldbl-128 0x3.2p+4L : 0x8.c881f20405a2b326bba067c62ecp+68L : inexact-ok += cosh tonearest ldbl-128 0x3.2p+4L : 0x8.c881f20405a2b326bba067c62ec8p+68L : inexact-ok += cosh towardzero ldbl-128 0x3.2p+4L : 0x8.c881f20405a2b326bba067c62ecp+68L : inexact-ok += cosh upward ldbl-128 0x3.2p+4L : 0x8.c881f20405a2b326bba067c62ec8p+68L : inexact-ok += cosh downward ldbl-128ibm 0x3.2p+4L : 0x8.c881f20405a2b326bba067c62cp+68L : inexact-ok += cosh tonearest ldbl-128ibm 0x3.2p+4L : 0x8.c881f20405a2b326bba067c63p+68L : inexact-ok += cosh towardzero ldbl-128ibm 0x3.2p+4L : 0x8.c881f20405a2b326bba067c62cp+68L : inexact-ok += cosh upward ldbl-128ibm 0x3.2p+4L : 0x8.c881f20405a2b326bba067c63p+68L : inexact-ok +cosh max no-test-inline += cosh downward flt-32 0xf.fffffp+124f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0xf.fffffp+124f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 0xf.fffffp+124f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 0xf.fffffp+124f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0xf.fffffp+124 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0xf.fffffp+124 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange +cosh -max no-test-inline += cosh downward flt-32 -0xf.fffffp+124f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0xf.fffffp+124f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 -0xf.fffffp+124f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0xf.fffffp+124f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0xf.fffffp+124 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0xf.fffffp+124 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0xf.fffffp+124L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0xf.ffffffffffff8p+1020 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0xf.ffffffffffff8p+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0xf.fffffffffffffffp+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : no-test-inline inexact-ok overflow errno-erange +cosh min spurious-underflow += cosh downward flt-32 0x4p-128f : 0x1p+0f : inexact-ok underflow-ok += cosh tonearest flt-32 0x4p-128f : 0x1p+0f : inexact-ok underflow-ok += cosh towardzero flt-32 0x4p-128f : 0x1p+0f : inexact-ok underflow-ok += cosh upward flt-32 0x4p-128f : 0x1.000002p+0f : inexact-ok underflow-ok += cosh downward dbl-64 0x4p-128 : 0x1p+0 : inexact-ok underflow-ok += cosh tonearest dbl-64 0x4p-128 : 0x1p+0 : inexact-ok underflow-ok += cosh towardzero dbl-64 0x4p-128 : 0x1p+0 : inexact-ok underflow-ok += cosh upward dbl-64 0x4p-128 : 0x1.0000000000001p+0 : inexact-ok underflow-ok += cosh downward ldbl-96-intel 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel 0x4p-128L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k 0x4p-128L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 0x4p-128L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128ibm 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128ibm 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128ibm 0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128ibm 0x4p-128L : 0x1.000000000000000000000000008p+0L : inexact-ok underflow-ok += cosh downward dbl-64 0x4p-1024 : 0x1p+0 : inexact-ok underflow-ok += cosh tonearest dbl-64 0x4p-1024 : 0x1p+0 : inexact-ok underflow-ok += cosh towardzero dbl-64 0x4p-1024 : 0x1p+0 : inexact-ok underflow-ok += cosh upward dbl-64 0x4p-1024 : 0x1.0000000000001p+0 : inexact-ok underflow-ok += cosh downward ldbl-96-intel 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel 0x4p-1024L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k 0x4p-1024L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 0x4p-1024L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128ibm 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128ibm 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128ibm 0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128ibm 0x4p-1024L : 0x1.000000000000000000000000008p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-intel 0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel 0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel 0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel 0x4p-16384L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k 0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k 0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k 0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k 0x4p-16384L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 0x4p-16384L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-intel 0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel 0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel 0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel 0x2p-16384L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k 0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k 0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k 0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k 0x2p-16384L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 0x2p-16384L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward dbl-64 0x8p-972 : 0x1p+0 : inexact-ok underflow-ok += cosh tonearest dbl-64 0x8p-972 : 0x1p+0 : inexact-ok underflow-ok += cosh towardzero dbl-64 0x8p-972 : 0x1p+0 : inexact-ok underflow-ok += cosh upward dbl-64 0x8p-972 : 0x1.0000000000001p+0 : inexact-ok underflow-ok += cosh downward ldbl-96-intel 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel 0x8p-972L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k 0x8p-972L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 0x8p-972L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128ibm 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128ibm 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128ibm 0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128ibm 0x8p-972L : 0x1.000000000000000000000000008p+0L : inexact-ok underflow-ok +cosh -min spurious-underflow += cosh downward flt-32 -0x4p-128f : 0x1p+0f : inexact-ok underflow-ok += cosh tonearest flt-32 -0x4p-128f : 0x1p+0f : inexact-ok underflow-ok += cosh towardzero flt-32 -0x4p-128f : 0x1p+0f : inexact-ok underflow-ok += cosh upward flt-32 -0x4p-128f : 0x1.000002p+0f : inexact-ok underflow-ok += cosh downward dbl-64 -0x4p-128 : 0x1p+0 : inexact-ok underflow-ok += cosh tonearest dbl-64 -0x4p-128 : 0x1p+0 : inexact-ok underflow-ok += cosh towardzero dbl-64 -0x4p-128 : 0x1p+0 : inexact-ok underflow-ok += cosh upward dbl-64 -0x4p-128 : 0x1.0000000000001p+0 : inexact-ok underflow-ok += cosh downward ldbl-96-intel -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel -0x4p-128L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k -0x4p-128L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 -0x4p-128L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128ibm -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128ibm -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128ibm -0x4p-128L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128ibm -0x4p-128L : 0x1.000000000000000000000000008p+0L : inexact-ok underflow-ok += cosh downward dbl-64 -0x4p-1024 : 0x1p+0 : inexact-ok underflow-ok += cosh tonearest dbl-64 -0x4p-1024 : 0x1p+0 : inexact-ok underflow-ok += cosh towardzero dbl-64 -0x4p-1024 : 0x1p+0 : inexact-ok underflow-ok += cosh upward dbl-64 -0x4p-1024 : 0x1.0000000000001p+0 : inexact-ok underflow-ok += cosh downward ldbl-96-intel -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel -0x4p-1024L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k -0x4p-1024L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 -0x4p-1024L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128ibm -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128ibm -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128ibm -0x4p-1024L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128ibm -0x4p-1024L : 0x1.000000000000000000000000008p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-intel -0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel -0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel -0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel -0x4p-16384L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k -0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k -0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k -0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k -0x4p-16384L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 -0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 -0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 -0x4p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 -0x4p-16384L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-intel -0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel -0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel -0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel -0x2p-16384L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k -0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k -0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k -0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k -0x2p-16384L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 -0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 -0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 -0x2p-16384L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 -0x2p-16384L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward dbl-64 -0x8p-972 : 0x1p+0 : inexact-ok underflow-ok += cosh tonearest dbl-64 -0x8p-972 : 0x1p+0 : inexact-ok underflow-ok += cosh towardzero dbl-64 -0x8p-972 : 0x1p+0 : inexact-ok underflow-ok += cosh upward dbl-64 -0x8p-972 : 0x1.0000000000001p+0 : inexact-ok underflow-ok += cosh downward ldbl-96-intel -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel -0x8p-972L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k -0x8p-972L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 -0x8p-972L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128ibm -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128ibm -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128ibm -0x8p-972L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128ibm -0x8p-972L : 0x1.000000000000000000000000008p+0L : inexact-ok underflow-ok +cosh min_subnorm spurious-underflow += cosh downward flt-32 0x8p-152f : 0x1p+0f : inexact-ok underflow-ok += cosh tonearest flt-32 0x8p-152f : 0x1p+0f : inexact-ok underflow-ok += cosh towardzero flt-32 0x8p-152f : 0x1p+0f : inexact-ok underflow-ok += cosh upward flt-32 0x8p-152f : 0x1.000002p+0f : inexact-ok underflow-ok += cosh downward dbl-64 0x8p-152 : 0x1p+0 : inexact-ok underflow-ok += cosh tonearest dbl-64 0x8p-152 : 0x1p+0 : inexact-ok underflow-ok += cosh towardzero dbl-64 0x8p-152 : 0x1p+0 : inexact-ok underflow-ok += cosh upward dbl-64 0x8p-152 : 0x1.0000000000001p+0 : inexact-ok underflow-ok += cosh downward ldbl-96-intel 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k 0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128ibm 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128ibm 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128ibm 0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128ibm 0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok underflow-ok += cosh downward dbl-64 0x4p-1076 : 0x1p+0 : inexact-ok underflow-ok += cosh tonearest dbl-64 0x4p-1076 : 0x1p+0 : inexact-ok underflow-ok += cosh towardzero dbl-64 0x4p-1076 : 0x1p+0 : inexact-ok underflow-ok += cosh upward dbl-64 0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok underflow-ok += cosh downward ldbl-96-intel 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k 0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128ibm 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128ibm 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128ibm 0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128ibm 0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-intel 0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel 0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel 0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k 0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k 0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k 0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k 0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k 0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k 0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k 0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k 0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 0x4p-16496L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 0x4p-16496L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 0x4p-16496L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok +cosh -min_subnorm spurious-underflow += cosh downward flt-32 -0x8p-152f : 0x1p+0f : inexact-ok underflow-ok += cosh tonearest flt-32 -0x8p-152f : 0x1p+0f : inexact-ok underflow-ok += cosh towardzero flt-32 -0x8p-152f : 0x1p+0f : inexact-ok underflow-ok += cosh upward flt-32 -0x8p-152f : 0x1.000002p+0f : inexact-ok underflow-ok += cosh downward dbl-64 -0x8p-152 : 0x1p+0 : inexact-ok underflow-ok += cosh tonearest dbl-64 -0x8p-152 : 0x1p+0 : inexact-ok underflow-ok += cosh towardzero dbl-64 -0x8p-152 : 0x1p+0 : inexact-ok underflow-ok += cosh upward dbl-64 -0x8p-152 : 0x1.0000000000001p+0 : inexact-ok underflow-ok += cosh downward ldbl-96-intel -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k -0x8p-152L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 -0x8p-152L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128ibm -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128ibm -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128ibm -0x8p-152L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128ibm -0x8p-152L : 0x1.000000000000000000000000008p+0L : inexact-ok underflow-ok += cosh downward dbl-64 -0x4p-1076 : 0x1p+0 : inexact-ok underflow-ok += cosh tonearest dbl-64 -0x4p-1076 : 0x1p+0 : inexact-ok underflow-ok += cosh towardzero dbl-64 -0x4p-1076 : 0x1p+0 : inexact-ok underflow-ok += cosh upward dbl-64 -0x4p-1076 : 0x1.0000000000001p+0 : inexact-ok underflow-ok += cosh downward ldbl-96-intel -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k -0x4p-1076L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 -0x4p-1076L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128ibm -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128ibm -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128ibm -0x4p-1076L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128ibm -0x4p-1076L : 0x1.000000000000000000000000008p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-intel -0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-intel -0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-intel -0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-intel -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k -0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k -0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k -0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k -0x8p-16448L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 -0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 -0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 -0x8p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 -0x8p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-96-m68k -0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-96-m68k -0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-96-m68k -0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-96-m68k -0x4p-16448L : 0x1.0000000000000002p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 -0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 -0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 -0x4p-16448L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 -0x4p-16448L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok += cosh downward ldbl-128 -0x4p-16496L : 0x1p+0L : inexact-ok underflow-ok += cosh tonearest ldbl-128 -0x4p-16496L : 0x1p+0L : inexact-ok underflow-ok += cosh towardzero ldbl-128 -0x4p-16496L : 0x1p+0L : inexact-ok underflow-ok += cosh upward ldbl-128 -0x4p-16496L : 0x1.0000000000000000000000000001p+0L : inexact-ok underflow-ok +cosh 0x5.96a7ep+4 += cosh downward flt-32 0x5.96a7ep+4f : 0xf.fffecp+124f : inexact-ok += cosh tonearest flt-32 0x5.96a7ep+4f : 0xf.fffecp+124f : inexact-ok += cosh towardzero flt-32 0x5.96a7ep+4f : 0xf.fffecp+124f : inexact-ok += cosh upward flt-32 0x5.96a7ep+4f : 0xf.fffedp+124f : inexact-ok += cosh downward dbl-64 0x5.96a7ep+4 : 0xf.fffec1f47394p+124 : inexact-ok += cosh tonearest dbl-64 0x5.96a7ep+4 : 0xf.fffec1f47394p+124 : inexact-ok += cosh towardzero dbl-64 0x5.96a7ep+4 : 0xf.fffec1f47394p+124 : inexact-ok += cosh upward dbl-64 0x5.96a7ep+4 : 0xf.fffec1f473948p+124 : inexact-ok += cosh downward ldbl-96-intel 0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh tonearest ldbl-96-intel 0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh towardzero ldbl-96-intel 0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh upward ldbl-96-intel 0x5.96a7ep+4L : 0xf.fffec1f473940d3p+124L : inexact-ok += cosh downward ldbl-96-m68k 0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh tonearest ldbl-96-m68k 0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh towardzero ldbl-96-m68k 0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh upward ldbl-96-m68k 0x5.96a7ep+4L : 0xf.fffec1f473940d3p+124L : inexact-ok += cosh downward ldbl-128 0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac65d8p+124L : inexact-ok += cosh tonearest ldbl-128 0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac65ep+124L : inexact-ok += cosh towardzero ldbl-128 0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac65d8p+124L : inexact-ok += cosh upward ldbl-128 0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac65ep+124L : inexact-ok += cosh downward ldbl-128ibm 0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac64p+124L : inexact-ok += cosh tonearest ldbl-128ibm 0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac64p+124L : inexact-ok += cosh towardzero ldbl-128ibm 0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac64p+124L : inexact-ok += cosh upward ldbl-128ibm 0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac68p+124L : inexact-ok +cosh 0x5.96a7e8p+4 += cosh downward flt-32 0x5.96a7e8p+4f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x5.96a7e8p+4f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 0x5.96a7e8p+4f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x5.96a7e8p+4f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 0x5.96a7e8p+4 : 0x1.00006c1f5d48ep+128 : inexact-ok += cosh tonearest dbl-64 0x5.96a7e8p+4 : 0x1.00006c1f5d48ep+128 : inexact-ok += cosh towardzero dbl-64 0x5.96a7e8p+4 : 0x1.00006c1f5d48ep+128 : inexact-ok += cosh upward dbl-64 0x5.96a7e8p+4 : 0x1.00006c1f5d48fp+128 : inexact-ok += cosh downward ldbl-96-intel 0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh tonearest ldbl-96-intel 0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh towardzero ldbl-96-intel 0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh upward ldbl-96-intel 0x5.96a7e8p+4L : 0x1.00006c1f5d48e74ap+128L : inexact-ok += cosh downward ldbl-96-m68k 0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh tonearest ldbl-96-m68k 0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh towardzero ldbl-96-m68k 0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh upward ldbl-96-m68k 0x5.96a7e8p+4L : 0x1.00006c1f5d48e74ap+128L : inexact-ok += cosh downward ldbl-128 0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e7cp+128L : inexact-ok += cosh tonearest ldbl-128 0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e7cp+128L : inexact-ok += cosh towardzero ldbl-128 0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e7cp+128L : inexact-ok += cosh upward ldbl-128 0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e7dp+128L : inexact-ok += cosh downward ldbl-128ibm 0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02ep+128L : inexact-ok += cosh tonearest ldbl-128ibm 0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e8p+128L : inexact-ok += cosh towardzero ldbl-128ibm 0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02ep+128L : inexact-ok += cosh upward ldbl-128ibm 0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e8p+128L : inexact-ok +cosh -0x5.96a7ep+4 += cosh downward flt-32 -0x5.96a7ep+4f : 0xf.fffecp+124f : inexact-ok += cosh tonearest flt-32 -0x5.96a7ep+4f : 0xf.fffecp+124f : inexact-ok += cosh towardzero flt-32 -0x5.96a7ep+4f : 0xf.fffecp+124f : inexact-ok += cosh upward flt-32 -0x5.96a7ep+4f : 0xf.fffedp+124f : inexact-ok += cosh downward dbl-64 -0x5.96a7ep+4 : 0xf.fffec1f47394p+124 : inexact-ok += cosh tonearest dbl-64 -0x5.96a7ep+4 : 0xf.fffec1f47394p+124 : inexact-ok += cosh towardzero dbl-64 -0x5.96a7ep+4 : 0xf.fffec1f47394p+124 : inexact-ok += cosh upward dbl-64 -0x5.96a7ep+4 : 0xf.fffec1f473948p+124 : inexact-ok += cosh downward ldbl-96-intel -0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh tonearest ldbl-96-intel -0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh towardzero ldbl-96-intel -0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh upward ldbl-96-intel -0x5.96a7ep+4L : 0xf.fffec1f473940d3p+124L : inexact-ok += cosh downward ldbl-96-m68k -0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh tonearest ldbl-96-m68k -0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh towardzero ldbl-96-m68k -0x5.96a7ep+4L : 0xf.fffec1f473940d2p+124L : inexact-ok += cosh upward ldbl-96-m68k -0x5.96a7ep+4L : 0xf.fffec1f473940d3p+124L : inexact-ok += cosh downward ldbl-128 -0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac65d8p+124L : inexact-ok += cosh tonearest ldbl-128 -0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac65ep+124L : inexact-ok += cosh towardzero ldbl-128 -0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac65d8p+124L : inexact-ok += cosh upward ldbl-128 -0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac65ep+124L : inexact-ok += cosh downward ldbl-128ibm -0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac64p+124L : inexact-ok += cosh tonearest ldbl-128ibm -0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac64p+124L : inexact-ok += cosh towardzero ldbl-128ibm -0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac64p+124L : inexact-ok += cosh upward ldbl-128ibm -0x5.96a7ep+4L : 0xf.fffec1f473940d22f2195eac68p+124L : inexact-ok +cosh -0x5.96a7e8p+4 += cosh downward flt-32 -0x5.96a7e8p+4f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x5.96a7e8p+4f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x5.96a7e8p+4f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x5.96a7e8p+4f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x5.96a7e8p+4 : 0x1.00006c1f5d48ep+128 : inexact-ok += cosh tonearest dbl-64 -0x5.96a7e8p+4 : 0x1.00006c1f5d48ep+128 : inexact-ok += cosh towardzero dbl-64 -0x5.96a7e8p+4 : 0x1.00006c1f5d48ep+128 : inexact-ok += cosh upward dbl-64 -0x5.96a7e8p+4 : 0x1.00006c1f5d48fp+128 : inexact-ok += cosh downward ldbl-96-intel -0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh tonearest ldbl-96-intel -0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh towardzero ldbl-96-intel -0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh upward ldbl-96-intel -0x5.96a7e8p+4L : 0x1.00006c1f5d48e74ap+128L : inexact-ok += cosh downward ldbl-96-m68k -0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh tonearest ldbl-96-m68k -0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh towardzero ldbl-96-m68k -0x5.96a7e8p+4L : 0x1.00006c1f5d48e748p+128L : inexact-ok += cosh upward ldbl-96-m68k -0x5.96a7e8p+4L : 0x1.00006c1f5d48e74ap+128L : inexact-ok += cosh downward ldbl-128 -0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e7cp+128L : inexact-ok += cosh tonearest ldbl-128 -0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e7cp+128L : inexact-ok += cosh towardzero ldbl-128 -0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e7cp+128L : inexact-ok += cosh upward ldbl-128 -0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e7dp+128L : inexact-ok += cosh downward ldbl-128ibm -0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02ep+128L : inexact-ok += cosh tonearest ldbl-128ibm -0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e8p+128L : inexact-ok += cosh towardzero ldbl-128ibm -0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02ep+128L : inexact-ok += cosh upward ldbl-128ibm -0x5.96a7e8p+4L : 0x1.00006c1f5d48e7480e07d1c02e8p+128L : inexact-ok +cosh 0x2.c679d1f73f0fap+8 += cosh downward flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh tonearest ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh upward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh tonearest dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh towardzero dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh upward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : inexact-ok += cosh downward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh tonearest ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh tonearest ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh upward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : inexact-ok += cosh downward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok += cosh tonearest dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh towardzero dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok += cosh upward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh downward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : inexact-ok +cosh 0x2.c679d1f73f0fcp+8 += cosh downward flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh tonearest ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh upward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh tonearest dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh towardzero dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh upward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : inexact-ok += cosh downward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh tonearest ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh tonearest ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh upward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : inexact-ok += cosh downward dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange +cosh -0x2.c679d1f73f0fap+8 += cosh downward flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh tonearest dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh towardzero dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh upward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : inexact-ok += cosh downward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh tonearest ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh tonearest ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh upward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : inexact-ok += cosh downward flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh tonearest ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh upward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok += cosh tonearest dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh towardzero dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok += cosh upward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh downward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : inexact-ok +cosh -0x2.c679d1f73f0fcp+8 += cosh downward flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh tonearest dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh towardzero dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh upward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : inexact-ok += cosh downward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh tonearest ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh tonearest ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh upward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : inexact-ok += cosh downward flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh tonearest ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh upward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange +cosh 0x2.c679d1f73f0fb624d358b213a7p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 += cosh downward flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679d4p+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c679d4p+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d4p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679dp+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh towardzero dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh towardzero dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303a8p+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303a8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff304p+1020L : inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok +cosh 0x2.c679d1f73f0fb624d358b213a8p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 += cosh downward flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679d4p+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c679d4p+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d4p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679dp+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh towardzero dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh towardzero dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303a8p+1020L : inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303a8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a8p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a8p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange +cosh -0x2.c679d1f73f0fb624d358b213a7p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 += cosh downward flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679dp+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh towardzero dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679d4p+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c679d4p+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d4p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh towardzero dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303a8p+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303a8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff304p+1020L : inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok +cosh -0x2.c679d1f73f0fb624d358b213a8p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 += cosh downward flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679dp+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh towardzero dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679d4p+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c679d4p+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d4p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh towardzero dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh tonearest ldbl-128 -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303a8p+1020L : inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303a8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a8p+8L : plus_infty : inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a8p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange +cosh 0x2.c5d37700c6bb03a4p+12 no-test-inline += cosh downward flt-32 0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward flt-32 0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58a8p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b423p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange +cosh 0x2.c5d37700c6bb03a8p+12 no-test-inline += cosh downward flt-32 0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward flt-32 0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58a8p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange +cosh -0x2.c5d37700c6bb03a4p+12 no-test-inline += cosh downward flt-32 -0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward flt-32 -0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58a8p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b423p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange +cosh -0x2.c5d37700c6bb03a8p+12 no-test-inline += cosh downward flt-32 -0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward flt-32 -0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58a8p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange +cosh 0x2.c5d37700c6bb03a6c24b6c9b494cp+12 no-test-inline += cosh downward flt-32 0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward flt-32 0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58a8p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b423p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : 0xf.ffffffffffffffffffffffffe61p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : 0xf.ffffffffffffffffffffffffe61p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : 0xf.ffffffffffffffffffffffffe61p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : 0xf.ffffffffffffffffffffffffe618p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e618p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange +cosh 0x2.c5d37700c6bb03a6c24b6c9b494ep+12 no-test-inline += cosh downward flt-32 0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward flt-32 0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k 0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58a8p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b423p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b494ep+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b494ep+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b494ep+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b494ep+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e618p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c5d37700c6bb03a6c24b6c9b49p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange +cosh -0x2.c5d37700c6bb03a6c24b6c9b494cp+12 no-test-inline += cosh downward flt-32 -0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward flt-32 -0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58a8p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b423p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : 0xf.ffffffffffffffffffffffffe61p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : 0xf.ffffffffffffffffffffffffe61p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : 0xf.ffffffffffffffffffffffffe61p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b494cp+12L : 0xf.ffffffffffffffffffffffffe618p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e618p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange +cosh -0x2.c5d37700c6bb03a6c24b6c9b494ep+12 no-test-inline += cosh downward flt-32 -0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c5d374p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c5d374p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d374p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d374p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3206p+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k -0x2.c5d374p+12L : 0xf.fcff8165c0f3207p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab39217878p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d374p+12L : 0xf.fcff8165c0f3206f5cab3921788p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d374p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d374p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward flt-32 -0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest flt-32 -0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero flt-32 -0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d378p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d378p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0x2.c5d378p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d378p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d378p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d378p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d37700c6bbp+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d37700c6bbp+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58ap+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d37700c6bbp+12L : 0xf.fffffffffc593db49365215d58a8p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bbp+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bbp+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest dbl-64 -0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero dbl-64 -0x2.c5d37700c6bb2p+12 : 0xf.ffffffffffff8p+1020 : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c5d37700c6bb2p+12 : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d37700c6bb2p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb2p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb2p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dbp+16380L : no-test-inline inexact-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3dcp+16380L : no-test-inline inexact-ok += cosh downward ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b422f8p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a4p+12L : 0xf.fffffffffffd3db49364b6b423p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb03a4p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-intel -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffp+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-96-m68k -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a8p+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb03a8p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b494ep+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b494ep+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b494ep+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b494ep+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e61p+16380L : no-test-inline inexact-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffffffffffffb3e618p+16380L : no-test-inline inexact-ok += cosh downward ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b49p+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.fffffffffffffffffffffffffff8p+16380L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128 -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh downward ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh tonearest ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : no-test-inline inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c5d37700c6bb03a6c24b6c9b4ap+12L : plus_infty : no-test-inline inexact-ok overflow errno-erange cpow 1 0 0 0 = cpow downward flt-32 0x1p+0f 0x0p+0f 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok = cpow tonearest flt-32 0x1p+0f 0x0p+0f 0x0p+0f 0x0p+0f : 0x1p+0f 0x0p+0f : inexact-ok diff --git a/math/libm-test.inc b/math/libm-test.inc index abe12dbe2e..523514943b 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -1727,6 +1727,13 @@ static const struct test_f_f_data acosh_test_data[] = TEST_f_f (acosh, qnan_value, qnan_value, NO_INEXACT_EXCEPTION), /* x < 1: */ + TEST_f_f (acosh, 0.75L, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), + TEST_f_f (acosh, min_value, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), + TEST_f_f (acosh, min_subnorm_value, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), + TEST_f_f (acosh, plus_zero, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), + TEST_f_f (acosh, minus_zero, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), + TEST_f_f (acosh, -min_subnorm_value, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), + TEST_f_f (acosh, -min_value, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), TEST_f_f (acosh, -1.125L, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), TEST_f_f (acosh, -max_value, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), @@ -1866,6 +1873,8 @@ static const struct test_f_f_data atanh_test_data[] = TEST_f_f (atanh, -1.125L, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), TEST_f_f (atanh, max_value, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), TEST_f_f (atanh, -max_value, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), + TEST_f_f (atanh, plus_infty, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), + TEST_f_f (atanh, minus_infty, qnan_value, INVALID_EXCEPTION|ERRNO_EDOM), AUTO_TESTS_f_f (atanh, tonearest), }; @@ -5915,12 +5924,18 @@ static const struct test_f_f_data ceil_test_data[] = /* Bug 15479: spurious "inexact" exception may occur. */ TEST_f_f (ceil, M_PIl, 4.0), TEST_f_f (ceil, -M_PIl, -3.0), + TEST_f_f (ceil, min_subnorm_value, 1.0), + TEST_f_f (ceil, min_value, 1.0), TEST_f_f (ceil, 0.1, 1.0), TEST_f_f (ceil, 0.25, 1.0), TEST_f_f (ceil, 0.625, 1.0), + TEST_f_f (ceil, max_value, max_value), + TEST_f_f (ceil, -min_subnorm_value, minus_zero), + TEST_f_f (ceil, -min_value, minus_zero), TEST_f_f (ceil, -0.1, minus_zero), TEST_f_f (ceil, -0.25, minus_zero), TEST_f_f (ceil, -0.625, minus_zero), + TEST_f_f (ceil, -max_value, -max_value), #ifdef TEST_LDOUBLE /* The result can only be represented in long double. */ @@ -6403,6 +6418,21 @@ static const struct test_ff_f_data copysign_test_data[] = TEST_ff_f (copysign, qnan_value, minus_zero, -qnan_value, NO_INEXACT_EXCEPTION|TEST_NAN_SIGN), TEST_ff_f (copysign, -qnan_value, 0, qnan_value, NO_INEXACT_EXCEPTION|TEST_NAN_SIGN), TEST_ff_f (copysign, -qnan_value, minus_zero, -qnan_value, NO_INEXACT_EXCEPTION|TEST_NAN_SIGN), + + TEST_ff_f (copysign, min_value, min_subnorm_value, min_value, NO_INEXACT_EXCEPTION), + TEST_ff_f (copysign, min_value, -min_subnorm_value, -min_value, NO_INEXACT_EXCEPTION), + TEST_ff_f (copysign, -min_value, min_subnorm_value, min_value, NO_INEXACT_EXCEPTION), + TEST_ff_f (copysign, -min_value, -min_subnorm_value, -min_value, NO_INEXACT_EXCEPTION), + + TEST_ff_f (copysign, min_subnorm_value, max_value, min_subnorm_value, NO_INEXACT_EXCEPTION), + TEST_ff_f (copysign, min_subnorm_value, -max_value, -min_subnorm_value, NO_INEXACT_EXCEPTION), + TEST_ff_f (copysign, -min_subnorm_value, max_value, min_subnorm_value, NO_INEXACT_EXCEPTION), + TEST_ff_f (copysign, -min_subnorm_value, -max_value, -min_subnorm_value, NO_INEXACT_EXCEPTION), + + TEST_ff_f (copysign, max_value, min_value, max_value, NO_INEXACT_EXCEPTION), + TEST_ff_f (copysign, max_value, -min_value, -max_value, NO_INEXACT_EXCEPTION), + TEST_ff_f (copysign, -max_value, min_value, max_value, NO_INEXACT_EXCEPTION), + TEST_ff_f (copysign, -max_value, -min_value, -max_value, NO_INEXACT_EXCEPTION), }; static void diff --git a/sysdeps/i386/fpu/libm-test-ulps b/sysdeps/i386/fpu/libm-test-ulps index 50bbe77000..dc53d94b4a 100644 --- a/sysdeps/i386/fpu/libm-test-ulps +++ b/sysdeps/i386/fpu/libm-test-ulps @@ -121,9 +121,28 @@ ildouble: 1 ldouble: 1 # asin_downward +Test "asin_downward (-0x4p-1024)": +double: 1 +idouble: 1 +Test "asin_downward (-0x4p-1076)": +double: 1 +idouble: 1 +Test "asin_downward (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "asin_downward (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 Test "asin_downward (-0x8p-4)": ildouble: 1 ldouble: 1 +Test "asin_downward (-0x8p-972)": +double: 1 +idouble: 1 Test "asin_downward (-0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 @@ -159,6 +178,44 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +Test "asin_towardzero (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "asin_towardzero (-1.0)": float: 1 ifloat: 1 @@ -181,6 +238,34 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +Test "asin_upward (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x4p-1024)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x4p-1076)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x4p-128)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x8p-152)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x8p-972)": +ildouble: 1 +ldouble: 1 Test "asin_upward (-0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 @@ -201,13 +286,58 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Test "asin_upward (0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x8p-16448)": +ildouble: 1 +ldouble: 1 Test "asin_upward (0x8p-4)": ildouble: 1 ldouble: 1 +Test "asin_upward (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "asin_upward (1.0)": double: 1 idouble: 1 +# asinh +Test "asinh (0x1p+100)": +ldouble: 1 +Test "asinh (0xf.424p+16)": +ildouble: 1 +ldouble: 1 + # atan2 Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 @@ -217,9 +347,18 @@ ildouble: 1 ldouble: 1 # atanh +Test "atanh (-0xcp-4)": +ildouble: 2 +ldouble: 1 Test "atanh (0.75)": ildouble: 2 ldouble: 1 +Test "atanh (0x4p-12)": +ildouble: 1 +Test "atanh (0x4p-4)": +ldouble: 1 +Test "atanh (0x8p-8)": +ildouble: 1 Test "atanh (0xcp-4)": ildouble: 2 ldouble: 1 @@ -4206,15 +4345,26 @@ ldouble: 1 Test "cbrt (-0x4.18937p-12)": ildouble: 1 ldouble: 1 +Test "cbrt (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 Test "cbrt (-27.0)": ildouble: 1 ldouble: 1 Test "cbrt (0.75)": ildouble: 1 ldouble: 1 +Test "cbrt (0x1.86ap+16)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "cbrt (0xcp-4)": ildouble: 1 ldouble: 1 +Test "cbrt (0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 # ccos Test "Real part of: ccos (-0.75 + 710.5 i)": @@ -6274,6 +6424,48 @@ idouble: 2 ifloat: 1 # cos_downward +Test "cos_downward (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-128)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-152)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.fffffp+124)": +double: 1 +idouble: 1 Test "cos_downward (0x1.000000cf4a2a2p+0)": double: 1 idouble: 1 @@ -6367,6 +6559,9 @@ idouble: 1 Test "cos_downward (0x2p+0)": ildouble: 1 ldouble: 1 +Test "cos_downward (0x2p-16384)": +ildouble: 1 +ldouble: 1 Test "cos_downward (0x3p+0)": double: 1 idouble: 1 @@ -6378,12 +6573,43 @@ ldouble: 1 Test "cos_downward (0x4p+48)": double: 1 idouble: 1 +Test "cos_downward (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-128)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-16384)": +ildouble: 1 +ldouble: 1 Test "cos_downward (0x8p+0)": ildouble: 2 ldouble: 2 Test "cos_downward (0x8p+1020)": ildouble: 1 ldouble: 1 +Test "cos_downward (0x8p-152)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "cos_downward (0x9p+0)": double: 1 idouble: 1 @@ -6416,6 +6642,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "cos_downward (0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 Test "cos_downward (0xf.fffffp+124)": double: 1 idouble: 1 @@ -6457,6 +6686,43 @@ ildouble: 1 ldouble: 1 # cos_towardzero +Test "cos_towardzero (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-128)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-152)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0xf.fffffp+124)": +double: 1 +idouble: 1 Test "cos_towardzero (0x1.000000cf4a2a2p+0)": double: 1 idouble: 1 @@ -6516,12 +6782,33 @@ idouble: 1 Test "cos_towardzero (0x2p+0)": double: 1 idouble: 1 +Test "cos_towardzero (0x2p-16384)": +ildouble: 1 +ldouble: 1 Test "cos_towardzero (0x4p+0)": double: 1 idouble: 1 Test "cos_towardzero (0x4p+48)": double: 1 idouble: 1 +Test "cos_towardzero (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-128)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-16384)": +ildouble: 1 +ldouble: 1 Test "cos_towardzero (0x8p+0)": double: 1 idouble: 1 @@ -6530,6 +6817,19 @@ ldouble: 1 Test "cos_towardzero (0x8p+1020)": double: 1 idouble: 1 +Test "cos_towardzero (0x8p-152)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "cos_towardzero (0xa.217bap+12)": ildouble: 1 ldouble: 1 @@ -6584,6 +6884,12 @@ ldouble: 1 Test "cos_upward (-0x2p+64)": double: 1 idouble: 1 +Test "cos_upward (-0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 Test "cos_upward (0x1.000004p+0)": double: 1 idouble: 1 @@ -6714,6 +7020,9 @@ idouble: 1 Test "cos_upward (0xf.ffffffffffff8p+1020)": ildouble: 1 ldouble: 1 +Test "cos_upward (0xf.fffffffffffffffp+16380)": +ildouble: 2 +ldouble: 2 Test "cos_upward (1)": float: 1 ifloat: 1 @@ -6744,21 +7053,72 @@ ildouble: 1 ldouble: 1 # cosh +Test "cosh (-0x1p+0)": +ldouble: 1 +Test "cosh (-0x2.c5d374p+12)": +ldouble: 2 +Test "cosh (-0x2.c5d37700c6bbp+12)": +ldouble: 1 Test "cosh (-0x2.c5e3acp+8)": ildouble: 1 Test "cosh (-0x2.c5e3bp+8)": ildouble: 1 +Test "cosh (-0x2.c679d1f73f0fap+8)": +ildouble: 1 +Test "cosh (-0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +Test "cosh (-0x2.c679d1f73f0fb628p+8)": +ildouble: 1 +Test "cosh (-0x2.c679d1f73f0fcp+8)": +ildouble: 1 +Test "cosh (-0x2.c679dp+8)": +ildouble: 1 Test "cosh (0x1.6p+4)": ldouble: 1 +Test "cosh (0x2.c5d374p+12)": +ldouble: 2 +Test "cosh (0x2.c5d37700c6bbp+12)": +ldouble: 1 # cosh_downward +Test "cosh_downward (-0x1p+0)": +ldouble: 1 +Test "cosh_downward (-0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_downward (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_downward (-0x2.c5d37700c6bbp+12)": +ldouble: 2 Test "cosh_downward (-0x2.c5e3acd2922a6p+8)": ildouble: 1 Test "cosh_downward (-0x2.c5e3bp+8)": ildouble: 1 +Test "cosh_downward (-0x2.c679d1f73f0fap+8)": +ildouble: 2 +Test "cosh_downward (-0x2.c679d1f73f0fcp+8)": +ildouble: 1 +Test "cosh_downward (-0x2.c679dp+8)": +double: 1 +ildouble: 1 +Test "cosh_downward (-0x5.96a7ep+4)": +double: 1 +ildouble: 2 +ldouble: 1 Test "cosh_downward (0x1.6p+4)": ildouble: 1 ldouble: 2 +Test "cosh_downward (0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_downward (0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_downward (0x2.c5d37700c6bbp+12)": +ldouble: 2 +Test "cosh_downward (0x2.c679dp+8)": +double: 1 +Test "cosh_downward (0x5.96a7ep+4)": +double: 1 +ildouble: 1 +ldouble: 1 Test "cosh_downward (22)": double: 1 float: 1 @@ -6780,21 +7140,68 @@ ildouble: 1 ldouble: 1 # cosh_tonearest +Test "cosh_tonearest (-0x1p+0)": +ldouble: 1 +Test "cosh_tonearest (-0x2.c5d374p+12)": +ldouble: 2 +Test "cosh_tonearest (-0x2.c5d37700c6bbp+12)": +ldouble: 1 Test "cosh_tonearest (-0x2.c5e3acp+8)": ildouble: 1 Test "cosh_tonearest (-0x2.c5e3bp+8)": ildouble: 1 +Test "cosh_tonearest (-0x2.c679d1f73f0fap+8)": +ildouble: 1 +Test "cosh_tonearest (-0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +Test "cosh_tonearest (-0x2.c679d1f73f0fb628p+8)": +ildouble: 1 +Test "cosh_tonearest (-0x2.c679d1f73f0fcp+8)": +ildouble: 1 +Test "cosh_tonearest (-0x2.c679dp+8)": +ildouble: 1 Test "cosh_tonearest (0x1.6p+4)": ldouble: 1 +Test "cosh_tonearest (0x2.c5d374p+12)": +ldouble: 2 +Test "cosh_tonearest (0x2.c5d37700c6bbp+12)": +ldouble: 1 Test "cosh_tonearest (22)": ldouble: 1 # cosh_towardzero +Test "cosh_towardzero (-0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (-0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_towardzero (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_towardzero (-0x2.c5d37700c6bbp+12)": +ldouble: 2 Test "cosh_towardzero (-0x2.c5e3acd2922a6p+8)": ildouble: 1 +Test "cosh_towardzero (-0x2.c679dp+8)": +double: 1 +ildouble: 1 +Test "cosh_towardzero (-0x5.96a7ep+4)": +double: 1 +ldouble: 1 Test "cosh_towardzero (0x1.6p+4)": ildouble: 1 ldouble: 2 +Test "cosh_towardzero (0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_towardzero (0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_towardzero (0x2.c5d37700c6bbp+12)": +ldouble: 2 +Test "cosh_towardzero (0x2.c679dp+8)": +double: 1 +Test "cosh_towardzero (0x5.96a7ep+4)": +double: 1 +ildouble: 1 +ldouble: 1 Test "cosh_towardzero (22)": double: 1 float: 1 @@ -6816,6 +7223,12 @@ ildouble: 1 ldouble: 1 # cosh_upward +Test "cosh_upward (-0x2.c5d374p+12)": +ldouble: 2 +Test "cosh_upward (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_upward (-0x2.c5d37700c6bbp+12)": +ldouble: 3 Test "cosh_upward (-0x2.c5e3acd2922a6p+8)": double: 1 ildouble: 1 @@ -6824,6 +7237,36 @@ Test "cosh_upward (-0x2.c5e3acp+8)": ildouble: 1 Test "cosh_upward (-0x2.c5e3bp+8)": ildouble: 1 +Test "cosh_upward (-0x2.c679d1f73f0fap+8)": +double: 1 +ildouble: 1 +Test "cosh_upward (-0x2.c679d1f73f0fcp+8)": +ildouble: 1 +Test "cosh_upward (-0x2p-16384)": +ildouble: 1 +Test "cosh_upward (-0x4p-1024)": +idouble: 1 +ildouble: 1 +Test "cosh_upward (-0x4p-1076)": +idouble: 1 +ildouble: 1 +Test "cosh_upward (-0x4p-128)": +idouble: 1 +ifloat: 1 +ildouble: 1 +Test "cosh_upward (-0x4p-16384)": +ildouble: 1 +Test "cosh_upward (-0x5.96a7ep+4)": +ildouble: 1 +Test "cosh_upward (-0x8p-152)": +idouble: 1 +ifloat: 1 +ildouble: 1 +Test "cosh_upward (-0x8p-16448)": +ildouble: 1 +Test "cosh_upward (-0x8p-972)": +idouble: 1 +ildouble: 1 Test "cosh_upward (0x1.6p+4)": ildouble: 1 ldouble: 1 @@ -6832,6 +7275,12 @@ ildouble: 2 ldouble: 1 Test "cosh_upward (0x1.8p+4)": ildouble: 1 +Test "cosh_upward (0x2.c5d374p+12)": +ldouble: 2 +Test "cosh_upward (0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_upward (0x2.c5d37700c6bbp+12)": +ldouble: 3 Test "cosh_upward (0x2.c5e3acd2922a6p+8)": double: 1 ildouble: 2 @@ -6840,6 +7289,21 @@ Test "cosh_upward (0x2.c5e3acp+8)": ildouble: 1 Test "cosh_upward (0x2.c5e3bp+8)": ildouble: 1 +Test "cosh_upward (0x2.c679d1f73f0fap+8)": +double: 1 +ildouble: 1 +Test "cosh_upward (0x2.c679d1f73f0fcp+8)": +ildouble: 1 +Test "cosh_upward (0x2.c679d4p+8)": +ildouble: 1 +Test "cosh_upward (0x2.c679dp+8)": +ildouble: 1 +Test "cosh_upward (0x3.2p+4)": +ildouble: 1 +Test "cosh_upward (0x5.96a7e8p+4)": +ildouble: 1 +Test "cosh_upward (0x5.96a7ep+4)": +ildouble: 1 Test "cosh_upward (22)": ildouble: 2 ldouble: 1 @@ -13805,6 +14269,10 @@ ifloat: 1 ildouble: 1 ldouble: 1 +Function: "asinh": +ildouble: 1 +ldouble: 1 + Function: "atan2": ildouble: 1 ldouble: 1 @@ -13894,6 +14362,8 @@ ildouble: 1 ldouble: 1 Function: "cbrt": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 @@ -14011,19 +14481,19 @@ ldouble: 2 Function: "cosh": ildouble: 1 -ldouble: 1 +ldouble: 2 Function: "cosh_downward": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 2 +ildouble: 2 +ldouble: 3 Function: "cosh_tonearest": ildouble: 1 -ldouble: 1 +ldouble: 2 Function: "cosh_towardzero": double: 1 @@ -14031,13 +14501,14 @@ float: 1 idouble: 1 ifloat: 1 ildouble: 1 -ldouble: 2 +ldouble: 3 Function: "cosh_upward": double: 1 idouble: 1 +ifloat: 1 ildouble: 2 -ldouble: 1 +ldouble: 3 Function: Real part of "cpow": double: 2 diff --git a/sysdeps/x86_64/fpu/libm-test-ulps b/sysdeps/x86_64/fpu/libm-test-ulps index 6ff7008472..6404c74303 100644 --- a/sysdeps/x86_64/fpu/libm-test-ulps +++ b/sysdeps/x86_64/fpu/libm-test-ulps @@ -112,6 +112,21 @@ ldouble: 1 Test "acos_upward (-0x1p+0)": double: 1 idouble: 1 +Test "acos_upward (-0x4p-1024)": +double: 1 +idouble: 1 +Test "acos_upward (-0x4p-1076)": +double: 1 +idouble: 1 +Test "acos_upward (-0x4p-128)": +double: 1 +idouble: 1 +Test "acos_upward (-0x8p-152)": +double: 1 +idouble: 1 +Test "acos_upward (-0x8p-972)": +double: 1 +idouble: 1 Test "acos_upward (0.5)": ildouble: 1 ldouble: 1 @@ -127,6 +142,21 @@ idouble: 1 Test "acos_upward (0x1.70ef56p-56)": double: 1 idouble: 1 +Test "acos_upward (0x4p-1024)": +double: 1 +idouble: 1 +Test "acos_upward (0x4p-1076)": +double: 1 +idouble: 1 +Test "acos_upward (0x4p-128)": +double: 1 +idouble: 1 +Test "acos_upward (0x8p-152)": +double: 1 +idouble: 1 +Test "acos_upward (0x8p-972)": +double: 1 +idouble: 1 Test "acos_upward (0xcp-4)": ildouble: 1 ldouble: 1 @@ -134,6 +164,14 @@ Test "acos_upward (0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 +# acosh +Test "acosh (0x6.4p+4)": +double: 1 +idouble: 1 +Test "acosh (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 + # asin_downward Test "asin_downward (-0.5)": double: 1 @@ -187,9 +225,47 @@ ldouble: 1 Test "asin_towardzero (-0.5)": double: 1 idouble: 1 +Test "asin_towardzero (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x8p-16448)": +ildouble: 1 +ldouble: 1 Test "asin_towardzero (-0x8p-4)": float: 1 ifloat: 1 +Test "asin_towardzero (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "asin_towardzero (-1.0)": float: 1 ifloat: 1 @@ -208,11 +284,49 @@ ildouble: 1 ldouble: 1 # asin_upward +Test "asin_upward (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x8p-16448)": +ildouble: 1 +ldouble: 1 Test "asin_upward (-0x8p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "asin_upward (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "asin_upward (-0xf.fffffff8p-4)": double: 1 idouble: 1 @@ -246,9 +360,64 @@ ldouble: 1 Test "asin_upward (0x1p+0)": double: 1 idouble: 1 +Test "asin_upward (0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x8p-16448)": +ildouble: 1 +ldouble: 1 Test "asin_upward (0x8p-4)": ildouble: 1 ldouble: 1 +Test "asin_upward (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + +# asinh +Test "asinh (-0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "asinh (0x1p+100)": +ildouble: 1 +ldouble: 1 +Test "asinh (0xap+0)": +float: 1 +ifloat: 1 +Test "asinh (0xf.424p+16)": +ildouble: 1 +ldouble: 1 +Test "asinh (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 # atan2 Test "atan2 (-0.75, -1.0)": @@ -269,6 +438,9 @@ ifloat: 1 Test "atan2 (-0xf.fffffp+124, -0x4p-128)": float: 1 ifloat: 1 +Test "atan2 (-0xf.fffffp+124, -0x8p-152)": +float: 1 +ifloat: 1 Test "atan2 (-max_value, -min_value)": float: 1 ifloat: 1 @@ -281,16 +453,30 @@ ifloat: 1 Test "atan2 (0xcp-4, -0x1p+0)": float: 1 ifloat: 1 +Test "atan2 (0xf.fffffp+124, -0x4p-128)": +float: 1 +ifloat: 1 +Test "atan2 (0xf.fffffp+124, -0x8p-152)": +float: 1 +ifloat: 1 Test "atan2 (1.390625, 0.9296875)": float: 1 ifloat: 1 # atanh +Test "atanh (-0xcp-4)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 Test "atanh (0.75)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Test "atanh (0x4p-4)": +ildouble: 1 +ldouble: 1 Test "atanh (0xcp-4)": float: 1 ifloat: 1 @@ -7148,6 +7334,48 @@ idouble: 2 ifloat: 1 # cos_downward +Test "cos_downward (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-128)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-152)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.fffffp+124)": +double: 1 +idouble: 1 Test "cos_downward (0x1.000000cf4a2a2p+0)": double: 1 idouble: 1 @@ -7241,6 +7469,9 @@ idouble: 1 Test "cos_downward (0x2p+0)": ildouble: 1 ldouble: 1 +Test "cos_downward (0x2p-16384)": +ildouble: 1 +ldouble: 1 Test "cos_downward (0x3p+0)": double: 1 idouble: 1 @@ -7252,12 +7483,43 @@ ldouble: 1 Test "cos_downward (0x4p+48)": double: 1 idouble: 1 +Test "cos_downward (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-128)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-16384)": +ildouble: 1 +ldouble: 1 Test "cos_downward (0x8p+0)": ildouble: 2 ldouble: 2 Test "cos_downward (0x8p+1020)": ildouble: 1 ldouble: 1 +Test "cos_downward (0x8p-152)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "cos_downward (0x9p+0)": double: 1 idouble: 1 @@ -7290,6 +7552,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "cos_downward (0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 Test "cos_downward (0xf.fffffp+124)": double: 1 idouble: 1 @@ -7331,6 +7596,43 @@ ildouble: 1 ldouble: 1 # cos_towardzero +Test "cos_towardzero (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-128)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-152)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0xf.fffffp+124)": +double: 1 +idouble: 1 Test "cos_towardzero (0x1.000000cf4a2a2p+0)": double: 1 idouble: 1 @@ -7390,12 +7692,33 @@ idouble: 1 Test "cos_towardzero (0x2p+0)": double: 1 idouble: 1 +Test "cos_towardzero (0x2p-16384)": +ildouble: 1 +ldouble: 1 Test "cos_towardzero (0x4p+0)": double: 1 idouble: 1 Test "cos_towardzero (0x4p+48)": double: 1 idouble: 1 +Test "cos_towardzero (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-128)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-16384)": +ildouble: 1 +ldouble: 1 Test "cos_towardzero (0x8p+0)": double: 1 idouble: 1 @@ -7404,6 +7727,19 @@ ldouble: 1 Test "cos_towardzero (0x8p+1020)": double: 1 idouble: 1 +Test "cos_towardzero (0x8p-152)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "cos_towardzero (0xa.217bap+12)": ildouble: 1 ldouble: 1 @@ -7458,6 +7794,12 @@ ldouble: 1 Test "cos_upward (-0x2p+64)": double: 1 idouble: 1 +Test "cos_upward (-0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 Test "cos_upward (0x1.000004p+0)": double: 1 idouble: 1 @@ -7588,6 +7930,9 @@ idouble: 1 Test "cos_upward (0xf.ffffffffffff8p+1020)": ildouble: 1 ldouble: 1 +Test "cos_upward (0xf.fffffffffffffffp+16380)": +ildouble: 2 +ldouble: 2 Test "cos_upward (1)": float: 1 ifloat: 1 @@ -7618,20 +7963,59 @@ ildouble: 1 ldouble: 1 # cosh +Test "cosh (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh (-0x2.c5d374p+12)": +ldouble: 2 +Test "cosh (-0x2.c5d37700c6bbp+12)": +ldouble: 1 Test "cosh (-0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh (-0x2.c679dp+8)": +double: 1 +idouble: 1 Test "cosh (0x1.6p+4)": ildouble: 1 ldouble: 1 +Test "cosh (0x2.c5d374p+12)": +ldouble: 2 +Test "cosh (0x2.c5d37700c6bbp+12)": +ldouble: 1 Test "cosh (0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh (0x2.c679dp+8)": +double: 1 +idouble: 1 # cosh_downward +Test "cosh_downward (-0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "cosh_downward (-0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_downward (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_downward (-0x2.c5d37700c6bbp+12)": +ldouble: 2 Test "cosh_downward (-0x2.c5e3bp+8)": double: 1 idouble: 1 +Test "cosh_downward (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_downward (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (-0x5.96a7ep+4)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 Test "cosh_downward (0x1.6p+4)": double: 1 idouble: 1 @@ -7640,9 +8024,26 @@ ldouble: 2 Test "cosh_downward (0x1.7p+4)": double: 1 idouble: 1 +Test "cosh_downward (0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_downward (0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_downward (0x2.c5d37700c6bbp+12)": +ldouble: 2 Test "cosh_downward (0x2.c5e3bp+8)": double: 1 idouble: 1 +Test "cosh_downward (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x5.96a7ep+4)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 Test "cosh_downward (22)": float: 1 ifloat: 1 @@ -7660,23 +8061,62 @@ ildouble: 1 ldouble: 1 # cosh_tonearest +Test "cosh_tonearest (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (-0x2.c5d374p+12)": +ldouble: 2 +Test "cosh_tonearest (-0x2.c5d37700c6bbp+12)": +ldouble: 1 Test "cosh_tonearest (-0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh_tonearest (-0x2.c679dp+8)": +double: 1 +idouble: 1 Test "cosh_tonearest (0x1.6p+4)": ildouble: 1 ldouble: 1 +Test "cosh_tonearest (0x2.c5d374p+12)": +ldouble: 2 +Test "cosh_tonearest (0x2.c5d37700c6bbp+12)": +ldouble: 1 Test "cosh_tonearest (0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh_tonearest (0x2.c679dp+8)": +double: 1 +idouble: 1 Test "cosh_tonearest (22)": ildouble: 1 ldouble: 1 # cosh_towardzero +Test "cosh_towardzero (-0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (-0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_towardzero (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_towardzero (-0x2.c5d37700c6bbp+12)": +ldouble: 2 Test "cosh_towardzero (-0x2.c5e3bp+8)": double: 1 idouble: 1 +Test "cosh_towardzero (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x5.96a7ep+4)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 Test "cosh_towardzero (0x1.6p+4)": double: 1 idouble: 1 @@ -7685,9 +8125,26 @@ ldouble: 2 Test "cosh_towardzero (0x1.7p+4)": double: 1 idouble: 1 +Test "cosh_towardzero (0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_towardzero (0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_towardzero (0x2.c5d37700c6bbp+12)": +ldouble: 2 Test "cosh_towardzero (0x2.c5e3bp+8)": double: 1 idouble: 1 +Test "cosh_towardzero (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x5.96a7ep+4)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 Test "cosh_towardzero (22)": float: 1 ifloat: 1 @@ -7705,12 +8162,35 @@ ildouble: 1 ldouble: 1 # cosh_upward +Test "cosh_upward (-0x1p+0)": +float: 1 +ifloat: 1 +Test "cosh_upward (-0x2.c5d374p+12)": +ldouble: 2 +Test "cosh_upward (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_upward (-0x2.c5d37700c6bbp+12)": +ldouble: 3 Test "cosh_upward (-0x2.c5e3acd2922a6p+8)": ildouble: 1 ldouble: 1 Test "cosh_upward (-0x2.c5e3bp+8)": double: 1 idouble: 1 +Test "cosh_upward (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x5.96a7e8p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x5.96a7ep+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 Test "cosh_upward (0x1.6p+4)": ildouble: 1 ldouble: 1 @@ -7720,12 +8200,35 @@ ldouble: 1 Test "cosh_upward (0x1.8p+4)": double: 1 idouble: 1 +Test "cosh_upward (0x2.c5d374p+12)": +ldouble: 2 +Test "cosh_upward (0x2.c5d37700c6bb03a4p+12)": +ldouble: 3 +Test "cosh_upward (0x2.c5d37700c6bbp+12)": +ldouble: 3 Test "cosh_upward (0x2.c5e3acd2922a6p+8)": ildouble: 1 ldouble: 1 Test "cosh_upward (0x2.c5e3bp+8)": double: 1 idouble: 1 +Test "cosh_upward (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_upward (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (0x3.2p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (0x5.96a7e8p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (0x5.96a7ep+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 Test "cosh_upward (22)": ildouble: 1 ldouble: 1 @@ -15346,6 +15849,10 @@ idouble: 1 ildouble: 1 ldouble: 1 +Function: "acosh": +double: 1 +idouble: 1 + Function: "asin_downward": double: 1 float: 1 @@ -15370,6 +15877,14 @@ ifloat: 1 ildouble: 1 ldouble: 1 +Function: "asinh": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + Function: "atan2": float: 1 ifloat: 1 @@ -15592,9 +16107,11 @@ ldouble: 2 Function: "cosh": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 -ldouble: 1 +ldouble: 2 Function: "cosh_downward": double: 1 @@ -15602,13 +16119,15 @@ float: 1 idouble: 1 ifloat: 1 ildouble: 2 -ldouble: 2 +ldouble: 3 Function: "cosh_tonearest": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 -ldouble: 1 +ldouble: 2 Function: "cosh_towardzero": double: 1 @@ -15616,13 +16135,15 @@ float: 1 idouble: 1 ifloat: 1 ildouble: 2 -ldouble: 2 +ldouble: 3 Function: "cosh_upward": double: 1 +float: 2 idouble: 1 +ifloat: 2 ildouble: 1 -ldouble: 1 +ldouble: 3 Function: Real part of "cpow": double: 2 -- cgit v1.2.3 From 5b0626b9c50e69fe4d7dce90199d78f398c249b1 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Sat, 21 Dec 2013 13:07:16 +0000 Subject: Fix x86 / x86_64 expl / expl10l wild results in directed rounding modes (bug 16356). This patch fixes bug 16356, bad results from x86 / x86_64 expl / exp10l in directed rounding modes, the most serious of the bugs shown up by my patch expanding libm test coverage. When I fixed bug 16293, I thought it was only necessary to set round-to-nearest when using frndint in expm1 functions, because in other cases the cancellation error from having the resulting fractional part close to 1 or -1 would not be significant. However, in expl and exp10l, the way the final fractional part gets computed (something more complicated than a simple subtraction, because more precision is needed than you'd get that way) can result in a value outside the range [-1, 1] when the argument to frndint was very close to an integer and was rounded the "wrong" way because of the rounding mode - and the f2xm1 instruction has undefined results if its argument is outside [-1, 1], so resulting in the large errors seen. So this patch removes the USE_AS_EXPM1L conditionals on the round-to-nearest settings, so all of expl, expm1l and exp10l now get round-to-nearest used for frndint (meaning the final fractional part can at most be slightly above 0.5 in magnitude). Associated tests of exp and exp10 are added and testing of exp10 in directed rounding modes enabled. Tested x86_64 and x86 and ulps updated accordingly. * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Also set round-to-nearest for [!USE_AS_EXPM1L]. * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Likewise. * math/auto-libm-test-in: Do not expect cosh tests to fail. Add more tests of exp and exp10. Expect some exp10 tests to miss exceptions or fail in directed rounding modes. * math/auto-libm-test-out: Regenerated. * math/libm-test.inc (exp10_tonearest_test_data): New array. (exp10_test_tonearest): New function. (exp10_towardzero_test_data): New array. (exp10_test_towardzero): New function. (exp10_downward_test_data): New array. (exp10_test_downward): New function. (exp10_upward_test_data): New array. (exp10_test_upward): New function. (main): Call the new functions. * sysdeps/i386/fpu/libm-test-ulps: Update. * sysdeps/x86_64/fpu/libm-test-ulps: Likewise. --- ChangeLog | 22 + NEWS | 2 +- math/auto-libm-test-in | 27 +- math/auto-libm-test-out | 1254 ++++++++++++++++++++++--------------- math/libm-test.inc | 60 ++ sysdeps/i386/fpu/e_expl.S | 4 - sysdeps/i386/fpu/libm-test-ulps | 114 +++- sysdeps/x86_64/fpu/e_expl.S | 4 - sysdeps/x86_64/fpu/libm-test-ulps | 122 +++- 9 files changed, 1059 insertions(+), 550 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index e05e23485a..5108d2efdf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,25 @@ +2013-12-21 Joseph Myers + + [BZ #16356] + * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Also set + round-to-nearest for [!USE_AS_EXPM1L]. + * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Likewise. + * math/auto-libm-test-in: Do not expect cosh tests to fail. Add + more tests of exp and exp10. Expect some exp10 tests to miss + exceptions or fail in directed rounding modes. + * math/auto-libm-test-out: Regenerated. + * math/libm-test.inc (exp10_tonearest_test_data): New array. + (exp10_test_tonearest): New function. + (exp10_towardzero_test_data): New array. + (exp10_test_towardzero): New function. + (exp10_downward_test_data): New array. + (exp10_test_downward): New function. + (exp10_upward_test_data): New array. + (exp10_test_upward): New function. + (main): Call the new functions. + * sysdeps/i386/fpu/libm-test-ulps: Update. + * sysdeps/x86_64/fpu/libm-test-ulps: Likewise. + 2013-12-20 Joseph Myers * math/auto-libm-test-in: Add more tests of acos, acosh, asin, diff --git a/NEWS b/NEWS index b8ff649e2c..75c69ecdf3 100644 --- a/NEWS +++ b/NEWS @@ -22,7 +22,7 @@ Version 2.19 15966, 15985, 15988, 15997, 16032, 16034, 16036, 16037, 16038, 16041, 16055, 16071, 16072, 16074, 16077, 16078, 16103, 16112, 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, - 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16338. + 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16338, 16356. * The public headers no longer use __unused nor __block. This change is to support compiling programs that are derived from BSD sources and use diff --git a/math/auto-libm-test-in b/math/auto-libm-test-in index 532b17e4a8..c6cc3e35d3 100644 --- a/math/auto-libm-test-in +++ b/math/auto-libm-test-in @@ -519,11 +519,10 @@ cosh 0x2.c679d1f73f0fap+8 cosh 0x2.c679d1f73f0fcp+8 cosh -0x2.c679d1f73f0fap+8 cosh -0x2.c679d1f73f0fcp+8 -# Bug 16356: bad results from expl (and so coshl) in round-upward mode. -cosh 0x2.c679d1f73f0fb624d358b213a7p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 -cosh 0x2.c679d1f73f0fb624d358b213a8p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 -cosh -0x2.c679d1f73f0fb624d358b213a7p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 -cosh -0x2.c679d1f73f0fb624d358b213a8p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 +cosh 0x2.c679d1f73f0fb624d358b213a7p+8 +cosh 0x2.c679d1f73f0fb624d358b213a8p+8 +cosh -0x2.c679d1f73f0fb624d358b213a7p+8 +cosh -0x2.c679d1f73f0fb624d358b213a8p+8 cosh 0x2.c5d37700c6bb03a4p+12 no-test-inline cosh 0x2.c5d37700c6bb03a8p+12 no-test-inline cosh -0x2.c5d37700c6bb03a4p+12 no-test-inline @@ -712,6 +711,7 @@ exp 1000.0 xfail-rounding:dbl-64 exp 710 xfail-rounding:dbl-64 exp -1234 # Bug 16284: results on directed rounding may be incorrect. +exp 0x2.c679d1f73f0fb628p+8 xfail-rounding:dbl-64 exp 1e5 xfail-rounding:dbl-64 exp max xfail-rounding:dbl-64 exp -7.4444006192138124e+02 @@ -726,15 +726,22 @@ exp10 36 exp10 -36 exp10 305 exp10 -305 -exp10 4932 -exp10 -4932 -exp10 1e5 +# Bug 16284: results on directed rounding may be incorrect. +exp10 4932 xfail-rounding:flt-32 +# Bug 16361: underflow exception may be misssing +exp10 -4932 missing-underflow:ldbl-96-intel:x86 missing-underflow:ldbl-96-intel:x86_64 +# Bug 16284: results on directed rounding may be incorrect. +exp10 1e5 xfail-rounding:flt-32 exp10 -1e5 -exp10 1e6 +# Bug 16284: results on directed rounding may be incorrect. +exp10 1e6 xfail-rounding:flt-32 exp10 -1e6 -exp10 max +# Bug 16284: results on directed rounding may be incorrect. +exp10 max xfail-rounding:flt-32 exp10 -max exp10 0.75 +# Bug 16284: results on directed rounding may be incorrect. +exp10 0x1.348e45573a1dd72cp+8 xfail-rounding:flt-32 xfail-rounding:dbl-64 exp2 0 exp2 -0 diff --git a/math/auto-libm-test-out b/math/auto-libm-test-out index 0b51fa0e5c..b1a1184e8a 100644 --- a/math/auto-libm-test-out +++ b/math/auto-libm-test-out @@ -49220,522 +49220,522 @@ cosh -0x2.c679d1f73f0fcp+8 = cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange = cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh upward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange -cosh 0x2.c679d1f73f0fb624d358b213a7p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 -= cosh downward flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok +cosh 0x2.c679d1f73f0fb624d358b213a7p+8 += cosh downward flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok = cosh tonearest flt-32 0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward flt-32 0x2.c679d4p+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok = cosh tonearest dbl-64 0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward dbl-64 0x2.c679d4p+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh upward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm 0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm 0x2.c679d4p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok = cosh tonearest flt-32 0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward flt-32 0x2.c679dp+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok = cosh tonearest dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok -= cosh towardzero dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh upward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : inexact-ok += cosh downward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok = cosh tonearest ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok = cosh tonearest ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh upward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : inexact-ok += cosh downward dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok = cosh tonearest dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok = cosh tonearest dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok -= cosh towardzero dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok += cosh upward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh downward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok = cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : inexact-ok += cosh downward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : inexact-ok = cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : inexact-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303a8p+1020L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303a8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303a8p+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : inexact-ok = cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff304p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -cosh 0x2.c679d1f73f0fb624d358b213a8p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 -= cosh downward flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : inexact-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff304p+1020L : inexact-ok +cosh 0x2.c679d1f73f0fb624d358b213a8p+8 += cosh downward flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok = cosh tonearest flt-32 0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward flt-32 0x2.c679d4p+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok = cosh tonearest dbl-64 0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward dbl-64 0x2.c679d4p+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh upward ldbl-128 0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm 0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm 0x2.c679d4p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok = cosh tonearest flt-32 0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward flt-32 0x2.c679dp+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok = cosh tonearest dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok -= cosh towardzero dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh upward dbl-64 0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : inexact-ok += cosh downward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok = cosh tonearest ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok = cosh tonearest ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh upward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : inexact-ok += cosh downward dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok = cosh tonearest dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok = cosh tonearest dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok -= cosh towardzero dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok += cosh upward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh downward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok = cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : inexact-ok += cosh downward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok += cosh upward ldbl-96-intel 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh downward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok += cosh upward ldbl-96-m68k 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : inexact-ok = cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : inexact-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok += cosh downward ldbl-128 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : inexact-ok = cosh tonearest ldbl-128 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303a8p+1020L : inexact-ok -= cosh towardzero ldbl-128 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303a8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : inexact-ok += cosh upward ldbl-128 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303a8p+1020L : inexact-ok += cosh downward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a8p+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a8p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -cosh -0x2.c679d1f73f0fb624d358b213a7p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 -= cosh downward flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm 0x2.c679d1f73f0fb624d358b213a8p+8L : plus_infty : inexact-ok overflow errno-erange +cosh -0x2.c679d1f73f0fb624d358b213a7p+8 += cosh downward flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok = cosh tonearest flt-32 -0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward flt-32 -0x2.c679dp+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok = cosh tonearest dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok -= cosh towardzero dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh upward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : inexact-ok += cosh downward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok = cosh tonearest ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh upward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : inexact-ok += cosh downward flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok = cosh tonearest flt-32 -0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward flt-32 -0x2.c679d4p+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok = cosh tonearest dbl-64 -0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward dbl-64 -0x2.c679d4p+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh upward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm -0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm -0x2.c679d4p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok = cosh tonearest dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok -= cosh towardzero dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok += cosh upward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh downward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok = cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : inexact-ok += cosh downward dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok = cosh tonearest dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : inexact-ok = cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : inexact-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok += cosh downward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-128 -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303a8p+1020L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303a8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303ap+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff303a8p+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : inexact-ok = cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff304p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -cosh -0x2.c679d1f73f0fb624d358b213a8p+8 xfail-rounding:ldbl-96-intel:x86 xfail-rounding:ldbl-96-intel:x86_64 -= cosh downward flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff3p+1020L : inexact-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a7p+8L : 0xf.ffffffffffffbffffffffff304p+1020L : inexact-ok +cosh -0x2.c679d1f73f0fb624d358b213a8p+8 += cosh downward flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok = cosh tonearest flt-32 -0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward flt-32 -0x2.c679dp+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero flt-32 -0x2.c679dp+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok = cosh tonearest dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok -= cosh towardzero dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deedp+1020 : inexact-ok += cosh upward dbl-64 -0x2.c679dp+8 : 0xf.ffe08c2deed08p+1020 : inexact-ok += cosh downward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02bp+1020L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679dp+8L : 0xf.ffe08c2deed02b1p+1020L : inexact-ok += cosh downward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c4217p+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42178p+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok = cosh tonearest ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c42p+1020L : inexact-ok += cosh upward ldbl-128ibm -0x2.c679dp+8L : 0xf.ffe08c2deed02b0e9ba9e9c424p+1020L : inexact-ok += cosh downward flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok = cosh tonearest flt-32 -0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward flt-32 -0x2.c679d4p+8f : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero flt-32 -0x2.c679d4p+8f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += cosh upward flt-32 -0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok = cosh tonearest dbl-64 -0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward dbl-64 -0x2.c679d4p+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 -0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1cp+1024L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d4p+8L : 0x1.000208c301f36f1ep+1024L : inexact-ok += cosh downward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e37fp+1024L : inexact-ok += cosh upward ldbl-128 -0x2.c679d4p+8L : 0x1.000208c301f36f1c494de034e38p+1024L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm -0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm -0x2.c679d4p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok = cosh tonearest dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok -= cosh towardzero dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9dp+1020 : inexact-ok += cosh upward dbl-64 -0x2.c679d1f73f0fap+8 : 0xf.fffffffffe9d8p+1020 : inexact-ok += cosh downward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72cp+1020L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72dp+1020L : inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59dp+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db59d8p+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok = cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db58p+1020L : inexact-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fap+8L : 0xf.fffffffffe9d72ca74ded4db5cp+1020L : inexact-ok += cosh downward dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok = cosh tonearest dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero dbl-64 -0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += cosh upward dbl-64 -0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72cp+1024L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ep+1024L : inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b32p+1024L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fcp+8L : 0x1.000000000009d72ca74dec889b33p+1024L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2cp+1020L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2dp+1020L : inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303d8p+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58303ep+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : inexact-ok = cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok -= cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec583p+1020L : inexact-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624p+8L : 0xf.ffffffffffffb2ca74dec58304p+1020L : inexact-ok += cosh downward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok = cosh tonearest ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok += cosh upward ldbl-96-intel -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh downward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok = cosh tonearest ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok -= cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2cp+1020L : inexact-ok += cosh upward ldbl-96-m68k -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2dp+1020L : inexact-ok += cosh downward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec5830328p+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb628p+8L : 0xf.fffffffffffff2ca74dec583033p+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange -= cosh downward ldbl-128 -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange += cosh downward ldbl-128 -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : inexact-ok = cosh tonearest ldbl-128 -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303a8p+1020L : inexact-ok -= cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh upward ldbl-128 -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303a8p+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok -= cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok += cosh towardzero ldbl-128 -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303ap+1020L : inexact-ok += cosh upward ldbl-128 -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffc0000000000303a8p+1020L : inexact-ok += cosh downward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok = cosh tonearest ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a8p+8L : plus_infty : inexact-ok overflow errno-erange -= cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange-ok -= cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a8p+8L : plus_infty : xfail:ldbl-96-intel:x86 xfail:ldbl-96-intel:x86_64 inexact-ok overflow errno-erange += cosh towardzero ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a8p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += cosh upward ldbl-128ibm -0x2.c679d1f73f0fb624d358b213a8p+8L : plus_infty : inexact-ok overflow errno-erange cosh 0x2.c5d37700c6bb03a4p+12 no-test-inline = cosh downward flt-32 0x2.c5d378p+12f : 0xf.fffffp+124f : no-test-inline inexact-ok overflow errno-erange-ok = cosh tonearest flt-32 0x2.c5d378p+12f : plus_infty : no-test-inline inexact-ok overflow errno-erange @@ -61667,6 +61667,111 @@ exp -1234 = exp tonearest ldbl-128ibm -0x4.d2p+8L : 0x0p+0L : inexact-ok underflow errno-erange = exp towardzero ldbl-128ibm -0x4.d2p+8L : 0x0p+0L : inexact-ok underflow errno-erange = exp upward ldbl-128ibm -0x4.d2p+8L : 0x4p-1076L : inexact-ok underflow errno-erange-ok +exp 0x2.c679d1f73f0fb628p+8 xfail-rounding:dbl-64 += exp downward flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp tonearest flt-32 0x2.c679d4p+8f : plus_infty : inexact-ok overflow errno-erange += exp towardzero flt-32 0x2.c679d4p+8f : 0xf.fffffp+124f : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp upward flt-32 0x2.c679d4p+8f : plus_infty : xfail:dbl-64 inexact-ok overflow errno-erange += exp downward dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp tonearest dbl-64 0x2.c679d4p+8 : plus_infty : inexact-ok overflow errno-erange += exp towardzero dbl-64 0x2.c679d4p+8 : 0xf.ffffffffffff8p+1020 : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp upward dbl-64 0x2.c679d4p+8 : plus_infty : xfail:dbl-64 inexact-ok overflow errno-erange += exp downward ldbl-96-intel 0x2.c679d4p+8L : 0x2.0004118603e6de38p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-96-intel 0x2.c679d4p+8L : 0x2.0004118603e6de38p+1024L : inexact-ok += exp towardzero ldbl-96-intel 0x2.c679d4p+8L : 0x2.0004118603e6de38p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-96-intel 0x2.c679d4p+8L : 0x2.0004118603e6de3cp+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-96-m68k 0x2.c679d4p+8L : 0x2.0004118603e6de38p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-96-m68k 0x2.c679d4p+8L : 0x2.0004118603e6de38p+1024L : inexact-ok += exp towardzero ldbl-96-m68k 0x2.c679d4p+8L : 0x2.0004118603e6de38p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-96-m68k 0x2.c679d4p+8L : 0x2.0004118603e6de3cp+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-128 0x2.c679d4p+8L : 0x2.0004118603e6de38929bc069c6fep+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-128 0x2.c679d4p+8L : 0x2.0004118603e6de38929bc069c7p+1024L : inexact-ok += exp towardzero ldbl-128 0x2.c679d4p+8L : 0x2.0004118603e6de38929bc069c6fep+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-128 0x2.c679d4p+8L : 0x2.0004118603e6de38929bc069c7p+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp tonearest ldbl-128ibm 0x2.c679d4p+8L : plus_infty : inexact-ok overflow errno-erange += exp towardzero ldbl-128ibm 0x2.c679d4p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp upward ldbl-128ibm 0x2.c679d4p+8L : plus_infty : xfail:dbl-64 inexact-ok overflow errno-erange += exp downward flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp tonearest flt-32 0x2.c679dp+8f : plus_infty : inexact-ok overflow errno-erange += exp towardzero flt-32 0x2.c679dp+8f : 0xf.fffffp+124f : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp upward flt-32 0x2.c679dp+8f : plus_infty : xfail:dbl-64 inexact-ok overflow errno-erange += exp downward dbl-64 0x2.c679dp+8 : 0xf.ffffffffffff8p+1020 : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp tonearest dbl-64 0x2.c679dp+8 : plus_infty : inexact-ok overflow errno-erange += exp towardzero dbl-64 0x2.c679dp+8 : 0xf.ffffffffffff8p+1020 : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp upward dbl-64 0x2.c679dp+8 : plus_infty : xfail:dbl-64 inexact-ok overflow errno-erange += exp downward ldbl-96-intel 0x2.c679dp+8L : 0x1.fffc1185bdda056p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-96-intel 0x2.c679dp+8L : 0x1.fffc1185bdda0562p+1024L : inexact-ok += exp towardzero ldbl-96-intel 0x2.c679dp+8L : 0x1.fffc1185bdda056p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-96-intel 0x2.c679dp+8L : 0x1.fffc1185bdda0562p+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-96-m68k 0x2.c679dp+8L : 0x1.fffc1185bdda056p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-96-m68k 0x2.c679dp+8L : 0x1.fffc1185bdda0562p+1024L : inexact-ok += exp towardzero ldbl-96-m68k 0x2.c679dp+8L : 0x1.fffc1185bdda056p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-96-m68k 0x2.c679dp+8L : 0x1.fffc1185bdda0562p+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-128 0x2.c679dp+8L : 0x1.fffc1185bdda0561d3753d38842ep+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-128 0x2.c679dp+8L : 0x1.fffc1185bdda0561d3753d38842fp+1024L : inexact-ok += exp towardzero ldbl-128 0x2.c679dp+8L : 0x1.fffc1185bdda0561d3753d38842ep+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-128 0x2.c679dp+8L : 0x1.fffc1185bdda0561d3753d38842fp+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-128ibm 0x2.c679dp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp tonearest ldbl-128ibm 0x2.c679dp+8L : plus_infty : inexact-ok overflow errno-erange += exp towardzero ldbl-128ibm 0x2.c679dp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp upward ldbl-128ibm 0x2.c679dp+8L : plus_infty : xfail:dbl-64 inexact-ok overflow errno-erange += exp downward dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp tonearest dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : inexact-ok overflow errno-erange += exp towardzero dbl-64 0x2.c679d1f73f0fcp+8 : 0xf.ffffffffffff8p+1020 : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp upward dbl-64 0x2.c679d1f73f0fcp+8 : plus_infty : xfail:dbl-64 inexact-ok overflow errno-erange += exp downward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae58p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae58p+1024L : inexact-ok += exp towardzero ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae58p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-96-intel 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae5cp+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae58p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae58p+1024L : inexact-ok += exp towardzero ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae58p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-96-m68k 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae5cp+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae594e9bd9113664p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-128 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae594e9bd9113664p+1024L : inexact-ok += exp towardzero ldbl-128 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae594e9bd9113664p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-128 0x2.c679d1f73f0fcp+8L : 0x2.000000000013ae594e9bd9113666p+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp tonearest ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : inexact-ok overflow errno-erange += exp towardzero ldbl-128ibm 0x2.c679d1f73f0fcp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp upward ldbl-128ibm 0x2.c679d1f73f0fcp+8L : plus_infty : xfail:dbl-64 inexact-ok overflow errno-erange += exp downward dbl-64 0x2.c679d1f73f0fap+8 : 0xf.ffffffffffff8p+1020 : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp tonearest dbl-64 0x2.c679d1f73f0fap+8 : plus_infty : inexact-ok overflow errno-erange += exp towardzero dbl-64 0x2.c679d1f73f0fap+8 : 0xf.ffffffffffff8p+1020 : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp upward dbl-64 0x2.c679d1f73f0fap+8 : plus_infty : xfail:dbl-64 inexact-ok overflow errno-erange += exp downward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae58p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae5ap+1024L : inexact-ok += exp towardzero ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae58p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-96-intel 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae5ap+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae58p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae5ap+1024L : inexact-ok += exp towardzero ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae58p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-96-m68k 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae5ap+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-128 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae594e9bda9b6b3ap+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-128 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae594e9bda9b6b3bp+1024L : inexact-ok += exp towardzero ldbl-128 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae594e9bda9b6b3ap+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-128 0x2.c679d1f73f0fap+8L : 0x1.ffffffffffd3ae594e9bda9b6b3bp+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp tonearest ldbl-128ibm 0x2.c679d1f73f0fap+8L : plus_infty : inexact-ok overflow errno-erange += exp towardzero ldbl-128ibm 0x2.c679d1f73f0fap+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp upward ldbl-128ibm 0x2.c679d1f73f0fap+8L : plus_infty : xfail:dbl-64 inexact-ok overflow errno-erange += exp downward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe58p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe5ap+1024L : inexact-ok += exp towardzero ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe58p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-96-intel 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe5ap+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe58p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe5ap+1024L : inexact-ok += exp towardzero ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe58p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-96-m68k 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe5ap+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe594e9bd8b06065p+1024L : xfail:dbl-64 inexact-ok += exp tonearest ldbl-128 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe594e9bd8b06065p+1024L : inexact-ok += exp towardzero ldbl-128 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe594e9bd8b06065p+1024L : xfail:dbl-64 inexact-ok += exp upward ldbl-128 0x2.c679d1f73f0fb628p+8L : 0x1.fffffffffffffe594e9bd8b06066p+1024L : xfail:dbl-64 inexact-ok += exp downward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp tonearest ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : inexact-ok overflow errno-erange += exp towardzero ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp upward ldbl-128ibm 0x2.c679d1f73f0fb628p+8L : plus_infty : xfail:dbl-64 inexact-ok overflow errno-erange exp 1e5 xfail-rounding:dbl-64 = exp downward flt-32 0x1.86ap+16f : 0xf.fffffp+124f : xfail:dbl-64 inexact-ok overflow errno-erange-ok = exp tonearest flt-32 0x1.86ap+16f : plus_infty : inexact-ok overflow errno-erange @@ -62244,81 +62349,81 @@ exp10 -305 = exp10 tonearest ldbl-128ibm -0x1.31p+8L : 0x7.05b171494d5d42p-1016L : inexact-ok underflow errno-erange-ok = exp10 towardzero ldbl-128ibm -0x1.31p+8L : 0x7.05b171494d5d41cp-1016L : inexact-ok underflow errno-erange-ok = exp10 upward ldbl-128ibm -0x1.31p+8L : 0x7.05b171494d5d42p-1016L : inexact-ok underflow errno-erange-ok -exp10 4932 -= exp10 downward flt-32 0x1.344p+12f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok +exp10 4932 xfail-rounding:flt-32 += exp10 downward flt-32 0x1.344p+12f : 0xf.fffffp+124f : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest flt-32 0x1.344p+12f : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero flt-32 0x1.344p+12f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok -= exp10 upward flt-32 0x1.344p+12f : plus_infty : inexact-ok overflow errno-erange -= exp10 downward dbl-64 0x1.344p+12 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += exp10 towardzero flt-32 0x1.344p+12f : 0xf.fffffp+124f : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward flt-32 0x1.344p+12f : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward dbl-64 0x1.344p+12 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest dbl-64 0x1.344p+12 : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero dbl-64 0x1.344p+12 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok -= exp10 upward dbl-64 0x1.344p+12 : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-96-intel 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : inexact-ok += exp10 towardzero dbl-64 0x1.344p+12 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward dbl-64 0x1.344p+12 : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-96-intel 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : xfail:flt-32 inexact-ok = exp10 tonearest ldbl-96-intel 0x1.344p+12L : 0xd.72cb2a95c7ef6cdp+16380L : inexact-ok -= exp10 towardzero ldbl-96-intel 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : inexact-ok -= exp10 upward ldbl-96-intel 0x1.344p+12L : 0xd.72cb2a95c7ef6cdp+16380L : inexact-ok -= exp10 downward ldbl-96-m68k 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : inexact-ok += exp10 towardzero ldbl-96-intel 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : xfail:flt-32 inexact-ok += exp10 upward ldbl-96-intel 0x1.344p+12L : 0xd.72cb2a95c7ef6cdp+16380L : xfail:flt-32 inexact-ok += exp10 downward ldbl-96-m68k 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : xfail:flt-32 inexact-ok = exp10 tonearest ldbl-96-m68k 0x1.344p+12L : 0xd.72cb2a95c7ef6cdp+16380L : inexact-ok -= exp10 towardzero ldbl-96-m68k 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : inexact-ok -= exp10 upward ldbl-96-m68k 0x1.344p+12L : 0xd.72cb2a95c7ef6cdp+16380L : inexact-ok -= exp10 downward ldbl-128 0x1.344p+12L : 0xd.72cb2a95c7ef6cce81bf1e825bap+16380L : inexact-ok += exp10 towardzero ldbl-96-m68k 0x1.344p+12L : 0xd.72cb2a95c7ef6ccp+16380L : xfail:flt-32 inexact-ok += exp10 upward ldbl-96-m68k 0x1.344p+12L : 0xd.72cb2a95c7ef6cdp+16380L : xfail:flt-32 inexact-ok += exp10 downward ldbl-128 0x1.344p+12L : 0xd.72cb2a95c7ef6cce81bf1e825bap+16380L : xfail:flt-32 inexact-ok = exp10 tonearest ldbl-128 0x1.344p+12L : 0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380L : inexact-ok -= exp10 towardzero ldbl-128 0x1.344p+12L : 0xd.72cb2a95c7ef6cce81bf1e825bap+16380L : inexact-ok -= exp10 upward ldbl-128 0x1.344p+12L : 0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380L : inexact-ok -= exp10 downward ldbl-128ibm 0x1.344p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-128 0x1.344p+12L : 0xd.72cb2a95c7ef6cce81bf1e825bap+16380L : xfail:flt-32 inexact-ok += exp10 upward ldbl-128 0x1.344p+12L : 0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380L : xfail:flt-32 inexact-ok += exp10 downward ldbl-128ibm 0x1.344p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128ibm 0x1.344p+12L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128ibm 0x1.344p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128ibm 0x1.344p+12L : plus_infty : inexact-ok overflow errno-erange -exp10 -4932 -= exp10 downward flt-32 -0x1.344p+12f : 0x0p+0f : inexact-ok underflow errno-erange -= exp10 tonearest flt-32 -0x1.344p+12f : 0x0p+0f : inexact-ok underflow errno-erange -= exp10 towardzero flt-32 -0x1.344p+12f : 0x0p+0f : inexact-ok underflow errno-erange -= exp10 upward flt-32 -0x1.344p+12f : 0x8p-152f : inexact-ok underflow errno-erange-ok -= exp10 downward dbl-64 -0x1.344p+12 : 0x0p+0 : inexact-ok underflow errno-erange -= exp10 tonearest dbl-64 -0x1.344p+12 : 0x0p+0 : inexact-ok underflow errno-erange -= exp10 towardzero dbl-64 -0x1.344p+12 : 0x0p+0 : inexact-ok underflow errno-erange -= exp10 upward dbl-64 -0x1.344p+12 : 0x4p-1076 : inexact-ok underflow errno-erange-ok -= exp10 downward ldbl-96-intel -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow errno-erange-ok -= exp10 tonearest ldbl-96-intel -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow errno-erange-ok -= exp10 towardzero ldbl-96-intel -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow errno-erange-ok -= exp10 upward ldbl-96-intel -0x1.344p+12L : 0x1.30923e47949abf88p-16384L : inexact-ok underflow errno-erange-ok -= exp10 downward ldbl-96-m68k -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow errno-erange-ok -= exp10 tonearest ldbl-96-m68k -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow errno-erange-ok -= exp10 towardzero ldbl-96-m68k -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow errno-erange-ok -= exp10 upward ldbl-96-m68k -0x1.344p+12L : 0x1.30923e47949abf84p-16384L : inexact-ok underflow errno-erange-ok -= exp10 downward ldbl-128 -0x1.344p+12L : 0x1.30923e47949abf816b7d38ebc00cp-16384L : inexact-ok underflow errno-erange-ok -= exp10 tonearest ldbl-128 -0x1.344p+12L : 0x1.30923e47949abf816b7d38ebc01p-16384L : inexact-ok underflow errno-erange-ok -= exp10 towardzero ldbl-128 -0x1.344p+12L : 0x1.30923e47949abf816b7d38ebc00cp-16384L : inexact-ok underflow errno-erange-ok -= exp10 upward ldbl-128 -0x1.344p+12L : 0x1.30923e47949abf816b7d38ebc01p-16384L : inexact-ok underflow errno-erange-ok -= exp10 downward ldbl-128ibm -0x1.344p+12L : 0x0p+0L : inexact-ok underflow errno-erange -= exp10 tonearest ldbl-128ibm -0x1.344p+12L : 0x0p+0L : inexact-ok underflow errno-erange -= exp10 towardzero ldbl-128ibm -0x1.344p+12L : 0x0p+0L : inexact-ok underflow errno-erange -= exp10 upward ldbl-128ibm -0x1.344p+12L : 0x4p-1076L : inexact-ok underflow errno-erange-ok -exp10 1e5 -= exp10 downward flt-32 0x1.86ap+16f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-128ibm 0x1.344p+12L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128ibm 0x1.344p+12L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange +exp10 -4932 missing-underflow:ldbl-96-intel:x86 missing-underflow:ldbl-96-intel:x86_64 += exp10 downward flt-32 -0x1.344p+12f : 0x0p+0f : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange += exp10 tonearest flt-32 -0x1.344p+12f : 0x0p+0f : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange += exp10 towardzero flt-32 -0x1.344p+12f : 0x0p+0f : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange += exp10 upward flt-32 -0x1.344p+12f : 0x8p-152f : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 downward dbl-64 -0x1.344p+12 : 0x0p+0 : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange += exp10 tonearest dbl-64 -0x1.344p+12 : 0x0p+0 : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange += exp10 towardzero dbl-64 -0x1.344p+12 : 0x0p+0 : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange += exp10 upward dbl-64 -0x1.344p+12 : 0x4p-1076 : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 downward ldbl-96-intel -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 tonearest ldbl-96-intel -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 towardzero ldbl-96-intel -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 upward ldbl-96-intel -0x1.344p+12L : 0x1.30923e47949abf88p-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 downward ldbl-96-m68k -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 tonearest ldbl-96-m68k -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 towardzero ldbl-96-m68k -0x1.344p+12L : 0x1.30923e47949abf8p-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 upward ldbl-96-m68k -0x1.344p+12L : 0x1.30923e47949abf84p-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 downward ldbl-128 -0x1.344p+12L : 0x1.30923e47949abf816b7d38ebc00cp-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 tonearest ldbl-128 -0x1.344p+12L : 0x1.30923e47949abf816b7d38ebc01p-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 towardzero ldbl-128 -0x1.344p+12L : 0x1.30923e47949abf816b7d38ebc00cp-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 upward ldbl-128 -0x1.344p+12L : 0x1.30923e47949abf816b7d38ebc01p-16384L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok += exp10 downward ldbl-128ibm -0x1.344p+12L : 0x0p+0L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange += exp10 tonearest ldbl-128ibm -0x1.344p+12L : 0x0p+0L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange += exp10 towardzero ldbl-128ibm -0x1.344p+12L : 0x0p+0L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange += exp10 upward ldbl-128ibm -0x1.344p+12L : 0x4p-1076L : inexact-ok underflow underflow-ok:ldbl-96-intel:x86 underflow-ok:ldbl-96-intel:x86_64 errno-erange-ok +exp10 1e5 xfail-rounding:flt-32 += exp10 downward flt-32 0x1.86ap+16f : 0xf.fffffp+124f : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest flt-32 0x1.86ap+16f : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero flt-32 0x1.86ap+16f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok -= exp10 upward flt-32 0x1.86ap+16f : plus_infty : inexact-ok overflow errno-erange -= exp10 downward dbl-64 0x1.86ap+16 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += exp10 towardzero flt-32 0x1.86ap+16f : 0xf.fffffp+124f : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward flt-32 0x1.86ap+16f : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward dbl-64 0x1.86ap+16 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest dbl-64 0x1.86ap+16 : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero dbl-64 0x1.86ap+16 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok -= exp10 upward dbl-64 0x1.86ap+16 : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-96-intel 0x1.86ap+16L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero dbl-64 0x1.86ap+16 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward dbl-64 0x1.86ap+16 : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-96-intel 0x1.86ap+16L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-96-intel 0x1.86ap+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-96-intel 0x1.86ap+16L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-96-intel 0x1.86ap+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-96-m68k 0x1.86ap+16L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-96-intel 0x1.86ap+16L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-96-intel 0x1.86ap+16L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-96-m68k 0x1.86ap+16L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-96-m68k 0x1.86ap+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-96-m68k 0x1.86ap+16L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-96-m68k 0x1.86ap+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128 0x1.86ap+16L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-96-m68k 0x1.86ap+16L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-96-m68k 0x1.86ap+16L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128 0x1.86ap+16L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128 0x1.86ap+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128 0x1.86ap+16L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128 0x1.86ap+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128ibm 0x1.86ap+16L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-128 0x1.86ap+16L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128 0x1.86ap+16L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128ibm 0x1.86ap+16L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128ibm 0x1.86ap+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128ibm 0x1.86ap+16L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128ibm 0x1.86ap+16L : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero ldbl-128ibm 0x1.86ap+16L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128ibm 0x1.86ap+16L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange exp10 -1e5 = exp10 downward flt-32 -0x1.86ap+16f : 0x0p+0f : inexact-ok underflow errno-erange = exp10 tonearest flt-32 -0x1.86ap+16f : 0x0p+0f : inexact-ok underflow errno-erange @@ -62344,31 +62449,31 @@ exp10 -1e5 = exp10 tonearest ldbl-128ibm -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange = exp10 towardzero ldbl-128ibm -0x1.86ap+16L : 0x0p+0L : inexact-ok underflow errno-erange = exp10 upward ldbl-128ibm -0x1.86ap+16L : 0x4p-1076L : inexact-ok underflow errno-erange-ok -exp10 1e6 -= exp10 downward flt-32 0xf.424p+16f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok +exp10 1e6 xfail-rounding:flt-32 += exp10 downward flt-32 0xf.424p+16f : 0xf.fffffp+124f : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest flt-32 0xf.424p+16f : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero flt-32 0xf.424p+16f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok -= exp10 upward flt-32 0xf.424p+16f : plus_infty : inexact-ok overflow errno-erange -= exp10 downward dbl-64 0xf.424p+16 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += exp10 towardzero flt-32 0xf.424p+16f : 0xf.fffffp+124f : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward flt-32 0xf.424p+16f : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward dbl-64 0xf.424p+16 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest dbl-64 0xf.424p+16 : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero dbl-64 0xf.424p+16 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok -= exp10 upward dbl-64 0xf.424p+16 : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-96-intel 0xf.424p+16L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero dbl-64 0xf.424p+16 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward dbl-64 0xf.424p+16 : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-96-intel 0xf.424p+16L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-96-intel 0xf.424p+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-96-intel 0xf.424p+16L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-96-intel 0xf.424p+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-96-m68k 0xf.424p+16L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-96-intel 0xf.424p+16L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-96-intel 0xf.424p+16L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-96-m68k 0xf.424p+16L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-96-m68k 0xf.424p+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-96-m68k 0xf.424p+16L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-96-m68k 0xf.424p+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128 0xf.424p+16L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-96-m68k 0xf.424p+16L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-96-m68k 0xf.424p+16L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128 0xf.424p+16L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128 0xf.424p+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128 0xf.424p+16L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128 0xf.424p+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128ibm 0xf.424p+16L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-128 0xf.424p+16L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128 0xf.424p+16L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128ibm 0xf.424p+16L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128ibm 0xf.424p+16L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128ibm 0xf.424p+16L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128ibm 0xf.424p+16L : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero ldbl-128ibm 0xf.424p+16L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128ibm 0xf.424p+16L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange exp10 -1e6 = exp10 downward flt-32 -0xf.424p+16f : 0x0p+0f : inexact-ok underflow errno-erange = exp10 tonearest flt-32 -0xf.424p+16f : 0x0p+0f : inexact-ok underflow errno-erange @@ -62394,75 +62499,75 @@ exp10 -1e6 = exp10 tonearest ldbl-128ibm -0xf.424p+16L : 0x0p+0L : inexact-ok underflow errno-erange = exp10 towardzero ldbl-128ibm -0xf.424p+16L : 0x0p+0L : inexact-ok underflow errno-erange = exp10 upward ldbl-128ibm -0xf.424p+16L : 0x4p-1076L : inexact-ok underflow errno-erange-ok -exp10 max -= exp10 downward flt-32 0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok +exp10 max xfail-rounding:flt-32 += exp10 downward flt-32 0xf.fffffp+124f : 0xf.fffffp+124f : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest flt-32 0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero flt-32 0xf.fffffp+124f : 0xf.fffffp+124f : inexact-ok overflow errno-erange-ok -= exp10 upward flt-32 0xf.fffffp+124f : plus_infty : inexact-ok overflow errno-erange -= exp10 downward dbl-64 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += exp10 towardzero flt-32 0xf.fffffp+124f : 0xf.fffffp+124f : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward flt-32 0xf.fffffp+124f : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward dbl-64 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest dbl-64 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero dbl-64 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok -= exp10 upward dbl-64 0xf.fffffp+124 : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-96-intel 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero dbl-64 0xf.fffffp+124 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward dbl-64 0xf.fffffp+124 : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-96-intel 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-96-intel 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-96-intel 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-96-intel 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-96-m68k 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-96-intel 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-96-intel 0xf.fffffp+124L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-96-m68k 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-96-m68k 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-96-m68k 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-96-m68k 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-96-m68k 0xf.fffffp+124L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-96-m68k 0xf.fffffp+124L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128ibm 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-128 0xf.fffffp+124L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128 0xf.fffffp+124L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128ibm 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128ibm 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128ibm 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128ibm 0xf.fffffp+124L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward dbl-64 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-128ibm 0xf.fffffp+124L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128ibm 0xf.fffffp+124L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward dbl-64 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest dbl-64 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero dbl-64 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : inexact-ok overflow errno-erange-ok -= exp10 upward dbl-64 0xf.ffffffffffff8p+1020 : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero dbl-64 0xf.ffffffffffff8p+1020 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward dbl-64 0xf.ffffffffffff8p+1020 : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-96-intel 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-96-intel 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-96-intel 0xf.ffffffffffff8p+1020L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-96-m68k 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-96-m68k 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-96-m68k 0xf.ffffffffffff8p+1020L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-128 0xf.ffffffffffff8p+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128 0xf.ffffffffffff8p+1020L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128ibm 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-128ibm 0xf.ffffffffffff8p+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128ibm 0xf.ffffffffffff8p+1020L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-96-intel 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-96-intel 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-96-intel 0xf.fffffffffffffffp+16380L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-96-m68k 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-96-m68k 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffp+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-96-m68k 0xf.fffffffffffffffp+16380L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128 0xf.fffffffffffffffp+16380L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-128 0xf.fffffffffffffffp+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128 0xf.fffffffffffffffp+16380L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128 0xf.fffffffffffffffffffffffffff8p+16380L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange -= exp10 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok += exp10 towardzero ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.fffffffffffffffffffffffffff8p+16380L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange += exp10 downward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok = exp10 tonearest ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange -= exp10 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : inexact-ok overflow errno-erange-ok -= exp10 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128ibm 0xf.ffffffffffffbffffffffffffcp+1020L : plus_infty : xfail:flt-32 inexact-ok overflow errno-erange exp10 -max = exp10 downward flt-32 -0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange = exp10 tonearest flt-32 -0xf.fffffp+124f : 0x0p+0f : inexact-ok underflow errno-erange @@ -62557,6 +62662,111 @@ exp10 0.75 = exp10 tonearest ldbl-128ibm 0xcp-4L : 0x5.9f9802c8d189657416ee3fd818p+0L : inexact-ok = exp10 towardzero ldbl-128ibm 0xcp-4L : 0x5.9f9802c8d189657416ee3fd818p+0L : inexact-ok = exp10 upward ldbl-128ibm 0xcp-4L : 0x5.9f9802c8d189657416ee3fd81ap+0L : inexact-ok +exp10 0x1.348e45573a1dd72cp+8 xfail-rounding:flt-32 xfail-rounding:dbl-64 += exp10 downward flt-32 0x1.348e46p+8f : 0xf.fffffp+124f : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 tonearest flt-32 0x1.348e46p+8f : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero flt-32 0x1.348e46p+8f : 0xf.fffffp+124f : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 upward flt-32 0x1.348e46p+8f : plus_infty : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange += exp10 downward dbl-64 0x1.348e46p+8 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 tonearest dbl-64 0x1.348e46p+8 : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero dbl-64 0x1.348e46p+8 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 upward dbl-64 0x1.348e46p+8 : plus_infty : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange += exp10 downward ldbl-96-intel 0x1.348e46p+8L : 0x2.0003093cc02bf7bcp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-96-intel 0x1.348e46p+8L : 0x2.0003093cc02bf7cp+1024L : inexact-ok += exp10 towardzero ldbl-96-intel 0x1.348e46p+8L : 0x2.0003093cc02bf7bcp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-96-intel 0x1.348e46p+8L : 0x2.0003093cc02bf7cp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-96-m68k 0x1.348e46p+8L : 0x2.0003093cc02bf7bcp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-96-m68k 0x1.348e46p+8L : 0x2.0003093cc02bf7cp+1024L : inexact-ok += exp10 towardzero ldbl-96-m68k 0x1.348e46p+8L : 0x2.0003093cc02bf7bcp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-96-m68k 0x1.348e46p+8L : 0x2.0003093cc02bf7cp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-128 0x1.348e46p+8L : 0x2.0003093cc02bf7be0dd170fd425ep+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-128 0x1.348e46p+8L : 0x2.0003093cc02bf7be0dd170fd426p+1024L : inexact-ok += exp10 towardzero ldbl-128 0x1.348e46p+8L : 0x2.0003093cc02bf7be0dd170fd425ep+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-128 0x1.348e46p+8L : 0x2.0003093cc02bf7be0dd170fd426p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-128ibm 0x1.348e46p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 tonearest ldbl-128ibm 0x1.348e46p+8L : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero ldbl-128ibm 0x1.348e46p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128ibm 0x1.348e46p+8L : plus_infty : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange += exp10 downward flt-32 0x1.348e44p+8f : 0xf.fffffp+124f : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 tonearest flt-32 0x1.348e44p+8f : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero flt-32 0x1.348e44p+8f : 0xf.fffffp+124f : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 upward flt-32 0x1.348e44p+8f : plus_infty : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange += exp10 downward dbl-64 0x1.348e44p+8 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 tonearest dbl-64 0x1.348e44p+8 : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero dbl-64 0x1.348e44p+8 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 upward dbl-64 0x1.348e44p+8 : plus_infty : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange += exp10 downward ldbl-96-intel 0x1.348e44p+8L : 0x1.fff9d36b1c2656eep+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-96-intel 0x1.348e44p+8L : 0x1.fff9d36b1c2656fp+1024L : inexact-ok += exp10 towardzero ldbl-96-intel 0x1.348e44p+8L : 0x1.fff9d36b1c2656eep+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-96-intel 0x1.348e44p+8L : 0x1.fff9d36b1c2656fp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-96-m68k 0x1.348e44p+8L : 0x1.fff9d36b1c2656eep+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-96-m68k 0x1.348e44p+8L : 0x1.fff9d36b1c2656fp+1024L : inexact-ok += exp10 towardzero ldbl-96-m68k 0x1.348e44p+8L : 0x1.fff9d36b1c2656eep+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-96-m68k 0x1.348e44p+8L : 0x1.fff9d36b1c2656fp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-128 0x1.348e44p+8L : 0x1.fff9d36b1c2656ef7dd26d07ce3fp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-128 0x1.348e44p+8L : 0x1.fff9d36b1c2656ef7dd26d07ce3fp+1024L : inexact-ok += exp10 towardzero ldbl-128 0x1.348e44p+8L : 0x1.fff9d36b1c2656ef7dd26d07ce3fp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-128 0x1.348e44p+8L : 0x1.fff9d36b1c2656ef7dd26d07ce4p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-128ibm 0x1.348e44p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 tonearest ldbl-128ibm 0x1.348e44p+8L : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero ldbl-128ibm 0x1.348e44p+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128ibm 0x1.348e44p+8L : plus_infty : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange += exp10 downward dbl-64 0x1.348e45573a1dep+8 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 tonearest dbl-64 0x1.348e45573a1dep+8 : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero dbl-64 0x1.348e45573a1dep+8 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 upward dbl-64 0x1.348e45573a1dep+8 : plus_infty : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange += exp10 downward ldbl-96-intel 0x1.348e45573a1dep+8L : 0x2.000000000028a37p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-96-intel 0x1.348e45573a1dep+8L : 0x2.000000000028a374p+1024L : inexact-ok += exp10 towardzero ldbl-96-intel 0x1.348e45573a1dep+8L : 0x2.000000000028a37p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-96-intel 0x1.348e45573a1dep+8L : 0x2.000000000028a374p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-96-m68k 0x1.348e45573a1dep+8L : 0x2.000000000028a37p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-96-m68k 0x1.348e45573a1dep+8L : 0x2.000000000028a374p+1024L : inexact-ok += exp10 towardzero ldbl-96-m68k 0x1.348e45573a1dep+8L : 0x2.000000000028a37p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-96-m68k 0x1.348e45573a1dep+8L : 0x2.000000000028a374p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-128 0x1.348e45573a1dep+8L : 0x2.000000000028a3736b9d8e05898cp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-128 0x1.348e45573a1dep+8L : 0x2.000000000028a3736b9d8e05898ep+1024L : inexact-ok += exp10 towardzero ldbl-128 0x1.348e45573a1dep+8L : 0x2.000000000028a3736b9d8e05898cp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-128 0x1.348e45573a1dep+8L : 0x2.000000000028a3736b9d8e05898ep+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-128ibm 0x1.348e45573a1dep+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 tonearest ldbl-128ibm 0x1.348e45573a1dep+8L : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero ldbl-128ibm 0x1.348e45573a1dep+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128ibm 0x1.348e45573a1dep+8L : plus_infty : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange += exp10 downward dbl-64 0x1.348e45573a1ddp+8 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 tonearest dbl-64 0x1.348e45573a1ddp+8 : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero dbl-64 0x1.348e45573a1ddp+8 : 0xf.ffffffffffff8p+1020 : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 upward dbl-64 0x1.348e45573a1ddp+8 : plus_infty : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange += exp10 downward ldbl-96-intel 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4acp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-96-intel 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4acp+1024L : inexact-ok += exp10 towardzero ldbl-96-intel 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4acp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-96-intel 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4aep+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-96-m68k 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4acp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-96-m68k 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4acp+1024L : inexact-ok += exp10 towardzero ldbl-96-m68k 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4acp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-96-m68k 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4aep+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-128 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4ac7cc8392399ffp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-128 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4ac7cc8392399ffp+1024L : inexact-ok += exp10 towardzero ldbl-128 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4ac7cc8392399ffp+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-128 0x1.348e45573a1ddp+8L : 0x1.ffffffffffdef4ac7cc839239ap+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-128ibm 0x1.348e45573a1ddp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 tonearest ldbl-128ibm 0x1.348e45573a1ddp+8L : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero ldbl-128ibm 0x1.348e45573a1ddp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128ibm 0x1.348e45573a1ddp+8L : plus_infty : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange += exp10 downward ldbl-96-intel 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc4p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-96-intel 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc4p+1024L : inexact-ok += exp10 towardzero ldbl-96-intel 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc4p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-96-intel 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc6p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-96-m68k 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc4p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-96-m68k 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc4p+1024L : inexact-ok += exp10 towardzero ldbl-96-m68k 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc4p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-96-m68k 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc6p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-128 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc4285657a030a4p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 tonearest ldbl-128 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc4285657a030a5p+1024L : inexact-ok += exp10 towardzero ldbl-128 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc4285657a030a4p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 upward ldbl-128 0x1.348e45573a1dd72cp+8L : 0x1.fffffffffffffbc4285657a030a5p+1024L : xfail:flt-32 xfail:dbl-64 inexact-ok += exp10 downward ldbl-128ibm 0x1.348e45573a1dd72cp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 tonearest ldbl-128ibm 0x1.348e45573a1dd72cp+8L : plus_infty : inexact-ok overflow errno-erange += exp10 towardzero ldbl-128ibm 0x1.348e45573a1dd72cp+8L : 0xf.ffffffffffffbffffffffffffcp+1020L : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange-ok += exp10 upward ldbl-128ibm 0x1.348e45573a1dd72cp+8L : plus_infty : xfail:flt-32 xfail:dbl-64 inexact-ok overflow errno-erange exp2 0 = exp2 downward flt-32 0x0p+0f : 0x1p+0f : inexact-ok = exp2 tonearest flt-32 0x0p+0f : 0x1p+0f : inexact-ok diff --git a/math/libm-test.inc b/math/libm-test.inc index 523514943b..e341f236ab 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -7280,6 +7280,62 @@ exp10_test (void) END; } + +static const struct test_f_f_data exp10_tonearest_test_data[] = + { + AUTO_TESTS_f_f (exp10, tonearest), + }; + +static void +exp10_test_tonearest (void) +{ + START (exp10_tonearest); + RUN_TEST_LOOP_f_f (exp10, exp10_tonearest_test_data, FE_TONEAREST); + END; +} + + +static const struct test_f_f_data exp10_towardzero_test_data[] = + { + AUTO_TESTS_f_f (exp10, towardzero), + }; + +static void +exp10_test_towardzero (void) +{ + START (exp10_towardzero); + RUN_TEST_LOOP_f_f (exp10, exp10_towardzero_test_data, FE_TOWARDZERO); + END; +} + + +static const struct test_f_f_data exp10_downward_test_data[] = + { + AUTO_TESTS_f_f (exp10, downward), + }; + +static void +exp10_test_downward (void) +{ + START (exp10_downward); + RUN_TEST_LOOP_f_f (exp10, exp10_downward_test_data, FE_DOWNWARD); + END; +} + + +static const struct test_f_f_data exp10_upward_test_data[] = + { + AUTO_TESTS_f_f (exp10, upward), + }; + +static void +exp10_test_upward (void) +{ + START (exp10_upward); + RUN_TEST_LOOP_f_f (exp10, exp10_upward_test_data, FE_UPWARD); + END; +} + static void pow10_test (void) { @@ -12819,6 +12875,10 @@ main (int argc, char **argv) exp_test_downward (); exp_test_upward (); exp10_test (); + exp10_test_tonearest (); + exp10_test_towardzero (); + exp10_test_downward (); + exp10_test_upward (); exp2_test (); expm1_test (); expm1_test_tonearest (); diff --git a/sysdeps/i386/fpu/e_expl.S b/sysdeps/i386/fpu/e_expl.S index a8a5e70b07..5917f574b1 100644 --- a/sysdeps/i386/fpu/e_expl.S +++ b/sysdeps/i386/fpu/e_expl.S @@ -130,7 +130,6 @@ ENTRY(IEEE754_EXPL) #endif 3: FLDLOG /* 1 log2(base) */ fmul %st(1), %st /* 1 x log2(base) */ -#ifdef USE_AS_EXPM1L /* Set round-to-nearest temporarily. */ subl $8, %esp cfi_adjust_cfa_offset (8) @@ -139,15 +138,12 @@ ENTRY(IEEE754_EXPL) andl 4(%esp), %edx movl %edx, (%esp) fldcw (%esp) -#endif frndint /* 1 i */ fld %st(1) /* 2 x */ frndint /* 2 xi */ -#ifdef USE_AS_EXPM1L fldcw 4(%esp) addl $8, %esp cfi_adjust_cfa_offset (-8) -#endif fld %st(1) /* 3 i */ fldt MO(c0) /* 4 c0 */ fld %st(2) /* 5 xi */ diff --git a/sysdeps/i386/fpu/libm-test-ulps b/sysdeps/i386/fpu/libm-test-ulps index dc53d94b4a..ae0a303d01 100644 --- a/sysdeps/i386/fpu/libm-test-ulps +++ b/sysdeps/i386/fpu/libm-test-ulps @@ -7095,6 +7095,10 @@ Test "cosh_downward (-0x2.c5e3bp+8)": ildouble: 1 Test "cosh_downward (-0x2.c679d1f73f0fap+8)": ildouble: 2 +Test "cosh_downward (-0x2.c679d1f73f0fb624p+8)": +ildouble: 2 +Test "cosh_downward (-0x2.c679d1f73f0fb628p+8)": +ildouble: 2 Test "cosh_downward (-0x2.c679d1f73f0fcp+8)": ildouble: 1 Test "cosh_downward (-0x2.c679dp+8)": @@ -7181,15 +7185,25 @@ Test "cosh_towardzero (-0x2.c5d37700c6bbp+12)": ldouble: 2 Test "cosh_towardzero (-0x2.c5e3acd2922a6p+8)": ildouble: 1 +Test "cosh_towardzero (-0x2.c679d1f73f0fap+8)": +ildouble: 2 +Test "cosh_towardzero (-0x2.c679d1f73f0fb624p+8)": +ildouble: 2 +Test "cosh_towardzero (-0x2.c679d1f73f0fb628p+8)": +ildouble: 2 Test "cosh_towardzero (-0x2.c679dp+8)": double: 1 ildouble: 1 Test "cosh_towardzero (-0x5.96a7ep+4)": double: 1 +ildouble: 2 ldouble: 1 Test "cosh_towardzero (0x1.6p+4)": ildouble: 1 ldouble: 2 +Test "cosh_towardzero (0x1.8p+4)": +ildouble: 1 +ldouble: 1 Test "cosh_towardzero (0x2.c5d374p+12)": ldouble: 1 Test "cosh_towardzero (0x2.c5d37700c6bb03a4p+12)": @@ -7240,6 +7254,11 @@ ildouble: 1 Test "cosh_upward (-0x2.c679d1f73f0fap+8)": double: 1 ildouble: 1 +Test "cosh_upward (-0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +Test "cosh_upward (-0x2.c679d1f73f0fb628p+8)": +ildouble: 1 +ldouble: 1 Test "cosh_upward (-0x2.c679d1f73f0fcp+8)": ildouble: 1 Test "cosh_upward (-0x2p-16384)": @@ -7292,6 +7311,11 @@ ildouble: 1 Test "cosh_upward (0x2.c679d1f73f0fap+8)": double: 1 ildouble: 1 +Test "cosh_upward (0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +Test "cosh_upward (0x2.c679d1f73f0fb628p+8)": +ildouble: 2 +ldouble: 1 Test "cosh_upward (0x2.c679d1f73f0fcp+8)": ildouble: 1 Test "cosh_upward (0x2.c679d4p+8)": @@ -8323,11 +8347,13 @@ Test "Real part of: ctan_towardzero (0x1p+0 + 0x1.63p+8 i)": ildouble: 1 ldouble: 1 Test "Real part of: ctan_towardzero (0x1p+0 + 0x1.6dp+8 i)": -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.dp+4 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.fp+4 i)": double: 1 idouble: 1 @@ -8361,6 +8387,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0xcp-4 + 0x1.4p+0 i)": +ildouble: 2 +ldouble: 2 Test "Real part of: ctan_towardzero (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": double: 1 idouble: 1 @@ -9188,8 +9217,8 @@ Test "Imaginary part of: ctanh_towardzero (0x1.63p+8 + 0x1p+0 i)": ildouble: 1 ldouble: 1 Test "Imaginary part of: ctanh_towardzero (0x1.6dp+8 + 0x1p+0 i)": -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+1020 i)": double: 1 idouble: 1 @@ -9235,6 +9264,8 @@ ldouble: 1 Test "Imaginary part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: ctanh_towardzero (0x2.fp+4 + 0x1p+0 i)": double: 1 idouble: 1 @@ -9697,6 +9728,48 @@ Test "exp10 (0xcp-4)": ildouble: 1 ldouble: 1 +# exp10_downward +Test "exp10_downward (0x1.348e45573a1dd72cp+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_downward (0x3p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# exp10_tonearest +Test "exp10_tonearest (0xcp-4)": +ildouble: 1 +ldouble: 1 + +# exp10_towardzero +Test "exp10_towardzero (-0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0x3p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# exp10_upward +Test "exp10_upward (0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "exp10_upward (0x3p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + # exp_downward Test "exp_downward (0x2.c5cp+8)": double: 1 @@ -9788,6 +9861,9 @@ ldouble: 1 Test "exp_upward (-0x2.e870a7e5e88cp+8)": ildouble: 1 ldouble: 1 +Test "exp_upward (0x2.c679d1f73f0fb628p+8)": +ildouble: 1 +ldouble: 1 Test "exp_upward (1)": double: 1 float: 1 @@ -14500,7 +14576,7 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 +ildouble: 2 ldouble: 3 Function: "cosh_upward": @@ -14740,6 +14816,34 @@ Function: "exp10": ildouble: 1 ldouble: 1 +Function: "exp10_downward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + +Function: "exp10_tonearest": +ildouble: 1 +ldouble: 1 + +Function: "exp10_towardzero": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +Function: "exp10_upward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + Function: "exp_downward": double: 1 float: 1 diff --git a/sysdeps/x86_64/fpu/e_expl.S b/sysdeps/x86_64/fpu/e_expl.S index 1c21f03ddc..36d30c26d3 100644 --- a/sysdeps/x86_64/fpu/e_expl.S +++ b/sysdeps/x86_64/fpu/e_expl.S @@ -127,20 +127,16 @@ ENTRY(IEEE754_EXPL) #endif 3: FLDLOG /* 1 log2(base) */ fmul %st(1), %st /* 1 x log2(base) */ -#ifdef USE_AS_EXPM1L /* Set round-to-nearest temporarily. */ fstcw -4(%rsp) movl $0xf3ff, %edx andl -4(%rsp), %edx movl %edx, -8(%rsp) fldcw -8(%rsp) -#endif frndint /* 1 i */ fld %st(1) /* 2 x */ frndint /* 2 xi */ -#ifdef USE_AS_EXPM1L fldcw -4(%rsp) -#endif fld %st(1) /* 3 i */ fldt MO(c0) /* 4 c0 */ fld %st(2) /* 5 xi */ diff --git a/sysdeps/x86_64/fpu/libm-test-ulps b/sysdeps/x86_64/fpu/libm-test-ulps index 6404c74303..9c3b1b769e 100644 --- a/sysdeps/x86_64/fpu/libm-test-ulps +++ b/sysdeps/x86_64/fpu/libm-test-ulps @@ -8125,6 +8125,9 @@ ldouble: 2 Test "cosh_towardzero (0x1.7p+4)": double: 1 idouble: 1 +Test "cosh_towardzero (0x1.8p+4)": +ildouble: 1 +ldouble: 1 Test "cosh_towardzero (0x2.c5d374p+12)": ldouble: 1 Test "cosh_towardzero (0x2.c5d37700c6bb03a4p+12)": @@ -8180,6 +8183,9 @@ idouble: 1 Test "cosh_upward (-0x2.c679d1f73f0fap+8)": double: 1 idouble: 1 +Test "cosh_upward (-0x2.c679d1f73f0fb628p+8)": +ildouble: 1 +ldouble: 1 Test "cosh_upward (-0x2.c679dp+8)": double: 1 idouble: 1 @@ -8215,6 +8221,9 @@ idouble: 1 Test "cosh_upward (0x2.c679d1f73f0fap+8)": double: 1 idouble: 1 +Test "cosh_upward (0x2.c679d1f73f0fb628p+8)": +ildouble: 1 +ldouble: 1 Test "cosh_upward (0x2.c679dp+8)": double: 1 idouble: 1 @@ -9312,11 +9321,13 @@ Test "Real part of: ctan_towardzero (0x1p+0 + 0x1.63p+8 i)": ildouble: 1 ldouble: 1 Test "Real part of: ctan_towardzero (0x1p+0 + 0x1.6dp+8 i)": -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.dp+4 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.fp+4 i)": ildouble: 1 ldouble: 1 @@ -9352,6 +9363,9 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0xcp-4 + 0x1.4p+0 i)": +ildouble: 2 +ldouble: 2 Test "Real part of: ctan_towardzero (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": double: 2 idouble: 2 @@ -10342,8 +10356,8 @@ Test "Imaginary part of: ctanh_towardzero (0x1.63p+8 + 0x1p+0 i)": ildouble: 1 ldouble: 1 Test "Imaginary part of: ctanh_towardzero (0x1.6dp+8 + 0x1p+0 i)": -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+1020 i)": double: 5 idouble: 5 @@ -10396,6 +10410,8 @@ ldouble: 1 Test "Imaginary part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: ctanh_towardzero (0x2.fp+4 + 0x1p+0 i)": ildouble: 1 ldouble: 1 @@ -10921,6 +10937,75 @@ Test "exp10 (36)": double: 1 idouble: 1 +# exp10_downward +Test "exp10_downward (0x1.348e45573a1dd72cp+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_downward (0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_downward (0x3p+0)": +ildouble: 1 +ldouble: 1 + +# exp10_tonearest +Test "exp10_tonearest (-0x1.31p+8)": +double: 1 +idouble: 1 +Test "exp10_tonearest (-0x1p+0)": +double: 1 +idouble: 1 +Test "exp10_tonearest (-0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_tonearest (0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_tonearest (0x3p+0)": +double: 1 +idouble: 1 +Test "exp10_tonearest (0xcp-4)": +ildouble: 1 +ldouble: 1 + +# exp10_towardzero +Test "exp10_towardzero (-0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0x2.4p+4)": +double: 1 +idouble: 1 + +# exp10_upward +Test "exp10_upward (-0x1.344p+12)": +float: 1 +ifloat: 1 +Test "exp10_upward (-0x1.86ap+16)": +float: 1 +ifloat: 1 +Test "exp10_upward (-0xf.424p+16)": +float: 1 +ifloat: 1 +Test "exp10_upward (-0xf.fffffp+124)": +float: 1 +ifloat: 1 +Test "exp10_upward (0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "exp10_upward (0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_upward (0x3p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + # exp_downward Test "exp_downward (0x2.c5cp+8)": ildouble: 1 @@ -11057,6 +11142,9 @@ idouble: 1 Test "exp_upward (0x2.c5cp+8)": double: 1 idouble: 1 +Test "exp_upward (0x2.c679d1f73f0fb628p+8)": +ildouble: 1 +ldouble: 1 Test "exp_upward (0x3.2p+4)": double: 1 idouble: 1 @@ -16375,6 +16463,32 @@ idouble: 1 ildouble: 1 ldouble: 1 +Function: "exp10_downward": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 + +Function: "exp10_tonearest": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + +Function: "exp10_towardzero": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + +Function: "exp10_upward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + Function: "exp_downward": double: 1 float: 1 -- cgit v1.2.3 From ef7344f09c5ce00eb519ed14598b2a8e39c68387 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Sun, 22 Dec 2013 14:49:48 +0000 Subject: Flatten sysdeps/unix/bsd/bsd4.4 into sysdeps/unix/bsd. As discussed in and , it seems appropriate to flatten sysdeps/unix/bsd/bsd4.4 into sysdeps/unix/bsd. The bulk of the patch is just moving files. The only other changes are: update paths in sysdeps/mach/hurd/Implies and sysdeps/unix/sysv/linux/wait3.c; merge the two syscalls.list files, with the removal of syscalls that were in sysdeps/unix/bsd/syscalls.list but overridden in the bsd4.4 directory by .c files there. Tested x86_64. The installed shared libraries are identical before and after the patch except for libc.so where the move of wait3.c (included by sysdeps/unix/sysv/linux/wait3.c) affects debug info, but the disassembly is unchanged. * sysdeps/mach/hurd/Implies: Change unix/bsd/bsd4.4 to unix/bsd. * sysdeps/unix/bsd/syscalls.list (chflags): Add entry from sysdeps/unix/bsd/bsd4.4/syscalls.list. (fchflags): Likewise. (revoke): Likewise. (setlogin): Likewise. (sigaltstack): Likewise. (wait4): Likewise. (sigblock): Remove. (sigsetmask): Likewise. (wait3): Likewise. (waitpid): Likewise. * sysdeps/unix/bsd/bsd4.4/syscalls.list: Remove file. * sysdeps/unix/sysv/linux/wait3.c: Update directory of included file. * sysdeps/unix/bsd/bsd4.4/Makefile: Move to ... * sysdeps/unix/bsd/Makefile: ... here. * sysdeps/unix/bsd/bsd4.4/Versions: Move to ... * sysdeps/unix/bsd/Versions: ... here. * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h: Move to ... * sysdeps/unix/bsd/bits/sockaddr.h: ... here. * sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c: Move to ... * sysdeps/unix/bsd/cmsg_nxthdr.c: ... here. * sysdeps/unix/bsd/bsd4.4/sigblock.c: Move to ... * sysdeps/unix/bsd/sigblock.c: ... here. * sysdeps/unix/bsd/bsd4.4/sigsetmask.c: Move to ... * sysdeps/unix/bsd/sigsetmask.c: ... here. * sysdeps/unix/bsd/bsd4.4/sigvec.c: Move to ... * sysdeps/unix/bsd/sigvec.c: ... here. * sysdeps/unix/bsd/bsd4.4/tcdrain.c: Move to ... * sysdeps/unix/bsd/tcdrain.c: ... here. * sysdeps/unix/bsd/bsd4.4/tcgetattr.c: Move to ... * sysdeps/unix/bsd/tcgetattr.c: ... here. * sysdeps/unix/bsd/bsd4.4/tcsetattr.c: Move to ... * sysdeps/unix/bsd/tcsetattr.c: ... here. * sysdeps/unix/bsd/bsd4.4/wait.c: Move to ... * sysdeps/unix/bsd/wait.c: ... here. * sysdeps/unix/bsd/bsd4.4/wait3.c: Move to ... * sysdeps/unix/bsd/wait3.c: ... here. * sysdeps/unix/bsd/bsd4.4/waitpid.c: Move to ... * sysdeps/unix/bsd/waitpid.c: ... here. --- ChangeLog | 44 +++++++++++++++++++++++ sysdeps/mach/hurd/Implies | 2 +- sysdeps/unix/bsd/Makefile | 3 ++ sysdeps/unix/bsd/Versions | 6 ++++ sysdeps/unix/bsd/bits/sockaddr.h | 42 ++++++++++++++++++++++ sysdeps/unix/bsd/bsd4.4/Makefile | 3 -- sysdeps/unix/bsd/bsd4.4/Versions | 6 ---- sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h | 42 ---------------------- sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c | 2 -- sysdeps/unix/bsd/bsd4.4/sigblock.c | 1 - sysdeps/unix/bsd/bsd4.4/sigsetmask.c | 1 - sysdeps/unix/bsd/bsd4.4/sigvec.c | 1 - sysdeps/unix/bsd/bsd4.4/syscalls.list | 8 ----- sysdeps/unix/bsd/bsd4.4/tcdrain.c | 27 -------------- sysdeps/unix/bsd/bsd4.4/tcgetattr.c | 40 --------------------- sysdeps/unix/bsd/bsd4.4/tcsetattr.c | 62 --------------------------------- sysdeps/unix/bsd/bsd4.4/wait.c | 32 ----------------- sysdeps/unix/bsd/bsd4.4/wait3.c | 36 ------------------- sysdeps/unix/bsd/bsd4.4/waitpid.c | 43 ----------------------- sysdeps/unix/bsd/cmsg_nxthdr.c | 2 ++ sysdeps/unix/bsd/sigblock.c | 1 + sysdeps/unix/bsd/sigsetmask.c | 1 + sysdeps/unix/bsd/sigvec.c | 1 + sysdeps/unix/bsd/syscalls.list | 10 +++--- sysdeps/unix/bsd/tcdrain.c | 27 ++++++++++++++ sysdeps/unix/bsd/tcgetattr.c | 40 +++++++++++++++++++++ sysdeps/unix/bsd/tcsetattr.c | 62 +++++++++++++++++++++++++++++++++ sysdeps/unix/bsd/wait.c | 32 +++++++++++++++++ sysdeps/unix/bsd/wait3.c | 36 +++++++++++++++++++ sysdeps/unix/bsd/waitpid.c | 43 +++++++++++++++++++++++ sysdeps/unix/sysv/linux/wait3.c | 2 +- 31 files changed, 348 insertions(+), 310 deletions(-) create mode 100644 sysdeps/unix/bsd/Makefile create mode 100644 sysdeps/unix/bsd/Versions create mode 100644 sysdeps/unix/bsd/bits/sockaddr.h delete mode 100644 sysdeps/unix/bsd/bsd4.4/Makefile delete mode 100644 sysdeps/unix/bsd/bsd4.4/Versions delete mode 100644 sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h delete mode 100644 sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c delete mode 100644 sysdeps/unix/bsd/bsd4.4/sigblock.c delete mode 100644 sysdeps/unix/bsd/bsd4.4/sigsetmask.c delete mode 100644 sysdeps/unix/bsd/bsd4.4/sigvec.c delete mode 100644 sysdeps/unix/bsd/bsd4.4/syscalls.list delete mode 100644 sysdeps/unix/bsd/bsd4.4/tcdrain.c delete mode 100644 sysdeps/unix/bsd/bsd4.4/tcgetattr.c delete mode 100644 sysdeps/unix/bsd/bsd4.4/tcsetattr.c delete mode 100644 sysdeps/unix/bsd/bsd4.4/wait.c delete mode 100644 sysdeps/unix/bsd/bsd4.4/wait3.c delete mode 100644 sysdeps/unix/bsd/bsd4.4/waitpid.c create mode 100644 sysdeps/unix/bsd/cmsg_nxthdr.c create mode 100644 sysdeps/unix/bsd/sigblock.c create mode 100644 sysdeps/unix/bsd/sigsetmask.c create mode 100644 sysdeps/unix/bsd/sigvec.c create mode 100644 sysdeps/unix/bsd/tcdrain.c create mode 100644 sysdeps/unix/bsd/tcgetattr.c create mode 100644 sysdeps/unix/bsd/tcsetattr.c create mode 100644 sysdeps/unix/bsd/wait.c create mode 100644 sysdeps/unix/bsd/wait3.c create mode 100644 sysdeps/unix/bsd/waitpid.c (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 5108d2efdf..3e806a20f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,47 @@ +2013-12-22 Joseph Myers + + * sysdeps/mach/hurd/Implies: Change unix/bsd/bsd4.4 to unix/bsd. + * sysdeps/unix/bsd/syscalls.list (chflags): Add entry from + sysdeps/unix/bsd/bsd4.4/syscalls.list. + (fchflags): Likewise. + (revoke): Likewise. + (setlogin): Likewise. + (sigaltstack): Likewise. + (wait4): Likewise. + (sigblock): Remove. + (sigsetmask): Likewise. + (wait3): Likewise. + (waitpid): Likewise. + * sysdeps/unix/bsd/bsd4.4/syscalls.list: Remove file. + * sysdeps/unix/sysv/linux/wait3.c: Update directory of included + file. + * sysdeps/unix/bsd/bsd4.4/Makefile: Move to ... + * sysdeps/unix/bsd/Makefile: ... here. + * sysdeps/unix/bsd/bsd4.4/Versions: Move to ... + * sysdeps/unix/bsd/Versions: ... here. + * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h: Move to ... + * sysdeps/unix/bsd/bits/sockaddr.h: ... here. + * sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c: Move to ... + * sysdeps/unix/bsd/cmsg_nxthdr.c: ... here. + * sysdeps/unix/bsd/bsd4.4/sigblock.c: Move to ... + * sysdeps/unix/bsd/sigblock.c: ... here. + * sysdeps/unix/bsd/bsd4.4/sigsetmask.c: Move to ... + * sysdeps/unix/bsd/sigsetmask.c: ... here. + * sysdeps/unix/bsd/bsd4.4/sigvec.c: Move to ... + * sysdeps/unix/bsd/sigvec.c: ... here. + * sysdeps/unix/bsd/bsd4.4/tcdrain.c: Move to ... + * sysdeps/unix/bsd/tcdrain.c: ... here. + * sysdeps/unix/bsd/bsd4.4/tcgetattr.c: Move to ... + * sysdeps/unix/bsd/tcgetattr.c: ... here. + * sysdeps/unix/bsd/bsd4.4/tcsetattr.c: Move to ... + * sysdeps/unix/bsd/tcsetattr.c: ... here. + * sysdeps/unix/bsd/bsd4.4/wait.c: Move to ... + * sysdeps/unix/bsd/wait.c: ... here. + * sysdeps/unix/bsd/bsd4.4/wait3.c: Move to ... + * sysdeps/unix/bsd/wait3.c: ... here. + * sysdeps/unix/bsd/bsd4.4/waitpid.c: Move to ... + * sysdeps/unix/bsd/waitpid.c: ... here. + 2013-12-21 Joseph Myers [BZ #16356] diff --git a/sysdeps/mach/hurd/Implies b/sysdeps/mach/hurd/Implies index b6063463ce..d2d5234c1f 100644 --- a/sysdeps/mach/hurd/Implies +++ b/sysdeps/mach/hurd/Implies @@ -2,4 +2,4 @@ # Hurd-based GNU systems. gnu # The Hurd provides a rough superset of the functionality of 4.4 BSD. -unix/bsd/bsd4.4 +unix/bsd diff --git a/sysdeps/unix/bsd/Makefile b/sysdeps/unix/bsd/Makefile new file mode 100644 index 0000000000..208fd24484 --- /dev/null +++ b/sysdeps/unix/bsd/Makefile @@ -0,0 +1,3 @@ +ifeq ($(subdir),socket) +sysdep_routines += cmsg_nxthdr +endif diff --git a/sysdeps/unix/bsd/Versions b/sysdeps/unix/bsd/Versions new file mode 100644 index 0000000000..99b386b670 --- /dev/null +++ b/sysdeps/unix/bsd/Versions @@ -0,0 +1,6 @@ +libc { + GLIBC_2.2.5 { + # functions used in inline functions or macros + __cmsg_nxthdr; + } +} diff --git a/sysdeps/unix/bsd/bits/sockaddr.h b/sysdeps/unix/bsd/bits/sockaddr.h new file mode 100644 index 0000000000..c2a1c9c2e4 --- /dev/null +++ b/sysdeps/unix/bsd/bits/sockaddr.h @@ -0,0 +1,42 @@ +/* Definition of `struct sockaddr_*' common members. 4.4 BSD version. + Copyright (C) 1995-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +/* + * Never include this file directly; use instead. + */ + +#ifndef _BITS_SOCKADDR_H +#define _BITS_SOCKADDR_H 1 + + +/* POSIX.1g specifies this type name for the `sa_family' member. */ +typedef unsigned char sa_family_t; + +/* This macro is used to declare the initial common members + of the data types used for socket addresses, `struct sockaddr', + `struct sockaddr_in', `struct sockaddr_un', etc. */ + +#define __SOCKADDR_COMMON(sa_prefix) \ + unsigned char sa_prefix##len; \ + sa_family_t sa_prefix##family + +#define __SOCKADDR_COMMON_SIZE (2 * sizeof (unsigned char)) + +#define _HAVE_SA_LEN 1 /* We have the sa_len field. */ + +#endif /* bits/sockaddr.h */ diff --git a/sysdeps/unix/bsd/bsd4.4/Makefile b/sysdeps/unix/bsd/bsd4.4/Makefile deleted file mode 100644 index 208fd24484..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -ifeq ($(subdir),socket) -sysdep_routines += cmsg_nxthdr -endif diff --git a/sysdeps/unix/bsd/bsd4.4/Versions b/sysdeps/unix/bsd/bsd4.4/Versions deleted file mode 100644 index 99b386b670..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/Versions +++ /dev/null @@ -1,6 +0,0 @@ -libc { - GLIBC_2.2.5 { - # functions used in inline functions or macros - __cmsg_nxthdr; - } -} diff --git a/sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h b/sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h deleted file mode 100644 index c2a1c9c2e4..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h +++ /dev/null @@ -1,42 +0,0 @@ -/* Definition of `struct sockaddr_*' common members. 4.4 BSD version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -/* - * Never include this file directly; use instead. - */ - -#ifndef _BITS_SOCKADDR_H -#define _BITS_SOCKADDR_H 1 - - -/* POSIX.1g specifies this type name for the `sa_family' member. */ -typedef unsigned char sa_family_t; - -/* This macro is used to declare the initial common members - of the data types used for socket addresses, `struct sockaddr', - `struct sockaddr_in', `struct sockaddr_un', etc. */ - -#define __SOCKADDR_COMMON(sa_prefix) \ - unsigned char sa_prefix##len; \ - sa_family_t sa_prefix##family - -#define __SOCKADDR_COMMON_SIZE (2 * sizeof (unsigned char)) - -#define _HAVE_SA_LEN 1 /* We have the sa_len field. */ - -#endif /* bits/sockaddr.h */ diff --git a/sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c b/sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c deleted file mode 100644 index 1a542fa01a..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c +++ /dev/null @@ -1,2 +0,0 @@ -/* The Linux version is perfectly usable on 4.4 BSD. */ -#include diff --git a/sysdeps/unix/bsd/bsd4.4/sigblock.c b/sysdeps/unix/bsd/bsd4.4/sigblock.c deleted file mode 100644 index 2647327db0..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/sigblock.c +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/sysdeps/unix/bsd/bsd4.4/sigsetmask.c b/sysdeps/unix/bsd/bsd4.4/sigsetmask.c deleted file mode 100644 index 47f1e36a7f..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/sigsetmask.c +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/sysdeps/unix/bsd/bsd4.4/sigvec.c b/sysdeps/unix/bsd/bsd4.4/sigvec.c deleted file mode 100644 index d03d9bb3df..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/sigvec.c +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/sysdeps/unix/bsd/bsd4.4/syscalls.list b/sysdeps/unix/bsd/bsd4.4/syscalls.list deleted file mode 100644 index a4d3546854..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/syscalls.list +++ /dev/null @@ -1,8 +0,0 @@ -# File name Caller Syscall name # args Strong name Weak names - -chflags - chflags 2 chflags -fchflags - fchflags 2 fchflags -revoke - revoke 1 revoke -setlogin - setlogin 2 setlogin -sigaltstack - sigaltstack 2 __sigaltstack sigaltstack -wait4 - wait4 4 __wait4 wait4 diff --git a/sysdeps/unix/bsd/bsd4.4/tcdrain.c b/sysdeps/unix/bsd/bsd4.4/tcdrain.c deleted file mode 100644 index bc63a2485a..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/tcdrain.c +++ /dev/null @@ -1,27 +0,0 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#include - -/* Wait for pending output to be written on FD. */ -int -__libc_tcdrain (int fd) -{ - return __ioctl (fd, TIOCDRAIN); -} -weak_alias (__libc_tcdrain, tcdrain) diff --git a/sysdeps/unix/bsd/bsd4.4/tcgetattr.c b/sysdeps/unix/bsd/bsd4.4/tcgetattr.c deleted file mode 100644 index e5402cddd0..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/tcgetattr.c +++ /dev/null @@ -1,40 +0,0 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#include - -/* These are defined both in and in . - They should have the same values, but perhaps not written the same way. */ -#undef ECHO -#undef MDMBUF -#undef TOSTOP -#undef FLUSHO -#undef PENDIN -#undef NOFLSH -#include - -/* Put the state of FD into *TERMIOS_P. */ -int -__tcgetattr (fd, termios_p) - int fd; - struct termios *termios_p; -{ - return __ioctl (fd, TIOCGETA, termios_p); -} - -weak_alias (__tcgetattr, tcgetattr) diff --git a/sysdeps/unix/bsd/bsd4.4/tcsetattr.c b/sysdeps/unix/bsd/bsd4.4/tcsetattr.c deleted file mode 100644 index bd58771549..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/tcsetattr.c +++ /dev/null @@ -1,62 +0,0 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#include -#include - -/* These are defined both in and in . - They should have the same values, but perhaps not written the same way. */ -#undef ECHO -#undef MDMBUF -#undef TOSTOP -#undef FLUSHO -#undef PENDIN -#undef NOFLSH -#include - - -/* Set the state of FD to *TERMIOS_P. */ -int -tcsetattr (fd, optional_actions, termios_p) - int fd; - int optional_actions; - const struct termios *termios_p; -{ - struct termios myt; - - if (optional_actions & TCSASOFT) - { - myt = *termios_p; - myt.c_cflag |= CIGNORE; - termios_p = &myt; - optional_actions &= ~TCSASOFT; - } - - switch (optional_actions) - { - case TCSANOW: - return __ioctl (fd, TIOCSETA, termios_p); - - case TCSADRAIN: - return __ioctl (fd, TIOCSETAW, termios_p); - - default: - return __ioctl (fd, TIOCSETAF, termios_p); - } -} -libc_hidden_def (tcsetattr) diff --git a/sysdeps/unix/bsd/bsd4.4/wait.c b/sysdeps/unix/bsd/bsd4.4/wait.c deleted file mode 100644 index c561c60a81..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/wait.c +++ /dev/null @@ -1,32 +0,0 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#include -#include -#include - -/* Wait for a child to die. When one does, put its status in *STAT_LOC - and return its process ID. For errors, return (pid_t) -1. */ -__pid_t -__libc_wait (__WAIT_STATUS_DEFN stat_loc) -{ - return __wait4 (WAIT_ANY, stat_loc, 0, (struct rusage *) NULL); -} - -weak_alias (__libc_wait, __wait) -weak_alias (__libc_wait, wait) diff --git a/sysdeps/unix/bsd/bsd4.4/wait3.c b/sysdeps/unix/bsd/bsd4.4/wait3.c deleted file mode 100644 index 4af9b4b916..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/wait3.c +++ /dev/null @@ -1,36 +0,0 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#include -#include - -/* Wait for a child to exit. When one does, put its status in *STAT_LOC and - return its process ID. For errors return (pid_t) -1. If USAGE is not nil, - store information about the child's resource usage (as a `struct rusage') - there. If the WUNTRACED bit is set in OPTIONS, return status for stopped - children; otherwise don't. */ -pid_t -__wait3 (stat_loc, options, usage) - __WAIT_STATUS stat_loc; - int options; - struct rusage *usage; -{ - return __wait4 (WAIT_ANY, stat_loc, options, usage); -} - -weak_alias (__wait3, wait3) diff --git a/sysdeps/unix/bsd/bsd4.4/waitpid.c b/sysdeps/unix/bsd/bsd4.4/waitpid.c deleted file mode 100644 index f25110ba79..0000000000 --- a/sysdeps/unix/bsd/bsd4.4/waitpid.c +++ /dev/null @@ -1,43 +0,0 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#include -#include -#include - -/* Wait for a child matching PID to die. - If PID is greater than 0, match any process whose process ID is PID. - If PID is (pid_t) -1, match any process. - If PID is (pid_t) 0, match any process with the - same process group as the current process. - If PID is less than -1, match any process whose - process group is the absolute value of PID. - If the WNOHANG bit is set in OPTIONS, and that child - is not already dead, return (pid_t) 0. If successful, - return PID and store the dead child's status in STAT_LOC. - Return (pid_t) -1 for errors. If the WUNTRACED bit is set in OPTIONS, - return status for stopped children; otherwise don't. */ -pid_t -__libc_waitpid (pid_t pid, int *stat_loc, int options) -{ - return __wait4 (pid, (union wait *) stat_loc, options, NULL); -} - -weak_alias (__libc_waitpid, __waitpid) -libc_hidden_weak (__waitpid) -weak_alias (__libc_waitpid, waitpid) diff --git a/sysdeps/unix/bsd/cmsg_nxthdr.c b/sysdeps/unix/bsd/cmsg_nxthdr.c new file mode 100644 index 0000000000..1a542fa01a --- /dev/null +++ b/sysdeps/unix/bsd/cmsg_nxthdr.c @@ -0,0 +1,2 @@ +/* The Linux version is perfectly usable on 4.4 BSD. */ +#include diff --git a/sysdeps/unix/bsd/sigblock.c b/sysdeps/unix/bsd/sigblock.c new file mode 100644 index 0000000000..2647327db0 --- /dev/null +++ b/sysdeps/unix/bsd/sigblock.c @@ -0,0 +1 @@ +#include diff --git a/sysdeps/unix/bsd/sigsetmask.c b/sysdeps/unix/bsd/sigsetmask.c new file mode 100644 index 0000000000..47f1e36a7f --- /dev/null +++ b/sysdeps/unix/bsd/sigsetmask.c @@ -0,0 +1 @@ +#include diff --git a/sysdeps/unix/bsd/sigvec.c b/sysdeps/unix/bsd/sigvec.c new file mode 100644 index 0000000000..d03d9bb3df --- /dev/null +++ b/sysdeps/unix/bsd/sigvec.c @@ -0,0 +1 @@ +#include diff --git a/sysdeps/unix/bsd/syscalls.list b/sysdeps/unix/bsd/syscalls.list index e84819dc1f..9f48a144d4 100644 --- a/sysdeps/unix/bsd/syscalls.list +++ b/sysdeps/unix/bsd/syscalls.list @@ -1,14 +1,16 @@ # File name Caller Syscall name # args Strong name Weak names +chflags - chflags 2 chflags +fchflags - fchflags 2 fchflags flock - flock 2 __flock flock getdents - getdirentries 4 __getdirentries getdirentries getdtsz - getdtablesize 0 __getdtablesize getdtablesize getpagesize - getpagesize 0 __getpagesize getpagesize killpg - killpg 2 killpg -sigblock - sigblock 1 __sigblock sigblock +revoke - revoke 1 revoke +setlogin - setlogin 2 setlogin +sigaltstack - sigaltstack 2 __sigaltstack sigaltstack sigpause - sigpause 1 __sigpause sigpause -sigsetmask - sigsetmask 1 __sigsetmask sigsetmask sigstack - sigstack 2 sigstack sigvec - sigvec 3 __sigvec sigvec -wait3 - wait3 3 __wait3 wait3 -waitpid - waitpid 3 __waitpid waitpid +wait4 - wait4 4 __wait4 wait4 diff --git a/sysdeps/unix/bsd/tcdrain.c b/sysdeps/unix/bsd/tcdrain.c new file mode 100644 index 0000000000..bc63a2485a --- /dev/null +++ b/sysdeps/unix/bsd/tcdrain.c @@ -0,0 +1,27 @@ +/* Copyright (C) 1992-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include + +/* Wait for pending output to be written on FD. */ +int +__libc_tcdrain (int fd) +{ + return __ioctl (fd, TIOCDRAIN); +} +weak_alias (__libc_tcdrain, tcdrain) diff --git a/sysdeps/unix/bsd/tcgetattr.c b/sysdeps/unix/bsd/tcgetattr.c new file mode 100644 index 0000000000..e5402cddd0 --- /dev/null +++ b/sysdeps/unix/bsd/tcgetattr.c @@ -0,0 +1,40 @@ +/* Copyright (C) 1991-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include + +/* These are defined both in and in . + They should have the same values, but perhaps not written the same way. */ +#undef ECHO +#undef MDMBUF +#undef TOSTOP +#undef FLUSHO +#undef PENDIN +#undef NOFLSH +#include + +/* Put the state of FD into *TERMIOS_P. */ +int +__tcgetattr (fd, termios_p) + int fd; + struct termios *termios_p; +{ + return __ioctl (fd, TIOCGETA, termios_p); +} + +weak_alias (__tcgetattr, tcgetattr) diff --git a/sysdeps/unix/bsd/tcsetattr.c b/sysdeps/unix/bsd/tcsetattr.c new file mode 100644 index 0000000000..bd58771549 --- /dev/null +++ b/sysdeps/unix/bsd/tcsetattr.c @@ -0,0 +1,62 @@ +/* Copyright (C) 1992-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include +#include + +/* These are defined both in and in . + They should have the same values, but perhaps not written the same way. */ +#undef ECHO +#undef MDMBUF +#undef TOSTOP +#undef FLUSHO +#undef PENDIN +#undef NOFLSH +#include + + +/* Set the state of FD to *TERMIOS_P. */ +int +tcsetattr (fd, optional_actions, termios_p) + int fd; + int optional_actions; + const struct termios *termios_p; +{ + struct termios myt; + + if (optional_actions & TCSASOFT) + { + myt = *termios_p; + myt.c_cflag |= CIGNORE; + termios_p = &myt; + optional_actions &= ~TCSASOFT; + } + + switch (optional_actions) + { + case TCSANOW: + return __ioctl (fd, TIOCSETA, termios_p); + + case TCSADRAIN: + return __ioctl (fd, TIOCSETAW, termios_p); + + default: + return __ioctl (fd, TIOCSETAF, termios_p); + } +} +libc_hidden_def (tcsetattr) diff --git a/sysdeps/unix/bsd/wait.c b/sysdeps/unix/bsd/wait.c new file mode 100644 index 0000000000..c561c60a81 --- /dev/null +++ b/sysdeps/unix/bsd/wait.c @@ -0,0 +1,32 @@ +/* Copyright (C) 1991-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include +#include +#include + +/* Wait for a child to die. When one does, put its status in *STAT_LOC + and return its process ID. For errors, return (pid_t) -1. */ +__pid_t +__libc_wait (__WAIT_STATUS_DEFN stat_loc) +{ + return __wait4 (WAIT_ANY, stat_loc, 0, (struct rusage *) NULL); +} + +weak_alias (__libc_wait, __wait) +weak_alias (__libc_wait, wait) diff --git a/sysdeps/unix/bsd/wait3.c b/sysdeps/unix/bsd/wait3.c new file mode 100644 index 0000000000..4af9b4b916 --- /dev/null +++ b/sysdeps/unix/bsd/wait3.c @@ -0,0 +1,36 @@ +/* Copyright (C) 1991-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include +#include + +/* Wait for a child to exit. When one does, put its status in *STAT_LOC and + return its process ID. For errors return (pid_t) -1. If USAGE is not nil, + store information about the child's resource usage (as a `struct rusage') + there. If the WUNTRACED bit is set in OPTIONS, return status for stopped + children; otherwise don't. */ +pid_t +__wait3 (stat_loc, options, usage) + __WAIT_STATUS stat_loc; + int options; + struct rusage *usage; +{ + return __wait4 (WAIT_ANY, stat_loc, options, usage); +} + +weak_alias (__wait3, wait3) diff --git a/sysdeps/unix/bsd/waitpid.c b/sysdeps/unix/bsd/waitpid.c new file mode 100644 index 0000000000..f25110ba79 --- /dev/null +++ b/sysdeps/unix/bsd/waitpid.c @@ -0,0 +1,43 @@ +/* Copyright (C) 1991-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include +#include +#include + +/* Wait for a child matching PID to die. + If PID is greater than 0, match any process whose process ID is PID. + If PID is (pid_t) -1, match any process. + If PID is (pid_t) 0, match any process with the + same process group as the current process. + If PID is less than -1, match any process whose + process group is the absolute value of PID. + If the WNOHANG bit is set in OPTIONS, and that child + is not already dead, return (pid_t) 0. If successful, + return PID and store the dead child's status in STAT_LOC. + Return (pid_t) -1 for errors. If the WUNTRACED bit is set in OPTIONS, + return status for stopped children; otherwise don't. */ +pid_t +__libc_waitpid (pid_t pid, int *stat_loc, int options) +{ + return __wait4 (pid, (union wait *) stat_loc, options, NULL); +} + +weak_alias (__libc_waitpid, __waitpid) +libc_hidden_weak (__waitpid) +weak_alias (__libc_waitpid, waitpid) diff --git a/sysdeps/unix/sysv/linux/wait3.c b/sysdeps/unix/sysv/linux/wait3.c index 0b3bdee771..2ff027f0e1 100644 --- a/sysdeps/unix/sysv/linux/wait3.c +++ b/sysdeps/unix/sysv/linux/wait3.c @@ -1 +1 @@ -#include +#include -- cgit v1.2.3 From 4f40e4b30754c678b7f93cfb9a545deb534f7e4e Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Sun, 22 Dec 2013 20:50:16 +0000 Subject: Fix ldbl-128 lgammal for small negative arguments (bug 16337). This patch fixes bug 16337, ldbl-128 lgammal spurious overflows for small negative arguments (the arguments in question are already in the testsuite). The implementation uses the reflection formula to compute lgamma of negative x from lgamma of -x, effectively resulting in a calculation -log(x^2) + log(-x); cancellation isn't problematic in this case (bugs for problematic cancellation in lgamma are 2542, 2543, 2558), but the x^2 calculation can underflow (in which case there is spurious logic to return an overflowing value - lgamma can only ever correctly overflow for large positive arguments, though tgamma can overflow for small arguments of either sign as well as large positive arguments). The fix is simply to calculate the result directly with logl when the argument is a small enough negative number. Tested mips64. * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r): Calculate results for small negative arguments directly rather than using reflection formula with special underflow handling. --- ChangeLog | 5 +++++ NEWS | 2 +- sysdeps/ieee754/ldbl-128/e_lgammal_r.c | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 3e806a20f8..bfca05b4f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2013-12-22 Joseph Myers + [BZ #16337] + * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r): + Calculate results for small negative arguments directly rather + than using reflection formula with special underflow handling. + * sysdeps/mach/hurd/Implies: Change unix/bsd/bsd4.4 to unix/bsd. * sysdeps/unix/bsd/syscalls.list (chflags): Add entry from sysdeps/unix/bsd/bsd4.4/syscalls.list. diff --git a/NEWS b/NEWS index 75c69ecdf3..a07df8cd8a 100644 --- a/NEWS +++ b/NEWS @@ -22,7 +22,7 @@ Version 2.19 15966, 15985, 15988, 15997, 16032, 16034, 16036, 16037, 16038, 16041, 16055, 16071, 16072, 16074, 16077, 16078, 16103, 16112, 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, - 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16338, 16356. + 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, 16338, 16356. * The public headers no longer use __unused nor __block. This change is to support compiling programs that are derived from BSD sources and use diff --git a/sysdeps/ieee754/ldbl-128/e_lgammal_r.c b/sysdeps/ieee754/ldbl-128/e_lgammal_r.c index 2b44afb759..23ab9b9a43 100644 --- a/sysdeps/ieee754/ldbl-128/e_lgammal_r.c +++ b/sysdeps/ieee754/ldbl-128/e_lgammal_r.c @@ -782,6 +782,8 @@ __ieee754_lgammal_r (long double x, int *signgamp) *signgamp = -1; else *signgamp = 1; + if (q < 0x1p-120L) + return -__logl (q); z = q - p; if (z > 0.5L) { @@ -789,8 +791,6 @@ __ieee754_lgammal_r (long double x, int *signgamp) z = p - q; } z = q * __sinl (PIL * z); - if (z == 0.0L) - return (*signgamp * huge * huge); w = __ieee754_lgammal_r (q, &i); z = __logl (PIL / z) - w; return (z); -- cgit v1.2.3 From fb55fcd21a125fc3bf9cc86330ad66dfc681df66 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Mon, 23 Dec 2013 08:40:10 -0500 Subject: Update powerpc-fpu ULPs. --- ChangeLog | 4 + sysdeps/powerpc/fpu/libm-test-ulps | 6212 +++++++++++++++++++++++++++++------- 2 files changed, 5111 insertions(+), 1105 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index bfca05b4f8..69d2505024 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-12-23 Adhemerval Zanella + + * sysdeps/powerpc/fpu/libm-test-ulps: Update. + 2013-12-22 Joseph Myers [BZ #16337] diff --git a/sysdeps/powerpc/fpu/libm-test-ulps b/sysdeps/powerpc/fpu/libm-test-ulps index 4450083a6b..7a33dba3a8 100644 --- a/sysdeps/powerpc/fpu/libm-test-ulps +++ b/sysdeps/powerpc/fpu/libm-test-ulps @@ -201,6 +201,31 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "acos_upward (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "acos_upward (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "acos_upward (-0x4p-128)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "acos_upward (-0x8p-152)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "acos_upward (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "acos_upward (-1)": ildouble: 2 ldouble: 2 @@ -222,10 +247,42 @@ idouble: 1 Test "acos_upward (0x1p-4)": ildouble: 1 ldouble: 1 +Test "acos_upward (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "acos_upward (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "acos_upward (0x4p-128)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "acos_upward (0x8p-152)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "acos_upward (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "acos_upward (0xf.fffffp-4)": ildouble: 1 ldouble: 1 +# acosh +Test "acosh (0x6.4p+4)": +double: 1 +idouble: 1 +Test "acosh (0xf.ffffffffffff8p+1020)": +double: 1 + # asin Test "asin (-0x0.ffffffff8p0)": ildouble: 1 @@ -347,9 +404,34 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "asin_towardzero (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "asin_towardzero (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 Test "asin_towardzero (-0x8p-4)": float: 1 ifloat: 1 +Test "asin_towardzero (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "asin_towardzero (-0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 @@ -387,6 +469,26 @@ float: 1 ifloat: 1 # asin_upward +Test "asin_upward (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "asin_upward (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 Test "asin_upward (-0x8p-4)": double: 1 float: 1 @@ -394,6 +496,11 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Test "asin_upward (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "asin_upward (-0xf.fffffff8p-4)": double: 1 idouble: 1 @@ -416,6 +523,35 @@ ifloat: 1 Test "asin_upward (0x1p+0)": double: 1 idouble: 1 +Test "asin_upward (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "asin_upward (0xf.fffffffffffffffp-4)": ildouble: 2 ldouble: 2 @@ -426,6 +562,20 @@ Test "asin_upward (1.0)": ildouble: 1 ldouble: 1 +# asinh +Test "asinh (-0xf.ffffffffffff8p+1020)": +double: 1 +Test "asinh (0xap+0)": +float: 1 +ifloat: 1 +Test "asinh (0xf.ffffffffffff8p+1020)": +double: 1 + +# atan +Test "atan (0xap+0)": +double: 1 +idouble: 1 + # atan2 Test "atan2 (-0.00756827042671106339, -.001792735857538728036)": ildouble: 1 @@ -624,12 +774,45 @@ ldouble: 1 Test "atan2 (-0x1.effe8p-8, -0x7.57d1ep-12)": ildouble: 1 ldouble: 1 +Test "atan2 (-0x4p-1024, -0x4p-1024)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x4p-1076, -0x4p-1076)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x4p-128, -0x4p-128)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x8p-152, -0x8p-152)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x8p-972, -0x8p-972)": +ildouble: 1 +ldouble: 1 Test "atan2 (-0xcp-4, -0x1p+0)": float: 1 ifloat: 1 +Test "atan2 (-0xf.ffffffffffff8p+1020, -0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0xf.ffffffffffff8p+1020, 0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0xf.ffffffffffffbffffffffffffcp+1020, -0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0xf.ffffffffffffbffffffffffffcp+1020, -0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 Test "atan2 (-0xf.fffffp+124, -0x4p-128)": float: 1 ifloat: 1 +Test "atan2 (-0xf.fffffp+124, -0x8p-152)": +float: 1 +ifloat: 1 +Test "atan2 (-0xf.fffffp+124, -0xf.fffffp+124)": +ildouble: 1 +ldouble: 1 Test "atan2 (-inf, -inf)": ildouble: 1 ldouble: 1 @@ -644,18 +827,54 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Test "atan2 (0x4p-1024, -0x4p-1024)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0x4p-1076, -0x4p-1076)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0x4p-128, -0x4p-128)": +ildouble: 1 +ldouble: 1 Test "atan2 (0x6.4p-4, 0x1.30164840e1719f7ep-12)": ildouble: 1 ldouble: 1 Test "atan2 (0x6.4p-4, 0x1.30164ap-12)": ildouble: 1 ldouble: 1 +Test "atan2 (0x8p-152, -0x8p-152)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0x8p-972, -0x8p-972)": +ildouble: 1 +ldouble: 1 Test "atan2 (0xcp-4, -0x1p+0)": float: 1 ifloat: 1 +Test "atan2 (0xf.ffffffffffff8p+1020, -0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xf.ffffffffffff8p+1020, -0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 Test "atan2 (0xf.ffffffffffff8p+1020, 0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 1 ldouble: 1 +Test "atan2 (0xf.ffffffffffffbffffffffffffcp+1020, -0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xf.ffffffffffffbffffffffffffcp+1020, -0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xf.fffffp+124, -0x4p-128)": +float: 1 +ifloat: 1 +Test "atan2 (0xf.fffffp+124, -0x8p-152)": +float: 1 +ifloat: 1 +Test "atan2 (0xf.fffffp+124, -0xf.fffffp+124)": +ildouble: 1 +ldouble: 1 Test "atan2 (1.390625, 0.9296875)": float: 1 ifloat: 1 @@ -666,6 +885,9 @@ ildouble: 1 ldouble: 1 # atanh +Test "atanh (-0xcp-4)": +float: 1 +ifloat: 1 Test "atanh (0.75)": float: 1 ifloat: 1 @@ -694,6 +916,9 @@ ldouble: 1 Test "cabs (0.75 + 12.390625 i)": float: 1 ifloat: 1 +Test "cabs (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 # cacos Test "Imaginary part of: cacos (+0 + 0.5 i)": @@ -5050,6 +5275,25 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Test "Imaginary part of: ccos (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: ccos (-2 - 3 i)": float: 1 ifloat: 1 @@ -5080,8 +5324,57 @@ ldouble: 1 Test "Imaginary part of: ccos (0x1p-1074 + 1440 i)": double: 1 idouble: 1 +Test "Imaginary part of: ccos (0x4p-1076 + 0x5.ap+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 # ccosh +Test "Imaginary part of: ccosh (-0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (-0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: ccosh (-2 - 3 i)": float: 1 ifloat: 1 @@ -5116,6 +5409,37 @@ float: 1 ifloat: 1 ildouble: 2 ldouble: 2 +Test "Imaginary part of: ccosh (0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 Test "Imaginary part of: ccosh (1440 + 0x1p-1074 i)": double: 1 idouble: 1 @@ -5137,6 +5461,17 @@ ildouble: 1 ldouble: 1 # cexp +Test "Imaginary part of: cexp (+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cexp (-0x5.fp+4 + 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cexp (-2.0 - 3.0 i)": float: 1 ifloat: 1 @@ -5153,18 +5488,64 @@ ldouble: 2 Test "Imaginary part of: cexp (0.75 + 1.25 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (1440 + 0x1p-1074 i)": +Test "Real part of: cexp (0x1.f4p+8 + 0x8p+1020 i)": double: 1 idouble: 1 -Test "Real part of: cexp (50 + 0x1p127 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +Test "Imaginary part of: cexp (0x1.f4p+8 + 0x8p+1020 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (50 + 0x1p127 i)": -double: 1 +Test "Imaginary part of: cexp (0x1.f4p+8 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cexp (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cexp (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (1440 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (50 + 0x1p127 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (50 + 0x1p127 i)": +double: 1 idouble: 1 ildouble: 2 ldouble: 2 @@ -5190,6 +5571,30 @@ float: 2 ifloat: 2 # clog +Test "Real part of: clog (+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d1598p-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": double: 1 idouble: 1 @@ -5198,6 +5603,36 @@ ldouble: 1 Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": double: 1 idouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d1598p-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (-0x1.000002p+0 + 0x4.8d159ep-32 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d15ap-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x1.000002p+0 + 0x4.8d15ap-32 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x1.234566p-40 - 0x1p+0 i)": +float: 1 +ifloat: 1 Test "Imaginary part of: clog (-0x1.234566p-40 - 1.0 i)": float: 1 ifloat: 1 @@ -5219,6 +5654,33 @@ ifloat: 1 Test "Imaginary part of: clog (-0x1p-149 - 0x1.fp+127 i)": float: 1 ifloat: 1 +Test "Imaginary part of: clog (-0x2p+0 - 0x3p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 + 0xf.fffffp+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 - 0xf.fffffp+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0xf.8p+124 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 Test "Imaginary part of: clog (-2 - 3 i)": float: 3 ifloat: 3 @@ -5241,1767 +5703,5152 @@ ldouble: 1 Test "Real part of: clog (0x0.ffffffp0 + 0x0.ffffffp-100 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1.000566p0 + 0x1.234p-10 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + +0 i)": double: 1 idouble: 1 -Test "Real part of: clog (0x1.fp+127 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1.fp+127 - 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (0x11682p-23 + 0x7ffed1p-23 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x155f8afc4c48685bf63610p-85 + 0x17d0cf2652cdbeb1294e19p-85 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: clog (0x15cfbd1990d1ffp-53 + 0x176a3973e09a9ap-53 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234566p-60 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x187190c1a334497bdbde5a95f48p-106 + 0x3b25f08062d0a095c4cfbbc338dp-106 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-1000 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-1074 + 0x1p-1074 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-60 i)": double: 1 idouble: 1 -Test "Real part of: clog (0x1p-147 + 0x1p-147 i)": +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234568p-60 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.000002p+0 + +0 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1p-149 + 0x1.fp+127 i)": +Test "Real part of: clog (0x1.000002p+0 + 0x1.234566p-60 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1p-149 - 0x1.fp+127 i)": +Test "Real part of: clog (0x1.000002p+0 + 0x1.234568p-60 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog (0x2818p-15 + 0x798fp-15 i)": -double: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x8p-152 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog (0x4d4ep-15 + 0x6605p-15 i)": +Test "Real part of: clog (0x1.000566p+0 + 0x4.8dp-12 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000566p0 + 0x1.234p-10 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c638bcfe0ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c64p-4 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog (0x4d9c37e2b5cb4533p-63 + 0x65c98be2385a042ep-63 i)": +Test "Imaginary part of: clog (0x1.48e45ep-4 + 0xf.f2c638bcfe0ep-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x6241ef0da53f539f02fad67dabp-106 + 0x3fb46641182f7efd9caa769dac0p-106 i)": +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c63p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c64p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x1.48e46p-4 + 0xf.f2c638bcfe0ep-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0xa1f2c1p-24 + 0xc643aep-24 i)": +Test "Real part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed1990460bdf8p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0xa4722f19346cp-51 + 0x7f9631c5e7f07p-51 i)": +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed1990460bdf8p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0xf2p-10 + 0x3e3p-10 i)": +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed1990460bdfbf672a9da76bp-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (1.0 + 0x1.234566p-10 i)": -float: 1 -ifloat: 1 - -# clog10 -Test "Imaginary part of: clog10 (-0 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed1990460bdfbf7p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0 - inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bdfbf7p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 2 -idouble: 2 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bep-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 2 -idouble: 2 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed199p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed19ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bdfbf6p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bep-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": +Test "Real part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdf8p-4 i)": double: 1 idouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bep-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": +Test "Real part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdf8p-4 i)": double: 1 idouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdfbf7p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bep-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed199p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (-2 - 3 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-2 - 3 i)": -double: 1 -float: 5 -idouble: 1 -ifloat: 5 +Test "Imaginary part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdf8p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-3 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdfbf672a9da76bp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-3 - inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdfbf7p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-inf + 0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x1.8907bcp-4 + 0xf.ed19ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-inf + 1 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x1.8907bep-4 + 0xf.ed1990460bep-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-inf + inf i)": +Test "Imaginary part of: clog (0x1.8907bep-4 + 0xf.ed19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e08p-4 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (-inf - 0 i)": +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e1p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e1p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-inf - 1 i)": -double: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4ep-4 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e08p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Real part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4dp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0 - inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Real part of: clog (0x1.c67ecd92a85944b988790cep-4 + 0xf.e6b4dp-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0.75 + 1.25 i)": -float: 2 -ifloat: 2 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b988790cep-4 + 0xf.e6b4ep-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": +Test "Imaginary part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4dp-4 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4ep-4 i)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e0948p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x1.fp+127 + 0x1p-149 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.fp+127 - 0x1p-149 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x11682p-23 + 0x7ffed1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +Test "Imaginary part of: clog (0x155f8afc4c48685bf63610p-85 + 0x17d0cf2652cdbeb1294e19p-85 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: clog (0x15cfbd1990d1ffp-53 + 0x176a3973e09a9ap-53 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x187190c1a334497bdbde5a95f48p-106 + 0x3b25f08062d0a095c4cfbbc338dp-106 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1p+0 + 0x4.8d1598p-12 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": +Test "Real part of: clog (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1p-147 + 0x1p-147 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": +Test "Real part of: clog (0x1p-149 + 0x1.fp+127 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": -double: 1 +Test "Real part of: clog (0x1p-149 - 0x1.fp+127 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Imaginary part of: clog (0x2.0ce7b8p-4 + 0xf.de3a2f9df7a4p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +Test "Real part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.fffffep+127 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x2.0ce7bcp-4 + 0xf.de3a3p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +Test "Imaginary part of: clog (0x2.2d04p-8 + 0xf.ffda2p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3612p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x155f8afc4c48685bf63610p-85 + 0x17d0cf2652cdbeb1294e19p-85 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: clog10 (0x15d8ab6ed05ca514086ac3a1e84p-105 + 0x1761e480aa094c0b10b34b09ce9p-105 i)": +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a38p-4 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3612p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1p-1074 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a38p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42bp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a3612p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a38p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a38p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a38p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3p-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42bp-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42ap-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2818p-15 + 0x798fp-15 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": -double: 1 +Test "Real part of: clog (0x2p-148 + 0x2p-148 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Imaginary part of: clog (0x3.2cdb84p-4 + 0xf.ae888p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x298c62cb546588a7p-63 + 0x7911b1dfcc4ecdaep-63 i)": +Test "Imaginary part of: clog (0x3.2cdb84p-4 + 0xf.ae889p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +Test "Imaginary part of: clog (0x3.2cdb88p-4 + 0xf.ae888p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61e798p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e798p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873p-4 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": +Test "Imaginary part of: clog (0x3.3b8f9p-4 + 0xf.ab873d09e61ep-4 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x81b7efa81fc35ad1p-65 + 0x1ef4b835f1c79d812p-65 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": +Test "Imaginary part of: clog (0x3.3b8f9p-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9p-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58p-4 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57cp-4 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d118p-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": +Test "Imaginary part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d118p-4 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": +Test "Imaginary part of: clog (0x3.bea2bcp-4 + 0xf.8e3d7p-4 i)": double: 1 idouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501173c8004ccp-4 + 0xf.8e3d619a8d118p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (3 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501173c8004ccp-4 + 0xf.8e3d619a8d11bfdp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (3 - inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Real part of: clog (0x3.bea2bd62e3501173c8004ccp-4 + 0xf.8e3d619a8d12p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (inf + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d11bfdp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (inf - inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Real part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d12p-4 i)": ildouble: 1 ldouble: 1 - -# cos -Test "cos (0x1p+120)": -float: 1 -ifloat: 1 -Test "cos (0x1p+127)": -float: 1 -ifloat: 1 -Test "cos (0x2.182a4705ae6cb08cb7665c1eacp+0)": -ildouble: 2 -ldouble: 2 -Test "cos (0x2.182a4705ae6cb08cb7665c1eadp+0)": -ildouble: 2 -ldouble: 2 -Test "cos (0x2.182a4705ae6cb08cp+0)": -ildouble: 2 -ldouble: 2 -Test "cos (0x2.182a4705ae6cb09p+0)": -ildouble: 2 -ldouble: 2 -Test "cos (0x7p+0)": -float: 1 -ifloat: 1 -Test "cos (0x8p+124)": -float: 1 -ifloat: 1 -Test "cos (16.0)": -ildouble: 2 -ldouble: 2 -Test "cos (M_PI_6l * 2.0)": +Test "Imaginary part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d619a8d11bfd30b038eep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d619a8d118p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d619a8d11bfdp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d6p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "cos (M_PI_6l * 4.0)": -double: 2 +Test "Imaginary part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d6p-4 i)": float: 1 -idouble: 2 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "cos (pi/2)": -double: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d7p-4 i)": float: 1 -idouble: 1 ifloat: 1 - -# cos_downward -Test "cos_downward (0x1.000000cf4a2a2p+0)": -double: 1 -idouble: 1 -Test "cos_downward (0x1.0000010b239a9p+0)": -double: 1 -idouble: 1 -Test "cos_downward (0x1.00000162a932bp+0)": +Test "Imaginary part of: clog (0x3.c8p-4 + 0xf.8cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d08p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x1.000002d452a1p+0)": +Test "Imaginary part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34p-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34p-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3d1b06d005dcbb5516d544p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06d08p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x1.000002p+0)": +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d005ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d08p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "cos_downward (0x1.000004p+0)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06dp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.000006p+0)": +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3p-4 i)": float: 1 ifloat: 1 -Test "cos_downward (0x1.0c1522p+0)": +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b4p-4 i)": float: 1 ifloat: 1 -Test "cos_downward (0x1.0c152382d7365p+0)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1af8e3ce8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x1.0c1524p+0)": -float: 1 -ifloat: 1 -Test "cos_downward (0x1.921fb4p+0)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "cos_downward (0x1.921fb54442d18468p+0)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d18469898cc517018p+0)": +Test "Real part of: clog (0x4.0dbf7d40fe1ad688p-4 + 0xf.7a5c1af8e3ce8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d18469898cc51702p+0)": +Test "Imaginary part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a5p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d1846ap+0)": +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d758p-4 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d18p+0)": +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d76p-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_downward (0x1.921fb54442d19p+0)": -ildouble: 2 -ldouble: 2 -Test "cos_downward (0x1.921fb6p+0)": -double: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a6p-4 i)": float: 1 -idouble: 1 ifloat: 1 -ildouble: 3 -ldouble: 3 -Test "cos_downward (0x1p+0)": +Test "Imaginary part of: clog (0x4.d9e8c415d5644p-4 + 0xf.3f302p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.d9e8c8p-4 + 0xf.3f30281507d8p-4 i)": double: 1 -float: 1 idouble: 1 +Test "Real part of: clog (0x4.d9e8c8p-4 + 0xf.3f303p-4 i)": +float: 1 ifloat: 1 -Test "cos_downward (0x1p+120)": -float: 2 -ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "cos_downward (0x1p+28)": +Test "Real part of: clog (0x4.d9e8cp-4 + 0xf.3f30281507d8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x4.d9e8cp-4 + 0xf.3f303p-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a44p+0)": +Test "Imaginary part of: clog (0x4d4ep-15 + 0x6605p-15 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x4d9c37e2b5cb4533p-63 + 0x65c98be2385a042ep-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4p-1076 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x5.03p-4 + 0xf.31ep-4 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "cos_downward (0x2.182a4705ae6cap+0)": +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22363bf989dap-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eacp+0)": -ildouble: 3 -ldouble: 3 -Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eadp+0)": -ildouble: 3 -ldouble: 3 -Test "cos_downward (0x2.182a4705ae6cb08cp+0)": -ildouble: 2 -ldouble: 2 -Test "cos_downward (0x2.182a4705ae6cb09p+0)": -ildouble: 3 -ldouble: 3 -Test "cos_downward (0x2.182a4705ae6ccp+0)": +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22364p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.182a48p+0)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22363bf989d98p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x2.1e19e0c9bab24p+72)": +Test "Imaginary part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb1p-4 + 0xf.22364p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x2.1e19e4p+72)": +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22364p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c6p-4 + 0xf.22363bf989d9b5cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c6p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.b06b680ea2ccp-4 + 0xe.f452bp-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x2.1e19ep+72)": +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452b965da9fp-4 i)": double: 1 idouble: 1 -Test "cos_downward (0x2p+0)": +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452bp-4 i)": float: 1 ifloat: 1 +Test "Imaginary part of: clog (0x5.b06b68p-4 + 0xe.f452cp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x3p+0)": +Test "Real part of: clog (0x5.b06b7p-4 + 0xe.f452b965da9fp-4 i)": double: 1 -float: 1 idouble: 1 +Test "Imaginary part of: clog (0x5.b06b7p-4 + 0xe.f452bp-4 i)": +float: 1 ifloat: 1 -Test "cos_downward (0x4p+0)": +Test "Imaginary part of: clog (0x5.ba8ce4b6p-4 + 0xe.f0742p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x4p+48)": -double: 1 -idouble: 1 -Test "cos_downward (0x8p+0)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "cos_downward (0x8p+1020)": +Test "Imaginary part of: clog (0x5.ba8ce4b6p-4 + 0xe.f0743p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0x9p+0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x5.ba8ce8p-4 + 0xe.f0742508p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0xa.217bap+12)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0x6.02fd5037c4792efp-4 + 0xe.d3e2086dcca88p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0xap+0)": +Test "Imaginary part of: clog (0x6.02fd5037c4794p-4 + 0xe.d3e2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e21p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "cos_downward (0xc.d4966d92d1708p-4)": +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e2p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0xc.d4966d92d171p-4)": +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e2086dcca8p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0xc.d4966p-4)": -double: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e21p-4 i)": float: 1 -idouble: 1 ifloat: 1 -Test "cos_downward (0xc.d4967p-4)": +Test "Imaginary part of: clog (0x6.02fd58p-4 + 0xe.d3e21p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.02fd5p-4 + 0xe.d3e21p-4 i)": float: 1 ifloat: 1 -Test "cos_downward (0xcp-4)": +Test "Imaginary part of: clog (0x6.02fd5p-4 + 0xe.d3e2p-4 i)": double: 1 idouble: 1 -Test "cos_downward (0xf.ffffcp+124)": +Test "Real part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2018b4288p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0xf.ffffffffffff8p+1020)": +Test "Imaginary part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2018b4288p-4 i)": double: 1 idouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0xf.ffffffffffffbffffffffffffcp+1020)": +Test "Imaginary part of: clog (0x6.1c643068cd125ef6f796a57d2p-4 + 0xe.c97c2018b428257133eef0ce34p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (0xf.fffffp+124)": +Test "Imaginary part of: clog (0x6.1c643068cd125ef6f796a57d2p-4 + 0xe.c97c2018b428p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c2018b428257133eef0ce34p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd128p-4 + 0xe.c97c2p-4 i)": double: 1 idouble: 1 -Test "cos_downward (1)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428257133eef0ce34p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (10)": +Test "Imaginary part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428258p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (2)": -float: 1 -ifloat: 1 -Test "cos_downward (3)": -float: 1 -ifloat: 1 -Test "cos_downward (4)": -float: 1 -ifloat: 1 -Test "cos_downward (5)": -float: 1 -ifloat: 1 -Test "cos_downward (6)": +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b4288p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b4288p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_downward (7)": -float: 1 -ifloat: 1 -Test "cos_downward (8)": +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c3p-4 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "cos_downward (9)": +Test "Imaginary part of: clog (0x6.1c643p-4 + 0xe.c97c2018b428257133eef0ce34p-4 i)": ildouble: 1 ldouble: 1 - -# cos_tonearest -Test "cos_tonearest (0x1p+120)": -float: 1 -ifloat: 1 -Test "cos_tonearest (0x2.182a4705ae6cb08cb7665c1eacp+0)": -ildouble: 2 -ldouble: 2 -Test "cos_tonearest (0x2.182a4705ae6cb08cb7665c1eadp+0)": -ildouble: 2 -ldouble: 2 -Test "cos_tonearest (0x2.182a4705ae6cb08cp+0)": -ildouble: 2 -ldouble: 2 -Test "cos_tonearest (0x2.182a4705ae6cb09p+0)": -ildouble: 2 -ldouble: 2 -Test "cos_tonearest (0x7p+0)": -float: 1 -ifloat: 1 -Test "cos_tonearest (0x8p+124)": -float: 1 -ifloat: 1 -Test "cos_tonearest (7)": -float: 1 -ifloat: 1 - -# cos_towardzero -Test "cos_towardzero (0x1.000000cf4a2a2p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1.0000010b239a9p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1.00000162a932bp+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1.000002d452a1p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1.000002p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1.000004p+0)": +Test "Real part of: clog (0x6.1c643p-4 + 0xe.c97c2018b428257p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x1.0c152382d7365p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1.921fb4p+0)": -ildouble: 3 -ldouble: 3 -Test "cos_towardzero (0x1.921fb54442d18p+0)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "cos_towardzero (0x1.921fb54442d19p+0)": -double: 1 -idouble: 1 -ildouble: 3 -ldouble: 3 -Test "cos_towardzero (0x1.921fb6p+0)": -ildouble: 2 -ldouble: 2 -Test "cos_towardzero (0x1p+0)": -double: 1 -idouble: 1 -Test "cos_towardzero (0x1p+120)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "cos_towardzero (0x2.182a4705ae6cb08cb7665c1eacp+0)": +Test "Imaginary part of: clog (0x6.1c643p-4 + 0xe.c97c2018b428257p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x2.182a4705ae6cb08cb7665c1eadp+0)": +Test "Imaginary part of: clog (0x6.2aff83ae6467cb019p-4 + 0xe.c36a6p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x2.182a4705ae6cb08cp+0)": -ildouble: 2 -ldouble: 2 -Test "cos_towardzero (0x2.182a4705ae6cb09p+0)": +Test "Imaginary part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a599a86ba8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x2.182a4705ae6ccp+0)": +Test "Imaginary part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a599a86baf8febep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a6p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x2.182a48p+0)": +Test "Imaginary part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a599a86ba8p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x2.1e19e0c9bab24p+72)": +Test "Imaginary part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a599a86bbp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a5p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x2.1e19e4p+72)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86ba8p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x2.1e19ep+72)": +Test "Imaginary part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86baf8febep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b48p-4 + 0xe.8893cbb449258p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b48p-4 + 0xe.8893cbb44925p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x2p+0)": +Test "Imaginary part of: clog (0x6.b10b4f3520217b6p-4 + 0xe.8893dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893dp-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x4p+0)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb449258p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x4p+48)": +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb44925p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0x5p+0)": +Test "Imaginary part of: clog (0x6241ef0da53f539f02fad67dabp-106 + 0x3fb46641182f7efd9caa769dac0p-106 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x8p+0)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0x8p+1020)": +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655fp-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0xa.217bap+12)": +Test "Real part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655e694e511p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0xap+0)": +Test "Imaginary part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655e694e511p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0xc.d4966d92d1708p-4)": +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e5108p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0xc.d4966d92d171p-4)": +Test "Imaginary part of: clog (0x7.eca928p-4 + 0xd.e655ep-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0xc.d4966p-4)": +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10d384p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d66p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0xcp-4)": +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d66p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (0xf.ffffcp+124)": +Test "Imaginary part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (0xf.fffffp+124)": +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b8p-4 i)": double: 1 idouble: 1 -Test "cos_towardzero (1)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (10)": +Test "Imaginary part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160b31066ap-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (2)": -float: 1 -ifloat: 1 -Test "cos_towardzero (3)": -float: 1 -ifloat: 1 -Test "cos_towardzero (4)": +Test "Real part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160bp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bf04f3688p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f4b08p-4 + 0xd.e1bf04f3688p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (5)": +Test "Imaginary part of: clog (0x8.88faep-4 + 0xd.888bcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": float: 1 ifloat: 1 -Test "cos_towardzero (7)": +Test "Imaginary part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": float: 1 ifloat: 1 -Test "cos_towardzero (8)": +Test "Real part of: clog (0x8.88fafp-4 + 0xd.888bdp-4 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 - -# cos_upward -Test "cos_upward (-0x2p+64)": +Test "Real part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.47946p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x1.000002p+0)": -float: 1 -ifloat: 1 -Test "cos_upward (0x1.000004p+0)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.47946p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "cos_upward (0x1.000005bc7d86dp+0)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.ecbf8p-4 + 0xd.479468b09a37p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x1.000006p+0)": +Test "Imaginary part of: clog (0x8.ecbf8p-4 + 0xd.47946p-4 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "cos_upward (0x1.0c1522p+0)": +Test "Real part of: clog (0x8.ecbf9p-4 + 0xd.479468b09a37p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x8.ecbf9p-4 + 0xd.479468b09a37p-4 i)": double: 1 -float: 1 idouble: 1 +Test "Real part of: clog (0x8p-152 + 0xf.8p+124 i)": +float: 1 ifloat: 1 -Test "cos_upward (0x1.0c152382d7366p+0)": +Test "Real part of: clog (0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.a9cp-4 + 0xc.c0ap-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x1.0c1524p+0)": +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b41p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x1.921fb4p+0)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 -Test "cos_upward (0x1.921fb54442d18468p+0)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.921fb54442d1846ap+0)": +Test "Imaginary part of: clog (0x9.b386fc56b968a66p-4 + 0xc.b9317c470b4085cp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.921fb54442d18p+0)": -ildouble: 3 -ldouble: 3 -Test "cos_upward (0x1.921fb54442d19p+0)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b968a66p-4 + 0xc.b9318p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x1.921fb6p+0)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "cos_upward (0x1p+0)": +Test "Imaginary part of: clog (0x9.b386fp-4 + 0xc.b9317c470b4085cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fp-4 + 0xc.b9317c470b408p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": float: 1 ifloat: 1 -Test "cos_upward (0x1p+120)": +Test "Imaginary part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "cos_upward (0x1p+28)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a44p+0)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x9.b387p-4 + 0xc.b9317c470b408p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x9.b387p-4 + 0xc.b9317p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a4705ae6cap+0)": +Test "Imaginary part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53de1d5a7c8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eacp+0)": -ildouble: 2 -ldouble: 2 -Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eadp+0)": -ildouble: 2 -ldouble: 2 -Test "cos_upward (0x2.182a4705ae6cb08cp+0)": -ildouble: 3 -ldouble: 3 -Test "cos_upward (0x2.182a4705ae6cb09p+0)": -ildouble: 2 -ldouble: 2 -Test "cos_upward (0x2.182a4705ae6ccp+0)": -double: 1 -idouble: 1 -Test "cos_upward (0x2.182a48p+0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8b1p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2.1e19e4p+72)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x2p+0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "cos_upward (0x2p+64)": +Test "Real part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7c8b0f6df3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7dp-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x3p+0)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (0x4p+0)": +Test "Imaginary part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53dp-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (0x5p+0)": +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53ep-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (0x6p+0)": +Test "Imaginary part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53de1d5a7c8p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0x7p+0)": +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53dp-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "cos_upward (0x8p+0)": +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53ep-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8b1p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x8p+1020)": +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7dp-4 i)": double: 1 idouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7dp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0x8p+124)": -double: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53dp-4 i)": float: 1 -idouble: 1 ifloat: 1 -Test "cos_upward (0x9p+0)": -float: 2 -ifloat: 2 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53ep-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.c1b6bp-4 + 0xc.ae53de1d5a7c8bp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0xa.217bap+12)": +Test "Imaginary part of: clog (0xa.1f2c1p-4 + 0xc.643aep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c18p-4 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "cos_upward (0xap+0)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (0xc.d4966d92d171p-4)": +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0xc.d4966p-4)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c19ap-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0xc.d4967p-4)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "cos_upward (0xf.ffffcp+124)": +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51p-4 i)": double: 1 idouble: 1 -Test "cos_upward (0xf.ffffffffffff8p+1020)": +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (0xf.ffffffffffffbffffffffffffcp+1020)": +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c199fp-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (1)": +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c18p-4 i)": ildouble: 2 ldouble: 2 -Test "cos_upward (10)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (4)": +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (5)": +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c19ap-4 i)": ildouble: 1 ldouble: 1 -Test "cos_upward (6)": +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c2p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": float: 1 ifloat: 1 -Test "cos_upward (7)": +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (9)": -float: 2 -ifloat: 2 - -# cosh -Test "cosh (-0x2.c5e3acp+8)": -double: 1 -idouble: 1 -Test "cosh (0x1.8p+4)": +Test "Imaginary part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh (0x2.c5e3acp+8)": -double: 1 -idouble: 1 - -# cosh_downward -Test "cosh_downward (-0x2.c5e3acd2922a6p+8)": +Test "Imaginary part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_downward (-0x2.c5e3acp+8)": -ildouble: 2 -ldouble: 2 -Test "cosh_downward (-0x2.c5e3bp+8)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867932966df5894a70c8p-4 i)": ildouble: 2 ldouble: 2 -Test "cosh_downward (0x1.6p+4)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_downward (0x1.7p+4)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867932966df58ap-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_downward (0x2.c5e3acd2922a6p+8)": +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867932966df8p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_downward (0x2.c5e3acp+8)": -ildouble: 2 -ldouble: 2 -Test "cosh_downward (0x2.c5e3bp+8)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df58ap-4 i)": ildouble: 2 ldouble: 2 -Test "cosh_downward (0xcp-4)": +Test "Imaginary part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df5894a70c8p-4 i)": ildouble: 2 ldouble: 2 -Test "cosh_downward (22)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_downward (23)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df58ap-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_downward (24)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df8p-4 i)": ildouble: 1 ldouble: 1 - -# cosh_tonearest -Test "cosh_tonearest (-0x2.c5e3acp+8)": +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e8679p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e867ap-4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog (0xa.b96da19075eap-8 + 0xf.fc679p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.b96da19075eap-8 + 0xf.fc679p-4 i)": double: 1 idouble: 1 -Test "cosh_tonearest (0x1.8p+4)": ildouble: 1 ldouble: 1 -Test "cosh_tonearest (0x2.c5e3acp+8)": +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc67818f89d2p-4 i)": double: 1 idouble: 1 -Test "cosh_tonearest (24)": +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc678p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc679p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.b96dap-8 + 0xf.fc679p-4 i)": ildouble: 1 ldouble: 1 - -# cosh_towardzero -Test "cosh_towardzero (-0x2.c5e3acd2922a6p+8)": +Test "Imaginary part of: clog (0xa.b96dbp-8 + 0xf.fc67818f89d2p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_towardzero (-0x2.c5e3acp+8)": -ildouble: 2 -ldouble: 2 -Test "cosh_towardzero (-0x2.c5e3bp+8)": +Test "Imaginary part of: clog (0xa.b96dbp-8 + 0xf.fc678p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51cb9f04d4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51cbp-4 i)": double: 1 idouble: 1 -ildouble: 2 -ldouble: 2 -Test "cosh_towardzero (0x1.6p+4)": +Test "Imaginary part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51ccp-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cosh_towardzero (0x1.7p+4)": +Test "Imaginary part of: clog (0xa.e7de8p-4 + 0xb.b51cb9f04d4dp-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "cosh_towardzero (0x2.c5e3acd2922a6p+8)": -ildouble: 1 -ldouble: 1 -Test "cosh_towardzero (0x2.c5e3acp+8)": -ildouble: 2 -ldouble: 2 -Test "cosh_towardzero (0x2.c5e3bp+8)": +Test "Real part of: clog (0xa.e7de8p-4 + 0xb.b51cbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.e7de9p-4 + 0xb.b51cb9f04d4dp-4 i)": double: 1 idouble: 1 -ildouble: 2 -ldouble: 2 -Test "cosh_towardzero (0xcp-4)": -ildouble: 2 -ldouble: 2 -Test "cosh_towardzero (22)": +Test "Imaginary part of: clog (0xa.e7de9p-4 + 0xb.b51cbp-4 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "cosh_towardzero (23)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a043561d0f42p-4 + 0xb.b0f24p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_towardzero (24)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a68p-4 i)": ildouble: 1 ldouble: 1 - -# cosh_upward -Test "cosh_upward (-0x2.c5e3acd2922a6p+8)": +Test "Imaginary part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f2405504a6059p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (-0x2.c5e3acp+8)": +Test "Real part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f2405504a68p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (-0x2.c5e3bp+8)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f24p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (0x1.6p+4)": +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (0x1.7p+4)": +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a6059p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (0x1.8p+4)": +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f24p-4 i)": double: 1 idouble: 1 -ildouble: 2 -ldouble: 2 -Test "cosh_upward (0x2.c5e3acd2922a6p+8)": +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f24p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (0x2.c5e3acp+8)": +Test "Imaginary part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f2405504a6058p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (0x2.c5e3bp+8)": -double: 1 -idouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f24p-4 i)": ildouble: 1 ldouble: 1 -Test "cosh_upward (22)": -ildouble: 2 -ldouble: 2 -Test "cosh_upward (23)": -ildouble: 2 -ldouble: 2 -Test "cosh_upward (24)": -ildouble: 2 -ldouble: 2 - -# cpow -Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": -float: 2 -ifloat: 2 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a68p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": -double: 1 -float: 4 -idouble: 1 -ifloat: 4 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 0.0 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": -double: 2 -float: 4 -idouble: 2 -ifloat: 4 -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f25p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a68p-4 i)": double: 1 -float: 5 idouble: 1 -ifloat: 5 -Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": -float: 2 -ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cpow (e + 0 i, 0 + 2 * M_PIl i)": -double: 2 -float: 2 -idouble: 2 -ifloat: 2 -ildouble: 2 -ldouble: 2 - -# csin -Test "Real part of: csin (-0.75 + 710.5 i)": +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6p-4 i)": double: 1 idouble: 1 -Test "Real part of: csin (-0.75 + 89.5 i)": +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f24p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f25p-4 i)": float: 1 ifloat: 1 +Test "Imaginary part of: clog (0xa1f2c1p-24 + 0xc643aep-24 i)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (-0.75 - 710.5 i)": +Test "Imaginary part of: clog (0xa4722f19346cp-51 + 0x7f9631c5e7f07p-51 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xb.263a77543bp-4 + 0xb.79c9ap-4 i)": double: 1 idouble: 1 -Test "Real part of: csin (-0.75 - 89.5 i)": +Test "Imaginary part of: clog (0xb.263a77543bp-4 + 0xb.79c9ap-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xb.263a77543bp-4 + 0xb.79c9bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xb.263a8p-4 + 0xb.79c9a417bb8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": float: 1 ifloat: 1 +Test "Imaginary part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xcp-4 + 0x1.4p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 + 710.5 i)": +Test "Real part of: clog (0xf.8p+124 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xf.ffffffffffff8p+1020 + 0x8p+1020 i)": double: 1 idouble: 1 -Test "Real part of: csin (0.75 + 89.5 i)": +Test "Imaginary part of: clog (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0x8p-152 i)": float: 1 ifloat: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffp-104 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xf2p-10 + 0x3e3p-10 i)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 - 710.5 i)": +Test "Real part of: clog (1.0 + 0x1.234566p-10 i)": +float: 1 +ifloat: 1 + +# clog10 +Test "Imaginary part of: clog10 (-0 + inf i)": double: 1 -idouble: 1 -Test "Real part of: csin (0.75 - 89.5 i)": float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csin (0x1p-1074 + 1440 i)": +Test "Imaginary part of: clog10 (-0 - inf i)": double: 1 +float: 1 idouble: 1 - -# csinh -Test "Imaginary part of: csinh (-2 - 3 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (-89.5 + 0.75 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (-89.5 - 0.75 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csinh (0.75 + 1.25 i)": +Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (0.75 + 1.25 i)": +Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (710.5 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (710.5 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (89.5 + 0.75 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (89.5 - 0.75 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# csqrt -Test "Real part of: csqrt (-0x1.000002p-126 - 0x1.000002p-126 i)": +Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": double: 1 idouble: 1 -Test "Real part of: csqrt (-2 + 3 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: csqrt (-2 + 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: csqrt (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: csqrt (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: csqrt (0 - 1 i)": +Test "Real part of: clog10 (-2 - 3 i)": double: 1 idouble: 1 -Test "Imaginary part of: csqrt (0 - 1 i)": +Test "Imaginary part of: clog10 (-2 - 3 i)": double: 1 +float: 5 idouble: 1 -Test "Imaginary part of: csqrt (0x1.000002p-126 + 0x1.000002p-126 i)": +ifloat: 5 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-3 + inf i)": double: 1 -idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffep+127 + 1.0 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-3 - inf i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-inf + 0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-inf + 1 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (0x1p-1073 + 0x1p-1073 i)": +Test "Imaginary part of: clog10 (-inf + inf i)": double: 1 idouble: 1 -Test "Imaginary part of: csqrt (0x1p-1073 + 0x1p-1073 i)": +Test "Imaginary part of: clog10 (-inf - 0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: csqrt (0x1p-1074 + 0x1p-1074 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (0x1p-147 + 0x1p-147 i)": +Test "Imaginary part of: clog10 (-inf - 1 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: csqrt (0x1p-147 + 0x1p-147 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0 + inf i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: csqrt (0x1p-149 + 0x1p-149 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0 - inf i)": double: 1 -float: 2 +float: 1 idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0.75 + 1.25 i)": +float: 2 ifloat: 2 -Test "Imaginary part of: csqrt (0x1p-149 + 0x1p-149 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": double: 1 float: 2 idouble: 1 ifloat: 2 - -# ctan -Test "Real part of: ctan (-2 - 3 i)": -double: 1 +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": float: 1 -idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan (-2 - 3 i)": +Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0.75 + 1.25 i)": +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": float: 1 ifloat: 1 -Test "Imaginary part of: ctan (0.75 + 1.25 i)": +Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0x1p1023 + 1 i)": +Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: ctan (0x1p1023 + 1 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0x1p127 + 1 i)": +Test "Real part of: clog10 (0x1.fffffep+127 + 1.0 i)": float: 1 ifloat: 1 +Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan (0x1p127 + 1 i)": +Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x155f8afc4c48685bf63610p-85 + 0x17d0cf2652cdbeb1294e19p-85 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: clog10 (0x15d8ab6ed05ca514086ac3a1e84p-105 + 0x1761e480aa094c0b10b34b09ce9p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x298c62cb546588a7p-63 + 0x7911b1dfcc4ecdaep-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x81b7efa81fc35ad1p-65 + 0x1ef4b835f1c79d812p-65 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (3 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (3 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (inf + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (inf - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# cos +Test "cos (0x1p+120)": +float: 1 +ifloat: 1 +Test "cos (0x1p+127)": +float: 1 +ifloat: 1 +Test "cos (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 2 +ldouble: 2 +Test "cos (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 2 +ldouble: 2 +Test "cos (0x2.182a4705ae6cb08cp+0)": +ildouble: 2 +ldouble: 2 +Test "cos (0x2.182a4705ae6cb09p+0)": +ildouble: 2 +ldouble: 2 +Test "cos (0x7p+0)": +float: 1 +ifloat: 1 +Test "cos (0x8p+124)": +float: 1 +ifloat: 1 +Test "cos (16.0)": +ildouble: 2 +ldouble: 2 +Test "cos (M_PI_6l * 2.0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos (M_PI_6l * 4.0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos (pi/2)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# cos_downward +Test "cos_downward (-0x4p-1024)": +double: 1 +idouble: 1 +Test "cos_downward (-0x4p-1076)": +double: 1 +idouble: 1 +Test "cos_downward (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (-0x8p-972)": +double: 1 +idouble: 1 +Test "cos_downward (-0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.000002p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x1.000004p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.000006p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x1.0c1522p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.0c1524p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x1.921fb4p+0)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18469898cc517018p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18469898cc51702p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d19p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1.921fb6p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "cos_downward (0x1p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x1p+120)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1p+28)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a44p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x2.182a4705ae6cap+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 3 +ldouble: 3 +Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 3 +ldouble: 3 +Test "cos_downward (0x2.182a4705ae6cb08cp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x2.182a4705ae6cb09p+0)": +ildouble: 3 +ldouble: 3 +Test "cos_downward (0x2.182a4705ae6ccp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a48p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x3p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_downward (0x4p-1024)": +double: 1 +idouble: 1 +Test "cos_downward (0x4p-1076)": +double: 1 +idouble: 1 +Test "cos_downward (0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x8p+0)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x8p-972)": +double: 1 +idouble: 1 +Test "cos_downward (0x9p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xa.217bap+12)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xap+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xc.d4966p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0xc.d4967p-4)": +float: 1 +ifloat: 1 +Test "cos_downward (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xf.ffffcp+124)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_downward (1)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (10)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (2)": +float: 1 +ifloat: 1 +Test "cos_downward (3)": +float: 1 +ifloat: 1 +Test "cos_downward (4)": +float: 1 +ifloat: 1 +Test "cos_downward (5)": +float: 1 +ifloat: 1 +Test "cos_downward (6)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (7)": +float: 1 +ifloat: 1 +Test "cos_downward (8)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (9)": +ildouble: 1 +ldouble: 1 + +# cos_tonearest +Test "cos_tonearest (0x1p+120)": +float: 1 +ifloat: 1 +Test "cos_tonearest (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_tonearest (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_tonearest (0x2.182a4705ae6cb08cp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_tonearest (0x2.182a4705ae6cb09p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_tonearest (0x7p+0)": +float: 1 +ifloat: 1 +Test "cos_tonearest (0x8p+124)": +float: 1 +ifloat: 1 +Test "cos_tonearest (7)": +float: 1 +ifloat: 1 + +# cos_towardzero +Test "cos_towardzero (-0x4p-1024)": +double: 1 +idouble: 1 +Test "cos_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 +Test "cos_towardzero (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (-0x8p-972)": +double: 1 +idouble: 1 +Test "cos_towardzero (-0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000002p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000004p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb4p+0)": +ildouble: 3 +ldouble: 3 +Test "cos_towardzero (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cos_towardzero (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "cos_towardzero (0x1.921fb6p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_towardzero (0x1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1p+120)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6cb08cp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_towardzero (0x2.182a4705ae6cb09p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.182a48p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p-1024)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p-1076)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (0x5p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p+1020)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (0x8p-972)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xa.217bap+12)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xf.ffffcp+124)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_towardzero (1)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (10)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (2)": +float: 1 +ifloat: 1 +Test "cos_towardzero (3)": +float: 1 +ifloat: 1 +Test "cos_towardzero (4)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (5)": +float: 1 +ifloat: 1 +Test "cos_towardzero (7)": +float: 1 +ifloat: 1 +Test "cos_towardzero (8)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + +# cos_upward +Test "cos_upward (-0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (-0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.000002p+0)": +float: 1 +ifloat: 1 +Test "cos_upward (0x1.000004p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x1.000005bc7d86dp+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.000006p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x1.0c1522p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x1.0c152382d7366p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.0c1524p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.921fb4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "cos_upward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18p+0)": +ildouble: 3 +ldouble: 3 +Test "cos_upward (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb6p+0)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x1p+0)": +float: 1 +ifloat: 1 +Test "cos_upward (0x1p+120)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x1p+28)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a44p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6cb08cp+0)": +ildouble: 3 +ldouble: 3 +Test "cos_upward (0x2.182a4705ae6cb09p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x2.182a48p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.1e19e4p+72)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (0x3p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x4p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x5p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x6p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x7p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+124)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x9p+0)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xa.217bap+12)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0xap+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xc.d4966d92d171p-4)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xc.d4966p-4)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xc.d4967p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0xf.ffffcp+124)": +double: 1 +idouble: 1 +Test "cos_upward (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (1)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (10)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (4)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (5)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (6)": +float: 1 +ifloat: 1 +Test "cos_upward (7)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (9)": +float: 2 +ifloat: 2 + +# cosh +Test "cosh (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh (-0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh (0x1.8p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh (0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh (0x3.2p+4)": +ildouble: 1 +ldouble: 1 + +# cosh_downward +Test "cosh_downward (-0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "cosh_downward (-0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_downward (-0x2.c5e3acp+8)": +ildouble: 2 +ldouble: 2 +Test "cosh_downward (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_downward (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_downward (-0x2.c679dp+8)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_downward (-0x5.96a7ep+4)": +float: 1 +ifloat: 1 +Test "cosh_downward (0x1.6p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_downward (0x1.7p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_downward (0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_downward (0x2.c5e3acp+8)": +ildouble: 2 +ldouble: 2 +Test "cosh_downward (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_downward (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x2.c679dp+8)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_downward (0x5.96a7ep+4)": +float: 1 +ifloat: 1 +Test "cosh_downward (0xcp-4)": +ildouble: 2 +ldouble: 2 +Test "cosh_downward (22)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_downward (23)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_downward (24)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# cosh_tonearest +Test "cosh_tonearest (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (-0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (0x1.8p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (0x3.2p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (24)": +ildouble: 1 +ldouble: 1 + +# cosh_towardzero +Test "cosh_towardzero (-0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (-0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (-0x2.c5e3acp+8)": +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x2.c679dp+8)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (-0x5.96a7ep+4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (0x1.6p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (0x1.7p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (0x2.c5e3acp+8)": +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x2.c679dp+8)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (0x5.96a7ep+4)": +float: 1 +ifloat: 1 +Test "cosh_towardzero (0xcp-4)": +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (22)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (23)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (24)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# cosh_upward +Test "cosh_upward (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c5e3acp+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x2.c679dp+8)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "cosh_upward (-0x5.96a7e8p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x5.96a7ep+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "cosh_upward (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x1.7p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x1.8p+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_upward (0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x2.c5e3acp+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_upward (0x2.c679dp+8)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "cosh_upward (0x3.2p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (0x5.96a7e8p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (0x5.96a7ep+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "cosh_upward (22)": +ildouble: 2 +ldouble: 2 +Test "cosh_upward (23)": +ildouble: 2 +ldouble: 2 +Test "cosh_upward (24)": +ildouble: 2 +ldouble: 2 + +# cpow +Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 0.0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": +double: 2 +float: 4 +idouble: 2 +ifloat: 4 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cpow (0x2p+0 + +0 i, 0xap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +double: 1 +float: 5 +idouble: 1 +ifloat: 5 +Test "Imaginary part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, +0 + 0x1p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + 0x1p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 4 +ldouble: 4 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 +ildouble: 2 +ldouble: 2 +Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": +double: 1 +float: 5 +idouble: 1 +ifloat: 5 +Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cpow (e + 0 i, 0 + 2 * M_PIl i)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 + +# csin +Test "Real part of: csin (-0.75 + 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (-0.75 + 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (-0.75 - 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (-0.75 - 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 + 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (0.75 + 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 - 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (0.75 - 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0x1p-1074 + 1440 i)": +double: 1 +idouble: 1 + +# csinh +Test "Imaginary part of: csinh (-2 - 3 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-89.5 + 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-89.5 - 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (710.5 + 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (89.5 + 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (89.5 - 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# csqrt +Test "Real part of: csqrt (+0 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (+0 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x1.000002p-126 - 0x1.000002p-126 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (-0x2p+0 + 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (-0x4.000008p-128 - 0x4.000008p-128 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (-0x4p-1076 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (-2 + 3 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csqrt (-2 + 3 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (-2 - 3 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csqrt (-2 - 3 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (0 - 1 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0 - 1 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x1.000002p-126 + 0x1.000002p-126 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x1.fffffep+127 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0x1p-1073 + 0x1p-1073 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x1p-1073 + 0x1p-1073 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x1p-1074 + 0x1p-1074 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0x1p-147 + 0x1p-147 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x1p-147 + 0x1p-147 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (0x1p-149 + 0x1p-149 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "Imaginary part of: csqrt (0x1p-149 + 0x1p-149 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "Imaginary part of: csqrt (0x4.000008p-128 + 0x4.000008p-128 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0x4p-1076 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p+1020 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p+124 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (0x8p-152 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0x1p+0 i)": +float: 1 +ifloat: 1 + +# ctan +Test "Real part of: ctan (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (-2 - 3 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (-2 - 3 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (0.75 + 1.25 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p+0 + 0x2.fp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p1023 + 1 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0x1p1023 + 1 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p127 + 1 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1p127 + 1 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x3.243f6cp-1 + 0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0x8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x8p+124 + 0x1p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x8p+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (1 + 47 i)": +ildouble: 1 +ldouble: 1 + +# ctan_downward +Test "Real part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +double: 3 +idouble: 3 +ildouble: 8 +ldouble: 8 +Test "Imaginary part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + +0 i)": +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 9 +ldouble: 9 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 10 +ldouble: 10 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctan_downward (0x1p+0 + 0x2.dp+4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctan_downward (0x1p+0 + 0x2.dp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1p+0 + 0x2.fp+4 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x8p+1020 + 0x1p+0 i)": +double: 6 +idouble: 6 +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 3 +idouble: 3 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0xf.fffffp+124 + 0x1p+0 i)": +double: 5 +float: 5 +idouble: 5 +ifloat: 5 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_downward (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 + +# ctan_tonearest +Test "Real part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x2.fp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x8p+124 + 0x1p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x8p+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_tonearest (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + +# ctan_towardzero +Test "Real part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 10 +ldouble: 10 +Test "Imaginary part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 8 +ldouble: 8 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 13 +ldouble: 13 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 13 +ldouble: 13 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 13 +ldouble: 13 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 6 +ldouble: 6 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 14 +ldouble: 14 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": +float: 1 +ifloat: 1 +ildouble: 10 +ldouble: 10 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 8 +ldouble: 8 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.dp+4 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_towardzero (0x1p+0 + 0x2.dp+4 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.fp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1p+0 + 0x2.fp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x8p+1020 + 0x1p+0 i)": +double: 5 +idouble: 5 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_towardzero (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0xcp-4 + 0x1.4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctan_towardzero (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 + +# ctan_upward +Test "Real part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctan_upward (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 7 +ldouble: 7 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 10 +ldouble: 10 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 9 +ldouble: 9 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 10 +ldouble: 10 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + +0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63ap+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+8 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.6dp+8 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Real part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": +double: 2 +idouble: 2 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x8p+124 + 0x1p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctan_upward (0x8p+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_upward (0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_upward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0xf.fffffp+124 + 0x1p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0xf.fffffp+124 + 0x1p+0 i)": +ildouble: 4 +ldouble: 4 + +# ctanh +Test "Imaginary part of: ctanh (+0 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168cp-4 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdap-4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (-2 - 3 i)": +double: 1 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (-2 - 3 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0 + 0x3.243f6cp-1 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0 + M_PI_4l i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0 + pi/4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctanh (0.75 + 1.25 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x1p+0 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0x8p+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+124 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x2.fp+4 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (1 + 0x1p1023 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (1 + 0x1p1023 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (1 + 0x1p127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (1 + 0x1p127 i)": +double: 1 +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (47 + 1 i)": +ildouble: 1 +ldouble: 1 + +# ctanh_downward +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d19p+0 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c8p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdap-4 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdbp-4 i)": +ildouble: 7 +ldouble: 7 +Test "Real part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": +double: 4 +idouble: 4 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+1020 i)": +double: 6 +idouble: 6 +ildouble: 5 +ldouble: 5 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +double: 3 +float: 2 +idouble: 3 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 3 +idouble: 3 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_downward (0x1p+0 + 0xf.fffffp+124 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.fffffp+124 i)": +double: 4 +float: 5 +idouble: 4 +ifloat: 5 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 10 +ldouble: 10 +Test "Imaginary part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x2.dp+4 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x2.dp+4 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_downward (0x2.fp+4 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 9 +ldouble: 9 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 5 +ldouble: 5 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 + +# ctanh_tonearest +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb4p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: ctan (0x3.243f6cp-1 + 0 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: ctan (1 + 47 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168cp-4 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdap-4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+124 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x2.fp+4 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 -# ctan_downward -Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +# ctanh_towardzero +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c8p-4 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 11 +ldouble: 11 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdap-4 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdbp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctanh_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+1020 i)": +double: 5 +idouble: 5 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +double: 3 +float: 2 +idouble: 3 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 2 +idouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": +double: 3 +float: 2 +idouble: 3 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 13 +ldouble: 13 +Test "Imaginary part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 10 +ldouble: 10 +Test "Imaginary part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 13 +ldouble: 13 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 8 +ldouble: 8 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 11 +ldouble: 11 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 12 +ldouble: 12 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 8 +ldouble: 8 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 ildouble: 3 ldouble: 3 -Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 2 +Test "Real part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": +double: 1 float: 1 -idouble: 2 +idouble: 1 ifloat: 1 ildouble: 4 ldouble: 4 -Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 10 -ldouble: 10 -# ctan_tonearest -Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": +# ctanh_upward +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb4p+0 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb6p+0 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -ildouble: 1 -ldouble: 1 - -# ctan_towardzero -Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": ildouble: 4 ldouble: 4 -Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 13 -ldouble: 13 -Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234c4c6628b80cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c8p-4 i)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168cp-4 i)": ildouble: 10 ldouble: 10 - -# ctan_upward -Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdap-4 i)": double: 1 +float: 1 idouble: 1 -ildouble: 6 -ldouble: 6 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 10 -ldouble: 10 -Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 2 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdbp-4 i)": float: 1 -idouble: 2 ifloat: 1 -ildouble: 5 -ldouble: 5 -Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 5 -ldouble: 5 - -# ctanh -Test "Real part of: ctanh (-2 - 3 i)": -double: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": float: 2 -idouble: 2 ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (-2 - 3 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (0 + 0x3.243f6cp-1 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctanh (0 + M_PI_4l i)": +Test "Real part of: ctanh_upward (-0xc.35p+12 + 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: ctanh (0 + pi/4 i)": +Test "Real part of: ctanh_upward (-0xc.35p+12 - 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: ctanh (0.75 + 1.25 i)": +Test "Real part of: ctanh_upward (0x1.63ap+12 + 0x1p+0 i)": double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (0.75 + 1.25 i)": float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctanh (1 + 0x1p1023 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (1 + 0x1p1023 i)": +Test "Real part of: ctanh_upward (0x1.63p+12 + 0x1p+0 i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: ctanh (1 + 0x1p127 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1.63p+8 + 0x1p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (1 + 0x1p127 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1.6dp+8 + 0x1p+0 i)": double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (47 + 1 i)": +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# ctanh_downward -Test "Imaginary part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": +double: 2 +idouble: 2 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+124 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 10 -ldouble: 10 -Test "Imaginary part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+124 i)": double: 2 float: 1 idouble: 2 ifloat: 1 +Test "Real part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 ildouble: 4 ldouble: 4 - -# ctanh_tonearest -Test "Real part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Real part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (0x1p+0 + 0xf.fffffp+124 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.fffffp+124 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +ildouble: 10 +ldouble: 10 +Test "Imaginary part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Real part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Real part of: ctanh_upward (0x2.fp+4 + 0x1p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb4p+0 i)": ildouble: 2 ldouble: 2 - -# ctanh_towardzero -Test "Real part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 13 -ldouble: 13 -Test "Imaginary part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 9 +ldouble: 9 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb6p+0 i)": +double: 2 +idouble: 2 ildouble: 4 ldouble: 4 -Test "Real part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -ildouble: 10 -ldouble: 10 -Test "Imaginary part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": +ildouble: 7 +ldouble: 7 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 - -# ctanh_upward -Test "Real part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d18p+0 i)": ildouble: 10 ldouble: 10 -Test "Imaginary part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 -ildouble: 6 -ldouble: 6 -Test "Real part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d19p+0 i)": double: 1 -float: 2 idouble: 1 -ifloat: 2 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 ildouble: 5 ldouble: 5 -Test "Imaginary part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": double: 2 float: 1 -idouble: 2 +idouble: 2 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0xcp-4 + 0x1.4p+0 i)": +float: 1 ifloat: 1 -ildouble: 5 -ldouble: 5 +ildouble: 1 +ldouble: 1 # erf Test "erf (0x1.4p+0)": @@ -7126,6 +10973,113 @@ Test "exp10 (36)": double: 1 idouble: 1 +# exp10_downward +Test "exp10_downward (-0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (-0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (-0x2.4p+4)": +ildouble: 3 +ldouble: 3 +Test "exp10_downward (0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (0x2.4p+4)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "exp10_downward (0x3p+0)": +ildouble: 2 +ldouble: 2 +Test "exp10_downward (0xcp-4)": +ildouble: 2 +ldouble: 2 + +# exp10_tonearest +Test "exp10_tonearest (-0x1.31p+8)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "exp10_tonearest (-0x1p+0)": +double: 1 +idouble: 1 +Test "exp10_tonearest (-0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_tonearest (0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_tonearest (0x3p+0)": +double: 1 +idouble: 1 + +# exp10_towardzero +Test "exp10_towardzero (-0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (-0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (-0x2.4p+4)": +ildouble: 3 +ldouble: 3 +Test "exp10_towardzero (0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0x2.4p+4)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "exp10_towardzero (0x3p+0)": +ildouble: 2 +ldouble: 2 +Test "exp10_towardzero (0xcp-4)": +ildouble: 2 +ldouble: 2 + +# exp10_upward +Test "exp10_upward (-0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_upward (-0x1.344p+12)": +float: 1 +ifloat: 1 +Test "exp10_upward (-0x1.86ap+16)": +float: 1 +ifloat: 1 +Test "exp10_upward (-0x2.4p+4)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (-0xf.424p+16)": +float: 1 +ifloat: 1 +Test "exp10_upward (-0xf.fffffp+124)": +float: 1 +ifloat: 1 +Test "exp10_upward (0x1.31p+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x2.4p+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x3p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0xcp-4)": +ildouble: 1 +ldouble: 1 + # exp2 Test "exp2 (10)": ildouble: 2 @@ -12040,8 +15994,8 @@ ildouble: 2 ldouble: 2 Function: "acosh": -ildouble: 1 -ldouble: 1 +double: 1 +idouble: 1 Function: "asin": ildouble: 2 @@ -12076,8 +16030,14 @@ ildouble: 2 ldouble: 2 Function: "asinh": +double: 1 +float: 1 +ifloat: 1 ildouble: 1 -ldouble: 1 + +Function: "atan": +double: 1 +idouble: 1 Function: "atan2": float: 1 @@ -12088,6 +16048,8 @@ ldouble: 2 Function: "atanh": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: "cabs": float: 1 @@ -12301,7 +16263,9 @@ ldouble: 4 Function: "cosh": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 @@ -12315,7 +16279,9 @@ ldouble: 2 Function: "cosh_tonearest": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 @@ -12324,14 +16290,14 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 Function: "cosh_upward": double: 1 +float: 2 idouble: 1 -ildouble: 2 -ldouble: 2 +ifloat: 2 +ildouble: 3 +ldouble: 3 Function: Real part of "cpow": double: 2 @@ -12384,16 +16350,12 @@ double: 1 float: 2 idouble: 1 ifloat: 2 -ildouble: 1 -ldouble: 1 Function: Imaginary part of "csqrt": double: 1 float: 2 idouble: 1 ifloat: 2 -ildouble: 1 -ldouble: 1 Function: Real part of "ctan": double: 1 @@ -12404,136 +16366,156 @@ ildouble: 2 ldouble: 2 Function: Imaginary part of "ctan": -double: 1 +double: 2 float: 1 -idouble: 1 +idouble: 2 ifloat: 1 ildouble: 2 ldouble: 2 Function: Real part of "ctan_downward": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 4 -ldouble: 4 +double: 6 +float: 5 +idouble: 6 +ifloat: 5 +ildouble: 8 +ldouble: 8 Function: Imaginary part of "ctan_downward": +double: 2 float: 1 +idouble: 2 ifloat: 1 -ildouble: 10 -ldouble: 10 +ildouble: 9 +ldouble: 9 Function: Real part of "ctan_tonearest": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 Function: Imaginary part of "ctan_tonearest": +double: 2 float: 1 +idouble: 2 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: Real part of "ctan_towardzero": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 10 +ldouble: 10 Function: Imaginary part of "ctan_towardzero": -float: 1 -ifloat: 1 -ildouble: 13 -ldouble: 13 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 14 +ldouble: 14 Function: Real part of "ctan_upward": double: 2 -float: 1 +float: 3 idouble: 2 -ifloat: 1 +ifloat: 3 ildouble: 6 ldouble: 6 Function: Imaginary part of "ctan_upward": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +double: 2 +float: 3 +idouble: 2 +ifloat: 3 ildouble: 10 ldouble: 10 Function: Real part of "ctanh": -double: 1 +double: 2 float: 2 -idouble: 1 +idouble: 2 ifloat: 2 ildouble: 2 ldouble: 2 Function: Imaginary part of "ctanh": -double: 1 +double: 2 float: 1 -idouble: 1 +idouble: 2 ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 3 +ldouble: 3 Function: Real part of "ctanh_downward": +double: 4 float: 1 +idouble: 4 ifloat: 1 -ildouble: 10 -ldouble: 10 +ildouble: 9 +ldouble: 9 Function: Imaginary part of "ctanh_downward": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 4 -ldouble: 4 +double: 6 +float: 5 +idouble: 6 +ifloat: 5 +ildouble: 7 +ldouble: 7 Function: Real part of "ctanh_tonearest": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 Function: Imaginary part of "ctanh_tonearest": +double: 2 float: 1 +idouble: 2 ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 3 +ldouble: 3 Function: Real part of "ctanh_towardzero": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 13 ldouble: 13 Function: Imaginary part of "ctanh_towardzero": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 - -Function: Real part of "ctanh_upward": -double: 1 +double: 5 float: 2 -idouble: 1 +idouble: 5 ifloat: 2 +ildouble: 11 +ldouble: 11 + +Function: Real part of "ctanh_upward": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 ildouble: 10 ldouble: 10 Function: Imaginary part of "ctanh_upward": double: 2 -float: 1 +float: 3 idouble: 2 -ifloat: 1 -ildouble: 6 -ldouble: 6 +ifloat: 3 +ildouble: 10 +ldouble: 10 Function: "erf": double: 1 @@ -12561,6 +16543,28 @@ ifloat: 1 ildouble: 1 ldouble: 1 +Function: "exp10_downward": +double: 1 +idouble: 1 + +Function: "exp10_tonearest": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + +Function: "exp10_towardzero": +double: 1 +idouble: 1 + +Function: "exp10_upward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + Function: "exp2": ildouble: 2 ldouble: 2 @@ -12678,8 +16682,6 @@ ifloat: 2 Function: "log": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Function: "log10": double: 1 -- cgit v1.2.3 From 6c9642eda644eb76e03776e16dae41b624a709b9 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Fri, 27 Dec 2013 12:27:46 +1000 Subject: Fix typo in csloww() An incorrect variable name was used during the refactoring done in commit 4aafb73c. --- ChangeLog | 6 ++++++ NEWS | 2 +- sysdeps/ieee754/dbl-64/s_sin.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 584f5896fd..93dceecb3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2013-12-27 Allan McRae + + [BZ #16369] + * sysdeps/ieee754/dbl-64/s_sin.c (csloww): Fix variable name. + Reported by Il'ya Malakhov + 2013-12-24 Brooks Moses * string/string.h (__CORRECT_ISO_CPP_STRING_H_PROTO): Define for diff --git a/NEWS b/NEWS index f3c19d83a7..fcf679a900 100644 --- a/NEWS +++ b/NEWS @@ -23,7 +23,7 @@ Version 2.19 16038, 16041, 16055, 16071, 16072, 16074, 16077, 16078, 16103, 16112, 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, - 16338, 16356. + 16338, 16356, 16369. * The public headers no longer use __unused nor __block. This change is to support compiling programs that are derived from BSD sources and use diff --git a/sysdeps/ieee754/dbl-64/s_sin.c b/sysdeps/ieee754/dbl-64/s_sin.c index bd2346cb9a..edc441577c 100644 --- a/sysdeps/ieee754/dbl-64/s_sin.c +++ b/sysdeps/ieee754/dbl-64/s_sin.c @@ -1102,7 +1102,7 @@ csloww (double x, double dx, double orig) int4 n; /* Taylor series */ - t = TAYLOR_SLOW (x, dx, cor); + res = TAYLOR_SLOW (x, dx, cor); if (cor > 0) cor = 1.0005 * cor + ABS (orig) * 3.1e-30; -- cgit v1.2.3 From c8590f9d9edc8d2b8540586648fc9a0130da469e Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 31 Dec 2013 03:12:54 -0500 Subject: tst-fanotify: check for linux/fanotify.h existence We support older kernels that lack this header, so check for it before we try to use it. Reported-by: Adhemerval Zanella Signed-off-by: Mike Frysinger --- ChangeLog | 8 +++++++ sysdeps/unix/sysv/linux/configure | 41 ++++++++++++++++++++++++++++++++++ sysdeps/unix/sysv/linux/configure.ac | 6 +++++ sysdeps/unix/sysv/linux/tst-fanotify.c | 14 ++++++++++++ 4 files changed, 69 insertions(+) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 3a785abc2f..d2c23e79be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2013-12-31 Mike Frysinger + + * sysdeps/unix/sysv/linux/configure: Regenerated. + * sysdeps/unix/sysv/linux/configure.ac: Call AC_CHECK_HEADER on + the linux/fanotify.h header. + * sysdeps/unix/sysv/linux/tst-fanotify.c: Check if + HAVE_LINUX_FANOTIFY_H is defined. + 2013-12-31 Siddhesh Poyarekar * benchtests/cos-inputs: New inputs. diff --git a/sysdeps/unix/sysv/linux/configure b/sysdeps/unix/sysv/linux/configure index 643da86efa..ab0f03c35e 100644 --- a/sysdeps/unix/sysv/linux/configure +++ b/sysdeps/unix/sysv/linux/configure @@ -1,3 +1,34 @@ + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_compile # This file is generated from configure.ac by Autoconf. DO NOT EDIT! # Local configure fragment for sysdeps/unix/sysv/linux. @@ -267,6 +298,16 @@ else *** compatible kernel version" "$LINENO" 5 fi +# Until we start requiring 2.6.37+ headers, we need to check for the +# availability of linux/fanotify.h for testing purposes. +ac_fn_c_check_header_compile "$LINENO" "linux/fanotify.h" "ac_cv_header_linux_fanotify_h" "/* No default includes. */ +" +if test "x$ac_cv_header_linux_fanotify_h" = xyes; then : + DEFINES="$DEFINES -DHAVE_LINUX_FANOTIFY_H=1" +fi + + + # The result of the above test for the use of the FDE code is invalid if # the user overrides the decision about the minimum ABI. if test "$oldest_abi" != default && test "2.2.4" \< "$oldest_abi"; then diff --git a/sysdeps/unix/sysv/linux/configure.ac b/sysdeps/unix/sysv/linux/configure.ac index 1be921f65e..6d6053f27e 100644 --- a/sysdeps/unix/sysv/linux/configure.ac +++ b/sysdeps/unix/sysv/linux/configure.ac @@ -105,6 +105,12 @@ else *** compatible kernel version]) fi +# Until we start requiring 2.6.37+ headers, we need to check for the +# availability of linux/fanotify.h for testing purposes. +AC_CHECK_HEADER(linux/fanotify.h, + [DEFINES="$DEFINES -DHAVE_LINUX_FANOTIFY_H=1"], , + [/* No default includes. */]) + # The result of the above test for the use of the FDE code is invalid if # the user overrides the decision about the minimum ABI. if test "$oldest_abi" != default && test "2.2.4" \< "$oldest_abi"; then diff --git a/sysdeps/unix/sysv/linux/tst-fanotify.c b/sysdeps/unix/sysv/linux/tst-fanotify.c index ad9836b582..7b27545978 100644 --- a/sysdeps/unix/sysv/linux/tst-fanotify.c +++ b/sysdeps/unix/sysv/linux/tst-fanotify.c @@ -19,6 +19,18 @@ #include #include #include + +#ifndef HAVE_LINUX_FANOTIFY_H + +static int +do_test (void) +{ + puts ("SKIP: missing support for fanotify due to old kernel headers"); + return 0; +} + +#else + #include static int @@ -56,5 +68,7 @@ do_test (void) return 0; } +#endif + #define TEST_FUNCTION do_test () #include "../test-skeleton.c" -- cgit v1.2.3 From d4697bc93dc27a7bbf275ce7dd351bb1bfcf28de Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Wed, 1 Jan 2014 21:03:15 +1000 Subject: Update copyright notices with scripts/update-copyrights --- ChangeLog | 8 ++++++++ Makeconfig | 2 +- Makefile | 2 +- Makerules | 2 +- NEWS | 2 +- Rules | 2 +- argp/Makefile | 2 +- argp/argp-ba.c | 2 +- argp/argp-eexst.c | 2 +- argp/argp-fmtstream.c | 2 +- argp/argp-fmtstream.h | 2 +- argp/argp-fs-xinl.c | 2 +- argp/argp-help.c | 2 +- argp/argp-namefrob.h | 2 +- argp/argp-parse.c | 2 +- argp/argp-pv.c | 2 +- argp/argp-pvh.c | 2 +- argp/argp-test.c | 2 +- argp/argp-xinl.c | 2 +- argp/argp.h | 2 +- argp/tst-argp1.c | 2 +- argp/tst-argp2.c | 2 +- assert/Makefile | 2 +- assert/__assert.c | 2 +- assert/assert-perr.c | 2 +- assert/assert.c | 2 +- assert/assert.h | 2 +- benchtests/Makefile | 2 +- benchtests/bench-bcopy.c | 2 +- benchtests/bench-bzero.c | 2 +- benchtests/bench-memccpy.c | 2 +- benchtests/bench-memchr.c | 2 +- benchtests/bench-memcmp.c | 2 +- benchtests/bench-memcpy.c | 2 +- benchtests/bench-memmem.c | 2 +- benchtests/bench-memmove.c | 2 +- benchtests/bench-mempcpy.c | 2 +- benchtests/bench-memrchr.c | 2 +- benchtests/bench-memset.c | 2 +- benchtests/bench-modf.c | 2 +- benchtests/bench-rawmemchr.c | 2 +- benchtests/bench-skeleton.c | 2 +- benchtests/bench-stpcpy.c | 2 +- benchtests/bench-stpcpy_chk.c | 2 +- benchtests/bench-stpncpy.c | 2 +- benchtests/bench-strcasecmp.c | 2 +- benchtests/bench-strcasestr.c | 2 +- benchtests/bench-strcat.c | 2 +- benchtests/bench-strchr.c | 2 +- benchtests/bench-strchrnul.c | 2 +- benchtests/bench-strcmp.c | 2 +- benchtests/bench-strcpy.c | 2 +- benchtests/bench-strcpy_chk.c | 2 +- benchtests/bench-strcspn.c | 2 +- benchtests/bench-string.h | 2 +- benchtests/bench-strlen.c | 2 +- benchtests/bench-strncasecmp.c | 2 +- benchtests/bench-strncat.c | 2 +- benchtests/bench-strncmp.c | 2 +- benchtests/bench-strncpy.c | 2 +- benchtests/bench-strnlen.c | 2 +- benchtests/bench-strpbrk.c | 2 +- benchtests/bench-strrchr.c | 2 +- benchtests/bench-strsep.c | 2 +- benchtests/bench-strspn.c | 2 +- benchtests/bench-strstr.c | 2 +- benchtests/bench-strtod.c | 2 +- benchtests/bench-strtok.c | 2 +- benchtests/bench-timing.h | 2 +- bits/atomic.h | 2 +- bits/byteswap-16.h | 2 +- bits/byteswap.h | 2 +- bits/confname.h | 2 +- bits/dirent.h | 2 +- bits/dlfcn.h | 2 +- bits/environments.h | 2 +- bits/errno.h | 2 +- bits/fcntl.h | 2 +- bits/fenv.h | 2 +- bits/huge_val.h | 2 +- bits/huge_valf.h | 2 +- bits/huge_vall.h | 2 +- bits/in.h | 2 +- bits/inf.h | 2 +- bits/ioctl-types.h | 2 +- bits/ipc.h | 2 +- bits/ipctypes.h | 2 +- bits/libc-lock.h | 2 +- bits/libc-tsd.h | 2 +- bits/mathdef.h | 2 +- bits/mman.h | 2 +- bits/mqueue.h | 2 +- bits/msq.h | 2 +- bits/netdb.h | 2 +- bits/param.h | 2 +- bits/poll.h | 2 +- bits/resource.h | 2 +- bits/sched.h | 2 +- bits/select.h | 2 +- bits/sem.h | 2 +- bits/shm.h | 2 +- bits/sigaction.h | 2 +- bits/sigcontext.h | 2 +- bits/siginfo.h | 2 +- bits/signum.h | 2 +- bits/sigset.h | 2 +- bits/sigstack.h | 2 +- bits/sigthread.h | 2 +- bits/sockaddr.h | 2 +- bits/socket.h | 2 +- bits/stat.h | 2 +- bits/statfs.h | 2 +- bits/statvfs.h | 2 +- bits/stdio-lock.h | 2 +- bits/stdlib-bsearch.h | 2 +- bits/stropts.h | 2 +- bits/sys_errlist.h | 2 +- bits/syslog-path.h | 2 +- bits/termios.h | 2 +- bits/time.h | 2 +- bits/types.h | 2 +- bits/typesizes.h | 2 +- bits/uio.h | 2 +- bits/ustat.h | 2 +- bits/utmp.h | 2 +- bits/utsname.h | 2 +- bits/waitflags.h | 2 +- bits/waitstatus.h | 2 +- bits/wchar.h | 2 +- bits/xtitypes.h | 2 +- catgets/Makefile | 2 +- catgets/catgets.c | 2 +- catgets/catgetsinfo.h | 2 +- catgets/gencat.c | 2 +- catgets/nl_types.h | 2 +- catgets/open_catalog.c | 2 +- catgets/test-gencat.sh | 2 +- catgets/xopen-msg.awk | 2 +- conform/Makefile | 2 +- crypt/Makefile | 2 +- crypt/badsalttest.c | 2 +- crypt/crypt-entry.c | 2 +- crypt/crypt-private.h | 2 +- crypt/crypt.c | 2 +- crypt/crypt.h | 2 +- crypt/crypt_util.c | 2 +- crypt/md5-crypt.c | 2 +- crypt/md5.c | 2 +- crypt/md5.h | 2 +- crypt/md5test-giant.c | 2 +- crypt/sha256-crypt.c | 2 +- crypt/sha256.c | 2 +- crypt/sha256.h | 2 +- crypt/sha512-crypt.c | 2 +- crypt/sha512.c | 2 +- crypt/sha512.h | 2 +- crypt/ufc-crypt.h | 2 +- crypt/ufc.c | 2 +- csu/Makefile | 2 +- csu/abi-note.S | 2 +- csu/check_fds.c | 2 +- csu/dso_handle.c | 2 +- csu/elf-init.c | 2 +- csu/errno-loc.c | 2 +- csu/errno.c | 2 +- csu/gmon-start.c | 2 +- csu/init-first.c | 2 +- csu/init.c | 2 +- csu/libc-start.c | 2 +- csu/libc-tls.c | 2 +- csu/tst-atomic-long.c | 2 +- csu/tst-atomic.c | 2 +- csu/version.c | 2 +- ctype/Makefile | 2 +- ctype/ctype-extn.c | 2 +- ctype/ctype-info.c | 2 +- ctype/ctype.c | 2 +- ctype/ctype.h | 2 +- ctype/ctype_l.c | 2 +- ctype/isctype.c | 2 +- ctype/test_ctype.c | 2 +- debug/Makefile | 2 +- debug/asprintf_chk.c | 2 +- debug/backtrace.c | 2 +- debug/backtracesyms.c | 2 +- debug/backtracesymsfd.c | 2 +- debug/catchsegv.sh | 2 +- debug/chk_fail.c | 2 +- debug/confstr_chk.c | 2 +- debug/dprintf_chk.c | 2 +- debug/execinfo.h | 2 +- debug/fdelt_chk.c | 2 +- debug/fgets_chk.c | 2 +- debug/fgets_u_chk.c | 2 +- debug/fgetws_chk.c | 2 +- debug/fgetws_u_chk.c | 2 +- debug/fortify_fail.c | 2 +- debug/fprintf_chk.c | 2 +- debug/fread_chk.c | 2 +- debug/fread_u_chk.c | 2 +- debug/fwprintf_chk.c | 2 +- debug/getcwd_chk.c | 2 +- debug/getdomainname_chk.c | 2 +- debug/getgroups_chk.c | 2 +- debug/gethostname_chk.c | 2 +- debug/gets_chk.c | 2 +- debug/getwd_chk.c | 2 +- debug/longjmp_chk.c | 2 +- debug/mbsnrtowcs_chk.c | 2 +- debug/mbsrtowcs_chk.c | 2 +- debug/mbstowcs_chk.c | 2 +- debug/memcpy_chk.c | 2 +- debug/memmove_chk.c | 2 +- debug/mempcpy_chk.c | 2 +- debug/memset_chk.c | 2 +- debug/noophooks.c | 2 +- debug/obprintf_chk.c | 2 +- debug/pcprofile.c | 2 +- debug/pcprofiledump.c | 2 +- debug/poll_chk.c | 2 +- debug/ppoll_chk.c | 2 +- debug/pread64_chk.c | 2 +- debug/pread_chk.c | 2 +- debug/printf_chk.c | 2 +- debug/read_chk.c | 2 +- debug/readlink_chk.c | 2 +- debug/readlinkat_chk.c | 2 +- debug/readonly-area.c | 2 +- debug/realpath_chk.c | 2 +- debug/recv_chk.c | 2 +- debug/recvfrom_chk.c | 2 +- debug/segfault.c | 2 +- debug/snprintf_chk.c | 2 +- debug/sprintf_chk.c | 2 +- debug/stack_chk_fail.c | 2 +- debug/stack_chk_fail_local.c | 2 +- debug/stpcpy_chk.c | 2 +- debug/stpncpy_chk.c | 2 +- debug/strcat_chk.c | 2 +- debug/strcpy_chk.c | 2 +- debug/strncat_chk.c | 2 +- debug/strncpy_chk.c | 2 +- debug/swprintf_chk.c | 2 +- debug/test-stpcpy_chk-ifunc.c | 2 +- debug/test-stpcpy_chk.c | 2 +- debug/test-strcpy_chk-ifunc.c | 2 +- debug/test-strcpy_chk.c | 2 +- debug/tst-backtrace.h | 2 +- debug/tst-backtrace2.c | 2 +- debug/tst-backtrace3.c | 2 +- debug/tst-backtrace4.c | 2 +- debug/tst-backtrace5.c | 2 +- debug/tst-backtrace6.c | 2 +- debug/tst-chk1.c | 2 +- debug/ttyname_r_chk.c | 2 +- debug/vasprintf_chk.c | 2 +- debug/vdprintf_chk.c | 2 +- debug/vfprintf_chk.c | 2 +- debug/vfwprintf_chk.c | 2 +- debug/vprintf_chk.c | 2 +- debug/vsnprintf_chk.c | 2 +- debug/vsprintf_chk.c | 2 +- debug/vswprintf_chk.c | 2 +- debug/vwprintf_chk.c | 2 +- debug/warning-nop.c | 2 +- debug/wcpcpy_chk.c | 2 +- debug/wcpncpy_chk.c | 2 +- debug/wcrtomb_chk.c | 2 +- debug/wcscat_chk.c | 2 +- debug/wcscpy_chk.c | 2 +- debug/wcsncat_chk.c | 2 +- debug/wcsncpy_chk.c | 2 +- debug/wcsnrtombs_chk.c | 2 +- debug/wcsrtombs_chk.c | 2 +- debug/wcstombs_chk.c | 2 +- debug/wctomb_chk.c | 2 +- debug/wmemcpy_chk.c | 2 +- debug/wmemmove_chk.c | 2 +- debug/wmempcpy_chk.c | 2 +- debug/wmemset_chk.c | 2 +- debug/wprintf_chk.c | 2 +- debug/xtrace.sh | 2 +- dirent/Makefile | 2 +- dirent/alphasort.c | 2 +- dirent/alphasort64.c | 2 +- dirent/closedir.c | 2 +- dirent/dirent.h | 2 +- dirent/dirfd.c | 2 +- dirent/fdopendir.c | 2 +- dirent/getdents.c | 2 +- dirent/getdents64.c | 2 +- dirent/list.c | 2 +- dirent/opendir-tst1.c | 2 +- dirent/opendir.c | 2 +- dirent/readdir.c | 2 +- dirent/readdir64.c | 2 +- dirent/readdir64_r.c | 2 +- dirent/readdir_r.c | 2 +- dirent/rewinddir.c | 2 +- dirent/scandir.c | 2 +- dirent/scandir64.c | 2 +- dirent/scandirat.c | 2 +- dirent/scandirat64.c | 2 +- dirent/seekdir.c | 2 +- dirent/telldir.c | 2 +- dirent/versionsort.c | 2 +- dirent/versionsort64.c | 2 +- dlfcn/Makefile | 2 +- dlfcn/bug-dl-leaf-lib-cb.c | 2 +- dlfcn/bug-dl-leaf-lib.c | 2 +- dlfcn/bug-dl-leaf.c | 2 +- dlfcn/dladdr.c | 2 +- dlfcn/dladdr1.c | 2 +- dlfcn/dlclose.c | 2 +- dlfcn/dlerror.c | 2 +- dlfcn/dlfcn.c | 2 +- dlfcn/dlfcn.h | 2 +- dlfcn/dlinfo.c | 2 +- dlfcn/dlmopen.c | 2 +- dlfcn/dlopen.c | 2 +- dlfcn/dlopenold.c | 2 +- dlfcn/dlsym.c | 2 +- dlfcn/dlvsym.c | 2 +- dlfcn/errmsg1.c | 2 +- dlfcn/errmsg1mod.c | 2 +- dlfcn/eval.c | 2 +- dlfcn/glreflib1.c | 2 +- dlfcn/glreflib2.c | 2 +- dlfcn/glrefmain.c | 2 +- dlfcn/modatexit.c | 2 +- dlfcn/modcxaatexit.c | 2 +- dlfcn/modstatic3.c | 2 +- dlfcn/modstatic5.c | 2 +- dlfcn/tst-dladdr.c | 2 +- dlfcn/tst-dlinfo.c | 2 +- dlfcn/tstatexit.c | 2 +- dlfcn/tstcxaatexit.c | 2 +- dlfcn/tststatic3.c | 2 +- dlfcn/tststatic4.c | 2 +- dlfcn/tststatic5.c | 2 +- elf/Makefile | 2 +- elf/cache.c | 2 +- elf/chroot_canon.c | 2 +- elf/dl-addr.c | 2 +- elf/dl-cache.c | 2 +- elf/dl-caller.c | 2 +- elf/dl-close.c | 2 +- elf/dl-conflict.c | 2 +- elf/dl-debug.c | 2 +- elf/dl-deps.c | 2 +- elf/dl-dst.h | 2 +- elf/dl-environ.c | 2 +- elf/dl-error.c | 2 +- elf/dl-execstack.c | 2 +- elf/dl-fini.c | 2 +- elf/dl-fptr.c | 2 +- elf/dl-hwcaps.c | 2 +- elf/dl-init.c | 2 +- elf/dl-iteratephdr.c | 2 +- elf/dl-libc.c | 2 +- elf/dl-load.c | 2 +- elf/dl-lookup.c | 2 +- elf/dl-minimal.c | 2 +- elf/dl-misc.c | 2 +- elf/dl-object.c | 2 +- elf/dl-open.c | 2 +- elf/dl-origin.c | 2 +- elf/dl-profile.c | 2 +- elf/dl-profstub.c | 2 +- elf/dl-reloc.c | 2 +- elf/dl-runtime.c | 2 +- elf/dl-scope.c | 2 +- elf/dl-support.c | 2 +- elf/dl-sym.c | 2 +- elf/dl-symaddr.c | 2 +- elf/dl-sysdep.c | 2 +- elf/dl-tls.c | 2 +- elf/dl-tsd.c | 2 +- elf/dl-version.c | 2 +- elf/dl-writev.h | 2 +- elf/do-rel.h | 2 +- elf/dynamic-link.h | 2 +- elf/elf.h | 2 +- elf/enbl-secure.c | 2 +- elf/get-dynamic-info.h | 2 +- elf/interp.c | 2 +- elf/ldconfig.c | 2 +- elf/ldd.bash.in | 2 +- elf/link.h | 2 +- elf/pldd-xx.c | 2 +- elf/pldd.c | 2 +- elf/readelflib.c | 2 +- elf/readlib.c | 2 +- elf/rtld-Rules | 2 +- elf/rtld.c | 2 +- elf/setup-vdso.h | 2 +- elf/sln.c | 2 +- elf/sotruss-lib.c | 2 +- elf/sotruss.ksh | 2 +- elf/sprof.c | 2 +- elf/static-stubs.c | 2 +- elf/tlsdeschtab.h | 2 +- elf/tst-align.c | 2 +- elf/tst-align2.c | 2 +- elf/tst-alignmod.c | 2 +- elf/tst-alignmod2.c | 2 +- elf/tst-auxv.c | 2 +- elf/tst-dlmodcount.c | 2 +- elf/tst-dlopenrpath.c | 2 +- elf/tst-dlopenrpathmod.c | 2 +- elf/tst-null-argv-lib.c | 2 +- elf/tst-null-argv.c | 2 +- elf/tst-pathopt.sh | 2 +- elf/tst-ptrguard1.c | 2 +- elf/tst-rtld-load-self.sh | 2 +- elf/tst-stackguard1.c | 2 +- elf/vismain.c | 2 +- elf/vismod1.c | 2 +- elf/vismod2.c | 2 +- elf/vismod3.c | 2 +- gmon/Makefile | 2 +- gmon/bb_exit_func.c | 2 +- gmon/bb_init_func.c | 2 +- gmon/profil.c | 2 +- gmon/sprofil.c | 2 +- gmon/sys/gmon_out.h | 2 +- gmon/sys/profil.h | 2 +- gmon/tst-sprofil.c | 2 +- gnulib/Makefile | 2 +- gnulib/tst-gcc.c | 2 +- grp/Makefile | 2 +- grp/fgetgrent.c | 2 +- grp/fgetgrent_r.c | 2 +- grp/getgrent.c | 2 +- grp/getgrent_r.c | 2 +- grp/getgrgid.c | 2 +- grp/getgrgid_r.c | 2 +- grp/getgrnam.c | 2 +- grp/getgrnam_r.c | 2 +- grp/grp.h | 2 +- grp/initgroups.c | 2 +- grp/putgrent.c | 2 +- grp/setgroups.c | 2 +- grp/tst_fgetgrent.c | 2 +- grp/tst_fgetgrent.sh | 2 +- gshadow/Makefile | 2 +- gshadow/fgetsgent.c | 2 +- gshadow/fgetsgent_r.c | 2 +- gshadow/getsgent.c | 2 +- gshadow/getsgent_r.c | 2 +- gshadow/getsgnam.c | 2 +- gshadow/getsgnam_r.c | 2 +- gshadow/gshadow.h | 2 +- gshadow/putsgent.c | 2 +- gshadow/sgetsgent.c | 2 +- gshadow/sgetsgent_r.c | 2 +- hesiod/Makefile | 2 +- hesiod/nss_hesiod/hesiod-grp.c | 2 +- hesiod/nss_hesiod/hesiod-init.c | 2 +- hesiod/nss_hesiod/hesiod-proto.c | 2 +- hesiod/nss_hesiod/hesiod-pwd.c | 2 +- hesiod/nss_hesiod/hesiod-service.c | 2 +- hesiod/nss_hesiod/nss_hesiod.h | 2 +- hurd/Makefile | 2 +- hurd/alloc-fd.c | 2 +- hurd/catch-exc.c | 2 +- hurd/catch-signal.c | 2 +- hurd/compat-20.c | 2 +- hurd/ctty-input.c | 2 +- hurd/ctty-output.c | 2 +- hurd/dtable.c | 2 +- hurd/exc2signal.c | 2 +- hurd/fchroot.c | 2 +- hurd/fd-close.c | 2 +- hurd/fd-read.c | 2 +- hurd/fd-write.c | 2 +- hurd/fopenport.c | 2 +- hurd/get-host.c | 2 +- hurd/getdport.c | 2 +- hurd/geteuids.c | 2 +- hurd/getumask.c | 2 +- hurd/hurd-raise.c | 2 +- hurd/hurd.h | 2 +- hurd/hurd/fd.h | 2 +- hurd/hurd/id.h | 2 +- hurd/hurd/ioctl.h | 2 +- hurd/hurd/lookup.h | 2 +- hurd/hurd/port.h | 2 +- hurd/hurd/resource.h | 2 +- hurd/hurd/signal.h | 2 +- hurd/hurd/sigpreempt.h | 2 +- hurd/hurd/threadvar.h | 2 +- hurd/hurd/userlink.h | 2 +- hurd/hurd/xattr.h | 2 +- hurd/hurdauth.c | 2 +- hurd/hurdchdir.c | 2 +- hurd/hurdexec.c | 2 +- hurd/hurdfault.c | 2 +- hurd/hurdfault.h | 2 +- hurd/hurdfchdir.c | 2 +- hurd/hurdhost.h | 2 +- hurd/hurdid.c | 2 +- hurd/hurdinit.c | 2 +- hurd/hurdioctl.c | 2 +- hurd/hurdkill.c | 2 +- hurd/hurdlookup.c | 2 +- hurd/hurdmsg.c | 2 +- hurd/hurdpid.c | 2 +- hurd/hurdports.c | 2 +- hurd/hurdprio.c | 2 +- hurd/hurdrlimit.c | 2 +- hurd/hurdselect.c | 2 +- hurd/hurdsig.c | 2 +- hurd/hurdsock.c | 2 +- hurd/hurdstartup.c | 2 +- hurd/hurdstartup.h | 2 +- hurd/intern-fd.c | 2 +- hurd/intr-msg.c | 2 +- hurd/intr-rpc.defs | 2 +- hurd/intr-rpc.h | 2 +- hurd/longjmp-ts.c | 2 +- hurd/lookup-at.c | 2 +- hurd/lookup-retry.c | 2 +- hurd/msgportdemux.c | 2 +- hurd/new-fd.c | 2 +- hurd/openport.c | 2 +- hurd/path-lookup.c | 2 +- hurd/pid2task.c | 2 +- hurd/port-cleanup.c | 2 +- hurd/port2fd.c | 2 +- hurd/ports-get.c | 2 +- hurd/ports-set.c | 2 +- hurd/preempt-sig.c | 2 +- hurd/privports.c | 2 +- hurd/report-wait.c | 2 +- hurd/set-host.c | 2 +- hurd/setauth.c | 2 +- hurd/seteuids.c | 2 +- hurd/siginfo.c | 2 +- hurd/sigunwind.c | 2 +- hurd/task2pid.c | 2 +- hurd/thread-cancel.c | 2 +- hurd/thread-self.c | 2 +- hurd/trampoline.c | 2 +- hurd/vpprintf.c | 2 +- hurd/xattr.c | 2 +- iconv/Makefile | 2 +- iconv/dummy-repertoire.c | 2 +- iconv/gconv.c | 2 +- iconv/gconv.h | 2 +- iconv/gconv_builtin.c | 2 +- iconv/gconv_builtin.h | 2 +- iconv/gconv_cache.c | 2 +- iconv/gconv_charset.h | 2 +- iconv/gconv_close.c | 2 +- iconv/gconv_conf.c | 2 +- iconv/gconv_db.c | 2 +- iconv/gconv_dl.c | 2 +- iconv/gconv_int.h | 2 +- iconv/gconv_open.c | 2 +- iconv/gconv_simple.c | 2 +- iconv/gconv_trans.c | 2 +- iconv/iconv.c | 2 +- iconv/iconv.h | 2 +- iconv/iconv_charmap.c | 2 +- iconv/iconv_close.c | 2 +- iconv/iconv_open.c | 2 +- iconv/iconv_prog.c | 2 +- iconv/iconv_prog.h | 2 +- iconv/iconvconfig.c | 2 +- iconv/iconvconfig.h | 2 +- iconv/loop.c | 2 +- iconv/skeleton.c | 2 +- iconv/strtab.c | 2 +- iconv/tst-iconv2.c | 2 +- iconv/tst-iconv5.c | 2 +- iconvdata/8bit-gap.c | 2 +- iconvdata/8bit-generic.c | 2 +- iconvdata/Makefile | 2 +- iconvdata/TESTS | 2 +- iconvdata/TESTS2 | 2 +- iconvdata/ansi_x3.110.c | 2 +- iconvdata/armscii-8.c | 2 +- iconvdata/asmo_449.c | 2 +- iconvdata/big5.c | 2 +- iconvdata/big5hkscs.c | 2 +- iconvdata/brf.c | 2 +- iconvdata/bug-iconv3.c | 2 +- iconvdata/cns11643.c | 2 +- iconvdata/cns11643.h | 2 +- iconvdata/cns11643l1.c | 2 +- iconvdata/cns11643l1.h | 2 +- iconvdata/cns11643l2.h | 2 +- iconvdata/cp10007.c | 2 +- iconvdata/cp1125.c | 2 +- iconvdata/cp1250.c | 2 +- iconvdata/cp1251.c | 2 +- iconvdata/cp1252.c | 2 +- iconvdata/cp1253.c | 2 +- iconvdata/cp1254.c | 2 +- iconvdata/cp1255.c | 2 +- iconvdata/cp1256.c | 2 +- iconvdata/cp1257.c | 2 +- iconvdata/cp1258.c | 2 +- iconvdata/cp737.c | 2 +- iconvdata/cp737.h | 2 +- iconvdata/cp770.c | 2 +- iconvdata/cp771.c | 2 +- iconvdata/cp772.c | 2 +- iconvdata/cp773.c | 2 +- iconvdata/cp774.c | 2 +- iconvdata/cp775.c | 2 +- iconvdata/cp775.h | 2 +- iconvdata/cp932.c | 2 +- iconvdata/csn_369103.c | 2 +- iconvdata/cwi.c | 2 +- iconvdata/dec-mcs.c | 2 +- iconvdata/ebcdic-at-de-a.c | 2 +- iconvdata/ebcdic-at-de.c | 2 +- iconvdata/ebcdic-ca-fr.c | 2 +- iconvdata/ebcdic-dk-no-a.c | 2 +- iconvdata/ebcdic-dk-no.c | 2 +- iconvdata/ebcdic-es-a.c | 2 +- iconvdata/ebcdic-es-s.c | 2 +- iconvdata/ebcdic-es.c | 2 +- iconvdata/ebcdic-fi-se-a.c | 2 +- iconvdata/ebcdic-fi-se.c | 2 +- iconvdata/ebcdic-fr.c | 2 +- iconvdata/ebcdic-is-friss.c | 2 +- iconvdata/ebcdic-it.c | 2 +- iconvdata/ebcdic-pt.c | 2 +- iconvdata/ebcdic-uk.c | 2 +- iconvdata/ebcdic-us.c | 2 +- iconvdata/ecma-cyrillic.c | 2 +- iconvdata/euc-cn.c | 2 +- iconvdata/euc-jisx0213.c | 2 +- iconvdata/euc-jp-ms.c | 2 +- iconvdata/euc-jp.c | 2 +- iconvdata/euc-kr.c | 2 +- iconvdata/euc-tw.c | 2 +- iconvdata/gb18030.c | 2 +- iconvdata/gb2312.c | 2 +- iconvdata/gb2312.h | 2 +- iconvdata/gbbig5.c | 2 +- iconvdata/gbgbk.c | 2 +- iconvdata/gbk.c | 2 +- iconvdata/gconv-modules | 2 +- iconvdata/georgian-academy.c | 2 +- iconvdata/georgian-ps.c | 2 +- iconvdata/gost_19768-74.c | 2 +- iconvdata/greek-ccitt.c | 2 +- iconvdata/greek7-old.c | 2 +- iconvdata/greek7.c | 2 +- iconvdata/hp-greek8.c | 2 +- iconvdata/hp-roman8.c | 2 +- iconvdata/hp-roman9.c | 2 +- iconvdata/hp-thai8.c | 2 +- iconvdata/hp-turkish8.c | 2 +- iconvdata/ibm037.c | 2 +- iconvdata/ibm038.c | 2 +- iconvdata/ibm1004.c | 2 +- iconvdata/ibm1008.c | 2 +- iconvdata/ibm1008.h | 2 +- iconvdata/ibm1008_420.c | 2 +- iconvdata/ibm1025.c | 2 +- iconvdata/ibm1025.h | 2 +- iconvdata/ibm1026.c | 2 +- iconvdata/ibm1046.c | 2 +- iconvdata/ibm1046.h | 2 +- iconvdata/ibm1047.c | 2 +- iconvdata/ibm1097.c | 2 +- iconvdata/ibm1097.h | 2 +- iconvdata/ibm1112.c | 2 +- iconvdata/ibm1112.h | 2 +- iconvdata/ibm1122.c | 2 +- iconvdata/ibm1122.h | 2 +- iconvdata/ibm1123.c | 2 +- iconvdata/ibm1123.h | 2 +- iconvdata/ibm1124.c | 2 +- iconvdata/ibm1124.h | 2 +- iconvdata/ibm1129.c | 2 +- iconvdata/ibm1129.h | 2 +- iconvdata/ibm1130.c | 2 +- iconvdata/ibm1130.h | 2 +- iconvdata/ibm1132.c | 2 +- iconvdata/ibm1132.h | 2 +- iconvdata/ibm1133.c | 2 +- iconvdata/ibm1133.h | 2 +- iconvdata/ibm1137.c | 2 +- iconvdata/ibm1137.h | 2 +- iconvdata/ibm1140.c | 2 +- iconvdata/ibm1140.h | 2 +- iconvdata/ibm1141.c | 2 +- iconvdata/ibm1141.h | 2 +- iconvdata/ibm1142.c | 2 +- iconvdata/ibm1142.h | 2 +- iconvdata/ibm1143.c | 2 +- iconvdata/ibm1143.h | 2 +- iconvdata/ibm1144.c | 2 +- iconvdata/ibm1144.h | 2 +- iconvdata/ibm1145.c | 2 +- iconvdata/ibm1145.h | 2 +- iconvdata/ibm1146.c | 2 +- iconvdata/ibm1146.h | 2 +- iconvdata/ibm1147.c | 2 +- iconvdata/ibm1147.h | 2 +- iconvdata/ibm1148.c | 2 +- iconvdata/ibm1148.h | 2 +- iconvdata/ibm1149.c | 2 +- iconvdata/ibm1149.h | 2 +- iconvdata/ibm1153.c | 2 +- iconvdata/ibm1153.h | 2 +- iconvdata/ibm1154.c | 2 +- iconvdata/ibm1154.h | 2 +- iconvdata/ibm1155.c | 2 +- iconvdata/ibm1155.h | 2 +- iconvdata/ibm1156.c | 2 +- iconvdata/ibm1156.h | 2 +- iconvdata/ibm1157.c | 2 +- iconvdata/ibm1157.h | 2 +- iconvdata/ibm1158.c | 2 +- iconvdata/ibm1158.h | 2 +- iconvdata/ibm1160.c | 2 +- iconvdata/ibm1160.h | 2 +- iconvdata/ibm1161.c | 2 +- iconvdata/ibm1161.h | 2 +- iconvdata/ibm1162.c | 2 +- iconvdata/ibm1162.h | 2 +- iconvdata/ibm1163.c | 2 +- iconvdata/ibm1163.h | 2 +- iconvdata/ibm1164.c | 2 +- iconvdata/ibm1164.h | 2 +- iconvdata/ibm1166.c | 2 +- iconvdata/ibm1166.h | 2 +- iconvdata/ibm1167.c | 2 +- iconvdata/ibm1167.h | 2 +- iconvdata/ibm12712.c | 2 +- iconvdata/ibm12712.h | 2 +- iconvdata/ibm1364.c | 2 +- iconvdata/ibm1364.h | 2 +- iconvdata/ibm1371.c | 2 +- iconvdata/ibm1371.h | 2 +- iconvdata/ibm1388.c | 2 +- iconvdata/ibm1388.h | 2 +- iconvdata/ibm1390.c | 2 +- iconvdata/ibm1390.h | 2 +- iconvdata/ibm1399.c | 2 +- iconvdata/ibm1399.h | 2 +- iconvdata/ibm16804.c | 2 +- iconvdata/ibm16804.h | 2 +- iconvdata/ibm256.c | 2 +- iconvdata/ibm273.c | 2 +- iconvdata/ibm274.c | 2 +- iconvdata/ibm275.c | 2 +- iconvdata/ibm277.c | 2 +- iconvdata/ibm278.c | 2 +- iconvdata/ibm280.c | 2 +- iconvdata/ibm281.c | 2 +- iconvdata/ibm284.c | 2 +- iconvdata/ibm285.c | 2 +- iconvdata/ibm290.c | 2 +- iconvdata/ibm297.c | 2 +- iconvdata/ibm420.c | 2 +- iconvdata/ibm423.c | 2 +- iconvdata/ibm424.c | 2 +- iconvdata/ibm437.c | 2 +- iconvdata/ibm4517.c | 2 +- iconvdata/ibm4517.h | 2 +- iconvdata/ibm4899.c | 2 +- iconvdata/ibm4899.h | 2 +- iconvdata/ibm4909.c | 2 +- iconvdata/ibm4909.h | 2 +- iconvdata/ibm4971.c | 2 +- iconvdata/ibm4971.h | 2 +- iconvdata/ibm500.c | 2 +- iconvdata/ibm5347.c | 2 +- iconvdata/ibm5347.h | 2 +- iconvdata/ibm803.c | 2 +- iconvdata/ibm803.h | 2 +- iconvdata/ibm850.c | 2 +- iconvdata/ibm851.c | 2 +- iconvdata/ibm852.c | 2 +- iconvdata/ibm855.c | 2 +- iconvdata/ibm856.c | 2 +- iconvdata/ibm856.h | 2 +- iconvdata/ibm857.c | 2 +- iconvdata/ibm860.c | 2 +- iconvdata/ibm861.c | 2 +- iconvdata/ibm862.c | 2 +- iconvdata/ibm863.c | 2 +- iconvdata/ibm864.c | 2 +- iconvdata/ibm865.c | 2 +- iconvdata/ibm866.c | 2 +- iconvdata/ibm866nav.c | 2 +- iconvdata/ibm868.c | 2 +- iconvdata/ibm869.c | 2 +- iconvdata/ibm870.c | 2 +- iconvdata/ibm871.c | 2 +- iconvdata/ibm874.c | 2 +- iconvdata/ibm875.c | 2 +- iconvdata/ibm880.c | 2 +- iconvdata/ibm891.c | 2 +- iconvdata/ibm901.c | 2 +- iconvdata/ibm901.h | 2 +- iconvdata/ibm902.c | 2 +- iconvdata/ibm902.h | 2 +- iconvdata/ibm903.c | 2 +- iconvdata/ibm9030.c | 2 +- iconvdata/ibm9030.h | 2 +- iconvdata/ibm904.c | 2 +- iconvdata/ibm905.c | 2 +- iconvdata/ibm9066.c | 2 +- iconvdata/ibm9066.h | 2 +- iconvdata/ibm918.c | 2 +- iconvdata/ibm921.c | 2 +- iconvdata/ibm921.h | 2 +- iconvdata/ibm922.c | 2 +- iconvdata/ibm922.h | 2 +- iconvdata/ibm930.c | 2 +- iconvdata/ibm930.h | 2 +- iconvdata/ibm932.c | 2 +- iconvdata/ibm932.h | 2 +- iconvdata/ibm933.c | 2 +- iconvdata/ibm933.h | 2 +- iconvdata/ibm935.c | 2 +- iconvdata/ibm935.h | 2 +- iconvdata/ibm937.c | 2 +- iconvdata/ibm937.h | 2 +- iconvdata/ibm939.c | 2 +- iconvdata/ibm939.h | 2 +- iconvdata/ibm943.c | 2 +- iconvdata/ibm943.h | 2 +- iconvdata/ibm9448.c | 2 +- iconvdata/ibm9448.h | 2 +- iconvdata/iec_p27-1.c | 2 +- iconvdata/inis-8.c | 2 +- iconvdata/inis-cyrillic.c | 2 +- iconvdata/inis.c | 2 +- iconvdata/isiri-3342.c | 2 +- iconvdata/iso-2022-cn-ext.c | 2 +- iconvdata/iso-2022-cn.c | 2 +- iconvdata/iso-2022-jp-3.c | 2 +- iconvdata/iso-2022-jp.c | 2 +- iconvdata/iso-2022-kr.c | 2 +- iconvdata/iso-ir-165.c | 2 +- iconvdata/iso-ir-165.h | 2 +- iconvdata/iso-ir-197.c | 2 +- iconvdata/iso-ir-209.c | 2 +- iconvdata/iso646.c | 2 +- iconvdata/iso8859-1.c | 2 +- iconvdata/iso8859-10.c | 2 +- iconvdata/iso8859-11.c | 2 +- iconvdata/iso8859-13.c | 2 +- iconvdata/iso8859-14.c | 2 +- iconvdata/iso8859-15.c | 2 +- iconvdata/iso8859-16.c | 2 +- iconvdata/iso8859-2.c | 2 +- iconvdata/iso8859-3.c | 2 +- iconvdata/iso8859-4.c | 2 +- iconvdata/iso8859-5.c | 2 +- iconvdata/iso8859-6.c | 2 +- iconvdata/iso8859-7.c | 2 +- iconvdata/iso8859-8.c | 2 +- iconvdata/iso8859-9.c | 2 +- iconvdata/iso8859-9e.c | 2 +- iconvdata/iso_10367-box.c | 2 +- iconvdata/iso_11548-1.c | 2 +- iconvdata/iso_2033.c | 2 +- iconvdata/iso_5427-ext.c | 2 +- iconvdata/iso_5427.c | 2 +- iconvdata/iso_5428.c | 2 +- iconvdata/iso_6937-2.c | 2 +- iconvdata/iso_6937.c | 2 +- iconvdata/jis0201.c | 2 +- iconvdata/jis0201.h | 2 +- iconvdata/jis0208.c | 2 +- iconvdata/jis0208.h | 2 +- iconvdata/jis0212.c | 2 +- iconvdata/jis0212.h | 2 +- iconvdata/jisx0213.c | 2 +- iconvdata/jisx0213.h | 2 +- iconvdata/johab.c | 2 +- iconvdata/koi-8.c | 2 +- iconvdata/koi8-r.c | 2 +- iconvdata/koi8-ru.c | 2 +- iconvdata/koi8-t.c | 2 +- iconvdata/koi8-u.c | 2 +- iconvdata/ksc5601.c | 2 +- iconvdata/ksc5601.h | 2 +- iconvdata/latin-greek-1.c | 2 +- iconvdata/latin-greek.c | 2 +- iconvdata/mac-centraleurope.c | 2 +- iconvdata/mac-is.c | 2 +- iconvdata/mac-sami.c | 2 +- iconvdata/mac-uk.c | 2 +- iconvdata/macintosh.c | 2 +- iconvdata/mik.c | 2 +- iconvdata/nats-dano.c | 2 +- iconvdata/nats-sefi.c | 2 +- iconvdata/pt154.c | 2 +- iconvdata/rk1048.c | 2 +- iconvdata/run-iconv-test.sh | 2 +- iconvdata/sami-ws2.c | 2 +- iconvdata/shift_jisx0213.c | 2 +- iconvdata/sjis.c | 2 +- iconvdata/t.61.c | 2 +- iconvdata/tcvn5712-1.c | 2 +- iconvdata/tis-620.c | 2 +- iconvdata/tscii.c | 2 +- iconvdata/tst-e2big.c | 2 +- iconvdata/tst-loading.c | 2 +- iconvdata/tst-table-charmap.sh | 2 +- iconvdata/tst-table-from.c | 2 +- iconvdata/tst-table-to.c | 2 +- iconvdata/tst-table.sh | 2 +- iconvdata/tst-tables.sh | 2 +- iconvdata/uhc.c | 2 +- iconvdata/unicode.c | 2 +- iconvdata/utf-16.c | 2 +- iconvdata/utf-32.c | 2 +- iconvdata/utf-7.c | 2 +- iconvdata/viscii.c | 2 +- include/atomic.h | 2 +- include/bits/xopen_lim.h | 2 +- include/caller.h | 2 +- include/features.h | 2 +- include/gnu-versions.h | 2 +- include/gnu/libc-version.h | 2 +- include/ifunc-impl-list.h | 2 +- include/inline-hashtab.h | 2 +- include/libc-symbols.h | 2 +- include/limits.h | 2 +- include/link.h | 2 +- include/programs/xmalloc.h | 2 +- include/rounding-mode.h | 2 +- include/set-hooks.h | 2 +- include/shlib-compat.h | 2 +- include/stap-probe.h | 2 +- include/stdc-predef.h | 2 +- include/sys/time.h | 2 +- include/values.h | 2 +- inet/Makefile | 2 +- inet/aliases.h | 2 +- inet/arpa/inet.h | 2 +- inet/bug-if1.c | 2 +- inet/check_native.c | 2 +- inet/check_pf.c | 2 +- inet/ether_aton.c | 2 +- inet/ether_aton_r.c | 2 +- inet/ether_hton.c | 2 +- inet/ether_line.c | 2 +- inet/ether_ntoa.c | 2 +- inet/ether_ntoa_r.c | 2 +- inet/ether_ntoh.c | 2 +- inet/getaliasent.c | 2 +- inet/getaliasent_r.c | 2 +- inet/getaliasname.c | 2 +- inet/getaliasname_r.c | 2 +- inet/gethstbyad.c | 2 +- inet/gethstbyad_r.c | 2 +- inet/gethstbynm.c | 2 +- inet/gethstbynm2.c | 2 +- inet/gethstbynm2_r.c | 2 +- inet/gethstbynm_r.c | 2 +- inet/gethstent.c | 2 +- inet/gethstent_r.c | 2 +- inet/getipv4sourcefilter.c | 2 +- inet/getnetbyad.c | 2 +- inet/getnetbyad_r.c | 2 +- inet/getnetbynm.c | 2 +- inet/getnetbynm_r.c | 2 +- inet/getnetent.c | 2 +- inet/getnetent_r.c | 2 +- inet/getnetgrent.c | 2 +- inet/getnetgrent_r.c | 2 +- inet/getproto.c | 2 +- inet/getproto_r.c | 2 +- inet/getprtent.c | 2 +- inet/getprtent_r.c | 2 +- inet/getprtname.c | 2 +- inet/getprtname_r.c | 2 +- inet/getrpcbyname.c | 2 +- inet/getrpcbyname_r.c | 2 +- inet/getrpcbynumber.c | 2 +- inet/getrpcbynumber_r.c | 2 +- inet/getrpcent.c | 2 +- inet/getrpcent_r.c | 2 +- inet/getservent.c | 2 +- inet/getservent_r.c | 2 +- inet/getsourcefilter.c | 2 +- inet/getsrvbynm.c | 2 +- inet/getsrvbynm_r.c | 2 +- inet/getsrvbypt.c | 2 +- inet/getsrvbypt_r.c | 2 +- inet/herrno-loc.c | 2 +- inet/herrno.c | 2 +- inet/htonl.c | 2 +- inet/htons.c | 2 +- inet/htontest.c | 2 +- inet/if_index.c | 2 +- inet/ifaddrs.c | 2 +- inet/ifaddrs.h | 2 +- inet/ifreq.c | 2 +- inet/in6_addr.c | 2 +- inet/inet6_opt.c | 2 +- inet/inet6_option.c | 2 +- inet/inet6_rth.c | 2 +- inet/inet_net.c | 2 +- inet/inet_ntoa.c | 2 +- inet/netgroup.h | 2 +- inet/netinet/ether.h | 2 +- inet/netinet/icmp6.h | 2 +- inet/netinet/igmp.h | 2 +- inet/netinet/in.h | 2 +- inet/netinet/ip6.h | 2 +- inet/setipv4sourcefilter.c | 2 +- inet/setsourcefilter.c | 2 +- inet/test-ifaddrs.c | 2 +- inet/test_ifindex.c | 2 +- inet/tst-network.c | 2 +- intl/Makefile | 2 +- intl/bindtextdom.c | 2 +- intl/dcgettext.c | 2 +- intl/dcigettext.c | 2 +- intl/dcngettext.c | 2 +- intl/dgettext.c | 2 +- intl/dngettext.c | 2 +- intl/explodename.c | 2 +- intl/finddomain.c | 2 +- intl/gettext.c | 2 +- intl/gettextP.h | 2 +- intl/gmo.h | 2 +- intl/hash-string.c | 2 +- intl/hash-string.h | 2 +- intl/l10nflist.c | 2 +- intl/libintl.h | 2 +- intl/loadinfo.h | 2 +- intl/loadmsgcat.c | 2 +- intl/locale.alias | 2 +- intl/localealias.c | 2 +- intl/ngettext.c | 2 +- intl/plural-eval.c | 2 +- intl/plural-exp.c | 2 +- intl/plural-exp.h | 2 +- intl/plural.c | 2 +- intl/plural.y | 2 +- intl/po2test.awk | 2 +- intl/textdomain.c | 2 +- intl/tst-codeset.c | 2 +- intl/tst-gettext.c | 2 +- intl/tst-gettext.sh | 2 +- intl/tst-gettext2.c | 2 +- intl/tst-gettext2.sh | 2 +- intl/tst-gettext3.c | 2 +- intl/tst-gettext4.c | 2 +- intl/tst-gettext4.sh | 2 +- intl/tst-gettext5.c | 2 +- intl/tst-gettext6.c | 2 +- intl/tst-gettext6.sh | 2 +- intl/tst-ngettext.c | 2 +- intl/tst-translit.c | 2 +- intl/tst-translit.sh | 2 +- io/Makefile | 2 +- io/access.c | 2 +- io/bits/fcntl2.h | 2 +- io/bits/poll2.h | 2 +- io/bug-ftw1.c | 2 +- io/bug-ftw2.c | 2 +- io/bug-ftw4.c | 2 +- io/chdir.c | 2 +- io/chmod.c | 2 +- io/chown.c | 2 +- io/close.c | 2 +- io/creat.c | 2 +- io/creat64.c | 2 +- io/dup.c | 2 +- io/dup2.c | 2 +- io/dup3.c | 2 +- io/euidaccess.c | 2 +- io/faccessat.c | 2 +- io/fchdir.c | 2 +- io/fchmod.c | 2 +- io/fchmodat.c | 2 +- io/fchown.c | 2 +- io/fchownat.c | 2 +- io/fcntl.c | 2 +- io/fcntl.h | 2 +- io/flock.c | 2 +- io/fstat.c | 2 +- io/fstat64.c | 2 +- io/fstatat.c | 2 +- io/fstatat64.c | 2 +- io/fstatfs.c | 2 +- io/fstatfs64.c | 2 +- io/fstatvfs.c | 2 +- io/fstatvfs64.c | 2 +- io/ftw.c | 2 +- io/ftw.h | 2 +- io/ftw64.c | 2 +- io/ftwtest-sh | 2 +- io/futimens.c | 2 +- io/fxstat.c | 2 +- io/fxstat64.c | 2 +- io/fxstatat.c | 2 +- io/fxstatat64.c | 2 +- io/getcwd.c | 2 +- io/getdirname.c | 2 +- io/getwd.c | 2 +- io/have_o_cloexec.c | 2 +- io/isatty.c | 2 +- io/lchmod.c | 2 +- io/lchown.c | 2 +- io/link.c | 2 +- io/linkat.c | 2 +- io/lockf.c | 2 +- io/lockf64.c | 2 +- io/lseek.c | 2 +- io/lseek64.c | 2 +- io/lstat.c | 2 +- io/lstat64.c | 2 +- io/lxstat.c | 2 +- io/lxstat64.c | 2 +- io/mkdir.c | 2 +- io/mkdirat.c | 2 +- io/mkfifo.c | 2 +- io/mkfifoat.c | 2 +- io/mknod.c | 2 +- io/mknodat.c | 2 +- io/open.c | 2 +- io/open64.c | 2 +- io/open64_2.c | 2 +- io/open_2.c | 2 +- io/openat.c | 2 +- io/openat64.c | 2 +- io/openat64_2.c | 2 +- io/openat_2.c | 2 +- io/pipe.c | 2 +- io/pipe2.c | 2 +- io/poll.c | 2 +- io/posix_fadvise.c | 2 +- io/posix_fadvise64.c | 2 +- io/posix_fallocate.c | 2 +- io/posix_fallocate64.c | 2 +- io/ppoll.c | 2 +- io/pwd.c | 2 +- io/read.c | 2 +- io/readlink.c | 2 +- io/readlinkat.c | 2 +- io/rmdir.c | 2 +- io/sendfile.c | 2 +- io/sendfile64.c | 2 +- io/stat.c | 2 +- io/stat64.c | 2 +- io/statfs.c | 2 +- io/statfs64.c | 2 +- io/statvfs.c | 2 +- io/statvfs64.c | 2 +- io/symlink.c | 2 +- io/symlinkat.c | 2 +- io/sys/poll.h | 2 +- io/sys/sendfile.h | 2 +- io/sys/stat.h | 2 +- io/sys/statfs.h | 2 +- io/sys/statvfs.h | 2 +- io/test-lfs.c | 2 +- io/test-stat.c | 2 +- io/test-stat2.c | 2 +- io/test-utime.c | 2 +- io/tst-fcntl.c | 2 +- io/tst-getcwd.c | 2 +- io/ttyname.c | 2 +- io/ttyname_r.c | 2 +- io/umask.c | 2 +- io/unlink.c | 2 +- io/unlinkat.c | 2 +- io/utime.c | 2 +- io/utime.h | 2 +- io/utimensat.c | 2 +- io/write.c | 2 +- io/xmknod.c | 2 +- io/xmknodat.c | 2 +- io/xstat.c | 2 +- io/xstat64.c | 2 +- libidn/Makefile | 2 +- libidn/iconvme.c | 2 +- libidn/iconvme.h | 2 +- libio/Makefile | 2 +- libio/__fbufsize.c | 2 +- libio/__flbf.c | 2 +- libio/__fpending.c | 2 +- libio/__fpurge.c | 2 +- libio/__freadable.c | 2 +- libio/__freading.c | 2 +- libio/__fsetlocking.c | 2 +- libio/__fwritable.c | 2 +- libio/__fwriting.c | 2 +- libio/bits/libio-ldbl.h | 2 +- libio/bits/stdio-ldbl.h | 2 +- libio/bits/stdio.h | 2 +- libio/bits/stdio2.h | 2 +- libio/bug-ungetc4.c | 2 +- libio/clearerr.c | 2 +- libio/clearerr_u.c | 2 +- libio/fcloseall.c | 2 +- libio/feof.c | 2 +- libio/feof_u.c | 2 +- libio/ferror.c | 2 +- libio/ferror_u.c | 2 +- libio/filedoalloc.c | 2 +- libio/fileno.c | 2 +- libio/fileops.c | 2 +- libio/fmemopen.c | 2 +- libio/fputc.c | 2 +- libio/fputc_u.c | 2 +- libio/fputwc.c | 2 +- libio/fputwc_u.c | 2 +- libio/freopen.c | 2 +- libio/freopen64.c | 2 +- libio/fseek.c | 2 +- libio/fseeko.c | 2 +- libio/fseeko64.c | 2 +- libio/ftello.c | 2 +- libio/ftello64.c | 2 +- libio/fwide.c | 2 +- libio/fwprintf.c | 2 +- libio/fwscanf.c | 2 +- libio/genops.c | 2 +- libio/getc.c | 2 +- libio/getc_u.c | 2 +- libio/getchar.c | 2 +- libio/getchar_u.c | 2 +- libio/getwc.c | 2 +- libio/getwc_u.c | 2 +- libio/getwchar.c | 2 +- libio/getwchar_u.c | 2 +- libio/iofclose.c | 2 +- libio/iofdopen.c | 2 +- libio/iofflush.c | 2 +- libio/iofflush_u.c | 2 +- libio/iofgetpos.c | 2 +- libio/iofgetpos64.c | 2 +- libio/iofgets.c | 2 +- libio/iofgets_u.c | 2 +- libio/iofgetws.c | 2 +- libio/iofgetws_u.c | 2 +- libio/iofopen.c | 2 +- libio/iofopen64.c | 2 +- libio/iofopncook.c | 2 +- libio/iofputs.c | 2 +- libio/iofputs_u.c | 2 +- libio/iofputws.c | 2 +- libio/iofputws_u.c | 2 +- libio/iofread.c | 2 +- libio/iofread_u.c | 2 +- libio/iofsetpos.c | 2 +- libio/iofsetpos64.c | 2 +- libio/ioftell.c | 2 +- libio/iofwide.c | 2 +- libio/iofwrite.c | 2 +- libio/iofwrite_u.c | 2 +- libio/iogetdelim.c | 2 +- libio/iogetline.c | 2 +- libio/iogets.c | 2 +- libio/iogetwline.c | 2 +- libio/iopadn.c | 2 +- libio/iopopen.c | 2 +- libio/ioputs.c | 2 +- libio/ioseekoff.c | 2 +- libio/ioseekpos.c | 2 +- libio/iosetbuffer.c | 2 +- libio/iosetvbuf.c | 2 +- libio/ioungetc.c | 2 +- libio/ioungetwc.c | 2 +- libio/iovdprintf.c | 2 +- libio/iovsprintf.c | 2 +- libio/iovsscanf.c | 2 +- libio/iovswscanf.c | 2 +- libio/iowpadn.c | 2 +- libio/libc_fatal.c | 2 +- libio/libio.h | 2 +- libio/libioP.h | 2 +- libio/memstream.c | 2 +- libio/obprintf.c | 2 +- libio/oldfileops.c | 2 +- libio/oldiofclose.c | 2 +- libio/oldiofdopen.c | 2 +- libio/oldiofgetpos.c | 2 +- libio/oldiofgetpos64.c | 2 +- libio/oldiofopen.c | 2 +- libio/oldiofsetpos.c | 2 +- libio/oldiofsetpos64.c | 2 +- libio/oldiopopen.c | 2 +- libio/oldpclose.c | 2 +- libio/oldstdfiles.c | 2 +- libio/oldtmpfile.c | 2 +- libio/pclose.c | 2 +- libio/peekc.c | 2 +- libio/putc.c | 2 +- libio/putc_u.c | 2 +- libio/putchar.c | 2 +- libio/putchar_u.c | 2 +- libio/putwc.c | 2 +- libio/putwc_u.c | 2 +- libio/putwchar.c | 2 +- libio/putwchar_u.c | 2 +- libio/rewind.c | 2 +- libio/setbuf.c | 2 +- libio/setlinebuf.c | 2 +- libio/stdfiles.c | 2 +- libio/stdio.c | 2 +- libio/stdio.h | 2 +- libio/strfile.h | 2 +- libio/strops.c | 2 +- libio/swprintf.c | 2 +- libio/swscanf.c | 2 +- libio/test-fmemopen.c | 2 +- libio/test-freopen.c | 2 +- libio/test-freopen.sh | 2 +- libio/tst-fopenloc.c | 2 +- libio/tst-freopen.c | 2 +- libio/tst-fseek.c | 2 +- libio/tst-fwrite-error.c | 2 +- libio/tst-mmap-setvbuf.c | 2 +- libio/tst-widetext.c | 2 +- libio/tst_getwc.c | 2 +- libio/tst_putwc.c | 2 +- libio/vasprintf.c | 2 +- libio/vscanf.c | 2 +- libio/vsnprintf.c | 2 +- libio/vswprintf.c | 2 +- libio/vwprintf.c | 2 +- libio/vwscanf.c | 2 +- libio/wfiledoalloc.c | 2 +- libio/wfileops.c | 2 +- libio/wgenops.c | 2 +- libio/wmemstream.c | 2 +- libio/wprintf.c | 2 +- libio/wscanf.c | 2 +- libio/wstrops.c | 2 +- locale/C-address.c | 2 +- locale/C-collate.c | 2 +- locale/C-ctype.c | 2 +- locale/C-identification.c | 2 +- locale/C-measurement.c | 2 +- locale/C-messages.c | 2 +- locale/C-monetary.c | 2 +- locale/C-name.c | 2 +- locale/C-numeric.c | 2 +- locale/C-paper.c | 2 +- locale/C-telephone.c | 2 +- locale/C-time.c | 2 +- locale/C-translit.h.in | 2 +- locale/Makefile | 2 +- locale/bits/locale.h | 2 +- locale/broken_cur_max.c | 2 +- locale/categories.def | 2 +- locale/coll-lookup.c | 2 +- locale/coll-lookup.h | 2 +- locale/duplocale.c | 2 +- locale/elem-hash.h | 2 +- locale/findlocale.c | 2 +- locale/freelocale.c | 2 +- locale/global-locale.c | 2 +- locale/hashval.h | 2 +- locale/indigits.h | 2 +- locale/indigitswc.h | 2 +- locale/langinfo.h | 2 +- locale/lc-address.c | 2 +- locale/lc-collate.c | 2 +- locale/lc-ctype.c | 2 +- locale/lc-identification.c | 2 +- locale/lc-measurement.c | 2 +- locale/lc-messages.c | 2 +- locale/lc-monetary.c | 2 +- locale/lc-name.c | 2 +- locale/lc-numeric.c | 2 +- locale/lc-paper.c | 2 +- locale/lc-telephone.c | 2 +- locale/lc-time.c | 2 +- locale/loadarchive.c | 2 +- locale/loadlocale.c | 2 +- locale/locale.h | 2 +- locale/localeconv.c | 2 +- locale/localeinfo.h | 2 +- locale/localename.c | 2 +- locale/locarchive.h | 2 +- locale/mb_cur_max.c | 2 +- locale/newlocale.c | 2 +- locale/nl_langinfo.c | 2 +- locale/nl_langinfo_l.c | 2 +- locale/outdigits.h | 2 +- locale/outdigitswc.h | 2 +- locale/programs/3level.h | 2 +- locale/programs/charmap-dir.c | 2 +- locale/programs/charmap-dir.h | 2 +- locale/programs/charmap-kw.gperf | 2 +- locale/programs/charmap-kw.h | 2 +- locale/programs/charmap.c | 2 +- locale/programs/charmap.h | 2 +- locale/programs/config.h | 2 +- locale/programs/ld-address.c | 2 +- locale/programs/ld-collate.c | 2 +- locale/programs/ld-ctype.c | 2 +- locale/programs/ld-identification.c | 2 +- locale/programs/ld-measurement.c | 2 +- locale/programs/ld-messages.c | 2 +- locale/programs/ld-monetary.c | 2 +- locale/programs/ld-name.c | 2 +- locale/programs/ld-numeric.c | 2 +- locale/programs/ld-paper.c | 2 +- locale/programs/ld-telephone.c | 2 +- locale/programs/ld-time.c | 2 +- locale/programs/linereader.c | 2 +- locale/programs/linereader.h | 2 +- locale/programs/locale-spec.c | 2 +- locale/programs/locale.c | 2 +- locale/programs/localedef.c | 2 +- locale/programs/localedef.h | 2 +- locale/programs/locarchive.c | 2 +- locale/programs/locfile-kw.gperf | 2 +- locale/programs/locfile-kw.h | 2 +- locale/programs/locfile-token.h | 2 +- locale/programs/locfile.c | 2 +- locale/programs/locfile.h | 2 +- locale/programs/repertoire.c | 2 +- locale/programs/repertoire.h | 2 +- locale/programs/simple-hash.c | 2 +- locale/programs/simple-hash.h | 2 +- locale/programs/xmalloc.c | 2 +- locale/programs/xstrdup.c | 2 +- locale/setlocale.c | 2 +- locale/strlen-hash.h | 2 +- locale/tst-C-locale.c | 2 +- locale/uselocale.c | 2 +- locale/weight.h | 2 +- locale/weightwc.h | 2 +- locale/xlocale.c | 2 +- locale/xlocale.h | 2 +- localedata/Makefile | 2 +- localedata/collate-test.c | 2 +- localedata/dump-ctype.c | 2 +- localedata/gen-locale.sh | 2 +- localedata/gen-unicode-ctype.c | 2 +- localedata/sort-test.sh | 2 +- localedata/tests/test6.c | 2 +- localedata/tst-ctype.c | 2 +- localedata/tst-ctype.sh | 2 +- localedata/tst-digits.c | 2 +- localedata/tst-fmon.c | 2 +- localedata/tst-fmon.data | 2 +- localedata/tst-fmon.sh | 2 +- localedata/tst-langinfo.c | 2 +- localedata/tst-langinfo.sh | 2 +- localedata/tst-locale.sh | 2 +- localedata/tst-mbswcs.sh | 2 +- localedata/tst-mbswcs1.c | 2 +- localedata/tst-mbswcs2.c | 2 +- localedata/tst-mbswcs3.c | 2 +- localedata/tst-mbswcs4.c | 2 +- localedata/tst-mbswcs5.c | 2 +- localedata/tst-mbswcs6.c | 2 +- localedata/tst-numeric.c | 2 +- localedata/tst-numeric.data | 2 +- localedata/tst-numeric.sh | 2 +- localedata/tst-rpmatch.c | 2 +- localedata/tst-rpmatch.sh | 2 +- localedata/tst-trans.c | 2 +- localedata/tst-trans.sh | 2 +- localedata/tst-wctype.c | 2 +- localedata/tst-wctype.sh | 2 +- localedata/xfrm-test.c | 2 +- login/Makefile | 2 +- login/endutxent.c | 2 +- login/forkpty.c | 2 +- login/getlogin.c | 2 +- login/getlogin_r.c | 2 +- login/getlogin_r_chk.c | 2 +- login/getpt.c | 2 +- login/getutent.c | 2 +- login/getutent_r.c | 2 +- login/getutid.c | 2 +- login/getutid_r.c | 2 +- login/getutline.c | 2 +- login/getutline_r.c | 2 +- login/getutmp.c | 2 +- login/getutmpx.c | 2 +- login/getutxent.c | 2 +- login/getutxid.c | 2 +- login/getutxline.c | 2 +- login/grantpt.c | 2 +- login/login.c | 2 +- login/logout.c | 2 +- login/logwtmp.c | 2 +- login/openpty.c | 2 +- login/programs/pt_chown.c | 2 +- login/programs/utmpdump.c | 2 +- login/ptsname.c | 2 +- login/ptsname_r_chk.c | 2 +- login/pty.h | 2 +- login/pututxline.c | 2 +- login/setlogin.c | 2 +- login/setutxent.c | 2 +- login/tst-utmp.c | 2 +- login/unlockpt.c | 2 +- login/updwtmp.c | 2 +- login/updwtmpx.c | 2 +- login/utmp-private.h | 2 +- login/utmp.h | 2 +- login/utmp_file.c | 2 +- login/utmpname.c | 2 +- login/utmpxname.c | 2 +- mach/Machrules | 2 +- mach/Makefile | 2 +- mach/devstream.c | 2 +- mach/lock-intern.h | 2 +- mach/mach.h | 2 +- mach/mach/mach_traps.h | 2 +- mach/mach/mig_support.h | 2 +- mach/mach_init.c | 2 +- mach/mach_init.h | 2 +- mach/mig-alloc.c | 2 +- mach/mig-dealloc.c | 2 +- mach/mig-reply.c | 2 +- mach/msgserver.c | 2 +- mach/mutex-init.c | 2 +- mach/mutex-solid.c | 2 +- mach/setup-thread.c | 2 +- mach/spin-lock.h | 2 +- mach/spin-solid.c | 2 +- malloc/Makefile | 2 +- malloc/arena.c | 2 +- malloc/hooks.c | 2 +- malloc/malloc.c | 2 +- malloc/malloc.h | 2 +- malloc/mcheck-init.c | 2 +- malloc/mcheck.c | 2 +- malloc/mcheck.h | 2 +- malloc/memusage.c | 2 +- malloc/memusage.sh | 2 +- malloc/memusagestat.c | 2 +- malloc/morecore.c | 2 +- malloc/mtrace.c | 2 +- malloc/mtrace.pl | 2 +- malloc/obstack.c | 2 +- malloc/obstack.h | 2 +- malloc/set-freeres.c | 2 +- malloc/thread-freeres.c | 2 +- malloc/tst-calloc.c | 2 +- malloc/tst-malloc-usable.c | 2 +- malloc/tst-malloc.c | 2 +- malloc/tst-mallocstate.c | 2 +- malloc/tst-mcheck.c | 2 +- malloc/tst-memalign.c | 2 +- malloc/tst-mtrace.c | 2 +- malloc/tst-mtrace.sh | 2 +- malloc/tst-posix_memalign.c | 2 +- malloc/tst-pvalloc.c | 2 +- malloc/tst-realloc.c | 2 +- malloc/tst-valloc.c | 2 +- manual/Makefile | 2 +- manual/examples/add.c | 2 +- manual/examples/argp-ex1.c | 2 +- manual/examples/argp-ex2.c | 2 +- manual/examples/argp-ex3.c | 2 +- manual/examples/argp-ex4.c | 2 +- manual/examples/atexit.c | 2 +- manual/examples/db.c | 2 +- manual/examples/dir.c | 2 +- manual/examples/dir2.c | 2 +- manual/examples/execinfo.c | 2 +- manual/examples/filecli.c | 2 +- manual/examples/filesrv.c | 2 +- manual/examples/fmtmsgexpl.c | 2 +- manual/examples/genpass.c | 2 +- manual/examples/inetcli.c | 2 +- manual/examples/inetsrv.c | 2 +- manual/examples/isockad.c | 2 +- manual/examples/longopt.c | 2 +- manual/examples/memopen.c | 2 +- manual/examples/memstrm.c | 2 +- manual/examples/mkfsock.c | 2 +- manual/examples/mkisock.c | 2 +- manual/examples/mygetpass.c | 2 +- manual/examples/pipe.c | 2 +- manual/examples/popen.c | 2 +- manual/examples/rprintf.c | 2 +- manual/examples/search.c | 2 +- manual/examples/select.c | 2 +- manual/examples/setjmp.c | 2 +- manual/examples/sigh1.c | 2 +- manual/examples/sigusr.c | 2 +- manual/examples/stpcpy.c | 2 +- manual/examples/strdupa.c | 2 +- manual/examples/strftim.c | 2 +- manual/examples/strncat.c | 2 +- manual/examples/subopt.c | 2 +- manual/examples/swapcontext.c | 2 +- manual/examples/termios.c | 2 +- manual/examples/testopt.c | 2 +- manual/examples/testpass.c | 2 +- manual/examples/timeval_subtract.c | 2 +- manual/libm-err-tab.pl | 2 +- manual/summary.awk | 2 +- manual/tsort.awk | 2 +- math/Makefile | 2 +- math/atest-exp.c | 2 +- math/atest-exp2.c | 2 +- math/atest-sincos.c | 2 +- math/auto-libm-test-in | 2 +- math/basic-test.c | 2 +- math/bits/cmathcalls.h | 2 +- math/bits/math-finite.h | 2 +- math/bits/mathcalls.h | 2 +- math/cabs.c | 2 +- math/cabsf.c | 2 +- math/cabsl.c | 2 +- math/carg.c | 2 +- math/cargf.c | 2 +- math/cargl.c | 2 +- math/cimag.c | 2 +- math/cimagf.c | 2 +- math/cimagl.c | 2 +- math/complex.h | 2 +- math/conj.c | 2 +- math/conjf.c | 2 +- math/conjl.c | 2 +- math/creal.c | 2 +- math/crealf.c | 2 +- math/creall.c | 2 +- math/divtc3.c | 2 +- math/e_exp10.c | 2 +- math/e_exp10f.c | 2 +- math/e_exp10l.c | 2 +- math/e_exp2l.c | 2 +- math/e_scalb.c | 2 +- math/e_scalbf.c | 2 +- math/e_scalbl.c | 2 +- math/fclrexcpt.c | 2 +- math/fedisblxcpt.c | 2 +- math/feenablxcpt.c | 2 +- math/fegetenv.c | 2 +- math/fegetexcept.c | 2 +- math/fegetround.c | 2 +- math/feholdexcpt.c | 2 +- math/fenv.h | 2 +- math/fesetenv.c | 2 +- math/fesetround.c | 2 +- math/feupdateenv.c | 2 +- math/fgetexcptflg.c | 2 +- math/fpu_control.c | 2 +- math/fraiseexcpt.c | 2 +- math/fsetexcptflg.c | 2 +- math/ftestexcept.c | 2 +- math/gen-auto-libm-tests.c | 2 +- math/gen-libm-test.pl | 2 +- math/k_casinh.c | 2 +- math/k_casinhf.c | 2 +- math/k_casinhl.c | 2 +- math/libm-test.inc | 2 +- math/math.h | 2 +- math/multc3.c | 2 +- math/s_cacos.c | 2 +- math/s_cacosf.c | 2 +- math/s_cacosh.c | 2 +- math/s_cacoshf.c | 2 +- math/s_cacoshl.c | 2 +- math/s_cacosl.c | 2 +- math/s_casin.c | 2 +- math/s_casinf.c | 2 +- math/s_casinh.c | 2 +- math/s_casinhf.c | 2 +- math/s_casinhl.c | 2 +- math/s_casinl.c | 2 +- math/s_catan.c | 2 +- math/s_catanf.c | 2 +- math/s_catanh.c | 2 +- math/s_catanhf.c | 2 +- math/s_catanhl.c | 2 +- math/s_catanl.c | 2 +- math/s_ccos.c | 2 +- math/s_ccosf.c | 2 +- math/s_ccosh.c | 2 +- math/s_ccoshf.c | 2 +- math/s_ccoshl.c | 2 +- math/s_ccosl.c | 2 +- math/s_cexp.c | 2 +- math/s_cexpf.c | 2 +- math/s_cexpl.c | 2 +- math/s_clog.c | 2 +- math/s_clog10.c | 2 +- math/s_clog10f.c | 2 +- math/s_clog10l.c | 2 +- math/s_clogf.c | 2 +- math/s_clogl.c | 2 +- math/s_cpow.c | 2 +- math/s_cpowf.c | 2 +- math/s_cpowl.c | 2 +- math/s_cproj.c | 2 +- math/s_cprojf.c | 2 +- math/s_cprojl.c | 2 +- math/s_csin.c | 2 +- math/s_csinf.c | 2 +- math/s_csinh.c | 2 +- math/s_csinhf.c | 2 +- math/s_csinhl.c | 2 +- math/s_csinl.c | 2 +- math/s_csqrt.c | 2 +- math/s_csqrtf.c | 2 +- math/s_csqrtl.c | 2 +- math/s_ctan.c | 2 +- math/s_ctanf.c | 2 +- math/s_ctanh.c | 2 +- math/s_ctanhf.c | 2 +- math/s_ctanhl.c | 2 +- math/s_ctanl.c | 2 +- math/s_fdim.c | 2 +- math/s_fdimf.c | 2 +- math/s_fdiml.c | 2 +- math/s_fma.c | 2 +- math/s_fmaf.c | 2 +- math/s_fmal.c | 2 +- math/s_fmax.c | 2 +- math/s_fmaxf.c | 2 +- math/s_fmaxl.c | 2 +- math/s_fmin.c | 2 +- math/s_fminf.c | 2 +- math/s_fminl.c | 2 +- math/s_nan.c | 2 +- math/s_nanf.c | 2 +- math/s_nanl.c | 2 +- math/setfpucw.c | 2 +- math/test-double.c | 2 +- math/test-fenv-tls.c | 2 +- math/test-fenv.c | 2 +- math/test-float.c | 2 +- math/test-fpucw-ieee.c | 2 +- math/test-fpucw.c | 2 +- math/test-idouble.c | 2 +- math/test-ifloat.c | 2 +- math/test-ildoubl.c | 2 +- math/test-ldouble.c | 2 +- math/test-misc.c | 2 +- math/test-powl.c | 2 +- math/test-snan.c | 2 +- math/test-tgmath-int.c | 2 +- math/test-tgmath-ret.c | 2 +- math/test-tgmath.c | 2 +- math/test-tgmath2.c | 2 +- math/tgmath.h | 2 +- math/tst-CMPLX2.c | 2 +- math/tst-definitions.c | 2 +- math/w_acos.c | 2 +- math/w_acosf.c | 2 +- math/w_acosh.c | 2 +- math/w_acoshf.c | 2 +- math/w_acoshl.c | 2 +- math/w_acosl.c | 2 +- math/w_asin.c | 2 +- math/w_asinf.c | 2 +- math/w_asinl.c | 2 +- math/w_atan2.c | 2 +- math/w_atan2f.c | 2 +- math/w_atan2l.c | 2 +- math/w_atanh.c | 2 +- math/w_atanhf.c | 2 +- math/w_atanhl.c | 2 +- math/w_exp10.c | 2 +- math/w_exp10f.c | 2 +- math/w_exp10l.c | 2 +- math/w_fmod.c | 2 +- math/w_fmodf.c | 2 +- math/w_fmodl.c | 2 +- math/w_ilogb.c | 2 +- math/w_ilogbf.c | 2 +- math/w_ilogbl.c | 2 +- math/w_j0.c | 2 +- math/w_j0f.c | 2 +- math/w_j0l.c | 2 +- math/w_j1.c | 2 +- math/w_j1f.c | 2 +- math/w_j1l.c | 2 +- math/w_jn.c | 2 +- math/w_jnf.c | 2 +- math/w_log.c | 2 +- math/w_log10.c | 2 +- math/w_log10f.c | 2 +- math/w_log10l.c | 2 +- math/w_log2.c | 2 +- math/w_log2f.c | 2 +- math/w_log2l.c | 2 +- math/w_logf.c | 2 +- math/w_logl.c | 2 +- math/w_pow.c | 2 +- math/w_powf.c | 2 +- math/w_powl.c | 2 +- math/w_remainder.c | 2 +- math/w_remainderf.c | 2 +- math/w_remainderl.c | 2 +- math/w_scalb.c | 2 +- math/w_scalbf.c | 2 +- math/w_scalbl.c | 2 +- math/w_sqrt.c | 2 +- math/w_sqrtf.c | 2 +- math/w_sqrtl.c | 2 +- misc/Makefile | 2 +- misc/acct.c | 2 +- misc/ar.h | 2 +- misc/bits/error.h | 2 +- misc/bits/select2.h | 2 +- misc/bits/stab.def | 2 +- misc/bits/syslog-ldbl.h | 2 +- misc/bits/syslog.h | 2 +- misc/brk.c | 2 +- misc/chflags.c | 2 +- misc/chroot.c | 2 +- misc/dirname.c | 2 +- misc/efgcvt.c | 2 +- misc/efgcvt_r.c | 2 +- misc/err.c | 2 +- misc/err.h | 2 +- misc/error.c | 2 +- misc/error.h | 2 +- misc/fchflags.c | 2 +- misc/fdatasync.c | 2 +- misc/fgetxattr.c | 2 +- misc/flistxattr.c | 2 +- misc/fremovexattr.c | 2 +- misc/fsetxattr.c | 2 +- misc/fstab.c | 2 +- misc/fsync.c | 2 +- misc/ftruncate.c | 2 +- misc/ftruncate64.c | 2 +- misc/futimes.c | 2 +- misc/futimesat.c | 2 +- misc/getauxval.c | 2 +- misc/getclktck.c | 2 +- misc/getdomain.c | 2 +- misc/getdtsz.c | 2 +- misc/gethostid.c | 2 +- misc/gethostname.c | 2 +- misc/getloadavg.c | 2 +- misc/getpagesize.c | 2 +- misc/getpass.c | 2 +- misc/getsysstats.c | 2 +- misc/getxattr.c | 2 +- misc/gtty.c | 2 +- misc/hsearch.c | 2 +- misc/hsearch_r.c | 2 +- misc/ifunc-impl-list.c | 2 +- misc/init-misc.c | 2 +- misc/insremque.c | 2 +- misc/ioctl.c | 2 +- misc/lgetxattr.c | 2 +- misc/libgen.h | 2 +- misc/listxattr.c | 2 +- misc/llistxattr.c | 2 +- misc/lremovexattr.c | 2 +- misc/lsearch.c | 2 +- misc/lsetxattr.c | 2 +- misc/lutimes.c | 2 +- misc/madvise.c | 2 +- misc/mincore.c | 2 +- misc/mkdtemp.c | 2 +- misc/mkostemp.c | 2 +- misc/mkostemp64.c | 2 +- misc/mkostemps.c | 2 +- misc/mkostemps64.c | 2 +- misc/mkstemp.c | 2 +- misc/mkstemp64.c | 2 +- misc/mkstemps.c | 2 +- misc/mkstemps64.c | 2 +- misc/mktemp.c | 2 +- misc/mlock.c | 2 +- misc/mlockall.c | 2 +- misc/mmap.c | 2 +- misc/mmap64.c | 2 +- misc/mntent.c | 2 +- misc/mntent.h | 2 +- misc/mntent_r.c | 2 +- misc/mprotect.c | 2 +- misc/msync.c | 2 +- misc/munlock.c | 2 +- misc/munlockall.c | 2 +- misc/munmap.c | 2 +- misc/preadv.c | 2 +- misc/preadv64.c | 2 +- misc/pselect.c | 2 +- misc/ptrace.c | 2 +- misc/pwritev.c | 2 +- misc/pwritev64.c | 2 +- misc/qefgcvt.c | 2 +- misc/qefgcvt_r.c | 2 +- misc/readv.c | 2 +- misc/reboot.c | 2 +- misc/regexp.c | 2 +- misc/regexp.h | 2 +- misc/remap_file_pages.c | 2 +- misc/removexattr.c | 2 +- misc/revoke.c | 2 +- misc/sbrk.c | 2 +- misc/search.h | 2 +- misc/select.c | 2 +- misc/setdomain.c | 2 +- misc/setegid.c | 2 +- misc/seteuid.c | 2 +- misc/sethostid.c | 2 +- misc/sethostname.c | 2 +- misc/setregid.c | 2 +- misc/setreuid.c | 2 +- misc/setxattr.c | 2 +- misc/sgtty.h | 2 +- misc/sstk.c | 2 +- misc/stty.c | 2 +- misc/swapoff.c | 2 +- misc/swapon.c | 2 +- misc/sync.c | 2 +- misc/syncfs.c | 2 +- misc/sys/auxv.h | 2 +- misc/sys/cdefs.h | 2 +- misc/sys/dir.h | 2 +- misc/sys/file.h | 2 +- misc/sys/ioctl.h | 2 +- misc/sys/mman.h | 2 +- misc/sys/param.h | 2 +- misc/sys/select.h | 2 +- misc/sys/uio.h | 2 +- misc/sys/ustat.h | 2 +- misc/sys/xattr.h | 2 +- misc/syscall.c | 2 +- misc/truncate.c | 2 +- misc/truncate64.c | 2 +- misc/tsearch.c | 2 +- misc/tst-dirname.c | 2 +- misc/tst-efgcvt.c | 2 +- misc/tst-fdset.c | 2 +- misc/tst-tsearch.c | 2 +- misc/ualarm.c | 2 +- misc/usleep.c | 2 +- misc/ustat.c | 2 +- misc/utimes.c | 2 +- misc/vhangup.c | 2 +- misc/writev.c | 2 +- nis/Makefile | 2 +- nis/libnsl.h | 2 +- nis/nis_add.c | 2 +- nis/nis_addmember.c | 2 +- nis/nis_call.c | 2 +- nis/nis_callback.c | 2 +- nis/nis_checkpoint.c | 2 +- nis/nis_clone_dir.c | 2 +- nis/nis_clone_obj.c | 2 +- nis/nis_clone_res.c | 2 +- nis/nis_creategroup.c | 2 +- nis/nis_defaults.c | 2 +- nis/nis_destroygroup.c | 2 +- nis/nis_domain_of.c | 2 +- nis/nis_domain_of_r.c | 2 +- nis/nis_error.c | 2 +- nis/nis_file.c | 2 +- nis/nis_findserv.c | 2 +- nis/nis_free.c | 2 +- nis/nis_getservlist.c | 2 +- nis/nis_hash.c | 2 +- nis/nis_intern.h | 2 +- nis/nis_ismember.c | 2 +- nis/nis_local_names.c | 2 +- nis/nis_lookup.c | 2 +- nis/nis_mkdir.c | 2 +- nis/nis_modify.c | 2 +- nis/nis_ping.c | 2 +- nis/nis_print.c | 2 +- nis/nis_print_group_entry.c | 2 +- nis/nis_remove.c | 2 +- nis/nis_removemember.c | 2 +- nis/nis_rmdir.c | 2 +- nis/nis_server.c | 2 +- nis/nis_subr.c | 2 +- nis/nis_table.c | 2 +- nis/nis_util.c | 2 +- nis/nis_verifygroup.c | 2 +- nis/nis_xdr.c | 2 +- nis/nis_xdr.h | 2 +- nis/nisplus-parser.h | 2 +- nis/nss-default.c | 2 +- nis/nss-nis.c | 2 +- nis/nss-nis.h | 2 +- nis/nss-nisplus.c | 2 +- nis/nss-nisplus.h | 2 +- nis/nss_compat/compat-grp.c | 2 +- nis/nss_compat/compat-initgroups.c | 2 +- nis/nss_compat/compat-pwd.c | 2 +- nis/nss_compat/compat-spwd.c | 2 +- nis/nss_nis/nis-alias.c | 2 +- nis/nss_nis/nis-ethers.c | 2 +- nis/nss_nis/nis-grp.c | 2 +- nis/nss_nis/nis-hosts.c | 2 +- nis/nss_nis/nis-initgroups.c | 2 +- nis/nss_nis/nis-netgrp.c | 2 +- nis/nss_nis/nis-network.c | 2 +- nis/nss_nis/nis-proto.c | 2 +- nis/nss_nis/nis-publickey.c | 2 +- nis/nss_nis/nis-pwd.c | 2 +- nis/nss_nis/nis-rpc.c | 2 +- nis/nss_nis/nis-service.c | 2 +- nis/nss_nis/nis-spwd.c | 2 +- nis/nss_nisplus/nisplus-alias.c | 2 +- nis/nss_nisplus/nisplus-ethers.c | 2 +- nis/nss_nisplus/nisplus-grp.c | 2 +- nis/nss_nisplus/nisplus-hosts.c | 2 +- nis/nss_nisplus/nisplus-initgroups.c | 2 +- nis/nss_nisplus/nisplus-netgrp.c | 2 +- nis/nss_nisplus/nisplus-network.c | 2 +- nis/nss_nisplus/nisplus-parser.c | 2 +- nis/nss_nisplus/nisplus-proto.c | 2 +- nis/nss_nisplus/nisplus-publickey.c | 2 +- nis/nss_nisplus/nisplus-pwd.c | 2 +- nis/nss_nisplus/nisplus-rpc.c | 2 +- nis/nss_nisplus/nisplus-service.c | 2 +- nis/nss_nisplus/nisplus-spwd.c | 2 +- nis/rpcsvc/nislib.h | 2 +- nis/rpcsvc/ypclnt.h | 2 +- nis/ypclnt.c | 2 +- nptl/Makeconfig | 2 +- nptl/Makefile | 2 +- nptl/alloca_cutoff.c | 2 +- nptl/allocatestack.c | 2 +- nptl/cancellation.c | 2 +- nptl/cleanup.c | 2 +- nptl/cleanup_compat.c | 2 +- nptl/cleanup_defer.c | 2 +- nptl/cleanup_defer_compat.c | 2 +- nptl/cleanup_routine.c | 2 +- nptl/descr.h | 2 +- nptl/eintr.c | 2 +- nptl/events.c | 2 +- nptl/forward.c | 2 +- nptl/herrno.c | 2 +- nptl/libc-cancellation.c | 2 +- nptl/libc-cleanup.c | 2 +- nptl/lowlevellock.h | 2 +- nptl/nptl-init.c | 2 +- nptl/old_pthread_atfork.c | 2 +- nptl/old_pthread_cond_broadcast.c | 2 +- nptl/old_pthread_cond_destroy.c | 2 +- nptl/old_pthread_cond_init.c | 2 +- nptl/old_pthread_cond_signal.c | 2 +- nptl/old_pthread_cond_timedwait.c | 2 +- nptl/old_pthread_cond_wait.c | 2 +- nptl/perf.c | 2 +- nptl/pt-allocrtsig.c | 2 +- nptl/pt-cleanup.c | 2 +- nptl/pt-crti.S | 2 +- nptl/pt-raise.c | 2 +- nptl/pt-system.c | 2 +- nptl/pthreadP.h | 2 +- nptl/pthread_atfork.c | 2 +- nptl/pthread_attr_destroy.c | 2 +- nptl/pthread_attr_getdetachstate.c | 2 +- nptl/pthread_attr_getguardsize.c | 2 +- nptl/pthread_attr_getinheritsched.c | 2 +- nptl/pthread_attr_getschedparam.c | 2 +- nptl/pthread_attr_getschedpolicy.c | 2 +- nptl/pthread_attr_getscope.c | 2 +- nptl/pthread_attr_getstack.c | 2 +- nptl/pthread_attr_getstackaddr.c | 2 +- nptl/pthread_attr_getstacksize.c | 2 +- nptl/pthread_attr_init.c | 2 +- nptl/pthread_attr_setdetachstate.c | 2 +- nptl/pthread_attr_setguardsize.c | 2 +- nptl/pthread_attr_setinheritsched.c | 2 +- nptl/pthread_attr_setschedparam.c | 2 +- nptl/pthread_attr_setschedpolicy.c | 2 +- nptl/pthread_attr_setscope.c | 2 +- nptl/pthread_attr_setstack.c | 2 +- nptl/pthread_attr_setstackaddr.c | 2 +- nptl/pthread_attr_setstacksize.c | 2 +- nptl/pthread_barrier_destroy.c | 2 +- nptl/pthread_barrier_init.c | 2 +- nptl/pthread_barrier_wait.c | 2 +- nptl/pthread_barrierattr_destroy.c | 2 +- nptl/pthread_barrierattr_getpshared.c | 2 +- nptl/pthread_barrierattr_init.c | 2 +- nptl/pthread_barrierattr_setpshared.c | 2 +- nptl/pthread_cancel.c | 2 +- nptl/pthread_clock_gettime.c | 2 +- nptl/pthread_clock_settime.c | 2 +- nptl/pthread_cond_broadcast.c | 2 +- nptl/pthread_cond_destroy.c | 2 +- nptl/pthread_cond_init.c | 2 +- nptl/pthread_cond_signal.c | 2 +- nptl/pthread_cond_timedwait.c | 2 +- nptl/pthread_cond_wait.c | 2 +- nptl/pthread_condattr_destroy.c | 2 +- nptl/pthread_condattr_getclock.c | 2 +- nptl/pthread_condattr_getpshared.c | 2 +- nptl/pthread_condattr_init.c | 2 +- nptl/pthread_condattr_setclock.c | 2 +- nptl/pthread_condattr_setpshared.c | 2 +- nptl/pthread_create.c | 2 +- nptl/pthread_detach.c | 2 +- nptl/pthread_equal.c | 2 +- nptl/pthread_exit.c | 2 +- nptl/pthread_getattr_default_np.c | 2 +- nptl/pthread_getattr_np.c | 2 +- nptl/pthread_getconcurrency.c | 2 +- nptl/pthread_getcpuclockid.c | 2 +- nptl/pthread_getschedparam.c | 2 +- nptl/pthread_getspecific.c | 2 +- nptl/pthread_join.c | 2 +- nptl/pthread_key_create.c | 2 +- nptl/pthread_key_delete.c | 2 +- nptl/pthread_kill_other_threads.c | 2 +- nptl/pthread_mutex_consistent.c | 2 +- nptl/pthread_mutex_destroy.c | 2 +- nptl/pthread_mutex_getprioceiling.c | 2 +- nptl/pthread_mutex_init.c | 2 +- nptl/pthread_mutex_lock.c | 2 +- nptl/pthread_mutex_setprioceiling.c | 2 +- nptl/pthread_mutex_timedlock.c | 2 +- nptl/pthread_mutex_trylock.c | 2 +- nptl/pthread_mutex_unlock.c | 2 +- nptl/pthread_mutexattr_destroy.c | 2 +- nptl/pthread_mutexattr_getprioceiling.c | 2 +- nptl/pthread_mutexattr_getprotocol.c | 2 +- nptl/pthread_mutexattr_getpshared.c | 2 +- nptl/pthread_mutexattr_getrobust.c | 2 +- nptl/pthread_mutexattr_gettype.c | 2 +- nptl/pthread_mutexattr_init.c | 2 +- nptl/pthread_mutexattr_setprioceiling.c | 2 +- nptl/pthread_mutexattr_setprotocol.c | 2 +- nptl/pthread_mutexattr_setpshared.c | 2 +- nptl/pthread_mutexattr_setrobust.c | 2 +- nptl/pthread_mutexattr_settype.c | 2 +- nptl/pthread_once.c | 2 +- nptl/pthread_rwlock_destroy.c | 2 +- nptl/pthread_rwlock_init.c | 2 +- nptl/pthread_rwlock_rdlock.c | 2 +- nptl/pthread_rwlock_timedrdlock.c | 2 +- nptl/pthread_rwlock_timedwrlock.c | 2 +- nptl/pthread_rwlock_tryrdlock.c | 2 +- nptl/pthread_rwlock_trywrlock.c | 2 +- nptl/pthread_rwlock_unlock.c | 2 +- nptl/pthread_rwlock_wrlock.c | 2 +- nptl/pthread_rwlockattr_destroy.c | 2 +- nptl/pthread_rwlockattr_getkind_np.c | 2 +- nptl/pthread_rwlockattr_getpshared.c | 2 +- nptl/pthread_rwlockattr_init.c | 2 +- nptl/pthread_rwlockattr_setkind_np.c | 2 +- nptl/pthread_rwlockattr_setpshared.c | 2 +- nptl/pthread_self.c | 2 +- nptl/pthread_setattr_default_np.c | 2 +- nptl/pthread_setcancelstate.c | 2 +- nptl/pthread_setcanceltype.c | 2 +- nptl/pthread_setconcurrency.c | 2 +- nptl/pthread_setschedparam.c | 2 +- nptl/pthread_setschedprio.c | 2 +- nptl/pthread_setspecific.c | 2 +- nptl/pthread_spin_destroy.c | 2 +- nptl/pthread_spin_init.c | 2 +- nptl/pthread_spin_lock.c | 2 +- nptl/pthread_spin_trylock.c | 2 +- nptl/pthread_spin_unlock.c | 2 +- nptl/pthread_testcancel.c | 2 +- nptl/pthread_timedjoin.c | 2 +- nptl/pthread_tryjoin.c | 2 +- nptl/res.c | 2 +- nptl/sem_close.c | 2 +- nptl/sem_destroy.c | 2 +- nptl/sem_getvalue.c | 2 +- nptl/sem_init.c | 2 +- nptl/sem_open.c | 2 +- nptl/sem_unlink.c | 2 +- nptl/semaphore.h | 2 +- nptl/semaphoreP.h | 2 +- nptl/sigaction.c | 2 +- nptl/sysdeps/i386/Makefile | 2 +- nptl/sysdeps/i386/i486/pthread_spin_trylock.S | 2 +- nptl/sysdeps/i386/i586/pthread_spin_trylock.S | 2 +- nptl/sysdeps/i386/i686/Makefile | 2 +- nptl/sysdeps/i386/i686/pthread_spin_trylock.S | 2 +- nptl/sysdeps/i386/i686/tls.h | 2 +- nptl/sysdeps/i386/pthread_spin_init.c | 2 +- nptl/sysdeps/i386/pthread_spin_lock.S | 2 +- nptl/sysdeps/i386/pthread_spin_unlock.S | 2 +- nptl/sysdeps/i386/pthreaddef.h | 2 +- nptl/sysdeps/i386/tls.h | 2 +- nptl/sysdeps/powerpc/Makefile | 2 +- nptl/sysdeps/powerpc/pthread_spin_lock.c | 2 +- nptl/sysdeps/powerpc/pthread_spin_trylock.c | 2 +- nptl/sysdeps/powerpc/pthreaddef.h | 2 +- nptl/sysdeps/powerpc/tls.h | 2 +- nptl/sysdeps/pthread/Makefile | 2 +- nptl/sysdeps/pthread/aio_misc.h | 2 +- nptl/sysdeps/pthread/allocalim.h | 2 +- nptl/sysdeps/pthread/bits/libc-lock.h | 2 +- nptl/sysdeps/pthread/bits/libc-lockP.h | 2 +- nptl/sysdeps/pthread/bits/sigthread.h | 2 +- nptl/sysdeps/pthread/bits/stdio-lock.h | 2 +- nptl/sysdeps/pthread/createthread.c | 2 +- nptl/sysdeps/pthread/flockfile.c | 2 +- nptl/sysdeps/pthread/ftrylockfile.c | 2 +- nptl/sysdeps/pthread/funlockfile.c | 2 +- nptl/sysdeps/pthread/gai_misc.h | 2 +- nptl/sysdeps/pthread/librt-cancellation.c | 2 +- nptl/sysdeps/pthread/list.h | 2 +- nptl/sysdeps/pthread/malloc-machine.h | 2 +- nptl/sysdeps/pthread/posix-timer.h | 2 +- nptl/sysdeps/pthread/pt-longjmp.c | 2 +- nptl/sysdeps/pthread/pthread-functions.h | 2 +- nptl/sysdeps/pthread/pthread.h | 2 +- nptl/sysdeps/pthread/pthread_sigmask.c | 2 +- nptl/sysdeps/pthread/setxid.h | 2 +- nptl/sysdeps/pthread/sigfillset.c | 2 +- nptl/sysdeps/pthread/sigprocmask.c | 2 +- nptl/sysdeps/pthread/timer_create.c | 2 +- nptl/sysdeps/pthread/timer_delete.c | 2 +- nptl/sysdeps/pthread/timer_getoverr.c | 2 +- nptl/sysdeps/pthread/timer_gettime.c | 2 +- nptl/sysdeps/pthread/timer_routines.c | 2 +- nptl/sysdeps/pthread/timer_settime.c | 2 +- nptl/sysdeps/pthread/tst-timer.c | 2 +- nptl/sysdeps/pthread/unwind-forcedunwind.c | 2 +- nptl/sysdeps/s390/Makefile | 2 +- nptl/sysdeps/s390/pthread_spin_init.c | 2 +- nptl/sysdeps/s390/pthread_spin_lock.c | 2 +- nptl/sysdeps/s390/pthread_spin_trylock.c | 2 +- nptl/sysdeps/s390/pthread_spin_unlock.c | 2 +- nptl/sysdeps/s390/pthreaddef.h | 2 +- nptl/sysdeps/s390/tls.h | 2 +- nptl/sysdeps/sh/pthread_spin_init.c | 2 +- nptl/sysdeps/sh/pthread_spin_lock.c | 2 +- nptl/sysdeps/sh/pthread_spin_trylock.S | 2 +- nptl/sysdeps/sh/pthread_spin_unlock.S | 2 +- nptl/sysdeps/sh/pthreaddef.h | 2 +- nptl/sysdeps/sh/tls.h | 2 +- nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S | 2 +- nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S | 2 +- nptl/sysdeps/sparc/sparc32/pthreaddef.h | 2 +- nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S | 2 +- nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S | 2 +- nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S | 2 +- nptl/sysdeps/sparc/sparc64/pthreaddef.h | 2 +- nptl/sysdeps/sparc/tls.h | 2 +- nptl/sysdeps/unix/sysv/linux/Makefile | 2 +- nptl/sysdeps/unix/sysv/linux/aio_misc.h | 2 +- nptl/sysdeps/unix/sysv/linux/allocrtsig.c | 2 +- nptl/sysdeps/unix/sysv/linux/bits/local_lim.h | 2 +- nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h | 2 +- nptl/sysdeps/unix/sysv/linux/createthread.c | 2 +- nptl/sysdeps/unix/sysv/linux/fork.c | 2 +- nptl/sysdeps/unix/sysv/linux/fork.h | 2 +- nptl/sysdeps/unix/sysv/linux/getpid.c | 2 +- nptl/sysdeps/unix/sysv/linux/i386/createthread.c | 2 +- nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h | 2 +- nptl/sysdeps/unix/sysv/linux/i386/fork.c | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S | 2 +- .../unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S | 2 +- .../unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S | 2 +- .../unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S | 2 +- .../unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S | 2 +- .../unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S | 2 +- .../unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h | 2 +- nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h | 2 +- nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S | 2 +- nptl/sysdeps/unix/sysv/linux/i386/smp.h | 2 +- nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h | 2 +- nptl/sysdeps/unix/sysv/linux/i386/vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/internaltypes.h | 2 +- nptl/sysdeps/unix/sysv/linux/jmp-unwind.c | 2 +- nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h | 2 +- nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c | 2 +- nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c | 2 +- nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c | 2 +- nptl/sysdeps/unix/sysv/linux/lowlevellock.c | 2 +- nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c | 2 +- nptl/sysdeps/unix/sysv/linux/mq_notify.c | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c | 2 +- nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c | 2 +- nptl/sysdeps/unix/sysv/linux/pt-fork.c | 2 +- nptl/sysdeps/unix/sysv/linux/pt-raise.c | 2 +- nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c | 2 +- nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c | 2 +- nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c | 2 +- nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c | 2 +- nptl/sysdeps/unix/sysv/linux/pthread_getname.c | 2 +- nptl/sysdeps/unix/sysv/linux/pthread_kill.c | 2 +- nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c | 2 +- nptl/sysdeps/unix/sysv/linux/pthread_setname.c | 2 +- nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c | 2 +- nptl/sysdeps/unix/sysv/linux/pthread_yield.c | 2 +- nptl/sysdeps/unix/sysv/linux/raise.c | 2 +- nptl/sysdeps/unix/sysv/linux/register-atfork.c | 2 +- nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h | 2 +- nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h | 2 +- nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/s390/fork.c | 2 +- nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c | 2 +- nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h | 2 +- nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c | 2 +- nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h | 2 +- nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h | 2 +- nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/sem_post.c | 2 +- nptl/sysdeps/unix/sysv/linux/sem_timedwait.c | 2 +- nptl/sysdeps/unix/sysv/linux/sem_trywait.c | 2 +- nptl/sysdeps/unix/sysv/linux/sem_wait.c | 2 +- nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h | 2 +- nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/sh/createthread.c | 2 +- nptl/sysdeps/unix/sysv/linux/sh/fork.c | 2 +- nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h | 2 +- nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h | 2 +- nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/sem_post.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/sh/smp.h | 2 +- nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h | 2 +- nptl/sysdeps/unix/sysv/linux/sh/vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/smp.h | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/fork.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h | 2 +- nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/timer_create.c | 2 +- nptl/sysdeps/unix/sysv/linux/timer_delete.c | 2 +- nptl/sysdeps/unix/sysv/linux/timer_getoverr.c | 2 +- nptl/sysdeps/unix/sysv/linux/timer_gettime.c | 2 +- nptl/sysdeps/unix/sysv/linux/timer_routines.c | 2 +- nptl/sysdeps/unix/sysv/linux/timer_settime.c | 2 +- nptl/sysdeps/unix/sysv/linux/tst-setgetname.c | 2 +- nptl/sysdeps/unix/sysv/linux/unregister-atfork.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h | 2 +- nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h | 2 +- nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h | 2 +- nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86/force-elision.h | 2 +- nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/fork.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c | 2 +- nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S | 2 +- nptl/sysdeps/x86_64/Makefile | 2 +- nptl/sysdeps/x86_64/pthread_spin_lock.S | 2 +- nptl/sysdeps/x86_64/pthread_spin_trylock.S | 2 +- nptl/sysdeps/x86_64/pthread_spin_unlock.S | 2 +- nptl/sysdeps/x86_64/pthreaddef.h | 2 +- nptl/sysdeps/x86_64/tls.h | 2 +- nptl/sysdeps/x86_64/x32/tls.h | 2 +- nptl/tpp.c | 2 +- nptl/tst-_res1.c | 2 +- nptl/tst-_res1mod1.c | 2 +- nptl/tst-abstime.c | 2 +- nptl/tst-align.c | 2 +- nptl/tst-align2.c | 2 +- nptl/tst-align3.c | 2 +- nptl/tst-atfork1.c | 2 +- nptl/tst-atfork2.c | 2 +- nptl/tst-atfork2mod.c | 2 +- nptl/tst-attr1.c | 2 +- nptl/tst-attr2.c | 2 +- nptl/tst-attr3.c | 2 +- nptl/tst-backtrace1.c | 2 +- nptl/tst-barrier1.c | 2 +- nptl/tst-barrier2.c | 2 +- nptl/tst-barrier3.c | 2 +- nptl/tst-barrier4.c | 2 +- nptl/tst-basic1.c | 2 +- nptl/tst-basic2.c | 2 +- nptl/tst-basic3.c | 2 +- nptl/tst-basic4.c | 2 +- nptl/tst-basic5.c | 2 +- nptl/tst-basic6.c | 2 +- nptl/tst-cancel-self-cancelstate.c | 2 +- nptl/tst-cancel-self-canceltype.c | 2 +- nptl/tst-cancel-self-cleanup.c | 2 +- nptl/tst-cancel-self-testcancel.c | 2 +- nptl/tst-cancel-self.c | 2 +- nptl/tst-cancel-wrappers.sh | 2 +- nptl/tst-cancel1.c | 2 +- nptl/tst-cancel10.c | 2 +- nptl/tst-cancel11.c | 2 +- nptl/tst-cancel12.c | 2 +- nptl/tst-cancel13.c | 2 +- nptl/tst-cancel14.c | 2 +- nptl/tst-cancel15.c | 2 +- nptl/tst-cancel16.c | 2 +- nptl/tst-cancel17.c | 2 +- nptl/tst-cancel18.c | 2 +- nptl/tst-cancel19.c | 2 +- nptl/tst-cancel2.c | 2 +- nptl/tst-cancel20.c | 2 +- nptl/tst-cancel21.c | 2 +- nptl/tst-cancel22.c | 2 +- nptl/tst-cancel3.c | 2 +- nptl/tst-cancel4.c | 2 +- nptl/tst-cancel6.c | 2 +- nptl/tst-cancel7.c | 2 +- nptl/tst-cancel8.c | 2 +- nptl/tst-cancel9.c | 2 +- nptl/tst-cleanup0.c | 2 +- nptl/tst-cleanup1.c | 2 +- nptl/tst-cleanup2.c | 2 +- nptl/tst-cleanup3.c | 2 +- nptl/tst-cleanup4.c | 2 +- nptl/tst-cleanup4aux.c | 2 +- nptl/tst-clock1.c | 2 +- nptl/tst-clock2.c | 2 +- nptl/tst-cond-except.c | 2 +- nptl/tst-cond1.c | 2 +- nptl/tst-cond10.c | 2 +- nptl/tst-cond11.c | 2 +- nptl/tst-cond12.c | 2 +- nptl/tst-cond14.c | 2 +- nptl/tst-cond15.c | 2 +- nptl/tst-cond16.c | 2 +- nptl/tst-cond18.c | 2 +- nptl/tst-cond19.c | 2 +- nptl/tst-cond2.c | 2 +- nptl/tst-cond20.c | 2 +- nptl/tst-cond23.c | 2 +- nptl/tst-cond24.c | 2 +- nptl/tst-cond25.c | 2 +- nptl/tst-cond3.c | 2 +- nptl/tst-cond4.c | 2 +- nptl/tst-cond5.c | 2 +- nptl/tst-cond6.c | 2 +- nptl/tst-cond7.c | 2 +- nptl/tst-cond8.c | 2 +- nptl/tst-cond9.c | 2 +- nptl/tst-context1.c | 2 +- nptl/tst-default-attr.c | 2 +- nptl/tst-detach1.c | 2 +- nptl/tst-eintr1.c | 2 +- nptl/tst-eintr2.c | 2 +- nptl/tst-eintr3.c | 2 +- nptl/tst-eintr4.c | 2 +- nptl/tst-eintr5.c | 2 +- nptl/tst-exec1.c | 2 +- nptl/tst-exec2.c | 2 +- nptl/tst-exec3.c | 2 +- nptl/tst-exec4.c | 2 +- nptl/tst-exit1.c | 2 +- nptl/tst-fini1.c | 2 +- nptl/tst-fini1mod.c | 2 +- nptl/tst-flock1.c | 2 +- nptl/tst-flock2.c | 2 +- nptl/tst-fork1.c | 2 +- nptl/tst-fork2.c | 2 +- nptl/tst-fork3.c | 2 +- nptl/tst-fork4.c | 2 +- nptl/tst-initializers1.c | 2 +- nptl/tst-join1.c | 2 +- nptl/tst-join2.c | 2 +- nptl/tst-join3.c | 2 +- nptl/tst-join4.c | 2 +- nptl/tst-join5.c | 2 +- nptl/tst-key1.c | 2 +- nptl/tst-key2.c | 2 +- nptl/tst-key3.c | 2 +- nptl/tst-key4.c | 2 +- nptl/tst-kill1.c | 2 +- nptl/tst-kill2.c | 2 +- nptl/tst-kill3.c | 2 +- nptl/tst-kill4.c | 2 +- nptl/tst-kill5.c | 2 +- nptl/tst-kill6.c | 2 +- nptl/tst-mutex1.c | 2 +- nptl/tst-mutex2.c | 2 +- nptl/tst-mutex3.c | 2 +- nptl/tst-mutex4.c | 2 +- nptl/tst-mutex5.c | 2 +- nptl/tst-mutex6.c | 2 +- nptl/tst-mutex7.c | 2 +- nptl/tst-mutex8.c | 2 +- nptl/tst-mutex9.c | 2 +- nptl/tst-mutexpp10.c | 2 +- nptl/tst-oddstacklimit.c | 2 +- nptl/tst-once1.c | 2 +- nptl/tst-once2.c | 2 +- nptl/tst-once3.c | 2 +- nptl/tst-once4.c | 2 +- nptl/tst-popen1.c | 2 +- nptl/tst-pthread-attr-affinity.c | 2 +- nptl/tst-pthread-getattr.c | 2 +- nptl/tst-raise1.c | 2 +- nptl/tst-robust1.c | 2 +- nptl/tst-robust7.c | 2 +- nptl/tst-rwlock1.c | 2 +- nptl/tst-rwlock10.c | 2 +- nptl/tst-rwlock11.c | 2 +- nptl/tst-rwlock12.c | 2 +- nptl/tst-rwlock13.c | 2 +- nptl/tst-rwlock14.c | 2 +- nptl/tst-rwlock2.c | 2 +- nptl/tst-rwlock3.c | 2 +- nptl/tst-rwlock4.c | 2 +- nptl/tst-rwlock5.c | 2 +- nptl/tst-rwlock6.c | 2 +- nptl/tst-rwlock7.c | 2 +- nptl/tst-rwlock8.c | 2 +- nptl/tst-rwlock9.c | 2 +- nptl/tst-sched1.c | 2 +- nptl/tst-sem1.c | 2 +- nptl/tst-sem10.c | 2 +- nptl/tst-sem14.c | 2 +- nptl/tst-sem2.c | 2 +- nptl/tst-sem3.c | 2 +- nptl/tst-sem4.c | 2 +- nptl/tst-sem5.c | 2 +- nptl/tst-sem6.c | 2 +- nptl/tst-sem7.c | 2 +- nptl/tst-sem8.c | 2 +- nptl/tst-sem9.c | 2 +- nptl/tst-setuid1.c | 2 +- nptl/tst-signal1.c | 2 +- nptl/tst-signal2.c | 2 +- nptl/tst-signal3.c | 2 +- nptl/tst-signal4.c | 2 +- nptl/tst-signal5.c | 2 +- nptl/tst-signal6.c | 2 +- nptl/tst-signal7.c | 2 +- nptl/tst-spin1.c | 2 +- nptl/tst-spin2.c | 2 +- nptl/tst-spin3.c | 2 +- nptl/tst-stack1.c | 2 +- nptl/tst-stack2.c | 2 +- nptl/tst-stack3.c | 2 +- nptl/tst-stackguard1.c | 2 +- nptl/tst-stdio1.c | 2 +- nptl/tst-stdio2.c | 2 +- nptl/tst-sysconf.c | 2 +- nptl/tst-tls1.c | 2 +- nptl/tst-tls2.c | 2 +- nptl/tst-tls3.c | 2 +- nptl/tst-tls3mod.c | 2 +- nptl/tst-tls4.c | 2 +- nptl/tst-tls4moda.c | 2 +- nptl/tst-tls4modb.c | 2 +- nptl/tst-tls5.c | 2 +- nptl/tst-tls6.sh | 2 +- nptl/tst-tpp.h | 2 +- nptl/tst-tsd1.c | 2 +- nptl/tst-tsd2.c | 2 +- nptl/tst-tsd3.c | 2 +- nptl/tst-tsd4.c | 2 +- nptl/tst-tsd5.c | 2 +- nptl/tst-typesizes.c | 2 +- nptl/tst-umask1.c | 2 +- nptl/tst-unload.c | 2 +- nptl/unwind.c | 2 +- nptl/vars.c | 2 +- nptl/version.c | 2 +- nptl_db/Makefile | 2 +- nptl_db/db-symbols.h | 2 +- nptl_db/db_info.c | 2 +- nptl_db/fetch-value.c | 2 +- nptl_db/proc_service.h | 2 +- nptl_db/structs.def | 2 +- nptl_db/td_init.c | 2 +- nptl_db/td_log.c | 2 +- nptl_db/td_symbol_list.c | 2 +- nptl_db/td_ta_clear_event.c | 2 +- nptl_db/td_ta_delete.c | 2 +- nptl_db/td_ta_enable_stats.c | 2 +- nptl_db/td_ta_event_addr.c | 2 +- nptl_db/td_ta_event_getmsg.c | 2 +- nptl_db/td_ta_get_nthreads.c | 2 +- nptl_db/td_ta_get_ph.c | 2 +- nptl_db/td_ta_get_stats.c | 2 +- nptl_db/td_ta_map_id2thr.c | 2 +- nptl_db/td_ta_map_lwp2thr.c | 2 +- nptl_db/td_ta_new.c | 2 +- nptl_db/td_ta_reset_stats.c | 2 +- nptl_db/td_ta_set_event.c | 2 +- nptl_db/td_ta_setconcurrency.c | 2 +- nptl_db/td_ta_thr_iter.c | 2 +- nptl_db/td_ta_tsd_iter.c | 2 +- nptl_db/td_thr_clear_event.c | 2 +- nptl_db/td_thr_dbresume.c | 2 +- nptl_db/td_thr_dbsuspend.c | 2 +- nptl_db/td_thr_event_enable.c | 2 +- nptl_db/td_thr_event_getmsg.c | 2 +- nptl_db/td_thr_get_info.c | 2 +- nptl_db/td_thr_getfpregs.c | 2 +- nptl_db/td_thr_getgregs.c | 2 +- nptl_db/td_thr_getxregs.c | 2 +- nptl_db/td_thr_getxregsize.c | 2 +- nptl_db/td_thr_set_event.c | 2 +- nptl_db/td_thr_setfpregs.c | 2 +- nptl_db/td_thr_setgregs.c | 2 +- nptl_db/td_thr_setprio.c | 2 +- nptl_db/td_thr_setsigpending.c | 2 +- nptl_db/td_thr_setxregs.c | 2 +- nptl_db/td_thr_sigsetmask.c | 2 +- nptl_db/td_thr_tls_get_addr.c | 2 +- nptl_db/td_thr_tlsbase.c | 2 +- nptl_db/td_thr_tsd.c | 2 +- nptl_db/td_thr_validate.c | 2 +- nptl_db/thread_db.h | 2 +- nptl_db/thread_dbP.h | 2 +- nscd/Makefile | 2 +- nscd/aicache.c | 2 +- nscd/cache.c | 2 +- nscd/connections.c | 2 +- nscd/dbg_log.c | 2 +- nscd/dbg_log.h | 2 +- nscd/gai.c | 2 +- nscd/getgrgid_r.c | 2 +- nscd/getgrnam_r.c | 2 +- nscd/gethstbyad_r.c | 2 +- nscd/gethstbynm3_r.c | 2 +- nscd/getpwnam_r.c | 2 +- nscd/getpwuid_r.c | 2 +- nscd/getsrvbynm_r.c | 2 +- nscd/getsrvbypt_r.c | 2 +- nscd/grpcache.c | 2 +- nscd/hstcache.c | 2 +- nscd/initgrcache.c | 2 +- nscd/mem.c | 2 +- nscd/netgroupcache.c | 2 +- nscd/nscd-client.h | 2 +- nscd/nscd.c | 2 +- nscd/nscd.h | 2 +- nscd/nscd_conf.c | 2 +- nscd/nscd_getai.c | 2 +- nscd/nscd_getgr_r.c | 2 +- nscd/nscd_gethst_r.c | 2 +- nscd/nscd_getpw_r.c | 2 +- nscd/nscd_getserv_r.c | 2 +- nscd/nscd_helper.c | 2 +- nscd/nscd_initgroups.c | 2 +- nscd/nscd_netgroup.c | 2 +- nscd/nscd_proto.h | 2 +- nscd/nscd_setup_thread.c | 2 +- nscd/nscd_stat.c | 2 +- nscd/pwdcache.c | 2 +- nscd/selinux.c | 2 +- nscd/selinux.h | 2 +- nscd/servicescache.c | 2 +- nss/Makefile | 2 +- nss/XXX-lookup.c | 2 +- nss/alias-lookup.c | 2 +- nss/databases.def | 2 +- nss/db-Makefile | 2 +- nss/digits_dots.c | 2 +- nss/ethers-lookup.c | 2 +- nss/function.def | 2 +- nss/getXXbyYY.c | 2 +- nss/getXXbyYY_r.c | 2 +- nss/getXXent.c | 2 +- nss/getXXent_r.c | 2 +- nss/getent.c | 2 +- nss/getnssent.c | 2 +- nss/getnssent_r.c | 2 +- nss/grp-lookup.c | 2 +- nss/hosts-lookup.c | 2 +- nss/key-lookup.c | 2 +- nss/makedb.c | 2 +- nss/netgrp-lookup.c | 2 +- nss/network-lookup.c | 2 +- nss/nss.h | 2 +- nss/nss_db/db-XXX.c | 2 +- nss/nss_db/db-init.c | 2 +- nss/nss_db/db-initgroups.c | 2 +- nss/nss_db/db-netgrp.c | 2 +- nss/nss_db/db-open.c | 2 +- nss/nss_db/nss_db.h | 2 +- nss/nss_files/files-XXX.c | 2 +- nss/nss_files/files-alias.c | 2 +- nss/nss_files/files-ethers.c | 2 +- nss/nss_files/files-grp.c | 2 +- nss/nss_files/files-have_o_cloexec.c | 2 +- nss/nss_files/files-hosts.c | 2 +- nss/nss_files/files-init.c | 2 +- nss/nss_files/files-initgroups.c | 2 +- nss/nss_files/files-key.c | 2 +- nss/nss_files/files-netgrp.c | 2 +- nss/nss_files/files-network.c | 2 +- nss/nss_files/files-parse.c | 2 +- nss/nss_files/files-proto.c | 2 +- nss/nss_files/files-pwd.c | 2 +- nss/nss_files/files-rpc.c | 2 +- nss/nss_files/files-service.c | 2 +- nss/nss_files/files-sgrp.c | 2 +- nss/nss_files/files-spwd.c | 2 +- nss/nsswitch.c | 2 +- nss/nsswitch.h | 2 +- nss/proto-lookup.c | 2 +- nss/pwd-lookup.c | 2 +- nss/rpc-lookup.c | 2 +- nss/service-lookup.c | 2 +- nss/sgrp-lookup.c | 2 +- nss/spwd-lookup.c | 2 +- nss/test-digits-dots.c | 2 +- nss/test-netdb.c | 2 +- po/Makefile | 2 +- ports/sysdeps/aarch64/__longjmp.S | 2 +- ports/sysdeps/aarch64/bits/atomic.h | 2 +- ports/sysdeps/aarch64/bits/endian.h | 2 +- ports/sysdeps/aarch64/bits/fenv.h | 2 +- ports/sysdeps/aarch64/bits/link.h | 2 +- ports/sysdeps/aarch64/bits/linkmap.h | 2 +- ports/sysdeps/aarch64/bits/mathdef.h | 2 +- ports/sysdeps/aarch64/bits/setjmp.h | 2 +- ports/sysdeps/aarch64/bzero.S | 2 +- ports/sysdeps/aarch64/crti.S | 2 +- ports/sysdeps/aarch64/crtn.S | 2 +- ports/sysdeps/aarch64/dl-irel.h | 2 +- ports/sysdeps/aarch64/dl-machine.h | 2 +- ports/sysdeps/aarch64/dl-sysdep.h | 2 +- ports/sysdeps/aarch64/dl-tls.h | 2 +- ports/sysdeps/aarch64/dl-tlsdesc.S | 2 +- ports/sysdeps/aarch64/dl-tlsdesc.h | 2 +- ports/sysdeps/aarch64/dl-trampoline.S | 2 +- ports/sysdeps/aarch64/fpu/fclrexcpt.c | 2 +- ports/sysdeps/aarch64/fpu/fedisblxcpt.c | 2 +- ports/sysdeps/aarch64/fpu/feenablxcpt.c | 2 +- ports/sysdeps/aarch64/fpu/fegetenv.c | 2 +- ports/sysdeps/aarch64/fpu/fegetexcept.c | 2 +- ports/sysdeps/aarch64/fpu/fegetround.c | 2 +- ports/sysdeps/aarch64/fpu/feholdexcpt.c | 2 +- ports/sysdeps/aarch64/fpu/fesetenv.c | 2 +- ports/sysdeps/aarch64/fpu/fesetround.c | 2 +- ports/sysdeps/aarch64/fpu/feupdateenv.c | 2 +- ports/sysdeps/aarch64/fpu/fgetexcptflg.c | 2 +- ports/sysdeps/aarch64/fpu/fpu_control.h | 2 +- ports/sysdeps/aarch64/fpu/fraiseexcpt.c | 2 +- ports/sysdeps/aarch64/fpu/fsetexcptflg.c | 2 +- ports/sysdeps/aarch64/fpu/ftestexcept.c | 2 +- ports/sysdeps/aarch64/fpu/get-rounding-mode.h | 2 +- ports/sysdeps/aarch64/fpu/s_ceil.c | 2 +- ports/sysdeps/aarch64/fpu/s_ceilf.c | 2 +- ports/sysdeps/aarch64/fpu/s_floor.c | 2 +- ports/sysdeps/aarch64/fpu/s_floorf.c | 2 +- ports/sysdeps/aarch64/fpu/s_fma.c | 2 +- ports/sysdeps/aarch64/fpu/s_fmaf.c | 2 +- ports/sysdeps/aarch64/fpu/s_fmax.c | 2 +- ports/sysdeps/aarch64/fpu/s_fmaxf.c | 2 +- ports/sysdeps/aarch64/fpu/s_fmin.c | 2 +- ports/sysdeps/aarch64/fpu/s_fminf.c | 2 +- ports/sysdeps/aarch64/fpu/s_frint.c | 2 +- ports/sysdeps/aarch64/fpu/s_frintf.c | 2 +- ports/sysdeps/aarch64/fpu/s_llrint.c | 2 +- ports/sysdeps/aarch64/fpu/s_llrintf.c | 2 +- ports/sysdeps/aarch64/fpu/s_llround.c | 2 +- ports/sysdeps/aarch64/fpu/s_llroundf.c | 2 +- ports/sysdeps/aarch64/fpu/s_lrint.c | 2 +- ports/sysdeps/aarch64/fpu/s_lrintf.c | 2 +- ports/sysdeps/aarch64/fpu/s_lround.c | 2 +- ports/sysdeps/aarch64/fpu/s_lroundf.c | 2 +- ports/sysdeps/aarch64/fpu/s_nearbyint.c | 2 +- ports/sysdeps/aarch64/fpu/s_nearbyintf.c | 2 +- ports/sysdeps/aarch64/fpu/s_rint.c | 2 +- ports/sysdeps/aarch64/fpu/s_rintf.c | 2 +- ports/sysdeps/aarch64/fpu/s_round.c | 2 +- ports/sysdeps/aarch64/fpu/s_roundf.c | 2 +- ports/sysdeps/aarch64/fpu/s_trunc.c | 2 +- ports/sysdeps/aarch64/fpu/s_truncf.c | 2 +- ports/sysdeps/aarch64/jmpbuf-offsets.h | 2 +- ports/sysdeps/aarch64/jmpbuf-unwind.h | 2 +- ports/sysdeps/aarch64/ldsodefs.h | 2 +- ports/sysdeps/aarch64/libc-tls.c | 2 +- ports/sysdeps/aarch64/machine-gmon.h | 2 +- ports/sysdeps/aarch64/mcount.c | 2 +- ports/sysdeps/aarch64/memcmp.S | 2 +- ports/sysdeps/aarch64/memcpy.S | 2 +- ports/sysdeps/aarch64/memmove.S | 2 +- ports/sysdeps/aarch64/memset.S | 2 +- ports/sysdeps/aarch64/memusage.h | 2 +- ports/sysdeps/aarch64/nptl/Makefile | 2 +- ports/sysdeps/aarch64/nptl/pthread_spin_lock.c | 2 +- ports/sysdeps/aarch64/nptl/pthreaddef.h | 2 +- ports/sysdeps/aarch64/nptl/tls.h | 2 +- ports/sysdeps/aarch64/setjmp.S | 2 +- ports/sysdeps/aarch64/soft-fp/e_sqrtl.c | 2 +- ports/sysdeps/aarch64/sotruss-lib.c | 2 +- ports/sysdeps/aarch64/stackinfo.h | 2 +- ports/sysdeps/aarch64/start.S | 2 +- ports/sysdeps/aarch64/strcmp.S | 2 +- ports/sysdeps/aarch64/strlen.S | 2 +- ports/sysdeps/aarch64/strncmp.S | 2 +- ports/sysdeps/aarch64/strnlen.S | 2 +- ports/sysdeps/aarch64/sysdep.h | 2 +- ports/sysdeps/aarch64/tls-macros.h | 2 +- ports/sysdeps/aarch64/tlsdesc.c | 2 +- ports/sysdeps/aarch64/tst-audit.h | 2 +- ports/sysdeps/alpha/Makefile | 2 +- ports/sysdeps/alpha/__longjmp.S | 2 +- ports/sysdeps/alpha/_mcount.S | 2 +- ports/sysdeps/alpha/add_n.S | 2 +- ports/sysdeps/alpha/addmul_1.S | 2 +- ports/sysdeps/alpha/alphaev5/add_n.S | 2 +- ports/sysdeps/alpha/alphaev5/lshift.S | 2 +- ports/sysdeps/alpha/alphaev5/rshift.S | 2 +- ports/sysdeps/alpha/alphaev5/sub_n.S | 2 +- ports/sysdeps/alpha/alphaev6/addmul_1.S | 2 +- ports/sysdeps/alpha/alphaev6/fpu/e_sqrt.S | 2 +- ports/sysdeps/alpha/alphaev6/fpu/e_sqrtf.S | 2 +- ports/sysdeps/alpha/alphaev6/memcpy.S | 2 +- ports/sysdeps/alpha/alphaev6/memset.S | 2 +- ports/sysdeps/alpha/alphaev6/stxcpy.S | 2 +- ports/sysdeps/alpha/alphaev6/stxncpy.S | 2 +- ports/sysdeps/alpha/alphaev67/ffs.S | 2 +- ports/sysdeps/alpha/alphaev67/ffsll.S | 2 +- ports/sysdeps/alpha/alphaev67/rawmemchr.S | 2 +- ports/sysdeps/alpha/alphaev67/stpcpy.S | 2 +- ports/sysdeps/alpha/alphaev67/stpncpy.S | 2 +- ports/sysdeps/alpha/alphaev67/strcat.S | 2 +- ports/sysdeps/alpha/alphaev67/strchr.S | 2 +- ports/sysdeps/alpha/alphaev67/strlen.S | 2 +- ports/sysdeps/alpha/alphaev67/strncat.S | 2 +- ports/sysdeps/alpha/alphaev67/strrchr.S | 2 +- ports/sysdeps/alpha/bb_init_func.S | 2 +- ports/sysdeps/alpha/bits/atomic.h | 2 +- ports/sysdeps/alpha/bits/link.h | 2 +- ports/sysdeps/alpha/bits/mathdef.h | 2 +- ports/sysdeps/alpha/bits/setjmp.h | 2 +- ports/sysdeps/alpha/bzero.S | 2 +- ports/sysdeps/alpha/crti.S | 2 +- ports/sysdeps/alpha/crtn.S | 2 +- ports/sysdeps/alpha/div.S | 2 +- ports/sysdeps/alpha/div_libc.h | 2 +- ports/sysdeps/alpha/divl.S | 2 +- ports/sysdeps/alpha/divq.S | 2 +- ports/sysdeps/alpha/divqu.S | 2 +- ports/sysdeps/alpha/dl-machine.h | 2 +- ports/sysdeps/alpha/dl-procinfo.c | 2 +- ports/sysdeps/alpha/dl-procinfo.h | 2 +- ports/sysdeps/alpha/dl-sysdep.h | 2 +- ports/sysdeps/alpha/dl-tls.h | 2 +- ports/sysdeps/alpha/dl-trampoline.S | 2 +- ports/sysdeps/alpha/ffs.S | 2 +- ports/sysdeps/alpha/fpu/bits/fenv.h | 2 +- ports/sysdeps/alpha/fpu/bits/mathinline.h | 2 +- ports/sysdeps/alpha/fpu/cabsf.c | 2 +- ports/sysdeps/alpha/fpu/cargf.c | 2 +- ports/sysdeps/alpha/fpu/cfloat-compat.h | 2 +- ports/sysdeps/alpha/fpu/cimagf.c | 2 +- ports/sysdeps/alpha/fpu/conjf.c | 2 +- ports/sysdeps/alpha/fpu/crealf.c | 2 +- ports/sysdeps/alpha/fpu/e_sqrt.c | 2 +- ports/sysdeps/alpha/fpu/fclrexcpt.c | 2 +- ports/sysdeps/alpha/fpu/fedisblxcpt.c | 2 +- ports/sysdeps/alpha/fpu/feenablxcpt.c | 2 +- ports/sysdeps/alpha/fpu/fegetenv.c | 2 +- ports/sysdeps/alpha/fpu/fegetexcept.c | 2 +- ports/sysdeps/alpha/fpu/fegetround.c | 2 +- ports/sysdeps/alpha/fpu/feholdexcpt.c | 2 +- ports/sysdeps/alpha/fpu/fenv_libc.h | 2 +- ports/sysdeps/alpha/fpu/fesetenv.c | 2 +- ports/sysdeps/alpha/fpu/fesetround.c | 2 +- ports/sysdeps/alpha/fpu/feupdateenv.c | 2 +- ports/sysdeps/alpha/fpu/fgetexcptflg.c | 2 +- ports/sysdeps/alpha/fpu/fpu_control.h | 2 +- ports/sysdeps/alpha/fpu/fsetexcptflg.c | 2 +- ports/sysdeps/alpha/fpu/ftestexcept.c | 2 +- ports/sysdeps/alpha/fpu/get-rounding-mode.h | 2 +- ports/sysdeps/alpha/fpu/s_cacosf.c | 2 +- ports/sysdeps/alpha/fpu/s_cacoshf.c | 2 +- ports/sysdeps/alpha/fpu/s_casinf.c | 2 +- ports/sysdeps/alpha/fpu/s_casinhf.c | 2 +- ports/sysdeps/alpha/fpu/s_catanf.c | 2 +- ports/sysdeps/alpha/fpu/s_catanhf.c | 2 +- ports/sysdeps/alpha/fpu/s_ccosf.c | 2 +- ports/sysdeps/alpha/fpu/s_ccoshf.c | 2 +- ports/sysdeps/alpha/fpu/s_ceil.c | 2 +- ports/sysdeps/alpha/fpu/s_ceilf.c | 2 +- ports/sysdeps/alpha/fpu/s_cexpf.c | 2 +- ports/sysdeps/alpha/fpu/s_clog10f.c | 2 +- ports/sysdeps/alpha/fpu/s_clogf.c | 2 +- ports/sysdeps/alpha/fpu/s_copysign.c | 2 +- ports/sysdeps/alpha/fpu/s_copysignf.c | 2 +- ports/sysdeps/alpha/fpu/s_cpowf.c | 2 +- ports/sysdeps/alpha/fpu/s_cprojf.c | 2 +- ports/sysdeps/alpha/fpu/s_csinf.c | 2 +- ports/sysdeps/alpha/fpu/s_csinhf.c | 2 +- ports/sysdeps/alpha/fpu/s_csqrtf.c | 2 +- ports/sysdeps/alpha/fpu/s_ctanf.c | 2 +- ports/sysdeps/alpha/fpu/s_ctanhf.c | 2 +- ports/sysdeps/alpha/fpu/s_fabs.c | 2 +- ports/sysdeps/alpha/fpu/s_fabsf.c | 2 +- ports/sysdeps/alpha/fpu/s_floor.c | 2 +- ports/sysdeps/alpha/fpu/s_floorf.c | 2 +- ports/sysdeps/alpha/fpu/s_fmax.S | 2 +- ports/sysdeps/alpha/fpu/s_fmin.S | 2 +- ports/sysdeps/alpha/fpu/s_isnan.c | 2 +- ports/sysdeps/alpha/fpu/s_lrint.c | 2 +- ports/sysdeps/alpha/fpu/s_lrintf.c | 2 +- ports/sysdeps/alpha/fpu/s_lround.c | 2 +- ports/sysdeps/alpha/fpu/s_lroundf.c | 2 +- ports/sysdeps/alpha/fpu/s_nearbyint.c | 2 +- ports/sysdeps/alpha/fpu/s_nearbyintf.c | 2 +- ports/sysdeps/alpha/fpu/s_rint.c | 2 +- ports/sysdeps/alpha/fpu/s_rintf.c | 2 +- ports/sysdeps/alpha/fpu/s_round.c | 2 +- ports/sysdeps/alpha/fpu/s_roundf.c | 2 +- ports/sysdeps/alpha/fpu/s_trunc.c | 2 +- ports/sysdeps/alpha/fpu/s_truncf.c | 2 +- ports/sysdeps/alpha/gccframe.h | 2 +- ports/sysdeps/alpha/hp-timing.h | 2 +- ports/sysdeps/alpha/htonl.S | 2 +- ports/sysdeps/alpha/htons.S | 2 +- ports/sysdeps/alpha/jmpbuf-offsets.h | 2 +- ports/sysdeps/alpha/jmpbuf-unwind.h | 2 +- ports/sysdeps/alpha/ldiv.S | 2 +- ports/sysdeps/alpha/ldsodefs.h | 2 +- ports/sysdeps/alpha/libc-tls.c | 2 +- ports/sysdeps/alpha/lshift.S | 2 +- ports/sysdeps/alpha/machine-gmon.h | 2 +- ports/sysdeps/alpha/memchr.c | 2 +- ports/sysdeps/alpha/memset.S | 2 +- ports/sysdeps/alpha/memusage.h | 2 +- ports/sysdeps/alpha/mul_1.S | 2 +- ports/sysdeps/alpha/nptl/Makefile | 2 +- ports/sysdeps/alpha/nptl/pthread_spin_lock.S | 2 +- ports/sysdeps/alpha/nptl/pthread_spin_trylock.S | 2 +- ports/sysdeps/alpha/nptl/pthreaddef.h | 2 +- ports/sysdeps/alpha/nptl/tls.h | 2 +- ports/sysdeps/alpha/nscd-types.h | 2 +- ports/sysdeps/alpha/rawmemchr.S | 2 +- ports/sysdeps/alpha/reml.S | 2 +- ports/sysdeps/alpha/remq.S | 2 +- ports/sysdeps/alpha/remqu.S | 2 +- ports/sysdeps/alpha/rshift.S | 2 +- ports/sysdeps/alpha/setjmp.S | 2 +- ports/sysdeps/alpha/soft-fp/e_sqrtl.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_add.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_cmp.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_cmpe.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_cvtqux.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_cvtqx.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_cvttx.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_cvtxq.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_cvtxt.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_div.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_mul.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_nintxq.c | 2 +- ports/sysdeps/alpha/soft-fp/ots_sub.c | 2 +- ports/sysdeps/alpha/soft-fp/sfp-machine.h | 2 +- ports/sysdeps/alpha/sotruss-lib.c | 2 +- ports/sysdeps/alpha/stackinfo.h | 2 +- ports/sysdeps/alpha/start.S | 2 +- ports/sysdeps/alpha/stpcpy.S | 2 +- ports/sysdeps/alpha/stpncpy.S | 2 +- ports/sysdeps/alpha/strcat.S | 2 +- ports/sysdeps/alpha/strchr.S | 2 +- ports/sysdeps/alpha/strcmp.S | 2 +- ports/sysdeps/alpha/strcpy.S | 2 +- ports/sysdeps/alpha/strlen.S | 2 +- ports/sysdeps/alpha/strncat.S | 2 +- ports/sysdeps/alpha/strncmp.S | 2 +- ports/sysdeps/alpha/strncpy.S | 2 +- ports/sysdeps/alpha/strrchr.S | 2 +- ports/sysdeps/alpha/stxcpy.S | 2 +- ports/sysdeps/alpha/stxncpy.S | 2 +- ports/sysdeps/alpha/sub_n.S | 2 +- ports/sysdeps/alpha/submul_1.S | 2 +- ports/sysdeps/alpha/tst-audit.h | 2 +- ports/sysdeps/alpha/udiv_qrnnd.S | 2 +- ports/sysdeps/am33/__longjmp.S | 2 +- ports/sysdeps/am33/atomicity.h | 2 +- ports/sysdeps/am33/bits/setjmp.h | 2 +- ports/sysdeps/am33/dl-machine.h | 2 +- ports/sysdeps/am33/elf/start.S | 2 +- ports/sysdeps/am33/fpu/bits/fenv.h | 2 +- ports/sysdeps/am33/fpu/fclrexcpt.c | 2 +- ports/sysdeps/am33/fpu/fedisblxcpt.c | 2 +- ports/sysdeps/am33/fpu/feenablxcpt.c | 2 +- ports/sysdeps/am33/fpu/fegetenv.c | 2 +- ports/sysdeps/am33/fpu/fegetexcept.c | 2 +- ports/sysdeps/am33/fpu/fegetround.c | 2 +- ports/sysdeps/am33/fpu/feholdexcpt.c | 2 +- ports/sysdeps/am33/fpu/fenv_libc.h | 2 +- ports/sysdeps/am33/fpu/fesetenv.c | 2 +- ports/sysdeps/am33/fpu/fesetround.c | 2 +- ports/sysdeps/am33/fpu/feupdateenv.c | 2 +- ports/sysdeps/am33/fpu/fgetexcptflg.c | 2 +- ports/sysdeps/am33/fpu/fpu_control.h | 2 +- ports/sysdeps/am33/fpu/fraiseexcpt.c | 2 +- ports/sysdeps/am33/fpu/fsetexcptflg.c | 2 +- ports/sysdeps/am33/fpu/ftestexcept.c | 2 +- ports/sysdeps/am33/jmpbuf-offsets.h | 2 +- ports/sysdeps/am33/jmpbuf-unwind.h | 2 +- ports/sysdeps/am33/linuxthreads/pspinlock.c | 2 +- ports/sysdeps/am33/linuxthreads/pt-machine.h | 2 +- ports/sysdeps/am33/memusage.h | 2 +- ports/sysdeps/am33/setjmp.S | 2 +- ports/sysdeps/am33/stackinfo.h | 2 +- ports/sysdeps/am33/sys/ucontext.h | 2 +- ports/sysdeps/am33/sysdep.h | 2 +- ports/sysdeps/arm/__longjmp.S | 2 +- ports/sysdeps/arm/add_n.S | 2 +- ports/sysdeps/arm/addmul_1.S | 2 +- ports/sysdeps/arm/aeabi_assert.c | 2 +- ports/sysdeps/arm/aeabi_atexit.c | 2 +- ports/sysdeps/arm/aeabi_errno_addr.c | 2 +- ports/sysdeps/arm/aeabi_lcsts.c | 2 +- ports/sysdeps/arm/aeabi_localeconv.c | 2 +- ports/sysdeps/arm/aeabi_math.c | 2 +- ports/sysdeps/arm/aeabi_mb_cur_max.c | 2 +- ports/sysdeps/arm/aeabi_memclr.c | 2 +- ports/sysdeps/arm/aeabi_memcpy.c | 2 +- ports/sysdeps/arm/aeabi_memmove.c | 2 +- ports/sysdeps/arm/aeabi_memset.c | 2 +- ports/sysdeps/arm/aeabi_sighandlers.S | 2 +- ports/sysdeps/arm/aeabi_unwind_cpp_pr1.c | 2 +- ports/sysdeps/arm/arm-features.h | 2 +- ports/sysdeps/arm/arm-mcount.S | 2 +- ports/sysdeps/arm/armv6/rawmemchr.S | 2 +- ports/sysdeps/arm/armv6/strchr.S | 2 +- ports/sysdeps/arm/armv6/strcpy.S | 2 +- ports/sysdeps/arm/armv6/strlen.S | 2 +- ports/sysdeps/arm/armv6/strrchr.S | 2 +- ports/sysdeps/arm/armv6t2/ffs.S | 2 +- ports/sysdeps/arm/armv6t2/ffsll.S | 2 +- ports/sysdeps/arm/armv6t2/memchr.S | 2 +- ports/sysdeps/arm/armv6t2/strlen.S | 2 +- ports/sysdeps/arm/armv7/multiarch/ifunc-impl-list.c | 2 +- ports/sysdeps/arm/armv7/multiarch/memcpy.S | 2 +- ports/sysdeps/arm/armv7/multiarch/memcpy_impl.S | 2 +- ports/sysdeps/arm/backtrace.c | 2 +- ports/sysdeps/arm/bits/atomic.h | 2 +- ports/sysdeps/arm/bits/fenv.h | 2 +- ports/sysdeps/arm/bits/link.h | 2 +- ports/sysdeps/arm/bits/mathdef.h | 2 +- ports/sysdeps/arm/bits/setjmp.h | 2 +- ports/sysdeps/arm/bsd-_setjmp.S | 2 +- ports/sysdeps/arm/bsd-setjmp.S | 2 +- ports/sysdeps/arm/crti.S | 2 +- ports/sysdeps/arm/crtn.S | 2 +- ports/sysdeps/arm/dl-irel.h | 2 +- ports/sysdeps/arm/dl-lookupcfg.h | 2 +- ports/sysdeps/arm/dl-machine.h | 2 +- ports/sysdeps/arm/dl-sysdep.h | 2 +- ports/sysdeps/arm/dl-tls.h | 2 +- ports/sysdeps/arm/dl-tlsdesc.S | 2 +- ports/sysdeps/arm/dl-tlsdesc.h | 2 +- ports/sysdeps/arm/dl-trampoline.S | 2 +- ports/sysdeps/arm/fclrexcpt.c | 2 +- ports/sysdeps/arm/fedisblxcpt.c | 2 +- ports/sysdeps/arm/feenablxcpt.c | 2 +- ports/sysdeps/arm/fegetenv.c | 2 +- ports/sysdeps/arm/fegetexcept.c | 2 +- ports/sysdeps/arm/fegetround.c | 2 +- ports/sysdeps/arm/feholdexcpt.c | 2 +- ports/sysdeps/arm/fesetenv.c | 2 +- ports/sysdeps/arm/fesetround.c | 2 +- ports/sysdeps/arm/feupdateenv.c | 2 +- ports/sysdeps/arm/fgetexcptflg.c | 2 +- ports/sysdeps/arm/find_exidx.c | 2 +- ports/sysdeps/arm/fpu_control.h | 2 +- ports/sysdeps/arm/fraiseexcpt.c | 2 +- ports/sysdeps/arm/frame.h | 2 +- ports/sysdeps/arm/fsetexcptflg.c | 2 +- ports/sysdeps/arm/ftestexcept.c | 2 +- ports/sysdeps/arm/gccframe.h | 2 +- ports/sysdeps/arm/get-rounding-mode.h | 2 +- ports/sysdeps/arm/gmp-mparam.h | 2 +- ports/sysdeps/arm/include/bits/setjmp.h | 2 +- ports/sysdeps/arm/jmpbuf-unwind.h | 2 +- ports/sysdeps/arm/ldsodefs.h | 2 +- ports/sysdeps/arm/libc-tls.c | 2 +- ports/sysdeps/arm/machine-gmon.h | 2 +- ports/sysdeps/arm/math-tests.h | 2 +- ports/sysdeps/arm/memcpy.S | 2 +- ports/sysdeps/arm/memmove.S | 2 +- ports/sysdeps/arm/memset.S | 2 +- ports/sysdeps/arm/memusage.h | 2 +- ports/sysdeps/arm/nptl/Makefile | 2 +- ports/sysdeps/arm/nptl/pthread_spin_lock.c | 2 +- ports/sysdeps/arm/nptl/pthreaddef.h | 2 +- ports/sysdeps/arm/nptl/tls.h | 2 +- ports/sysdeps/arm/setfpucw.c | 2 +- ports/sysdeps/arm/setjmp.S | 2 +- ports/sysdeps/arm/sotruss-lib.c | 2 +- ports/sysdeps/arm/stackinfo.h | 2 +- ports/sysdeps/arm/start.S | 2 +- ports/sysdeps/arm/strlen.S | 2 +- ports/sysdeps/arm/submul_1.S | 2 +- ports/sysdeps/arm/sys/ucontext.h | 2 +- ports/sysdeps/arm/sysdep.h | 2 +- ports/sysdeps/arm/tlsdesc.c | 2 +- ports/sysdeps/arm/tst-audit.h | 2 +- ports/sysdeps/arm/unwind-dw2-fde-glibc.c | 2 +- ports/sysdeps/hppa/Makefile | 2 +- ports/sysdeps/hppa/__longjmp.c | 2 +- ports/sysdeps/hppa/add_n.S | 2 +- ports/sysdeps/hppa/bits/link.h | 2 +- ports/sysdeps/hppa/bits/setjmp.h | 2 +- ports/sysdeps/hppa/bsd-_setjmp.S | 2 +- ports/sysdeps/hppa/bsd-setjmp.S | 2 +- ports/sysdeps/hppa/crti.S | 2 +- ports/sysdeps/hppa/crtn.S | 2 +- ports/sysdeps/hppa/dl-fptr.c | 2 +- ports/sysdeps/hppa/dl-fptr.h | 2 +- ports/sysdeps/hppa/dl-irel.h | 2 +- ports/sysdeps/hppa/dl-lookupcfg.h | 2 +- ports/sysdeps/hppa/dl-machine.h | 2 +- ports/sysdeps/hppa/dl-symaddr.c | 2 +- ports/sysdeps/hppa/dl-tls.h | 2 +- ports/sysdeps/hppa/dl-trampoline.S | 2 +- ports/sysdeps/hppa/fpu/bits/fenv.h | 2 +- ports/sysdeps/hppa/fpu/bits/mathdef.h | 2 +- ports/sysdeps/hppa/fpu/fclrexcpt.c | 2 +- ports/sysdeps/hppa/fpu/fedisblxcpt.c | 2 +- ports/sysdeps/hppa/fpu/feenablxcpt.c | 2 +- ports/sysdeps/hppa/fpu/fegetenv.c | 2 +- ports/sysdeps/hppa/fpu/fegetexcept.c | 2 +- ports/sysdeps/hppa/fpu/fegetround.c | 2 +- ports/sysdeps/hppa/fpu/feholdexcpt.c | 2 +- ports/sysdeps/hppa/fpu/fesetenv.c | 2 +- ports/sysdeps/hppa/fpu/fesetround.c | 2 +- ports/sysdeps/hppa/fpu/feupdateenv.c | 2 +- ports/sysdeps/hppa/fpu/fgetexcptflg.c | 2 +- ports/sysdeps/hppa/fpu/fpu_control.h | 2 +- ports/sysdeps/hppa/fpu/fraiseexcpt.c | 2 +- ports/sysdeps/hppa/fpu/fsetexcptflg.c | 2 +- ports/sysdeps/hppa/fpu/ftestexcept.c | 2 +- ports/sysdeps/hppa/frame.h | 2 +- ports/sysdeps/hppa/gccframe.h | 2 +- ports/sysdeps/hppa/get-rounding-mode.h | 2 +- ports/sysdeps/hppa/hppa1.1/addmul_1.S | 2 +- ports/sysdeps/hppa/hppa1.1/mul_1.S | 2 +- ports/sysdeps/hppa/hppa1.1/s_signbit.c | 2 +- ports/sysdeps/hppa/hppa1.1/submul_1.S | 2 +- ports/sysdeps/hppa/hppa1.1/udiv_qrnnd.S | 2 +- ports/sysdeps/hppa/jmpbuf-offsets.h | 2 +- ports/sysdeps/hppa/jmpbuf-unwind.h | 2 +- ports/sysdeps/hppa/ldsodefs.h | 2 +- ports/sysdeps/hppa/libc-tls.c | 2 +- ports/sysdeps/hppa/libgcc-compat.c | 2 +- ports/sysdeps/hppa/lshift.S | 2 +- ports/sysdeps/hppa/machine-gmon.h | 2 +- ports/sysdeps/hppa/math_private.h | 2 +- ports/sysdeps/hppa/memusage.h | 2 +- ports/sysdeps/hppa/nptl/Makefile | 2 +- ports/sysdeps/hppa/nptl/jmpbuf-unwind.h | 2 +- ports/sysdeps/hppa/nptl/pthread_spin_init.c | 2 +- ports/sysdeps/hppa/nptl/pthread_spin_lock.c | 2 +- ports/sysdeps/hppa/nptl/pthread_spin_unlock.c | 2 +- ports/sysdeps/hppa/nptl/pthreaddef.h | 2 +- ports/sysdeps/hppa/nptl/tls.h | 2 +- ports/sysdeps/hppa/nptl/tst-oddstacklimit.c | 2 +- ports/sysdeps/hppa/rshift.S | 2 +- ports/sysdeps/hppa/setjmp.S | 2 +- ports/sysdeps/hppa/stackinfo.h | 2 +- ports/sysdeps/hppa/start.S | 2 +- ports/sysdeps/hppa/sub_n.S | 2 +- ports/sysdeps/hppa/sysdep.h | 2 +- ports/sysdeps/hppa/tst-audit.h | 2 +- ports/sysdeps/hppa/udiv_qrnnd.S | 2 +- ports/sysdeps/ia64/_mcount.S | 2 +- ports/sysdeps/ia64/bits/atomic.h | 2 +- ports/sysdeps/ia64/bits/byteswap-16.h | 2 +- ports/sysdeps/ia64/bits/byteswap.h | 2 +- ports/sysdeps/ia64/bits/fenv.h | 2 +- ports/sysdeps/ia64/bits/huge_vall.h | 2 +- ports/sysdeps/ia64/bits/link.h | 2 +- ports/sysdeps/ia64/bits/mathdef.h | 2 +- ports/sysdeps/ia64/bits/xtitypes.h | 2 +- ports/sysdeps/ia64/bzero.S | 2 +- ports/sysdeps/ia64/crti.S | 2 +- ports/sysdeps/ia64/crtn.S | 2 +- ports/sysdeps/ia64/dl-dtprocnum.h | 2 +- ports/sysdeps/ia64/dl-fptr.h | 2 +- ports/sysdeps/ia64/dl-lookupcfg.h | 2 +- ports/sysdeps/ia64/dl-machine.h | 2 +- ports/sysdeps/ia64/dl-sysdep.h | 2 +- ports/sysdeps/ia64/dl-tls.h | 2 +- ports/sysdeps/ia64/dl-trampoline.S | 2 +- ports/sysdeps/ia64/fpu/bits/math-finite.h | 2 +- ports/sysdeps/ia64/fpu/bits/mathinline.h | 2 +- ports/sysdeps/ia64/fpu/fclrexcpt.c | 2 +- ports/sysdeps/ia64/fpu/fedisblxcpt.c | 2 +- ports/sysdeps/ia64/fpu/feenablxcpt.c | 2 +- ports/sysdeps/ia64/fpu/fegetenv.c | 2 +- ports/sysdeps/ia64/fpu/fegetexcept.c | 2 +- ports/sysdeps/ia64/fpu/fegetround.c | 2 +- ports/sysdeps/ia64/fpu/feholdexcpt.c | 2 +- ports/sysdeps/ia64/fpu/fesetenv.c | 2 +- ports/sysdeps/ia64/fpu/fesetround.c | 2 +- ports/sysdeps/ia64/fpu/feupdateenv.c | 2 +- ports/sysdeps/ia64/fpu/fgetexcptflg.c | 2 +- ports/sysdeps/ia64/fpu/fraiseexcpt.c | 2 +- ports/sysdeps/ia64/fpu/fsetexcptflg.c | 2 +- ports/sysdeps/ia64/fpu/ftestexcept.c | 2 +- ports/sysdeps/ia64/fpu/get-rounding-mode.h | 2 +- ports/sysdeps/ia64/fpu/printf_fphex.c | 2 +- ports/sysdeps/ia64/fpu/s_copysign.S | 2 +- ports/sysdeps/ia64/fpu/s_finite.S | 2 +- ports/sysdeps/ia64/fpu/s_fpclassify.S | 2 +- ports/sysdeps/ia64/fpu/s_isinf.S | 2 +- ports/sysdeps/ia64/fpu/s_isnan.S | 2 +- ports/sysdeps/ia64/fpu/s_signbit.S | 2 +- ports/sysdeps/ia64/gccframe.h | 2 +- ports/sysdeps/ia64/hp-timing.c | 2 +- ports/sysdeps/ia64/hp-timing.h | 2 +- ports/sysdeps/ia64/htonl.S | 2 +- ports/sysdeps/ia64/htons.S | 2 +- ports/sysdeps/ia64/ieee754.h | 2 +- ports/sysdeps/ia64/jmpbuf-unwind.h | 2 +- ports/sysdeps/ia64/ldsodefs.h | 2 +- ports/sysdeps/ia64/libc-tls.c | 2 +- ports/sysdeps/ia64/machine-gmon.h | 2 +- ports/sysdeps/ia64/memccpy.S | 2 +- ports/sysdeps/ia64/memchr.S | 2 +- ports/sysdeps/ia64/memcmp.S | 2 +- ports/sysdeps/ia64/memcpy.S | 2 +- ports/sysdeps/ia64/memmove.S | 2 +- ports/sysdeps/ia64/memset.S | 2 +- ports/sysdeps/ia64/memusage.h | 2 +- ports/sysdeps/ia64/nptl/Makefile | 2 +- ports/sysdeps/ia64/nptl/pthread_spin_lock.c | 2 +- ports/sysdeps/ia64/nptl/pthread_spin_trylock.c | 2 +- ports/sysdeps/ia64/nptl/pthread_spin_unlock.c | 2 +- ports/sysdeps/ia64/nptl/pthreaddef.h | 2 +- ports/sysdeps/ia64/nptl/tls.h | 2 +- ports/sysdeps/ia64/sched_cpucount.c | 2 +- ports/sysdeps/ia64/softpipe.h | 2 +- ports/sysdeps/ia64/sotruss-lib.c | 2 +- ports/sysdeps/ia64/stackinfo.h | 2 +- ports/sysdeps/ia64/start.S | 2 +- ports/sysdeps/ia64/strcat.c | 2 +- ports/sysdeps/ia64/strchr.S | 2 +- ports/sysdeps/ia64/strcmp.S | 2 +- ports/sysdeps/ia64/strcpy.S | 2 +- ports/sysdeps/ia64/strlen.S | 2 +- ports/sysdeps/ia64/strncmp.S | 2 +- ports/sysdeps/ia64/strncpy.S | 2 +- ports/sysdeps/ia64/sysdep.h | 2 +- ports/sysdeps/ia64/tst-audit.h | 2 +- ports/sysdeps/m68k/Makefile | 2 +- ports/sysdeps/m68k/__longjmp.c | 2 +- ports/sysdeps/m68k/asm-syntax.h | 2 +- ports/sysdeps/m68k/backtrace.c | 2 +- ports/sysdeps/m68k/bits/byteswap.h | 2 +- ports/sysdeps/m68k/bits/link.h | 2 +- ports/sysdeps/m68k/bits/setjmp.h | 2 +- ports/sysdeps/m68k/bsd-_setjmp.c | 2 +- ports/sysdeps/m68k/bsd-setjmp.c | 2 +- ports/sysdeps/m68k/coldfire/bits/atomic.h | 2 +- ports/sysdeps/m68k/coldfire/fpu/bits/mathinline.h | 2 +- ports/sysdeps/m68k/coldfire/fpu/e_sqrt.c | 2 +- ports/sysdeps/m68k/coldfire/fpu/e_sqrtf.c | 2 +- ports/sysdeps/m68k/coldfire/fpu/fraiseexcpt.c | 2 +- ports/sysdeps/m68k/coldfire/fpu/s_fabs.c | 2 +- ports/sysdeps/m68k/coldfire/fpu/s_fabsf.c | 2 +- ports/sysdeps/m68k/coldfire/fpu/s_lrint.c | 2 +- ports/sysdeps/m68k/coldfire/fpu/s_lrintf.c | 2 +- ports/sysdeps/m68k/coldfire/fpu/s_rint.c | 2 +- ports/sysdeps/m68k/coldfire/fpu/s_rintf.c | 2 +- ports/sysdeps/m68k/coldfire/sysdep.h | 2 +- ports/sysdeps/m68k/crti.S | 2 +- ports/sysdeps/m68k/crtn.S | 2 +- ports/sysdeps/m68k/dl-machine.h | 2 +- ports/sysdeps/m68k/dl-tls.h | 2 +- ports/sysdeps/m68k/dl-trampoline.S | 2 +- ports/sysdeps/m68k/ffs.c | 2 +- ports/sysdeps/m68k/fpu/bits/fenv.h | 2 +- ports/sysdeps/m68k/fpu/fclrexcpt.c | 2 +- ports/sysdeps/m68k/fpu/fedisblxcpt.c | 2 +- ports/sysdeps/m68k/fpu/feenablxcpt.c | 2 +- ports/sysdeps/m68k/fpu/fegetenv.c | 2 +- ports/sysdeps/m68k/fpu/fegetexcept.c | 2 +- ports/sysdeps/m68k/fpu/fegetround.c | 2 +- ports/sysdeps/m68k/fpu/feholdexcpt.c | 2 +- ports/sysdeps/m68k/fpu/fesetenv.c | 2 +- ports/sysdeps/m68k/fpu/fesetround.c | 2 +- ports/sysdeps/m68k/fpu/feupdateenv.c | 2 +- ports/sysdeps/m68k/fpu/fgetexcptflg.c | 2 +- ports/sysdeps/m68k/fpu/fsetexcptflg.c | 2 +- ports/sysdeps/m68k/fpu/ftestexcept.c | 2 +- ports/sysdeps/m68k/fpu_control.h | 2 +- ports/sysdeps/m68k/gccframe.h | 2 +- ports/sysdeps/m68k/jmpbuf-unwind.h | 2 +- ports/sysdeps/m68k/ldsodefs.h | 2 +- ports/sysdeps/m68k/libc-tls.c | 2 +- ports/sysdeps/m68k/m680x0/add_n.S | 2 +- ports/sysdeps/m68k/m680x0/bits/huge_vall.h | 2 +- ports/sysdeps/m68k/m680x0/bits/mathdef.h | 2 +- ports/sysdeps/m68k/m680x0/fpu/bits/mathinline.h | 2 +- ports/sysdeps/m68k/m680x0/fpu/e_acos.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/e_atan2.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/e_fmod.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/e_ilogb.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/e_pow.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/e_scalb.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/fraiseexcpt.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/mathimpl.h | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_atan.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_ccosh.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_cexp.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_csin.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_csinh.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_expm1.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_frexp.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_frexpl.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_isinf.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_llrint.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_llrintf.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_llrintl.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_lrint.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_modf.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_remquo.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_scalbn.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_sin.c | 2 +- ports/sysdeps/m68k/m680x0/fpu/s_sincos.c | 2 +- ports/sysdeps/m68k/m680x0/lshift.S | 2 +- ports/sysdeps/m68k/m680x0/m68020/addmul_1.S | 2 +- ports/sysdeps/m68k/m680x0/m68020/bits/atomic.h | 2 +- ports/sysdeps/m68k/m680x0/m68020/bits/string.h | 2 +- ports/sysdeps/m68k/m680x0/m68020/mul_1.S | 2 +- ports/sysdeps/m68k/m680x0/m68020/submul_1.S | 2 +- ports/sysdeps/m68k/m680x0/rshift.S | 2 +- ports/sysdeps/m68k/m680x0/sub_n.S | 2 +- ports/sysdeps/m68k/m680x0/sysdep.h | 2 +- ports/sysdeps/m68k/memchr.S | 2 +- ports/sysdeps/m68k/memcopy.h | 2 +- ports/sysdeps/m68k/memusage.h | 2 +- ports/sysdeps/m68k/nptl/Makefile | 2 +- ports/sysdeps/m68k/nptl/pthread_spin_lock.c | 2 +- ports/sysdeps/m68k/nptl/pthreaddef.h | 2 +- ports/sysdeps/m68k/nptl/tls.h | 2 +- ports/sysdeps/m68k/rawmemchr.S | 2 +- ports/sysdeps/m68k/setjmp.c | 2 +- ports/sysdeps/m68k/sotruss-lib.c | 2 +- ports/sysdeps/m68k/stackinfo.h | 2 +- ports/sysdeps/m68k/start.S | 2 +- ports/sysdeps/m68k/strchr.S | 2 +- ports/sysdeps/m68k/strchrnul.S | 2 +- ports/sysdeps/m68k/sys/ucontext.h | 2 +- ports/sysdeps/m68k/sysdep.h | 2 +- ports/sysdeps/m68k/tls-macros.h | 2 +- ports/sysdeps/m68k/tst-audit.h | 2 +- ports/sysdeps/m68k/wcpcpy.c | 2 +- ports/sysdeps/m68k/wcpcpy_chk.c | 2 +- ports/sysdeps/microblaze/__longjmp.S | 2 +- ports/sysdeps/microblaze/_mcount.S | 2 +- ports/sysdeps/microblaze/asm-syntax.h | 2 +- ports/sysdeps/microblaze/backtrace.c | 2 +- ports/sysdeps/microblaze/backtrace_linux.c | 2 +- ports/sysdeps/microblaze/bits/atomic.h | 2 +- ports/sysdeps/microblaze/bits/endian.h | 2 +- ports/sysdeps/microblaze/bits/fenv.h | 2 +- ports/sysdeps/microblaze/bits/link.h | 2 +- ports/sysdeps/microblaze/bits/setjmp.h | 2 +- ports/sysdeps/microblaze/bsd-_setjmp.S | 2 +- ports/sysdeps/microblaze/bsd-setjmp.S | 2 +- ports/sysdeps/microblaze/crti.S | 2 +- ports/sysdeps/microblaze/crtn.S | 2 +- ports/sysdeps/microblaze/dl-machine.h | 2 +- ports/sysdeps/microblaze/dl-tls.h | 2 +- ports/sysdeps/microblaze/dl-trampoline.S | 2 +- ports/sysdeps/microblaze/fegetround.c | 2 +- ports/sysdeps/microblaze/fesetround.c | 2 +- ports/sysdeps/microblaze/gccframe.h | 2 +- ports/sysdeps/microblaze/jmpbuf-unwind.h | 2 +- ports/sysdeps/microblaze/ldsodefs.h | 2 +- ports/sysdeps/microblaze/libc-tls.c | 2 +- ports/sysdeps/microblaze/machine-gmon.h | 2 +- ports/sysdeps/microblaze/memusage.h | 2 +- ports/sysdeps/microblaze/nptl/Makefile | 2 +- ports/sysdeps/microblaze/nptl/pthread_spin_lock.c | 2 +- ports/sysdeps/microblaze/nptl/pthreaddef.h | 2 +- ports/sysdeps/microblaze/nptl/tls.h | 2 +- ports/sysdeps/microblaze/setjmp.S | 2 +- ports/sysdeps/microblaze/sotruss-lib.c | 2 +- ports/sysdeps/microblaze/stackinfo.h | 2 +- ports/sysdeps/microblaze/start.S | 2 +- ports/sysdeps/microblaze/sysdep.h | 2 +- ports/sysdeps/microblaze/tls-macros.h | 2 +- ports/sysdeps/microblaze/tst-audit.h | 2 +- ports/sysdeps/mips/__longjmp.c | 2 +- ports/sysdeps/mips/add_n.S | 2 +- ports/sysdeps/mips/addmul_1.S | 2 +- ports/sysdeps/mips/bits/atomic.h | 2 +- ports/sysdeps/mips/bits/dlfcn.h | 2 +- ports/sysdeps/mips/bits/fenv.h | 2 +- ports/sysdeps/mips/bits/ipctypes.h | 2 +- ports/sysdeps/mips/bits/link.h | 2 +- ports/sysdeps/mips/bits/mathdef.h | 2 +- ports/sysdeps/mips/bits/nan.h | 2 +- ports/sysdeps/mips/bits/setjmp.h | 2 +- ports/sysdeps/mips/bits/wordsize.h | 2 +- ports/sysdeps/mips/bsd-_setjmp.S | 2 +- ports/sysdeps/mips/bsd-setjmp.S | 2 +- ports/sysdeps/mips/dl-dtprocnum.h | 2 +- ports/sysdeps/mips/dl-lookup.c | 2 +- ports/sysdeps/mips/dl-machine.h | 2 +- ports/sysdeps/mips/dl-procinfo.c | 2 +- ports/sysdeps/mips/dl-procinfo.h | 2 +- ports/sysdeps/mips/dl-tls.h | 2 +- ports/sysdeps/mips/dl-trampoline.c | 2 +- ports/sysdeps/mips/fpregdef.h | 2 +- ports/sysdeps/mips/fpu/e_sqrt.c | 2 +- ports/sysdeps/mips/fpu/e_sqrtf.c | 2 +- ports/sysdeps/mips/fpu/fclrexcpt.c | 2 +- ports/sysdeps/mips/fpu/fedisblxcpt.c | 2 +- ports/sysdeps/mips/fpu/feenablxcpt.c | 2 +- ports/sysdeps/mips/fpu/fegetenv.c | 2 +- ports/sysdeps/mips/fpu/fegetexcept.c | 2 +- ports/sysdeps/mips/fpu/fegetround.c | 2 +- ports/sysdeps/mips/fpu/feholdexcpt.c | 2 +- ports/sysdeps/mips/fpu/fenv_libc.h | 2 +- ports/sysdeps/mips/fpu/fesetenv.c | 2 +- ports/sysdeps/mips/fpu/fesetround.c | 2 +- ports/sysdeps/mips/fpu/feupdateenv.c | 2 +- ports/sysdeps/mips/fpu/fgetexcptflg.c | 2 +- ports/sysdeps/mips/fpu/fraiseexcpt.c | 2 +- ports/sysdeps/mips/fpu/fsetexcptflg.c | 2 +- ports/sysdeps/mips/fpu/ftestexcept.c | 2 +- ports/sysdeps/mips/fpu_control.h | 2 +- ports/sysdeps/mips/gccframe.h | 2 +- ports/sysdeps/mips/ieee754/ieee754.h | 2 +- ports/sysdeps/mips/include/sys/asm.h | 2 +- ports/sysdeps/mips/jmpbuf-unwind.h | 2 +- ports/sysdeps/mips/ldsodefs.h | 2 +- ports/sysdeps/mips/libc-tls.c | 2 +- ports/sysdeps/mips/lshift.S | 2 +- ports/sysdeps/mips/machine-gmon.h | 2 +- ports/sysdeps/mips/math-tests.h | 2 +- ports/sysdeps/mips/math_private.h | 2 +- ports/sysdeps/mips/memcpy.S | 2 +- ports/sysdeps/mips/memset.S | 2 +- ports/sysdeps/mips/memusage.h | 2 +- ports/sysdeps/mips/mips32/crti.S | 2 +- ports/sysdeps/mips/mips32/crtn.S | 2 +- ports/sysdeps/mips/mips32/fpu/fpu_control.c | 2 +- ports/sysdeps/mips/mips64/__longjmp.c | 2 +- ports/sysdeps/mips/mips64/add_n.S | 2 +- ports/sysdeps/mips/mips64/addmul_1.S | 2 +- ports/sysdeps/mips/mips64/bsd-_setjmp.S | 2 +- ports/sysdeps/mips/mips64/bsd-setjmp.S | 2 +- ports/sysdeps/mips/mips64/gmp-mparam.h | 2 +- ports/sysdeps/mips/mips64/lshift.S | 2 +- ports/sysdeps/mips/mips64/mul_1.S | 2 +- ports/sysdeps/mips/mips64/n32/crti.S | 2 +- ports/sysdeps/mips/mips64/n32/crtn.S | 2 +- ports/sysdeps/mips/mips64/n64/crti.S | 2 +- ports/sysdeps/mips/mips64/n64/crtn.S | 2 +- ports/sysdeps/mips/mips64/rshift.S | 2 +- ports/sysdeps/mips/mips64/setjmp.S | 2 +- ports/sysdeps/mips/mips64/setjmp_aux.c | 2 +- ports/sysdeps/mips/mips64/soft-fp/e_sqrtl.c | 2 +- ports/sysdeps/mips/mips64/sub_n.S | 2 +- ports/sysdeps/mips/mips64/submul_1.S | 2 +- ports/sysdeps/mips/mul_1.S | 2 +- ports/sysdeps/mips/nptl/Makefile | 2 +- ports/sysdeps/mips/nptl/pthread_spin_lock.c | 2 +- ports/sysdeps/mips/nptl/pthreaddef.h | 2 +- ports/sysdeps/mips/nptl/tls.h | 2 +- ports/sysdeps/mips/regdef.h | 2 +- ports/sysdeps/mips/rshift.S | 2 +- ports/sysdeps/mips/setjmp.S | 2 +- ports/sysdeps/mips/setjmp_aux.c | 2 +- ports/sysdeps/mips/sgidefs.h | 2 +- ports/sysdeps/mips/sotruss-lib.c | 2 +- ports/sysdeps/mips/stackinfo.h | 2 +- ports/sysdeps/mips/start.S | 2 +- ports/sysdeps/mips/sub_n.S | 2 +- ports/sysdeps/mips/submul_1.S | 2 +- ports/sysdeps/mips/sys/asm.h | 2 +- ports/sysdeps/mips/sys/fpregdef.h | 2 +- ports/sysdeps/mips/sys/regdef.h | 2 +- ports/sysdeps/mips/sys/tas.h | 2 +- ports/sysdeps/mips/sys/ucontext.h | 2 +- ports/sysdeps/mips/tst-audit.h | 2 +- ports/sysdeps/tile/__longjmp.S | 2 +- ports/sysdeps/tile/__tls_get_addr.S | 2 +- ports/sysdeps/tile/_mcount.S | 2 +- ports/sysdeps/tile/bits/atomic.h | 2 +- ports/sysdeps/tile/bits/byteswap.h | 2 +- ports/sysdeps/tile/bits/fenv.h | 2 +- ports/sysdeps/tile/bits/link.h | 2 +- ports/sysdeps/tile/bits/mathdef.h | 2 +- ports/sysdeps/tile/bits/mathinline.h | 2 +- ports/sysdeps/tile/bits/setjmp.h | 2 +- ports/sysdeps/tile/bzero.S | 2 +- ports/sysdeps/tile/crti.S | 2 +- ports/sysdeps/tile/crtn.S | 2 +- ports/sysdeps/tile/dl-lookupcfg.h | 2 +- ports/sysdeps/tile/dl-machine.h | 2 +- ports/sysdeps/tile/dl-runtime.c | 2 +- ports/sysdeps/tile/dl-start.S | 2 +- ports/sysdeps/tile/dl-tls.c | 2 +- ports/sysdeps/tile/dl-tls.h | 2 +- ports/sysdeps/tile/dl-trampoline.S | 2 +- ports/sysdeps/tile/ffs.c | 2 +- ports/sysdeps/tile/gccframe.h | 2 +- ports/sysdeps/tile/jmpbuf-offsets.h | 2 +- ports/sysdeps/tile/jmpbuf-unwind.h | 2 +- ports/sysdeps/tile/ldsodefs.h | 2 +- ports/sysdeps/tile/machine-gmon.h | 2 +- ports/sysdeps/tile/memcopy.h | 2 +- ports/sysdeps/tile/nptl/Makefile | 2 +- ports/sysdeps/tile/nptl/pthread_spin_lock.c | 2 +- ports/sysdeps/tile/nptl/pthread_spin_trylock.c | 2 +- ports/sysdeps/tile/nptl/pthread_spin_unlock.c | 2 +- ports/sysdeps/tile/nptl/pthreaddef.h | 2 +- ports/sysdeps/tile/nptl/tls.h | 2 +- ports/sysdeps/tile/setjmp.S | 2 +- ports/sysdeps/tile/sfp-machine.h | 2 +- ports/sysdeps/tile/sotruss-lib.c | 2 +- ports/sysdeps/tile/stackinfo.h | 2 +- ports/sysdeps/tile/start.S | 2 +- ports/sysdeps/tile/sysdep.h | 2 +- ports/sysdeps/tile/tilegx/bits/atomic.h | 2 +- ports/sysdeps/tile/tilegx/memchr.c | 2 +- ports/sysdeps/tile/tilegx/memcpy.c | 2 +- ports/sysdeps/tile/tilegx/memmove.c | 2 +- ports/sysdeps/tile/tilegx/memset.c | 2 +- ports/sysdeps/tile/tilegx/memusage.h | 2 +- ports/sysdeps/tile/tilegx/rawmemchr.c | 2 +- ports/sysdeps/tile/tilegx/strchr.c | 2 +- ports/sysdeps/tile/tilegx/strchrnul.c | 2 +- ports/sysdeps/tile/tilegx/string-endian.h | 2 +- ports/sysdeps/tile/tilegx/strlen.c | 2 +- ports/sysdeps/tile/tilegx/strrchr.c | 2 +- ports/sysdeps/tile/tilepro/bits/atomic.h | 2 +- ports/sysdeps/tile/tilepro/memchr.c | 2 +- ports/sysdeps/tile/tilepro/memcpy.S | 2 +- ports/sysdeps/tile/tilepro/memset.c | 2 +- ports/sysdeps/tile/tilepro/memusage.h | 2 +- ports/sysdeps/tile/tilepro/rawmemchr.c | 2 +- ports/sysdeps/tile/tilepro/strchr.c | 2 +- ports/sysdeps/tile/tilepro/strchrnul.c | 2 +- ports/sysdeps/tile/tilepro/strlen.c | 2 +- ports/sysdeps/tile/tilepro/strrchr.c | 2 +- ports/sysdeps/tile/tls-macros.h | 2 +- ports/sysdeps/tile/tst-audit.h | 2 +- ports/sysdeps/tile/wordcopy.c | 2 +- ports/sysdeps/unix/alpha/getegid.S | 2 +- ports/sysdeps/unix/alpha/geteuid.S | 2 +- ports/sysdeps/unix/alpha/getppid.S | 2 +- ports/sysdeps/unix/alpha/pipe.S | 2 +- ports/sysdeps/unix/alpha/sysdep.S | 2 +- ports/sysdeps/unix/alpha/sysdep.h | 2 +- ports/sysdeps/unix/am33/sysdep.S | 2 +- ports/sysdeps/unix/am33/sysdep.h | 2 +- ports/sysdeps/unix/arm/sysdep.S | 2 +- ports/sysdeps/unix/arm/sysdep.h | 2 +- ports/sysdeps/unix/mips/mips32/sysdep.h | 2 +- ports/sysdeps/unix/mips/mips64/n32/sysdep.h | 2 +- ports/sysdeps/unix/mips/mips64/n64/sysdep.h | 2 +- ports/sysdeps/unix/mips/pipe.S | 2 +- ports/sysdeps/unix/mips/sysdep.S | 2 +- ports/sysdeps/unix/mips/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/__read_tp.S | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/bits/fcntl.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/bits/libc-vdso.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/bits/mman.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/clone.S | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/dl-cache.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/dl-static.c | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/getcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/init-first.c | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/ioctl.S | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/kernel-features.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/kernel_rt_sigframe.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/ldsodefs.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/libc-__read_tp.S | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/makecontext.c | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/mmap.c | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/nptl/clone.S | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/nptl/fork.c | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/profil-counter.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/readelflib.c | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/setcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/sigaction.c | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/swapcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/sys/elf.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/sys/procfs.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/sys/user.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/syscall.S | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/sysdep.c | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/ucontext-internal.h | 2 +- ports/sysdeps/unix/sysv/linux/aarch64/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/____longjmp_chk.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/adjtime.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/dirent.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/epoll.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/errno.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/eventfd.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/inotify.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/ioctls.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/ipc.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/mman.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/msq.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/netdb.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/resource.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/sem.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/shm.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/sigaction.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/siginfo.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/signalfd.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/signum.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/sigstack.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/socket_type.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/stat.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/statfs.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/termios.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/timerfd.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/bits/wordsize.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/brk.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/clone.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/dl-auxv.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/fdatasync.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/fxstat.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/fxstatat.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/getcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/gethostname.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/getsysstats.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/glob.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/ioperm.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/kernel-features.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/kernel_termios.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/lxstat.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/makecontext.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/msgctl.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/nptl/createthread.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/nptl/fork.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/oldglob.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/register-dump.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/rt_sigaction.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/semctl.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/setcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/setfpucw.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/shmctl.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sigaction.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sigprocmask.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sigsuspend.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sizes.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/swapcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sys/acct.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sys/io.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sys/procfs.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sys/ucontext.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sys/user.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/syscall.S | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sysconf.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/alpha/xstat.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/xstatconv.c | 2 +- ports/sysdeps/unix/sysv/linux/alpha/xstatconv.h | 2 +- ports/sysdeps/unix/sysv/linux/am33/bits/fcntl.h | 2 +- ports/sysdeps/unix/sysv/linux/am33/bits/mman.h | 2 +- ports/sysdeps/unix/sysv/linux/am33/brk.c | 2 +- ports/sysdeps/unix/sysv/linux/am33/clone.S | 2 +- ports/sysdeps/unix/sysv/linux/am33/linuxthreads/sysdep-cancel.h | 2 +- ports/sysdeps/unix/sysv/linux/am33/profil-counter.h | 2 +- ports/sysdeps/unix/sysv/linux/am33/socket.S | 2 +- ports/sysdeps/unix/sysv/linux/am33/syscall.S | 2 +- ports/sysdeps/unix/sysv/linux/am33/sysdep.S | 2 +- ports/sysdeps/unix/sysv/linux/am33/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/aeabi_read_tp.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/arm-features.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/bits/atomic.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/bits/fcntl.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/bits/hwcap.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/bits/mman.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/bits/shm.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/brk.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/clone.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/dl-cache.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/dl-machine.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/ftruncate64.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/getcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/ioperm.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/kernel-features.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/ldconfig.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/ldsodefs.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/makecontext.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/mmap.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/mmap64.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/createthread.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/fork.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/unwind.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/nptl/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/posix_fadvise.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/posix_fadvise64.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/pread.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/pread64.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/profil-counter.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/pwrite.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/pwrite64.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/readahead.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/readelflib.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/register-dump.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/setcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/sigaction.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/sigcontextinfo.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/sigrestorer.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/swapcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/sys/elf.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/sys/io.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/sys/procfs.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/sys/ucontext.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/sys/user.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/syscall.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/sysdep.S | 2 +- ports/sysdeps/unix/sysv/linux/arm/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/arm/truncate64.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/umount.c | 2 +- ports/sysdeps/unix/sysv/linux/arm/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/generic/____longjmp_chk.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/access.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/bits/fcntl.h | 2 +- ports/sysdeps/unix/sysv/linux/generic/bits/msq.h | 2 +- ports/sysdeps/unix/sysv/linux/generic/bits/sem.h | 2 +- ports/sysdeps/unix/sysv/linux/generic/bits/shm.h | 2 +- ports/sysdeps/unix/sysv/linux/generic/bits/stat.h | 2 +- ports/sysdeps/unix/sysv/linux/generic/bits/statfs.h | 2 +- ports/sysdeps/unix/sysv/linux/generic/bits/typesizes.h | 2 +- ports/sysdeps/unix/sysv/linux/generic/brk.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/chmod.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/chown.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/creat.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/dl-origin.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/dup2.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/epoll_create.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/epoll_wait.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/futimesat.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/getdents64.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/inotify_init.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/kernel_stat.h | 2 +- ports/sysdeps/unix/sysv/linux/generic/lchown.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/link.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/lxstat.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/mkdir.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/not-cancel.h | 2 +- ports/sysdeps/unix/sysv/linux/generic/open.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/open64.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/pause.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/pipe.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/poll.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/readlink.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/readlink_chk.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/recv.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/rename.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/rmdir.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/select.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/send.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/symlink.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/sysctl.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/generic/umount.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/unlink.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/ustat.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/utimes.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fstatfs.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/ftruncate.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/ftruncate64.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fxstat.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/getdents.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/llseek.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lseek.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat64.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/mmap.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/overflow.h | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/posix_fadvise.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/sendfile.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/statfs.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/truncate.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/truncate64.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/xstat.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/wordsize-32/xstat64.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/xmknod.c | 2 +- ports/sysdeps/unix/sysv/linux/generic/xstat.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/____longjmp_chk.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/atomic.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/errno.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/ioctls.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/ipc.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/mman.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/msq.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/sem.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/shm.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/sigaction.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/signum.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/bits/socket_type.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/brk.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/clone.S | 2 +- ports/sysdeps/unix/sysv/linux/hppa/getcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/hppa/kernel-features.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/makecontext.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/mmap.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/bits/semaphore.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/createthread.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/fork.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_broadcast.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_destroy.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_init.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_signal.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_timedwait.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_wait.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_once.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/profil-counter.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/setcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/hppa/swapcontext.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/sys/epoll.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/sys/eventfd.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/sys/inotify.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/sys/procfs.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/sys/signalfd.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/sys/timerfd.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/syscall.S | 2 +- ports/sysdeps/unix/sysv/linux/hppa/sysdep.c | 2 +- ports/sysdeps/unix/sysv/linux/hppa/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/hppa/umount.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/__longjmp.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/__start_context.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/fcntl.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/ipc.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/mman.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/msq.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/sem.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/setjmp.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/shm.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/sigaction.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/siginfo.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/bits/stat.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/brk.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/clone2.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/dl-cache.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/dl-static.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/fork.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/get_clockfreq.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/getcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/getpagesize.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/has_cpuclock.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/ioperm.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/kernel-features.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/kernel_stat.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/ldconfig.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/ldsodefs.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/makecontext.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/__ia64_longjmp.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/local_lim.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/semaphore.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/createthread.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/dl-sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/fork.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/pt-vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/sysdep-cancel.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/unwind-forcedunwind.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/unwind_longjmp.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/nptl/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/pipe.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/profil-counter.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/readelflib.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/register-dump.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/setcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/setjmp.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sigaction.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sigcontextinfo.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sigpending.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sigprocmask.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/swapcontext.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sys/io.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sys/procfs.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sys/ptrace.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sys/rse.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sys/user.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/syscall.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sysconf.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sysdep.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/system.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/ucontext_i.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/umount.c | 2 +- ports/sysdeps/unix/sysv/linux/ia64/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/ia64/wordexp.c | 2 +- ports/sysdeps/unix/sysv/linux/m68k/____longjmp_chk.c | 2 +- ports/sysdeps/unix/sysv/linux/m68k/bits/fcntl.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/bits/mman.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/bits/poll.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/bits/stat.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/brk.c | 2 +- ports/sysdeps/unix/sysv/linux/m68k/clone.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/dl-static.c | 2 +- ports/sysdeps/unix/sysv/linux/m68k/getpagesize.c | 2 +- ports/sysdeps/unix/sysv/linux/m68k/getsysstats.c | 2 +- ports/sysdeps/unix/sysv/linux/m68k/init-first.c | 2 +- ports/sysdeps/unix/sysv/linux/m68k/kernel-features.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/ldsodefs.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/m680x0/getcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/m680x0/makecontext.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/m680x0/setcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/m680x0/swapcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/m68k-helpers.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/m68k-vdso.c | 2 +- ports/sysdeps/unix/sysv/linux/m68k/mmap.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/mremap.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/nptl/createthread.c | 2 +- ports/sysdeps/unix/sysv/linux/m68k/nptl/fork.c | 2 +- ports/sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c | 2 +- ports/sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/nptl/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/register-dump.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/semtimedop.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/sigcontextinfo.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/socket.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/sys/procfs.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/sys/reg.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/sys/ucontext.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/sys/user.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/syscall.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/sysdep.S | 2 +- ports/sysdeps/unix/sysv/linux/m68k/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/m68k/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/____longjmp_chk.S | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/bits/fcntl.h | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/bits/mman.h | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/bits/stat.h | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/brk.c | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/clone.S | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/getsysstats.c | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/kernel-features.h | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/kernel_stat.h | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/mmap.S | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/nptl/fork.c | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/sigcontextinfo.h | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/socket.S | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/sys/procfs.h | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/sys/user.h | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/syscall.S | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/sysdep.S | 2 +- ports/sysdeps/unix/sysv/linux/microblaze/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/____longjmp_chk.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/_test_and_set.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/epoll.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/errno.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/eventfd.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/fcntl.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/inotify.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/ioctl-types.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/ipc.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/mman.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/msq.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/poll.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/resource.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/sem.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/shm.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/sigaction.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/sigcontext.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/siginfo.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/signalfd.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/signum.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/sigstack.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/socket_type.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/stat.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/statfs.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/termios.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/bits/timerfd.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/brk.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/clone.S | 2 +- ports/sysdeps/unix/sysv/linux/mips/dl-cache.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/dl-static.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/getcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/mips/getrlimit64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/getsysstats.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/kernel-features.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/kernel_termios.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/ldsodefs.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/makecontext.S | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips32/accept4.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips32/ftruncate64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall.h | 2 +- .../sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall0.c | 2 +- .../sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall1.c | 2 +- .../sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall2.c | 2 +- .../sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall3.c | 2 +- .../sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall4.c | 2 +- .../sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall5.c | 2 +- .../sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall6.c | 2 +- .../sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall7.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips32/posix_fadvise.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips32/posix_fadvise64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips32/sync_file_range.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips32/truncate64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/fxstat64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/ldconfig.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/lxstat64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/msgctl.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/n32/fallocate.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/n32/fallocate64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/semctl.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/shmctl.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/syscall.S | 2 +- ports/sysdeps/unix/sysv/linux/mips/mips64/xstat64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/nptl/createthread.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/nptl/lowlevellock.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/nptl/sysdep-cancel.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/nptl/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/mips/pread.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/pread64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/pwrite.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/pwrite64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/readelflib.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/register-dump.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/setcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/mips/setrlimit64.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/sigaction.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/sigcontextinfo.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/swapcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/mips/sys/cachectl.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/sys/procfs.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/sys/sysmips.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/sys/ucontext.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/sys/user.h | 2 +- ports/sysdeps/unix/sysv/linux/mips/ustat.c | 2 +- ports/sysdeps/unix/sysv/linux/mips/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/mips/xstatconv.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/bits/environments.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/bits/libc-vdso.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/bits/local_lim.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/bits/mman.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/bits/sigaction.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/bits/siginfo.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/cacheflush.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/dl-static.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/getcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/tile/gettimeofday.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/init-first.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/kernel-features.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/ldsodefs.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/makecontext.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/nptl/clone.S | 2 +- ports/sysdeps/unix/sysv/linux/tile/nptl/createthread.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/nptl/fork.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/nptl/vfork.S | 2 +- ports/sysdeps/unix/sysv/linux/tile/profil-counter.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/set_dataplane.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/setcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/tile/sigcontextinfo.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/swapcontext.S | 2 +- ports/sysdeps/unix/sysv/linux/tile/sys/cachectl.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/sys/dataplane.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/sys/procfs.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/sys/ucontext.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/syscall.S | 2 +- ports/sysdeps/unix/sysv/linux/tile/sysdep.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/sysdep.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/tilegx/ioctl.S | 2 +- ports/sysdeps/unix/sysv/linux/tile/tilegx/ldconfig.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/tilegx/register-dump.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/tilegx/sched_getcpu.c | 2 +- ports/sysdeps/unix/sysv/linux/tile/tilepro/ldconfig.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/tilepro/register-dump.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/ucontext_i.h | 2 +- posix/Makefile | 2 +- posix/_exit.c | 2 +- posix/alarm.c | 2 +- posix/annexc.c | 2 +- posix/bits/posix1_lim.h | 2 +- posix/bits/posix2_lim.h | 2 +- posix/bits/unistd.h | 2 +- posix/bsd-getpgrp.c | 2 +- posix/bug-glob2.c | 2 +- posix/bug-regex10.c | 2 +- posix/bug-regex11.c | 2 +- posix/bug-regex12.c | 2 +- posix/bug-regex13.c | 2 +- posix/bug-regex14.c | 2 +- posix/bug-regex17.c | 2 +- posix/bug-regex18.c | 2 +- posix/bug-regex19.c | 2 +- posix/bug-regex2.c | 2 +- posix/bug-regex20.c | 2 +- posix/bug-regex21.c | 2 +- posix/bug-regex22.c | 2 +- posix/bug-regex23.c | 2 +- posix/bug-regex25.c | 2 +- posix/bug-regex26.c | 2 +- posix/bug-regex27.c | 2 +- posix/bug-regex28.c | 2 +- posix/bug-regex3.c | 2 +- posix/bug-regex30.c | 2 +- posix/bug-regex33.c | 2 +- posix/bug-regex34.c | 2 +- posix/bug-regex35.c | 2 +- posix/bug-regex4.c | 2 +- posix/bug-regex6.c | 2 +- posix/bug-regex7.c | 2 +- posix/bug-regex8.c | 2 +- posix/bug-regex9.c | 2 +- posix/confstr.c | 2 +- posix/cpio.h | 2 +- posix/execl.c | 2 +- posix/execle.c | 2 +- posix/execlp.c | 2 +- posix/execv.c | 2 +- posix/execve.c | 2 +- posix/execvp.c | 2 +- posix/execvpe.c | 2 +- posix/fexecve.c | 2 +- posix/fnmatch.c | 2 +- posix/fnmatch.h | 2 +- posix/fnmatch_loop.c | 2 +- posix/fork.c | 2 +- posix/fpathconf.c | 2 +- posix/gai_strerror.c | 2 +- posix/get_child_max.c | 2 +- posix/getaddrinfo.c | 2 +- posix/getconf-speclist.c | 2 +- posix/getconf.c | 2 +- posix/getegid.c | 2 +- posix/geteuid.c | 2 +- posix/getgid.c | 2 +- posix/getgroups.c | 2 +- posix/getopt.c | 2 +- posix/getopt.h | 2 +- posix/getopt1.c | 2 +- posix/getopt_init.c | 2 +- posix/getopt_int.h | 2 +- posix/getpgid.c | 2 +- posix/getpgrp.c | 2 +- posix/getpid.c | 2 +- posix/getppid.c | 2 +- posix/getresgid.c | 2 +- posix/getresuid.c | 2 +- posix/getsid.c | 2 +- posix/getuid.c | 2 +- posix/glob.c | 2 +- posix/glob.h | 2 +- posix/glob64.c | 2 +- posix/globtest.c | 2 +- posix/globtest.sh | 2 +- posix/group_member.c | 2 +- posix/nanosleep.c | 2 +- posix/pathconf.c | 2 +- posix/pause.c | 2 +- posix/posix-envs.def | 2 +- posix/posix_madvise.c | 2 +- posix/pread.c | 2 +- posix/pread64.c | 2 +- posix/pwrite.c | 2 +- posix/pwrite64.c | 2 +- posix/re_comp.h | 2 +- posix/regcomp.c | 2 +- posix/regex.c | 2 +- posix/regex.h | 2 +- posix/regex_internal.c | 2 +- posix/regex_internal.h | 2 +- posix/regexec.c | 2 +- posix/runptests.c | 2 +- posix/sched.h | 2 +- posix/sched_cpualloc.c | 2 +- posix/sched_cpucount.c | 2 +- posix/sched_cpufree.c | 2 +- posix/sched_getaffinity.c | 2 +- posix/sched_getp.c | 2 +- posix/sched_gets.c | 2 +- posix/sched_primax.c | 2 +- posix/sched_primin.c | 2 +- posix/sched_rr_gi.c | 2 +- posix/sched_setaffinity.c | 2 +- posix/sched_setp.c | 2 +- posix/sched_sets.c | 2 +- posix/sched_yield.c | 2 +- posix/setgid.c | 2 +- posix/setpgid.c | 2 +- posix/setpgrp.c | 2 +- posix/setresgid.c | 2 +- posix/setresuid.c | 2 +- posix/setsid.c | 2 +- posix/setuid.c | 2 +- posix/sleep.c | 2 +- posix/spawn.c | 2 +- posix/spawn.h | 2 +- posix/spawn_faction_addclose.c | 2 +- posix/spawn_faction_adddup2.c | 2 +- posix/spawn_faction_addopen.c | 2 +- posix/spawn_faction_destroy.c | 2 +- posix/spawn_faction_init.c | 2 +- posix/spawnattr_destroy.c | 2 +- posix/spawnattr_getdefault.c | 2 +- posix/spawnattr_getflags.c | 2 +- posix/spawnattr_getpgroup.c | 2 +- posix/spawnattr_getschedparam.c | 2 +- posix/spawnattr_getschedpolicy.c | 2 +- posix/spawnattr_getsigmask.c | 2 +- posix/spawnattr_init.c | 2 +- posix/spawnattr_setdefault.c | 2 +- posix/spawnattr_setflags.c | 2 +- posix/spawnattr_setpgroup.c | 2 +- posix/spawnattr_setschedparam.c | 2 +- posix/spawnattr_setschedpolicy.c | 2 +- posix/spawnattr_setsigmask.c | 2 +- posix/spawni.c | 2 +- posix/spawnp.c | 2 +- posix/sys/times.h | 2 +- posix/sys/types.h | 2 +- posix/sys/utsname.h | 2 +- posix/sys/wait.h | 2 +- posix/sysconf.c | 2 +- posix/tar.h | 2 +- posix/times.c | 2 +- posix/tst-boost.c | 2 +- posix/tst-chmod.c | 2 +- posix/tst-dir.c | 2 +- posix/tst-exec.c | 2 +- posix/tst-fnmatch.c | 2 +- posix/tst-fnmatch.input | 2 +- posix/tst-fork.c | 2 +- posix/tst-getaddrinfo.c | 2 +- posix/tst-getaddrinfo4.c | 2 +- posix/tst-getconf.sh | 2 +- posix/tst-getlogin.c | 2 +- posix/tst-gnuglob.c | 2 +- posix/tst-nanosleep.c | 2 +- posix/tst-nice.c | 2 +- posix/tst-pathconf.c | 2 +- posix/tst-pcre.c | 2 +- posix/tst-preadwrite.c | 2 +- posix/tst-preadwrite64.c | 2 +- posix/tst-regex.c | 2 +- posix/tst-regexloc.c | 2 +- posix/tst-rxspencer.c | 2 +- posix/tst-spawn.c | 2 +- posix/tst-truncate.c | 2 +- posix/tst-truncate64.c | 2 +- posix/tst-vfork1.c | 2 +- posix/tst-vfork2.c | 2 +- posix/tst-vfork3.c | 2 +- posix/tst-waitid.c | 2 +- posix/uname.c | 2 +- posix/unistd.h | 2 +- posix/vfork.c | 2 +- posix/wait.c | 2 +- posix/wait3.c | 2 +- posix/wait4.c | 2 +- posix/waitid.c | 2 +- posix/waitpid.c | 2 +- posix/wordexp-test.c | 2 +- posix/wordexp-tst.sh | 2 +- posix/wordexp.c | 2 +- posix/wordexp.h | 2 +- pwd/Makefile | 2 +- pwd/fgetpwent.c | 2 +- pwd/fgetpwent_r.c | 2 +- pwd/getpw.c | 2 +- pwd/getpwent.c | 2 +- pwd/getpwent_r.c | 2 +- pwd/getpwnam.c | 2 +- pwd/getpwnam_r.c | 2 +- pwd/getpwuid.c | 2 +- pwd/getpwuid_r.c | 2 +- pwd/putpwent.c | 2 +- pwd/pwd.h | 2 +- pwd/tst-getpw.c | 2 +- resolv/Makefile | 2 +- resolv/gai_cancel.c | 2 +- resolv/gai_error.c | 2 +- resolv/gai_misc.c | 2 +- resolv/gai_misc.h | 2 +- resolv/gai_notify.c | 2 +- resolv/gai_sigqueue.c | 2 +- resolv/gai_suspend.c | 2 +- resolv/getaddrinfo_a.c | 2 +- resolv/netdb.h | 2 +- resolv/nss_dns/dns-canon.c | 2 +- resolv/nss_dns/dns-host.c | 2 +- resolv/nss_dns/dns-network.c | 2 +- resolv/res-state.c | 2 +- resolv/res_hconf.c | 2 +- resolv/res_hconf.h | 2 +- resolv/tst-leaks.c | 2 +- resolv/tst-leaks2.c | 2 +- resource/Makefile | 2 +- resource/getpriority.c | 2 +- resource/getrlimit.c | 2 +- resource/getrlimit64.c | 2 +- resource/getrusage.c | 2 +- resource/nice.c | 2 +- resource/setpriority.c | 2 +- resource/setrlimit.c | 2 +- resource/setrlimit64.c | 2 +- resource/sys/resource.h | 2 +- resource/sys/vlimit.h | 2 +- resource/sys/vtimes.h | 2 +- resource/ulimit.c | 2 +- resource/ulimit.h | 2 +- resource/vlimit.c | 2 +- resource/vtimes.c | 2 +- rt/Makefile | 2 +- rt/aio.h | 2 +- rt/aio_cancel.c | 2 +- rt/aio_error.c | 2 +- rt/aio_fsync.c | 2 +- rt/aio_misc.c | 2 +- rt/aio_notify.c | 2 +- rt/aio_read.c | 2 +- rt/aio_return.c | 2 +- rt/aio_sigqueue.c | 2 +- rt/aio_suspend.c | 2 +- rt/aio_write.c | 2 +- rt/bits/mqueue2.h | 2 +- rt/clock-compat.c | 2 +- rt/clock_getcpuclockid.c | 2 +- rt/clock_getres.c | 2 +- rt/clock_gettime.c | 2 +- rt/clock_nanosleep.c | 2 +- rt/clock_settime.c | 2 +- rt/get_clockfreq.c | 2 +- rt/lio_listio.c | 2 +- rt/mq_close.c | 2 +- rt/mq_getattr.c | 2 +- rt/mq_notify.c | 2 +- rt/mq_open.c | 2 +- rt/mq_receive.c | 2 +- rt/mq_send.c | 2 +- rt/mq_setattr.c | 2 +- rt/mq_timedreceive.c | 2 +- rt/mq_timedsend.c | 2 +- rt/mq_unlink.c | 2 +- rt/mqueue.h | 2 +- rt/shm_open.c | 2 +- rt/shm_unlink.c | 2 +- rt/timer_create.c | 2 +- rt/timer_delete.c | 2 +- rt/timer_getoverr.c | 2 +- rt/timer_gettime.c | 2 +- rt/timer_settime.c | 2 +- rt/tst-aio.c | 2 +- rt/tst-aio2.c | 2 +- rt/tst-aio3.c | 2 +- rt/tst-aio4.c | 2 +- rt/tst-aio5.c | 2 +- rt/tst-aio6.c | 2 +- rt/tst-aio64.c | 2 +- rt/tst-aio7.c | 2 +- rt/tst-clock.c | 2 +- rt/tst-clock_nanosleep.c | 2 +- rt/tst-cpuclock1.c | 2 +- rt/tst-cpuclock2.c | 2 +- rt/tst-mqueue.h | 2 +- rt/tst-mqueue1.c | 2 +- rt/tst-mqueue2.c | 2 +- rt/tst-mqueue3.c | 2 +- rt/tst-mqueue4.c | 2 +- rt/tst-mqueue5.c | 2 +- rt/tst-mqueue6.c | 2 +- rt/tst-mqueue7.c | 2 +- rt/tst-mqueue8.c | 2 +- rt/tst-mqueue9.c | 2 +- rt/tst-shm.c | 2 +- rt/tst-timer.c | 2 +- rt/tst-timer4.c | 2 +- scripts/bench.pl | 2 +- scripts/check-c++-types.sh | 2 +- scripts/check-local-headers.sh | 2 +- scripts/cross-test-ssh.sh | 2 +- scripts/gen-sorted.awk | 2 +- scripts/rellns-sh | 2 +- scripts/test-installation.pl | 2 +- scripts/update-copyrights | 2 +- scripts/versions.awk | 2 +- setjmp/Makefile | 2 +- setjmp/__longjmp.c | 2 +- setjmp/bits/setjmp2.h | 2 +- setjmp/bsd-_setjmp.c | 2 +- setjmp/bsd-setjmp.c | 2 +- setjmp/bug269-setjmp.c | 2 +- setjmp/jmp-unwind.c | 2 +- setjmp/longjmp.c | 2 +- setjmp/setjmp.c | 2 +- setjmp/setjmp.h | 2 +- setjmp/sigjmp.c | 2 +- setjmp/tst-setjmp-fp.c | 2 +- setjmp/tst-setjmp.c | 2 +- setjmp/tst-sigsetjmp.c | 2 +- shadow/Makefile | 2 +- shadow/fgetspent.c | 2 +- shadow/fgetspent_r.c | 2 +- shadow/getspent.c | 2 +- shadow/getspent_r.c | 2 +- shadow/getspnam.c | 2 +- shadow/getspnam_r.c | 2 +- shadow/lckpwdf.c | 2 +- shadow/putspent.c | 2 +- shadow/sgetspent.c | 2 +- shadow/sgetspent_r.c | 2 +- shadow/shadow.h | 2 +- signal/Makefile | 2 +- signal/allocrtsig.c | 2 +- signal/kill.c | 2 +- signal/killpg.c | 2 +- signal/raise.c | 2 +- signal/sigaction.c | 2 +- signal/sigaddset.c | 2 +- signal/sigaltstack.c | 2 +- signal/sigandset.c | 2 +- signal/sigblock.c | 2 +- signal/sigdelset.c | 2 +- signal/sigempty.c | 2 +- signal/sigfillset.c | 2 +- signal/siggetmask.c | 2 +- signal/sighold.c | 2 +- signal/sigignore.c | 2 +- signal/sigintr.c | 2 +- signal/sigisempty.c | 2 +- signal/sigismem.c | 2 +- signal/signal.c | 2 +- signal/signal.h | 2 +- signal/sigorset.c | 2 +- signal/sigpause.c | 2 +- signal/sigpending.c | 2 +- signal/sigprocmask.c | 2 +- signal/sigqueue.c | 2 +- signal/sigrelse.c | 2 +- signal/sigreturn.c | 2 +- signal/sigset.c | 2 +- signal/sigsetmask.c | 2 +- signal/sigsetops.h | 2 +- signal/sigstack.c | 2 +- signal/sigsuspend.c | 2 +- signal/sigtimedwait.c | 2 +- signal/sigvec.c | 2 +- signal/sigwait.c | 2 +- signal/sigwaitinfo.c | 2 +- signal/sysv_signal.c | 2 +- signal/tst-raise.c | 2 +- signal/tst-sigsimple.c | 2 +- socket/Makefile | 2 +- socket/accept.c | 2 +- socket/accept4.c | 2 +- socket/bind.c | 2 +- socket/bits/socket2.h | 2 +- socket/connect.c | 2 +- socket/getpeername.c | 2 +- socket/getsockname.c | 2 +- socket/getsockopt.c | 2 +- socket/have_sock_cloexec.c | 2 +- socket/isfdtype.c | 2 +- socket/listen.c | 2 +- socket/opensock.c | 2 +- socket/recv.c | 2 +- socket/recvfrom.c | 2 +- socket/recvmmsg.c | 2 +- socket/recvmsg.c | 2 +- socket/sa_len.c | 2 +- socket/send.c | 2 +- socket/sendmmsg.c | 2 +- socket/sendmsg.c | 2 +- socket/sendto.c | 2 +- socket/setsockopt.c | 2 +- socket/shutdown.c | 2 +- socket/sockatmark.c | 2 +- socket/socket.c | 2 +- socket/socketpair.c | 2 +- socket/sys/socket.h | 2 +- socket/sys/un.h | 2 +- soft-fp/Makefile | 2 +- soft-fp/adddf3.c | 2 +- soft-fp/addsf3.c | 2 +- soft-fp/addtf3.c | 2 +- soft-fp/divdf3.c | 2 +- soft-fp/divsf3.c | 2 +- soft-fp/divtf3.c | 2 +- soft-fp/double.h | 2 +- soft-fp/eqdf2.c | 2 +- soft-fp/eqsf2.c | 2 +- soft-fp/eqtf2.c | 2 +- soft-fp/extenddftf2.c | 2 +- soft-fp/extended.h | 2 +- soft-fp/extendsfdf2.c | 2 +- soft-fp/extendsftf2.c | 2 +- soft-fp/extendxftf2.c | 2 +- soft-fp/fixdfdi.c | 2 +- soft-fp/fixdfsi.c | 2 +- soft-fp/fixdfti.c | 2 +- soft-fp/fixsfdi.c | 2 +- soft-fp/fixsfsi.c | 2 +- soft-fp/fixsfti.c | 2 +- soft-fp/fixtfdi.c | 2 +- soft-fp/fixtfsi.c | 2 +- soft-fp/fixtfti.c | 2 +- soft-fp/fixunsdfdi.c | 2 +- soft-fp/fixunsdfsi.c | 2 +- soft-fp/fixunsdfti.c | 2 +- soft-fp/fixunssfdi.c | 2 +- soft-fp/fixunssfsi.c | 2 +- soft-fp/fixunssfti.c | 2 +- soft-fp/fixunstfdi.c | 2 +- soft-fp/fixunstfsi.c | 2 +- soft-fp/fixunstfti.c | 2 +- soft-fp/floatdidf.c | 2 +- soft-fp/floatdisf.c | 2 +- soft-fp/floatditf.c | 2 +- soft-fp/floatsidf.c | 2 +- soft-fp/floatsisf.c | 2 +- soft-fp/floatsitf.c | 2 +- soft-fp/floattidf.c | 2 +- soft-fp/floattisf.c | 2 +- soft-fp/floattitf.c | 2 +- soft-fp/floatundidf.c | 2 +- soft-fp/floatundisf.c | 2 +- soft-fp/floatunditf.c | 2 +- soft-fp/floatunsidf.c | 2 +- soft-fp/floatunsisf.c | 2 +- soft-fp/floatunsitf.c | 2 +- soft-fp/floatuntidf.c | 2 +- soft-fp/floatuntisf.c | 2 +- soft-fp/floatuntitf.c | 2 +- soft-fp/fmadf4.c | 2 +- soft-fp/fmasf4.c | 2 +- soft-fp/fmatf4.c | 2 +- soft-fp/gedf2.c | 2 +- soft-fp/gesf2.c | 2 +- soft-fp/getf2.c | 2 +- soft-fp/ledf2.c | 2 +- soft-fp/lesf2.c | 2 +- soft-fp/letf2.c | 2 +- soft-fp/muldf3.c | 2 +- soft-fp/mulsf3.c | 2 +- soft-fp/multf3.c | 2 +- soft-fp/negdf2.c | 2 +- soft-fp/negsf2.c | 2 +- soft-fp/negtf2.c | 2 +- soft-fp/op-1.h | 2 +- soft-fp/op-2.h | 2 +- soft-fp/op-4.h | 2 +- soft-fp/op-8.h | 2 +- soft-fp/op-common.h | 2 +- soft-fp/quad.h | 2 +- soft-fp/single.h | 2 +- soft-fp/soft-fp.h | 2 +- soft-fp/sqrtdf2.c | 2 +- soft-fp/sqrtsf2.c | 2 +- soft-fp/sqrttf2.c | 2 +- soft-fp/subdf3.c | 2 +- soft-fp/subsf3.c | 2 +- soft-fp/subtf3.c | 2 +- soft-fp/truncdfsf2.c | 2 +- soft-fp/trunctfdf2.c | 2 +- soft-fp/trunctfsf2.c | 2 +- soft-fp/trunctfxf2.c | 2 +- soft-fp/unorddf2.c | 2 +- soft-fp/unordsf2.c | 2 +- soft-fp/unordtf2.c | 2 +- stdio-common/Makefile | 2 +- stdio-common/_i18n_number.h | 2 +- stdio-common/_itoa.c | 2 +- stdio-common/_itowa.c | 2 +- stdio-common/_itowa.h | 2 +- stdio-common/asprintf.c | 2 +- stdio-common/bits/printf-ldbl.h | 2 +- stdio-common/bug-vfprintf-nargs.c | 2 +- stdio-common/bug26.c | 2 +- stdio-common/ctermid.c | 2 +- stdio-common/cuserid.c | 2 +- stdio-common/dprintf.c | 2 +- stdio-common/errlist.c | 2 +- stdio-common/errnobug.c | 2 +- stdio-common/flockfile.c | 2 +- stdio-common/fprintf.c | 2 +- stdio-common/fscanf.c | 2 +- stdio-common/ftrylockfile.c | 2 +- stdio-common/funlockfile.c | 2 +- stdio-common/fxprintf.c | 2 +- stdio-common/getline.c | 2 +- stdio-common/getw.c | 2 +- stdio-common/isoc99_fscanf.c | 2 +- stdio-common/isoc99_scanf.c | 2 +- stdio-common/isoc99_sscanf.c | 2 +- stdio-common/isoc99_vfscanf.c | 2 +- stdio-common/isoc99_vscanf.c | 2 +- stdio-common/isoc99_vsscanf.c | 2 +- stdio-common/itoa-digits.c | 2 +- stdio-common/itoa-udigits.c | 2 +- stdio-common/itowa-digits.c | 2 +- stdio-common/perror.c | 2 +- stdio-common/printf-parse.h | 2 +- stdio-common/printf-parsemb.c | 2 +- stdio-common/printf-prs.c | 2 +- stdio-common/printf.c | 2 +- stdio-common/printf.h | 2 +- stdio-common/printf_fp.c | 2 +- stdio-common/printf_fphex.c | 2 +- stdio-common/printf_size.c | 2 +- stdio-common/psiginfo.c | 2 +- stdio-common/psignal.c | 2 +- stdio-common/putw.c | 2 +- stdio-common/reg-modifier.c | 2 +- stdio-common/reg-printf.c | 2 +- stdio-common/reg-type.c | 2 +- stdio-common/remove.c | 2 +- stdio-common/rename.c | 2 +- stdio-common/renameat.c | 2 +- stdio-common/scanf.c | 2 +- stdio-common/scanf11.c | 2 +- stdio-common/siglist.c | 2 +- stdio-common/snprintf.c | 2 +- stdio-common/sprintf.c | 2 +- stdio-common/sscanf.c | 2 +- stdio-common/stdio_ext.h | 2 +- stdio-common/stdio_lim.h.in | 2 +- stdio-common/tempnam.c | 2 +- stdio-common/tempname.c | 2 +- stdio-common/test-fseek.c | 2 +- stdio-common/test-popen.c | 2 +- stdio-common/test-vfprintf.c | 2 +- stdio-common/test_rdwr.c | 2 +- stdio-common/tmpfile.c | 2 +- stdio-common/tmpfile64.c | 2 +- stdio-common/tmpnam.c | 2 +- stdio-common/tmpnam_r.c | 2 +- stdio-common/tst-fileno.c | 2 +- stdio-common/tst-fphex-wide.c | 2 +- stdio-common/tst-fseek.c | 2 +- stdio-common/tst-gets.c | 2 +- stdio-common/tst-long-dbl-fphex.c | 2 +- stdio-common/tst-popen.c | 2 +- stdio-common/tst-printf-round.c | 2 +- stdio-common/tst-printf.c | 2 +- stdio-common/tst-printf.sh | 2 +- stdio-common/tst-put-error.c | 2 +- stdio-common/tst-sprintf3.c | 2 +- stdio-common/tst-sscanf.c | 2 +- stdio-common/tst-tmpnam.c | 2 +- stdio-common/tst-unbputc.sh | 2 +- stdio-common/tst-unlockedio.c | 2 +- stdio-common/tstgetln.c | 2 +- stdio-common/tstscanf.c | 2 +- stdio-common/vfprintf.c | 2 +- stdio-common/vfscanf.c | 2 +- stdio-common/vprintf.c | 2 +- stdlib/Makefile | 2 +- stdlib/a64l.c | 2 +- stdlib/abort.c | 2 +- stdlib/abs.c | 2 +- stdlib/add_n.c | 2 +- stdlib/addmul_1.c | 2 +- stdlib/alloca.h | 2 +- stdlib/at_quick_exit.c | 2 +- stdlib/atexit.c | 2 +- stdlib/atof.c | 2 +- stdlib/atoi.c | 2 +- stdlib/atol.c | 2 +- stdlib/atoll.c | 2 +- stdlib/bits/monetary-ldbl.h | 2 +- stdlib/bits/stdlib-float.h | 2 +- stdlib/bits/stdlib-ldbl.h | 2 +- stdlib/bits/stdlib.h | 2 +- stdlib/bsearch.c | 2 +- stdlib/bug-strtod.c | 2 +- stdlib/canonicalize.c | 2 +- stdlib/cmp.c | 2 +- stdlib/cxa_at_quick_exit.c | 2 +- stdlib/cxa_atexit.c | 2 +- stdlib/cxa_finalize.c | 2 +- stdlib/cxa_thread_atexit_impl.c | 2 +- stdlib/dbl2mpn.c | 2 +- stdlib/div.c | 2 +- stdlib/divmod_1.c | 2 +- stdlib/divrem.c | 2 +- stdlib/drand48-iter.c | 2 +- stdlib/drand48.c | 2 +- stdlib/drand48_r.c | 2 +- stdlib/erand48.c | 2 +- stdlib/erand48_r.c | 2 +- stdlib/errno.h | 2 +- stdlib/exit.c | 2 +- stdlib/exit.h | 2 +- stdlib/fmtmsg.c | 2 +- stdlib/fmtmsg.h | 2 +- stdlib/fpioconst.c | 2 +- stdlib/fpioconst.h | 2 +- stdlib/gen-fpioconst.c | 2 +- stdlib/gen-tst-strtod-round.c | 2 +- stdlib/getcontext.c | 2 +- stdlib/getenv.c | 2 +- stdlib/getsubopt.c | 2 +- stdlib/gmp-impl.h | 2 +- stdlib/gmp.h | 2 +- stdlib/grouping.c | 2 +- stdlib/grouping.h | 2 +- stdlib/isomac.c | 2 +- stdlib/jrand48.c | 2 +- stdlib/jrand48_r.c | 2 +- stdlib/l64a.c | 2 +- stdlib/labs.c | 2 +- stdlib/lcong48.c | 2 +- stdlib/lcong48_r.c | 2 +- stdlib/ldiv.c | 2 +- stdlib/llabs.c | 2 +- stdlib/lldiv.c | 2 +- stdlib/longlong.h | 2 +- stdlib/lrand48.c | 2 +- stdlib/lrand48_r.c | 2 +- stdlib/lshift.c | 2 +- stdlib/makecontext.c | 2 +- stdlib/mblen.c | 2 +- stdlib/mbstowcs.c | 2 +- stdlib/mbtowc.c | 2 +- stdlib/mod_1.c | 2 +- stdlib/monetary.h | 2 +- stdlib/mp_clz_tab.c | 2 +- stdlib/mpn2dbl.c | 2 +- stdlib/mpn2flt.c | 2 +- stdlib/mrand48.c | 2 +- stdlib/mrand48_r.c | 2 +- stdlib/msort.c | 2 +- stdlib/mul.c | 2 +- stdlib/mul_1.c | 2 +- stdlib/mul_n.c | 2 +- stdlib/nrand48.c | 2 +- stdlib/nrand48_r.c | 2 +- stdlib/on_exit.c | 2 +- stdlib/putenv.c | 2 +- stdlib/qsort.c | 2 +- stdlib/quick_exit.c | 2 +- stdlib/rand.c | 2 +- stdlib/rand_r.c | 2 +- stdlib/random.c | 2 +- stdlib/random_r.c | 2 +- stdlib/rpmatch.c | 2 +- stdlib/rshift.c | 2 +- stdlib/secure-getenv.c | 2 +- stdlib/seed48.c | 2 +- stdlib/seed48_r.c | 2 +- stdlib/setcontext.c | 2 +- stdlib/setenv.c | 2 +- stdlib/srand48.c | 2 +- stdlib/srand48_r.c | 2 +- stdlib/stdlib.h | 2 +- stdlib/strfmon.c | 2 +- stdlib/strfmon_l.c | 2 +- stdlib/strtod.c | 2 +- stdlib/strtod_l.c | 2 +- stdlib/strtof.c | 2 +- stdlib/strtof_l.c | 2 +- stdlib/strtol.c | 2 +- stdlib/strtol_l.c | 2 +- stdlib/strtold.c | 2 +- stdlib/strtold_l.c | 2 +- stdlib/strtoll.c | 2 +- stdlib/strtoll_l.c | 2 +- stdlib/strtoul.c | 2 +- stdlib/strtoul_l.c | 2 +- stdlib/strtoull.c | 2 +- stdlib/strtoull_l.c | 2 +- stdlib/sub_n.c | 2 +- stdlib/submul_1.c | 2 +- stdlib/swapcontext.c | 2 +- stdlib/system.c | 2 +- stdlib/test-a64l.c | 2 +- stdlib/test-canon.c | 2 +- stdlib/test-canon2.c | 2 +- stdlib/testdiv.c | 2 +- stdlib/testrand.c | 2 +- stdlib/tst-bsearch.c | 2 +- stdlib/tst-environ.c | 2 +- stdlib/tst-fmtmsg.sh | 2 +- stdlib/tst-makecontext.c | 2 +- stdlib/tst-makecontext2.c | 2 +- stdlib/tst-makecontext3.c | 2 +- stdlib/tst-random2.c | 2 +- stdlib/tst-secure-getenv.c | 2 +- stdlib/tst-setcontext.c | 2 +- stdlib/tst-strtod-overflow.c | 2 +- stdlib/tst-strtod-round.c | 2 +- stdlib/tst-strtod-underflow.c | 2 +- stdlib/tst-strtod.c | 2 +- stdlib/tst-system.c | 2 +- stdlib/tst-tininess.c | 2 +- stdlib/tst-tls-atexit-lib.c | 2 +- stdlib/tst-tls-atexit.c | 2 +- stdlib/tst-xpg-basename.c | 2 +- stdlib/ucontext.h | 2 +- stdlib/wcstombs.c | 2 +- stdlib/wctomb.c | 2 +- stdlib/xpg_basename.c | 2 +- streams/Makefile | 2 +- streams/fattach.c | 2 +- streams/fdetach.c | 2 +- streams/getmsg.c | 2 +- streams/getpmsg.c | 2 +- streams/isastream.c | 2 +- streams/putmsg.c | 2 +- streams/putpmsg.c | 2 +- streams/stropts.h | 2 +- string/Makefile | 2 +- string/_strerror.c | 2 +- string/argz-addsep.c | 2 +- string/argz-append.c | 2 +- string/argz-count.c | 2 +- string/argz-create.c | 2 +- string/argz-ctsep.c | 2 +- string/argz-delete.c | 2 +- string/argz-extract.c | 2 +- string/argz-insert.c | 2 +- string/argz-next.c | 2 +- string/argz-replace.c | 2 +- string/argz-stringify.c | 2 +- string/argz.h | 2 +- string/basename.c | 2 +- string/bcopy.c | 2 +- string/bits/string2.h | 2 +- string/bits/string3.h | 2 +- string/byteswap.h | 2 +- string/bzero.c | 2 +- string/endian.h | 2 +- string/envz.c | 2 +- string/envz.h | 2 +- string/ffs.c | 2 +- string/ffsll.c | 2 +- string/memccpy.c | 2 +- string/memchr.c | 2 +- string/memcmp.c | 2 +- string/memcpy.c | 2 +- string/memfrob.c | 2 +- string/memmem.c | 2 +- string/memmove.c | 2 +- string/memory.h | 2 +- string/mempcpy.c | 2 +- string/memrchr.c | 2 +- string/memset.c | 2 +- string/rawmemchr.c | 2 +- string/stpcpy.c | 2 +- string/stpncpy.c | 2 +- string/str-two-way.h | 2 +- string/stratcliff.c | 2 +- string/strcasecmp.c | 2 +- string/strcasecmp_l.c | 2 +- string/strcasestr.c | 2 +- string/strcat.c | 2 +- string/strchr.c | 2 +- string/strchrnul.c | 2 +- string/strcmp.c | 2 +- string/strcoll.c | 2 +- string/strcoll_l.c | 2 +- string/strcpy.c | 2 +- string/strcspn.c | 2 +- string/strdup.c | 2 +- string/strerror.c | 2 +- string/strerror_l.c | 2 +- string/strfry.c | 2 +- string/string-inlines.c | 2 +- string/string.h | 2 +- string/strings.h | 2 +- string/strlen.c | 2 +- string/strncase.c | 2 +- string/strncase_l.c | 2 +- string/strncat.c | 2 +- string/strncmp.c | 2 +- string/strncpy.c | 2 +- string/strndup.c | 2 +- string/strnlen.c | 2 +- string/strpbrk.c | 2 +- string/strrchr.c | 2 +- string/strsep.c | 2 +- string/strsignal.c | 2 +- string/strspn.c | 2 +- string/strstr.c | 2 +- string/strtok.c | 2 +- string/strtok_r.c | 2 +- string/strverscmp.c | 2 +- string/strxfrm.c | 2 +- string/strxfrm_l.c | 2 +- string/swab.c | 2 +- string/test-bcopy.c | 2 +- string/test-bzero.c | 2 +- string/test-ffs.c | 2 +- string/test-memccpy.c | 2 +- string/test-memchr.c | 2 +- string/test-memcmp.c | 2 +- string/test-memcpy.c | 2 +- string/test-memmem.c | 2 +- string/test-memmove.c | 2 +- string/test-mempcpy.c | 2 +- string/test-memrchr.c | 2 +- string/test-memset.c | 2 +- string/test-rawmemchr.c | 2 +- string/test-stpcpy.c | 2 +- string/test-stpncpy.c | 2 +- string/test-strcasecmp.c | 2 +- string/test-strcasestr.c | 2 +- string/test-strcat.c | 2 +- string/test-strchr.c | 2 +- string/test-strchrnul.c | 2 +- string/test-strcmp.c | 2 +- string/test-strcpy.c | 2 +- string/test-strcspn.c | 2 +- string/test-string.h | 2 +- string/test-strlen.c | 2 +- string/test-strncasecmp.c | 2 +- string/test-strncat.c | 2 +- string/test-strncmp.c | 2 +- string/test-strncpy.c | 2 +- string/test-strnlen.c | 2 +- string/test-strpbrk.c | 2 +- string/test-strrchr.c | 2 +- string/test-strspn.c | 2 +- string/test-strstr.c | 2 +- string/testcopy.c | 2 +- string/tester.c | 2 +- string/tst-bswap.c | 2 +- string/tst-inlcall.c | 2 +- string/tst-strcoll-overflow.c | 2 +- string/tst-strtok_r.c | 2 +- string/wordcopy.c | 2 +- string/xpg-strerror.c | 2 +- sunrpc/Makefile | 2 +- sunrpc/create_xid.c | 2 +- sunrpc/netname.c | 2 +- sunrpc/publickey.c | 2 +- sunrpc/rpc/auth_des.h | 2 +- sunrpc/rpc/svc.h | 2 +- sunrpc/rpcsvc/bootparam.h | 2 +- sunrpc/svc.c | 2 +- sunrpc/svc_tcp.c | 2 +- sunrpc/svc_udp.c | 2 +- sunrpc/svc_unix.c | 2 +- sunrpc/tst-xdrmem.c | 2 +- sunrpc/tst-xdrmem2.c | 2 +- sunrpc/xdr_intXX_t.c | 2 +- sysdeps/generic/Makefile | 2 +- sysdeps/generic/_itoa.h | 2 +- sysdeps/generic/aio_misc.h | 2 +- sysdeps/generic/bits/hwcap.h | 2 +- sysdeps/generic/device-nrs.h | 2 +- sysdeps/generic/dirstream.h | 2 +- sysdeps/generic/dl-cache.h | 2 +- sysdeps/generic/dl-dtprocnum.h | 2 +- sysdeps/generic/dl-fptr.h | 2 +- sysdeps/generic/dl-hash.h | 2 +- sysdeps/generic/dl-irel.h | 2 +- sysdeps/generic/dl-librecon.h | 2 +- sysdeps/generic/dl-lookupcfg.h | 2 +- sysdeps/generic/dl-machine.h | 2 +- sysdeps/generic/dl-osinfo.h | 2 +- sysdeps/generic/dl-procinfo.h | 2 +- sysdeps/generic/dl-sysdep.h | 2 +- sysdeps/generic/dwarf2.h | 2 +- sysdeps/generic/eloop-threshold.h | 2 +- sysdeps/generic/fd_to_filename.h | 2 +- sysdeps/generic/fips-private.h | 2 +- sysdeps/generic/fpu_control.h | 2 +- sysdeps/generic/frame.h | 2 +- sysdeps/generic/framestate.c | 2 +- sysdeps/generic/gccframe.h | 2 +- sysdeps/generic/get-rounding-mode.h | 2 +- sysdeps/generic/gmp-mparam.h | 2 +- sysdeps/generic/hp-timing.h | 2 +- sysdeps/generic/ifreq.h | 2 +- sysdeps/generic/inttypes.h | 2 +- sysdeps/generic/ldconfig.h | 2 +- sysdeps/generic/ldsodefs.h | 2 +- sysdeps/generic/libc-mmap.h | 2 +- sysdeps/generic/machine-gmon.h | 2 +- sysdeps/generic/machine-lock.h | 2 +- sysdeps/generic/machine-sp.h | 2 +- sysdeps/generic/malloc-machine.h | 2 +- sysdeps/generic/malloc-sysdep.h | 2 +- sysdeps/generic/math-tests.h | 2 +- sysdeps/generic/memcopy.h | 2 +- sysdeps/generic/memusage.h | 2 +- sysdeps/generic/net/if.h | 2 +- sysdeps/generic/netinet/if_ether.h | 2 +- sysdeps/generic/netinet/in_systm.h | 2 +- sysdeps/generic/netinet/ip.h | 2 +- sysdeps/generic/nfs/nfs.h | 2 +- sysdeps/generic/not-cancel.h | 2 +- sysdeps/generic/nscd-types.h | 2 +- sysdeps/generic/pagecopy.h | 2 +- sysdeps/generic/profil-counter.h | 2 +- sysdeps/generic/pty-private.h | 2 +- sysdeps/generic/register-dump.h | 2 +- sysdeps/generic/sigcontextinfo.h | 2 +- sysdeps/generic/siglist.h | 2 +- sysdeps/generic/sigset-cvt-mask.h | 2 +- sysdeps/generic/stackinfo.h | 2 +- sysdeps/generic/stdint.h | 2 +- sysdeps/generic/sys/ptrace.h | 2 +- sysdeps/generic/sys/swap.h | 2 +- sysdeps/generic/sys/sysinfo.h | 2 +- sysdeps/generic/sys/sysmacros.h | 2 +- sysdeps/generic/sys/ucontext.h | 2 +- sysdeps/generic/sysdep.h | 2 +- sysdeps/generic/testrtsig.h | 2 +- sysdeps/generic/thread_state.h | 2 +- sysdeps/generic/tininess.h | 2 +- sysdeps/generic/tls.h | 2 +- sysdeps/generic/tst-stack-align.h | 2 +- sysdeps/generic/unwind-dw2-fde-glibc.c | 2 +- sysdeps/generic/unwind-dw2-fde.c | 2 +- sysdeps/generic/unwind-dw2-fde.h | 2 +- sysdeps/generic/unwind-dw2.c | 2 +- sysdeps/generic/unwind-pe.h | 2 +- sysdeps/generic/unwind.h | 2 +- sysdeps/generic/utmp-equal.h | 2 +- sysdeps/gnu/Makefile | 2 +- sysdeps/gnu/bits/ipc.h | 2 +- sysdeps/gnu/bits/msq.h | 2 +- sysdeps/gnu/bits/sem.h | 2 +- sysdeps/gnu/bits/shm.h | 2 +- sysdeps/gnu/bits/utmp.h | 2 +- sysdeps/gnu/bits/utmpx.h | 2 +- sysdeps/gnu/errlist-compat.awk | 2 +- sysdeps/gnu/errlist.awk | 2 +- sysdeps/gnu/getutmp.c | 2 +- sysdeps/gnu/ifaddrs.c | 2 +- sysdeps/gnu/ldsodefs.h | 2 +- sysdeps/gnu/net/if.h | 2 +- sysdeps/gnu/netinet/ip_icmp.h | 2 +- sysdeps/gnu/netinet/udp.h | 2 +- sysdeps/gnu/siglist.c | 2 +- sysdeps/gnu/sys/mtio.h | 2 +- sysdeps/gnu/unwind-resume.c | 2 +- sysdeps/gnu/updwtmp.c | 2 +- sysdeps/gnu/utmp_file.c | 2 +- sysdeps/gnu/utmpx.h | 2 +- sysdeps/i386/__longjmp.S | 2 +- sysdeps/i386/add_n.S | 2 +- sysdeps/i386/addmul_1.S | 2 +- sysdeps/i386/asm-syntax.h | 2 +- sysdeps/i386/backtrace.c | 2 +- sysdeps/i386/bsd-_setjmp.S | 2 +- sysdeps/i386/bsd-setjmp.S | 2 +- sysdeps/i386/bzero.c | 2 +- sysdeps/i386/crti.S | 2 +- sysdeps/i386/crtn.S | 2 +- sysdeps/i386/dl-irel.h | 2 +- sysdeps/i386/dl-lookupcfg.h | 2 +- sysdeps/i386/dl-machine.h | 2 +- sysdeps/i386/dl-procinfo.c | 2 +- sysdeps/i386/dl-procinfo.h | 2 +- sysdeps/i386/dl-tls.h | 2 +- sysdeps/i386/dl-tlsdesc.S | 2 +- sysdeps/i386/dl-tlsdesc.h | 2 +- sysdeps/i386/dl-trampoline.S | 2 +- sysdeps/i386/ffs.c | 2 +- sysdeps/i386/fpu/e_acosh.S | 2 +- sysdeps/i386/fpu/e_acoshf.S | 2 +- sysdeps/i386/fpu/e_acoshl.S | 2 +- sysdeps/i386/fpu/e_atanh.S | 2 +- sysdeps/i386/fpu/e_atanhf.S | 2 +- sysdeps/i386/fpu/e_atanhl.S | 2 +- sysdeps/i386/fpu/e_hypot.S | 2 +- sysdeps/i386/fpu/e_hypotf.S | 2 +- sysdeps/i386/fpu/e_pow.S | 2 +- sysdeps/i386/fpu/e_powf.S | 2 +- sysdeps/i386/fpu/e_powl.S | 2 +- sysdeps/i386/fpu/fclrexcpt.c | 2 +- sysdeps/i386/fpu/fedisblxcpt.c | 2 +- sysdeps/i386/fpu/feenablxcpt.c | 2 +- sysdeps/i386/fpu/fegetenv.c | 2 +- sysdeps/i386/fpu/fegetexcept.c | 2 +- sysdeps/i386/fpu/fegetround.c | 2 +- sysdeps/i386/fpu/feholdexcpt.c | 2 +- sysdeps/i386/fpu/fesetenv.c | 2 +- sysdeps/i386/fpu/fesetround.c | 2 +- sysdeps/i386/fpu/feupdateenv.c | 2 +- sysdeps/i386/fpu/fgetexcptflg.c | 2 +- sysdeps/i386/fpu/fraiseexcpt.c | 2 +- sysdeps/i386/fpu/fsetexcptflg.c | 2 +- sysdeps/i386/fpu/ftestexcept.c | 2 +- sysdeps/i386/fpu/math-tests.h | 2 +- sysdeps/i386/fpu/s_asinh.S | 2 +- sysdeps/i386/fpu/s_asinhf.S | 2 +- sysdeps/i386/fpu/s_asinhl.S | 2 +- sysdeps/i386/fpu/s_cbrt.S | 2 +- sysdeps/i386/fpu/s_cbrtf.S | 2 +- sysdeps/i386/fpu/s_cbrtl.S | 2 +- sysdeps/i386/fpu/s_expm1.S | 2 +- sysdeps/i386/fpu/s_expm1f.S | 2 +- sysdeps/i386/fpu/s_fdim.S | 2 +- sysdeps/i386/fpu/s_fdimf.S | 2 +- sysdeps/i386/fpu/s_fdiml.S | 2 +- sysdeps/i386/fpu/s_fmax.S | 2 +- sysdeps/i386/fpu/s_fmaxf.S | 2 +- sysdeps/i386/fpu/s_fmaxl.S | 2 +- sysdeps/i386/fpu/s_fmin.S | 2 +- sysdeps/i386/fpu/s_fminf.S | 2 +- sysdeps/i386/fpu/s_fminl.S | 2 +- sysdeps/i386/fpu/s_fpclassifyl.c | 2 +- sysdeps/i386/fpu/s_frexp.S | 2 +- sysdeps/i386/fpu/s_frexpf.S | 2 +- sysdeps/i386/fpu/s_frexpl.S | 2 +- sysdeps/i386/fpu/s_llrint.S | 2 +- sysdeps/i386/fpu/s_llrintf.S | 2 +- sysdeps/i386/fpu/s_llrintl.S | 2 +- sysdeps/i386/fpu/s_lrint.S | 2 +- sysdeps/i386/fpu/s_lrintf.S | 2 +- sysdeps/i386/fpu/s_lrintl.S | 2 +- sysdeps/i386/fpu/s_trunc.S | 2 +- sysdeps/i386/fpu/s_truncf.S | 2 +- sysdeps/i386/fpu/s_truncl.S | 2 +- sysdeps/i386/gccframe.h | 2 +- sysdeps/i386/gmp-mparam.h | 2 +- sysdeps/i386/htonl.S | 2 +- sysdeps/i386/htons.S | 2 +- sysdeps/i386/i386-mcount.S | 2 +- sysdeps/i386/i486/bits/atomic.h | 2 +- sysdeps/i386/i486/htonl.S | 2 +- sysdeps/i386/i486/strcat.S | 2 +- sysdeps/i386/i486/string-inlines.c | 2 +- sysdeps/i386/i486/strlen.S | 2 +- sysdeps/i386/i586/add_n.S | 2 +- sysdeps/i386/i586/addmul_1.S | 2 +- sysdeps/i386/i586/lshift.S | 2 +- sysdeps/i386/i586/memcopy.h | 2 +- sysdeps/i386/i586/memcpy.S | 2 +- sysdeps/i386/i586/memset.S | 2 +- sysdeps/i386/i586/mul_1.S | 2 +- sysdeps/i386/i586/rshift.S | 2 +- sysdeps/i386/i586/strchr.S | 2 +- sysdeps/i386/i586/strcpy.S | 2 +- sysdeps/i386/i586/strlen.S | 2 +- sysdeps/i386/i586/sub_n.S | 2 +- sysdeps/i386/i586/submul_1.S | 2 +- sysdeps/i386/i686/add_n.S | 2 +- sysdeps/i386/i686/dl-hash.h | 2 +- sysdeps/i386/i686/ffs.c | 2 +- sysdeps/i386/i686/fpu/multiarch/e_expf-ia32.S | 2 +- sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S | 2 +- sysdeps/i386/i686/fpu/multiarch/e_expf.c | 2 +- sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S | 2 +- sysdeps/i386/i686/fpu/multiarch/s_cosf.c | 2 +- sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S | 2 +- sysdeps/i386/i686/fpu/multiarch/s_sincosf.c | 2 +- sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S | 2 +- sysdeps/i386/i686/fpu/multiarch/s_sinf.c | 2 +- sysdeps/i386/i686/fpu/s_fdim.S | 2 +- sysdeps/i386/i686/fpu/s_fdimf.S | 2 +- sysdeps/i386/i686/fpu/s_fdiml.S | 2 +- sysdeps/i386/i686/fpu/s_fmax.S | 2 +- sysdeps/i386/i686/fpu/s_fmaxf.S | 2 +- sysdeps/i386/i686/fpu/s_fmaxl.S | 2 +- sysdeps/i386/i686/fpu/s_fmin.S | 2 +- sysdeps/i386/i686/fpu/s_fminf.S | 2 +- sysdeps/i386/i686/fpu/s_fminl.S | 2 +- sysdeps/i386/i686/hp-timing.c | 2 +- sysdeps/i386/i686/hp-timing.h | 2 +- sysdeps/i386/i686/memcmp.S | 2 +- sysdeps/i386/i686/memcpy.S | 2 +- sysdeps/i386/i686/memcpy_chk.S | 2 +- sysdeps/i386/i686/memmove.S | 2 +- sysdeps/i386/i686/memmove_chk.S | 2 +- sysdeps/i386/i686/mempcpy.S | 2 +- sysdeps/i386/i686/mempcpy_chk.S | 2 +- sysdeps/i386/i686/memset.S | 2 +- sysdeps/i386/i686/memset_chk.S | 2 +- sysdeps/i386/i686/memusage.h | 2 +- sysdeps/i386/i686/multiarch/bcopy.S | 2 +- sysdeps/i386/i686/multiarch/bzero.S | 2 +- sysdeps/i386/i686/multiarch/ifunc-impl-list.c | 2 +- sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S | 2 +- sysdeps/i386/i686/multiarch/memchr-sse2.S | 2 +- sysdeps/i386/i686/multiarch/memchr.S | 2 +- sysdeps/i386/i686/multiarch/memcmp-sse4.S | 2 +- sysdeps/i386/i686/multiarch/memcmp-ssse3.S | 2 +- sysdeps/i386/i686/multiarch/memcmp.S | 2 +- sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S | 2 +- sysdeps/i386/i686/multiarch/memcpy-ssse3.S | 2 +- sysdeps/i386/i686/multiarch/memcpy.S | 2 +- sysdeps/i386/i686/multiarch/memcpy_chk.S | 2 +- sysdeps/i386/i686/multiarch/memmove.S | 2 +- sysdeps/i386/i686/multiarch/memmove_chk.S | 2 +- sysdeps/i386/i686/multiarch/mempcpy.S | 2 +- sysdeps/i386/i686/multiarch/mempcpy_chk.S | 2 +- sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S | 2 +- sysdeps/i386/i686/multiarch/memrchr-sse2.S | 2 +- sysdeps/i386/i686/multiarch/memrchr.S | 2 +- sysdeps/i386/i686/multiarch/memset-sse2-rep.S | 2 +- sysdeps/i386/i686/multiarch/memset-sse2.S | 2 +- sysdeps/i386/i686/multiarch/memset.S | 2 +- sysdeps/i386/i686/multiarch/memset_chk.S | 2 +- sysdeps/i386/i686/multiarch/rawmemchr.S | 2 +- sysdeps/i386/i686/multiarch/s_fma-fma.c | 2 +- sysdeps/i386/i686/multiarch/s_fma.c | 2 +- sysdeps/i386/i686/multiarch/s_fmaf-fma.c | 2 +- sysdeps/i386/i686/multiarch/s_fmaf.c | 2 +- sysdeps/i386/i686/multiarch/strcasecmp.S | 2 +- sysdeps/i386/i686/multiarch/strcat-sse2.S | 2 +- sysdeps/i386/i686/multiarch/strcat-ssse3.S | 2 +- sysdeps/i386/i686/multiarch/strcat.S | 2 +- sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S | 2 +- sysdeps/i386/i686/multiarch/strchr-sse2.S | 2 +- sysdeps/i386/i686/multiarch/strchr.S | 2 +- sysdeps/i386/i686/multiarch/strcmp-sse4.S | 2 +- sysdeps/i386/i686/multiarch/strcmp-ssse3.S | 2 +- sysdeps/i386/i686/multiarch/strcmp.S | 2 +- sysdeps/i386/i686/multiarch/strcpy-sse2.S | 2 +- sysdeps/i386/i686/multiarch/strcpy-ssse3.S | 2 +- sysdeps/i386/i686/multiarch/strcpy.S | 2 +- sysdeps/i386/i686/multiarch/strcspn.S | 2 +- sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S | 2 +- sysdeps/i386/i686/multiarch/strlen-sse2.S | 2 +- sysdeps/i386/i686/multiarch/strlen.S | 2 +- sysdeps/i386/i686/multiarch/strncase.S | 2 +- sysdeps/i386/i686/multiarch/strnlen.S | 2 +- sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S | 2 +- sysdeps/i386/i686/multiarch/strrchr-sse2.S | 2 +- sysdeps/i386/i686/multiarch/strrchr.S | 2 +- sysdeps/i386/i686/multiarch/strspn.S | 2 +- sysdeps/i386/i686/multiarch/wcschr-sse2.S | 2 +- sysdeps/i386/i686/multiarch/wcschr.S | 2 +- sysdeps/i386/i686/multiarch/wcscmp-sse2.S | 2 +- sysdeps/i386/i686/multiarch/wcscmp.S | 2 +- sysdeps/i386/i686/multiarch/wcscpy-ssse3.S | 2 +- sysdeps/i386/i686/multiarch/wcscpy.S | 2 +- sysdeps/i386/i686/multiarch/wcslen-sse2.S | 2 +- sysdeps/i386/i686/multiarch/wcslen.S | 2 +- sysdeps/i386/i686/multiarch/wcsrchr-sse2.S | 2 +- sysdeps/i386/i686/multiarch/wcsrchr.S | 2 +- sysdeps/i386/i686/multiarch/wmemcmp.S | 2 +- sysdeps/i386/i686/strcmp.S | 2 +- sysdeps/i386/i686/strtok.S | 2 +- sysdeps/i386/i686/tst-stack-align.h | 2 +- sysdeps/i386/jmpbuf-offsets.h | 2 +- sysdeps/i386/jmpbuf-unwind.h | 2 +- sysdeps/i386/ldbl2mpn.c | 2 +- sysdeps/i386/ldsodefs.h | 2 +- sysdeps/i386/lshift.S | 2 +- sysdeps/i386/machine-gmon.h | 2 +- sysdeps/i386/memchr.S | 2 +- sysdeps/i386/memcmp.S | 2 +- sysdeps/i386/memcopy.h | 2 +- sysdeps/i386/memset.c | 2 +- sysdeps/i386/memusage.h | 2 +- sysdeps/i386/mul_1.S | 2 +- sysdeps/i386/rawmemchr.S | 2 +- sysdeps/i386/rshift.S | 2 +- sysdeps/i386/setfpucw.c | 2 +- sysdeps/i386/setjmp.S | 2 +- sysdeps/i386/stackinfo.h | 2 +- sysdeps/i386/start.S | 2 +- sysdeps/i386/stpcpy.S | 2 +- sysdeps/i386/stpncpy.S | 2 +- sysdeps/i386/strchr.S | 2 +- sysdeps/i386/strchrnul.S | 2 +- sysdeps/i386/strcspn.S | 2 +- sysdeps/i386/string-inlines.c | 2 +- sysdeps/i386/strlen.c | 2 +- sysdeps/i386/strpbrk.S | 2 +- sysdeps/i386/strrchr.S | 2 +- sysdeps/i386/strspn.S | 2 +- sysdeps/i386/strtok.S | 2 +- sysdeps/i386/sub_n.S | 2 +- sysdeps/i386/submul_1.S | 2 +- sysdeps/i386/sys/ucontext.h | 2 +- sysdeps/i386/sysdep.h | 2 +- sysdeps/i386/tlsdesc.c | 2 +- sysdeps/i386/tst-audit.h | 2 +- sysdeps/i386/tst-stack-align.h | 2 +- sysdeps/ieee754/bits/huge_val.h | 2 +- sysdeps/ieee754/bits/huge_valf.h | 2 +- sysdeps/ieee754/bits/inf.h | 2 +- sysdeps/ieee754/bits/nan.h | 2 +- sysdeps/ieee754/dbl-64/MathLib.h | 2 +- sysdeps/ieee754/dbl-64/asincos.tbl | 2 +- sysdeps/ieee754/dbl-64/atnat.h | 2 +- sysdeps/ieee754/dbl-64/atnat2.h | 2 +- sysdeps/ieee754/dbl-64/branred.c | 2 +- sysdeps/ieee754/dbl-64/branred.h | 2 +- sysdeps/ieee754/dbl-64/dbl2mpn.c | 2 +- sysdeps/ieee754/dbl-64/dla.h | 2 +- sysdeps/ieee754/dbl-64/doasin.c | 2 +- sysdeps/ieee754/dbl-64/doasin.h | 2 +- sysdeps/ieee754/dbl-64/dosincos.c | 2 +- sysdeps/ieee754/dbl-64/dosincos.h | 2 +- sysdeps/ieee754/dbl-64/e_asin.c | 2 +- sysdeps/ieee754/dbl-64/e_atan2.c | 2 +- sysdeps/ieee754/dbl-64/e_atanh.c | 2 +- sysdeps/ieee754/dbl-64/e_exp.c | 2 +- sysdeps/ieee754/dbl-64/e_exp10.c | 2 +- sysdeps/ieee754/dbl-64/e_exp2.c | 2 +- sysdeps/ieee754/dbl-64/e_gamma_r.c | 2 +- sysdeps/ieee754/dbl-64/e_log.c | 2 +- sysdeps/ieee754/dbl-64/e_pow.c | 2 +- sysdeps/ieee754/dbl-64/e_remainder.c | 2 +- sysdeps/ieee754/dbl-64/e_sqrt.c | 2 +- sysdeps/ieee754/dbl-64/gamma_product.c | 2 +- sysdeps/ieee754/dbl-64/gamma_productf.c | 2 +- sysdeps/ieee754/dbl-64/halfulp.c | 2 +- sysdeps/ieee754/dbl-64/mpa-arch.h | 2 +- sysdeps/ieee754/dbl-64/mpa.c | 2 +- sysdeps/ieee754/dbl-64/mpa.h | 2 +- sysdeps/ieee754/dbl-64/mpatan.c | 2 +- sysdeps/ieee754/dbl-64/mpatan.h | 2 +- sysdeps/ieee754/dbl-64/mpatan2.c | 2 +- sysdeps/ieee754/dbl-64/mpexp.c | 2 +- sysdeps/ieee754/dbl-64/mplog.c | 2 +- sysdeps/ieee754/dbl-64/mpn2dbl.c | 2 +- sysdeps/ieee754/dbl-64/mpsqrt.c | 2 +- sysdeps/ieee754/dbl-64/mpsqrt.h | 2 +- sysdeps/ieee754/dbl-64/mptan.c | 2 +- sysdeps/ieee754/dbl-64/mydefs.h | 2 +- sysdeps/ieee754/dbl-64/powtwo.tbl | 2 +- sysdeps/ieee754/dbl-64/root.tbl | 2 +- sysdeps/ieee754/dbl-64/s_atan.c | 2 +- sysdeps/ieee754/dbl-64/s_cbrt.c | 2 +- sysdeps/ieee754/dbl-64/s_fma.c | 2 +- sysdeps/ieee754/dbl-64/s_fmaf.c | 2 +- sysdeps/ieee754/dbl-64/s_fpclassify.c | 2 +- sysdeps/ieee754/dbl-64/s_issignaling.c | 2 +- sysdeps/ieee754/dbl-64/s_llrint.c | 2 +- sysdeps/ieee754/dbl-64/s_llround.c | 2 +- sysdeps/ieee754/dbl-64/s_lrint.c | 2 +- sysdeps/ieee754/dbl-64/s_lround.c | 2 +- sysdeps/ieee754/dbl-64/s_remquo.c | 2 +- sysdeps/ieee754/dbl-64/s_round.c | 2 +- sysdeps/ieee754/dbl-64/s_signbit.c | 2 +- sysdeps/ieee754/dbl-64/s_sin.c | 2 +- sysdeps/ieee754/dbl-64/s_sincos.c | 2 +- sysdeps/ieee754/dbl-64/s_tan.c | 2 +- sysdeps/ieee754/dbl-64/s_trunc.c | 2 +- sysdeps/ieee754/dbl-64/sincos32.c | 2 +- sysdeps/ieee754/dbl-64/sincos32.h | 2 +- sysdeps/ieee754/dbl-64/sincostab.c | 2 +- sysdeps/ieee754/dbl-64/slowexp.c | 2 +- sysdeps/ieee754/dbl-64/slowpow.c | 2 +- sysdeps/ieee754/dbl-64/t_exp.c | 2 +- sysdeps/ieee754/dbl-64/uasncs.h | 2 +- sysdeps/ieee754/dbl-64/uatan.tbl | 2 +- sysdeps/ieee754/dbl-64/uexp.h | 2 +- sysdeps/ieee754/dbl-64/uexp.tbl | 2 +- sysdeps/ieee754/dbl-64/ulog.h | 2 +- sysdeps/ieee754/dbl-64/ulog.tbl | 2 +- sysdeps/ieee754/dbl-64/upow.h | 2 +- sysdeps/ieee754/dbl-64/upow.tbl | 2 +- sysdeps/ieee754/dbl-64/urem.h | 2 +- sysdeps/ieee754/dbl-64/uroot.h | 2 +- sysdeps/ieee754/dbl-64/usncs.h | 2 +- sysdeps/ieee754/dbl-64/utan.h | 2 +- sysdeps/ieee754/dbl-64/utan.tbl | 2 +- sysdeps/ieee754/dbl-64/w_exp.c | 2 +- sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c | 2 +- sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c | 2 +- sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c | 2 +- sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c | 2 +- sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c | 2 +- sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c | 2 +- sysdeps/ieee754/dbl-64/wordsize-64/s_round.c | 2 +- sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c | 2 +- sysdeps/ieee754/dbl-64/x2y2m1.c | 2 +- sysdeps/ieee754/dbl-64/x2y2m1f.c | 2 +- sysdeps/ieee754/flt-32/e_atanhf.c | 2 +- sysdeps/ieee754/flt-32/e_exp2f.c | 2 +- sysdeps/ieee754/flt-32/e_expf.c | 2 +- sysdeps/ieee754/flt-32/e_gammaf_r.c | 2 +- sysdeps/ieee754/flt-32/mpn2flt.c | 2 +- sysdeps/ieee754/flt-32/s_cbrtf.c | 2 +- sysdeps/ieee754/flt-32/s_fpclassifyf.c | 2 +- sysdeps/ieee754/flt-32/s_issignalingf.c | 2 +- sysdeps/ieee754/flt-32/s_llrintf.c | 2 +- sysdeps/ieee754/flt-32/s_llroundf.c | 2 +- sysdeps/ieee754/flt-32/s_lrintf.c | 2 +- sysdeps/ieee754/flt-32/s_lroundf.c | 2 +- sysdeps/ieee754/flt-32/s_remquof.c | 2 +- sysdeps/ieee754/flt-32/s_roundf.c | 2 +- sysdeps/ieee754/flt-32/s_signbitf.c | 2 +- sysdeps/ieee754/flt-32/s_sincosf.c | 2 +- sysdeps/ieee754/flt-32/s_truncf.c | 2 +- sysdeps/ieee754/flt-32/t_exp2f.h | 2 +- sysdeps/ieee754/flt-32/w_expf.c | 2 +- sysdeps/ieee754/ieee754.h | 2 +- sysdeps/ieee754/ldbl-128/e_exp10l.c | 2 +- sysdeps/ieee754/ldbl-128/e_expl.c | 2 +- sysdeps/ieee754/ldbl-128/e_gammal_r.c | 2 +- sysdeps/ieee754/ldbl-128/e_rem_pio2l.c | 2 +- sysdeps/ieee754/ldbl-128/gamma_productl.c | 2 +- sysdeps/ieee754/ldbl-128/ieee754.h | 2 +- sysdeps/ieee754/ldbl-128/k_cosl.c | 2 +- sysdeps/ieee754/ldbl-128/k_sincosl.c | 2 +- sysdeps/ieee754/ldbl-128/k_sinl.c | 2 +- sysdeps/ieee754/ldbl-128/ldbl2mpn.c | 2 +- sysdeps/ieee754/ldbl-128/mpn2ldbl.c | 2 +- sysdeps/ieee754/ldbl-128/printf_fphex.c | 2 +- sysdeps/ieee754/ldbl-128/s_fma.c | 2 +- sysdeps/ieee754/ldbl-128/s_fmal.c | 2 +- sysdeps/ieee754/ldbl-128/s_fpclassifyl.c | 2 +- sysdeps/ieee754/ldbl-128/s_issignalingl.c | 2 +- sysdeps/ieee754/ldbl-128/s_llrintl.c | 2 +- sysdeps/ieee754/ldbl-128/s_llroundl.c | 2 +- sysdeps/ieee754/ldbl-128/s_lrintl.c | 2 +- sysdeps/ieee754/ldbl-128/s_lroundl.c | 2 +- sysdeps/ieee754/ldbl-128/s_remquol.c | 2 +- sysdeps/ieee754/ldbl-128/s_roundl.c | 2 +- sysdeps/ieee754/ldbl-128/s_signbitl.c | 2 +- sysdeps/ieee754/ldbl-128/s_sincosl.c | 2 +- sysdeps/ieee754/ldbl-128/s_truncl.c | 2 +- sysdeps/ieee754/ldbl-128/strtold_l.c | 2 +- sysdeps/ieee754/ldbl-128/t_expl.h | 2 +- sysdeps/ieee754/ldbl-128/t_sincosl.c | 2 +- sysdeps/ieee754/ldbl-128/x2y2m1l.c | 2 +- sysdeps/ieee754/ldbl-128ibm/e_exp10l.c | 2 +- sysdeps/ieee754/ldbl-128ibm/e_expl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c | 2 +- sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c | 2 +- sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/gamma_productl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/ieee754.h | 2 +- sysdeps/ieee754/ldbl-128ibm/k_cosl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/k_sincosl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/k_sinl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c | 2 +- sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/printf_fphex.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_ceill.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_cprojl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_ctanl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_floorl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_fmal.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_llrintl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_llroundl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_lrintl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_lroundl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_remquol.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_rintl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_roundl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_signbitl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_sincosl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/s_truncl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/strtold_l.c | 2 +- sysdeps/ieee754/ldbl-128ibm/t_sincosl.c | 2 +- sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c | 2 +- sysdeps/ieee754/ldbl-64-128/strtold_l.c | 2 +- sysdeps/ieee754/ldbl-96/e_gammal_r.c | 2 +- sysdeps/ieee754/ldbl-96/e_rem_pio2l.c | 2 +- sysdeps/ieee754/ldbl-96/gamma_product.c | 2 +- sysdeps/ieee754/ldbl-96/gamma_productl.c | 2 +- sysdeps/ieee754/ldbl-96/k_cosl.c | 2 +- sysdeps/ieee754/ldbl-96/k_sinl.c | 2 +- sysdeps/ieee754/ldbl-96/ldbl2mpn.c | 2 +- sysdeps/ieee754/ldbl-96/mpn2ldbl.c | 2 +- sysdeps/ieee754/ldbl-96/printf_fphex.c | 2 +- sysdeps/ieee754/ldbl-96/s_cbrtl.c | 2 +- sysdeps/ieee754/ldbl-96/s_fma.c | 2 +- sysdeps/ieee754/ldbl-96/s_fmal.c | 2 +- sysdeps/ieee754/ldbl-96/s_issignalingl.c | 2 +- sysdeps/ieee754/ldbl-96/s_llrintl.c | 2 +- sysdeps/ieee754/ldbl-96/s_llroundl.c | 2 +- sysdeps/ieee754/ldbl-96/s_lrintl.c | 2 +- sysdeps/ieee754/ldbl-96/s_lroundl.c | 2 +- sysdeps/ieee754/ldbl-96/s_remquol.c | 2 +- sysdeps/ieee754/ldbl-96/s_roundl.c | 2 +- sysdeps/ieee754/ldbl-96/s_signbitl.c | 2 +- sysdeps/ieee754/ldbl-96/s_sincosl.c | 2 +- sysdeps/ieee754/ldbl-96/strtold_l.c | 2 +- sysdeps/ieee754/ldbl-96/t_sincosl.c | 2 +- sysdeps/ieee754/ldbl-96/w_expl.c | 2 +- sysdeps/ieee754/ldbl-96/x2y2m1.c | 2 +- sysdeps/ieee754/ldbl-96/x2y2m1l.c | 2 +- sysdeps/ieee754/ldbl-opt/nldbl-compat.c | 2 +- sysdeps/ieee754/ldbl-opt/nldbl-compat.h | 2 +- sysdeps/init_array/elf-init.c | 2 +- sysdeps/init_array/gmon-start.c | 2 +- sysdeps/mach/Makefile | 2 +- sysdeps/mach/_strerror.c | 2 +- sysdeps/mach/adjtime.c | 2 +- sysdeps/mach/bits/libc-lock.h | 2 +- sysdeps/mach/getloadavg.c | 2 +- sysdeps/mach/getpagesize.c | 2 +- sysdeps/mach/getsysstats.c | 2 +- sysdeps/mach/gettimeofday.c | 2 +- sysdeps/mach/hurd/Makefile | 2 +- sysdeps/mach/hurd/_exit.c | 2 +- sysdeps/mach/hurd/accept.c | 2 +- sysdeps/mach/hurd/accept4.c | 2 +- sysdeps/mach/hurd/access.c | 2 +- sysdeps/mach/hurd/adjtime.c | 2 +- sysdeps/mach/hurd/bind.c | 2 +- sysdeps/mach/hurd/bits/fcntl.h | 2 +- sysdeps/mach/hurd/bits/ioctls.h | 2 +- sysdeps/mach/hurd/bits/libc-lock.h | 2 +- sysdeps/mach/hurd/bits/libc-tsd.h | 2 +- sysdeps/mach/hurd/bits/local_lim.h | 2 +- sysdeps/mach/hurd/bits/param.h | 2 +- sysdeps/mach/hurd/bits/posix_opt.h | 2 +- sysdeps/mach/hurd/bits/socket.h | 2 +- sysdeps/mach/hurd/bits/stat.h | 2 +- sysdeps/mach/hurd/bits/statfs.h | 2 +- sysdeps/mach/hurd/bits/statvfs.h | 2 +- sysdeps/mach/hurd/bits/typesizes.h | 2 +- sysdeps/mach/hurd/brk.c | 2 +- sysdeps/mach/hurd/chdir.c | 2 +- sysdeps/mach/hurd/check_fds.c | 2 +- sysdeps/mach/hurd/chflags.c | 2 +- sysdeps/mach/hurd/chmod.c | 2 +- sysdeps/mach/hurd/chown.c | 2 +- sysdeps/mach/hurd/chroot.c | 2 +- sysdeps/mach/hurd/clock.c | 2 +- sysdeps/mach/hurd/close.c | 2 +- sysdeps/mach/hurd/closedir.c | 2 +- sysdeps/mach/hurd/connect.c | 2 +- sysdeps/mach/hurd/cthreads.c | 2 +- sysdeps/mach/hurd/device-nrs.h | 2 +- sysdeps/mach/hurd/dirfd.c | 2 +- sysdeps/mach/hurd/dirstream.h | 2 +- sysdeps/mach/hurd/dl-execstack.c | 2 +- sysdeps/mach/hurd/dl-sysdep.c | 2 +- sysdeps/mach/hurd/dl-sysdep.h | 2 +- sysdeps/mach/hurd/dup2.c | 2 +- sysdeps/mach/hurd/dup3.c | 2 +- sysdeps/mach/hurd/eloop-threshold.h | 2 +- sysdeps/mach/hurd/enbl-secure.c | 2 +- sysdeps/mach/hurd/errlist.c | 2 +- sysdeps/mach/hurd/errno-loc.c | 2 +- sysdeps/mach/hurd/errnos.awk | 2 +- sysdeps/mach/hurd/euidaccess.c | 2 +- sysdeps/mach/hurd/execve.c | 2 +- sysdeps/mach/hurd/faccessat.c | 2 +- sysdeps/mach/hurd/fchdir.c | 2 +- sysdeps/mach/hurd/fchflags.c | 2 +- sysdeps/mach/hurd/fchmod.c | 2 +- sysdeps/mach/hurd/fchmodat.c | 2 +- sysdeps/mach/hurd/fchown.c | 2 +- sysdeps/mach/hurd/fchownat.c | 2 +- sysdeps/mach/hurd/fcntl.c | 2 +- sysdeps/mach/hurd/fdatasync.c | 2 +- sysdeps/mach/hurd/fdopendir.c | 2 +- sysdeps/mach/hurd/fexecve.c | 2 +- sysdeps/mach/hurd/fgetxattr.c | 2 +- sysdeps/mach/hurd/flistxattr.c | 2 +- sysdeps/mach/hurd/flock.c | 2 +- sysdeps/mach/hurd/fork.c | 2 +- sysdeps/mach/hurd/fpathconf.c | 2 +- sysdeps/mach/hurd/fremovexattr.c | 2 +- sysdeps/mach/hurd/fsetxattr.c | 2 +- sysdeps/mach/hurd/fstatfs.c | 2 +- sysdeps/mach/hurd/fstatfs64.c | 2 +- sysdeps/mach/hurd/fstatvfs.c | 2 +- sysdeps/mach/hurd/fstatvfs64.c | 2 +- sysdeps/mach/hurd/fsync.c | 2 +- sysdeps/mach/hurd/ftruncate.c | 2 +- sysdeps/mach/hurd/futimes.c | 2 +- sysdeps/mach/hurd/fxstat.c | 2 +- sysdeps/mach/hurd/fxstat64.c | 2 +- sysdeps/mach/hurd/fxstatat.c | 2 +- sysdeps/mach/hurd/fxstatat64.c | 2 +- sysdeps/mach/hurd/getclktck.c | 2 +- sysdeps/mach/hurd/getcwd.c | 2 +- sysdeps/mach/hurd/getdomain.c | 2 +- sysdeps/mach/hurd/getdtsz.c | 2 +- sysdeps/mach/hurd/getegid.c | 2 +- sysdeps/mach/hurd/geteuid.c | 2 +- sysdeps/mach/hurd/getgid.c | 2 +- sysdeps/mach/hurd/getgroups.c | 2 +- sysdeps/mach/hurd/gethostid.c | 2 +- sysdeps/mach/hurd/gethostname.c | 2 +- sysdeps/mach/hurd/getitimer.c | 2 +- sysdeps/mach/hurd/getlogin.c | 2 +- sysdeps/mach/hurd/getlogin_r.c | 2 +- sysdeps/mach/hurd/getpeername.c | 2 +- sysdeps/mach/hurd/getpgid.c | 2 +- sysdeps/mach/hurd/getpid.c | 2 +- sysdeps/mach/hurd/getppid.c | 2 +- sysdeps/mach/hurd/getpriority.c | 2 +- sysdeps/mach/hurd/getresgid.c | 2 +- sysdeps/mach/hurd/getresuid.c | 2 +- sysdeps/mach/hurd/getrlimit.c | 2 +- sysdeps/mach/hurd/getrusage.c | 2 +- sysdeps/mach/hurd/getsid.c | 2 +- sysdeps/mach/hurd/getsockname.c | 2 +- sysdeps/mach/hurd/getsockopt.c | 2 +- sysdeps/mach/hurd/getuid.c | 2 +- sysdeps/mach/hurd/getxattr.c | 2 +- sysdeps/mach/hurd/group_member.c | 2 +- sysdeps/mach/hurd/i386/____longjmp_chk.S | 2 +- sysdeps/mach/hurd/i386/bits/sigcontext.h | 2 +- sysdeps/mach/hurd/i386/exc2signal.c | 2 +- sysdeps/mach/hurd/i386/init-first.c | 2 +- sysdeps/mach/hurd/i386/intr-msg.h | 2 +- sysdeps/mach/hurd/i386/ioperm.c | 2 +- sysdeps/mach/hurd/i386/longjmp-ts.c | 2 +- sysdeps/mach/hurd/i386/sigcontextinfo.h | 2 +- sysdeps/mach/hurd/i386/sigreturn.c | 2 +- sysdeps/mach/hurd/i386/static-start.S | 2 +- sysdeps/mach/hurd/i386/sys/io.h | 2 +- sysdeps/mach/hurd/i386/tls.h | 2 +- sysdeps/mach/hurd/i386/trampoline.c | 2 +- sysdeps/mach/hurd/if_index.c | 2 +- sysdeps/mach/hurd/ifreq.c | 2 +- sysdeps/mach/hurd/ifreq.h | 2 +- sysdeps/mach/hurd/ioctl.c | 2 +- sysdeps/mach/hurd/isatty.c | 2 +- sysdeps/mach/hurd/jmp-unwind.c | 2 +- sysdeps/mach/hurd/kernel-features.h | 2 +- sysdeps/mach/hurd/kill.c | 2 +- sysdeps/mach/hurd/lchmod.c | 2 +- sysdeps/mach/hurd/lchown.c | 2 +- sysdeps/mach/hurd/lgetxattr.c | 2 +- sysdeps/mach/hurd/link.c | 2 +- sysdeps/mach/hurd/linkat.c | 2 +- sysdeps/mach/hurd/listen.c | 2 +- sysdeps/mach/hurd/listxattr.c | 2 +- sysdeps/mach/hurd/llistxattr.c | 2 +- sysdeps/mach/hurd/lremovexattr.c | 2 +- sysdeps/mach/hurd/lseek.c | 2 +- sysdeps/mach/hurd/lseek64.c | 2 +- sysdeps/mach/hurd/lsetxattr.c | 2 +- sysdeps/mach/hurd/lutimes.c | 2 +- sysdeps/mach/hurd/lxstat.c | 2 +- sysdeps/mach/hurd/lxstat64.c | 2 +- sysdeps/mach/hurd/malloc-machine.h | 2 +- sysdeps/mach/hurd/mig-reply.c | 2 +- sysdeps/mach/hurd/mkdir.c | 2 +- sysdeps/mach/hurd/mkdirat.c | 2 +- sysdeps/mach/hurd/mlock.c | 2 +- sysdeps/mach/hurd/mmap.c | 2 +- sysdeps/mach/hurd/munlock.c | 2 +- sysdeps/mach/hurd/net/ethernet.h | 2 +- sysdeps/mach/hurd/net/if_arp.h | 2 +- sysdeps/mach/hurd/net/if_ether.h | 2 +- sysdeps/mach/hurd/net/route.h | 2 +- sysdeps/mach/hurd/open.c | 2 +- sysdeps/mach/hurd/openat.c | 2 +- sysdeps/mach/hurd/opendir.c | 2 +- sysdeps/mach/hurd/pathconf.c | 2 +- sysdeps/mach/hurd/pipe.c | 2 +- sysdeps/mach/hurd/poll.c | 2 +- sysdeps/mach/hurd/ppoll.c | 2 +- sysdeps/mach/hurd/pread.c | 2 +- sysdeps/mach/hurd/pread64.c | 2 +- sysdeps/mach/hurd/profil.c | 2 +- sysdeps/mach/hurd/pselect.c | 2 +- sysdeps/mach/hurd/ptrace.c | 2 +- sysdeps/mach/hurd/ptsname.c | 2 +- sysdeps/mach/hurd/pwrite.c | 2 +- sysdeps/mach/hurd/pwrite64.c | 2 +- sysdeps/mach/hurd/read.c | 2 +- sysdeps/mach/hurd/readdir.c | 2 +- sysdeps/mach/hurd/readdir64.c | 2 +- sysdeps/mach/hurd/readdir64_r.c | 2 +- sysdeps/mach/hurd/readdir_r.c | 2 +- sysdeps/mach/hurd/readlink.c | 2 +- sysdeps/mach/hurd/readlinkat.c | 2 +- sysdeps/mach/hurd/reboot.c | 2 +- sysdeps/mach/hurd/recv.c | 2 +- sysdeps/mach/hurd/recvfrom.c | 2 +- sysdeps/mach/hurd/recvmsg.c | 2 +- sysdeps/mach/hurd/removexattr.c | 2 +- sysdeps/mach/hurd/rename.c | 2 +- sysdeps/mach/hurd/renameat.c | 2 +- sysdeps/mach/hurd/revoke.c | 2 +- sysdeps/mach/hurd/rewinddir.c | 2 +- sysdeps/mach/hurd/rmdir.c | 2 +- sysdeps/mach/hurd/sbrk.c | 2 +- sysdeps/mach/hurd/seekdir.c | 2 +- sysdeps/mach/hurd/select.c | 2 +- sysdeps/mach/hurd/send.c | 2 +- sysdeps/mach/hurd/sendfile.c | 2 +- sysdeps/mach/hurd/sendfile64.c | 2 +- sysdeps/mach/hurd/sendmsg.c | 2 +- sysdeps/mach/hurd/sendto.c | 2 +- sysdeps/mach/hurd/setdomain.c | 2 +- sysdeps/mach/hurd/setegid.c | 2 +- sysdeps/mach/hurd/seteuid.c | 2 +- sysdeps/mach/hurd/setgid.c | 2 +- sysdeps/mach/hurd/setgroups.c | 2 +- sysdeps/mach/hurd/sethostid.c | 2 +- sysdeps/mach/hurd/sethostname.c | 2 +- sysdeps/mach/hurd/setitimer.c | 2 +- sysdeps/mach/hurd/setlogin.c | 2 +- sysdeps/mach/hurd/setpgid.c | 2 +- sysdeps/mach/hurd/setpriority.c | 2 +- sysdeps/mach/hurd/setregid.c | 2 +- sysdeps/mach/hurd/setresgid.c | 2 +- sysdeps/mach/hurd/setresuid.c | 2 +- sysdeps/mach/hurd/setreuid.c | 2 +- sysdeps/mach/hurd/setrlimit.c | 2 +- sysdeps/mach/hurd/setsid.c | 2 +- sysdeps/mach/hurd/setsockopt.c | 2 +- sysdeps/mach/hurd/settimeofday.c | 2 +- sysdeps/mach/hurd/setuid.c | 2 +- sysdeps/mach/hurd/setxattr.c | 2 +- sysdeps/mach/hurd/shutdown.c | 2 +- sysdeps/mach/hurd/sigaction.c | 2 +- sysdeps/mach/hurd/sigaltstack.c | 2 +- sysdeps/mach/hurd/siglist.h | 2 +- sysdeps/mach/hurd/sigpending.c | 2 +- sysdeps/mach/hurd/sigprocmask.c | 2 +- sysdeps/mach/hurd/sigstack.c | 2 +- sysdeps/mach/hurd/sigsuspend.c | 2 +- sysdeps/mach/hurd/sigwait.c | 2 +- sysdeps/mach/hurd/socket.c | 2 +- sysdeps/mach/hurd/socketpair.c | 2 +- sysdeps/mach/hurd/spawni.c | 2 +- sysdeps/mach/hurd/statfs.c | 2 +- sysdeps/mach/hurd/statfs64.c | 2 +- sysdeps/mach/hurd/statfsconv.c | 2 +- sysdeps/mach/hurd/statvfs.c | 2 +- sysdeps/mach/hurd/statvfs64.c | 2 +- sysdeps/mach/hurd/symlink.c | 2 +- sysdeps/mach/hurd/symlinkat.c | 2 +- sysdeps/mach/hurd/sync.c | 2 +- sysdeps/mach/hurd/syncfs.c | 2 +- sysdeps/mach/hurd/sysconf.c | 2 +- sysdeps/mach/hurd/telldir.c | 2 +- sysdeps/mach/hurd/times.c | 2 +- sysdeps/mach/hurd/tls.h | 2 +- sysdeps/mach/hurd/tmpfile.c | 2 +- sysdeps/mach/hurd/truncate.c | 2 +- sysdeps/mach/hurd/ttyname.c | 2 +- sysdeps/mach/hurd/ttyname_r.c | 2 +- sysdeps/mach/hurd/umask.c | 2 +- sysdeps/mach/hurd/uname.c | 2 +- sysdeps/mach/hurd/unlink.c | 2 +- sysdeps/mach/hurd/unlinkat.c | 2 +- sysdeps/mach/hurd/utimes.c | 2 +- sysdeps/mach/hurd/wait4.c | 2 +- sysdeps/mach/hurd/write.c | 2 +- sysdeps/mach/hurd/xmknod.c | 2 +- sysdeps/mach/hurd/xmknodat.c | 2 +- sysdeps/mach/hurd/xstat.c | 2 +- sysdeps/mach/hurd/xstat64.c | 2 +- sysdeps/mach/hurd/xstatconv.c | 2 +- sysdeps/mach/i386/machine-lock.h | 2 +- sysdeps/mach/i386/machine-sp.h | 2 +- sysdeps/mach/i386/syscall.S | 2 +- sysdeps/mach/i386/sysdep.h | 2 +- sysdeps/mach/i386/thread_state.h | 2 +- sysdeps/mach/mprotect.c | 2 +- sysdeps/mach/msync.c | 2 +- sysdeps/mach/munmap.c | 2 +- sysdeps/mach/nanosleep.c | 2 +- sysdeps/mach/pagecopy.h | 2 +- sysdeps/mach/readonly-area.c | 2 +- sysdeps/mach/sched_yield.c | 2 +- sysdeps/mach/sleep.c | 2 +- sysdeps/mach/strerror_l.c | 2 +- sysdeps/mach/sysdep.h | 2 +- sysdeps/mach/thread_state.h | 2 +- sysdeps/mach/usleep.c | 2 +- sysdeps/mach/xpg-strerror.c | 2 +- sysdeps/posix/alarm.c | 2 +- sysdeps/posix/clock.c | 2 +- sysdeps/posix/clock_getres.c | 2 +- sysdeps/posix/closedir.c | 2 +- sysdeps/posix/ctermid.c | 2 +- sysdeps/posix/cuserid.c | 2 +- sysdeps/posix/dirfd.c | 2 +- sysdeps/posix/dirstream.h | 2 +- sysdeps/posix/dup.c | 2 +- sysdeps/posix/dup2.c | 2 +- sysdeps/posix/euidaccess.c | 2 +- sysdeps/posix/fdopendir.c | 2 +- sysdeps/posix/flock.c | 2 +- sysdeps/posix/fpathconf.c | 2 +- sysdeps/posix/gai_strerror.c | 2 +- sysdeps/posix/getcwd.c | 2 +- sysdeps/posix/getdtsz.c | 2 +- sysdeps/posix/gethostname.c | 2 +- sysdeps/posix/getpagesize.c | 2 +- sysdeps/posix/gettimeofday.c | 2 +- sysdeps/posix/isatty.c | 2 +- sysdeps/posix/isfdtype.c | 2 +- sysdeps/posix/killpg.c | 2 +- sysdeps/posix/libc_fatal.c | 2 +- sysdeps/posix/mkfifo.c | 2 +- sysdeps/posix/mkfifoat.c | 2 +- sysdeps/posix/nice.c | 2 +- sysdeps/posix/open64.c | 2 +- sysdeps/posix/opendir.c | 2 +- sysdeps/posix/pathconf.c | 2 +- sysdeps/posix/pause.c | 2 +- sysdeps/posix/posix_fallocate.c | 2 +- sysdeps/posix/posix_fallocate64.c | 2 +- sysdeps/posix/pread.c | 2 +- sysdeps/posix/pread64.c | 2 +- sysdeps/posix/preadv.c | 2 +- sysdeps/posix/profil.c | 2 +- sysdeps/posix/pwrite.c | 2 +- sysdeps/posix/pwrite64.c | 2 +- sysdeps/posix/pwritev.c | 2 +- sysdeps/posix/raise.c | 2 +- sysdeps/posix/readdir.c | 2 +- sysdeps/posix/readdir_r.c | 2 +- sysdeps/posix/readv.c | 2 +- sysdeps/posix/remove.c | 2 +- sysdeps/posix/rename.c | 2 +- sysdeps/posix/rewinddir.c | 2 +- sysdeps/posix/seekdir.c | 2 +- sysdeps/posix/shm_open.c | 2 +- sysdeps/posix/shm_unlink.c | 2 +- sysdeps/posix/sigblock.c | 2 +- sysdeps/posix/sigignore.c | 2 +- sysdeps/posix/sigintr.c | 2 +- sysdeps/posix/signal.c | 2 +- sysdeps/posix/sigpause.c | 2 +- sysdeps/posix/sigset.c | 2 +- sysdeps/posix/sigsetmask.c | 2 +- sysdeps/posix/sigsuspend.c | 2 +- sysdeps/posix/sigvec.c | 2 +- sysdeps/posix/sigwait.c | 2 +- sysdeps/posix/sleep.c | 2 +- sysdeps/posix/spawni.c | 2 +- sysdeps/posix/sprofil.c | 2 +- sysdeps/posix/sysconf.c | 2 +- sysdeps/posix/system.c | 2 +- sysdeps/posix/sysv_signal.c | 2 +- sysdeps/posix/telldir.c | 2 +- sysdeps/posix/tempname.c | 2 +- sysdeps/posix/time.c | 2 +- sysdeps/posix/timespec_get.c | 2 +- sysdeps/posix/truncate.c | 2 +- sysdeps/posix/ttyname.c | 2 +- sysdeps/posix/ttyname_r.c | 2 +- sysdeps/posix/ulimit.c | 2 +- sysdeps/posix/utime.c | 2 +- sysdeps/posix/utimes.c | 2 +- sysdeps/posix/wait.c | 2 +- sysdeps/posix/wait3.c | 2 +- sysdeps/posix/waitid.c | 2 +- sysdeps/posix/writev.c | 2 +- sysdeps/powerpc/bits/atomic.h | 2 +- sysdeps/powerpc/bits/endian.h | 2 +- sysdeps/powerpc/bits/fenv.h | 2 +- sysdeps/powerpc/bits/fenvinline.h | 2 +- sysdeps/powerpc/bits/hwcap.h | 2 +- sysdeps/powerpc/bits/link.h | 2 +- sysdeps/powerpc/bits/mathdef.h | 2 +- sysdeps/powerpc/bits/mathinline.h | 2 +- sysdeps/powerpc/bits/setjmp.h | 2 +- sysdeps/powerpc/dl-procinfo.c | 2 +- sysdeps/powerpc/dl-procinfo.h | 2 +- sysdeps/powerpc/dl-tls.h | 2 +- sysdeps/powerpc/ffs.c | 2 +- sysdeps/powerpc/fpu/e_hypot.c | 2 +- sysdeps/powerpc/fpu/e_hypotf.c | 2 +- sysdeps/powerpc/fpu/e_rem_pio2f.c | 2 +- sysdeps/powerpc/fpu/e_sqrt.c | 2 +- sysdeps/powerpc/fpu/e_sqrtf.c | 2 +- sysdeps/powerpc/fpu/fclrexcpt.c | 2 +- sysdeps/powerpc/fpu/fe_mask.c | 2 +- sysdeps/powerpc/fpu/fe_nomask.c | 2 +- sysdeps/powerpc/fpu/fedisblxcpt.c | 2 +- sysdeps/powerpc/fpu/feenablxcpt.c | 2 +- sysdeps/powerpc/fpu/fegetenv.c | 2 +- sysdeps/powerpc/fpu/fegetexcept.c | 2 +- sysdeps/powerpc/fpu/fegetround.c | 2 +- sysdeps/powerpc/fpu/feholdexcpt.c | 2 +- sysdeps/powerpc/fpu/fenv_const.c | 2 +- sysdeps/powerpc/fpu/fenv_libc.h | 2 +- sysdeps/powerpc/fpu/fenv_private.h | 2 +- sysdeps/powerpc/fpu/fesetenv.c | 2 +- sysdeps/powerpc/fpu/fesetround.c | 2 +- sysdeps/powerpc/fpu/feupdateenv.c | 2 +- sysdeps/powerpc/fpu/fgetexcptflg.c | 2 +- sysdeps/powerpc/fpu/fraiseexcpt.c | 2 +- sysdeps/powerpc/fpu/fsetexcptflg.c | 2 +- sysdeps/powerpc/fpu/ftestexcept.c | 2 +- sysdeps/powerpc/fpu/k_cosf.c | 2 +- sysdeps/powerpc/fpu/k_rem_pio2f.c | 2 +- sysdeps/powerpc/fpu/k_sinf.c | 2 +- sysdeps/powerpc/fpu/math_private.h | 2 +- sysdeps/powerpc/fpu/s_cosf.c | 2 +- sysdeps/powerpc/fpu/s_fabs.S | 2 +- sysdeps/powerpc/fpu/s_fdim.c | 2 +- sysdeps/powerpc/fpu/s_fdimf.c | 2 +- sysdeps/powerpc/fpu/s_float_bitwise.h | 2 +- sysdeps/powerpc/fpu/s_fma.S | 2 +- sysdeps/powerpc/fpu/s_fmaf.S | 2 +- sysdeps/powerpc/fpu/s_fmax.S | 2 +- sysdeps/powerpc/fpu/s_fmin.S | 2 +- sysdeps/powerpc/fpu/s_isnan.c | 2 +- sysdeps/powerpc/fpu/s_llround.c | 2 +- sysdeps/powerpc/fpu/s_llroundf.c | 2 +- sysdeps/powerpc/fpu/s_rint.c | 2 +- sysdeps/powerpc/fpu/s_rintf.c | 2 +- sysdeps/powerpc/fpu/s_sinf.c | 2 +- sysdeps/powerpc/fpu/tst-setcontext-fpscr.c | 2 +- sysdeps/powerpc/fpu_control.h | 2 +- sysdeps/powerpc/gccframe.h | 2 +- sysdeps/powerpc/jmpbuf-offsets.h | 2 +- sysdeps/powerpc/jmpbuf-unwind.h | 2 +- sysdeps/powerpc/ldsodefs.h | 2 +- sysdeps/powerpc/longjmp.c | 2 +- sysdeps/powerpc/machine-gmon.h | 2 +- sysdeps/powerpc/math-tests.h | 2 +- sysdeps/powerpc/memmove.c | 2 +- sysdeps/powerpc/memusage.h | 2 +- sysdeps/powerpc/nofpu/atomic-feclearexcept.c | 2 +- sysdeps/powerpc/nofpu/atomic-feholdexcept.c | 2 +- sysdeps/powerpc/nofpu/atomic-feupdateenv.c | 2 +- sysdeps/powerpc/nofpu/fclrexcpt.c | 2 +- sysdeps/powerpc/nofpu/fedisblxcpt.c | 2 +- sysdeps/powerpc/nofpu/feenablxcpt.c | 2 +- sysdeps/powerpc/nofpu/fegetenv.c | 2 +- sysdeps/powerpc/nofpu/fegetexcept.c | 2 +- sysdeps/powerpc/nofpu/fegetround.c | 2 +- sysdeps/powerpc/nofpu/feholdexcpt.c | 2 +- sysdeps/powerpc/nofpu/fenv_const.c | 2 +- sysdeps/powerpc/nofpu/fenv_libc.h | 2 +- sysdeps/powerpc/nofpu/fesetenv.c | 2 +- sysdeps/powerpc/nofpu/fesetround.c | 2 +- sysdeps/powerpc/nofpu/feupdateenv.c | 2 +- sysdeps/powerpc/nofpu/fgetexcptflg.c | 2 +- sysdeps/powerpc/nofpu/flt-rounds.c | 2 +- sysdeps/powerpc/nofpu/fraiseexcpt.c | 2 +- sysdeps/powerpc/nofpu/fsetexcptflg.c | 2 +- sysdeps/powerpc/nofpu/ftestexcept.c | 2 +- sysdeps/powerpc/nofpu/get-rounding-mode.h | 2 +- sysdeps/powerpc/nofpu/sim-full.c | 2 +- sysdeps/powerpc/nofpu/soft-supp.h | 2 +- sysdeps/powerpc/novmx-longjmp.c | 2 +- sysdeps/powerpc/novmx-sigjmp.c | 2 +- sysdeps/powerpc/novmxsetjmp.h | 2 +- sysdeps/powerpc/power4/fpu/mpa-arch.h | 2 +- sysdeps/powerpc/power4/fpu/mpa.c | 2 +- sysdeps/powerpc/power4/wordcopy.c | 2 +- sysdeps/powerpc/power5+/fpu/s_modf.c | 2 +- sysdeps/powerpc/power5+/fpu/s_modff.c | 2 +- sysdeps/powerpc/power6/wcschr.c | 2 +- sysdeps/powerpc/power6/wcscpy.c | 2 +- sysdeps/powerpc/power6/wcsrchr.c | 2 +- sysdeps/powerpc/power6/wordcopy.c | 2 +- sysdeps/powerpc/power7/fpu/s_logb.c | 2 +- sysdeps/powerpc/power7/fpu/s_logbf.c | 2 +- sysdeps/powerpc/power7/fpu/s_logbl.c | 2 +- sysdeps/powerpc/powerpc32/405/memcmp.S | 2 +- sysdeps/powerpc/powerpc32/405/memcpy.S | 2 +- sysdeps/powerpc/powerpc32/405/memset.S | 2 +- sysdeps/powerpc/powerpc32/405/strcmp.S | 2 +- sysdeps/powerpc/powerpc32/405/strcpy.S | 2 +- sysdeps/powerpc/powerpc32/405/strlen.S | 2 +- sysdeps/powerpc/powerpc32/405/strncmp.S | 2 +- sysdeps/powerpc/powerpc32/476/memset.S | 2 +- sysdeps/powerpc/powerpc32/__longjmp-common.S | 2 +- sysdeps/powerpc/powerpc32/__longjmp.S | 2 +- sysdeps/powerpc/powerpc32/a2/memcpy.S | 2 +- sysdeps/powerpc/powerpc32/add_n.S | 2 +- sysdeps/powerpc/powerpc32/addmul_1.S | 2 +- sysdeps/powerpc/powerpc32/backtrace.c | 2 +- sysdeps/powerpc/powerpc32/bits/atomic.h | 2 +- sysdeps/powerpc/powerpc32/bsd-_setjmp.S | 2 +- sysdeps/powerpc/powerpc32/bsd-setjmp.S | 2 +- sysdeps/powerpc/powerpc32/bzero.S | 2 +- sysdeps/powerpc/powerpc32/cell/memcpy.S | 2 +- sysdeps/powerpc/powerpc32/crti.S | 2 +- sysdeps/powerpc/powerpc32/crtn.S | 2 +- sysdeps/powerpc/powerpc32/dl-irel.h | 2 +- sysdeps/powerpc/powerpc32/dl-machine.c | 2 +- sysdeps/powerpc/powerpc32/dl-machine.h | 2 +- sysdeps/powerpc/powerpc32/dl-start.S | 2 +- sysdeps/powerpc/powerpc32/dl-trampoline.S | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S | 2 +- sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c | 2 +- sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S | 2 +- sysdeps/powerpc/powerpc32/fpu/__longjmp.S | 2 +- sysdeps/powerpc/powerpc32/fpu/fprrest.S | 2 +- sysdeps/powerpc/powerpc32/fpu/fprsave.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_ceil.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_ceilf.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_copysign.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_copysignl.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_fabsl.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_floor.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_floorf.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_isnan.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_llrint.c | 2 +- sysdeps/powerpc/powerpc32/fpu/s_llrintf.c | 2 +- sysdeps/powerpc/powerpc32/fpu/s_lrint.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_lround.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_rint.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_rintf.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_round.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_roundf.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_trunc.S | 2 +- sysdeps/powerpc/powerpc32/fpu/s_truncf.S | 2 +- sysdeps/powerpc/powerpc32/fpu/setjmp-common.S | 2 +- sysdeps/powerpc/powerpc32/fpu/setjmp.S | 2 +- sysdeps/powerpc/powerpc32/gprrest0.S | 2 +- sysdeps/powerpc/powerpc32/gprrest1.S | 2 +- sysdeps/powerpc/powerpc32/gprsave0.S | 2 +- sysdeps/powerpc/powerpc32/gprsave1.S | 2 +- sysdeps/powerpc/powerpc32/hp-timing.h | 2 +- sysdeps/powerpc/powerpc32/libgcc-compat.S | 2 +- sysdeps/powerpc/powerpc32/lshift.S | 2 +- sysdeps/powerpc/powerpc32/memset.S | 2 +- sysdeps/powerpc/powerpc32/mul_1.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c | 2 +- .../powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power5.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c | 2 +- .../powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-power7.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6x.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S | 2 +- sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S | 2 +- sysdeps/powerpc/powerpc32/power4/hp-timing.c | 2 +- sysdeps/powerpc/powerpc32/power4/hp-timing.h | 2 +- sysdeps/powerpc/powerpc32/power4/memcmp.S | 2 +- sysdeps/powerpc/powerpc32/power4/memcopy.h | 2 +- sysdeps/powerpc/powerpc32/power4/memcpy.S | 2 +- sysdeps/powerpc/powerpc32/power4/memset.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/memset.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strchr.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-power7.S | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c | 2 +- sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c | 2 +- sysdeps/powerpc/powerpc32/power4/strncmp.S | 2 +- sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S | 2 +- sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S | 2 +- sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S | 2 +- sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S | 2 +- sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S | 2 +- sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S | 2 +- sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S | 2 +- sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S | 2 +- sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S | 2 +- sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S | 2 +- sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S | 2 +- sysdeps/powerpc/powerpc32/power5/fpu/s_isnanf.S | 2 +- sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S | 2 +- sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S | 2 +- sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S | 2 +- sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S | 2 +- sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S | 2 +- sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S | 2 +- sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S | 2 +- sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S | 2 +- sysdeps/powerpc/powerpc32/power6/memcpy.S | 2 +- sysdeps/powerpc/powerpc32/power6/memset.S | 2 +- sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S | 2 +- sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S | 2 +- sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S | 2 +- sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S | 2 +- sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S | 2 +- sysdeps/powerpc/powerpc32/power7/memchr.S | 2 +- sysdeps/powerpc/powerpc32/power7/memcmp.S | 2 +- sysdeps/powerpc/powerpc32/power7/memcpy.S | 2 +- sysdeps/powerpc/powerpc32/power7/mempcpy.S | 2 +- sysdeps/powerpc/powerpc32/power7/memrchr.S | 2 +- sysdeps/powerpc/powerpc32/power7/memset.S | 2 +- sysdeps/powerpc/powerpc32/power7/rawmemchr.S | 2 +- sysdeps/powerpc/powerpc32/power7/strcasecmp.S | 2 +- sysdeps/powerpc/powerpc32/power7/strchr.S | 2 +- sysdeps/powerpc/powerpc32/power7/strchrnul.S | 2 +- sysdeps/powerpc/powerpc32/power7/strlen.S | 2 +- sysdeps/powerpc/powerpc32/power7/strncmp.S | 2 +- sysdeps/powerpc/powerpc32/power7/strnlen.S | 2 +- sysdeps/powerpc/powerpc32/ppc-mcount.S | 2 +- sysdeps/powerpc/powerpc32/register-dump.h | 2 +- sysdeps/powerpc/powerpc32/rshift.S | 2 +- sysdeps/powerpc/powerpc32/setjmp-common.S | 2 +- sysdeps/powerpc/powerpc32/setjmp.S | 2 +- sysdeps/powerpc/powerpc32/start.S | 2 +- sysdeps/powerpc/powerpc32/stpcpy.S | 2 +- sysdeps/powerpc/powerpc32/strchr.S | 2 +- sysdeps/powerpc/powerpc32/strcmp.S | 2 +- sysdeps/powerpc/powerpc32/strcpy.S | 2 +- sysdeps/powerpc/powerpc32/strlen.S | 2 +- sysdeps/powerpc/powerpc32/strncmp.S | 2 +- sysdeps/powerpc/powerpc32/sub_n.S | 2 +- sysdeps/powerpc/powerpc32/submul_1.S | 2 +- sysdeps/powerpc/powerpc32/sysdep.h | 2 +- sysdeps/powerpc/powerpc32/tst-audit.h | 2 +- sysdeps/powerpc/powerpc64/__longjmp-common.S | 2 +- sysdeps/powerpc/powerpc64/__longjmp.S | 2 +- sysdeps/powerpc/powerpc64/a2/memcpy.S | 2 +- sysdeps/powerpc/powerpc64/addmul_1.S | 2 +- sysdeps/powerpc/powerpc64/backtrace.c | 2 +- sysdeps/powerpc/powerpc64/bits/atomic.h | 2 +- sysdeps/powerpc/powerpc64/bzero.S | 2 +- sysdeps/powerpc/powerpc64/cell/memcpy.S | 2 +- sysdeps/powerpc/powerpc64/crti.S | 2 +- sysdeps/powerpc/powerpc64/crtn.S | 2 +- sysdeps/powerpc/powerpc64/dl-dtprocnum.h | 2 +- sysdeps/powerpc/powerpc64/dl-irel.h | 2 +- sysdeps/powerpc/powerpc64/dl-machine.c | 2 +- sysdeps/powerpc/powerpc64/dl-machine.h | 2 +- sysdeps/powerpc/powerpc64/dl-trampoline.S | 2 +- sysdeps/powerpc/powerpc64/entry.h | 2 +- sysdeps/powerpc/powerpc64/ffsll.c | 2 +- sysdeps/powerpc/powerpc64/fpu/e_sqrt.c | 2 +- sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c | 2 +- sysdeps/powerpc/powerpc64/fpu/s_ceil.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_ceilf.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_ceill.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_copysign.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_copysignl.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_fabsl.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_floor.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_floorf.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_isnan.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_llrint.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_llrintf.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_llround.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_llroundf.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_rint.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_rintf.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_round.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_roundf.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_roundl.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_trunc.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_truncf.S | 2 +- sysdeps/powerpc/powerpc64/fpu/s_truncl.S | 2 +- sysdeps/powerpc/powerpc64/hp-timing.c | 2 +- sysdeps/powerpc/powerpc64/hp-timing.h | 2 +- sysdeps/powerpc/powerpc64/lshift.S | 2 +- sysdeps/powerpc/powerpc64/memcpy.S | 2 +- sysdeps/powerpc/powerpc64/memset.S | 2 +- sysdeps/powerpc/powerpc64/mul_1.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/bzero.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/init-arch.h | 2 +- sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/memchr.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/memcmp.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memcpy.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/mempcpy.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/memrchr.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/memset-power4.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memset-power6.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memset-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/memset.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/stpcpy.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strchr.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strchrnul.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strcpy.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strlen.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strncase.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strncase_l.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strncmp.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/strnlen.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcschr.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcscpy.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c | 2 +- sysdeps/powerpc/powerpc64/multiarch/wordcopy.c | 2 +- sysdeps/powerpc/powerpc64/power4/memcmp.S | 2 +- sysdeps/powerpc/powerpc64/power4/memcpy.S | 2 +- sysdeps/powerpc/powerpc64/power4/memset.S | 2 +- sysdeps/powerpc/powerpc64/power4/strncmp.S | 2 +- sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S | 2 +- sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S | 2 +- sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S | 2 +- sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S | 2 +- sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S | 2 +- sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S | 2 +- sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S | 2 +- sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S | 2 +- sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S | 2 +- sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S | 2 +- sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S | 2 +- sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S | 2 +- sysdeps/powerpc/powerpc64/power6/memcpy.S | 2 +- sysdeps/powerpc/powerpc64/power6/memset.S | 2 +- sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S | 2 +- sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S | 2 +- sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S | 2 +- sysdeps/powerpc/powerpc64/power7/add_n.S | 2 +- sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S | 2 +- sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S | 2 +- sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S | 2 +- sysdeps/powerpc/powerpc64/power7/memchr.S | 2 +- sysdeps/powerpc/powerpc64/power7/memcmp.S | 2 +- sysdeps/powerpc/powerpc64/power7/memcpy.S | 2 +- sysdeps/powerpc/powerpc64/power7/mempcpy.S | 2 +- sysdeps/powerpc/powerpc64/power7/memrchr.S | 2 +- sysdeps/powerpc/powerpc64/power7/memset.S | 2 +- sysdeps/powerpc/powerpc64/power7/rawmemchr.S | 2 +- sysdeps/powerpc/powerpc64/power7/stpcpy.S | 2 +- sysdeps/powerpc/powerpc64/power7/strcasecmp.S | 2 +- sysdeps/powerpc/powerpc64/power7/strchr.S | 2 +- sysdeps/powerpc/powerpc64/power7/strchrnul.S | 2 +- sysdeps/powerpc/powerpc64/power7/strcpy.S | 2 +- sysdeps/powerpc/powerpc64/power7/strlen.S | 2 +- sysdeps/powerpc/powerpc64/power7/strncmp.S | 2 +- sysdeps/powerpc/powerpc64/power7/strnlen.S | 2 +- sysdeps/powerpc/powerpc64/power7/sub_n.S | 2 +- sysdeps/powerpc/powerpc64/ppc-mcount.S | 2 +- sysdeps/powerpc/powerpc64/register-dump.h | 2 +- sysdeps/powerpc/powerpc64/setjmp-common.S | 2 +- sysdeps/powerpc/powerpc64/setjmp.S | 2 +- sysdeps/powerpc/powerpc64/start.S | 2 +- sysdeps/powerpc/powerpc64/stpcpy.S | 2 +- sysdeps/powerpc/powerpc64/strchr.S | 2 +- sysdeps/powerpc/powerpc64/strcmp.S | 2 +- sysdeps/powerpc/powerpc64/strcpy.S | 2 +- sysdeps/powerpc/powerpc64/strlen.S | 2 +- sysdeps/powerpc/powerpc64/strncmp.S | 2 +- sysdeps/powerpc/powerpc64/submul_1.S | 2 +- sysdeps/powerpc/powerpc64/sysdep.h | 2 +- sysdeps/powerpc/powerpc64/tst-audit.h | 2 +- sysdeps/powerpc/sched_cpucount.c | 2 +- sysdeps/powerpc/sigjmp.c | 2 +- sysdeps/powerpc/stackinfo.h | 2 +- sysdeps/powerpc/strcat.c | 2 +- sysdeps/powerpc/sys/platform/ppc.h | 2 +- sysdeps/powerpc/sysdep.h | 2 +- sysdeps/powerpc/test-arith.c | 2 +- sysdeps/powerpc/test-gettimebase.c | 2 +- sysdeps/powerpc/tst-stack-align.h | 2 +- sysdeps/pthread/aio_cancel.c | 2 +- sysdeps/pthread/aio_fsync.c | 2 +- sysdeps/pthread/aio_misc.c | 2 +- sysdeps/pthread/aio_misc.h | 2 +- sysdeps/pthread/aio_notify.c | 2 +- sysdeps/pthread/aio_read.c | 2 +- sysdeps/pthread/aio_read64.c | 2 +- sysdeps/pthread/aio_suspend.c | 2 +- sysdeps/pthread/aio_write.c | 2 +- sysdeps/pthread/aio_write64.c | 2 +- sysdeps/pthread/lio_listio.c | 2 +- sysdeps/pthread/lio_listio64.c | 2 +- sysdeps/s390/asm-syntax.h | 2 +- sysdeps/s390/bits/atomic.h | 2 +- sysdeps/s390/bits/byteswap-16.h | 2 +- sysdeps/s390/bits/byteswap.h | 2 +- sysdeps/s390/bits/link.h | 2 +- sysdeps/s390/bits/mathdef.h | 2 +- sysdeps/s390/bits/setjmp.h | 2 +- sysdeps/s390/bits/string.h | 2 +- sysdeps/s390/bits/xtitypes.h | 2 +- sysdeps/s390/dl-irel.h | 2 +- sysdeps/s390/dl-procinfo.c | 2 +- sysdeps/s390/dl-procinfo.h | 2 +- sysdeps/s390/dl-tls.h | 2 +- sysdeps/s390/ffs.c | 2 +- sysdeps/s390/fpu/bits/fenv.h | 2 +- sysdeps/s390/fpu/bits/mathinline.h | 2 +- sysdeps/s390/fpu/e_sqrt.c | 2 +- sysdeps/s390/fpu/e_sqrtf.c | 2 +- sysdeps/s390/fpu/e_sqrtl.c | 2 +- sysdeps/s390/fpu/fclrexcpt.c | 2 +- sysdeps/s390/fpu/fedisblxcpt.c | 2 +- sysdeps/s390/fpu/feenablxcpt.c | 2 +- sysdeps/s390/fpu/fegetenv.c | 2 +- sysdeps/s390/fpu/fegetexcept.c | 2 +- sysdeps/s390/fpu/fegetround.c | 2 +- sysdeps/s390/fpu/feholdexcpt.c | 2 +- sysdeps/s390/fpu/fenv_libc.h | 2 +- sysdeps/s390/fpu/fesetenv.c | 2 +- sysdeps/s390/fpu/fesetround.c | 2 +- sysdeps/s390/fpu/feupdateenv.c | 2 +- sysdeps/s390/fpu/fgetexcptflg.c | 2 +- sysdeps/s390/fpu/fpu_control.h | 2 +- sysdeps/s390/fpu/fraiseexcpt.c | 2 +- sysdeps/s390/fpu/fsetexcptflg.c | 2 +- sysdeps/s390/fpu/ftestexcept.c | 2 +- sysdeps/s390/fpu/get-rounding-mode.h | 2 +- sysdeps/s390/fpu/s_fma.c | 2 +- sysdeps/s390/fpu/s_fmaf.c | 2 +- sysdeps/s390/gccframe.h | 2 +- sysdeps/s390/gmp-mparam.h | 2 +- sysdeps/s390/jmpbuf-offsets.h | 2 +- sysdeps/s390/jmpbuf-unwind.h | 2 +- sysdeps/s390/ldsodefs.h | 2 +- sysdeps/s390/libc-tls.c | 2 +- sysdeps/s390/machine-gmon.h | 2 +- sysdeps/s390/memusage.h | 2 +- sysdeps/s390/s390-32/__longjmp.c | 2 +- sysdeps/s390/s390-32/add_n.S | 2 +- sysdeps/s390/s390-32/addmul_1.S | 2 +- sysdeps/s390/s390-32/backtrace.c | 2 +- sysdeps/s390/s390-32/bcopy.S | 2 +- sysdeps/s390/s390-32/bzero.S | 2 +- sysdeps/s390/s390-32/crti.S | 2 +- sysdeps/s390/s390-32/crtn.S | 2 +- sysdeps/s390/s390-32/dl-machine.h | 2 +- sysdeps/s390/s390-32/dl-trampoline.S | 2 +- sysdeps/s390/s390-32/memchr.S | 2 +- sysdeps/s390/s390-32/memcmp.S | 2 +- sysdeps/s390/s390-32/memcpy.S | 2 +- sysdeps/s390/s390-32/memset.S | 2 +- sysdeps/s390/s390-32/mul_1.S | 2 +- sysdeps/s390/s390-32/multiarch/ifunc-resolve.c | 2 +- sysdeps/s390/s390-32/multiarch/memcmp.S | 2 +- sysdeps/s390/s390-32/multiarch/memcpy.S | 2 +- sysdeps/s390/s390-32/multiarch/memset.S | 2 +- sysdeps/s390/s390-32/s390-mcount.S | 2 +- sysdeps/s390/s390-32/setjmp.S | 2 +- sysdeps/s390/s390-32/start.S | 2 +- sysdeps/s390/s390-32/strcmp.S | 2 +- sysdeps/s390/s390-32/strcpy.S | 2 +- sysdeps/s390/s390-32/strncpy.S | 2 +- sysdeps/s390/s390-32/sub_n.S | 2 +- sysdeps/s390/s390-32/sysdep.h | 2 +- sysdeps/s390/s390-32/tst-audit.h | 2 +- sysdeps/s390/s390-64/__longjmp.c | 2 +- sysdeps/s390/s390-64/add_n.S | 2 +- sysdeps/s390/s390-64/backtrace.c | 2 +- sysdeps/s390/s390-64/bcopy.S | 2 +- sysdeps/s390/s390-64/bzero.S | 2 +- sysdeps/s390/s390-64/crti.S | 2 +- sysdeps/s390/s390-64/crtn.S | 2 +- sysdeps/s390/s390-64/dl-machine.h | 2 +- sysdeps/s390/s390-64/dl-trampoline.S | 2 +- sysdeps/s390/s390-64/iso-8859-1_cp037_z900.c | 2 +- sysdeps/s390/s390-64/memchr.S | 2 +- sysdeps/s390/s390-64/memcmp.S | 2 +- sysdeps/s390/s390-64/memcpy.S | 2 +- sysdeps/s390/s390-64/memset.S | 2 +- sysdeps/s390/s390-64/multiarch/ifunc-resolve.c | 2 +- sysdeps/s390/s390-64/multiarch/memcmp.S | 2 +- sysdeps/s390/s390-64/multiarch/memcpy.S | 2 +- sysdeps/s390/s390-64/multiarch/memset.S | 2 +- sysdeps/s390/s390-64/s390x-mcount.S | 2 +- sysdeps/s390/s390-64/setjmp.S | 2 +- sysdeps/s390/s390-64/start.S | 2 +- sysdeps/s390/s390-64/strcmp.S | 2 +- sysdeps/s390/s390-64/strcpy.S | 2 +- sysdeps/s390/s390-64/strncpy.S | 2 +- sysdeps/s390/s390-64/sub_n.S | 2 +- sysdeps/s390/s390-64/sysdep.h | 2 +- sysdeps/s390/s390-64/tst-audit.h | 2 +- sysdeps/s390/s390-64/utf16-utf32-z9.c | 2 +- sysdeps/s390/s390-64/utf8-utf16-z9.c | 2 +- sysdeps/s390/s390-64/utf8-utf32-z9.c | 2 +- sysdeps/s390/stackinfo.h | 2 +- sysdeps/sh/____longjmp_chk.S | 2 +- sysdeps/sh/_mcount.S | 2 +- sysdeps/sh/bits/fenv.h | 2 +- sysdeps/sh/bits/huge_val.h | 2 +- sysdeps/sh/bits/link.h | 2 +- sysdeps/sh/bits/setjmp.h | 2 +- sysdeps/sh/bsd-_setjmp.S | 2 +- sysdeps/sh/bsd-setjmp.S | 2 +- sysdeps/sh/crti.S | 2 +- sysdeps/sh/crtn.S | 2 +- sysdeps/sh/dl-machine.h | 2 +- sysdeps/sh/dl-tls.h | 2 +- sysdeps/sh/dl-trampoline.S | 2 +- sysdeps/sh/gccframe.h | 2 +- sysdeps/sh/gmp-mparam.h | 2 +- sysdeps/sh/jmpbuf-offsets.h | 2 +- sysdeps/sh/jmpbuf-unwind.h | 2 +- sysdeps/sh/ldsodefs.h | 2 +- sysdeps/sh/libc-tls.c | 2 +- sysdeps/sh/machine-gmon.h | 2 +- sysdeps/sh/memcpy.S | 2 +- sysdeps/sh/memset.S | 2 +- sysdeps/sh/memusage.h | 2 +- sysdeps/sh/sh3/__longjmp.S | 2 +- sysdeps/sh/sh3/setjmp.S | 2 +- sysdeps/sh/sh4/__longjmp.S | 2 +- sysdeps/sh/sh4/bits/mathdef.h | 2 +- sysdeps/sh/sh4/fpu/fclrexcpt.c | 2 +- sysdeps/sh/sh4/fpu/fedisblxcpt.c | 2 +- sysdeps/sh/sh4/fpu/feenablxcpt.c | 2 +- sysdeps/sh/sh4/fpu/fegetenv.c | 2 +- sysdeps/sh/sh4/fpu/fegetexcept.c | 2 +- sysdeps/sh/sh4/fpu/fegetround.c | 2 +- sysdeps/sh/sh4/fpu/feholdexcpt.c | 2 +- sysdeps/sh/sh4/fpu/fesetenv.c | 2 +- sysdeps/sh/sh4/fpu/fesetround.c | 2 +- sysdeps/sh/sh4/fpu/feupdateenv.c | 2 +- sysdeps/sh/sh4/fpu/fgetexcptflg.c | 2 +- sysdeps/sh/sh4/fpu/fpu_control.h | 2 +- sysdeps/sh/sh4/fpu/fraiseexcpt.c | 2 +- sysdeps/sh/sh4/fpu/fsetexcptflg.c | 2 +- sysdeps/sh/sh4/fpu/ftestexcept.c | 2 +- sysdeps/sh/sh4/setjmp.S | 2 +- sysdeps/sh/sotruss-lib.c | 2 +- sysdeps/sh/stackinfo.h | 2 +- sysdeps/sh/start.S | 2 +- sysdeps/sh/strlen.S | 2 +- sysdeps/sh/sys/ucontext.h | 2 +- sysdeps/sh/sysdep.h | 2 +- sysdeps/sh/tst-audit.h | 2 +- sysdeps/sparc/backtrace.c | 2 +- sysdeps/sparc/bits/huge_vall.h | 2 +- sysdeps/sparc/bits/hwcap.h | 2 +- sysdeps/sparc/bits/link.h | 2 +- sysdeps/sparc/bits/mathdef.h | 2 +- sysdeps/sparc/bits/string.h | 2 +- sysdeps/sparc/crti.S | 2 +- sysdeps/sparc/crtn.S | 2 +- sysdeps/sparc/dl-dtprocnum.h | 2 +- sysdeps/sparc/dl-procinfo.c | 2 +- sysdeps/sparc/dl-procinfo.h | 2 +- sysdeps/sparc/dl-sysdep.h | 2 +- sysdeps/sparc/dl-tls.h | 2 +- sysdeps/sparc/fpu/bits/fenv.h | 2 +- sysdeps/sparc/fpu/bits/mathinline.h | 2 +- sysdeps/sparc/fpu/fclrexcpt.c | 2 +- sysdeps/sparc/fpu/fedisblxcpt.c | 2 +- sysdeps/sparc/fpu/feenablxcpt.c | 2 +- sysdeps/sparc/fpu/fegetenv.c | 2 +- sysdeps/sparc/fpu/fegetexcept.c | 2 +- sysdeps/sparc/fpu/fegetround.c | 2 +- sysdeps/sparc/fpu/feholdexcpt.c | 2 +- sysdeps/sparc/fpu/fesetenv.c | 2 +- sysdeps/sparc/fpu/fesetround.c | 2 +- sysdeps/sparc/fpu/feupdateenv.c | 2 +- sysdeps/sparc/fpu/fgetexcptflg.c | 2 +- sysdeps/sparc/fpu/fpu_control.h | 2 +- sysdeps/sparc/fpu/fraiseexcpt.c | 2 +- sysdeps/sparc/fpu/fsetexcptflg.c | 2 +- sysdeps/sparc/fpu/ftestexcept.c | 2 +- sysdeps/sparc/gccframe.h | 2 +- sysdeps/sparc/ldsodefs.h | 2 +- sysdeps/sparc/machine-gmon.h | 2 +- sysdeps/sparc/memusage.h | 2 +- sysdeps/sparc/sparc-ifunc.h | 2 +- sysdeps/sparc/sparc-mcount.S | 2 +- sysdeps/sparc/sparc32/Makefile | 2 +- sysdeps/sparc/sparc32/__longjmp.S | 2 +- sysdeps/sparc/sparc32/add_n.S | 2 +- sysdeps/sparc/sparc32/addmul_1.S | 2 +- sysdeps/sparc/sparc32/alloca.S | 2 +- sysdeps/sparc/sparc32/bits/atomic.h | 2 +- sysdeps/sparc/sparc32/bits/setjmp.h | 2 +- sysdeps/sparc/sparc32/dl-irel.h | 2 +- sysdeps/sparc/sparc32/dl-machine.h | 2 +- sysdeps/sparc/sparc32/dl-plt.h | 2 +- sysdeps/sparc/sparc32/dl-trampoline.S | 2 +- sysdeps/sparc/sparc32/e_sqrt.c | 2 +- sysdeps/sparc/sparc32/fpu/s_copysign.S | 2 +- sysdeps/sparc/sparc32/fpu/s_copysignf.S | 2 +- sysdeps/sparc/sparc32/fpu/s_fabs.S | 2 +- sysdeps/sparc/sparc32/fpu/s_fabsf.S | 2 +- sysdeps/sparc/sparc32/fpu/s_fdim.S | 2 +- sysdeps/sparc/sparc32/fpu/s_fdimf.S | 2 +- sysdeps/sparc/sparc32/fpu/s_signbit.S | 2 +- sysdeps/sparc/sparc32/fpu/s_signbitl.S | 2 +- sysdeps/sparc/sparc32/fpu/w_sqrt.S | 2 +- sysdeps/sparc/sparc32/fpu/w_sqrtf.S | 2 +- sysdeps/sparc/sparc32/ieee754.h | 2 +- sysdeps/sparc/sparc32/jmpbuf-offsets.h | 2 +- sysdeps/sparc/sparc32/jmpbuf-unwind.h | 2 +- sysdeps/sparc/sparc32/lshift.S | 2 +- sysdeps/sparc/sparc32/memchr.S | 2 +- sysdeps/sparc/sparc32/memcpy.S | 2 +- sysdeps/sparc/sparc32/memset.S | 2 +- sysdeps/sparc/sparc32/mul_1.S | 2 +- sysdeps/sparc/sparc32/rshift.S | 2 +- sysdeps/sparc/sparc32/setjmp.S | 2 +- sysdeps/sparc/sparc32/soft-fp/Makefile | 2 +- sysdeps/sparc/sparc32/soft-fp/q_add.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_cmp.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_cmpe.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_div.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_dtoq.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_feq.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_fge.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_fgt.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_fle.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_flt.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_fne.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_itoq.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_lltoq.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_mul.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_neg.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_qtod.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_qtoi.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_qtoll.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_qtos.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_qtou.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_qtoull.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_sqrt.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_stoq.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_sub.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_util.c | 2 +- sysdeps/sparc/sparc32/soft-fp/q_utoq.c | 2 +- sysdeps/sparc/sparc32/soft-fp/sfp-machine.h | 2 +- sysdeps/sparc/sparc32/sparcv8/addmul_1.S | 2 +- sysdeps/sparc/sparc32/sparcv8/mul_1.S | 2 +- sysdeps/sparc/sparc32/sparcv8/submul_1.S | 2 +- sysdeps/sparc/sparc32/sparcv9/addmul_1.S | 2 +- sysdeps/sparc/sparc32/sparcv9/bits/atomic.h | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S | 2 +- sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S | 2 +- sysdeps/sparc/sparc32/sparcv9/hp-timing.c | 2 +- sysdeps/sparc/sparc32/sparcv9/hp-timing.h | 2 +- sysdeps/sparc/sparc32/sparcv9/mul_1.S | 2 +- sysdeps/sparc/sparc32/sparcv9/submul_1.S | 2 +- sysdeps/sparc/sparc32/start.S | 2 +- sysdeps/sparc/sparc32/stpcpy.S | 2 +- sysdeps/sparc/sparc32/strcat.S | 2 +- sysdeps/sparc/sparc32/strchr.S | 2 +- sysdeps/sparc/sparc32/strcmp.S | 2 +- sysdeps/sparc/sparc32/strcpy.S | 2 +- sysdeps/sparc/sparc32/strlen.S | 2 +- sysdeps/sparc/sparc32/sub_n.S | 2 +- sysdeps/sparc/sparc32/submul_1.S | 2 +- sysdeps/sparc/sparc32/tst-audit.h | 2 +- sysdeps/sparc/sparc64/add_n.S | 2 +- sysdeps/sparc/sparc64/addmul_1.S | 2 +- sysdeps/sparc/sparc64/align-cpy.S | 2 +- sysdeps/sparc/sparc64/bits/atomic.h | 2 +- sysdeps/sparc/sparc64/dl-irel.h | 2 +- sysdeps/sparc/sparc64/dl-machine.h | 2 +- sysdeps/sparc/sparc64/dl-plt.h | 2 +- sysdeps/sparc/sparc64/dl-trampoline.S | 2 +- sysdeps/sparc/sparc64/fpu/e_sqrtl.c | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_fmax-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S | 2 +- sysdeps/sparc/sparc64/fpu/s_ceil.S | 2 +- sysdeps/sparc/sparc64/fpu/s_ceilf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_copysign.S | 2 +- sysdeps/sparc/sparc64/fpu/s_copysignf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_fdim.S | 2 +- sysdeps/sparc/sparc64/fpu/s_fdimf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_finite.S | 2 +- sysdeps/sparc/sparc64/fpu/s_finitef.S | 2 +- sysdeps/sparc/sparc64/fpu/s_floor.S | 2 +- sysdeps/sparc/sparc64/fpu/s_floorf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_fmax.S | 2 +- sysdeps/sparc/sparc64/fpu/s_fmaxf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_fmin.S | 2 +- sysdeps/sparc/sparc64/fpu/s_fminf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_isinf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_isinff.S | 2 +- sysdeps/sparc/sparc64/fpu/s_isnan.S | 2 +- sysdeps/sparc/sparc64/fpu/s_isnanf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_lrint.S | 2 +- sysdeps/sparc/sparc64/fpu/s_lrintf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_nearbyint.S | 2 +- sysdeps/sparc/sparc64/fpu/s_nearbyintf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_rint.S | 2 +- sysdeps/sparc/sparc64/fpu/s_rintf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_signbit.S | 2 +- sysdeps/sparc/sparc64/fpu/s_signbitf.S | 2 +- sysdeps/sparc/sparc64/fpu/s_trunc.S | 2 +- sysdeps/sparc/sparc64/fpu/s_truncf.S | 2 +- sysdeps/sparc/sparc64/fpu/w_sqrt.S | 2 +- sysdeps/sparc/sparc64/fpu/w_sqrtf.S | 2 +- sysdeps/sparc/sparc64/hp-timing.c | 2 +- sysdeps/sparc/sparc64/hp-timing.h | 2 +- sysdeps/sparc/sparc64/jmpbuf-unwind.h | 2 +- sysdeps/sparc/sparc64/lshift.S | 2 +- sysdeps/sparc/sparc64/memchr.S | 2 +- sysdeps/sparc/sparc64/memcmp.S | 2 +- sysdeps/sparc/sparc64/memcpy.S | 2 +- sysdeps/sparc/sparc64/memset.S | 2 +- sysdeps/sparc/sparc64/mul_1.S | 2 +- sysdeps/sparc/sparc64/multiarch/add_n-vis3.S | 2 +- sysdeps/sparc/sparc64/multiarch/add_n.S | 2 +- sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S | 2 +- sysdeps/sparc/sparc64/multiarch/addmul_1.S | 2 +- sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c | 2 +- sysdeps/sparc/sparc64/multiarch/md5-crop.S | 2 +- sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S | 2 +- sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S | 2 +- sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S | 2 +- sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S | 2 +- sysdeps/sparc/sparc64/multiarch/memcpy.S | 2 +- sysdeps/sparc/sparc64/multiarch/memset-niagara1.S | 2 +- sysdeps/sparc/sparc64/multiarch/memset-niagara4.S | 2 +- sysdeps/sparc/sparc64/multiarch/memset.S | 2 +- sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S | 2 +- sysdeps/sparc/sparc64/multiarch/mul_1.S | 2 +- sysdeps/sparc/sparc64/multiarch/sha256-crop.S | 2 +- sysdeps/sparc/sparc64/multiarch/sha512-crop.S | 2 +- sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S | 2 +- sysdeps/sparc/sparc64/multiarch/sub_n.S | 2 +- sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S | 2 +- sysdeps/sparc/sparc64/multiarch/submul_1.S | 2 +- sysdeps/sparc/sparc64/rawmemchr.S | 2 +- sysdeps/sparc/sparc64/rshift.S | 2 +- sysdeps/sparc/sparc64/soft-fp/Makefile | 2 +- sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_add.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_cmp.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_div.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_feq.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_fge.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_fgt.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_fle.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_flt.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_fne.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_itoq.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_mul.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_neg.S | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_qtod.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_qtos.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_qtox.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_sqrt.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_stoq.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_sub.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_util.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c | 2 +- sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c | 2 +- sysdeps/sparc/sparc64/soft-fp/s_frexpl.c | 2 +- sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c | 2 +- sysdeps/sparc/sparc64/soft-fp/s_scalbnl.c | 2 +- sysdeps/sparc/sparc64/soft-fp/sfp-machine.h | 2 +- sysdeps/sparc/sparc64/start.S | 2 +- sysdeps/sparc/sparc64/stpcpy.S | 2 +- sysdeps/sparc/sparc64/stpncpy.S | 2 +- sysdeps/sparc/sparc64/strcat.S | 2 +- sysdeps/sparc/sparc64/strchr.S | 2 +- sysdeps/sparc/sparc64/strcmp.S | 2 +- sysdeps/sparc/sparc64/strcpy.S | 2 +- sysdeps/sparc/sparc64/strcspn.S | 2 +- sysdeps/sparc/sparc64/strlen.S | 2 +- sysdeps/sparc/sparc64/strncmp.S | 2 +- sysdeps/sparc/sparc64/strncpy.S | 2 +- sysdeps/sparc/sparc64/strpbrk.S | 2 +- sysdeps/sparc/sparc64/strspn.S | 2 +- sysdeps/sparc/sparc64/sub_n.S | 2 +- sysdeps/sparc/sparc64/submul_1.S | 2 +- sysdeps/sparc/sparc64/tst-audit.h | 2 +- sysdeps/sparc/stackinfo.h | 2 +- sysdeps/sparc/sysdep.h | 2 +- sysdeps/unix/Makefile | 2 +- sysdeps/unix/bsd/bits/signum.h | 2 +- sysdeps/unix/bsd/bits/sockaddr.h | 2 +- sysdeps/unix/bsd/ftime.c | 2 +- sysdeps/unix/bsd/getpt.c | 2 +- sysdeps/unix/bsd/gtty.c | 2 +- sysdeps/unix/bsd/stty.c | 2 +- sysdeps/unix/bsd/tcdrain.c | 2 +- sysdeps/unix/bsd/tcflow.c | 2 +- sysdeps/unix/bsd/tcflush.c | 2 +- sysdeps/unix/bsd/tcgetattr.c | 2 +- sysdeps/unix/bsd/tcgetpgrp.c | 2 +- sysdeps/unix/bsd/tcsendbrk.c | 2 +- sysdeps/unix/bsd/tcsetattr.c | 2 +- sysdeps/unix/bsd/tcsetpgrp.c | 2 +- sysdeps/unix/bsd/ualarm.c | 2 +- sysdeps/unix/bsd/unlockpt.c | 2 +- sysdeps/unix/bsd/wait.c | 2 +- sysdeps/unix/bsd/wait3.c | 2 +- sysdeps/unix/bsd/waitpid.c | 2 +- sysdeps/unix/clock_gettime.c | 2 +- sysdeps/unix/clock_nanosleep.c | 2 +- sysdeps/unix/clock_settime.c | 2 +- sysdeps/unix/get_child_max.c | 2 +- sysdeps/unix/getlogin.c | 2 +- sysdeps/unix/getlogin_r.c | 2 +- sysdeps/unix/getpagesize.c | 2 +- sysdeps/unix/grantpt.c | 2 +- sysdeps/unix/i386/sysdep.S | 2 +- sysdeps/unix/i386/sysdep.h | 2 +- sysdeps/unix/ifreq.c | 2 +- sysdeps/unix/powerpc/sysdep.h | 2 +- sysdeps/unix/sh/sysdep.S | 2 +- sysdeps/unix/sh/sysdep.h | 2 +- sysdeps/unix/sockatmark.c | 2 +- sysdeps/unix/stime.c | 2 +- sysdeps/unix/syscall-template.S | 2 +- sysdeps/unix/syscall.S | 2 +- sysdeps/unix/sysdep.h | 2 +- sysdeps/unix/sysv/linux/_exit.c | 2 +- sysdeps/unix/sysv/linux/accept4.c | 2 +- sysdeps/unix/sysv/linux/adjtime.c | 2 +- sysdeps/unix/sysv/linux/aio_sigqueue.c | 2 +- sysdeps/unix/sysv/linux/bits/dirent.h | 2 +- sysdeps/unix/sysv/linux/bits/epoll.h | 2 +- sysdeps/unix/sysv/linux/bits/errno.h | 2 +- sysdeps/unix/sysv/linux/bits/eventfd.h | 2 +- sysdeps/unix/sysv/linux/bits/fcntl-linux.h | 2 +- sysdeps/unix/sysv/linux/bits/in.h | 2 +- sysdeps/unix/sysv/linux/bits/inotify.h | 2 +- sysdeps/unix/sysv/linux/bits/ioctl-types.h | 2 +- sysdeps/unix/sysv/linux/bits/ioctls.h | 2 +- sysdeps/unix/sysv/linux/bits/ipc.h | 2 +- sysdeps/unix/sysv/linux/bits/local_lim.h | 2 +- sysdeps/unix/sysv/linux/bits/mman-linux.h | 2 +- sysdeps/unix/sysv/linux/bits/mqueue.h | 2 +- sysdeps/unix/sysv/linux/bits/msq.h | 2 +- sysdeps/unix/sysv/linux/bits/param.h | 2 +- sysdeps/unix/sysv/linux/bits/poll.h | 2 +- sysdeps/unix/sysv/linux/bits/posix_opt.h | 2 +- sysdeps/unix/sysv/linux/bits/resource.h | 2 +- sysdeps/unix/sysv/linux/bits/sched.h | 2 +- sysdeps/unix/sysv/linux/bits/sem.h | 2 +- sysdeps/unix/sysv/linux/bits/shm.h | 2 +- sysdeps/unix/sysv/linux/bits/sigaction.h | 2 +- sysdeps/unix/sysv/linux/bits/sigcontext.h | 2 +- sysdeps/unix/sysv/linux/bits/siginfo.h | 2 +- sysdeps/unix/sysv/linux/bits/signalfd.h | 2 +- sysdeps/unix/sysv/linux/bits/signum.h | 2 +- sysdeps/unix/sysv/linux/bits/sigset.h | 2 +- sysdeps/unix/sysv/linux/bits/sigstack.h | 2 +- sysdeps/unix/sysv/linux/bits/socket.h | 2 +- sysdeps/unix/sysv/linux/bits/socket_type.h | 2 +- sysdeps/unix/sysv/linux/bits/stat.h | 2 +- sysdeps/unix/sysv/linux/bits/statfs.h | 2 +- sysdeps/unix/sysv/linux/bits/statvfs.h | 2 +- sysdeps/unix/sysv/linux/bits/sys_errlist.h | 2 +- sysdeps/unix/sysv/linux/bits/termios.h | 2 +- sysdeps/unix/sysv/linux/bits/time.h | 2 +- sysdeps/unix/sysv/linux/bits/timerfd.h | 2 +- sysdeps/unix/sysv/linux/bits/timex.h | 2 +- sysdeps/unix/sysv/linux/bits/uio.h | 2 +- sysdeps/unix/sysv/linux/bits/utsname.h | 2 +- sysdeps/unix/sysv/linux/bits/waitflags.h | 2 +- sysdeps/unix/sysv/linux/check_native.c | 2 +- sysdeps/unix/sysv/linux/check_pf.c | 2 +- sysdeps/unix/sysv/linux/clock.c | 2 +- sysdeps/unix/sysv/linux/clock_getcpuclockid.c | 2 +- sysdeps/unix/sysv/linux/clock_getres.c | 2 +- sysdeps/unix/sysv/linux/clock_gettime.c | 2 +- sysdeps/unix/sysv/linux/clock_nanosleep.c | 2 +- sysdeps/unix/sysv/linux/clock_settime.c | 2 +- sysdeps/unix/sysv/linux/cmsg_nxthdr.c | 2 +- sysdeps/unix/sysv/linux/device-nrs.h | 2 +- sysdeps/unix/sysv/linux/dl-execstack.c | 2 +- sysdeps/unix/sysv/linux/dl-librecon.h | 2 +- sysdeps/unix/sysv/linux/dl-openat64.c | 2 +- sysdeps/unix/sysv/linux/dl-origin.c | 2 +- sysdeps/unix/sysv/linux/dl-osinfo.h | 2 +- sysdeps/unix/sysv/linux/dl-sysdep.c | 2 +- sysdeps/unix/sysv/linux/dl-sysdep.h | 2 +- sysdeps/unix/sysv/linux/dl-vdso.c | 2 +- sysdeps/unix/sysv/linux/dl-vdso.h | 2 +- sysdeps/unix/sysv/linux/dl-writev.h | 2 +- sysdeps/unix/sysv/linux/epoll_pwait.c | 2 +- sysdeps/unix/sysv/linux/errqueue.h | 2 +- sysdeps/unix/sysv/linux/eventfd.c | 2 +- sysdeps/unix/sysv/linux/eventfd_read.c | 2 +- sysdeps/unix/sysv/linux/eventfd_write.c | 2 +- sysdeps/unix/sysv/linux/execve.c | 2 +- sysdeps/unix/sysv/linux/exit-thread.S | 2 +- sysdeps/unix/sysv/linux/faccessat.c | 2 +- sysdeps/unix/sysv/linux/fallocate.c | 2 +- sysdeps/unix/sysv/linux/fallocate64.c | 2 +- sysdeps/unix/sysv/linux/fatal-prepare.h | 2 +- sysdeps/unix/sysv/linux/fchmodat.c | 2 +- sysdeps/unix/sysv/linux/fchownat.c | 2 +- sysdeps/unix/sysv/linux/fcntl.c | 2 +- sysdeps/unix/sysv/linux/fd_to_filename.h | 2 +- sysdeps/unix/sysv/linux/fexecve.c | 2 +- sysdeps/unix/sysv/linux/fips-private.h | 2 +- sysdeps/unix/sysv/linux/fpathconf.c | 2 +- sysdeps/unix/sysv/linux/fstatfs64.c | 2 +- sysdeps/unix/sysv/linux/fstatvfs.c | 2 +- sysdeps/unix/sysv/linux/fstatvfs64.c | 2 +- sysdeps/unix/sysv/linux/ftruncate64.c | 2 +- sysdeps/unix/sysv/linux/futimens.c | 2 +- sysdeps/unix/sysv/linux/futimes.c | 2 +- sysdeps/unix/sysv/linux/futimesat.c | 2 +- sysdeps/unix/sysv/linux/fxstat.c | 2 +- sysdeps/unix/sysv/linux/fxstat64.c | 2 +- sysdeps/unix/sysv/linux/fxstatat.c | 2 +- sysdeps/unix/sysv/linux/fxstatat64.c | 2 +- sysdeps/unix/sysv/linux/gai_sigqueue.c | 2 +- sysdeps/unix/sysv/linux/getclktck.c | 2 +- sysdeps/unix/sysv/linux/getcwd.c | 2 +- sysdeps/unix/sysv/linux/getdents.c | 2 +- sysdeps/unix/sysv/linux/getdirentries.c | 2 +- sysdeps/unix/sysv/linux/getdtsz.c | 2 +- sysdeps/unix/sysv/linux/gethostid.c | 2 +- sysdeps/unix/sysv/linux/getipv4sourcefilter.c | 2 +- sysdeps/unix/sysv/linux/getloadavg.c | 2 +- sysdeps/unix/sysv/linux/getlogin.c | 2 +- sysdeps/unix/sysv/linux/getlogin_r.c | 2 +- sysdeps/unix/sysv/linux/getpagesize.c | 2 +- sysdeps/unix/sysv/linux/getpriority.c | 2 +- sysdeps/unix/sysv/linux/getpt.c | 2 +- sysdeps/unix/sysv/linux/getrlimit64.c | 2 +- sysdeps/unix/sysv/linux/getsourcefilter.c | 2 +- sysdeps/unix/sysv/linux/getsysstats.c | 2 +- sysdeps/unix/sysv/linux/i386/____longjmp_chk.S | 2 +- sysdeps/unix/sysv/linux/i386/_exit.S | 2 +- sysdeps/unix/sysv/linux/i386/accept4.S | 2 +- sysdeps/unix/sysv/linux/i386/alphasort64.c | 2 +- sysdeps/unix/sysv/linux/i386/brk.c | 2 +- sysdeps/unix/sysv/linux/i386/call_pselect6.S | 2 +- sysdeps/unix/sysv/linux/i386/call_sync_file_range.S | 2 +- sysdeps/unix/sysv/linux/i386/chown.c | 2 +- sysdeps/unix/sysv/linux/i386/clone.S | 2 +- sysdeps/unix/sysv/linux/i386/dl-librecon.h | 2 +- sysdeps/unix/sysv/linux/i386/dl-procinfo.h | 2 +- sysdeps/unix/sysv/linux/i386/epoll_pwait.S | 2 +- sysdeps/unix/sysv/linux/i386/fallocate.c | 2 +- sysdeps/unix/sysv/linux/i386/fallocate64.c | 2 +- sysdeps/unix/sysv/linux/i386/fchown.c | 2 +- sysdeps/unix/sysv/linux/i386/fchownat.c | 2 +- sysdeps/unix/sysv/linux/i386/fcntl.c | 2 +- sysdeps/unix/sysv/linux/i386/fxstat.c | 2 +- sysdeps/unix/sysv/linux/i386/fxstatat.c | 2 +- sysdeps/unix/sysv/linux/i386/get_clockfreq.c | 2 +- sysdeps/unix/sysv/linux/i386/getcontext.S | 2 +- sysdeps/unix/sysv/linux/i386/getdents64.c | 2 +- sysdeps/unix/sysv/linux/i386/getegid.c | 2 +- sysdeps/unix/sysv/linux/i386/geteuid.c | 2 +- sysdeps/unix/sysv/linux/i386/getgid.c | 2 +- sysdeps/unix/sysv/linux/i386/getgroups.c | 2 +- sysdeps/unix/sysv/linux/i386/getmsg.c | 2 +- sysdeps/unix/sysv/linux/i386/getresgid.c | 2 +- sysdeps/unix/sysv/linux/i386/getresuid.c | 2 +- sysdeps/unix/sysv/linux/i386/getrlimit64.c | 2 +- sysdeps/unix/sysv/linux/i386/getuid.c | 2 +- sysdeps/unix/sysv/linux/i386/lchown.c | 2 +- sysdeps/unix/sysv/linux/i386/ldconfig.h | 2 +- sysdeps/unix/sysv/linux/i386/lockf64.c | 2 +- sysdeps/unix/sysv/linux/i386/lxstat.c | 2 +- sysdeps/unix/sysv/linux/i386/makecontext.S | 2 +- sysdeps/unix/sysv/linux/i386/mmap.S | 2 +- sysdeps/unix/sysv/linux/i386/mmap64.S | 2 +- sysdeps/unix/sysv/linux/i386/msgctl.c | 2 +- sysdeps/unix/sysv/linux/i386/olddirent.h | 2 +- sysdeps/unix/sysv/linux/i386/oldgetrlimit64.c | 2 +- sysdeps/unix/sysv/linux/i386/posix_fadvise64.S | 2 +- sysdeps/unix/sysv/linux/i386/posix_fallocate.c | 2 +- sysdeps/unix/sysv/linux/i386/posix_fallocate64.c | 2 +- sysdeps/unix/sysv/linux/i386/profil-counter.h | 2 +- sysdeps/unix/sysv/linux/i386/putmsg.c | 2 +- sysdeps/unix/sysv/linux/i386/readdir64.c | 2 +- sysdeps/unix/sysv/linux/i386/readdir64_r.c | 2 +- sysdeps/unix/sysv/linux/i386/readelflib.c | 2 +- sysdeps/unix/sysv/linux/i386/register-dump.h | 2 +- sysdeps/unix/sysv/linux/i386/scandir64.c | 2 +- sysdeps/unix/sysv/linux/i386/semctl.c | 2 +- sysdeps/unix/sysv/linux/i386/semtimedop.S | 2 +- sysdeps/unix/sysv/linux/i386/setcontext.S | 2 +- sysdeps/unix/sysv/linux/i386/setegid.c | 2 +- sysdeps/unix/sysv/linux/i386/seteuid.c | 2 +- sysdeps/unix/sysv/linux/i386/setfsgid.c | 2 +- sysdeps/unix/sysv/linux/i386/setfsuid.c | 2 +- sysdeps/unix/sysv/linux/i386/setgid.c | 2 +- sysdeps/unix/sysv/linux/i386/setgroups.c | 2 +- sysdeps/unix/sysv/linux/i386/setregid.c | 2 +- sysdeps/unix/sysv/linux/i386/setresgid.c | 2 +- sysdeps/unix/sysv/linux/i386/setresuid.c | 2 +- sysdeps/unix/sysv/linux/i386/setreuid.c | 2 +- sysdeps/unix/sysv/linux/i386/setrlimit.c | 2 +- sysdeps/unix/sysv/linux/i386/setuid.c | 2 +- sysdeps/unix/sysv/linux/i386/shmctl.c | 2 +- sysdeps/unix/sysv/linux/i386/sigaction.c | 2 +- sysdeps/unix/sysv/linux/i386/sigcontextinfo.h | 2 +- sysdeps/unix/sysv/linux/i386/socket.S | 2 +- sysdeps/unix/sysv/linux/i386/swapcontext.S | 2 +- sysdeps/unix/sysv/linux/i386/sync_file_range.c | 2 +- sysdeps/unix/sysv/linux/i386/syscall.S | 2 +- sysdeps/unix/sysv/linux/i386/sysconf.c | 2 +- sysdeps/unix/sysv/linux/i386/sysdep.S | 2 +- sysdeps/unix/sysv/linux/i386/sysdep.h | 2 +- sysdeps/unix/sysv/linux/i386/versionsort64.c | 2 +- sysdeps/unix/sysv/linux/i386/vfork.S | 2 +- sysdeps/unix/sysv/linux/i386/xstat.c | 2 +- sysdeps/unix/sysv/linux/if_index.c | 2 +- sysdeps/unix/sysv/linux/ifaddrs.c | 2 +- sysdeps/unix/sysv/linux/ifreq.c | 2 +- sysdeps/unix/sysv/linux/internal_statvfs.c | 2 +- sysdeps/unix/sysv/linux/ipc_priv.h | 2 +- sysdeps/unix/sysv/linux/kernel-features.h | 2 +- sysdeps/unix/sysv/linux/kernel_termios.h | 2 +- sysdeps/unix/sysv/linux/lddlibc4.c | 2 +- sysdeps/unix/sysv/linux/ldsodefs.h | 2 +- sysdeps/unix/sysv/linux/libc_fatal.c | 2 +- sysdeps/unix/sysv/linux/linkat.c | 2 +- sysdeps/unix/sysv/linux/linux_fsinfo.h | 2 +- sysdeps/unix/sysv/linux/llseek.c | 2 +- sysdeps/unix/sysv/linux/lutimes.c | 2 +- sysdeps/unix/sysv/linux/lxstat.c | 2 +- sysdeps/unix/sysv/linux/lxstat64.c | 2 +- sysdeps/unix/sysv/linux/makedev.c | 2 +- sysdeps/unix/sysv/linux/malloc-sysdep.h | 2 +- sysdeps/unix/sysv/linux/mkdirat.c | 2 +- sysdeps/unix/sysv/linux/mmap64.c | 2 +- sysdeps/unix/sysv/linux/mq_close.c | 2 +- sysdeps/unix/sysv/linux/mq_getattr.c | 2 +- sysdeps/unix/sysv/linux/mq_notify.c | 2 +- sysdeps/unix/sysv/linux/mq_open.c | 2 +- sysdeps/unix/sysv/linux/mq_receive.c | 2 +- sysdeps/unix/sysv/linux/mq_send.c | 2 +- sysdeps/unix/sysv/linux/mq_unlink.c | 2 +- sysdeps/unix/sysv/linux/msgctl.c | 2 +- sysdeps/unix/sysv/linux/msgget.c | 2 +- sysdeps/unix/sysv/linux/msgrcv.c | 2 +- sysdeps/unix/sysv/linux/msgsnd.c | 2 +- sysdeps/unix/sysv/linux/net/ethernet.h | 2 +- sysdeps/unix/sysv/linux/net/if_arp.h | 2 +- sysdeps/unix/sysv/linux/net/if_packet.h | 2 +- sysdeps/unix/sysv/linux/net/if_shaper.h | 2 +- sysdeps/unix/sysv/linux/net/if_slip.h | 2 +- sysdeps/unix/sysv/linux/net/route.h | 2 +- sysdeps/unix/sysv/linux/netash/ash.h | 2 +- sysdeps/unix/sysv/linux/netatalk/at.h | 2 +- sysdeps/unix/sysv/linux/netax25/ax25.h | 2 +- sysdeps/unix/sysv/linux/neteconet/ec.h | 2 +- sysdeps/unix/sysv/linux/netinet/if_ether.h | 2 +- sysdeps/unix/sysv/linux/netinet/if_fddi.h | 2 +- sysdeps/unix/sysv/linux/netinet/if_tr.h | 2 +- sysdeps/unix/sysv/linux/netipx/ipx.h | 2 +- sysdeps/unix/sysv/linux/netiucv/iucv.h | 2 +- sysdeps/unix/sysv/linux/netlinkaccess.h | 2 +- sysdeps/unix/sysv/linux/netpacket/packet.h | 2 +- sysdeps/unix/sysv/linux/netrom/netrom.h | 2 +- sysdeps/unix/sysv/linux/netrose/rose.h | 2 +- sysdeps/unix/sysv/linux/not-cancel.h | 2 +- sysdeps/unix/sysv/linux/nscd_setup_thread.c | 2 +- sysdeps/unix/sysv/linux/ntp_gettime.c | 2 +- sysdeps/unix/sysv/linux/ntp_gettimex.c | 2 +- sysdeps/unix/sysv/linux/open64.c | 2 +- sysdeps/unix/sysv/linux/openat.c | 2 +- sysdeps/unix/sysv/linux/opendir.c | 2 +- sysdeps/unix/sysv/linux/opensock.c | 2 +- sysdeps/unix/sysv/linux/pathconf.c | 2 +- sysdeps/unix/sysv/linux/pathconf.h | 2 +- sysdeps/unix/sysv/linux/posix_fadvise.c | 2 +- sysdeps/unix/sysv/linux/posix_fadvise64.c | 2 +- sysdeps/unix/sysv/linux/posix_fallocate.c | 2 +- sysdeps/unix/sysv/linux/posix_fallocate64.c | 2 +- sysdeps/unix/sysv/linux/posix_madvise.c | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/environments.h | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/ipc.h | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/mman.h | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/msq.h | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/ppc.h | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/sem.h | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/shm.h | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/stat.h | 2 +- sysdeps/unix/sysv/linux/powerpc/bits/termios.h | 2 +- sysdeps/unix/sysv/linux/powerpc/chown.c | 2 +- sysdeps/unix/sysv/linux/powerpc/dl-static.c | 2 +- sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c | 2 +- sysdeps/unix/sysv/linux/powerpc/fchownat.c | 2 +- sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c | 2 +- sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c | 2 +- sysdeps/unix/sysv/linux/powerpc/gettimeofday.c | 2 +- sysdeps/unix/sysv/linux/powerpc/init-first.c | 2 +- sysdeps/unix/sysv/linux/powerpc/ioctl.c | 2 +- sysdeps/unix/sysv/linux/powerpc/ipc_priv.h | 2 +- sysdeps/unix/sysv/linux/powerpc/kernel_termios.h | 2 +- sysdeps/unix/sysv/linux/powerpc/lchown.S | 2 +- sysdeps/unix/sysv/linux/powerpc/ldconfig.h | 2 +- sysdeps/unix/sysv/linux/powerpc/ldsodefs.h | 2 +- sysdeps/unix/sysv/linux/powerpc/libc-start.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/context-e500.h | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/getcontext.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/setcontext.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/swapcontext.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/dl-cache.h | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/kernel_stat.h | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h | 2 +- sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S | 2 +- sysdeps/unix/sysv/linux/powerpc/readelflib.c | 2 +- sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c | 2 +- sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h | 2 +- sysdeps/unix/sysv/linux/powerpc/sys/procfs.h | 2 +- sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h | 2 +- sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h | 2 +- sysdeps/unix/sysv/linux/powerpc/sys/user.h | 2 +- sysdeps/unix/sysv/linux/powerpc/syscall.S | 2 +- sysdeps/unix/sysv/linux/powerpc/sysdep.c | 2 +- sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c | 2 +- sysdeps/unix/sysv/linux/powerpc/time.c | 2 +- sysdeps/unix/sysv/linux/ppoll.c | 2 +- sysdeps/unix/sysv/linux/pread.c | 2 +- sysdeps/unix/sysv/linux/pread64.c | 2 +- sysdeps/unix/sysv/linux/preadv.c | 2 +- sysdeps/unix/sysv/linux/prlimit.c | 2 +- sysdeps/unix/sysv/linux/prof-freq.c | 2 +- sysdeps/unix/sysv/linux/pselect.c | 2 +- sysdeps/unix/sysv/linux/ptrace.c | 2 +- sysdeps/unix/sysv/linux/ptsname.c | 2 +- sysdeps/unix/sysv/linux/pwrite.c | 2 +- sysdeps/unix/sysv/linux/pwrite64.c | 2 +- sysdeps/unix/sysv/linux/pwritev.c | 2 +- sysdeps/unix/sysv/linux/readahead.c | 2 +- sysdeps/unix/sysv/linux/readlinkat.c | 2 +- sysdeps/unix/sysv/linux/readonly-area.c | 2 +- sysdeps/unix/sysv/linux/readv.c | 2 +- sysdeps/unix/sysv/linux/reboot.c | 2 +- sysdeps/unix/sysv/linux/recvmmsg.c | 2 +- sysdeps/unix/sysv/linux/renameat.c | 2 +- sysdeps/unix/sysv/linux/s390/bits/elfclass.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/environments.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/fcntl.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/hwcap.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/ipc.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/libc-vdso.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/mman.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/msq.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/sem.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/shm.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/sigaction.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/siginfo.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/stat.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/statfs.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/typesizes.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/utmp.h | 2 +- sysdeps/unix/sysv/linux/s390/bits/utmpx.h | 2 +- sysdeps/unix/sysv/linux/s390/brk.c | 2 +- sysdeps/unix/sysv/linux/s390/dl-procinfo.h | 2 +- sysdeps/unix/sysv/linux/s390/gettimeofday.c | 2 +- sysdeps/unix/sysv/linux/s390/init-first.c | 2 +- sysdeps/unix/sysv/linux/s390/ldconfig.h | 2 +- sysdeps/unix/sysv/linux/s390/readelflib.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/chown.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/clone.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/getutent.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/getutid.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/getutline.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/getutmp.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/getutxent.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/getutxid.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/getutxline.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/lchown.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/login.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/login32.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/mmap.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/pututxline.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/socket.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/syscall.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/updwtmpx.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/utmp-compat.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/utmp32.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/utmpx-convert.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/clone.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/dl-cache.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/kernel_stat.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/mmap.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/sigpending.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/sigprocmask.c | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/socket.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/syscall.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S | 2 +- sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h | 2 +- sysdeps/unix/sysv/linux/s390/semtimedop.c | 2 +- sysdeps/unix/sysv/linux/s390/sigcontextinfo.h | 2 +- sysdeps/unix/sysv/linux/s390/sys/elf.h | 2 +- sysdeps/unix/sysv/linux/s390/sys/procfs.h | 2 +- sysdeps/unix/sysv/linux/s390/sys/ptrace.h | 2 +- sysdeps/unix/sysv/linux/s390/sys/ucontext.h | 2 +- sysdeps/unix/sysv/linux/s390/sys/user.h | 2 +- sysdeps/unix/sysv/linux/s390/system.c | 2 +- sysdeps/unix/sysv/linux/sched_getaffinity.c | 2 +- sysdeps/unix/sysv/linux/sched_getcpu.c | 2 +- sysdeps/unix/sysv/linux/sched_setaffinity.c | 2 +- sysdeps/unix/sysv/linux/scsi/scsi.h | 2 +- sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h | 2 +- sysdeps/unix/sysv/linux/scsi/sg.h | 2 +- sysdeps/unix/sysv/linux/semctl.c | 2 +- sysdeps/unix/sysv/linux/semget.c | 2 +- sysdeps/unix/sysv/linux/semop.c | 2 +- sysdeps/unix/sysv/linux/semtimedop.c | 2 +- sysdeps/unix/sysv/linux/sendmmsg.c | 2 +- sysdeps/unix/sysv/linux/setegid.c | 2 +- sysdeps/unix/sysv/linux/seteuid.c | 2 +- sysdeps/unix/sysv/linux/setgid.c | 2 +- sysdeps/unix/sysv/linux/setgroups.c | 2 +- sysdeps/unix/sysv/linux/setipv4sourcefilter.c | 2 +- sysdeps/unix/sysv/linux/setregid.c | 2 +- sysdeps/unix/sysv/linux/setresgid.c | 2 +- sysdeps/unix/sysv/linux/setresuid.c | 2 +- sysdeps/unix/sysv/linux/setreuid.c | 2 +- sysdeps/unix/sysv/linux/setrlimit64.c | 2 +- sysdeps/unix/sysv/linux/setsourcefilter.c | 2 +- sysdeps/unix/sysv/linux/setuid.c | 2 +- sysdeps/unix/sysv/linux/sh/____longjmp_chk.S | 2 +- sysdeps/unix/sysv/linux/sh/bits/atomic.h | 2 +- sysdeps/unix/sysv/linux/sh/bits/fcntl.h | 2 +- sysdeps/unix/sysv/linux/sh/bits/mman.h | 2 +- sysdeps/unix/sysv/linux/sh/bits/shm.h | 2 +- sysdeps/unix/sysv/linux/sh/brk.c | 2 +- sysdeps/unix/sysv/linux/sh/chown.c | 2 +- sysdeps/unix/sysv/linux/sh/clone.S | 2 +- sysdeps/unix/sysv/linux/sh/makecontext.S | 2 +- sysdeps/unix/sysv/linux/sh/pipe.S | 2 +- sysdeps/unix/sysv/linux/sh/pread.c | 2 +- sysdeps/unix/sysv/linux/sh/pread64.c | 2 +- sysdeps/unix/sysv/linux/sh/profil-counter.h | 2 +- sysdeps/unix/sysv/linux/sh/pwrite.c | 2 +- sysdeps/unix/sysv/linux/sh/pwrite64.c | 2 +- sysdeps/unix/sysv/linux/sh/sh3/getcontext.S | 2 +- sysdeps/unix/sysv/linux/sh/sh3/register-dump.h | 2 +- sysdeps/unix/sysv/linux/sh/sh3/setcontext.S | 2 +- sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S | 2 +- sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h | 2 +- sysdeps/unix/sysv/linux/sh/sh4/getcontext.S | 2 +- sysdeps/unix/sysv/linux/sh/sh4/register-dump.h | 2 +- sysdeps/unix/sysv/linux/sh/sh4/setcontext.S | 2 +- sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S | 2 +- sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h | 2 +- sysdeps/unix/sysv/linux/sh/sigcontextinfo.h | 2 +- sysdeps/unix/sysv/linux/sh/socket.S | 2 +- sysdeps/unix/sysv/linux/sh/sys/procfs.h | 2 +- sysdeps/unix/sysv/linux/sh/sys/user.h | 2 +- sysdeps/unix/sysv/linux/sh/syscall.S | 2 +- sysdeps/unix/sysv/linux/sh/sysdep.S | 2 +- sysdeps/unix/sysv/linux/sh/sysdep.h | 2 +- sysdeps/unix/sysv/linux/sh/vfork.S | 2 +- sysdeps/unix/sysv/linux/shm_open.c | 2 +- sysdeps/unix/sysv/linux/shmat.c | 2 +- sysdeps/unix/sysv/linux/shmctl.c | 2 +- sysdeps/unix/sysv/linux/shmdt.c | 2 +- sysdeps/unix/sysv/linux/shmget.c | 2 +- sysdeps/unix/sysv/linux/sigaction.c | 2 +- sysdeps/unix/sysv/linux/siglist.h | 2 +- sysdeps/unix/sysv/linux/signalfd.c | 2 +- sysdeps/unix/sysv/linux/sigpending.c | 2 +- sysdeps/unix/sysv/linux/sigprocmask.c | 2 +- sysdeps/unix/sysv/linux/sigqueue.c | 2 +- sysdeps/unix/sysv/linux/sigset-cvt-mask.h | 2 +- sysdeps/unix/sysv/linux/sigstack.c | 2 +- sysdeps/unix/sysv/linux/sigsuspend.c | 2 +- sysdeps/unix/sysv/linux/sigtimedwait.c | 2 +- sysdeps/unix/sysv/linux/sigwait.c | 2 +- sysdeps/unix/sysv/linux/sigwaitinfo.c | 2 +- sysdeps/unix/sysv/linux/sizes.h | 2 +- sysdeps/unix/sysv/linux/sleep.c | 2 +- sysdeps/unix/sysv/linux/socketcall.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/environments.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/epoll.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/errno.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/eventfd.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/fcntl.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/inotify.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/ioctls.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/ipc.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/mman.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/msq.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/poll.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/resource.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/sem.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/setjmp.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/shm.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/sigaction.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/sigcontext.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/siginfo.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/signalfd.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/signum.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/sigstack.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/socket_type.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/stat.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/termios.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/timerfd.h | 2 +- sysdeps/unix/sysv/linux/sparc/bits/typesizes.h | 2 +- sysdeps/unix/sysv/linux/sparc/dl-cache.h | 2 +- sysdeps/unix/sysv/linux/sparc/fork.S | 2 +- sysdeps/unix/sysv/linux/sparc/getshmlba.c | 2 +- sysdeps/unix/sysv/linux/sparc/getsysstats.c | 2 +- sysdeps/unix/sysv/linux/sparc/kernel_termios.h | 2 +- sysdeps/unix/sysv/linux/sparc/readelflib.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/brk.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/clone.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/getcontext.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/pipe.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/profil-counter.h | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/socket.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/swapcontext.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/syscall.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/brk.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/clone.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/dl-cache.h | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/getcontext.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/pipe.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/profil-counter.h | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/setcontext.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/setjmp.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/sizes.h | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/socket.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/swapcontext.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/ucontext_i.h | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/wordexp.c | 2 +- sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c | 2 +- sysdeps/unix/sysv/linux/sparc/sys/procfs.h | 2 +- sysdeps/unix/sysv/linux/sparc/sys/ptrace.h | 2 +- sysdeps/unix/sysv/linux/sparc/sys/ucontext.h | 2 +- sysdeps/unix/sysv/linux/sparc/sys/user.h | 2 +- sysdeps/unix/sysv/linux/sparc/sysdep.h | 2 +- sysdeps/unix/sysv/linux/sparc/system.c | 2 +- sysdeps/unix/sysv/linux/sparc/vfork.S | 2 +- sysdeps/unix/sysv/linux/speed.c | 2 +- sysdeps/unix/sysv/linux/statfs64.c | 2 +- sysdeps/unix/sysv/linux/statvfs.c | 2 +- sysdeps/unix/sysv/linux/statvfs64.c | 2 +- sysdeps/unix/sysv/linux/symlinkat.c | 2 +- sysdeps/unix/sysv/linux/sync_file_range.c | 2 +- sysdeps/unix/sysv/linux/sys/acct.h | 2 +- sysdeps/unix/sysv/linux/sys/epoll.h | 2 +- sysdeps/unix/sysv/linux/sys/eventfd.h | 2 +- sysdeps/unix/sysv/linux/sys/fanotify.h | 2 +- sysdeps/unix/sysv/linux/sys/fsuid.h | 2 +- sysdeps/unix/sysv/linux/sys/inotify.h | 2 +- sysdeps/unix/sysv/linux/sys/kd.h | 2 +- sysdeps/unix/sysv/linux/sys/kdaemon.h | 2 +- sysdeps/unix/sysv/linux/sys/klog.h | 2 +- sysdeps/unix/sysv/linux/sys/mount.h | 2 +- sysdeps/unix/sysv/linux/sys/pci.h | 2 +- sysdeps/unix/sysv/linux/sys/personality.h | 2 +- sysdeps/unix/sysv/linux/sys/prctl.h | 2 +- sysdeps/unix/sysv/linux/sys/procfs.h | 2 +- sysdeps/unix/sysv/linux/sys/ptrace.h | 2 +- sysdeps/unix/sysv/linux/sys/raw.h | 2 +- sysdeps/unix/sysv/linux/sys/reboot.h | 2 +- sysdeps/unix/sysv/linux/sys/signalfd.h | 2 +- sysdeps/unix/sysv/linux/sys/swap.h | 2 +- sysdeps/unix/sysv/linux/sys/syscall.h | 2 +- sysdeps/unix/sysv/linux/sys/sysctl.h | 2 +- sysdeps/unix/sysv/linux/sys/sysinfo.h | 2 +- sysdeps/unix/sysv/linux/sys/sysmacros.h | 2 +- sysdeps/unix/sysv/linux/sys/timerfd.h | 2 +- sysdeps/unix/sysv/linux/sys/timex.h | 2 +- sysdeps/unix/sysv/linux/sysconf.c | 2 +- sysdeps/unix/sysv/linux/sysctl.c | 2 +- sysdeps/unix/sysv/linux/system.c | 2 +- sysdeps/unix/sysv/linux/tcdrain.c | 2 +- sysdeps/unix/sysv/linux/tcflow.c | 2 +- sysdeps/unix/sysv/linux/tcflush.c | 2 +- sysdeps/unix/sysv/linux/tcgetattr.c | 2 +- sysdeps/unix/sysv/linux/tcsendbrk.c | 2 +- sysdeps/unix/sysv/linux/tcsetattr.c | 2 +- sysdeps/unix/sysv/linux/testrtsig.h | 2 +- sysdeps/unix/sysv/linux/time.c | 2 +- sysdeps/unix/sysv/linux/times.c | 2 +- sysdeps/unix/sysv/linux/timespec_get.c | 2 +- sysdeps/unix/sysv/linux/truncate64.c | 2 +- sysdeps/unix/sysv/linux/tst-clone.c | 2 +- sysdeps/unix/sysv/linux/tst-fanotify.c | 2 +- sysdeps/unix/sysv/linux/ttyname.c | 2 +- sysdeps/unix/sysv/linux/ttyname_r.c | 2 +- sysdeps/unix/sysv/linux/unlinkat.c | 2 +- sysdeps/unix/sysv/linux/unlockpt.c | 2 +- sysdeps/unix/sysv/linux/updwtmp.c | 2 +- sysdeps/unix/sysv/linux/usleep.c | 2 +- sysdeps/unix/sysv/linux/ustat.c | 2 +- sysdeps/unix/sysv/linux/utimensat.c | 2 +- sysdeps/unix/sysv/linux/utimes.c | 2 +- sysdeps/unix/sysv/linux/utmp_file.c | 2 +- sysdeps/unix/sysv/linux/wait.c | 2 +- sysdeps/unix/sysv/linux/waitid.c | 2 +- sysdeps/unix/sysv/linux/waitpid.c | 2 +- sysdeps/unix/sysv/linux/wordsize-64/fallocate.c | 2 +- sysdeps/unix/sysv/linux/wordsize-64/fxstat.c | 2 +- sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c | 2 +- sysdeps/unix/sysv/linux/wordsize-64/lxstat.c | 2 +- sysdeps/unix/sysv/linux/wordsize-64/posix_fadvise.c | 2 +- sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c | 2 +- sysdeps/unix/sysv/linux/wordsize-64/preadv.c | 2 +- sysdeps/unix/sysv/linux/wordsize-64/pwritev.c | 2 +- sysdeps/unix/sysv/linux/wordsize-64/xstat.c | 2 +- sysdeps/unix/sysv/linux/writev.c | 2 +- sysdeps/unix/sysv/linux/x86/bits/environments.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/epoll.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/fcntl.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/ipctypes.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/mman.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/msq.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/sem.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/shm.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/sigcontext.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/siginfo.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/stat.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/sysctl.h | 2 +- sysdeps/unix/sysv/linux/x86/bits/typesizes.h | 2 +- sysdeps/unix/sysv/linux/x86/sys/debugreg.h | 2 +- sysdeps/unix/sysv/linux/x86/sys/elf.h | 2 +- sysdeps/unix/sysv/linux/x86/sys/io.h | 2 +- sysdeps/unix/sysv/linux/x86/sys/perm.h | 2 +- sysdeps/unix/sysv/linux/x86/sys/procfs.h | 2 +- sysdeps/unix/sysv/linux/x86/sys/reg.h | 2 +- sysdeps/unix/sysv/linux/x86/sys/ucontext.h | 2 +- sysdeps/unix/sysv/linux/x86/sys/user.h | 2 +- sysdeps/unix/sysv/linux/x86/sys/vm86.h | 2 +- sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S | 2 +- sysdeps/unix/sysv/linux/x86_64/__start_context.S | 2 +- sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h | 2 +- sysdeps/unix/sysv/linux/x86_64/brk.c | 2 +- sysdeps/unix/sysv/linux/x86_64/clone.S | 2 +- sysdeps/unix/sysv/linux/x86_64/dl-cache.h | 2 +- sysdeps/unix/sysv/linux/x86_64/getcontext.S | 2 +- sysdeps/unix/sysv/linux/x86_64/gettimeofday.c | 2 +- sysdeps/unix/sysv/linux/x86_64/init-first.c | 2 +- sysdeps/unix/sysv/linux/x86_64/kernel_stat.h | 2 +- sysdeps/unix/sysv/linux/x86_64/ldconfig.h | 2 +- sysdeps/unix/sysv/linux/x86_64/makecontext.c | 2 +- sysdeps/unix/sysv/linux/x86_64/profil-counter.h | 2 +- sysdeps/unix/sysv/linux/x86_64/recv.c | 2 +- sysdeps/unix/sysv/linux/x86_64/register-dump.h | 2 +- sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S | 2 +- sysdeps/unix/sysv/linux/x86_64/send.c | 2 +- sysdeps/unix/sysv/linux/x86_64/setcontext.S | 2 +- sysdeps/unix/sysv/linux/x86_64/sigaction.c | 2 +- sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h | 2 +- sysdeps/unix/sysv/linux/x86_64/sigpending.c | 2 +- sysdeps/unix/sysv/linux/x86_64/sigprocmask.c | 2 +- sysdeps/unix/sysv/linux/x86_64/swapcontext.S | 2 +- sysdeps/unix/sysv/linux/x86_64/syscall.S | 2 +- sysdeps/unix/sysv/linux/x86_64/sysconf.c | 2 +- sysdeps/unix/sysv/linux/x86_64/sysdep.S | 2 +- sysdeps/unix/sysv/linux/x86_64/sysdep.h | 2 +- sysdeps/unix/sysv/linux/x86_64/time.c | 2 +- sysdeps/unix/sysv/linux/x86_64/umount.c | 2 +- sysdeps/unix/sysv/linux/x86_64/vfork.S | 2 +- sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c | 2 +- sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h | 2 +- sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c | 2 +- sysdeps/unix/sysv/linux/x86_64/x32/init-first.c | 2 +- sysdeps/unix/sysv/linux/x86_64/x32/lseek.S | 2 +- sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S | 2 +- sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h | 2 +- sysdeps/unix/sysv/linux/xmknod.c | 2 +- sysdeps/unix/sysv/linux/xmknodat.c | 2 +- sysdeps/unix/sysv/linux/xstat.c | 2 +- sysdeps/unix/sysv/linux/xstat64.c | 2 +- sysdeps/unix/sysv/linux/xstatconv.c | 2 +- sysdeps/unix/sysv/linux/xstatconv.h | 2 +- sysdeps/unix/x86_64/sysdep.S | 2 +- sysdeps/unix/x86_64/sysdep.h | 2 +- sysdeps/wordsize-32/bits/wordsize.h | 2 +- sysdeps/wordsize-32/divdi3.c | 2 +- sysdeps/wordsize-32/llabs.c | 2 +- sysdeps/wordsize-32/lldiv.c | 2 +- sysdeps/wordsize-32/strtoimax.c | 2 +- sysdeps/wordsize-32/strtoumax.c | 2 +- sysdeps/wordsize-32/symbol-hacks.h | 2 +- sysdeps/wordsize-32/wcstoimax.c | 2 +- sysdeps/wordsize-32/wcstoumax.c | 2 +- sysdeps/wordsize-64/bits/wordsize.h | 2 +- sysdeps/wordsize-64/labs.c | 2 +- sysdeps/wordsize-64/ldiv.c | 2 +- sysdeps/wordsize-64/strtoimax.c | 2 +- sysdeps/wordsize-64/strtoumax.c | 2 +- sysdeps/wordsize-64/tst-writev.c | 2 +- sysdeps/wordsize-64/wcstoimax.c | 2 +- sysdeps/wordsize-64/wcstoumax.c | 2 +- sysdeps/x86/bits/byteswap-16.h | 2 +- sysdeps/x86/bits/byteswap.h | 2 +- sysdeps/x86/bits/huge_vall.h | 2 +- sysdeps/x86/bits/link.h | 2 +- sysdeps/x86/bits/mathdef.h | 2 +- sysdeps/x86/bits/select.h | 2 +- sysdeps/x86/bits/setjmp.h | 2 +- sysdeps/x86/bits/string.h | 2 +- sysdeps/x86/bits/xtitypes.h | 2 +- sysdeps/x86/fpu/bits/fenv.h | 2 +- sysdeps/x86/fpu/bits/mathinline.h | 2 +- sysdeps/x86/fpu/powl_helper.c | 2 +- sysdeps/x86/fpu_control.h | 2 +- sysdeps/x86/tst-xmmymm.sh | 2 +- sysdeps/x86_64/__longjmp.S | 2 +- sysdeps/x86_64/_mcount.S | 2 +- sysdeps/x86_64/add_n.S | 2 +- sysdeps/x86_64/addmul_1.S | 2 +- sysdeps/x86_64/backtrace.c | 2 +- sysdeps/x86_64/bits/atomic.h | 2 +- sysdeps/x86_64/bsd-_setjmp.S | 2 +- sysdeps/x86_64/bsd-setjmp.S | 2 +- sysdeps/x86_64/cacheinfo.c | 2 +- sysdeps/x86_64/crti.S | 2 +- sysdeps/x86_64/crtn.S | 2 +- sysdeps/x86_64/dl-irel.h | 2 +- sysdeps/x86_64/dl-lookupcfg.h | 2 +- sysdeps/x86_64/dl-machine.h | 2 +- sysdeps/x86_64/dl-tls.h | 2 +- sysdeps/x86_64/dl-tlsdesc.S | 2 +- sysdeps/x86_64/dl-tlsdesc.h | 2 +- sysdeps/x86_64/dl-trampoline.S | 2 +- sysdeps/x86_64/dl-trampoline.h | 2 +- sysdeps/x86_64/ffs.c | 2 +- sysdeps/x86_64/ffsll.c | 2 +- sysdeps/x86_64/fpu/e_expf.S | 2 +- sysdeps/x86_64/fpu/e_powl.S | 2 +- sysdeps/x86_64/fpu/e_sqrt.c | 2 +- sysdeps/x86_64/fpu/e_sqrtf.c | 2 +- sysdeps/x86_64/fpu/fclrexcpt.c | 2 +- sysdeps/x86_64/fpu/fedisblxcpt.c | 2 +- sysdeps/x86_64/fpu/feenablxcpt.c | 2 +- sysdeps/x86_64/fpu/fegetenv.c | 2 +- sysdeps/x86_64/fpu/fegetexcept.c | 2 +- sysdeps/x86_64/fpu/fegetround.c | 2 +- sysdeps/x86_64/fpu/feholdexcpt.c | 2 +- sysdeps/x86_64/fpu/fesetenv.c | 2 +- sysdeps/x86_64/fpu/fesetround.c | 2 +- sysdeps/x86_64/fpu/feupdateenv.c | 2 +- sysdeps/x86_64/fpu/fgetexcptflg.c | 2 +- sysdeps/x86_64/fpu/fraiseexcpt.c | 2 +- sysdeps/x86_64/fpu/fsetexcptflg.c | 2 +- sysdeps/x86_64/fpu/ftestexcept.c | 2 +- sysdeps/x86_64/fpu/multiarch/s_ceil.S | 2 +- sysdeps/x86_64/fpu/multiarch/s_ceilf.S | 2 +- sysdeps/x86_64/fpu/multiarch/s_floor.S | 2 +- sysdeps/x86_64/fpu/multiarch/s_floorf.S | 2 +- sysdeps/x86_64/fpu/multiarch/s_fma.c | 2 +- sysdeps/x86_64/fpu/multiarch/s_fmaf.c | 2 +- sysdeps/x86_64/fpu/multiarch/s_nearbyint.S | 2 +- sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S | 2 +- sysdeps/x86_64/fpu/multiarch/s_rint.S | 2 +- sysdeps/x86_64/fpu/multiarch/s_rintf.S | 2 +- sysdeps/x86_64/fpu/printf_fphex.c | 2 +- sysdeps/x86_64/fpu/s_copysign.S | 2 +- sysdeps/x86_64/fpu/s_copysignf.S | 2 +- sysdeps/x86_64/fpu/s_cosf.S | 2 +- sysdeps/x86_64/fpu/s_fabs.c | 2 +- sysdeps/x86_64/fpu/s_fabsf.c | 2 +- sysdeps/x86_64/fpu/s_fabsl.S | 2 +- sysdeps/x86_64/fpu/s_fdiml.S | 2 +- sysdeps/x86_64/fpu/s_fmax.S | 2 +- sysdeps/x86_64/fpu/s_fmaxf.S | 2 +- sysdeps/x86_64/fpu/s_fmaxl.S | 2 +- sysdeps/x86_64/fpu/s_fmin.S | 2 +- sysdeps/x86_64/fpu/s_fminf.S | 2 +- sysdeps/x86_64/fpu/s_fminl.S | 2 +- sysdeps/x86_64/fpu/s_llrint.S | 2 +- sysdeps/x86_64/fpu/s_llrintf.S | 2 +- sysdeps/x86_64/fpu/s_llrintl.S | 2 +- sysdeps/x86_64/fpu/s_signbit.S | 2 +- sysdeps/x86_64/fpu/s_signbitf.S | 2 +- sysdeps/x86_64/fpu/s_sincosf.S | 2 +- sysdeps/x86_64/fpu/s_sinf.S | 2 +- sysdeps/x86_64/fpu/s_truncl.S | 2 +- sysdeps/x86_64/hp-timing.h | 2 +- sysdeps/x86_64/htonl.S | 2 +- sysdeps/x86_64/jmpbuf-offsets.h | 2 +- sysdeps/x86_64/jmpbuf-unwind.h | 2 +- sysdeps/x86_64/ldsodefs.h | 2 +- sysdeps/x86_64/lshift.S | 2 +- sysdeps/x86_64/machine-gmon.h | 2 +- sysdeps/x86_64/memchr.S | 2 +- sysdeps/x86_64/memcmp.S | 2 +- sysdeps/x86_64/memcpy.S | 2 +- sysdeps/x86_64/memcpy_chk.S | 2 +- sysdeps/x86_64/memmove.c | 2 +- sysdeps/x86_64/mempcpy_chk.S | 2 +- sysdeps/x86_64/memrchr.S | 2 +- sysdeps/x86_64/memset.S | 2 +- sysdeps/x86_64/memset_chk.S | 2 +- sysdeps/x86_64/memusage.h | 2 +- sysdeps/x86_64/mul_1.S | 2 +- sysdeps/x86_64/multiarch/ifunc-impl-list.c | 2 +- sysdeps/x86_64/multiarch/init-arch.c | 2 +- sysdeps/x86_64/multiarch/init-arch.h | 2 +- sysdeps/x86_64/multiarch/memcmp-sse4.S | 2 +- sysdeps/x86_64/multiarch/memcmp-ssse3.S | 2 +- sysdeps/x86_64/multiarch/memcmp.S | 2 +- sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S | 2 +- sysdeps/x86_64/multiarch/memcpy-ssse3-back.S | 2 +- sysdeps/x86_64/multiarch/memcpy-ssse3.S | 2 +- sysdeps/x86_64/multiarch/memcpy.S | 2 +- sysdeps/x86_64/multiarch/memcpy_chk.S | 2 +- sysdeps/x86_64/multiarch/memmove.c | 2 +- sysdeps/x86_64/multiarch/memmove_chk.c | 2 +- sysdeps/x86_64/multiarch/mempcpy.S | 2 +- sysdeps/x86_64/multiarch/mempcpy_chk.S | 2 +- sysdeps/x86_64/multiarch/sched_cpucount.c | 2 +- sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S | 2 +- sysdeps/x86_64/multiarch/strcat-ssse3.S | 2 +- sysdeps/x86_64/multiarch/strcat.S | 2 +- sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S | 2 +- sysdeps/x86_64/multiarch/strchr.S | 2 +- sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S | 2 +- sysdeps/x86_64/multiarch/strcmp-sse42.S | 2 +- sysdeps/x86_64/multiarch/strcmp.S | 2 +- sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S | 2 +- sysdeps/x86_64/multiarch/strcpy-ssse3.S | 2 +- sysdeps/x86_64/multiarch/strcpy.S | 2 +- sysdeps/x86_64/multiarch/strcspn-c.c | 2 +- sysdeps/x86_64/multiarch/strcspn.S | 2 +- sysdeps/x86_64/multiarch/strspn-c.c | 2 +- sysdeps/x86_64/multiarch/strspn.S | 2 +- sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S | 2 +- sysdeps/x86_64/multiarch/strstr.c | 2 +- sysdeps/x86_64/multiarch/test-multiarch.c | 2 +- sysdeps/x86_64/multiarch/varshift.c | 2 +- sysdeps/x86_64/multiarch/varshift.h | 2 +- sysdeps/x86_64/multiarch/wcscpy-ssse3.S | 2 +- sysdeps/x86_64/multiarch/wcscpy.S | 2 +- sysdeps/x86_64/multiarch/wmemcmp.S | 2 +- sysdeps/x86_64/rawmemchr.S | 2 +- sysdeps/x86_64/rshift.S | 2 +- sysdeps/x86_64/rtld-memset.S | 2 +- sysdeps/x86_64/rtld-strchr.S | 2 +- sysdeps/x86_64/rtld-strlen.S | 2 +- sysdeps/x86_64/sched_cpucount.c | 2 +- sysdeps/x86_64/setjmp.S | 2 +- sysdeps/x86_64/stackinfo.h | 2 +- sysdeps/x86_64/start.S | 2 +- sysdeps/x86_64/strcat.S | 2 +- sysdeps/x86_64/strchr.S | 2 +- sysdeps/x86_64/strchrnul.S | 2 +- sysdeps/x86_64/strcmp.S | 2 +- sysdeps/x86_64/strcpy.S | 2 +- sysdeps/x86_64/strcpy_chk.S | 2 +- sysdeps/x86_64/strcspn.S | 2 +- sysdeps/x86_64/strlen.S | 2 +- sysdeps/x86_64/strrchr.S | 2 +- sysdeps/x86_64/strspn.S | 2 +- sysdeps/x86_64/strtok.S | 2 +- sysdeps/x86_64/sub_n.S | 2 +- sysdeps/x86_64/submul_1.S | 2 +- sysdeps/x86_64/sysdep.h | 2 +- sysdeps/x86_64/tlsdesc.c | 2 +- sysdeps/x86_64/tst-audit.h | 2 +- sysdeps/x86_64/tst-mallocalign1.c | 2 +- sysdeps/x86_64/tst-quad1.c | 2 +- sysdeps/x86_64/tst-quadmod1.S | 2 +- sysdeps/x86_64/tst-quadmod2.S | 2 +- sysdeps/x86_64/tst-stack-align.h | 2 +- sysdeps/x86_64/wcschr.S | 2 +- sysdeps/x86_64/wcscmp.S | 2 +- sysdeps/x86_64/wcslen.S | 2 +- sysdeps/x86_64/wcsrchr.S | 2 +- sysdeps/x86_64/x32/dl-machine.h | 2 +- sysdeps/x86_64/x32/gmp-mparam.h | 2 +- sysdeps/x86_64/x32/sysdep.h | 2 +- sysvipc/Makefile | 2 +- sysvipc/ftok.c | 2 +- sysvipc/msgctl.c | 2 +- sysvipc/msgget.c | 2 +- sysvipc/msgrcv.c | 2 +- sysvipc/msgsnd.c | 2 +- sysvipc/semctl.c | 2 +- sysvipc/semget.c | 2 +- sysvipc/semop.c | 2 +- sysvipc/semtimedop.c | 2 +- sysvipc/shmat.c | 2 +- sysvipc/shmctl.c | 2 +- sysvipc/shmdt.c | 2 +- sysvipc/shmget.c | 2 +- sysvipc/sys/ipc.h | 2 +- sysvipc/sys/msg.h | 2 +- sysvipc/sys/sem.h | 2 +- sysvipc/sys/shm.h | 2 +- termios/Makefile | 2 +- termios/cfmakeraw.c | 2 +- termios/cfsetspeed.c | 2 +- termios/speed.c | 2 +- termios/tcdrain.c | 2 +- termios/tcflow.c | 2 +- termios/tcflush.c | 2 +- termios/tcgetattr.c | 2 +- termios/tcgetpgrp.c | 2 +- termios/tcgetsid.c | 2 +- termios/tcsendbrk.c | 2 +- termios/tcsetattr.c | 2 +- termios/tcsetpgrp.c | 2 +- termios/termios.h | 2 +- test-skeleton.c | 2 +- time/Makefile | 2 +- time/adjtime.c | 2 +- time/alt_digit.c | 2 +- time/asctime.c | 2 +- time/clock.c | 2 +- time/ctime.c | 2 +- time/ctime_r.c | 2 +- time/difftime.c | 2 +- time/dysize.c | 2 +- time/era.c | 2 +- time/ftime.c | 2 +- time/getdate.c | 2 +- time/getitimer.c | 2 +- time/gettimeofday.c | 2 +- time/gmtime.c | 2 +- time/lc-time-cleanup.c | 2 +- time/localtime.c | 2 +- time/mktime.c | 2 +- time/offtime.c | 2 +- time/setitimer.c | 2 +- time/settimeofday.c | 2 +- time/stime.c | 2 +- time/strftime.c | 2 +- time/strftime_l.c | 2 +- time/strptime.c | 2 +- time/strptime_l.c | 2 +- time/sys/time.h | 2 +- time/sys/timeb.h | 2 +- time/test_time.c | 2 +- time/time.c | 2 +- time/time.h | 2 +- time/timegm.c | 2 +- time/timespec_get.c | 2 +- time/tst-getdate.c | 2 +- time/tst-strptime-whitespace.c | 2 +- time/tst-strptime.c | 2 +- time/tzfile.c | 2 +- time/tzset.c | 2 +- time/wcsftime.c | 2 +- time/wcsftime_l.c | 2 +- timezone/Makefile | 2 +- timezone/tst-timezone.c | 2 +- wcsmbs/Makefile | 2 +- wcsmbs/bits/wchar-ldbl.h | 2 +- wcsmbs/bits/wchar2.h | 2 +- wcsmbs/btowc.c | 2 +- wcsmbs/c16rtomb.c | 2 +- wcsmbs/isoc99_fwscanf.c | 2 +- wcsmbs/isoc99_swscanf.c | 2 +- wcsmbs/isoc99_vfwscanf.c | 2 +- wcsmbs/isoc99_vswscanf.c | 2 +- wcsmbs/isoc99_vwscanf.c | 2 +- wcsmbs/isoc99_wscanf.c | 2 +- wcsmbs/mbrlen.c | 2 +- wcsmbs/mbrtoc16.c | 2 +- wcsmbs/mbrtowc.c | 2 +- wcsmbs/mbsinit.c | 2 +- wcsmbs/mbsnrtowcs.c | 2 +- wcsmbs/mbsrtowcs.c | 2 +- wcsmbs/mbsrtowcs_l.c | 2 +- wcsmbs/test-wcschr-ifunc.c | 2 +- wcsmbs/test-wcscmp-ifunc.c | 2 +- wcsmbs/test-wcscpy-ifunc.c | 2 +- wcsmbs/test-wcslen-ifunc.c | 2 +- wcsmbs/test-wcsrchr-ifunc.c | 2 +- wcsmbs/test-wmemcmp-ifunc.c | 2 +- wcsmbs/tst-btowc.c | 2 +- wcsmbs/tst-mbrtowc.c | 2 +- wcsmbs/tst-mbsrtowcs.c | 2 +- wcsmbs/tst-wcpncpy.c | 2 +- wcsmbs/tst-wcrtomb.c | 2 +- wcsmbs/tst-wcsnlen.c | 2 +- wcsmbs/uchar.h | 2 +- wcsmbs/wchar.h | 2 +- wcsmbs/wcpcpy.c | 2 +- wcsmbs/wcpncpy.c | 2 +- wcsmbs/wcrtomb.c | 2 +- wcsmbs/wcscasecmp.c | 2 +- wcsmbs/wcscasecmp_l.c | 2 +- wcsmbs/wcscat.c | 2 +- wcsmbs/wcschr.c | 2 +- wcsmbs/wcschrnul.c | 2 +- wcsmbs/wcscmp.c | 2 +- wcsmbs/wcscoll.c | 2 +- wcsmbs/wcscoll_l.c | 2 +- wcsmbs/wcscpy.c | 2 +- wcsmbs/wcscspn.c | 2 +- wcsmbs/wcsdup.c | 2 +- wcsmbs/wcslen.c | 2 +- wcsmbs/wcsmbsload.c | 2 +- wcsmbs/wcsmbsload.h | 2 +- wcsmbs/wcsncase.c | 2 +- wcsmbs/wcsncase_l.c | 2 +- wcsmbs/wcsncat.c | 2 +- wcsmbs/wcsncmp.c | 2 +- wcsmbs/wcsncpy.c | 2 +- wcsmbs/wcsnlen.c | 2 +- wcsmbs/wcsnrtombs.c | 2 +- wcsmbs/wcspbrk.c | 2 +- wcsmbs/wcsrchr.c | 2 +- wcsmbs/wcsrtombs.c | 2 +- wcsmbs/wcsspn.c | 2 +- wcsmbs/wcsstr.c | 2 +- wcsmbs/wcstod.c | 2 +- wcsmbs/wcstod_l.c | 2 +- wcsmbs/wcstof.c | 2 +- wcsmbs/wcstof_l.c | 2 +- wcsmbs/wcstok.c | 2 +- wcsmbs/wcstol.c | 2 +- wcsmbs/wcstol_l.c | 2 +- wcsmbs/wcstold.c | 2 +- wcsmbs/wcstold_l.c | 2 +- wcsmbs/wcstoll.c | 2 +- wcsmbs/wcstoll_l.c | 2 +- wcsmbs/wcstoul.c | 2 +- wcsmbs/wcstoul_l.c | 2 +- wcsmbs/wcstoull.c | 2 +- wcsmbs/wcstoull_l.c | 2 +- wcsmbs/wcswidth.c | 2 +- wcsmbs/wcsxfrm.c | 2 +- wcsmbs/wcsxfrm_l.c | 2 +- wcsmbs/wctob.c | 2 +- wcsmbs/wcwidth.c | 2 +- wcsmbs/wcwidth.h | 2 +- wcsmbs/wmemchr.c | 2 +- wcsmbs/wmemcmp.c | 2 +- wcsmbs/wmemcpy.c | 2 +- wcsmbs/wmemmove.c | 2 +- wcsmbs/wmempcpy.c | 2 +- wcsmbs/wmemset.c | 2 +- wctype/Makefile | 2 +- wctype/iswctype.c | 2 +- wctype/iswctype_l.c | 2 +- wctype/test_wcfuncs.c | 2 +- wctype/test_wctype.c | 2 +- wctype/towctrans.c | 2 +- wctype/towctrans_l.c | 2 +- wctype/wcfuncs.c | 2 +- wctype/wcfuncs_l.c | 2 +- wctype/wchar-lookup.h | 2 +- wctype/wctrans.c | 2 +- wctype/wctrans_l.c | 2 +- wctype/wctype.c | 2 +- wctype/wctype.h | 2 +- wctype/wctype_l.c | 2 +- 8406 files changed, 8413 insertions(+), 8405 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index d2c23e79be..c6b1a2a788 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2014-01-01 Allan McRae + + * All files with FSF copyright notices: Update copyright dates + using scripts/update-copyrights. + * intl/plural.c: Regenerated. + * locale/programs/charmap-kw.h: Likewise. + * locale/programs/locfile-kw.h: Likewise. + 2013-12-31 Mike Frysinger * sysdeps/unix/sysv/linux/configure: Regenerated. diff --git a/Makeconfig b/Makeconfig index 66189877b1..1908f275a9 100644 --- a/Makeconfig +++ b/Makeconfig @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/Makefile b/Makefile index 1998756df7..51d4690377 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/Makerules b/Makerules index 92c2872612..b7e556ff5f 100644 --- a/Makerules +++ b/Makerules @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/NEWS b/NEWS index 67104c0d72..2dbd610121 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,5 @@ GNU C Library NEWS -- history of user-visible changes. -Copyright (C) 1992-2013 Free Software Foundation, Inc. +Copyright (C) 1992-2014 Free Software Foundation, Inc. See the end for copying conditions. Please send GNU C library bug reports via diff --git a/Rules b/Rules index 86a052014d..49ca8ea7a2 100644 --- a/Rules +++ b/Rules @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/argp/Makefile b/argp/Makefile index 4053df0470..35f1088a26 100644 --- a/argp/Makefile +++ b/argp/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/argp/argp-ba.c b/argp/argp-ba.c index f986389897..a09f37d08f 100644 --- a/argp/argp-ba.c +++ b/argp/argp-ba.c @@ -1,5 +1,5 @@ /* Default definition for ARGP_PROGRAM_BUG_ADDRESS. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp-eexst.c b/argp/argp-eexst.c index 44ef572863..3d2a543acc 100644 --- a/argp/argp-eexst.c +++ b/argp/argp-eexst.c @@ -1,5 +1,5 @@ /* Default definition for ARGP_ERR_EXIT_STATUS - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp-fmtstream.c b/argp/argp-fmtstream.c index 95795b2087..5eed9a81d6 100644 --- a/argp/argp-fmtstream.c +++ b/argp/argp-fmtstream.c @@ -1,5 +1,5 @@ /* Word-wrapping and line-truncating streams - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp-fmtstream.h b/argp/argp-fmtstream.h index 7e58f3053f..a5a101965c 100644 --- a/argp/argp-fmtstream.h +++ b/argp/argp-fmtstream.h @@ -1,5 +1,5 @@ /* Word-wrapping and line-truncating streams. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp-fs-xinl.c b/argp/argp-fs-xinl.c index 99b0ea86d0..ae5487ad64 100644 --- a/argp/argp-fs-xinl.c +++ b/argp/argp-fs-xinl.c @@ -1,5 +1,5 @@ /* Real definitions for extern inline functions in argp-fmtstream.h - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp-help.c b/argp/argp-help.c index ace71b48c2..c5217d8092 100644 --- a/argp/argp-help.c +++ b/argp/argp-help.c @@ -1,5 +1,5 @@ /* Hierarchial argument parsing help output - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp-namefrob.h b/argp/argp-namefrob.h index 8416d261d1..89180e3264 100644 --- a/argp/argp-namefrob.h +++ b/argp/argp-namefrob.h @@ -1,5 +1,5 @@ /* Name frobnication for compiling argp outside of glibc - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp-parse.c b/argp/argp-parse.c index 3051be1471..cddb3eb480 100644 --- a/argp/argp-parse.c +++ b/argp/argp-parse.c @@ -1,5 +1,5 @@ /* Hierarchial argument parsing, layered over getopt - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp-pv.c b/argp/argp-pv.c index 60124ce42b..bfa130e708 100644 --- a/argp/argp-pv.c +++ b/argp/argp-pv.c @@ -1,5 +1,5 @@ /* Default definition for ARGP_PROGRAM_VERSION. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp-pvh.c b/argp/argp-pvh.c index cf5607636d..5617bb8c97 100644 --- a/argp/argp-pvh.c +++ b/argp/argp-pvh.c @@ -1,5 +1,5 @@ /* Default definition for ARGP_PROGRAM_VERSION_HOOK. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp-test.c b/argp/argp-test.c index 7aad964a08..8c01a7301b 100644 --- a/argp/argp-test.c +++ b/argp/argp-test.c @@ -1,5 +1,5 @@ /* Test program for argp argument parser - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp-xinl.c b/argp/argp-xinl.c index 858be7dc53..07456f9777 100644 --- a/argp/argp-xinl.c +++ b/argp/argp-xinl.c @@ -1,5 +1,5 @@ /* Real definitions for extern inline functions in argp.h - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/argp.h b/argp/argp.h index 5160da8f64..3845172afa 100644 --- a/argp/argp.h +++ b/argp/argp.h @@ -1,5 +1,5 @@ /* Hierarchial argument parsing, layered over getopt. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader . diff --git a/argp/tst-argp1.c b/argp/tst-argp1.c index a40cd52581..0b17e36e58 100644 --- a/argp/tst-argp1.c +++ b/argp/tst-argp1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/argp/tst-argp2.c b/argp/tst-argp2.c index ce17058cb2..cfa6084bc1 100644 --- a/argp/tst-argp2.c +++ b/argp/tst-argp2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2007. diff --git a/assert/Makefile b/assert/Makefile index 1ebc657412..60ec53d001 100644 --- a/assert/Makefile +++ b/assert/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/assert/__assert.c b/assert/__assert.c index 8c544a5f68..66f6464ae8 100644 --- a/assert/__assert.c +++ b/assert/__assert.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/assert/assert-perr.c b/assert/assert-perr.c index 6afe3fdf6a..064c882b56 100644 --- a/assert/assert-perr.c +++ b/assert/assert-perr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/assert/assert.c b/assert/assert.c index 61e7f6b9f8..2b85993e67 100644 --- a/assert/assert.c +++ b/assert/assert.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/assert/assert.h b/assert/assert.h index 1bb9b2d50f..26613919bc 100644 --- a/assert/assert.h +++ b/assert/assert.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/Makefile b/benchtests/Makefile index 117228b9ad..8bfb03917e 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-bcopy.c b/benchtests/bench-bcopy.c index 4d0d055906..97067e3434 100644 --- a/benchtests/bench-bcopy.c +++ b/benchtests/bench-bcopy.c @@ -1,5 +1,5 @@ /* Measure bcopy functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-bzero.c b/benchtests/bench-bzero.c index 18e7d17461..b8a9e08eed 100644 --- a/benchtests/bench-bzero.c +++ b/benchtests/bench-bzero.c @@ -1,5 +1,5 @@ /* Measure bzero functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-memccpy.c b/benchtests/bench-memccpy.c index 2c47e79376..d0e133fbe3 100644 --- a/benchtests/bench-memccpy.c +++ b/benchtests/bench-memccpy.c @@ -1,5 +1,5 @@ /* Measure memccpy functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-memchr.c b/benchtests/bench-memchr.c index 30c472c131..a9820f1859 100644 --- a/benchtests/bench-memchr.c +++ b/benchtests/bench-memchr.c @@ -1,5 +1,5 @@ /* Measure memchr functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-memcmp.c b/benchtests/bench-memcmp.c index 544130b01d..cbada118a1 100644 --- a/benchtests/bench-memcmp.c +++ b/benchtests/bench-memcmp.c @@ -1,5 +1,5 @@ /* Measure memcmp functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-memcpy.c b/benchtests/bench-memcpy.c index 8cd9c23b44..21d16423d0 100644 --- a/benchtests/bench-memcpy.c +++ b/benchtests/bench-memcpy.c @@ -1,5 +1,5 @@ /* Measure memcpy functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-memmem.c b/benchtests/bench-memmem.c index b8f8a8b2a3..6fe3bc666b 100644 --- a/benchtests/bench-memmem.c +++ b/benchtests/bench-memmem.c @@ -1,5 +1,5 @@ /* Measure memmem functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-memmove.c b/benchtests/bench-memmove.c index 332d6af263..a3b5dc97bf 100644 --- a/benchtests/bench-memmove.c +++ b/benchtests/bench-memmove.c @@ -1,5 +1,5 @@ /* Measure memmove functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-mempcpy.c b/benchtests/bench-mempcpy.c index 0e0e3b9e47..94b84da3b2 100644 --- a/benchtests/bench-mempcpy.c +++ b/benchtests/bench-mempcpy.c @@ -1,5 +1,5 @@ /* Measure mempcpy functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-memrchr.c b/benchtests/bench-memrchr.c index 96a597f22e..93059edc9c 100644 --- a/benchtests/bench-memrchr.c +++ b/benchtests/bench-memrchr.c @@ -1,5 +1,5 @@ /* Measure memrchr functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-memset.c b/benchtests/bench-memset.c index e45807c0ee..5304113e3d 100644 --- a/benchtests/bench-memset.c +++ b/benchtests/bench-memset.c @@ -1,5 +1,5 @@ /* Measure memset functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-modf.c b/benchtests/bench-modf.c index 2b50665b7e..407360c8f9 100644 --- a/benchtests/bench-modf.c +++ b/benchtests/bench-modf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-rawmemchr.c b/benchtests/bench-rawmemchr.c index df6a310e2b..feb5744ebc 100644 --- a/benchtests/bench-rawmemchr.c +++ b/benchtests/bench-rawmemchr.c @@ -1,5 +1,5 @@ /* Measure memchr functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-skeleton.c b/benchtests/bench-skeleton.c index 05edc69c5e..4290e76f31 100644 --- a/benchtests/bench-skeleton.c +++ b/benchtests/bench-skeleton.c @@ -1,5 +1,5 @@ /* Skeleton for benchmark programs. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-stpcpy.c b/benchtests/bench-stpcpy.c index 0645298471..64bb5a0d6f 100644 --- a/benchtests/bench-stpcpy.c +++ b/benchtests/bench-stpcpy.c @@ -1,5 +1,5 @@ /* Measure stpcpy functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-stpcpy_chk.c b/benchtests/bench-stpcpy_chk.c index 964ca5e2ba..1f6ae438b7 100644 --- a/benchtests/bench-stpcpy_chk.c +++ b/benchtests/bench-stpcpy_chk.c @@ -1,5 +1,5 @@ /* Measure stpcpy checking functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-stpncpy.c b/benchtests/bench-stpncpy.c index 65ed800074..f7256124f9 100644 --- a/benchtests/bench-stpncpy.c +++ b/benchtests/bench-stpncpy.c @@ -1,5 +1,5 @@ /* Measure stpncpy functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strcasecmp.c b/benchtests/bench-strcasecmp.c index 1458df1e94..dc9e439ade 100644 --- a/benchtests/bench-strcasecmp.c +++ b/benchtests/bench-strcasecmp.c @@ -1,5 +1,5 @@ /* Measure strcasecmp functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strcasestr.c b/benchtests/bench-strcasestr.c index 68b7e95ad5..5b57d55ef4 100644 --- a/benchtests/bench-strcasestr.c +++ b/benchtests/bench-strcasestr.c @@ -1,5 +1,5 @@ /* Measure strcasestr functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strcat.c b/benchtests/bench-strcat.c index 6602009eb1..fa21730c50 100644 --- a/benchtests/bench-strcat.c +++ b/benchtests/bench-strcat.c @@ -1,5 +1,5 @@ /* Measure strcat functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strchr.c b/benchtests/bench-strchr.c index d432ba53b8..f1cea91f28 100644 --- a/benchtests/bench-strchr.c +++ b/benchtests/bench-strchr.c @@ -1,5 +1,5 @@ /* Measure STRCHR functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strchrnul.c b/benchtests/bench-strchrnul.c index db5680c2f3..6d21ba28a4 100644 --- a/benchtests/bench-strchrnul.c +++ b/benchtests/bench-strchrnul.c @@ -1,5 +1,5 @@ /* Measure strchrnul function. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strcmp.c b/benchtests/bench-strcmp.c index c1e0b263a3..75a2f1d83c 100644 --- a/benchtests/bench-strcmp.c +++ b/benchtests/bench-strcmp.c @@ -1,5 +1,5 @@ /* Measure strcmp and wcscmp functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strcpy.c b/benchtests/bench-strcpy.c index 88db83b886..c3ab4cfcf7 100644 --- a/benchtests/bench-strcpy.c +++ b/benchtests/bench-strcpy.c @@ -1,5 +1,5 @@ /* Measure strcpy functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strcpy_chk.c b/benchtests/bench-strcpy_chk.c index 3c2a0b3fb2..8accb61716 100644 --- a/benchtests/bench-strcpy_chk.c +++ b/benchtests/bench-strcpy_chk.c @@ -1,5 +1,5 @@ /* Measure __strcpy_chk functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strcspn.c b/benchtests/bench-strcspn.c index 22b3b84957..16404e155c 100644 --- a/benchtests/bench-strcspn.c +++ b/benchtests/bench-strcspn.c @@ -1,5 +1,5 @@ /* Measure strcspn functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-string.h b/benchtests/bench-string.h index 46b4138d36..26096806f3 100644 --- a/benchtests/bench-string.h +++ b/benchtests/bench-string.h @@ -1,5 +1,5 @@ /* Measure string and memory functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strlen.c b/benchtests/bench-strlen.c index 44c9c2b4a6..d0f2d2550f 100644 --- a/benchtests/bench-strlen.c +++ b/benchtests/bench-strlen.c @@ -1,5 +1,5 @@ /* Measure STRLEN functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strncasecmp.c b/benchtests/bench-strncasecmp.c index 9badd051b1..1ed9e3a11a 100644 --- a/benchtests/bench-strncasecmp.c +++ b/benchtests/bench-strncasecmp.c @@ -1,5 +1,5 @@ /* Measure strncasecmp functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strncat.c b/benchtests/bench-strncat.c index 2a17817590..1c7cb80732 100644 --- a/benchtests/bench-strncat.c +++ b/benchtests/bench-strncat.c @@ -1,5 +1,5 @@ /* Measure strncat functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strncmp.c b/benchtests/bench-strncmp.c index 25df3dbc2e..d050e8bf75 100644 --- a/benchtests/bench-strncmp.c +++ b/benchtests/bench-strncmp.c @@ -1,5 +1,5 @@ /* Measure strncmp functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strncpy.c b/benchtests/bench-strncpy.c index 645925bff2..a35c71f8b4 100644 --- a/benchtests/bench-strncpy.c +++ b/benchtests/bench-strncpy.c @@ -1,5 +1,5 @@ /* Measure strncpy functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strnlen.c b/benchtests/bench-strnlen.c index 793f9bea58..d29fd03d67 100644 --- a/benchtests/bench-strnlen.c +++ b/benchtests/bench-strnlen.c @@ -1,5 +1,5 @@ /* Measure strlen functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strpbrk.c b/benchtests/bench-strpbrk.c index fe966be1ca..f94846da75 100644 --- a/benchtests/bench-strpbrk.c +++ b/benchtests/bench-strpbrk.c @@ -1,5 +1,5 @@ /* Measure strpbrk functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strrchr.c b/benchtests/bench-strrchr.c index 6a7aa84296..adceddee07 100644 --- a/benchtests/bench-strrchr.c +++ b/benchtests/bench-strrchr.c @@ -1,5 +1,5 @@ /* Measure STRCHR functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strsep.c b/benchtests/bench-strsep.c index 59dbe04555..2ba33e26e5 100644 --- a/benchtests/bench-strsep.c +++ b/benchtests/bench-strsep.c @@ -1,5 +1,5 @@ /* Measure strsep functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strspn.c b/benchtests/bench-strspn.c index 634bca193f..2680f78ea0 100644 --- a/benchtests/bench-strspn.c +++ b/benchtests/bench-strspn.c @@ -1,5 +1,5 @@ /* Measure strspn functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strstr.c b/benchtests/bench-strstr.c index 528a5c0082..e0249180b6 100644 --- a/benchtests/bench-strstr.c +++ b/benchtests/bench-strstr.c @@ -1,5 +1,5 @@ /* Measure strstr functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strtod.c b/benchtests/bench-strtod.c index 3a8a65fadf..fbe8040318 100644 --- a/benchtests/bench-strtod.c +++ b/benchtests/bench-strtod.c @@ -1,5 +1,5 @@ /* Measure strtod implementation. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-strtok.c b/benchtests/bench-strtok.c index c76d0e3e67..5e80c1a775 100644 --- a/benchtests/bench-strtok.c +++ b/benchtests/bench-strtok.c @@ -1,5 +1,5 @@ /* Measure strtok functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/benchtests/bench-timing.h b/benchtests/bench-timing.h index 619994f145..13fc9467a0 100644 --- a/benchtests/bench-timing.h +++ b/benchtests/bench-timing.h @@ -1,5 +1,5 @@ /* Define timing macros. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/atomic.h b/bits/atomic.h index 20cb95aaa4..a3d1fa1c56 100644 --- a/bits/atomic.h +++ b/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/bits/byteswap-16.h b/bits/byteswap-16.h index 617919617e..10c181a00c 100644 --- a/bits/byteswap-16.h +++ b/bits/byteswap-16.h @@ -1,5 +1,5 @@ /* Macros to swap the order of bytes in 16-bit integer values. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/byteswap.h b/bits/byteswap.h index 5a35084279..99b7fed302 100644 --- a/bits/byteswap.h +++ b/bits/byteswap.h @@ -1,5 +1,5 @@ /* Macros to swap the order of bytes in integer values. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/confname.h b/bits/confname.h index 9e8fda0c54..bf2fcc53fb 100644 --- a/bits/confname.h +++ b/bits/confname.h @@ -1,5 +1,5 @@ /* `sysconf', `pathconf', and `confstr' NAME values. Generic version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/dirent.h b/bits/dirent.h index 2117a7c0a9..3a5466ba09 100644 --- a/bits/dirent.h +++ b/bits/dirent.h @@ -1,5 +1,5 @@ /* Directory entry structure `struct dirent'. 4.4BSD/Generic version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/dlfcn.h b/bits/dlfcn.h index 5efe83d478..836b24670e 100644 --- a/bits/dlfcn.h +++ b/bits/dlfcn.h @@ -1,5 +1,5 @@ /* System dependent definitions for run-time dynamic loading. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/environments.h b/bits/environments.h index f7eb859724..46f8cb85ce 100644 --- a/bits/environments.h +++ b/bits/environments.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/errno.h b/bits/errno.h index ecaec2baf0..bd21da2c9e 100644 --- a/bits/errno.h +++ b/bits/errno.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/fcntl.h b/bits/fcntl.h index 09094d393b..61b42dc166 100644 --- a/bits/fcntl.h +++ b/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values. 4.4BSD/Generic version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/fenv.h b/bits/fenv.h index 8073169071..5e8b4b4547 100644 --- a/bits/fenv.h +++ b/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/huge_val.h b/bits/huge_val.h index 863b36d091..77fe4a2d17 100644 --- a/bits/huge_val.h +++ b/bits/huge_val.h @@ -1,6 +1,6 @@ /* Stub `HUGE_VAL' constant. Used by and functions for overflow. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/huge_valf.h b/bits/huge_valf.h index 0e34aa6542..95d81a63b3 100644 --- a/bits/huge_valf.h +++ b/bits/huge_valf.h @@ -1,6 +1,6 @@ /* Stub `HUGE_VALF' constant. Used by and functions for overflow. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/huge_vall.h b/bits/huge_vall.h index 3132917200..0c330fe21d 100644 --- a/bits/huge_vall.h +++ b/bits/huge_vall.h @@ -1,6 +1,6 @@ /* Default `HUGE_VALL' constant. Used by and functions for overflow. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/in.h b/bits/in.h index 081a9457ab..11d858a2b7 100644 --- a/bits/in.h +++ b/bits/in.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/inf.h b/bits/inf.h index b04451faf1..25d1d19d00 100644 --- a/bits/inf.h +++ b/bits/inf.h @@ -1,5 +1,5 @@ /* Default `INFINITY' constant. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/ioctl-types.h b/bits/ioctl-types.h index 9c5dbf95a3..288f38c860 100644 --- a/bits/ioctl-types.h +++ b/bits/ioctl-types.h @@ -1,5 +1,5 @@ /* Structure types for pre-termios terminal ioctls. Generic Unix version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/ipc.h b/bits/ipc.h index 0b5927f4b8..97d5a283df 100644 --- a/bits/ipc.h +++ b/bits/ipc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/ipctypes.h b/bits/ipctypes.h index dc136e2cdf..592eeb15b8 100644 --- a/bits/ipctypes.h +++ b/bits/ipctypes.h @@ -1,5 +1,5 @@ /* bits/ipctypes.h -- Define some types used by SysV IPC/MSG/SHM. Generic. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/libc-lock.h b/bits/libc-lock.h index d9551626b5..7bd935caf4 100644 --- a/bits/libc-lock.h +++ b/bits/libc-lock.h @@ -1,5 +1,5 @@ /* libc-internal interface for mutex locks. Stub version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/libc-tsd.h b/bits/libc-tsd.h index 125724287b..c4249314c9 100644 --- a/bits/libc-tsd.h +++ b/bits/libc-tsd.h @@ -1,5 +1,5 @@ /* libc-internal interface for thread-specific data. Stub or TLS version. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/mathdef.h b/bits/mathdef.h index 0ae8c29eca..ca1f464bce 100644 --- a/bits/mathdef.h +++ b/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/mman.h b/bits/mman.h index e04e614321..360f0d0c98 100644 --- a/bits/mman.h +++ b/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for BSD-style memory management. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/mqueue.h b/bits/mqueue.h index 5c9250b9aa..c04e780447 100644 --- a/bits/mqueue.h +++ b/bits/mqueue.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/msq.h b/bits/msq.h index 1f193a3b32..9c7feee247 100644 --- a/bits/msq.h +++ b/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/netdb.h b/bits/netdb.h index fd0e8d140c..daf5a41620 100644 --- a/bits/netdb.h +++ b/bits/netdb.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/param.h b/bits/param.h index e574b04721..60eed4dc70 100644 --- a/bits/param.h +++ b/bits/param.h @@ -1,5 +1,5 @@ /* Old-style Unix parameters and limits. Stub version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/poll.h b/bits/poll.h index 918ef870be..9cf011704f 100644 --- a/bits/poll.h +++ b/bits/poll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/resource.h b/bits/resource.h index b372710cf1..5574a7a0fe 100644 --- a/bits/resource.h +++ b/bits/resource.h @@ -1,5 +1,5 @@ /* Bit values & structures for resource limits. 4.4 BSD/generic GNU version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/sched.h b/bits/sched.h index 0c200a95ec..e79db042ee 100644 --- a/bits/sched.h +++ b/bits/sched.h @@ -1,6 +1,6 @@ /* Definitions of constants and data structure for POSIX 1003.1b-1993 scheduling interface. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/select.h b/bits/select.h index ca87676dba..029153d688 100644 --- a/bits/select.h +++ b/bits/select.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/sem.h b/bits/sem.h index 94faefd11f..4edc43bb1a 100644 --- a/bits/sem.h +++ b/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/shm.h b/bits/shm.h index 705c805987..150fab8c7d 100644 --- a/bits/shm.h +++ b/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/sigaction.h b/bits/sigaction.h index ee92c37689..951a5c41d3 100644 --- a/bits/sigaction.h +++ b/bits/sigaction.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/sigcontext.h b/bits/sigcontext.h index 3eacb56f74..76d450b4d9 100644 --- a/bits/sigcontext.h +++ b/bits/sigcontext.h @@ -1,5 +1,5 @@ /* Structure describing state saved while handling a signal. Stub version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/siginfo.h b/bits/siginfo.h index e400ad2d54..f77d952166 100644 --- a/bits/siginfo.h +++ b/bits/siginfo.h @@ -1,5 +1,5 @@ /* siginfo_t, sigevent and constants. Stub version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/signum.h b/bits/signum.h index 1a3e54bfe2..763700e83e 100644 --- a/bits/signum.h +++ b/bits/signum.h @@ -1,5 +1,5 @@ /* Signal number constants. Generic version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/sigset.h b/bits/sigset.h index fa0eb2d306..23a6c1fd83 100644 --- a/bits/sigset.h +++ b/bits/sigset.h @@ -1,5 +1,5 @@ /* __sig_atomic_t, __sigset_t, and related definitions. Generic/BSD version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/sigstack.h b/bits/sigstack.h index 2d8ec5f729..465156cad1 100644 --- a/bits/sigstack.h +++ b/bits/sigstack.h @@ -1,5 +1,5 @@ /* sigstack, sigaltstack definitions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/sigthread.h b/bits/sigthread.h index df2a24e5a8..adf6e3f2b8 100644 --- a/bits/sigthread.h +++ b/bits/sigthread.h @@ -1,5 +1,5 @@ /* Signal handling function for threaded programs. Generic version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/sockaddr.h b/bits/sockaddr.h index ac4023ed72..33ac0efa36 100644 --- a/bits/sockaddr.h +++ b/bits/sockaddr.h @@ -1,5 +1,5 @@ /* Definition of `struct sockaddr_*' common members. Generic/4.2 BSD version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/socket.h b/bits/socket.h index 78c54a0f9e..1b2e2437c5 100644 --- a/bits/socket.h +++ b/bits/socket.h @@ -1,5 +1,5 @@ /* System-specific socket constants and types. 4.4 BSD version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/stat.h b/bits/stat.h index 788221d4cf..ee5b2fba38 100644 --- a/bits/stat.h +++ b/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/statfs.h b/bits/statfs.h index 8de4a8ae46..1fbc88f682 100644 --- a/bits/statfs.h +++ b/bits/statfs.h @@ -1,5 +1,5 @@ /* Definition of `struct statfs', information about a filesystem. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/statvfs.h b/bits/statvfs.h index 215c438821..5a99ff3fd3 100644 --- a/bits/statvfs.h +++ b/bits/statvfs.h @@ -1,5 +1,5 @@ /* Definition of `struct statvfs', information about a filesystem. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/stdio-lock.h b/bits/stdio-lock.h index 65f12d02e2..198cb67535 100644 --- a/bits/stdio-lock.h +++ b/bits/stdio-lock.h @@ -1,5 +1,5 @@ /* Thread package specific definitions of stream lock type. Generic version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/stdlib-bsearch.h b/bits/stdlib-bsearch.h index 4cb58abe6c..78b444649f 100644 --- a/bits/stdlib-bsearch.h +++ b/bits/stdlib-bsearch.h @@ -1,5 +1,5 @@ /* Perform binary search - inline version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/stropts.h b/bits/stropts.h index 43fff79d3d..246152c879 100644 --- a/bits/stropts.h +++ b/bits/stropts.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/sys_errlist.h b/bits/sys_errlist.h index 5d83198e79..6610c93e36 100644 --- a/bits/sys_errlist.h +++ b/bits/sys_errlist.h @@ -1,5 +1,5 @@ /* Declare sys_errlist and sys_nerr, or don't. Don't version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/syslog-path.h b/bits/syslog-path.h index 4440f5ea3a..ae83b2b032 100644 --- a/bits/syslog-path.h +++ b/bits/syslog-path.h @@ -1,5 +1,5 @@ /* -- _PATH_LOG definition - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/termios.h b/bits/termios.h index 23f3d54d57..9fd694a284 100644 --- a/bits/termios.h +++ b/bits/termios.h @@ -1,5 +1,5 @@ /* termios type and macro definitions. 4.4 BSD/generic GNU version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/time.h b/bits/time.h index 763ac1a022..8b3c8e2d07 100644 --- a/bits/time.h +++ b/bits/time.h @@ -1,5 +1,5 @@ /* System-dependent timing definitions. Generic version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/types.h b/bits/types.h index dc7b784f96..02e1220b46 100644 --- a/bits/types.h +++ b/bits/types.h @@ -1,5 +1,5 @@ /* bits/types.h -- definitions of __*_t types underlying *_t types. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/typesizes.h b/bits/typesizes.h index 8268b90276..95561deda1 100644 --- a/bits/typesizes.h +++ b/bits/typesizes.h @@ -1,5 +1,5 @@ /* bits/typesizes.h -- underlying types for *_t. Generic version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/uio.h b/bits/uio.h index 17be659f7b..3d13ab3916 100644 --- a/bits/uio.h +++ b/bits/uio.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/ustat.h b/bits/ustat.h index e79e4e6880..48d7f07548 100644 --- a/bits/ustat.h +++ b/bits/ustat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/utmp.h b/bits/utmp.h index d1ea916f6f..4af8c05176 100644 --- a/bits/utmp.h +++ b/bits/utmp.h @@ -1,5 +1,5 @@ /* The `struct utmp' type, describing entries in the utmp file. Generic/BSDish - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/utsname.h b/bits/utsname.h index 6573680940..e41c43820a 100644 --- a/bits/utsname.h +++ b/bits/utsname.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/waitflags.h b/bits/waitflags.h index 59215f6ab4..b7d13515c9 100644 --- a/bits/waitflags.h +++ b/bits/waitflags.h @@ -1,5 +1,5 @@ /* Definitions of flag bits for `waitpid' et al. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/waitstatus.h b/bits/waitstatus.h index 8385d5a3e8..baa3962e09 100644 --- a/bits/waitstatus.h +++ b/bits/waitstatus.h @@ -1,5 +1,5 @@ /* Definitions of status bits for `wait' et al. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/wchar.h b/bits/wchar.h index ef93d0e784..e4ca8dbf00 100644 --- a/bits/wchar.h +++ b/bits/wchar.h @@ -1,5 +1,5 @@ /* wchar_t type related definitions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/bits/xtitypes.h b/bits/xtitypes.h index b36eeaa80f..159a7b784b 100644 --- a/bits/xtitypes.h +++ b/bits/xtitypes.h @@ -1,5 +1,5 @@ /* bits/xtitypes.h -- Define some types used by . Generic. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/catgets/Makefile b/catgets/Makefile index 205cda7a73..c95442d369 100644 --- a/catgets/Makefile +++ b/catgets/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/catgets/catgets.c b/catgets/catgets.c index 08a7905af5..eac2827214 100644 --- a/catgets/catgets.c +++ b/catgets/catgets.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, . diff --git a/catgets/catgetsinfo.h b/catgets/catgetsinfo.h index 65be6c5259..a4ecd93e0d 100644 --- a/catgets/catgetsinfo.h +++ b/catgets/catgetsinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, . diff --git a/catgets/gencat.c b/catgets/gencat.c index b11583dfa1..bc402cc1a1 100644 --- a/catgets/gencat.c +++ b/catgets/gencat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/catgets/nl_types.h b/catgets/nl_types.h index 470eee051b..e86bd899c1 100644 --- a/catgets/nl_types.h +++ b/catgets/nl_types.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/catgets/open_catalog.c b/catgets/open_catalog.c index a6c14de6e7..bc44f98247 100644 --- a/catgets/open_catalog.c +++ b/catgets/open_catalog.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, . diff --git a/catgets/test-gencat.sh b/catgets/test-gencat.sh index 69bdb54e99..08e47af24a 100755 --- a/catgets/test-gencat.sh +++ b/catgets/test-gencat.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test escape character handling in gencat. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/catgets/xopen-msg.awk b/catgets/xopen-msg.awk index cf7768c24d..61920fcdb9 100644 --- a/catgets/xopen-msg.awk +++ b/catgets/xopen-msg.awk @@ -1,5 +1,5 @@ # xopen-msg.awk - Convert Uniforum style .po file to X/Open style .msg file -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/conform/Makefile b/conform/Makefile index 902e298a46..df510d81ee 100644 --- a/conform/Makefile +++ b/conform/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/Makefile b/crypt/Makefile index 238e52746e..9f69ecbdb7 100644 --- a/crypt/Makefile +++ b/crypt/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/badsalttest.c b/crypt/badsalttest.c index f050c32b9a..954b793fd8 100644 --- a/crypt/badsalttest.c +++ b/crypt/badsalttest.c @@ -1,5 +1,5 @@ /* Test program for bad DES salt detection in crypt. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/crypt-entry.c b/crypt/crypt-entry.c index 8e64bd5fd5..2a6e9504e3 100644 --- a/crypt/crypt-entry.c +++ b/crypt/crypt-entry.c @@ -1,7 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991-2013 Free Software Foundation, Inc. + * Copyright (C) 1991-2014 Free Software Foundation, Inc. * * The GNU C Library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/crypt/crypt-private.h b/crypt/crypt-private.h index bde5cbfb71..fbaf9c4479 100644 --- a/crypt/crypt-private.h +++ b/crypt/crypt-private.h @@ -1,7 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991-2013 Free Software Foundation, Inc. + * Copyright (C) 1991-2014 Free Software Foundation, Inc. * * The GNU C Library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/crypt/crypt.c b/crypt/crypt.c index e429950e25..4fb25780fc 100644 --- a/crypt/crypt.c +++ b/crypt/crypt.c @@ -1,7 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991-2013 Free Software Foundation, Inc. + * Copyright (C) 1991-2014 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/crypt/crypt.h b/crypt/crypt.h index e0d37b5959..f95a2bdc84 100644 --- a/crypt/crypt.h +++ b/crypt/crypt.h @@ -1,7 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991-2013 Free Software Foundation, Inc. + * Copyright (C) 1991-2014 Free Software Foundation, Inc. * * The GNU C Library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/crypt/crypt_util.c b/crypt/crypt_util.c index 2409079894..287593142b 100644 --- a/crypt/crypt_util.c +++ b/crypt/crypt_util.c @@ -1,7 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991-2013 Free Software Foundation, Inc. + * Copyright (C) 1991-2014 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/crypt/md5-crypt.c b/crypt/md5-crypt.c index d2a17ef659..d1b92d786c 100644 --- a/crypt/md5-crypt.c +++ b/crypt/md5-crypt.c @@ -1,6 +1,6 @@ /* One way encryption based on MD5 sum. Compatible with the behavior of MD5 crypt introduced in FreeBSD 2.0. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/crypt/md5.c b/crypt/md5.c index 17dc856f50..a444a18788 100644 --- a/crypt/md5.c +++ b/crypt/md5.c @@ -1,6 +1,6 @@ /* Functions to compute MD5 message digest of files or memory blocks. according to the definition of MD5 in RFC 1321 from April 1992. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/md5.h b/crypt/md5.h index db01a17197..c45d31d328 100644 --- a/crypt/md5.h +++ b/crypt/md5.h @@ -1,6 +1,6 @@ /* Declaration of functions and data types used for MD5 sum computing library functions. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/md5test-giant.c b/crypt/md5test-giant.c index a31d0e13d9..09f0673591 100644 --- a/crypt/md5test-giant.c +++ b/crypt/md5test-giant.c @@ -1,5 +1,5 @@ /* Testcase for http://sourceware.org/bugzilla/show_bug.cgi?id=14090. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software; you can redistribute it and/or modify diff --git a/crypt/sha256-crypt.c b/crypt/sha256-crypt.c index c114a534ab..cf0abd2a31 100644 --- a/crypt/sha256-crypt.c +++ b/crypt/sha256-crypt.c @@ -1,5 +1,5 @@ /* One way encryption based on SHA256 sum. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2007. diff --git a/crypt/sha256.c b/crypt/sha256.c index 8fb7d47671..a5df83e23a 100644 --- a/crypt/sha256.c +++ b/crypt/sha256.c @@ -1,6 +1,6 @@ /* Functions to compute SHA256 message digest of files or memory blocks. according to the definition of SHA256 in FIPS 180-2. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/sha256.h b/crypt/sha256.h index 6aefd5ed3f..21f0a794b5 100644 --- a/crypt/sha256.h +++ b/crypt/sha256.h @@ -1,6 +1,6 @@ /* Declaration of functions and data types used for SHA256 sum computing library functions. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/sha512-crypt.c b/crypt/sha512-crypt.c index e09ae4106b..c0338a7c67 100644 --- a/crypt/sha512-crypt.c +++ b/crypt/sha512-crypt.c @@ -1,5 +1,5 @@ /* One way encryption based on SHA512 sum. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2007. diff --git a/crypt/sha512.c b/crypt/sha512.c index be20bcc822..f0c0725ccc 100644 --- a/crypt/sha512.c +++ b/crypt/sha512.c @@ -1,6 +1,6 @@ /* Functions to compute SHA512 message digest of files or memory blocks. according to the definition of SHA512 in FIPS 180-2. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/sha512.h b/crypt/sha512.h index 87c331e68c..7df7f73c6b 100644 --- a/crypt/sha512.h +++ b/crypt/sha512.h @@ -1,6 +1,6 @@ /* Declaration of functions and data types used for SHA512 sum computing library functions. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/ufc-crypt.h b/crypt/ufc-crypt.h index 1ddb1f65b9..1a78f12ffb 100644 --- a/crypt/ufc-crypt.h +++ b/crypt/ufc-crypt.h @@ -1,5 +1,5 @@ /* Types for UFC-crypt. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/crypt/ufc.c b/crypt/ufc.c index 1958156a32..6d222923e2 100644 --- a/crypt/ufc.c +++ b/crypt/ufc.c @@ -1,7 +1,7 @@ /* * UFC-crypt: ultra fast crypt(3) implementation * - * Copyright (C) 1991-2013 Free Software Foundation, Inc. + * Copyright (C) 1991-2014 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/csu/Makefile b/csu/Makefile index 24f0974b54..b5afea0dec 100644 --- a/csu/Makefile +++ b/csu/Makefile @@ -1,5 +1,5 @@ # Makefile for csu code for GNU C library. -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/abi-note.S b/csu/abi-note.S index cbd9778715..639ff2c1af 100644 --- a/csu/abi-note.S +++ b/csu/abi-note.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/check_fds.c b/csu/check_fds.c index 9b83828a81..6a70773091 100644 --- a/csu/check_fds.c +++ b/csu/check_fds.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/dso_handle.c b/csu/dso_handle.c index 89bcf15696..e50f0403ed 100644 --- a/csu/dso_handle.c +++ b/csu/dso_handle.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/elf-init.c b/csu/elf-init.c index 84700e6fff..4daf673e67 100644 --- a/csu/elf-init.c +++ b/csu/elf-init.c @@ -1,5 +1,5 @@ /* Startup support for ELF initializers/finalizers in the main executable. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/errno-loc.c b/csu/errno-loc.c index 695d8f6f16..f25faf975d 100644 --- a/csu/errno-loc.c +++ b/csu/errno-loc.c @@ -1,6 +1,6 @@ /* MT support function to get address of `errno' variable, non-threaded version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/errno.c b/csu/errno.c index dbdcb4356d..21cf7d81e7 100644 --- a/csu/errno.c +++ b/csu/errno.c @@ -1,5 +1,5 @@ /* Definition of `errno' variable. Canonical version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/gmon-start.c b/csu/gmon-start.c index 0c18321095..59b8fb865e 100644 --- a/csu/gmon-start.c +++ b/csu/gmon-start.c @@ -1,5 +1,5 @@ /* Code to enable profiling at program startup. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/init-first.c b/csu/init-first.c index b4d22ce6aa..97c8ed41ed 100644 --- a/csu/init-first.c +++ b/csu/init-first.c @@ -1,5 +1,5 @@ /* Initialization code run first thing by the ELF startup code. Common version - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/init.c b/csu/init.c index 8e3a0b80ff..ea2c31ef3c 100644 --- a/csu/init.c +++ b/csu/init.c @@ -1,5 +1,5 @@ /* Special startup support. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/libc-start.c b/csu/libc-start.c index c898d06b03..146e16ba46 100644 --- a/csu/libc-start.c +++ b/csu/libc-start.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/libc-tls.c b/csu/libc-tls.c index c37df67e6c..5aec47d54c 100644 --- a/csu/libc-tls.c +++ b/csu/libc-tls.c @@ -1,5 +1,5 @@ /* Initialization code for TLS in statically linked application. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/csu/tst-atomic-long.c b/csu/tst-atomic-long.c index 9865dd6be8..ade27b26c4 100644 --- a/csu/tst-atomic-long.c +++ b/csu/tst-atomic-long.c @@ -1,5 +1,5 @@ /* Tests for atomic.h macros. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/csu/tst-atomic.c b/csu/tst-atomic.c index da4ee4f267..d16c66dc31 100644 --- a/csu/tst-atomic.c +++ b/csu/tst-atomic.c @@ -1,5 +1,5 @@ /* Tests for atomic.h macros. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/csu/version.c b/csu/version.c index f8a1a4247d..362c3d89ad 100644 --- a/csu/version.c +++ b/csu/version.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ctype/Makefile b/ctype/Makefile index 0e8c0f04b1..7bfc928425 100644 --- a/ctype/Makefile +++ b/ctype/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/ctype/ctype-extn.c b/ctype/ctype-extn.c index 7282777115..489fd449f9 100644 --- a/ctype/ctype-extn.c +++ b/ctype/ctype-extn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ctype/ctype-info.c b/ctype/ctype-info.c index 9d4ac8f4d3..2ba63efe06 100644 --- a/ctype/ctype-info.c +++ b/ctype/ctype-info.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ctype/ctype.c b/ctype/ctype.c index 1804cf4172..1ac0ade71d 100644 --- a/ctype/ctype.c +++ b/ctype/ctype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ctype/ctype.h b/ctype/ctype.h index c8b19ea81f..e15749ce1d 100644 --- a/ctype/ctype.h +++ b/ctype/ctype.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ctype/ctype_l.c b/ctype/ctype_l.c index bc7008261f..e75670d467 100644 --- a/ctype/ctype_l.c +++ b/ctype/ctype_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ctype/isctype.c b/ctype/isctype.c index 9c3b229bcb..e2b3cf7d80 100644 --- a/ctype/isctype.c +++ b/ctype/isctype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ctype/test_ctype.c b/ctype/test_ctype.c index e48b6f2cb2..12faf8f0f8 100644 --- a/ctype/test_ctype.c +++ b/ctype/test_ctype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/Makefile b/debug/Makefile index 13ee5c80b8..ab06c17052 100644 --- a/debug/Makefile +++ b/debug/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/asprintf_chk.c b/debug/asprintf_chk.c index 2aff3af297..d652b02fd2 100644 --- a/debug/asprintf_chk.c +++ b/debug/asprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/backtrace.c b/debug/backtrace.c index 84594986cf..69dee00ce0 100644 --- a/debug/backtrace.c +++ b/debug/backtrace.c @@ -1,5 +1,5 @@ /* Return backtrace of current program state. Generic version. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/debug/backtracesyms.c b/debug/backtracesyms.c index 7a45ea72f9..3faaf7b056 100644 --- a/debug/backtracesyms.c +++ b/debug/backtracesyms.c @@ -1,5 +1,5 @@ /* Return list with names for address in backtrace. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/debug/backtracesymsfd.c b/debug/backtracesymsfd.c index 664e9cb1c3..ea9562755f 100644 --- a/debug/backtracesymsfd.c +++ b/debug/backtracesymsfd.c @@ -1,5 +1,5 @@ /* Write formatted list with names for addresses in backtrace to a file. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/debug/catchsegv.sh b/debug/catchsegv.sh index 3bfb8713ff..b479985a53 100755 --- a/debug/catchsegv.sh +++ b/debug/catchsegv.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 1998. diff --git a/debug/chk_fail.c b/debug/chk_fail.c index b29b16f164..1f63027982 100644 --- a/debug/chk_fail.c +++ b/debug/chk_fail.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/confstr_chk.c b/debug/confstr_chk.c index 40498c8a16..4253540c57 100644 --- a/debug/confstr_chk.c +++ b/debug/confstr_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 20055. diff --git a/debug/dprintf_chk.c b/debug/dprintf_chk.c index d5f6ae2206..d401b234e0 100644 --- a/debug/dprintf_chk.c +++ b/debug/dprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/execinfo.h b/debug/execinfo.h index ae5ba2cfad..b7d874dc5f 100644 --- a/debug/execinfo.h +++ b/debug/execinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/fdelt_chk.c b/debug/fdelt_chk.c index d14947676e..5baa6f4924 100644 --- a/debug/fdelt_chk.c +++ b/debug/fdelt_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/fgets_chk.c b/debug/fgets_chk.c index a152ea91e7..0f70d04917 100644 --- a/debug/fgets_chk.c +++ b/debug/fgets_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/fgets_u_chk.c b/debug/fgets_u_chk.c index cd7192d696..62ef149be7 100644 --- a/debug/fgets_u_chk.c +++ b/debug/fgets_u_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/fgetws_chk.c b/debug/fgetws_chk.c index a7a4280439..9901060711 100644 --- a/debug/fgetws_chk.c +++ b/debug/fgetws_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/fgetws_u_chk.c b/debug/fgetws_u_chk.c index 913af67c7f..dbb3ee977c 100644 --- a/debug/fgetws_u_chk.c +++ b/debug/fgetws_u_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/fortify_fail.c b/debug/fortify_fail.c index b323975d34..c76684680a 100644 --- a/debug/fortify_fail.c +++ b/debug/fortify_fail.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/fprintf_chk.c b/debug/fprintf_chk.c index 39a152e0a1..4c08ed9fae 100644 --- a/debug/fprintf_chk.c +++ b/debug/fprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/fread_chk.c b/debug/fread_chk.c index 2a98fd3777..0f77a18029 100644 --- a/debug/fread_chk.c +++ b/debug/fread_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/fread_u_chk.c b/debug/fread_u_chk.c index 0731ae74cf..6d4d9693ea 100644 --- a/debug/fread_u_chk.c +++ b/debug/fread_u_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/fwprintf_chk.c b/debug/fwprintf_chk.c index 079179025c..914dcb144d 100644 --- a/debug/fwprintf_chk.c +++ b/debug/fwprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/getcwd_chk.c b/debug/getcwd_chk.c index d87d22dee6..529170583e 100644 --- a/debug/getcwd_chk.c +++ b/debug/getcwd_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/getdomainname_chk.c b/debug/getdomainname_chk.c index 660707fe00..51ac5e0b66 100644 --- a/debug/getdomainname_chk.c +++ b/debug/getdomainname_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/getgroups_chk.c b/debug/getgroups_chk.c index a33f83be57..ec5728e43e 100644 --- a/debug/getgroups_chk.c +++ b/debug/getgroups_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/gethostname_chk.c b/debug/gethostname_chk.c index cb520f246c..10c04bd164 100644 --- a/debug/gethostname_chk.c +++ b/debug/gethostname_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/gets_chk.c b/debug/gets_chk.c index 8ea685fc74..08a59dc450 100644 --- a/debug/gets_chk.c +++ b/debug/gets_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/getwd_chk.c b/debug/getwd_chk.c index b5f46ad581..7982a226cf 100644 --- a/debug/getwd_chk.c +++ b/debug/getwd_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/longjmp_chk.c b/debug/longjmp_chk.c index d3274f253a..8656a8c4c4 100644 --- a/debug/longjmp_chk.c +++ b/debug/longjmp_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/mbsnrtowcs_chk.c b/debug/mbsnrtowcs_chk.c index a85d4b4d80..4445f98fe8 100644 --- a/debug/mbsnrtowcs_chk.c +++ b/debug/mbsnrtowcs_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/mbsrtowcs_chk.c b/debug/mbsrtowcs_chk.c index 4465cfc7c7..32ff7b2443 100644 --- a/debug/mbsrtowcs_chk.c +++ b/debug/mbsrtowcs_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/mbstowcs_chk.c b/debug/mbstowcs_chk.c index 323f65b9c6..4359e194f2 100644 --- a/debug/mbstowcs_chk.c +++ b/debug/mbstowcs_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/memcpy_chk.c b/debug/memcpy_chk.c index 5bbc44f57a..ab5adab6be 100644 --- a/debug/memcpy_chk.c +++ b/debug/memcpy_chk.c @@ -1,6 +1,6 @@ /* Copy memory to memory until the specified number of bytes has been copied with error checking. Overlap is NOT handled correctly. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/debug/memmove_chk.c b/debug/memmove_chk.c index 6337e76ec2..aa0287384b 100644 --- a/debug/memmove_chk.c +++ b/debug/memmove_chk.c @@ -1,6 +1,6 @@ /* Copy memory to memory until the specified number of bytes has been copied with error checking. Overlap is handled correctly. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/debug/mempcpy_chk.c b/debug/mempcpy_chk.c index 1573a29d02..87db7e1e10 100644 --- a/debug/mempcpy_chk.c +++ b/debug/mempcpy_chk.c @@ -1,7 +1,7 @@ /* Copy memory to memory until the specified number of bytes has been copied, return pointer to following byte, with error checking. Overlap is NOT handled correctly. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/debug/memset_chk.c b/debug/memset_chk.c index ef1cadb60f..b48f740fb5 100644 --- a/debug/memset_chk.c +++ b/debug/memset_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/noophooks.c b/debug/noophooks.c index d0a998218b..9c07167202 100644 --- a/debug/noophooks.c +++ b/debug/noophooks.c @@ -1,5 +1,5 @@ /* Noop hooks for the instrumenting functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/debug/obprintf_chk.c b/debug/obprintf_chk.c index f83b5498ab..b9431b9a77 100644 --- a/debug/obprintf_chk.c +++ b/debug/obprintf_chk.c @@ -1,5 +1,5 @@ /* Print output of stream to given obstack. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/debug/pcprofile.c b/debug/pcprofile.c index ad860dfbe9..827f413154 100644 --- a/debug/pcprofile.c +++ b/debug/pcprofile.c @@ -1,5 +1,5 @@ /* Profile PC and write result to FIFO. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/debug/pcprofiledump.c b/debug/pcprofiledump.c index ce6096de06..87d8cb4b4d 100644 --- a/debug/pcprofiledump.c +++ b/debug/pcprofiledump.c @@ -1,5 +1,5 @@ /* Dump information generated by PC profiling. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/debug/poll_chk.c b/debug/poll_chk.c index 374fb37c26..ccd789bb7e 100644 --- a/debug/poll_chk.c +++ b/debug/poll_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/ppoll_chk.c b/debug/ppoll_chk.c index ee175865a4..214c4c6446 100644 --- a/debug/ppoll_chk.c +++ b/debug/ppoll_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/pread64_chk.c b/debug/pread64_chk.c index 78c554e6e8..eedb6aeb18 100644 --- a/debug/pread64_chk.c +++ b/debug/pread64_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/pread_chk.c b/debug/pread_chk.c index 8a652d5671..c14b87f5d2 100644 --- a/debug/pread_chk.c +++ b/debug/pread_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/printf_chk.c b/debug/printf_chk.c index e61826d3f7..33e1725db3 100644 --- a/debug/printf_chk.c +++ b/debug/printf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/read_chk.c b/debug/read_chk.c index 3df1ce82d2..643cd0e5b2 100644 --- a/debug/read_chk.c +++ b/debug/read_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/readlink_chk.c b/debug/readlink_chk.c index 0510ffc3af..5a5cb7f0b1 100644 --- a/debug/readlink_chk.c +++ b/debug/readlink_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/readlinkat_chk.c b/debug/readlinkat_chk.c index 29d282bbc6..24bd05e68b 100644 --- a/debug/readlinkat_chk.c +++ b/debug/readlinkat_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/readonly-area.c b/debug/readonly-area.c index 1123e26188..ec6d2bab2c 100644 --- a/debug/readonly-area.c +++ b/debug/readonly-area.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/realpath_chk.c b/debug/realpath_chk.c index bc60b32121..76c19ad505 100644 --- a/debug/realpath_chk.c +++ b/debug/realpath_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/recv_chk.c b/debug/recv_chk.c index 00134d898b..0bd2f499f3 100644 --- a/debug/recv_chk.c +++ b/debug/recv_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/recvfrom_chk.c b/debug/recvfrom_chk.c index bfb2467522..bc7fde6249 100644 --- a/debug/recvfrom_chk.c +++ b/debug/recvfrom_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/segfault.c b/debug/segfault.c index e1d058f0c7..ba2c11d20c 100644 --- a/debug/segfault.c +++ b/debug/segfault.c @@ -1,5 +1,5 @@ /* Catch segmentation faults and print backtrace. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/debug/snprintf_chk.c b/debug/snprintf_chk.c index 867c1be7fc..2f91c47404 100644 --- a/debug/snprintf_chk.c +++ b/debug/snprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/sprintf_chk.c b/debug/sprintf_chk.c index f43ed4d878..122b6810e2 100644 --- a/debug/sprintf_chk.c +++ b/debug/sprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/stack_chk_fail.c b/debug/stack_chk_fail.c index 01feb444a5..9105d00768 100644 --- a/debug/stack_chk_fail.c +++ b/debug/stack_chk_fail.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/stack_chk_fail_local.c b/debug/stack_chk_fail_local.c index a83a5e1c22..c99ff5de1f 100644 --- a/debug/stack_chk_fail_local.c +++ b/debug/stack_chk_fail_local.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/stpcpy_chk.c b/debug/stpcpy_chk.c index b16b83d16e..d7228ec91b 100644 --- a/debug/stpcpy_chk.c +++ b/debug/stpcpy_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/stpncpy_chk.c b/debug/stpncpy_chk.c index 0bc6ae2b11..17e6d95653 100644 --- a/debug/stpncpy_chk.c +++ b/debug/stpncpy_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/strcat_chk.c b/debug/strcat_chk.c index 20623d490d..e4e91d30d7 100644 --- a/debug/strcat_chk.c +++ b/debug/strcat_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/strcpy_chk.c b/debug/strcpy_chk.c index 81bf46f992..92549ae71a 100644 --- a/debug/strcpy_chk.c +++ b/debug/strcpy_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/strncat_chk.c b/debug/strncat_chk.c index 5e14affd90..955fc830c2 100644 --- a/debug/strncat_chk.c +++ b/debug/strncat_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/strncpy_chk.c b/debug/strncpy_chk.c index 2e078b1e4f..4c94ce5fd2 100644 --- a/debug/strncpy_chk.c +++ b/debug/strncpy_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/swprintf_chk.c b/debug/swprintf_chk.c index 6667df5be1..90c84af90a 100644 --- a/debug/swprintf_chk.c +++ b/debug/swprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/test-stpcpy_chk-ifunc.c b/debug/test-stpcpy_chk-ifunc.c index 8122277b4a..91bd628599 100644 --- a/debug/test-stpcpy_chk-ifunc.c +++ b/debug/test-stpcpy_chk-ifunc.c @@ -1,5 +1,5 @@ /* Test and measure IFUNC implementations of stpcpy checking function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/test-stpcpy_chk.c b/debug/test-stpcpy_chk.c index 1a60e77597..7c43da82b5 100644 --- a/debug/test-stpcpy_chk.c +++ b/debug/test-stpcpy_chk.c @@ -1,5 +1,5 @@ /* Test and measure stpcpy checking functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/debug/test-strcpy_chk-ifunc.c b/debug/test-strcpy_chk-ifunc.c index fc79f4e6b3..8fe9fad8ae 100644 --- a/debug/test-strcpy_chk-ifunc.c +++ b/debug/test-strcpy_chk-ifunc.c @@ -1,5 +1,5 @@ /* Test and measure IFUNC implementations of strcpy checking function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/test-strcpy_chk.c b/debug/test-strcpy_chk.c index 736ef3cd7a..62a581d190 100644 --- a/debug/test-strcpy_chk.c +++ b/debug/test-strcpy_chk.c @@ -1,5 +1,5 @@ /* Test and measure __strcpy_chk functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/debug/tst-backtrace.h b/debug/tst-backtrace.h index 0a89488f04..fc23a0edc0 100644 --- a/debug/tst-backtrace.h +++ b/debug/tst-backtrace.h @@ -1,6 +1,6 @@ /* Test backtrace and backtrace_symbols: common code for examining backtraces. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/tst-backtrace2.c b/debug/tst-backtrace2.c index 1bdef0d26d..30f82e5754 100644 --- a/debug/tst-backtrace2.c +++ b/debug/tst-backtrace2.c @@ -1,5 +1,5 @@ /* Test backtrace and backtrace_symbols. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/tst-backtrace3.c b/debug/tst-backtrace3.c index 182f423925..c7fc76e53b 100644 --- a/debug/tst-backtrace3.c +++ b/debug/tst-backtrace3.c @@ -1,5 +1,5 @@ /* Test backtrace and backtrace_symbols for recursive calls. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/tst-backtrace4.c b/debug/tst-backtrace4.c index 9c0c2a2a7d..a98775a6e2 100644 --- a/debug/tst-backtrace4.c +++ b/debug/tst-backtrace4.c @@ -1,5 +1,5 @@ /* Test backtrace and backtrace_symbols for signal frames. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/tst-backtrace5.c b/debug/tst-backtrace5.c index 51180c1c8c..4f55215592 100644 --- a/debug/tst-backtrace5.c +++ b/debug/tst-backtrace5.c @@ -1,6 +1,6 @@ /* Test backtrace and backtrace_symbols for signal frames, where a system call was interrupted by a signal. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/tst-backtrace6.c b/debug/tst-backtrace6.c index cd8dbcd1db..a5227eb063 100644 --- a/debug/tst-backtrace6.c +++ b/debug/tst-backtrace6.c @@ -1,6 +1,6 @@ /* Test backtrace and backtrace_symbols for signal frames, where a system call was interrupted by a signal. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/tst-chk1.c b/debug/tst-chk1.c index 6ca8d9d85c..f0b86a0aa6 100644 --- a/debug/tst-chk1.c +++ b/debug/tst-chk1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/debug/ttyname_r_chk.c b/debug/ttyname_r_chk.c index 0f4dd49e15..ac67879ef7 100644 --- a/debug/ttyname_r_chk.c +++ b/debug/ttyname_r_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/vasprintf_chk.c b/debug/vasprintf_chk.c index 64c458028d..a1ed46b8fb 100644 --- a/debug/vasprintf_chk.c +++ b/debug/vasprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/vdprintf_chk.c b/debug/vdprintf_chk.c index 95677774c6..940f579aed 100644 --- a/debug/vdprintf_chk.c +++ b/debug/vdprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/vfprintf_chk.c b/debug/vfprintf_chk.c index 30f51d6c77..86d258e613 100644 --- a/debug/vfprintf_chk.c +++ b/debug/vfprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/vfwprintf_chk.c b/debug/vfwprintf_chk.c index 0da11695ab..9476b75939 100644 --- a/debug/vfwprintf_chk.c +++ b/debug/vfwprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/vprintf_chk.c b/debug/vprintf_chk.c index cdad3a963c..8bc4bf6aeb 100644 --- a/debug/vprintf_chk.c +++ b/debug/vprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/vsnprintf_chk.c b/debug/vsnprintf_chk.c index 8924f99645..f28d98ed47 100644 --- a/debug/vsnprintf_chk.c +++ b/debug/vsnprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/vsprintf_chk.c b/debug/vsprintf_chk.c index d1ed6b2dd7..133f03b6f6 100644 --- a/debug/vsprintf_chk.c +++ b/debug/vsprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/vswprintf_chk.c b/debug/vswprintf_chk.c index b298a0b74b..c8e6e4455b 100644 --- a/debug/vswprintf_chk.c +++ b/debug/vswprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/vwprintf_chk.c b/debug/vwprintf_chk.c index f11da93013..f606bee152 100644 --- a/debug/vwprintf_chk.c +++ b/debug/vwprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/warning-nop.c b/debug/warning-nop.c index 8776c50c48..2a16f2791e 100644 --- a/debug/warning-nop.c +++ b/debug/warning-nop.c @@ -1,5 +1,5 @@ /* Dummy nop functions to elicit link-time warnings. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/wcpcpy_chk.c b/debug/wcpcpy_chk.c index 7c836e6bfb..3972680e2e 100644 --- a/debug/wcpcpy_chk.c +++ b/debug/wcpcpy_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/debug/wcpncpy_chk.c b/debug/wcpncpy_chk.c index a24e8fa203..b552a2ece8 100644 --- a/debug/wcpncpy_chk.c +++ b/debug/wcpncpy_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/debug/wcrtomb_chk.c b/debug/wcrtomb_chk.c index 7dc696715c..5af94dbef1 100644 --- a/debug/wcrtomb_chk.c +++ b/debug/wcrtomb_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/wcscat_chk.c b/debug/wcscat_chk.c index 2bd7e76350..2ee577ce16 100644 --- a/debug/wcscat_chk.c +++ b/debug/wcscat_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/debug/wcscpy_chk.c b/debug/wcscpy_chk.c index 61092c3d96..c64a9f67d2 100644 --- a/debug/wcscpy_chk.c +++ b/debug/wcscpy_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/debug/wcsncat_chk.c b/debug/wcsncat_chk.c index 650e93d174..0de4e11d63 100644 --- a/debug/wcsncat_chk.c +++ b/debug/wcsncat_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/debug/wcsncpy_chk.c b/debug/wcsncpy_chk.c index 89762d04ba..abecabf0da 100644 --- a/debug/wcsncpy_chk.c +++ b/debug/wcsncpy_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/debug/wcsnrtombs_chk.c b/debug/wcsnrtombs_chk.c index 47d649b658..122cd4b7f8 100644 --- a/debug/wcsnrtombs_chk.c +++ b/debug/wcsnrtombs_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/wcsrtombs_chk.c b/debug/wcsrtombs_chk.c index cd1a1074e2..48ae91df41 100644 --- a/debug/wcsrtombs_chk.c +++ b/debug/wcsrtombs_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/wcstombs_chk.c b/debug/wcstombs_chk.c index 2de1d9f8be..f704cdc3ef 100644 --- a/debug/wcstombs_chk.c +++ b/debug/wcstombs_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/wctomb_chk.c b/debug/wctomb_chk.c index 3b6b3073e8..05b00d65cf 100644 --- a/debug/wctomb_chk.c +++ b/debug/wctomb_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/wmemcpy_chk.c b/debug/wmemcpy_chk.c index fe5fd9c284..daeb44e037 100644 --- a/debug/wmemcpy_chk.c +++ b/debug/wmemcpy_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/debug/wmemmove_chk.c b/debug/wmemmove_chk.c index 474c9d0630..59462cda3b 100644 --- a/debug/wmemmove_chk.c +++ b/debug/wmemmove_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, diff --git a/debug/wmempcpy_chk.c b/debug/wmempcpy_chk.c index 1fe3511bbc..10be83c68c 100644 --- a/debug/wmempcpy_chk.c +++ b/debug/wmempcpy_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/debug/wmemset_chk.c b/debug/wmemset_chk.c index 537cd2a815..4caabbe420 100644 --- a/debug/wmemset_chk.c +++ b/debug/wmemset_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/debug/wprintf_chk.c b/debug/wprintf_chk.c index 2b8054a36b..d787206202 100644 --- a/debug/wprintf_chk.c +++ b/debug/wprintf_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/debug/xtrace.sh b/debug/xtrace.sh index d3e7f3a707..608af3088a 100755 --- a/debug/xtrace.sh +++ b/debug/xtrace.sh @@ -1,5 +1,5 @@ #! @BASH@ -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 1999. diff --git a/dirent/Makefile b/dirent/Makefile index f28e8e4116..a67d2e6f20 100644 --- a/dirent/Makefile +++ b/dirent/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/alphasort.c b/dirent/alphasort.c index 5ddedf4570..0757c211bb 100644 --- a/dirent/alphasort.c +++ b/dirent/alphasort.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/alphasort64.c b/dirent/alphasort64.c index ed2f6844ce..68a2bc0998 100644 --- a/dirent/alphasort64.c +++ b/dirent/alphasort64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/closedir.c b/dirent/closedir.c index f146217b41..599f4d481e 100644 --- a/dirent/closedir.c +++ b/dirent/closedir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/dirent.h b/dirent/dirent.h index aa22fc89e7..9227adc867 100644 --- a/dirent/dirent.h +++ b/dirent/dirent.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/dirfd.c b/dirent/dirfd.c index db82aa1da9..e61d4476f4 100644 --- a/dirent/dirfd.c +++ b/dirent/dirfd.c @@ -1,5 +1,5 @@ /* Return the file descriptor used by a DIR stream. Stub version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/fdopendir.c b/dirent/fdopendir.c index 6463b40300..ca327c1663 100644 --- a/dirent/fdopendir.c +++ b/dirent/fdopendir.c @@ -1,5 +1,5 @@ /* Open a directory stream from a file descriptor. Stub version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/getdents.c b/dirent/getdents.c index 6bd0c7c024..c68897435f 100644 --- a/dirent/getdents.c +++ b/dirent/getdents.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/getdents64.c b/dirent/getdents64.c index 6fc400f80a..a48fd4e09a 100644 --- a/dirent/getdents64.c +++ b/dirent/getdents64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/list.c b/dirent/list.c index 0500703baf..2f5a3e9179 100644 --- a/dirent/list.c +++ b/dirent/list.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/opendir-tst1.c b/dirent/opendir-tst1.c index e0ca0f9666..d38c1f47e8 100644 --- a/dirent/opendir-tst1.c +++ b/dirent/opendir-tst1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/dirent/opendir.c b/dirent/opendir.c index 46e6fa9799..2b3983f87e 100644 --- a/dirent/opendir.c +++ b/dirent/opendir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/readdir.c b/dirent/readdir.c index e09e3735e5..49b0ca0c62 100644 --- a/dirent/readdir.c +++ b/dirent/readdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/readdir64.c b/dirent/readdir64.c index fac7c0ea13..8a5037b4b8 100644 --- a/dirent/readdir64.c +++ b/dirent/readdir64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/readdir64_r.c b/dirent/readdir64_r.c index 048c6eee12..5e2ce17001 100644 --- a/dirent/readdir64_r.c +++ b/dirent/readdir64_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/readdir_r.c b/dirent/readdir_r.c index e8573b2847..521c02cd0d 100644 --- a/dirent/readdir_r.c +++ b/dirent/readdir_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/rewinddir.c b/dirent/rewinddir.c index 9bb528a962..86d9fbd720 100644 --- a/dirent/rewinddir.c +++ b/dirent/rewinddir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/scandir.c b/dirent/scandir.c index 4ff0d2a885..ae03630d6e 100644 --- a/dirent/scandir.c +++ b/dirent/scandir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/scandir64.c b/dirent/scandir64.c index e60ae55e39..9b07d6373e 100644 --- a/dirent/scandir64.c +++ b/dirent/scandir64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/scandirat.c b/dirent/scandirat.c index 0f2a440868..1076f28d26 100644 --- a/dirent/scandirat.c +++ b/dirent/scandirat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/scandirat64.c b/dirent/scandirat64.c index 64f5779333..736cf3f537 100644 --- a/dirent/scandirat64.c +++ b/dirent/scandirat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/seekdir.c b/dirent/seekdir.c index 1452eb494c..d85dc77cef 100644 --- a/dirent/seekdir.c +++ b/dirent/seekdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/telldir.c b/dirent/telldir.c index a67bc1af19..c15099c1e3 100644 --- a/dirent/telldir.c +++ b/dirent/telldir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/versionsort.c b/dirent/versionsort.c index efea0242ca..7c8bec0f6b 100644 --- a/dirent/versionsort.c +++ b/dirent/versionsort.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dirent/versionsort64.c b/dirent/versionsort64.c index 444d013d9d..78d8822d5b 100644 --- a/dirent/versionsort64.c +++ b/dirent/versionsort64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/Makefile b/dlfcn/Makefile index 1eedc3fc5b..bf20063902 100644 --- a/dlfcn/Makefile +++ b/dlfcn/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/bug-dl-leaf-lib-cb.c b/dlfcn/bug-dl-leaf-lib-cb.c index e028c047a5..d1c25227f9 100644 --- a/dlfcn/bug-dl-leaf-lib-cb.c +++ b/dlfcn/bug-dl-leaf-lib-cb.c @@ -1,7 +1,7 @@ /* Make sure dlopen/dlclose are not marked as leaf functions. See bug-dl-leaf-lib.c for details. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mike Frysinger diff --git a/dlfcn/bug-dl-leaf-lib.c b/dlfcn/bug-dl-leaf-lib.c index e5955422d1..4afd81b1f4 100644 --- a/dlfcn/bug-dl-leaf-lib.c +++ b/dlfcn/bug-dl-leaf-lib.c @@ -1,6 +1,6 @@ /* Make sure dlopen/dlclose are not marked as leaf functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mike Frysinger diff --git a/dlfcn/bug-dl-leaf.c b/dlfcn/bug-dl-leaf.c index c3fbe757fb..9c73ec018e 100644 --- a/dlfcn/bug-dl-leaf.c +++ b/dlfcn/bug-dl-leaf.c @@ -1,7 +1,7 @@ /* Make sure dlopen/dlclose are not marked as leaf functions. See bug-dl-leaf-lib.c for details. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mike Frysinger diff --git a/dlfcn/dladdr.c b/dlfcn/dladdr.c index 9c09f70a4c..2b93cec210 100644 --- a/dlfcn/dladdr.c +++ b/dlfcn/dladdr.c @@ -1,5 +1,5 @@ /* Locate the shared object symbol nearest a given address. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/dladdr1.c b/dlfcn/dladdr1.c index 3b2f3f30af..a8f10beed3 100644 --- a/dlfcn/dladdr1.c +++ b/dlfcn/dladdr1.c @@ -1,5 +1,5 @@ /* Locate the shared object symbol nearest a given address. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/dlclose.c b/dlfcn/dlclose.c index df34a0c38b..8b5decc46c 100644 --- a/dlfcn/dlclose.c +++ b/dlfcn/dlclose.c @@ -1,5 +1,5 @@ /* Close a handle opened by `dlopen'. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/dlerror.c b/dlfcn/dlerror.c index 0ae2bbe233..d9bbecf495 100644 --- a/dlfcn/dlerror.c +++ b/dlfcn/dlerror.c @@ -1,5 +1,5 @@ /* Return error detail for failing functions. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/dlfcn.c b/dlfcn/dlfcn.c index 14d8360fcb..3f91530901 100644 --- a/dlfcn/dlfcn.c +++ b/dlfcn/dlfcn.c @@ -1,5 +1,5 @@ /* Load a shared object at run time. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/dlfcn.h b/dlfcn/dlfcn.h index 1ed47b1d1e..461cef1862 100644 --- a/dlfcn/dlfcn.h +++ b/dlfcn/dlfcn.h @@ -1,5 +1,5 @@ /* User functions for run-time dynamic loading. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/dlinfo.c b/dlfcn/dlinfo.c index 91795d380d..f2527fee72 100644 --- a/dlfcn/dlinfo.c +++ b/dlfcn/dlinfo.c @@ -1,5 +1,5 @@ /* dlinfo -- Get information from the dynamic linker. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/dlmopen.c b/dlfcn/dlmopen.c index 5e32f5dffe..1e2cbcfdb4 100644 --- a/dlfcn/dlmopen.c +++ b/dlfcn/dlmopen.c @@ -1,5 +1,5 @@ /* Load a shared object at run time. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/dlopen.c b/dlfcn/dlopen.c index 899a4f58dd..2db6610a77 100644 --- a/dlfcn/dlopen.c +++ b/dlfcn/dlopen.c @@ -1,5 +1,5 @@ /* Load a shared object at run time. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/dlopenold.c b/dlfcn/dlopenold.c index fa587af980..6d3a430cf6 100644 --- a/dlfcn/dlopenold.c +++ b/dlfcn/dlopenold.c @@ -1,5 +1,5 @@ /* Load a shared object at run time. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/dlsym.c b/dlfcn/dlsym.c index ad5eee62aa..a1e2e01775 100644 --- a/dlfcn/dlsym.c +++ b/dlfcn/dlsym.c @@ -1,5 +1,5 @@ /* Look up a symbol in a shared object loaded by `dlopen'. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/dlvsym.c b/dlfcn/dlvsym.c index fd95267726..5d05d97963 100644 --- a/dlfcn/dlvsym.c +++ b/dlfcn/dlvsym.c @@ -1,5 +1,5 @@ /* Look up a versioned symbol in a shared object loaded by `dlopen'. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/errmsg1.c b/dlfcn/errmsg1.c index 6ac0558a99..43c6f4a2e0 100644 --- a/dlfcn/errmsg1.c +++ b/dlfcn/errmsg1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/errmsg1mod.c b/dlfcn/errmsg1mod.c index dabae77724..62b3628ca2 100644 --- a/dlfcn/errmsg1mod.c +++ b/dlfcn/errmsg1mod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/eval.c b/dlfcn/eval.c index 5334511585..9cc307a0c6 100644 --- a/dlfcn/eval.c +++ b/dlfcn/eval.c @@ -1,5 +1,5 @@ /* You don't really want to know what this hack is for. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/glreflib1.c b/dlfcn/glreflib1.c index 1e951d12fd..1a4b829d6f 100644 --- a/dlfcn/glreflib1.c +++ b/dlfcn/glreflib1.c @@ -1,5 +1,5 @@ /* Test for dependency tracking added by relocations. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/glreflib2.c b/dlfcn/glreflib2.c index afb95357c0..f69dfb5b21 100644 --- a/dlfcn/glreflib2.c +++ b/dlfcn/glreflib2.c @@ -1,5 +1,5 @@ /* Test for dependency tracking added by relocations. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/glrefmain.c b/dlfcn/glrefmain.c index dc72d381ae..e0a3ae9fc3 100644 --- a/dlfcn/glrefmain.c +++ b/dlfcn/glrefmain.c @@ -1,5 +1,5 @@ /* Test for dependency tracking added by relocations. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/modatexit.c b/dlfcn/modatexit.c index f2c473f407..542766bd83 100644 --- a/dlfcn/modatexit.c +++ b/dlfcn/modatexit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/modcxaatexit.c b/dlfcn/modcxaatexit.c index 8c9ac8b67a..a1bdbc6075 100644 --- a/dlfcn/modcxaatexit.c +++ b/dlfcn/modcxaatexit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/modstatic3.c b/dlfcn/modstatic3.c index cd24986f23..7672d94993 100644 --- a/dlfcn/modstatic3.c +++ b/dlfcn/modstatic3.c @@ -1,5 +1,5 @@ /* DSO used for dlopen testing with a static executable. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/modstatic5.c b/dlfcn/modstatic5.c index 40c541e631..fae27b0318 100644 --- a/dlfcn/modstatic5.c +++ b/dlfcn/modstatic5.c @@ -1,6 +1,6 @@ /* DSO used for GLRO(dl_pagesize) initialization testing with a static executable. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/tst-dladdr.c b/dlfcn/tst-dladdr.c index 05aff5065f..8422634acc 100644 --- a/dlfcn/tst-dladdr.c +++ b/dlfcn/tst-dladdr.c @@ -1,5 +1,5 @@ /* Test for dladdr. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Volkmar Sieh and Andreas Jaeger . diff --git a/dlfcn/tst-dlinfo.c b/dlfcn/tst-dlinfo.c index c05da7a4f9..cb1f4a2be2 100644 --- a/dlfcn/tst-dlinfo.c +++ b/dlfcn/tst-dlinfo.c @@ -1,5 +1,5 @@ /* Test for dlinfo. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/tstatexit.c b/dlfcn/tstatexit.c index 012772e3e0..d0b605d5f2 100644 --- a/dlfcn/tstatexit.c +++ b/dlfcn/tstatexit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/tstcxaatexit.c b/dlfcn/tstcxaatexit.c index ad70652c7f..a7254bc252 100644 --- a/dlfcn/tstcxaatexit.c +++ b/dlfcn/tstcxaatexit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/tststatic3.c b/dlfcn/tststatic3.c index 8a3421e80c..a12c80eeb4 100644 --- a/dlfcn/tststatic3.c +++ b/dlfcn/tststatic3.c @@ -1,5 +1,5 @@ /* Global-scope DSO mapping test with a static executable (BZ #15022). - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/tststatic4.c b/dlfcn/tststatic4.c index f6078e07a6..23be2608b1 100644 --- a/dlfcn/tststatic4.c +++ b/dlfcn/tststatic4.c @@ -1,5 +1,5 @@ /* Global object symbol access tests with a static executable (BZ #15022). - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/dlfcn/tststatic5.c b/dlfcn/tststatic5.c index 3d0ff7f31f..3f99c6a20a 100644 --- a/dlfcn/tststatic5.c +++ b/dlfcn/tststatic5.c @@ -1,5 +1,5 @@ /* GLRO(dl_pagesize) initialization DSO test with a static executable. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/Makefile b/elf/Makefile index c6626e14bf..4c58fc9c24 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/cache.c b/elf/cache.c index 1a43dd7765..4cbf8d9a5c 100644 --- a/elf/cache.c +++ b/elf/cache.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/elf/chroot_canon.c b/elf/chroot_canon.c index 68c961d3c3..0e3d1c419c 100644 --- a/elf/chroot_canon.c +++ b/elf/chroot_canon.c @@ -1,5 +1,5 @@ /* Return the canonical absolute name of a given file inside chroot. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software; you can redistribute it and/or modify diff --git a/elf/dl-addr.c b/elf/dl-addr.c index a53346627f..ffb80fee9b 100644 --- a/elf/dl-addr.c +++ b/elf/dl-addr.c @@ -1,5 +1,5 @@ /* Locate the shared object symbol nearest a given address. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-cache.c b/elf/dl-cache.c index 0b68d18b93..d36623f09e 100644 --- a/elf/dl-cache.c +++ b/elf/dl-cache.c @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-caller.c b/elf/dl-caller.c index c5e3b723bc..97fa062dd0 100644 --- a/elf/dl-caller.c +++ b/elf/dl-caller.c @@ -1,5 +1,5 @@ /* Check whether caller comes from the right place. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-close.c b/elf/dl-close.c index 407926bade..c8ffcf8ebd 100644 --- a/elf/dl-close.c +++ b/elf/dl-close.c @@ -1,5 +1,5 @@ /* Close a shared object opened by `_dl_open'. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-conflict.c b/elf/dl-conflict.c index 11e3cd8773..8034077567 100644 --- a/elf/dl-conflict.c +++ b/elf/dl-conflict.c @@ -1,5 +1,5 @@ /* Resolve conflicts against already prelinked libraries. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2001. diff --git a/elf/dl-debug.c b/elf/dl-debug.c index 96e5f4ed02..4e7c5935b4 100644 --- a/elf/dl-debug.c +++ b/elf/dl-debug.c @@ -1,5 +1,5 @@ /* Communicate dynamic linker state to the debugger at runtime. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-deps.c b/elf/dl-deps.c index 6652f6d0cd..20c294e5b8 100644 --- a/elf/dl-deps.c +++ b/elf/dl-deps.c @@ -1,5 +1,5 @@ /* Load the dependencies of a mapped object. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-dst.h b/elf/dl-dst.h index 3ed95d02d5..a00e921583 100644 --- a/elf/dl-dst.h +++ b/elf/dl-dst.h @@ -1,5 +1,5 @@ /* Handling of dynamic sring tokens. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-environ.c b/elf/dl-environ.c index b97156926f..afcd11de90 100644 --- a/elf/dl-environ.c +++ b/elf/dl-environ.c @@ -1,5 +1,5 @@ /* Environment handling for dynamic loader. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-error.c b/elf/dl-error.c index 79e3fa38f2..60c2a7330c 100644 --- a/elf/dl-error.c +++ b/elf/dl-error.c @@ -1,5 +1,5 @@ /* Error handling for runtime dynamic linker. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-execstack.c b/elf/dl-execstack.c index 01cee40122..5dfbb8e366 100644 --- a/elf/dl-execstack.c +++ b/elf/dl-execstack.c @@ -1,5 +1,5 @@ /* Stack executability handling for GNU dynamic linker. Stub version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-fini.c b/elf/dl-fini.c index db5269c82f..05bbd68aee 100644 --- a/elf/dl-fini.c +++ b/elf/dl-fini.c @@ -1,5 +1,5 @@ /* Call the termination functions of loaded shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-fptr.c b/elf/dl-fptr.c index 45e3abc718..8088db3d4f 100644 --- a/elf/dl-fptr.c +++ b/elf/dl-fptr.c @@ -1,5 +1,5 @@ /* Manage function descriptors. Generic version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-hwcaps.c b/elf/dl-hwcaps.c index 94cbf6cc2d..86d9e9cd6d 100644 --- a/elf/dl-hwcaps.c +++ b/elf/dl-hwcaps.c @@ -1,5 +1,5 @@ /* Hardware capability support for run-time dynamic loader. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-init.c b/elf/dl-init.c index 40783684f2..28a6ff6d8a 100644 --- a/elf/dl-init.c +++ b/elf/dl-init.c @@ -1,5 +1,5 @@ /* Run initializers for newly loaded objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-iteratephdr.c b/elf/dl-iteratephdr.c index 609b9000e5..76e98aa2f1 100644 --- a/elf/dl-iteratephdr.c +++ b/elf/dl-iteratephdr.c @@ -1,5 +1,5 @@ /* Get loaded objects program headers. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2001. diff --git a/elf/dl-libc.c b/elf/dl-libc.c index 397d898993..ceac3caeb2 100644 --- a/elf/dl-libc.c +++ b/elf/dl-libc.c @@ -1,5 +1,5 @@ /* Handle loading and unloading shared objects for internal libc purposes. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1999. diff --git a/elf/dl-load.c b/elf/dl-load.c index d3e1cf8f9c..434dcb8863 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -1,5 +1,5 @@ /* Map in a shared object's segments from the file. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-lookup.c b/elf/dl-lookup.c index f869dcfa96..a58e5bc72a 100644 --- a/elf/dl-lookup.c +++ b/elf/dl-lookup.c @@ -1,5 +1,5 @@ /* Look up a symbol in the loaded objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-minimal.c b/elf/dl-minimal.c index 82cc15dfde..22d0b3c8af 100644 --- a/elf/dl-minimal.c +++ b/elf/dl-minimal.c @@ -1,5 +1,5 @@ /* Minimal replacements for basic facilities used in the dynamic linker. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-misc.c b/elf/dl-misc.c index b529af3f4b..043185aa7e 100644 --- a/elf/dl-misc.c +++ b/elf/dl-misc.c @@ -1,5 +1,5 @@ /* Miscellaneous support functions for dynamic linker - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-object.c b/elf/dl-object.c index 26d4f44375..afd80a6bd3 100644 --- a/elf/dl-object.c +++ b/elf/dl-object.c @@ -1,5 +1,5 @@ /* Storage management for the chain of loaded shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-open.c b/elf/dl-open.c index 1403c8c091..a9ca6b3b44 100644 --- a/elf/dl-open.c +++ b/elf/dl-open.c @@ -1,5 +1,5 @@ /* Load a shared object at runtime, relocate it, and run its initializer. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-origin.c b/elf/dl-origin.c index dde575ceb3..e192939345 100644 --- a/elf/dl-origin.c +++ b/elf/dl-origin.c @@ -1,5 +1,5 @@ /* Find path of executable. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/elf/dl-profile.c b/elf/dl-profile.c index 8fa6efca42..2fca7fda19 100644 --- a/elf/dl-profile.c +++ b/elf/dl-profile.c @@ -1,5 +1,5 @@ /* Profiling of shared libraries. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. Based on the BSD mcount implementation. diff --git a/elf/dl-profstub.c b/elf/dl-profstub.c index b4b781fea1..44e1b75283 100644 --- a/elf/dl-profstub.c +++ b/elf/dl-profstub.c @@ -1,5 +1,5 @@ /* Helper definitions for profiling of shared libraries. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c index 5c5431098c..1f66fccee2 100644 --- a/elf/dl-reloc.c +++ b/elf/dl-reloc.c @@ -1,5 +1,5 @@ /* Relocate a shared object and resolve its references to other loaded objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c index 828474838c..655623b425 100644 --- a/elf/dl-runtime.c +++ b/elf/dl-runtime.c @@ -1,5 +1,5 @@ /* On-demand PLT fixup for shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-scope.c b/elf/dl-scope.c index 83560fbd18..e6e06bf9c1 100644 --- a/elf/dl-scope.c +++ b/elf/dl-scope.c @@ -1,5 +1,5 @@ /* Memory handling for the scope data structures. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-support.c b/elf/dl-support.c index 2023bd031c..c0d1e4c009 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -1,5 +1,5 @@ /* Support for dynamic linking code in static libc. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-sym.c b/elf/dl-sym.c index 05de6c1c06..f00975de77 100644 --- a/elf/dl-sym.c +++ b/elf/dl-sym.c @@ -1,5 +1,5 @@ /* Look up a symbol in a shared object loaded by `dlopen'. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-symaddr.c b/elf/dl-symaddr.c index d32bc04c35..b73a5f30b0 100644 --- a/elf/dl-symaddr.c +++ b/elf/dl-symaddr.c @@ -1,5 +1,5 @@ /* Get the symbol address. Generic version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-sysdep.c b/elf/dl-sysdep.c index 08c74ef83b..d8cdb7e24b 100644 --- a/elf/dl-sysdep.c +++ b/elf/dl-sysdep.c @@ -1,5 +1,5 @@ /* Operating system support for run-time dynamic linker. Generic Unix version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-tls.c b/elf/dl-tls.c index 12e6e8f3e0..c1802e7d4e 100644 --- a/elf/dl-tls.c +++ b/elf/dl-tls.c @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. Generic version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-tsd.c b/elf/dl-tsd.c index 765bd2d825..dfa287011f 100644 --- a/elf/dl-tsd.c +++ b/elf/dl-tsd.c @@ -1,5 +1,5 @@ /* Thread-local data used by error handling for runtime dynamic linker. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dl-version.c b/elf/dl-version.c index 62be4aef75..651d4cf4ed 100644 --- a/elf/dl-version.c +++ b/elf/dl-version.c @@ -1,5 +1,5 @@ /* Handle symbol and library versioning. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/elf/dl-writev.h b/elf/dl-writev.h index 0fc0b2b864..ad67c1d82c 100644 --- a/elf/dl-writev.h +++ b/elf/dl-writev.h @@ -1,5 +1,5 @@ /* Message-writing for the dynamic linker. Generic version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/do-rel.h b/elf/do-rel.h index 52cc548395..a1cbab9fd1 100644 --- a/elf/do-rel.h +++ b/elf/do-rel.h @@ -1,5 +1,5 @@ /* Do relocations for ELF dynamic linking. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/dynamic-link.h b/elf/dynamic-link.h index d563cbaa9c..7b3e29581d 100644 --- a/elf/dynamic-link.h +++ b/elf/dynamic-link.h @@ -1,5 +1,5 @@ /* Inline functions for dynamic linking. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/elf.h b/elf/elf.h index 08b4ed8893..40e87b21c3 100644 --- a/elf/elf.h +++ b/elf/elf.h @@ -1,5 +1,5 @@ /* This file defines standard ELF types, structures, and macros. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/enbl-secure.c b/elf/enbl-secure.c index 5756804e83..c09a5f7917 100644 --- a/elf/enbl-secure.c +++ b/elf/enbl-secure.c @@ -1,5 +1,5 @@ /* Define and initialize the `__libc_enable_secure' flag. Generic version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/get-dynamic-info.h b/elf/get-dynamic-info.h index 3cc10733e5..20ccf30b2a 100644 --- a/elf/get-dynamic-info.h +++ b/elf/get-dynamic-info.h @@ -1,5 +1,5 @@ /* Read the dynamic section at DYN and fill in INFO with indices DT_*. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/interp.c b/elf/interp.c index 61ff88260f..49c92f59dc 100644 --- a/elf/interp.c +++ b/elf/interp.c @@ -1,5 +1,5 @@ /* interp - add information about dynamic loader to shared library objects. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/ldconfig.c b/elf/ldconfig.c index c7b9eb92fe..f042d9e060 100644 --- a/elf/ldconfig.c +++ b/elf/ldconfig.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/elf/ldd.bash.in b/elf/ldd.bash.in index c4a1a15139..baf951e623 100644 --- a/elf/ldd.bash.in +++ b/elf/ldd.bash.in @@ -1,5 +1,5 @@ #! @BASH@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/link.h b/elf/link.h index a50ba83662..d5905d1ccb 100644 --- a/elf/link.h +++ b/elf/link.h @@ -1,6 +1,6 @@ /* Data structure for communication from the run-time dynamic linker for loaded ELF shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/pldd-xx.c b/elf/pldd-xx.c index 2815522715..e7d87c88d4 100644 --- a/elf/pldd-xx.c +++ b/elf/pldd-xx.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/elf/pldd.c b/elf/pldd.c index d9388a19c2..f4f24f5857 100644 --- a/elf/pldd.c +++ b/elf/pldd.c @@ -1,5 +1,5 @@ /* List dynamic shared objects linked into given process. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/elf/readelflib.c b/elf/readelflib.c index a7e58e80c7..94fdc684ff 100644 --- a/elf/readelflib.c +++ b/elf/readelflib.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999 and Jakub Jelinek , 1999. diff --git a/elf/readlib.c b/elf/readlib.c index 82c182e488..386ebe3c1e 100644 --- a/elf/readlib.c +++ b/elf/readlib.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999 and Jakub Jelinek , 1999. diff --git a/elf/rtld-Rules b/elf/rtld-Rules index 1aa00060b8..0a5d6afade 100644 --- a/elf/rtld-Rules +++ b/elf/rtld-Rules @@ -1,6 +1,6 @@ # Subroutine makefile for compiling libc modules linked into dynamic linker. -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/rtld.c b/elf/rtld.c index 3d207a3fa0..6dcbabc284 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -1,5 +1,5 @@ /* Run time dynamic linker. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/setup-vdso.h b/elf/setup-vdso.h index 056d885bd6..f3716b693d 100644 --- a/elf/setup-vdso.h +++ b/elf/setup-vdso.h @@ -1,5 +1,5 @@ /* Set up the data structures for the system-supplied DSO. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/sln.c b/elf/sln.c index be39fe41d5..cc75fbebbf 100644 --- a/elf/sln.c +++ b/elf/sln.c @@ -1,5 +1,5 @@ /* `sln' program to create symbolic links between files. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/sotruss-lib.c b/elf/sotruss-lib.c index acf0638be0..5359e4a7b7 100644 --- a/elf/sotruss-lib.c +++ b/elf/sotruss-lib.c @@ -1,5 +1,5 @@ /* Trace calls through PLTs and show caller, callee, and parameters. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/elf/sotruss.ksh b/elf/sotruss.ksh index 22b313d365..cd878d12ad 100755 --- a/elf/sotruss.ksh +++ b/elf/sotruss.ksh @@ -1,5 +1,5 @@ #! @KSH@ -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/sprof.c b/elf/sprof.c index ecb7bdb2dc..5cc6882adc 100644 --- a/elf/sprof.c +++ b/elf/sprof.c @@ -1,5 +1,5 @@ /* Read and display shared object profiling data. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/elf/static-stubs.c b/elf/static-stubs.c index 15d47f43c2..a4edb849eb 100644 --- a/elf/static-stubs.c +++ b/elf/static-stubs.c @@ -1,6 +1,6 @@ /* Stub implementations of functions to link into statically linked programs without needing libgcc_eh. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/tlsdeschtab.h b/elf/tlsdeschtab.h index 8ce8249b92..9a0f965c5f 100644 --- a/elf/tlsdeschtab.h +++ b/elf/tlsdeschtab.h @@ -1,5 +1,5 @@ /* Hash table for TLS descriptors. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva diff --git a/elf/tst-align.c b/elf/tst-align.c index e05e774cbd..859f8e7f07 100644 --- a/elf/tst-align.c +++ b/elf/tst-align.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/elf/tst-align2.c b/elf/tst-align2.c index 9945f32c35..8d37be855f 100644 --- a/elf/tst-align2.c +++ b/elf/tst-align2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2005. diff --git a/elf/tst-alignmod.c b/elf/tst-alignmod.c index 685607886d..c558beec26 100644 --- a/elf/tst-alignmod.c +++ b/elf/tst-alignmod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/elf/tst-alignmod2.c b/elf/tst-alignmod2.c index 23f15cce93..a936da6e8f 100644 --- a/elf/tst-alignmod2.c +++ b/elf/tst-alignmod2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/elf/tst-auxv.c b/elf/tst-auxv.c index 0fb3ad5345..cf17e70247 100644 --- a/elf/tst-auxv.c +++ b/elf/tst-auxv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/tst-dlmodcount.c b/elf/tst-dlmodcount.c index 7cc816ed0f..90883954e2 100644 --- a/elf/tst-dlmodcount.c +++ b/elf/tst-dlmodcount.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger , 2004. diff --git a/elf/tst-dlopenrpath.c b/elf/tst-dlopenrpath.c index 9a0f6e84d5..9363105d39 100644 --- a/elf/tst-dlopenrpath.c +++ b/elf/tst-dlopenrpath.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/elf/tst-dlopenrpathmod.c b/elf/tst-dlopenrpathmod.c index 3522333cb2..c2ff6c1925 100644 --- a/elf/tst-dlopenrpathmod.c +++ b/elf/tst-dlopenrpathmod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/elf/tst-null-argv-lib.c b/elf/tst-null-argv-lib.c index e754299dc0..6de150b965 100644 --- a/elf/tst-null-argv-lib.c +++ b/elf/tst-null-argv-lib.c @@ -1,6 +1,6 @@ /* Verify that program does not crash when LD_DEBUG is set and the program name is not available. This is the library. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/tst-null-argv.c b/elf/tst-null-argv.c index dc242e495d..20df053edc 100644 --- a/elf/tst-null-argv.c +++ b/elf/tst-null-argv.c @@ -1,6 +1,6 @@ /* Verify that program does not crash when LD_DEBUG is set and the program name is not available. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/tst-pathopt.sh b/elf/tst-pathopt.sh index c22946be90..9677cf0ae8 100755 --- a/elf/tst-pathopt.sh +++ b/elf/tst-pathopt.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test lookup path optimization. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/tst-ptrguard1.c b/elf/tst-ptrguard1.c index c344a04db1..c9236b94a7 100644 --- a/elf/tst-ptrguard1.c +++ b/elf/tst-ptrguard1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/tst-rtld-load-self.sh b/elf/tst-rtld-load-self.sh index 3a3bc09313..f6e007c201 100755 --- a/elf/tst-rtld-load-self.sh +++ b/elf/tst-rtld-load-self.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test how rtld loads itself. -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # diff --git a/elf/tst-stackguard1.c b/elf/tst-stackguard1.c index 2caa4a7807..f704260934 100644 --- a/elf/tst-stackguard1.c +++ b/elf/tst-stackguard1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2005. diff --git a/elf/vismain.c b/elf/vismain.c index 7e69030d86..f91428b8a8 100644 --- a/elf/vismain.c +++ b/elf/vismain.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/vismod1.c b/elf/vismod1.c index 023c753d77..06e0ba5a2b 100644 --- a/elf/vismod1.c +++ b/elf/vismod1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/vismod2.c b/elf/vismod2.c index 2b7c104351..8f9adee979 100644 --- a/elf/vismod2.c +++ b/elf/vismod2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/elf/vismod3.c b/elf/vismod3.c index 9c4e1a5911..e312ad5317 100644 --- a/elf/vismod3.c +++ b/elf/vismod3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/gmon/Makefile b/gmon/Makefile index 799af85fdc..b069fbdfde 100644 --- a/gmon/Makefile +++ b/gmon/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/gmon/bb_exit_func.c b/gmon/bb_exit_func.c index 5d42a0da4b..aa28ab8181 100644 --- a/gmon/bb_exit_func.c +++ b/gmon/bb_exit_func.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger (davidm@cs.arizona.edu). diff --git a/gmon/bb_init_func.c b/gmon/bb_init_func.c index c62698d6f0..99d0505c7d 100644 --- a/gmon/bb_init_func.c +++ b/gmon/bb_init_func.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger (davidm@cs.arizona.edu). diff --git a/gmon/profil.c b/gmon/profil.c index c35456a325..9bc4e2e459 100644 --- a/gmon/profil.c +++ b/gmon/profil.c @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Stub version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/gmon/sprofil.c b/gmon/sprofil.c index 2defdc7b1b..a3b3951074 100644 --- a/gmon/sprofil.c +++ b/gmon/sprofil.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by David Mosberger-Tang . This file is part of the GNU C Library. diff --git a/gmon/sys/gmon_out.h b/gmon/sys/gmon_out.h index 02f20d5c7d..bbc913472e 100644 --- a/gmon/sys/gmon_out.h +++ b/gmon/sys/gmon_out.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger . diff --git a/gmon/sys/profil.h b/gmon/sys/profil.h index 28dee16e29..2c9b00dab9 100644 --- a/gmon/sys/profil.h +++ b/gmon/sys/profil.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/gmon/tst-sprofil.c b/gmon/tst-sprofil.c index 7576d4c051..eff15523d9 100644 --- a/gmon/tst-sprofil.c +++ b/gmon/tst-sprofil.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/gnulib/Makefile b/gnulib/Makefile index 49099cc6df..e767570dcd 100644 --- a/gnulib/Makefile +++ b/gnulib/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/gnulib/tst-gcc.c b/gnulib/tst-gcc.c index f81a350769..71fab284a2 100644 --- a/gnulib/tst-gcc.c +++ b/gnulib/tst-gcc.c @@ -1,5 +1,5 @@ /* Test program for the gcc interface. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . diff --git a/grp/Makefile b/grp/Makefile index d3549f0f0f..3aa31760ea 100644 --- a/grp/Makefile +++ b/grp/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/grp/fgetgrent.c b/grp/fgetgrent.c index a5fed92cc2..2ab64d23fd 100644 --- a/grp/fgetgrent.c +++ b/grp/fgetgrent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/grp/fgetgrent_r.c b/grp/fgetgrent_r.c index c5c645e546..6896a49207 100644 --- a/grp/fgetgrent_r.c +++ b/grp/fgetgrent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/grp/getgrent.c b/grp/getgrent.c index d6a9a1b3a9..6cc09d01e2 100644 --- a/grp/getgrent.c +++ b/grp/getgrent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/grp/getgrent_r.c b/grp/getgrent_r.c index 5187bf0698..7cdf08ab17 100644 --- a/grp/getgrent_r.c +++ b/grp/getgrent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/grp/getgrgid.c b/grp/getgrgid.c index 177a0ef8a8..cd9b85013a 100644 --- a/grp/getgrgid.c +++ b/grp/getgrgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/grp/getgrgid_r.c b/grp/getgrgid_r.c index 1460d68618..45902fcc83 100644 --- a/grp/getgrgid_r.c +++ b/grp/getgrgid_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/grp/getgrnam.c b/grp/getgrnam.c index 21db2db254..1900984d70 100644 --- a/grp/getgrnam.c +++ b/grp/getgrnam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/grp/getgrnam_r.c b/grp/getgrnam_r.c index 9424e678ef..e317b101da 100644 --- a/grp/getgrnam_r.c +++ b/grp/getgrnam_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/grp/grp.h b/grp/grp.h index 3cbfc262e6..13b00ecba5 100644 --- a/grp/grp.h +++ b/grp/grp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/grp/initgroups.c b/grp/initgroups.c index 932d8fb5d3..a2b6d31fd9 100644 --- a/grp/initgroups.c +++ b/grp/initgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1989, 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1989, 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/grp/putgrent.c b/grp/putgrent.c index 43261bf8b2..bb429277e5 100644 --- a/grp/putgrent.c +++ b/grp/putgrent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/grp/setgroups.c b/grp/setgroups.c index 4a4f3c1c88..cc90637648 100644 --- a/grp/setgroups.c +++ b/grp/setgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/grp/tst_fgetgrent.c b/grp/tst_fgetgrent.c index f70920669e..6b5b2e8b32 100644 --- a/grp/tst_fgetgrent.c +++ b/grp/tst_fgetgrent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/grp/tst_fgetgrent.sh b/grp/tst_fgetgrent.sh index d4943db975..0d7443b60b 100644 --- a/grp/tst_fgetgrent.sh +++ b/grp/tst_fgetgrent.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Andreas Jaeger , 1999. diff --git a/gshadow/Makefile b/gshadow/Makefile index 613c10e191..213da06e99 100644 --- a/gshadow/Makefile +++ b/gshadow/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/gshadow/fgetsgent.c b/gshadow/fgetsgent.c index 46c4b6d7cc..96aea5c1d2 100644 --- a/gshadow/fgetsgent.c +++ b/gshadow/fgetsgent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/gshadow/fgetsgent_r.c b/gshadow/fgetsgent_r.c index 897f7e5850..0fc3bae258 100644 --- a/gshadow/fgetsgent_r.c +++ b/gshadow/fgetsgent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/gshadow/getsgent.c b/gshadow/getsgent.c index 0984add17b..b4b986fea5 100644 --- a/gshadow/getsgent.c +++ b/gshadow/getsgent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2009. diff --git a/gshadow/getsgent_r.c b/gshadow/getsgent_r.c index 8fdc4143a3..e2e0ccbb58 100644 --- a/gshadow/getsgent_r.c +++ b/gshadow/getsgent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2009. diff --git a/gshadow/getsgnam.c b/gshadow/getsgnam.c index 7503897883..a898aebabb 100644 --- a/gshadow/getsgnam.c +++ b/gshadow/getsgnam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2009. diff --git a/gshadow/getsgnam_r.c b/gshadow/getsgnam_r.c index c3ab204843..14ba0982b1 100644 --- a/gshadow/getsgnam_r.c +++ b/gshadow/getsgnam_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2009. diff --git a/gshadow/gshadow.h b/gshadow/gshadow.h index 6785ae1776..fc21c42f7e 100644 --- a/gshadow/gshadow.h +++ b/gshadow/gshadow.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/gshadow/putsgent.c b/gshadow/putsgent.c index 401aab63c5..18a34b3093 100644 --- a/gshadow/putsgent.c +++ b/gshadow/putsgent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/gshadow/sgetsgent.c b/gshadow/sgetsgent.c index 70d5cb7625..5f17488b01 100644 --- a/gshadow/sgetsgent.c +++ b/gshadow/sgetsgent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/gshadow/sgetsgent_r.c b/gshadow/sgetsgent_r.c index ff0ee1a748..62698961df 100644 --- a/gshadow/sgetsgent_r.c +++ b/gshadow/sgetsgent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hesiod/Makefile b/hesiod/Makefile index b7a13c2504..b640cec8f2 100644 --- a/hesiod/Makefile +++ b/hesiod/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/hesiod/nss_hesiod/hesiod-grp.c b/hesiod/nss_hesiod/hesiod-grp.c index b11952fadf..9f66a3b857 100644 --- a/hesiod/nss_hesiod/hesiod-grp.c +++ b/hesiod/nss_hesiod/hesiod-grp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1997. diff --git a/hesiod/nss_hesiod/hesiod-init.c b/hesiod/nss_hesiod/hesiod-init.c index e4f82b53b8..8947e19103 100644 --- a/hesiod/nss_hesiod/hesiod-init.c +++ b/hesiod/nss_hesiod/hesiod-init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 2000. diff --git a/hesiod/nss_hesiod/hesiod-proto.c b/hesiod/nss_hesiod/hesiod-proto.c index 380bcc3053..2f14c92696 100644 --- a/hesiod/nss_hesiod/hesiod-proto.c +++ b/hesiod/nss_hesiod/hesiod-proto.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1997. diff --git a/hesiod/nss_hesiod/hesiod-pwd.c b/hesiod/nss_hesiod/hesiod-pwd.c index 05870ba737..7b0610e162 100644 --- a/hesiod/nss_hesiod/hesiod-pwd.c +++ b/hesiod/nss_hesiod/hesiod-pwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1997. diff --git a/hesiod/nss_hesiod/hesiod-service.c b/hesiod/nss_hesiod/hesiod-service.c index 98a9c3902c..45bd14c9f5 100644 --- a/hesiod/nss_hesiod/hesiod-service.c +++ b/hesiod/nss_hesiod/hesiod-service.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1997. diff --git a/hesiod/nss_hesiod/nss_hesiod.h b/hesiod/nss_hesiod/nss_hesiod.h index b3cee731a0..b86cca60fb 100644 --- a/hesiod/nss_hesiod/nss_hesiod.h +++ b/hesiod/nss_hesiod/nss_hesiod.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 2000. diff --git a/hurd/Makefile b/hurd/Makefile index 4387253611..fb334d8ab5 100644 --- a/hurd/Makefile +++ b/hurd/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/alloc-fd.c b/hurd/alloc-fd.c index ec7b50a3eb..6254df6d04 100644 --- a/hurd/alloc-fd.c +++ b/hurd/alloc-fd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/catch-exc.c b/hurd/catch-exc.c index 259adbf801..536b711fab 100644 --- a/hurd/catch-exc.c +++ b/hurd/catch-exc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/catch-signal.c b/hurd/catch-signal.c index 511eebd339..aa4db02d9f 100644 --- a/hurd/catch-signal.c +++ b/hurd/catch-signal.c @@ -1,5 +1,5 @@ /* Convenience function to catch expected signals during an operation. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/compat-20.c b/hurd/compat-20.c index f514c21ca7..29e15f8350 100644 --- a/hurd/compat-20.c +++ b/hurd/compat-20.c @@ -1,5 +1,5 @@ /* Old-versioned functions for binary compatibility with glibc-2.0. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/ctty-input.c b/hurd/ctty-input.c index 4c22987455..4cc0b85a97 100644 --- a/hurd/ctty-input.c +++ b/hurd/ctty-input.c @@ -1,5 +1,5 @@ /* _hurd_ctty_input -- Do an input RPC and generate SIGTTIN if necessary. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/ctty-output.c b/hurd/ctty-output.c index 387befba6f..eb56e34584 100644 --- a/hurd/ctty-output.c +++ b/hurd/ctty-output.c @@ -1,5 +1,5 @@ /* _hurd_ctty_output -- Do an output RPC and generate SIGTTOU if necessary. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/dtable.c b/hurd/dtable.c index 592dc2c60c..de5d33afd3 100644 --- a/hurd/dtable.c +++ b/hurd/dtable.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/exc2signal.c b/hurd/exc2signal.c index c9b0aaa2e3..e52deb9bf6 100644 --- a/hurd/exc2signal.c +++ b/hurd/exc2signal.c @@ -1,5 +1,5 @@ /* Translate Mach exception codes into signal numbers. Stub version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/fchroot.c b/hurd/fchroot.c index 7f476e284e..5ae91fbff3 100644 --- a/hurd/fchroot.c +++ b/hurd/fchroot.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/fd-close.c b/hurd/fd-close.c index 40dbd9a510..affd8eb6d6 100644 --- a/hurd/fd-close.c +++ b/hurd/fd-close.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/fd-read.c b/hurd/fd-read.c index d788029264..31140aeed6 100644 --- a/hurd/fd-read.c +++ b/hurd/fd-read.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/fd-write.c b/hurd/fd-write.c index 316f9cc0bd..dca7fde92f 100644 --- a/hurd/fd-write.c +++ b/hurd/fd-write.c @@ -1,5 +1,5 @@ /* _hurd_fd_write -- write to a file descriptor; handles job control et al. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/fopenport.c b/hurd/fopenport.c index 3ea47c0e9c..d4d55161c9 100644 --- a/hurd/fopenport.c +++ b/hurd/fopenport.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/get-host.c b/hurd/get-host.c index 02e7587b13..508b5480de 100644 --- a/hurd/get-host.c +++ b/hurd/get-host.c @@ -1,5 +1,5 @@ /* Get a host configuration item kept as the whole contents of a file. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/getdport.c b/hurd/getdport.c index ab6e3846eb..5e0318fb31 100644 --- a/hurd/getdport.c +++ b/hurd/getdport.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/hurd/geteuids.c b/hurd/geteuids.c index 92ddfae986..9eb826ac6c 100644 --- a/hurd/geteuids.c +++ b/hurd/geteuids.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/getumask.c b/hurd/getumask.c index 843f173df0..11a032eb2e 100644 --- a/hurd/getumask.c +++ b/hurd/getumask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd-raise.c b/hurd/hurd-raise.c index 173a76f2db..23e5dd6974 100644 --- a/hurd/hurd-raise.c +++ b/hurd/hurd-raise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd.h b/hurd/hurd.h index f302e045af..38bb2caa52 100644 --- a/hurd/hurd.h +++ b/hurd/hurd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd/fd.h b/hurd/hurd/fd.h index 7b13719d9d..adb865a3b6 100644 --- a/hurd/hurd/fd.h +++ b/hurd/hurd/fd.h @@ -1,5 +1,5 @@ /* File descriptors. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd/id.h b/hurd/hurd/id.h index 2e0a3b7c6f..37431e3087 100644 --- a/hurd/hurd/id.h +++ b/hurd/hurd/id.h @@ -1,5 +1,5 @@ /* User and group IDs. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd/ioctl.h b/hurd/hurd/ioctl.h index 6c6b6979d8..3af3f9f52f 100644 --- a/hurd/hurd/ioctl.h +++ b/hurd/hurd/ioctl.h @@ -1,5 +1,5 @@ /* User-registered handlers for specific `ioctl' requests. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd/lookup.h b/hurd/hurd/lookup.h index a4986ad96e..0abe5811d2 100644 --- a/hurd/hurd/lookup.h +++ b/hurd/hurd/lookup.h @@ -1,5 +1,5 @@ /* Declarations of file name translation functions for the GNU Hurd. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd/port.h b/hurd/hurd/port.h index 3935752f80..a44369817b 100644 --- a/hurd/hurd/port.h +++ b/hurd/hurd/port.h @@ -1,5 +1,5 @@ /* Lightweight user references for ports. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd/resource.h b/hurd/hurd/resource.h index af38ed3979..bd5bd4bba1 100644 --- a/hurd/hurd/resource.h +++ b/hurd/hurd/resource.h @@ -1,5 +1,5 @@ /* Resource limits for the Hurd. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd/signal.h b/hurd/hurd/signal.h index d4079efe00..8355d67ff3 100644 --- a/hurd/hurd/signal.h +++ b/hurd/hurd/signal.h @@ -1,5 +1,5 @@ /* Implementing POSIX.1 signals under the Hurd. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd/sigpreempt.h b/hurd/hurd/sigpreempt.h index 5df49ce4e1..3b2e99a307 100644 --- a/hurd/hurd/sigpreempt.h +++ b/hurd/hurd/sigpreempt.h @@ -1,5 +1,5 @@ /* Preemption of Hurd signals before POSIX.1 semantics take over. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd/threadvar.h b/hurd/hurd/threadvar.h index 786db14a01..b62f5a6d86 100644 --- a/hurd/hurd/threadvar.h +++ b/hurd/hurd/threadvar.h @@ -1,5 +1,5 @@ /* Internal per-thread variables for the Hurd. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd/userlink.h b/hurd/hurd/userlink.h index 391898a5a8..39737c6895 100644 --- a/hurd/hurd/userlink.h +++ b/hurd/hurd/userlink.h @@ -1,5 +1,5 @@ /* Support for chains recording users of a resource; `struct hurd_userlink'. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurd/xattr.h b/hurd/hurd/xattr.h index 97e2f93aaf..259360fd45 100644 --- a/hurd/hurd/xattr.h +++ b/hurd/hurd/xattr.h @@ -1,5 +1,5 @@ /* Access to extended attributes on files for GNU/Hurd. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdauth.c b/hurd/hurdauth.c index 3904869007..5fb5e7c1db 100644 --- a/hurd/hurdauth.c +++ b/hurd/hurdauth.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdchdir.c b/hurd/hurdchdir.c index 58193970cd..6399df0f57 100644 --- a/hurd/hurdchdir.c +++ b/hurd/hurdchdir.c @@ -1,5 +1,5 @@ /* Change a port cell to a directory by looking up a name. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdexec.c b/hurd/hurdexec.c index 0ced7f32b4..9d26a61abf 100644 --- a/hurd/hurdexec.c +++ b/hurd/hurdexec.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdfault.c b/hurd/hurdfault.c index 1adaeb1d63..02a5021a25 100644 --- a/hurd/hurdfault.c +++ b/hurd/hurdfault.c @@ -1,5 +1,5 @@ /* Handle faults in the signal thread. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdfault.h b/hurd/hurdfault.h index b0e171fc14..a26fcf8e44 100644 --- a/hurd/hurdfault.h +++ b/hurd/hurdfault.h @@ -1,5 +1,5 @@ /* Declarations for handling faults in the signal thread. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdfchdir.c b/hurd/hurdfchdir.c index 66ed23ece1..67d34aa0a6 100644 --- a/hurd/hurdfchdir.c +++ b/hurd/hurdfchdir.c @@ -1,5 +1,5 @@ /* Change a port cell to a directory in an open file descriptor. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdhost.h b/hurd/hurdhost.h index ece9e2cf27..627d835539 100644 --- a/hurd/hurdhost.h +++ b/hurd/hurdhost.h @@ -1,5 +1,5 @@ /* Host configuration items kept as the whole contents of a file. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdid.c b/hurd/hurdid.c index f20edc1b45..c4086aa078 100644 --- a/hurd/hurdid.c +++ b/hurd/hurdid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdinit.c b/hurd/hurdinit.c index 3b3619e68c..81d94eab0e 100644 --- a/hurd/hurdinit.c +++ b/hurd/hurdinit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdioctl.c b/hurd/hurdioctl.c index 9a8f1e9333..75307fe049 100644 --- a/hurd/hurdioctl.c +++ b/hurd/hurdioctl.c @@ -1,5 +1,5 @@ /* ioctl commands which must be done in the C library. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdkill.c b/hurd/hurdkill.c index 31ee7a21ca..ca25588f39 100644 --- a/hurd/hurdkill.c +++ b/hurd/hurdkill.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdlookup.c b/hurd/hurdlookup.c index 804d929fd6..2ac7d5edf3 100644 --- a/hurd/hurdlookup.c +++ b/hurd/hurdlookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdmsg.c b/hurd/hurdmsg.c index 6e350eeabe..a01278da66 100644 --- a/hurd/hurdmsg.c +++ b/hurd/hurdmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdpid.c b/hurd/hurdpid.c index e470d1903b..3fac89762b 100644 --- a/hurd/hurdpid.c +++ b/hurd/hurdpid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdports.c b/hurd/hurdports.c index b43e7044dc..4ba5d27af0 100644 --- a/hurd/hurdports.c +++ b/hurd/hurdports.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdprio.c b/hurd/hurdprio.c index 2f6af72c1c..c8c62cd02a 100644 --- a/hurd/hurdprio.c +++ b/hurd/hurdprio.c @@ -1,5 +1,5 @@ /* Support code for dealing with priorities in the Hurd. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdrlimit.c b/hurd/hurdrlimit.c index e2775533c4..20202bea3c 100644 --- a/hurd/hurdrlimit.c +++ b/hurd/hurdrlimit.c @@ -1,5 +1,5 @@ /* Resource limits. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdselect.c b/hurd/hurdselect.c index 4544cb753b..c2225d2729 100644 --- a/hurd/hurdselect.c +++ b/hurd/hurdselect.c @@ -1,5 +1,5 @@ /* Guts of both `select' and `poll' for Hurd. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index 558aa074b3..bb37286c9b 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdsock.c b/hurd/hurdsock.c index 7464f99ad0..0f52f37636 100644 --- a/hurd/hurdsock.c +++ b/hurd/hurdsock.c @@ -1,5 +1,5 @@ /* _hurd_socket_server - Find the server for a socket domain. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdstartup.c b/hurd/hurdstartup.c index 38147c94ea..01c9e14566 100644 --- a/hurd/hurdstartup.c +++ b/hurd/hurdstartup.c @@ -1,5 +1,5 @@ /* Initial program startup for running under the GNU Hurd. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/hurdstartup.h b/hurd/hurdstartup.h index cab8afcf16..51b3b5c201 100644 --- a/hurd/hurdstartup.h +++ b/hurd/hurdstartup.h @@ -1,5 +1,5 @@ /* Data from initial program startup for running under the GNU Hurd. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/intern-fd.c b/hurd/intern-fd.c index 97f5d34ae1..a70943104b 100644 --- a/hurd/intern-fd.c +++ b/hurd/intern-fd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/intr-msg.c b/hurd/intr-msg.c index e6d08628fc..a9b47551be 100644 --- a/hurd/intr-msg.c +++ b/hurd/intr-msg.c @@ -1,5 +1,5 @@ /* Replacement for mach_msg used in interruptible Hurd RPCs. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/intr-rpc.defs b/hurd/intr-rpc.defs index 67600d5e5f..1cb16d73e5 100644 --- a/hurd/intr-rpc.defs +++ b/hurd/intr-rpc.defs @@ -1,5 +1,5 @@ /* Special MiG definitions for interruptible RPC stubs. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/intr-rpc.h b/hurd/intr-rpc.h index 7087375a2a..98a53905eb 100644 --- a/hurd/intr-rpc.h +++ b/hurd/intr-rpc.h @@ -1,5 +1,5 @@ /* Special MiG definitions for interruptible RPC stubs. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/longjmp-ts.c b/hurd/longjmp-ts.c index a62cb54a81..107e27107b 100644 --- a/hurd/longjmp-ts.c +++ b/hurd/longjmp-ts.c @@ -1,5 +1,5 @@ /* Perform a `longjmp' on a Mach thread_state. Stub version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/lookup-at.c b/hurd/lookup-at.c index 33a39d9949..0288bcf404 100644 --- a/hurd/lookup-at.c +++ b/hurd/lookup-at.c @@ -1,5 +1,5 @@ /* Lookup helper function for Hurd implementation of *at functions. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/lookup-retry.c b/hurd/lookup-retry.c index 7c0442361b..f633e57f7f 100644 --- a/hurd/lookup-retry.c +++ b/hurd/lookup-retry.c @@ -1,5 +1,5 @@ /* hairy bits of Hurd file name lookup - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/msgportdemux.c b/hurd/msgportdemux.c index dde16b2018..26463054a1 100644 --- a/hurd/msgportdemux.c +++ b/hurd/msgportdemux.c @@ -1,5 +1,5 @@ /* Demux messages sent on the signal port. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/new-fd.c b/hurd/new-fd.c index 32c72522dd..3d59dcfb50 100644 --- a/hurd/new-fd.c +++ b/hurd/new-fd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/openport.c b/hurd/openport.c index 5fbd0a2baa..1394d48591 100644 --- a/hurd/openport.c +++ b/hurd/openport.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/path-lookup.c b/hurd/path-lookup.c index 8528bfd44d..3c8f093abb 100644 --- a/hurd/path-lookup.c +++ b/hurd/path-lookup.c @@ -1,5 +1,5 @@ /* Filename lookup using a search path - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader diff --git a/hurd/pid2task.c b/hurd/pid2task.c index 9cd7a8074f..42424d01cb 100644 --- a/hurd/pid2task.c +++ b/hurd/pid2task.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/port-cleanup.c b/hurd/port-cleanup.c index 3b8dfa267d..35550bcd4a 100644 --- a/hurd/port-cleanup.c +++ b/hurd/port-cleanup.c @@ -1,5 +1,5 @@ /* Cleanup function for `struct hurd_port' users who longjmp. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/port2fd.c b/hurd/port2fd.c index e966e54e01..e74b18595b 100644 --- a/hurd/port2fd.c +++ b/hurd/port2fd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/ports-get.c b/hurd/ports-get.c index a4495a605e..ebf97f4fbe 100644 --- a/hurd/ports-get.c +++ b/hurd/ports-get.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/ports-set.c b/hurd/ports-set.c index 7f358f7b74..d6e4f345ca 100644 --- a/hurd/ports-set.c +++ b/hurd/ports-set.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/preempt-sig.c b/hurd/preempt-sig.c index 0f38395eb5..881f64879e 100644 --- a/hurd/preempt-sig.c +++ b/hurd/preempt-sig.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/privports.c b/hurd/privports.c index 6d3776d495..e48f4f0b73 100644 --- a/hurd/privports.c +++ b/hurd/privports.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/report-wait.c b/hurd/report-wait.c index a0b33bd0e4..6a3b788d54 100644 --- a/hurd/report-wait.c +++ b/hurd/report-wait.c @@ -1,5 +1,5 @@ /* Report on what a thread in our task is waiting for. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/set-host.c b/hurd/set-host.c index b70ce49d25..851a34447c 100644 --- a/hurd/set-host.c +++ b/hurd/set-host.c @@ -1,5 +1,5 @@ /* Set a host configuration item kept as the whole contents of a file. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/setauth.c b/hurd/setauth.c index 5c567a7e0d..5af7ff1dd6 100644 --- a/hurd/setauth.c +++ b/hurd/setauth.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/seteuids.c b/hurd/seteuids.c index f0adf0761c..4db2b789a0 100644 --- a/hurd/seteuids.c +++ b/hurd/seteuids.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/siginfo.c b/hurd/siginfo.c index fede65418c..da76d03222 100644 --- a/hurd/siginfo.c +++ b/hurd/siginfo.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/sigunwind.c b/hurd/sigunwind.c index de966aa09b..6121e928c8 100644 --- a/hurd/sigunwind.c +++ b/hurd/sigunwind.c @@ -1,5 +1,5 @@ /* longjmp cleanup function for unwinding past signal handlers. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/task2pid.c b/hurd/task2pid.c index 6e278c1904..400f6e9b13 100644 --- a/hurd/task2pid.c +++ b/hurd/task2pid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/thread-cancel.c b/hurd/thread-cancel.c index c7f88eec9b..bb940c54b0 100644 --- a/hurd/thread-cancel.c +++ b/hurd/thread-cancel.c @@ -1,5 +1,5 @@ /* Thread cancellation support. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/thread-self.c b/hurd/thread-self.c index f460e22bf6..24782bb7ac 100644 --- a/hurd/thread-self.c +++ b/hurd/thread-self.c @@ -1,5 +1,5 @@ /* Cheap function to get current thread from sigstate without a syscall. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/trampoline.c b/hurd/trampoline.c index 601633a3ff..e73a7e8484 100644 --- a/hurd/trampoline.c +++ b/hurd/trampoline.c @@ -1,5 +1,5 @@ /* Set thread_state for sighandler, and sigcontext to recover. Stub version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/vpprintf.c b/hurd/vpprintf.c index 2459d53b7a..8040668845 100644 --- a/hurd/vpprintf.c +++ b/hurd/vpprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/hurd/xattr.c b/hurd/xattr.c index f22cd59214..7f754004fc 100644 --- a/hurd/xattr.c +++ b/hurd/xattr.c @@ -1,5 +1,5 @@ /* Support for *xattr interfaces on GNU/Hurd. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/iconv/Makefile b/iconv/Makefile index 1f342db1d1..e0d8ef18d6 100644 --- a/iconv/Makefile +++ b/iconv/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/iconv/dummy-repertoire.c b/iconv/dummy-repertoire.c index a7ca1f017b..6cd43d9662 100644 --- a/iconv/dummy-repertoire.c +++ b/iconv/dummy-repertoire.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconv/gconv.c b/iconv/gconv.c index 384e03610d..2f5d92b888 100644 --- a/iconv/gconv.c +++ b/iconv/gconv.c @@ -1,6 +1,6 @@ /* Convert characters in input buffer using conversion descriptor to output buffer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/gconv.h b/iconv/gconv.h index 006b74daf3..108dccbb46 100644 --- a/iconv/gconv.h +++ b/iconv/gconv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/iconv/gconv_builtin.c b/iconv/gconv_builtin.c index 4719d91dfb..821b9e5918 100644 --- a/iconv/gconv_builtin.c +++ b/iconv/gconv_builtin.c @@ -1,5 +1,5 @@ /* Table for builtin transformation mapping. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/gconv_builtin.h b/iconv/gconv_builtin.h index a3112611b8..f15812219a 100644 --- a/iconv/gconv_builtin.h +++ b/iconv/gconv_builtin.h @@ -1,5 +1,5 @@ /* Builtin transformations. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/gconv_cache.c b/iconv/gconv_cache.c index ccd2d6ede6..41a4688f2a 100644 --- a/iconv/gconv_cache.c +++ b/iconv/gconv_cache.c @@ -1,5 +1,5 @@ /* Cache handling for iconv modules. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconv/gconv_charset.h b/iconv/gconv_charset.h index 62db060bad..745c88bb79 100644 --- a/iconv/gconv_charset.h +++ b/iconv/gconv_charset.h @@ -1,5 +1,5 @@ /* Charset name normalization. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconv/gconv_close.c b/iconv/gconv_close.c index 89b8d7f19c..9d01f146cc 100644 --- a/iconv/gconv_close.c +++ b/iconv/gconv_close.c @@ -1,5 +1,5 @@ /* Release any resource associated with given conversion descriptor. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/gconv_conf.c b/iconv/gconv_conf.c index 20a8f33b37..fe144b2735 100644 --- a/iconv/gconv_conf.c +++ b/iconv/gconv_conf.c @@ -1,5 +1,5 @@ /* Handle configuration data. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/gconv_db.c b/iconv/gconv_db.c index b533dc016b..7d752bcebf 100644 --- a/iconv/gconv_db.c +++ b/iconv/gconv_db.c @@ -1,5 +1,5 @@ /* Provide access to the collection of available transformation modules. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/gconv_dl.c b/iconv/gconv_dl.c index 7c18848830..9aeaf0e0a4 100644 --- a/iconv/gconv_dl.c +++ b/iconv/gconv_dl.c @@ -1,5 +1,5 @@ /* Handle loading/unloading of shared object for transformation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/gconv_int.h b/iconv/gconv_int.h index 06faeaafc9..ace076b88f 100644 --- a/iconv/gconv_int.h +++ b/iconv/gconv_int.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/gconv_open.c b/iconv/gconv_open.c index 99c33770b6..69a1f65eb2 100644 --- a/iconv/gconv_open.c +++ b/iconv/gconv_open.c @@ -1,5 +1,5 @@ /* Find matching transformation algorithms and initialize steps. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/gconv_simple.c b/iconv/gconv_simple.c index 9c5ff80267..27acb5e892 100644 --- a/iconv/gconv_simple.c +++ b/iconv/gconv_simple.c @@ -1,5 +1,5 @@ /* Simple transformations functions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/gconv_trans.c b/iconv/gconv_trans.c index 41b021af98..1e25854ccf 100644 --- a/iconv/gconv_trans.c +++ b/iconv/gconv_trans.c @@ -1,5 +1,5 @@ /* Transliteration using the locale's data. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/iconv/iconv.c b/iconv/iconv.c index 93ca171434..30b3564df5 100644 --- a/iconv/iconv.c +++ b/iconv/iconv.c @@ -1,6 +1,6 @@ /* Convert characters in input buffer using conversion descriptor to output buffer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/iconv.h b/iconv/iconv.h index 268b1b61fd..a2be49d623 100644 --- a/iconv/iconv.h +++ b/iconv/iconv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/iconv/iconv_charmap.c b/iconv/iconv_charmap.c index 09024a97cc..7bbd8e9fef 100644 --- a/iconv/iconv_charmap.c +++ b/iconv/iconv_charmap.c @@ -1,5 +1,5 @@ /* Convert using charmaps and possibly iconv(). - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconv/iconv_close.c b/iconv/iconv_close.c index 05ecf4ae1e..1bf17939bf 100644 --- a/iconv/iconv_close.c +++ b/iconv/iconv_close.c @@ -1,5 +1,5 @@ /* Release any resource associated with given conversion descriptor. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/iconv_open.c b/iconv/iconv_open.c index 75d3a71556..7bf19f528e 100644 --- a/iconv/iconv_open.c +++ b/iconv/iconv_open.c @@ -1,5 +1,5 @@ /* Get descriptor for character set conversion. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconv/iconv_prog.c b/iconv/iconv_prog.c index 11c7f087d4..4a9d1c7e4c 100644 --- a/iconv/iconv_prog.c +++ b/iconv/iconv_prog.c @@ -1,5 +1,5 @@ /* Convert text in given files from the specified from-set to the to-set. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconv/iconv_prog.h b/iconv/iconv_prog.h index 77c275ddcc..818b3c1f6f 100644 --- a/iconv/iconv_prog.h +++ b/iconv/iconv_prog.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconv/iconvconfig.c b/iconv/iconvconfig.c index 9e871d279c..b9b0d9fc62 100644 --- a/iconv/iconvconfig.c +++ b/iconv/iconvconfig.c @@ -1,5 +1,5 @@ /* Generate fastloading iconv module configuration files. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/iconv/iconvconfig.h b/iconv/iconvconfig.h index 054a512789..89068f6955 100644 --- a/iconv/iconvconfig.h +++ b/iconv/iconvconfig.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/iconv/loop.c b/iconv/loop.c index ad0181f744..b4af6d418b 100644 --- a/iconv/loop.c +++ b/iconv/loop.c @@ -1,5 +1,5 @@ /* Conversion loop frame work. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconv/skeleton.c b/iconv/skeleton.c index 6997e05682..7743216835 100644 --- a/iconv/skeleton.c +++ b/iconv/skeleton.c @@ -1,5 +1,5 @@ /* Skeleton for a conversion module. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconv/strtab.c b/iconv/strtab.c index 17286401a0..9504c14748 100644 --- a/iconv/strtab.c +++ b/iconv/strtab.c @@ -1,5 +1,5 @@ /* C string table handling. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify diff --git a/iconv/tst-iconv2.c b/iconv/tst-iconv2.c index 2707ba468c..5036ad1058 100644 --- a/iconv/tst-iconv2.c +++ b/iconv/tst-iconv2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconv/tst-iconv5.c b/iconv/tst-iconv5.c index 3da054648c..e07eaa0870 100644 --- a/iconv/tst-iconv5.c +++ b/iconv/tst-iconv5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by GOTO Masanori , 2004 diff --git a/iconvdata/8bit-gap.c b/iconvdata/8bit-gap.c index 1f0e49d14d..bc210260ec 100644 --- a/iconvdata/8bit-gap.c +++ b/iconvdata/8bit-gap.c @@ -1,6 +1,6 @@ /* Generic conversion to and from 8bit charsets, converting from UCS using gaps. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/8bit-generic.c b/iconvdata/8bit-generic.c index c789dc6b2f..20066aa500 100644 --- a/iconvdata/8bit-generic.c +++ b/iconvdata/8bit-generic.c @@ -1,5 +1,5 @@ /* Generic conversion to and from 8bit charsets. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/Makefile b/iconvdata/Makefile index 7752013f5b..5c2154e7bf 100644 --- a/iconvdata/Makefile +++ b/iconvdata/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/iconvdata/TESTS b/iconvdata/TESTS index 350a2a818a..3e273ec1b7 100644 --- a/iconvdata/TESTS +++ b/iconvdata/TESTS @@ -1,5 +1,5 @@ # Available tests for iconv(1) (and therefore iconv(3)) in GNU libc. -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 1998. # diff --git a/iconvdata/TESTS2 b/iconvdata/TESTS2 index 50bc4f4bf8..05654af634 100644 --- a/iconvdata/TESTS2 +++ b/iconvdata/TESTS2 @@ -1,5 +1,5 @@ # Tests for endianness dependent iconv(1) (and therefore iconv(3)) in GNU libc. -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Bruno Haible , 2001. # diff --git a/iconvdata/ansi_x3.110.c b/iconvdata/ansi_x3.110.c index d3acc00d10..8b490d182a 100644 --- a/iconvdata/ansi_x3.110.c +++ b/iconvdata/ansi_x3.110.c @@ -1,5 +1,5 @@ /* Generic conversion to and from ANSI_X3.110-1983. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/armscii-8.c b/iconvdata/armscii-8.c index e2e0734e01..8ad4dc4a7c 100644 --- a/iconvdata/armscii-8.c +++ b/iconvdata/armscii-8.c @@ -1,5 +1,5 @@ /* Conversion to and from ARMSCII-8 - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/asmo_449.c b/iconvdata/asmo_449.c index 48b394450a..6af044eb24 100644 --- a/iconvdata/asmo_449.c +++ b/iconvdata/asmo_449.c @@ -1,5 +1,5 @@ /* Conversion from and to ASMO_449. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/big5.c b/iconvdata/big5.c index 8894d9767d..2a5887b1f0 100644 --- a/iconvdata/big5.c +++ b/iconvdata/big5.c @@ -1,5 +1,5 @@ /* Mapping tables for Big5 handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/big5hkscs.c b/iconvdata/big5hkscs.c index 5487323106..90a9bfcf89 100644 --- a/iconvdata/big5hkscs.c +++ b/iconvdata/big5hkscs.c @@ -1,5 +1,5 @@ /* Mapping tables for Big5-HKSCS handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. Modified for Big5-HKSCS by Roger So , 2000. diff --git a/iconvdata/brf.c b/iconvdata/brf.c index 752c4e1bf6..d5763c39b6 100644 --- a/iconvdata/brf.c +++ b/iconvdata/brf.c @@ -1,5 +1,5 @@ /* Conversion from and to BRF. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Samuel Thibault , 2006. diff --git a/iconvdata/bug-iconv3.c b/iconvdata/bug-iconv3.c index 0545e47221..04b70c615e 100644 --- a/iconvdata/bug-iconv3.c +++ b/iconvdata/bug-iconv3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/iconvdata/cns11643.c b/iconvdata/cns11643.c index 51ab50ee28..f36a53556b 100644 --- a/iconvdata/cns11643.c +++ b/iconvdata/cns11643.c @@ -1,5 +1,5 @@ /* Mapping tables for CNS 11643, planes 2 to 7 handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cns11643.h b/iconvdata/cns11643.h index 454c9faac4..ec88e64695 100644 --- a/iconvdata/cns11643.h +++ b/iconvdata/cns11643.h @@ -1,5 +1,5 @@ /* Access functions for CNS 11643 handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cns11643l1.c b/iconvdata/cns11643l1.c index 460ed0f59b..70dc3e0df6 100644 --- a/iconvdata/cns11643l1.c +++ b/iconvdata/cns11643l1.c @@ -1,5 +1,5 @@ /* Mapping tables for CNS 11643, plane 1 handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cns11643l1.h b/iconvdata/cns11643l1.h index a0d9a93dbe..ef9f547e71 100644 --- a/iconvdata/cns11643l1.h +++ b/iconvdata/cns11643l1.h @@ -1,5 +1,5 @@ /* Access functions for CNS 11643, plane 1 handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cns11643l2.h b/iconvdata/cns11643l2.h index 5dc8763df1..1779c791d3 100644 --- a/iconvdata/cns11643l2.h +++ b/iconvdata/cns11643l2.h @@ -1,5 +1,5 @@ /* Access functions for CNS 11643, plane 2 handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp10007.c b/iconvdata/cp10007.c index 9bd3b136cc..8103abf852 100644 --- a/iconvdata/cp10007.c +++ b/iconvdata/cp10007.c @@ -1,5 +1,5 @@ /* Conversion from and to CP10007 (MS MacCyrillic). - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconvdata/cp1125.c b/iconvdata/cp1125.c index 07838a37ae..8c183e77d7 100644 --- a/iconvdata/cp1125.c +++ b/iconvdata/cp1125.c @@ -1,5 +1,5 @@ /* Conversion from and to CP1125. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/iconvdata/cp1250.c b/iconvdata/cp1250.c index e657b12126..6e040214de 100644 --- a/iconvdata/cp1250.c +++ b/iconvdata/cp1250.c @@ -1,5 +1,5 @@ /* Conversion from and to CP1250. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp1251.c b/iconvdata/cp1251.c index fa4602c4cf..7824cf6b55 100644 --- a/iconvdata/cp1251.c +++ b/iconvdata/cp1251.c @@ -1,5 +1,5 @@ /* Conversion from and to CP1251. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp1252.c b/iconvdata/cp1252.c index 87eefa2e2d..a4105d2b8a 100644 --- a/iconvdata/cp1252.c +++ b/iconvdata/cp1252.c @@ -1,5 +1,5 @@ /* Conversion from and to CP1252. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp1253.c b/iconvdata/cp1253.c index 199123dde7..c6245242df 100644 --- a/iconvdata/cp1253.c +++ b/iconvdata/cp1253.c @@ -1,5 +1,5 @@ /* Conversion from and to CP1253. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp1254.c b/iconvdata/cp1254.c index 9cc9165ecc..d4feb3723d 100644 --- a/iconvdata/cp1254.c +++ b/iconvdata/cp1254.c @@ -1,5 +1,5 @@ /* Conversion from and to CP1254. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp1255.c b/iconvdata/cp1255.c index 150ae3cb0b..9a05d3020c 100644 --- a/iconvdata/cp1255.c +++ b/iconvdata/cp1255.c @@ -1,5 +1,5 @@ /* Conversion from and to CP1255. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998, and Bruno Haible , 2001. diff --git a/iconvdata/cp1256.c b/iconvdata/cp1256.c index 282b738fbb..0c07422149 100644 --- a/iconvdata/cp1256.c +++ b/iconvdata/cp1256.c @@ -1,5 +1,5 @@ /* Conversion from and to CP1256. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp1257.c b/iconvdata/cp1257.c index 79ce6bd9d5..2349bb1082 100644 --- a/iconvdata/cp1257.c +++ b/iconvdata/cp1257.c @@ -1,5 +1,5 @@ /* Conversion from and to CP1257. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp1258.c b/iconvdata/cp1258.c index d128ea7b2d..bafa28cc18 100644 --- a/iconvdata/cp1258.c +++ b/iconvdata/cp1258.c @@ -1,5 +1,5 @@ /* Conversion from and to CP1258. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998, and Bruno Haible , 2001. diff --git a/iconvdata/cp737.c b/iconvdata/cp737.c index 531d184dee..f9fcdbaadc 100644 --- a/iconvdata/cp737.c +++ b/iconvdata/cp737.c @@ -1,5 +1,5 @@ /* Conversion from and to CP737. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp737.h b/iconvdata/cp737.h index 1796626a86..dc6aa42fae 100644 --- a/iconvdata/cp737.h +++ b/iconvdata/cp737.h @@ -1,5 +1,5 @@ /* Mapping table for CP737. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp770.c b/iconvdata/cp770.c index 9bfc3eb70a..6a7066e87c 100644 --- a/iconvdata/cp770.c +++ b/iconvdata/cp770.c @@ -1,5 +1,5 @@ /* Conversion from and to CP770. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/iconvdata/cp771.c b/iconvdata/cp771.c index af27e1eba6..edbaa2408a 100644 --- a/iconvdata/cp771.c +++ b/iconvdata/cp771.c @@ -1,5 +1,5 @@ /* Conversion from and to CP771. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/iconvdata/cp772.c b/iconvdata/cp772.c index 0b7169be03..10736164fc 100644 --- a/iconvdata/cp772.c +++ b/iconvdata/cp772.c @@ -1,5 +1,5 @@ /* Conversion from and to CP772. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/iconvdata/cp773.c b/iconvdata/cp773.c index d9c29be7af..7dc54708c2 100644 --- a/iconvdata/cp773.c +++ b/iconvdata/cp773.c @@ -1,5 +1,5 @@ /* Conversion from and to CP773. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/iconvdata/cp774.c b/iconvdata/cp774.c index c127b3efa1..7d99d18995 100644 --- a/iconvdata/cp774.c +++ b/iconvdata/cp774.c @@ -1,5 +1,5 @@ /* Conversion from and to CP774. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/iconvdata/cp775.c b/iconvdata/cp775.c index ab8cc521d9..cc8dd0c603 100644 --- a/iconvdata/cp775.c +++ b/iconvdata/cp775.c @@ -1,5 +1,5 @@ /* Conversion from and to CP775. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp775.h b/iconvdata/cp775.h index c7e6011058..8d54e0f288 100644 --- a/iconvdata/cp775.h +++ b/iconvdata/cp775.h @@ -1,5 +1,5 @@ /* Mapping table for CP775. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cp932.c b/iconvdata/cp932.c index 19a83faf65..b8269ac061 100644 --- a/iconvdata/cp932.c +++ b/iconvdata/cp932.c @@ -1,5 +1,5 @@ /* Mapping tables for CP932 handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by MORIYAMA Masayuki , 2003. diff --git a/iconvdata/csn_369103.c b/iconvdata/csn_369103.c index 65f9b05b0a..6594676b5a 100644 --- a/iconvdata/csn_369103.c +++ b/iconvdata/csn_369103.c @@ -1,5 +1,5 @@ /* Conversion from and to CSN_369103. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/cwi.c b/iconvdata/cwi.c index 19aa611650..12872a0a3b 100644 --- a/iconvdata/cwi.c +++ b/iconvdata/cwi.c @@ -1,5 +1,5 @@ /* Conversion from and to CWI. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/dec-mcs.c b/iconvdata/dec-mcs.c index ae1e6983b9..4c325e8220 100644 --- a/iconvdata/dec-mcs.c +++ b/iconvdata/dec-mcs.c @@ -1,5 +1,5 @@ /* Conversion from and to DEC-MCS. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-at-de-a.c b/iconvdata/ebcdic-at-de-a.c index 56540e459e..9fe0c523da 100644 --- a/iconvdata/ebcdic-at-de-a.c +++ b/iconvdata/ebcdic-at-de-a.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-AT-DE-A. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/ebcdic-at-de.c b/iconvdata/ebcdic-at-de.c index 0729dc35a3..0e47917817 100644 --- a/iconvdata/ebcdic-at-de.c +++ b/iconvdata/ebcdic-at-de.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-AT-DE. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/ebcdic-ca-fr.c b/iconvdata/ebcdic-ca-fr.c index d376b7d36f..5f7cf24210 100644 --- a/iconvdata/ebcdic-ca-fr.c +++ b/iconvdata/ebcdic-ca-fr.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-CA-FR. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/ebcdic-dk-no-a.c b/iconvdata/ebcdic-dk-no-a.c index 93c0f18d50..36973027fa 100644 --- a/iconvdata/ebcdic-dk-no-a.c +++ b/iconvdata/ebcdic-dk-no-a.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-DK-NO-A. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-dk-no.c b/iconvdata/ebcdic-dk-no.c index 8fd86f53d0..f8ba962ea6 100644 --- a/iconvdata/ebcdic-dk-no.c +++ b/iconvdata/ebcdic-dk-no.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-DK-NO. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-es-a.c b/iconvdata/ebcdic-es-a.c index 5d52966c8d..b93b754585 100644 --- a/iconvdata/ebcdic-es-a.c +++ b/iconvdata/ebcdic-es-a.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-ES-A. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-es-s.c b/iconvdata/ebcdic-es-s.c index f4c9909cf9..4ae3e96e36 100644 --- a/iconvdata/ebcdic-es-s.c +++ b/iconvdata/ebcdic-es-s.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-ES-S. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-es.c b/iconvdata/ebcdic-es.c index e56db21c68..068eb68c98 100644 --- a/iconvdata/ebcdic-es.c +++ b/iconvdata/ebcdic-es.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-ES. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-fi-se-a.c b/iconvdata/ebcdic-fi-se-a.c index 46568ce572..bd2b8d9ae3 100644 --- a/iconvdata/ebcdic-fi-se-a.c +++ b/iconvdata/ebcdic-fi-se-a.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-FI-SE-A. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-fi-se.c b/iconvdata/ebcdic-fi-se.c index b8c5d6ad4c..2177a8e889 100644 --- a/iconvdata/ebcdic-fi-se.c +++ b/iconvdata/ebcdic-fi-se.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-FI-SE. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-fr.c b/iconvdata/ebcdic-fr.c index 31fbde68fb..2a3bd8a287 100644 --- a/iconvdata/ebcdic-fr.c +++ b/iconvdata/ebcdic-fr.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-FR. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-is-friss.c b/iconvdata/ebcdic-is-friss.c index f2696b65d5..3d8438bc97 100644 --- a/iconvdata/ebcdic-is-friss.c +++ b/iconvdata/ebcdic-is-friss.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-IS-FRISS. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-it.c b/iconvdata/ebcdic-it.c index 8c210773b5..1fd4819a0b 100644 --- a/iconvdata/ebcdic-it.c +++ b/iconvdata/ebcdic-it.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-IT. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-pt.c b/iconvdata/ebcdic-pt.c index a6cfc4de30..6d9e46cb50 100644 --- a/iconvdata/ebcdic-pt.c +++ b/iconvdata/ebcdic-pt.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-PT. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-uk.c b/iconvdata/ebcdic-uk.c index 907d0d3815..4418afe770 100644 --- a/iconvdata/ebcdic-uk.c +++ b/iconvdata/ebcdic-uk.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-UK. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ebcdic-us.c b/iconvdata/ebcdic-us.c index c08f531ce3..9481af579a 100644 --- a/iconvdata/ebcdic-us.c +++ b/iconvdata/ebcdic-us.c @@ -1,5 +1,5 @@ /* Conversion from and to EBCDIC-US. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ecma-cyrillic.c b/iconvdata/ecma-cyrillic.c index a0c8e77f04..25f7a82e12 100644 --- a/iconvdata/ecma-cyrillic.c +++ b/iconvdata/ecma-cyrillic.c @@ -1,5 +1,5 @@ /* Conversion from and to ECMA-CYRILLIC. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/euc-cn.c b/iconvdata/euc-cn.c index 9cf3a488ab..0b8a74b706 100644 --- a/iconvdata/euc-cn.c +++ b/iconvdata/euc-cn.c @@ -1,5 +1,5 @@ /* Mapping tables for EUC-CN handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/euc-jisx0213.c b/iconvdata/euc-jisx0213.c index cf04f32360..2737842de1 100644 --- a/iconvdata/euc-jisx0213.c +++ b/iconvdata/euc-jisx0213.c @@ -1,5 +1,5 @@ /* Conversion from and to EUC-JISX0213. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2002. diff --git a/iconvdata/euc-jp-ms.c b/iconvdata/euc-jp-ms.c index 883da6a780..5ec40ad6cc 100644 --- a/iconvdata/euc-jp-ms.c +++ b/iconvdata/euc-jp-ms.c @@ -1,5 +1,5 @@ /* Mapping tables for EUCJP-MS handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by MORIYAMA Masayuki , 2003. diff --git a/iconvdata/euc-jp.c b/iconvdata/euc-jp.c index 37dd1b9ebe..b903091ff7 100644 --- a/iconvdata/euc-jp.c +++ b/iconvdata/euc-jp.c @@ -1,5 +1,5 @@ /* Mapping tables for EUC-JP handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/euc-kr.c b/iconvdata/euc-kr.c index 1b3f532660..d4f0e00ca4 100644 --- a/iconvdata/euc-kr.c +++ b/iconvdata/euc-kr.c @@ -1,5 +1,5 @@ /* Mapping tables for EUC-KR handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jungshik Shin and Ulrich Drepper , 1998. diff --git a/iconvdata/euc-tw.c b/iconvdata/euc-tw.c index bd86b81c61..58ad6f1f8b 100644 --- a/iconvdata/euc-tw.c +++ b/iconvdata/euc-tw.c @@ -1,5 +1,5 @@ /* Mapping tables for EUC-TW handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/gb18030.c b/iconvdata/gb18030.c index f675b29f61..4302fbf817 100644 --- a/iconvdata/gb18030.c +++ b/iconvdata/gb18030.c @@ -1,5 +1,5 @@ /* Mapping tables for GBK handling. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Sean Chen , 1999. diff --git a/iconvdata/gb2312.c b/iconvdata/gb2312.c index 0fc74c0aa3..cef756c2e1 100644 --- a/iconvdata/gb2312.c +++ b/iconvdata/gb2312.c @@ -1,5 +1,5 @@ /* GB 2312 conversion tables. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/gb2312.h b/iconvdata/gb2312.h index 49210b9931..e516c792b3 100644 --- a/iconvdata/gb2312.h +++ b/iconvdata/gb2312.h @@ -1,5 +1,5 @@ /* Access functions for GB2312 conversion. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/gbbig5.c b/iconvdata/gbbig5.c index bb75fa7b7d..9a68c5cc7d 100644 --- a/iconvdata/gbbig5.c +++ b/iconvdata/gbbig5.c @@ -1,5 +1,5 @@ /* Mapping tables from GB2312 to BIG5 and vice versa. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/iconvdata/gbgbk.c b/iconvdata/gbgbk.c index 8568e3a804..b870d9d8fb 100644 --- a/iconvdata/gbgbk.c +++ b/iconvdata/gbgbk.c @@ -1,5 +1,5 @@ /* Mapping tables from GBK to GB2312 and vice versa. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/iconvdata/gbk.c b/iconvdata/gbk.c index e3b888aa42..2f7d7fb886 100644 --- a/iconvdata/gbk.c +++ b/iconvdata/gbk.c @@ -1,5 +1,5 @@ /* Mapping tables for GBK handling. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Sean Chen , 1999. diff --git a/iconvdata/gconv-modules b/iconvdata/gconv-modules index 8ee6036fee..d3631c0bf4 100644 --- a/iconvdata/gconv-modules +++ b/iconvdata/gconv-modules @@ -1,5 +1,5 @@ # GNU libc iconv configuration. -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/iconvdata/georgian-academy.c b/iconvdata/georgian-academy.c index 20326517d3..91ed0ff4ab 100644 --- a/iconvdata/georgian-academy.c +++ b/iconvdata/georgian-academy.c @@ -1,5 +1,5 @@ /* Conversion from and to GEORGIAN-ACADEMY. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconvdata/georgian-ps.c b/iconvdata/georgian-ps.c index 6beaa7a04e..89840e9cb0 100644 --- a/iconvdata/georgian-ps.c +++ b/iconvdata/georgian-ps.c @@ -1,5 +1,5 @@ /* Conversion from and to GEORGIAN-PS. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconvdata/gost_19768-74.c b/iconvdata/gost_19768-74.c index e8b8eb1736..c4054a2b1e 100644 --- a/iconvdata/gost_19768-74.c +++ b/iconvdata/gost_19768-74.c @@ -1,5 +1,5 @@ /* Conversion from and to GOST_19768-74. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/greek-ccitt.c b/iconvdata/greek-ccitt.c index e1b1b41c00..061e57a8c4 100644 --- a/iconvdata/greek-ccitt.c +++ b/iconvdata/greek-ccitt.c @@ -1,5 +1,5 @@ /* Conversion from and to GREEK-CCITT. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/greek7-old.c b/iconvdata/greek7-old.c index 902d8d8870..6e135abb5f 100644 --- a/iconvdata/greek7-old.c +++ b/iconvdata/greek7-old.c @@ -1,5 +1,5 @@ /* Conversion from and to GREEK7-OLD. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/greek7.c b/iconvdata/greek7.c index 6b3255bb44..89ac166dfe 100644 --- a/iconvdata/greek7.c +++ b/iconvdata/greek7.c @@ -1,5 +1,5 @@ /* Conversion from and to GREEK7. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/hp-greek8.c b/iconvdata/hp-greek8.c index 793b2ca1d0..df1d77207d 100644 --- a/iconvdata/hp-greek8.c +++ b/iconvdata/hp-greek8.c @@ -1,5 +1,5 @@ /* Conversion from and to HP-GREEK8. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2007. diff --git a/iconvdata/hp-roman8.c b/iconvdata/hp-roman8.c index 2d954d9fdc..f5e586ef08 100644 --- a/iconvdata/hp-roman8.c +++ b/iconvdata/hp-roman8.c @@ -1,5 +1,5 @@ /* Conversion from and to HP-ROMAN8. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/hp-roman9.c b/iconvdata/hp-roman9.c index 04b866f459..51114f5a88 100644 --- a/iconvdata/hp-roman9.c +++ b/iconvdata/hp-roman9.c @@ -1,5 +1,5 @@ /* Conversion from and to HP-ROMAN9. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2007. diff --git a/iconvdata/hp-thai8.c b/iconvdata/hp-thai8.c index fa20619e5a..c757a6a249 100644 --- a/iconvdata/hp-thai8.c +++ b/iconvdata/hp-thai8.c @@ -1,5 +1,5 @@ /* Conversion from and to HP-THAI8. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2007. diff --git a/iconvdata/hp-turkish8.c b/iconvdata/hp-turkish8.c index a3e9c34c75..732e9d389e 100644 --- a/iconvdata/hp-turkish8.c +++ b/iconvdata/hp-turkish8.c @@ -1,5 +1,5 @@ /* Conversion from and to HP-TURKISH8. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2007. diff --git a/iconvdata/ibm037.c b/iconvdata/ibm037.c index 6cf4b4d162..bff8e1e26d 100644 --- a/iconvdata/ibm037.c +++ b/iconvdata/ibm037.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM037. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm038.c b/iconvdata/ibm038.c index a620571381..eaf5ff2c88 100644 --- a/iconvdata/ibm038.c +++ b/iconvdata/ibm038.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM038. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm1004.c b/iconvdata/ibm1004.c index 59821c83b1..f92de24312 100644 --- a/iconvdata/ibm1004.c +++ b/iconvdata/ibm1004.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1004. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm1008.c b/iconvdata/ibm1008.c index e9c7d62aa9..7404448f43 100644 --- a/iconvdata/ibm1008.c +++ b/iconvdata/ibm1008.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1008. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1008.h b/iconvdata/ibm1008.h index 57232a579f..5c08f2fad7 100644 --- a/iconvdata/ibm1008.h +++ b/iconvdata/ibm1008.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1008. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1008_420.c b/iconvdata/ibm1008_420.c index 621c1d0c72..8a99964fd5 100644 --- a/iconvdata/ibm1008_420.c +++ b/iconvdata/ibm1008_420.c @@ -1,5 +1,5 @@ /* Mapping tables from IBM1008 to IBM420 and vice versa. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1025.c b/iconvdata/ibm1025.c index 2adef9906c..9cf1d213da 100644 --- a/iconvdata/ibm1025.c +++ b/iconvdata/ibm1025.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1025. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1025.h b/iconvdata/ibm1025.h index fc58a37ca1..76827019f6 100644 --- a/iconvdata/ibm1025.h +++ b/iconvdata/ibm1025.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1025. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1026.c b/iconvdata/ibm1026.c index 7c9de3a1f5..edbfc02640 100644 --- a/iconvdata/ibm1026.c +++ b/iconvdata/ibm1026.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1026. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm1046.c b/iconvdata/ibm1046.c index 14bfbb043a..44695bf6d0 100644 --- a/iconvdata/ibm1046.c +++ b/iconvdata/ibm1046.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1046. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm1046.h b/iconvdata/ibm1046.h index 80d1e59795..c2fe6e49c5 100644 --- a/iconvdata/ibm1046.h +++ b/iconvdata/ibm1046.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1046. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm1047.c b/iconvdata/ibm1047.c index b12b22fc6b..41a68688a8 100644 --- a/iconvdata/ibm1047.c +++ b/iconvdata/ibm1047.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1047. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm1097.c b/iconvdata/ibm1097.c index 8a8eec4208..e836d23bba 100644 --- a/iconvdata/ibm1097.c +++ b/iconvdata/ibm1097.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1097. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1097.h b/iconvdata/ibm1097.h index 3fe8046716..3469ca1e8c 100644 --- a/iconvdata/ibm1097.h +++ b/iconvdata/ibm1097.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1097. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1112.c b/iconvdata/ibm1112.c index 7ccf3ef052..05fa81b771 100644 --- a/iconvdata/ibm1112.c +++ b/iconvdata/ibm1112.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1112. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1112.h b/iconvdata/ibm1112.h index f5eca92270..3b8e916a18 100644 --- a/iconvdata/ibm1112.h +++ b/iconvdata/ibm1112.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1112. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1122.c b/iconvdata/ibm1122.c index f576f87389..4bc138b9da 100644 --- a/iconvdata/ibm1122.c +++ b/iconvdata/ibm1122.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1122. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1122.h b/iconvdata/ibm1122.h index 30d7a2a739..aa864862eb 100644 --- a/iconvdata/ibm1122.h +++ b/iconvdata/ibm1122.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1122. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1123.c b/iconvdata/ibm1123.c index fdc98cf200..26c5a72990 100644 --- a/iconvdata/ibm1123.c +++ b/iconvdata/ibm1123.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1123. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1123.h b/iconvdata/ibm1123.h index 28e4585681..68ee4f8858 100644 --- a/iconvdata/ibm1123.h +++ b/iconvdata/ibm1123.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1123. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1124.c b/iconvdata/ibm1124.c index 81239bcd0e..6474496184 100644 --- a/iconvdata/ibm1124.c +++ b/iconvdata/ibm1124.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1124. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm1124.h b/iconvdata/ibm1124.h index 2393fd75e9..8191f5f06a 100644 --- a/iconvdata/ibm1124.h +++ b/iconvdata/ibm1124.h @@ -1,5 +1,5 @@ /* Conversion from and to IBM1124. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm1129.c b/iconvdata/ibm1129.c index 8f647e04aa..be1866e66a 100644 --- a/iconvdata/ibm1129.c +++ b/iconvdata/ibm1129.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1129. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm1129.h b/iconvdata/ibm1129.h index 94011fbe02..6960e92d48 100644 --- a/iconvdata/ibm1129.h +++ b/iconvdata/ibm1129.h @@ -1,5 +1,5 @@ /* Conversion from and to IBM1129. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm1130.c b/iconvdata/ibm1130.c index 35719ecb3e..c093655b7d 100644 --- a/iconvdata/ibm1130.c +++ b/iconvdata/ibm1130.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1130. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1130.h b/iconvdata/ibm1130.h index 101c9bcc5e..bea0a3389e 100644 --- a/iconvdata/ibm1130.h +++ b/iconvdata/ibm1130.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1130. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1132.c b/iconvdata/ibm1132.c index e5d1567b9f..c4e62f2a08 100644 --- a/iconvdata/ibm1132.c +++ b/iconvdata/ibm1132.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1132. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1132.h b/iconvdata/ibm1132.h index 7e38be1a8c..56b0857011 100644 --- a/iconvdata/ibm1132.h +++ b/iconvdata/ibm1132.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1132. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1133.c b/iconvdata/ibm1133.c index 4ce631b273..f5e24d5a95 100644 --- a/iconvdata/ibm1133.c +++ b/iconvdata/ibm1133.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1133. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1133.h b/iconvdata/ibm1133.h index 35e8dd2768..61f1e5427b 100644 --- a/iconvdata/ibm1133.h +++ b/iconvdata/ibm1133.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1133. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1137.c b/iconvdata/ibm1137.c index 7aa928053c..cada0cab51 100644 --- a/iconvdata/ibm1137.c +++ b/iconvdata/ibm1137.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1137. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1137.h b/iconvdata/ibm1137.h index 22051fa2f6..39ad61ba88 100644 --- a/iconvdata/ibm1137.h +++ b/iconvdata/ibm1137.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1137. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1140.c b/iconvdata/ibm1140.c index c55a0483d7..f7ebe7b8eb 100644 --- a/iconvdata/ibm1140.c +++ b/iconvdata/ibm1140.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1140. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1140.h b/iconvdata/ibm1140.h index 733298217a..9888b45d5c 100644 --- a/iconvdata/ibm1140.h +++ b/iconvdata/ibm1140.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1140. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1141.c b/iconvdata/ibm1141.c index 4a706f76f0..e2a5273c0b 100644 --- a/iconvdata/ibm1141.c +++ b/iconvdata/ibm1141.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1141. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1141.h b/iconvdata/ibm1141.h index ec2ec6b5b7..7707563be6 100644 --- a/iconvdata/ibm1141.h +++ b/iconvdata/ibm1141.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1141. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1142.c b/iconvdata/ibm1142.c index edcf8b2e60..9807dde03f 100644 --- a/iconvdata/ibm1142.c +++ b/iconvdata/ibm1142.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1142. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1142.h b/iconvdata/ibm1142.h index e2a54afe32..abe7a78c5e 100644 --- a/iconvdata/ibm1142.h +++ b/iconvdata/ibm1142.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1142. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1143.c b/iconvdata/ibm1143.c index 1bfd0a9625..e14ed1d351 100644 --- a/iconvdata/ibm1143.c +++ b/iconvdata/ibm1143.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1143. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1143.h b/iconvdata/ibm1143.h index d64514ba1d..3b1bef497b 100644 --- a/iconvdata/ibm1143.h +++ b/iconvdata/ibm1143.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1143. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1144.c b/iconvdata/ibm1144.c index d8338ffae3..27696e5add 100644 --- a/iconvdata/ibm1144.c +++ b/iconvdata/ibm1144.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1144. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1144.h b/iconvdata/ibm1144.h index 63632dcaa4..424c5df8f6 100644 --- a/iconvdata/ibm1144.h +++ b/iconvdata/ibm1144.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1144. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1145.c b/iconvdata/ibm1145.c index 66c651fb19..9565d520d2 100644 --- a/iconvdata/ibm1145.c +++ b/iconvdata/ibm1145.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1145. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1145.h b/iconvdata/ibm1145.h index 771cea7788..b8448725e0 100644 --- a/iconvdata/ibm1145.h +++ b/iconvdata/ibm1145.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1145. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1146.c b/iconvdata/ibm1146.c index 7e74f5dee5..53586ba4ae 100644 --- a/iconvdata/ibm1146.c +++ b/iconvdata/ibm1146.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1146. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1146.h b/iconvdata/ibm1146.h index 543f87fea4..c42dbf2930 100644 --- a/iconvdata/ibm1146.h +++ b/iconvdata/ibm1146.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1146. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1147.c b/iconvdata/ibm1147.c index 92be27528b..66348b3ced 100644 --- a/iconvdata/ibm1147.c +++ b/iconvdata/ibm1147.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1147. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1147.h b/iconvdata/ibm1147.h index dacf88c62d..e927429597 100644 --- a/iconvdata/ibm1147.h +++ b/iconvdata/ibm1147.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1147. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1148.c b/iconvdata/ibm1148.c index cc20bc3b16..6ddbeea7d0 100644 --- a/iconvdata/ibm1148.c +++ b/iconvdata/ibm1148.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1148. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1148.h b/iconvdata/ibm1148.h index 1f9de887b9..c138ac3c83 100644 --- a/iconvdata/ibm1148.h +++ b/iconvdata/ibm1148.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1148. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1149.c b/iconvdata/ibm1149.c index e4909f843b..9cd63cfe6b 100644 --- a/iconvdata/ibm1149.c +++ b/iconvdata/ibm1149.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1149. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1149.h b/iconvdata/ibm1149.h index a86aa247f4..8f351eff3a 100644 --- a/iconvdata/ibm1149.h +++ b/iconvdata/ibm1149.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1149. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1153.c b/iconvdata/ibm1153.c index cb570413a9..7513932738 100644 --- a/iconvdata/ibm1153.c +++ b/iconvdata/ibm1153.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1153. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1153.h b/iconvdata/ibm1153.h index df248cf2fa..31b7d144a2 100644 --- a/iconvdata/ibm1153.h +++ b/iconvdata/ibm1153.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1153. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1154.c b/iconvdata/ibm1154.c index 15629befdd..b6511806bd 100644 --- a/iconvdata/ibm1154.c +++ b/iconvdata/ibm1154.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1154. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1154.h b/iconvdata/ibm1154.h index 24f5c05150..8f557bb549 100644 --- a/iconvdata/ibm1154.h +++ b/iconvdata/ibm1154.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1154. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1155.c b/iconvdata/ibm1155.c index 58e6c01688..500e2fee76 100644 --- a/iconvdata/ibm1155.c +++ b/iconvdata/ibm1155.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1155. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1155.h b/iconvdata/ibm1155.h index 1138d8b972..67a994e609 100644 --- a/iconvdata/ibm1155.h +++ b/iconvdata/ibm1155.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1155. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1156.c b/iconvdata/ibm1156.c index 6e32f214f0..06cc0b6870 100644 --- a/iconvdata/ibm1156.c +++ b/iconvdata/ibm1156.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1156. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1156.h b/iconvdata/ibm1156.h index 547751ef3f..453b0b68bd 100644 --- a/iconvdata/ibm1156.h +++ b/iconvdata/ibm1156.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1156. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1157.c b/iconvdata/ibm1157.c index 54b8b2278d..5f92373c20 100644 --- a/iconvdata/ibm1157.c +++ b/iconvdata/ibm1157.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1157. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1157.h b/iconvdata/ibm1157.h index c7c021c04e..d9654ff59f 100644 --- a/iconvdata/ibm1157.h +++ b/iconvdata/ibm1157.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1157. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1158.c b/iconvdata/ibm1158.c index e77d9c8b09..f4a5665248 100644 --- a/iconvdata/ibm1158.c +++ b/iconvdata/ibm1158.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1158. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1158.h b/iconvdata/ibm1158.h index e569062bbe..3383defe6c 100644 --- a/iconvdata/ibm1158.h +++ b/iconvdata/ibm1158.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1158. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jiro SEKIBA , 2005. diff --git a/iconvdata/ibm1160.c b/iconvdata/ibm1160.c index e1bcf7eb54..27e65aa76a 100644 --- a/iconvdata/ibm1160.c +++ b/iconvdata/ibm1160.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1160. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1160.h b/iconvdata/ibm1160.h index 78f7baa502..d396ecb686 100644 --- a/iconvdata/ibm1160.h +++ b/iconvdata/ibm1160.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1160. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1161.c b/iconvdata/ibm1161.c index bd4edd8905..305ecfd6ff 100644 --- a/iconvdata/ibm1161.c +++ b/iconvdata/ibm1161.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1161. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1161.h b/iconvdata/ibm1161.h index 8b95356a9c..14cc572c2d 100644 --- a/iconvdata/ibm1161.h +++ b/iconvdata/ibm1161.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1161. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1162.c b/iconvdata/ibm1162.c index 13115251b6..40cdd93537 100644 --- a/iconvdata/ibm1162.c +++ b/iconvdata/ibm1162.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1162. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1162.h b/iconvdata/ibm1162.h index 910a5a9e6b..f588413355 100644 --- a/iconvdata/ibm1162.h +++ b/iconvdata/ibm1162.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1162. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1163.c b/iconvdata/ibm1163.c index 83d3aff1b9..ac55f3dbf7 100644 --- a/iconvdata/ibm1163.c +++ b/iconvdata/ibm1163.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1163. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1163.h b/iconvdata/ibm1163.h index 541c6312be..cbc2e75175 100644 --- a/iconvdata/ibm1163.h +++ b/iconvdata/ibm1163.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1163. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1164.c b/iconvdata/ibm1164.c index 52c569e33c..ca529aa626 100644 --- a/iconvdata/ibm1164.c +++ b/iconvdata/ibm1164.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1164. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1164.h b/iconvdata/ibm1164.h index 70902578ca..a66ee05d71 100644 --- a/iconvdata/ibm1164.h +++ b/iconvdata/ibm1164.h @@ -1,5 +1,5 @@ /* Mapping table for IBM1164. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2001. diff --git a/iconvdata/ibm1166.c b/iconvdata/ibm1166.c index 8c045734c8..9978dc67ad 100644 --- a/iconvdata/ibm1166.c +++ b/iconvdata/ibm1166.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1166. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1166.h b/iconvdata/ibm1166.h index a8faf9add6..bbab81ea25 100644 --- a/iconvdata/ibm1166.h +++ b/iconvdata/ibm1166.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1166. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1167.c b/iconvdata/ibm1167.c index 0d461386f3..725a17700e 100644 --- a/iconvdata/ibm1167.c +++ b/iconvdata/ibm1167.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1167. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1167.h b/iconvdata/ibm1167.h index f2de81876a..445a69339c 100644 --- a/iconvdata/ibm1167.h +++ b/iconvdata/ibm1167.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1167. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm12712.c b/iconvdata/ibm12712.c index ecec0fdb57..22d63ad3aa 100644 --- a/iconvdata/ibm12712.c +++ b/iconvdata/ibm12712.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM12712. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm12712.h b/iconvdata/ibm12712.h index 92765677f7..bc041b1b6c 100644 --- a/iconvdata/ibm12712.h +++ b/iconvdata/ibm12712.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM12712. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1364.c b/iconvdata/ibm1364.c index 0dfa250692..373d49a743 100644 --- a/iconvdata/ibm1364.c +++ b/iconvdata/ibm1364.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1364. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1364.h b/iconvdata/ibm1364.h index b2a090b2b2..1e014c0f72 100644 --- a/iconvdata/ibm1364.h +++ b/iconvdata/ibm1364.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1364. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1371.c b/iconvdata/ibm1371.c index fe2c1dd159..553d60dd5c 100644 --- a/iconvdata/ibm1371.c +++ b/iconvdata/ibm1371.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1371. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1371.h b/iconvdata/ibm1371.h index 1ac68668e9..916d05f049 100644 --- a/iconvdata/ibm1371.h +++ b/iconvdata/ibm1371.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1371. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1388.c b/iconvdata/ibm1388.c index 2464443437..466415bb9f 100644 --- a/iconvdata/ibm1388.c +++ b/iconvdata/ibm1388.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1388. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1388.h b/iconvdata/ibm1388.h index b4fbd946f8..28a54b2cca 100644 --- a/iconvdata/ibm1388.h +++ b/iconvdata/ibm1388.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1388. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1390.c b/iconvdata/ibm1390.c index 31ef1af408..11275aae44 100644 --- a/iconvdata/ibm1390.c +++ b/iconvdata/ibm1390.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1390. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1390.h b/iconvdata/ibm1390.h index 5f2841e08a..eb6e2fb575 100644 --- a/iconvdata/ibm1390.h +++ b/iconvdata/ibm1390.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1390. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1399.c b/iconvdata/ibm1399.c index 3529efdb0a..f0f9d95fa9 100644 --- a/iconvdata/ibm1399.c +++ b/iconvdata/ibm1399.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM1399. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm1399.h b/iconvdata/ibm1399.h index 323482af69..deb76de8a1 100644 --- a/iconvdata/ibm1399.h +++ b/iconvdata/ibm1399.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM1399. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm16804.c b/iconvdata/ibm16804.c index 55520cb0c0..b4d71b6477 100644 --- a/iconvdata/ibm16804.c +++ b/iconvdata/ibm16804.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM16804. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm16804.h b/iconvdata/ibm16804.h index dcf52e2c91..7c86f1a5cc 100644 --- a/iconvdata/ibm16804.h +++ b/iconvdata/ibm16804.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM16804. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm256.c b/iconvdata/ibm256.c index 312326e057..fa41fe697a 100644 --- a/iconvdata/ibm256.c +++ b/iconvdata/ibm256.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM256. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm273.c b/iconvdata/ibm273.c index c6cb9af1fe..b80560da94 100644 --- a/iconvdata/ibm273.c +++ b/iconvdata/ibm273.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM273. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm274.c b/iconvdata/ibm274.c index e0060d622d..499aa513d8 100644 --- a/iconvdata/ibm274.c +++ b/iconvdata/ibm274.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM274. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm275.c b/iconvdata/ibm275.c index 7919e4d90f..c622478468 100644 --- a/iconvdata/ibm275.c +++ b/iconvdata/ibm275.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM275. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm277.c b/iconvdata/ibm277.c index e75fb95261..0e4707568c 100644 --- a/iconvdata/ibm277.c +++ b/iconvdata/ibm277.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM277. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm278.c b/iconvdata/ibm278.c index 11151f7ace..8bb2a42c81 100644 --- a/iconvdata/ibm278.c +++ b/iconvdata/ibm278.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM278. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm280.c b/iconvdata/ibm280.c index 2edd1e1dea..f254df84f8 100644 --- a/iconvdata/ibm280.c +++ b/iconvdata/ibm280.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM280. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm281.c b/iconvdata/ibm281.c index 759845fc9a..dba2db4869 100644 --- a/iconvdata/ibm281.c +++ b/iconvdata/ibm281.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM281. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm284.c b/iconvdata/ibm284.c index e033a14d03..77bed8238b 100644 --- a/iconvdata/ibm284.c +++ b/iconvdata/ibm284.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM284. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm285.c b/iconvdata/ibm285.c index a93eccfa58..88d73a4674 100644 --- a/iconvdata/ibm285.c +++ b/iconvdata/ibm285.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM285. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm290.c b/iconvdata/ibm290.c index 7e8ba274ab..2308cc9b5c 100644 --- a/iconvdata/ibm290.c +++ b/iconvdata/ibm290.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM290. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm297.c b/iconvdata/ibm297.c index 54795d5dda..92c403ac41 100644 --- a/iconvdata/ibm297.c +++ b/iconvdata/ibm297.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM297. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm420.c b/iconvdata/ibm420.c index c90b8f4ce7..9f18b704c0 100644 --- a/iconvdata/ibm420.c +++ b/iconvdata/ibm420.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM420. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm423.c b/iconvdata/ibm423.c index cf9f9286ca..f6c391270c 100644 --- a/iconvdata/ibm423.c +++ b/iconvdata/ibm423.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM423. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm424.c b/iconvdata/ibm424.c index 1b2c5966f2..3d741e1d20 100644 --- a/iconvdata/ibm424.c +++ b/iconvdata/ibm424.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM424. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm437.c b/iconvdata/ibm437.c index 5e9b4635f0..9f3cd91326 100644 --- a/iconvdata/ibm437.c +++ b/iconvdata/ibm437.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM437. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm4517.c b/iconvdata/ibm4517.c index bbda2fa22f..673ec7197f 100644 --- a/iconvdata/ibm4517.c +++ b/iconvdata/ibm4517.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM4517. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm4517.h b/iconvdata/ibm4517.h index f46d6083d7..b95a50163e 100644 --- a/iconvdata/ibm4517.h +++ b/iconvdata/ibm4517.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM4517. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm4899.c b/iconvdata/ibm4899.c index 9c6e4c66e6..c44a31d3b5 100644 --- a/iconvdata/ibm4899.c +++ b/iconvdata/ibm4899.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM4899. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm4899.h b/iconvdata/ibm4899.h index f90229e6af..83ec298ebf 100644 --- a/iconvdata/ibm4899.h +++ b/iconvdata/ibm4899.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM4899. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm4909.c b/iconvdata/ibm4909.c index 3306ea9ec6..db09af5e33 100644 --- a/iconvdata/ibm4909.c +++ b/iconvdata/ibm4909.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM4909. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm4909.h b/iconvdata/ibm4909.h index 39c987eb2b..83107aefa9 100644 --- a/iconvdata/ibm4909.h +++ b/iconvdata/ibm4909.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM4909. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm4971.c b/iconvdata/ibm4971.c index 7a5a427d40..3df14a6b35 100644 --- a/iconvdata/ibm4971.c +++ b/iconvdata/ibm4971.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM4971. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm4971.h b/iconvdata/ibm4971.h index 04c69b6945..dd8da0f542 100644 --- a/iconvdata/ibm4971.h +++ b/iconvdata/ibm4971.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM4971. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm500.c b/iconvdata/ibm500.c index 78648f2bdc..a197df25df 100644 --- a/iconvdata/ibm500.c +++ b/iconvdata/ibm500.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM500. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm5347.c b/iconvdata/ibm5347.c index ab2c327f5a..d2f3d213e7 100644 --- a/iconvdata/ibm5347.c +++ b/iconvdata/ibm5347.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM5347. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm5347.h b/iconvdata/ibm5347.h index 62c89b5abe..61ac6387ad 100644 --- a/iconvdata/ibm5347.h +++ b/iconvdata/ibm5347.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM5347. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm803.c b/iconvdata/ibm803.c index a5add10172..af4b45f7e0 100644 --- a/iconvdata/ibm803.c +++ b/iconvdata/ibm803.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM803. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm803.h b/iconvdata/ibm803.h index bc22234280..3b31fc8889 100644 --- a/iconvdata/ibm803.h +++ b/iconvdata/ibm803.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM803. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm850.c b/iconvdata/ibm850.c index e2535b875c..e3a3aa909c 100644 --- a/iconvdata/ibm850.c +++ b/iconvdata/ibm850.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM850. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm851.c b/iconvdata/ibm851.c index c8adab20e3..0ad84ddbc8 100644 --- a/iconvdata/ibm851.c +++ b/iconvdata/ibm851.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM851. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm852.c b/iconvdata/ibm852.c index b371cc99a6..2d90433e4c 100644 --- a/iconvdata/ibm852.c +++ b/iconvdata/ibm852.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM852. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm855.c b/iconvdata/ibm855.c index 766bf3b7d8..4b96079c8a 100644 --- a/iconvdata/ibm855.c +++ b/iconvdata/ibm855.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM855. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm856.c b/iconvdata/ibm856.c index d4ddf93bbf..7de1211dfd 100644 --- a/iconvdata/ibm856.c +++ b/iconvdata/ibm856.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM856. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm856.h b/iconvdata/ibm856.h index be77850be3..cd221de0fb 100644 --- a/iconvdata/ibm856.h +++ b/iconvdata/ibm856.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM856. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm857.c b/iconvdata/ibm857.c index f63ab44287..7a74e5cb4f 100644 --- a/iconvdata/ibm857.c +++ b/iconvdata/ibm857.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM857. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm860.c b/iconvdata/ibm860.c index d402ff5c01..a95e9ff736 100644 --- a/iconvdata/ibm860.c +++ b/iconvdata/ibm860.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM860. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm861.c b/iconvdata/ibm861.c index 3e47fef7f9..fa1c0ac8e4 100644 --- a/iconvdata/ibm861.c +++ b/iconvdata/ibm861.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM861. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm862.c b/iconvdata/ibm862.c index 6ddce8503c..61b08ebd4f 100644 --- a/iconvdata/ibm862.c +++ b/iconvdata/ibm862.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM862. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm863.c b/iconvdata/ibm863.c index 8cf354cf79..544b7295b3 100644 --- a/iconvdata/ibm863.c +++ b/iconvdata/ibm863.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM863. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm864.c b/iconvdata/ibm864.c index 3194d62a41..beb2520f96 100644 --- a/iconvdata/ibm864.c +++ b/iconvdata/ibm864.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM864. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm865.c b/iconvdata/ibm865.c index f2c16e6186..5bacf9597f 100644 --- a/iconvdata/ibm865.c +++ b/iconvdata/ibm865.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM865. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm866.c b/iconvdata/ibm866.c index a56a82eada..d6385d6402 100644 --- a/iconvdata/ibm866.c +++ b/iconvdata/ibm866.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM866. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm866nav.c b/iconvdata/ibm866nav.c index 877f50bcfc..b0f8dfdb54 100644 --- a/iconvdata/ibm866nav.c +++ b/iconvdata/ibm866nav.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM866NAV. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/iconvdata/ibm868.c b/iconvdata/ibm868.c index c477b55ee1..ad1f69c7a4 100644 --- a/iconvdata/ibm868.c +++ b/iconvdata/ibm868.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM868. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm869.c b/iconvdata/ibm869.c index bdfaa1f970..0b364c3d3e 100644 --- a/iconvdata/ibm869.c +++ b/iconvdata/ibm869.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM869. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm870.c b/iconvdata/ibm870.c index b48e8841af..d56fd4f21d 100644 --- a/iconvdata/ibm870.c +++ b/iconvdata/ibm870.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM870. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm871.c b/iconvdata/ibm871.c index b94f77dfe1..2f5d4685eb 100644 --- a/iconvdata/ibm871.c +++ b/iconvdata/ibm871.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM871. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm874.c b/iconvdata/ibm874.c index 96fb0de3e9..7568cbdf4e 100644 --- a/iconvdata/ibm874.c +++ b/iconvdata/ibm874.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM874. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm875.c b/iconvdata/ibm875.c index df846f2205..016d319533 100644 --- a/iconvdata/ibm875.c +++ b/iconvdata/ibm875.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM875. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm880.c b/iconvdata/ibm880.c index 65fa19f419..090566cc2a 100644 --- a/iconvdata/ibm880.c +++ b/iconvdata/ibm880.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM880. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm891.c b/iconvdata/ibm891.c index 88b4ed4545..574a570e08 100644 --- a/iconvdata/ibm891.c +++ b/iconvdata/ibm891.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM891. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm901.c b/iconvdata/ibm901.c index f966d82d59..91f8a85b5c 100644 --- a/iconvdata/ibm901.c +++ b/iconvdata/ibm901.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM901. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm901.h b/iconvdata/ibm901.h index 2c773a322f..2662680e37 100644 --- a/iconvdata/ibm901.h +++ b/iconvdata/ibm901.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM901. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm902.c b/iconvdata/ibm902.c index d762cc70dd..0ac01b1c62 100644 --- a/iconvdata/ibm902.c +++ b/iconvdata/ibm902.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM902. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm902.h b/iconvdata/ibm902.h index 1dcb67b5b5..9e7f19d791 100644 --- a/iconvdata/ibm902.h +++ b/iconvdata/ibm902.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM902. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm903.c b/iconvdata/ibm903.c index b8a9ca3d26..bc3f34de31 100644 --- a/iconvdata/ibm903.c +++ b/iconvdata/ibm903.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM903. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm9030.c b/iconvdata/ibm9030.c index 7224479942..793d1641e0 100644 --- a/iconvdata/ibm9030.c +++ b/iconvdata/ibm9030.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM9030. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm9030.h b/iconvdata/ibm9030.h index c2734aeafe..d6e050e020 100644 --- a/iconvdata/ibm9030.h +++ b/iconvdata/ibm9030.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM9030. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm904.c b/iconvdata/ibm904.c index f9c5a501a1..2ef227a89b 100644 --- a/iconvdata/ibm904.c +++ b/iconvdata/ibm904.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM904. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm905.c b/iconvdata/ibm905.c index 417e09c375..178b5c44b1 100644 --- a/iconvdata/ibm905.c +++ b/iconvdata/ibm905.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM905. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm9066.c b/iconvdata/ibm9066.c index d74da91475..9048e659f2 100644 --- a/iconvdata/ibm9066.c +++ b/iconvdata/ibm9066.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM9066. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm9066.h b/iconvdata/ibm9066.h index 228c01bca3..ba7cdc6e28 100644 --- a/iconvdata/ibm9066.h +++ b/iconvdata/ibm9066.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM9066. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm918.c b/iconvdata/ibm918.c index ea9e42415a..3ee0af637b 100644 --- a/iconvdata/ibm918.c +++ b/iconvdata/ibm918.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM918. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/ibm921.c b/iconvdata/ibm921.c index 4d017a36bf..46a8429a67 100644 --- a/iconvdata/ibm921.c +++ b/iconvdata/ibm921.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM921. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm921.h b/iconvdata/ibm921.h index cd921e246a..67f629d477 100644 --- a/iconvdata/ibm921.h +++ b/iconvdata/ibm921.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM921. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm922.c b/iconvdata/ibm922.c index 9713ec55ce..24b01e0293 100644 --- a/iconvdata/ibm922.c +++ b/iconvdata/ibm922.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM922. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm922.h b/iconvdata/ibm922.h index ad3c98f848..0afb15195f 100644 --- a/iconvdata/ibm922.h +++ b/iconvdata/ibm922.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM922. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm930.c b/iconvdata/ibm930.c index 86477a7905..83276905a0 100644 --- a/iconvdata/ibm930.c +++ b/iconvdata/ibm930.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM930. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm930.h b/iconvdata/ibm930.h index 6026ffc6b3..55863d3ad0 100644 --- a/iconvdata/ibm930.h +++ b/iconvdata/ibm930.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM930. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm932.c b/iconvdata/ibm932.c index 0764fb2385..4ceeaae5b9 100644 --- a/iconvdata/ibm932.c +++ b/iconvdata/ibm932.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM932. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm932.h b/iconvdata/ibm932.h index 6359436872..b471ed7f78 100644 --- a/iconvdata/ibm932.h +++ b/iconvdata/ibm932.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM932. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm933.c b/iconvdata/ibm933.c index 145d12f98a..4723df4890 100644 --- a/iconvdata/ibm933.c +++ b/iconvdata/ibm933.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM933. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm933.h b/iconvdata/ibm933.h index ae76af9cc6..372e0d000b 100644 --- a/iconvdata/ibm933.h +++ b/iconvdata/ibm933.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM933. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm935.c b/iconvdata/ibm935.c index 7d5628bb7e..1ed311b01f 100644 --- a/iconvdata/ibm935.c +++ b/iconvdata/ibm935.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM935 - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm935.h b/iconvdata/ibm935.h index e1c1e2ad78..8158eb3406 100644 --- a/iconvdata/ibm935.h +++ b/iconvdata/ibm935.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM935 - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm937.c b/iconvdata/ibm937.c index b913cbbb0f..1edaf624d0 100644 --- a/iconvdata/ibm937.c +++ b/iconvdata/ibm937.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM937. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm937.h b/iconvdata/ibm937.h index 63c2c5ba19..b2428ed899 100644 --- a/iconvdata/ibm937.h +++ b/iconvdata/ibm937.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM937. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm939.c b/iconvdata/ibm939.c index d42b98c4ba..b40c486540 100644 --- a/iconvdata/ibm939.c +++ b/iconvdata/ibm939.c @@ -1,5 +1,5 @@ /* Conversion to and from IBM939. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm939.h b/iconvdata/ibm939.h index 9c953e0de1..c5bdb4cab6 100644 --- a/iconvdata/ibm939.h +++ b/iconvdata/ibm939.h @@ -1,5 +1,5 @@ /* Tables for conversion to and from IBM939. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm943.c b/iconvdata/ibm943.c index b3a655591f..495e37909e 100644 --- a/iconvdata/ibm943.c +++ b/iconvdata/ibm943.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM943. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm943.h b/iconvdata/ibm943.h index 911d278ef9..11acf51780 100644 --- a/iconvdata/ibm943.h +++ b/iconvdata/ibm943.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM943. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2000. diff --git a/iconvdata/ibm9448.c b/iconvdata/ibm9448.c index 0e3dd31568..325c8c542b 100644 --- a/iconvdata/ibm9448.c +++ b/iconvdata/ibm9448.c @@ -1,5 +1,5 @@ /* Conversion from and to IBM9448. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/ibm9448.h b/iconvdata/ibm9448.h index 2fa2cbc609..4323419736 100644 --- a/iconvdata/ibm9448.h +++ b/iconvdata/ibm9448.h @@ -1,5 +1,5 @@ /* Tables for conversion from and to IBM9448. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Masahide Washizawa , 2005. diff --git a/iconvdata/iec_p27-1.c b/iconvdata/iec_p27-1.c index e3ef6edb83..dd23411d54 100644 --- a/iconvdata/iec_p27-1.c +++ b/iconvdata/iec_p27-1.c @@ -1,5 +1,5 @@ /* Conversion from and to IEC_P27-1. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/inis-8.c b/iconvdata/inis-8.c index e6dce4f6d4..ae59c0f71d 100644 --- a/iconvdata/inis-8.c +++ b/iconvdata/inis-8.c @@ -1,5 +1,5 @@ /* Conversion from and to INIS-8. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/inis-cyrillic.c b/iconvdata/inis-cyrillic.c index 023717b7d5..c3865a9ba0 100644 --- a/iconvdata/inis-cyrillic.c +++ b/iconvdata/inis-cyrillic.c @@ -1,5 +1,5 @@ /* Conversion from and to INIS-CYRILLIC. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/inis.c b/iconvdata/inis.c index 12904be0e5..70954cf55c 100644 --- a/iconvdata/inis.c +++ b/iconvdata/inis.c @@ -1,5 +1,5 @@ /* Conversion from and to INIS. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/isiri-3342.c b/iconvdata/isiri-3342.c index 6a4f6fb467..f214cca8dc 100644 --- a/iconvdata/isiri-3342.c +++ b/iconvdata/isiri-3342.c @@ -1,5 +1,5 @@ /* Conversion from and to ISIRI-3342. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/iconvdata/iso-2022-cn-ext.c b/iconvdata/iso-2022-cn-ext.c index 4d2f58bf9a..64196ac792 100644 --- a/iconvdata/iso-2022-cn-ext.c +++ b/iconvdata/iso-2022-cn-ext.c @@ -1,5 +1,5 @@ /* Conversion module for ISO-2022-CN-EXT. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/iconvdata/iso-2022-cn.c b/iconvdata/iso-2022-cn.c index e15fa9ffde..0e5a6aabe7 100644 --- a/iconvdata/iso-2022-cn.c +++ b/iconvdata/iso-2022-cn.c @@ -1,5 +1,5 @@ /* Conversion module for ISO-2022-CN. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/iconvdata/iso-2022-jp-3.c b/iconvdata/iso-2022-jp-3.c index 03eb610cc6..e90d68a444 100644 --- a/iconvdata/iso-2022-jp-3.c +++ b/iconvdata/iso-2022-jp-3.c @@ -1,5 +1,5 @@ /* Conversion module for ISO-2022-JP-3. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998, and Bruno Haible , 2002. diff --git a/iconvdata/iso-2022-jp.c b/iconvdata/iso-2022-jp.c index 7fb513fea9..e9d5db4b68 100644 --- a/iconvdata/iso-2022-jp.c +++ b/iconvdata/iso-2022-jp.c @@ -1,5 +1,5 @@ /* Conversion module for ISO-2022-JP and ISO-2022-JP-2. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso-2022-kr.c b/iconvdata/iso-2022-kr.c index 8e26ea904c..2377ae5f2a 100644 --- a/iconvdata/iso-2022-kr.c +++ b/iconvdata/iso-2022-kr.c @@ -1,5 +1,5 @@ /* Conversion module for ISO-2022-KR. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso-ir-165.c b/iconvdata/iso-ir-165.c index 8ff26fa3e6..72eea5ff2b 100644 --- a/iconvdata/iso-ir-165.c +++ b/iconvdata/iso-ir-165.c @@ -1,6 +1,6 @@ /* Tables for conversion to and from ISO-IR-165. converting from UCS using gaps. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/iconvdata/iso-ir-165.h b/iconvdata/iso-ir-165.h index d82d1653ea..3b5649c710 100644 --- a/iconvdata/iso-ir-165.h +++ b/iconvdata/iso-ir-165.h @@ -1,6 +1,6 @@ /* Tables for conversion to and from ISO-IR-165. converting from UCS using gaps. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/iconvdata/iso-ir-197.c b/iconvdata/iso-ir-197.c index 0a6053924e..b472823e38 100644 --- a/iconvdata/iso-ir-197.c +++ b/iconvdata/iso-ir-197.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO-IR-197. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/iconvdata/iso-ir-209.c b/iconvdata/iso-ir-209.c index 121d631167..9c50951430 100644 --- a/iconvdata/iso-ir-209.c +++ b/iconvdata/iso-ir-209.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO-IR-209. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconvdata/iso646.c b/iconvdata/iso646.c index 891ad699bd..35fe93d880 100644 --- a/iconvdata/iso646.c +++ b/iconvdata/iso646.c @@ -1,5 +1,5 @@ /* Conversion to and from the various ISO 646 CCS. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso8859-1.c b/iconvdata/iso8859-1.c index 349cd6f72e..6aa6e3550c 100644 --- a/iconvdata/iso8859-1.c +++ b/iconvdata/iso8859-1.c @@ -1,5 +1,5 @@ /* Conversion to and from ISO 8859-1. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/iso8859-10.c b/iconvdata/iso8859-10.c index e6fc91675e..9c5aaafe8f 100644 --- a/iconvdata/iso8859-10.c +++ b/iconvdata/iso8859-10.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-10. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/iso8859-11.c b/iconvdata/iso8859-11.c index 4d28bd4752..d9bc57df9d 100644 --- a/iconvdata/iso8859-11.c +++ b/iconvdata/iso8859-11.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-11. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso8859-13.c b/iconvdata/iso8859-13.c index cd3f4d6bfb..09526a43d8 100644 --- a/iconvdata/iso8859-13.c +++ b/iconvdata/iso8859-13.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-13. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso8859-14.c b/iconvdata/iso8859-14.c index 0b44704116..c6ae1701e2 100644 --- a/iconvdata/iso8859-14.c +++ b/iconvdata/iso8859-14.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-14. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso8859-15.c b/iconvdata/iso8859-15.c index f4a6c49282..826c05d75a 100644 --- a/iconvdata/iso8859-15.c +++ b/iconvdata/iso8859-15.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-15. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso8859-16.c b/iconvdata/iso8859-16.c index d7728a20f3..91f5d473a8 100644 --- a/iconvdata/iso8859-16.c +++ b/iconvdata/iso8859-16.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-16. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/iconvdata/iso8859-2.c b/iconvdata/iso8859-2.c index c472051223..2a962366f0 100644 --- a/iconvdata/iso8859-2.c +++ b/iconvdata/iso8859-2.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-2. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/iso8859-3.c b/iconvdata/iso8859-3.c index d2529b3a20..8f89e6ccf9 100644 --- a/iconvdata/iso8859-3.c +++ b/iconvdata/iso8859-3.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-3. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/iso8859-4.c b/iconvdata/iso8859-4.c index 9f3cae3c7f..413d6dc1af 100644 --- a/iconvdata/iso8859-4.c +++ b/iconvdata/iso8859-4.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-4. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/iso8859-5.c b/iconvdata/iso8859-5.c index cbd5eefa27..5ae9bf0fde 100644 --- a/iconvdata/iso8859-5.c +++ b/iconvdata/iso8859-5.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-5. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/iso8859-6.c b/iconvdata/iso8859-6.c index 27ee5880f9..5a96214b52 100644 --- a/iconvdata/iso8859-6.c +++ b/iconvdata/iso8859-6.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-6. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/iso8859-7.c b/iconvdata/iso8859-7.c index fa18c1bf4c..bdf7df118d 100644 --- a/iconvdata/iso8859-7.c +++ b/iconvdata/iso8859-7.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-7. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/iso8859-8.c b/iconvdata/iso8859-8.c index efce5df997..a0b6d4e2e0 100644 --- a/iconvdata/iso8859-8.c +++ b/iconvdata/iso8859-8.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-8. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/iso8859-9.c b/iconvdata/iso8859-9.c index 3fd205cc5d..7097803902 100644 --- a/iconvdata/iso8859-9.c +++ b/iconvdata/iso8859-9.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-9. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/iso8859-9e.c b/iconvdata/iso8859-9e.c index 377e4d6a37..c5834e113a 100644 --- a/iconvdata/iso8859-9e.c +++ b/iconvdata/iso8859-9e.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO 8859-9E. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2007. diff --git a/iconvdata/iso_10367-box.c b/iconvdata/iso_10367-box.c index b49decaf75..06fb4a4804 100644 --- a/iconvdata/iso_10367-box.c +++ b/iconvdata/iso_10367-box.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO_10367-BOX. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso_11548-1.c b/iconvdata/iso_11548-1.c index de70529198..51aed763e8 100644 --- a/iconvdata/iso_11548-1.c +++ b/iconvdata/iso_11548-1.c @@ -1,5 +1,5 @@ /* Conversion to and from ISO 11548-1. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997, Samuel Thibault , 2005. diff --git a/iconvdata/iso_2033.c b/iconvdata/iso_2033.c index 93940de094..e64f527750 100644 --- a/iconvdata/iso_2033.c +++ b/iconvdata/iso_2033.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO_2033-1983. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso_5427-ext.c b/iconvdata/iso_5427-ext.c index ad199778e2..45e480c991 100644 --- a/iconvdata/iso_5427-ext.c +++ b/iconvdata/iso_5427-ext.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO_5427-EXT. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso_5427.c b/iconvdata/iso_5427.c index 30884fece0..737d81c156 100644 --- a/iconvdata/iso_5427.c +++ b/iconvdata/iso_5427.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO_5427. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso_5428.c b/iconvdata/iso_5428.c index b8bca8a741..1c5aaf4748 100644 --- a/iconvdata/iso_5428.c +++ b/iconvdata/iso_5428.c @@ -1,5 +1,5 @@ /* Conversion from and to ISO_5428. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso_6937-2.c b/iconvdata/iso_6937-2.c index a76c273dda..d5e09a3795 100644 --- a/iconvdata/iso_6937-2.c +++ b/iconvdata/iso_6937-2.c @@ -1,5 +1,5 @@ /* Generic conversion to and from ISO 6937-2. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/iso_6937.c b/iconvdata/iso_6937.c index 02aecf991d..66d86b1dce 100644 --- a/iconvdata/iso_6937.c +++ b/iconvdata/iso_6937.c @@ -1,5 +1,5 @@ /* Generic conversion to and from ISO 6937. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/jis0201.c b/iconvdata/jis0201.c index f70873e6fb..1d0dd9fda4 100644 --- a/iconvdata/jis0201.c +++ b/iconvdata/jis0201.c @@ -1,5 +1,5 @@ /* Mapping tables for JIS0201 handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/jis0201.h b/iconvdata/jis0201.h index 6b873d7d1a..46f51e5633 100644 --- a/iconvdata/jis0201.h +++ b/iconvdata/jis0201.h @@ -1,5 +1,5 @@ /* Access functions for JISX0201 conversion. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/jis0208.c b/iconvdata/jis0208.c index ea23667534..9b45cf429b 100644 --- a/iconvdata/jis0208.c +++ b/iconvdata/jis0208.c @@ -1,5 +1,5 @@ /* Mapping tables for JIS0208 handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/jis0208.h b/iconvdata/jis0208.h index 9e6db71e30..2b873e282e 100644 --- a/iconvdata/jis0208.h +++ b/iconvdata/jis0208.h @@ -1,5 +1,5 @@ /* Access functions for JISX0208 conversion. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/jis0212.c b/iconvdata/jis0212.c index af36cfcecf..d34249a84a 100644 --- a/iconvdata/jis0212.c +++ b/iconvdata/jis0212.c @@ -1,5 +1,5 @@ /* Mapping tables for JIS0212 handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/jis0212.h b/iconvdata/jis0212.h index c8504e11ec..08690c1d1d 100644 --- a/iconvdata/jis0212.h +++ b/iconvdata/jis0212.h @@ -1,5 +1,5 @@ /* Access functions for JISX0212 conversion. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/jisx0213.c b/iconvdata/jisx0213.c index 3591500363..8a9046c70f 100644 --- a/iconvdata/jisx0213.c +++ b/iconvdata/jisx0213.c @@ -1,5 +1,5 @@ /* Mapping tables for JISX0213 character set. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2002. diff --git a/iconvdata/jisx0213.h b/iconvdata/jisx0213.h index a25cf152d8..587499712b 100644 --- a/iconvdata/jisx0213.h +++ b/iconvdata/jisx0213.h @@ -1,5 +1,5 @@ /* Functions for JISX0213 conversion. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2002. diff --git a/iconvdata/johab.c b/iconvdata/johab.c index 18525cfa86..fb280a368f 100644 --- a/iconvdata/johab.c +++ b/iconvdata/johab.c @@ -1,5 +1,5 @@ /* Mapping tables for JOHAB handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jungshik Shin and Ulrich Drepper , 1998. diff --git a/iconvdata/koi-8.c b/iconvdata/koi-8.c index aabf49297c..712ee8cddc 100644 --- a/iconvdata/koi-8.c +++ b/iconvdata/koi-8.c @@ -1,5 +1,5 @@ /* Conversion from and to KOI-8. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/koi8-r.c b/iconvdata/koi8-r.c index 9256837738..7f9c888f43 100644 --- a/iconvdata/koi8-r.c +++ b/iconvdata/koi8-r.c @@ -1,5 +1,5 @@ /* Conversion from and to KOI8-R. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/koi8-ru.c b/iconvdata/koi8-ru.c index 35d375bf1d..83acbf3fd8 100644 --- a/iconvdata/koi8-ru.c +++ b/iconvdata/koi8-ru.c @@ -1,5 +1,5 @@ /* Conversion from and to KOI8-RU. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 20077. diff --git a/iconvdata/koi8-t.c b/iconvdata/koi8-t.c index 05899f7879..419d438ce1 100644 --- a/iconvdata/koi8-t.c +++ b/iconvdata/koi8-t.c @@ -1,5 +1,5 @@ /* Conversion from and to KOI8-T. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconvdata/koi8-u.c b/iconvdata/koi8-u.c index 9b095970c2..b6d699ee0b 100644 --- a/iconvdata/koi8-u.c +++ b/iconvdata/koi8-u.c @@ -1,5 +1,5 @@ /* Conversion from and to KOI8-U. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/iconvdata/ksc5601.c b/iconvdata/ksc5601.c index 434d7dc55a..a94540d312 100644 --- a/iconvdata/ksc5601.c +++ b/iconvdata/ksc5601.c @@ -1,5 +1,5 @@ /* Conversion tables for KS C 5601-1992 based encoding conversion. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jungshik Shin , 1998. diff --git a/iconvdata/ksc5601.h b/iconvdata/ksc5601.h index 61cade314d..252dd3374c 100644 --- a/iconvdata/ksc5601.h +++ b/iconvdata/ksc5601.h @@ -1,5 +1,5 @@ /* Access functions for KS C 5601-1992 based encoding conversion. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/iconvdata/latin-greek-1.c b/iconvdata/latin-greek-1.c index e4b141d4d6..5c57e57cef 100644 --- a/iconvdata/latin-greek-1.c +++ b/iconvdata/latin-greek-1.c @@ -1,5 +1,5 @@ /* Conversion from and to LATIN-GREEK-1. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/latin-greek.c b/iconvdata/latin-greek.c index 5215fdfddc..58c351768d 100644 --- a/iconvdata/latin-greek.c +++ b/iconvdata/latin-greek.c @@ -1,5 +1,5 @@ /* Conversion from and to LATIN-GREEK. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/mac-centraleurope.c b/iconvdata/mac-centraleurope.c index 2fb24ef029..bd36a8fc6c 100644 --- a/iconvdata/mac-centraleurope.c +++ b/iconvdata/mac-centraleurope.c @@ -1,5 +1,5 @@ /* Conversion from and to MAC-CENTRALEUROPE. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2007. diff --git a/iconvdata/mac-is.c b/iconvdata/mac-is.c index 056c4e6c4c..1b5bdc9902 100644 --- a/iconvdata/mac-is.c +++ b/iconvdata/mac-is.c @@ -1,5 +1,5 @@ /* Conversion from and to MAC-IS. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/mac-sami.c b/iconvdata/mac-sami.c index edbeb6dc65..a20b07bb97 100644 --- a/iconvdata/mac-sami.c +++ b/iconvdata/mac-sami.c @@ -1,5 +1,5 @@ /* Conversion from and to MAC-SAMI. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconvdata/mac-uk.c b/iconvdata/mac-uk.c index 9f78a5bdf2..03600b4d16 100644 --- a/iconvdata/mac-uk.c +++ b/iconvdata/mac-uk.c @@ -1,5 +1,5 @@ /* Conversion from and to MAC-UK. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/macintosh.c b/iconvdata/macintosh.c index 0cadf7afda..252998518f 100644 --- a/iconvdata/macintosh.c +++ b/iconvdata/macintosh.c @@ -1,5 +1,5 @@ /* Conversion from and to MACINTOSH. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/mik.c b/iconvdata/mik.c index 29d4aa5aa6..00df1cdd8e 100644 --- a/iconvdata/mik.c +++ b/iconvdata/mik.c @@ -1,5 +1,5 @@ /* Conversion from and to MIK. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexander Shopov , 2006. diff --git a/iconvdata/nats-dano.c b/iconvdata/nats-dano.c index be0e665121..8c21ff3a0e 100644 --- a/iconvdata/nats-dano.c +++ b/iconvdata/nats-dano.c @@ -1,5 +1,5 @@ /* Conversion from and to NATS-DANO. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/nats-sefi.c b/iconvdata/nats-sefi.c index 4151ede59b..70f5b95fa7 100644 --- a/iconvdata/nats-sefi.c +++ b/iconvdata/nats-sefi.c @@ -1,5 +1,5 @@ /* Conversion from and to NATS-SEFI. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/pt154.c b/iconvdata/pt154.c index 5a5e3d2570..a827de3337 100644 --- a/iconvdata/pt154.c +++ b/iconvdata/pt154.c @@ -1,5 +1,5 @@ /* Conversion from and to PT154. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/iconvdata/rk1048.c b/iconvdata/rk1048.c index c0919c7553..c4fe46d6ff 100644 --- a/iconvdata/rk1048.c +++ b/iconvdata/rk1048.c @@ -1,5 +1,5 @@ /* Conversion from and to RK1048. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/iconvdata/run-iconv-test.sh b/iconvdata/run-iconv-test.sh index 107ded0dfd..e23f60d442 100755 --- a/iconvdata/run-iconv-test.sh +++ b/iconvdata/run-iconv-test.sh @@ -1,6 +1,6 @@ #! /bin/sh -f # Run available iconv(1) tests. -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 1998. diff --git a/iconvdata/sami-ws2.c b/iconvdata/sami-ws2.c index 3e4cd29cab..af486b112a 100644 --- a/iconvdata/sami-ws2.c +++ b/iconvdata/sami-ws2.c @@ -1,5 +1,5 @@ /* Conversion from and to SAMI-WS2. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/iconvdata/shift_jisx0213.c b/iconvdata/shift_jisx0213.c index 9c15e68073..94a2d155d6 100644 --- a/iconvdata/shift_jisx0213.c +++ b/iconvdata/shift_jisx0213.c @@ -1,5 +1,5 @@ /* Conversion from and to Shift_JISX0213. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2002. diff --git a/iconvdata/sjis.c b/iconvdata/sjis.c index 26fa20ab37..34df564201 100644 --- a/iconvdata/sjis.c +++ b/iconvdata/sjis.c @@ -1,5 +1,5 @@ /* Mapping tables for SJIS handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/t.61.c b/iconvdata/t.61.c index 6f7663dde0..e820eb907c 100644 --- a/iconvdata/t.61.c +++ b/iconvdata/t.61.c @@ -1,5 +1,5 @@ /* Generic conversion to and from T.61. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/iconvdata/tcvn5712-1.c b/iconvdata/tcvn5712-1.c index 1c0bd2c373..7a3ab455fa 100644 --- a/iconvdata/tcvn5712-1.c +++ b/iconvdata/tcvn5712-1.c @@ -1,5 +1,5 @@ /* Conversion to and from TCVN5712-1. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/iconvdata/tis-620.c b/iconvdata/tis-620.c index 6ba46c0b25..963551c511 100644 --- a/iconvdata/tis-620.c +++ b/iconvdata/tis-620.c @@ -1,5 +1,5 @@ /* Conversion from and to TIS-620. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/iconvdata/tscii.c b/iconvdata/tscii.c index 3cf17e6b84..e8363d12c9 100644 --- a/iconvdata/tscii.c +++ b/iconvdata/tscii.c @@ -1,5 +1,5 @@ /* Conversion from and to TSCII. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2002. diff --git a/iconvdata/tst-e2big.c b/iconvdata/tst-e2big.c index ee13046c4c..9533eb0657 100644 --- a/iconvdata/tst-e2big.c +++ b/iconvdata/tst-e2big.c @@ -1,5 +1,5 @@ /* Test for a tricky E2BIG situation. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2002. diff --git a/iconvdata/tst-loading.c b/iconvdata/tst-loading.c index 0bd5792b25..0d8a9590d5 100644 --- a/iconvdata/tst-loading.c +++ b/iconvdata/tst-loading.c @@ -1,5 +1,5 @@ /* Tests for loading and unloading of iconv modules. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/iconvdata/tst-table-charmap.sh b/iconvdata/tst-table-charmap.sh index 8bf875bdd2..04cddc3301 100755 --- a/iconvdata/tst-table-charmap.sh +++ b/iconvdata/tst-table-charmap.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Bruno Haible , 2000. # diff --git a/iconvdata/tst-table-from.c b/iconvdata/tst-table-from.c index d392a6216e..95072f9908 100644 --- a/iconvdata/tst-table-from.c +++ b/iconvdata/tst-table-from.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2000. diff --git a/iconvdata/tst-table-to.c b/iconvdata/tst-table-to.c index 4c7d71392f..82fb779a95 100644 --- a/iconvdata/tst-table-to.c +++ b/iconvdata/tst-table-to.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2000. diff --git a/iconvdata/tst-table.sh b/iconvdata/tst-table.sh index b0e667d2a9..c68a3b9f01 100755 --- a/iconvdata/tst-table.sh +++ b/iconvdata/tst-table.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Bruno Haible , 2000. # diff --git a/iconvdata/tst-tables.sh b/iconvdata/tst-tables.sh index 8f4debdd6b..116d88ed7a 100755 --- a/iconvdata/tst-tables.sh +++ b/iconvdata/tst-tables.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Bruno Haible , 2000. # diff --git a/iconvdata/uhc.c b/iconvdata/uhc.c index ee3aad938e..4f5e71486d 100644 --- a/iconvdata/uhc.c +++ b/iconvdata/uhc.c @@ -1,5 +1,5 @@ /* Mapping tables for UHC handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jungshik Shin , 1998. diff --git a/iconvdata/unicode.c b/iconvdata/unicode.c index 250b2071ff..00d63ef338 100644 --- a/iconvdata/unicode.c +++ b/iconvdata/unicode.c @@ -1,5 +1,5 @@ /* Conversion module for Unicode - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/iconvdata/utf-16.c b/iconvdata/utf-16.c index 5d6c92da77..43be4be9c1 100644 --- a/iconvdata/utf-16.c +++ b/iconvdata/utf-16.c @@ -1,5 +1,5 @@ /* Conversion module for UTF-16. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/iconvdata/utf-32.c b/iconvdata/utf-32.c index 6d3e6da30a..f21f2be041 100644 --- a/iconvdata/utf-32.c +++ b/iconvdata/utf-32.c @@ -1,5 +1,5 @@ /* Conversion module for UTF-32. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/iconvdata/utf-7.c b/iconvdata/utf-7.c index 8290278f64..17a9fea656 100644 --- a/iconvdata/utf-7.c +++ b/iconvdata/utf-7.c @@ -1,5 +1,5 @@ /* Conversion module for UTF-7. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2000. diff --git a/iconvdata/viscii.c b/iconvdata/viscii.c index bf408d3ae7..f73ad3e243 100644 --- a/iconvdata/viscii.c +++ b/iconvdata/viscii.c @@ -1,5 +1,5 @@ /* Conversion from and to VISCII. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/include/atomic.h b/include/atomic.h index 92dbcc5dad..5a5319a582 100644 --- a/include/atomic.h +++ b/include/atomic.h @@ -1,5 +1,5 @@ /* Internal macros for atomic operations for GNU C Library. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/include/bits/xopen_lim.h b/include/bits/xopen_lim.h index 6d85182e21..63fd1d8bb9 100644 --- a/include/bits/xopen_lim.h +++ b/include/bits/xopen_lim.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/caller.h b/include/caller.h index 8e2bb80b3d..7145fae56b 100644 --- a/include/caller.h +++ b/include/caller.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/features.h b/include/features.h index 6acd5c899d..56e3da87fb 100644 --- a/include/features.h +++ b/include/features.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/gnu-versions.h b/include/gnu-versions.h index 928c889736..6ffbd4716e 100644 --- a/include/gnu-versions.h +++ b/include/gnu-versions.h @@ -1,5 +1,5 @@ /* Header with interface version macros for library pieces copied elsewhere. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/gnu/libc-version.h b/include/gnu/libc-version.h index 6d55f88ee4..b2d32e12e4 100644 --- a/include/gnu/libc-version.h +++ b/include/gnu/libc-version.h @@ -1,5 +1,5 @@ /* Interface to GNU libc specific functions for version information. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/ifunc-impl-list.h b/include/ifunc-impl-list.h index 652a07a09a..149bac9268 100644 --- a/include/ifunc-impl-list.h +++ b/include/ifunc-impl-list.h @@ -1,5 +1,5 @@ /* Internal header file for __libc_supported_implementations. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/inline-hashtab.h b/include/inline-hashtab.h index 863b377b5c..e84a02bb67 100644 --- a/include/inline-hashtab.h +++ b/include/inline-hashtab.h @@ -1,5 +1,5 @@ /* Fully-inline hash table, used mainly for managing TLS descriptors. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva diff --git a/include/libc-symbols.h b/include/libc-symbols.h index e7c778e394..4b233be0bd 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -1,6 +1,6 @@ /* Support macros for making weak and strong aliases for symbols, and for using symbol sets and linker warnings with GNU ld. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/limits.h b/include/limits.h index 816fb682ed..311386a23b 100644 --- a/include/limits.h +++ b/include/limits.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/link.h b/include/link.h index 1682467631..670d40157b 100644 --- a/include/link.h +++ b/include/link.h @@ -1,6 +1,6 @@ /* Data structure for communication from the run-time dynamic linker for loaded ELF shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/programs/xmalloc.h b/include/programs/xmalloc.h index f4278852be..9ef486fcb9 100644 --- a/include/programs/xmalloc.h +++ b/include/programs/xmalloc.h @@ -1,5 +1,5 @@ /* Memory related definitions for program modules. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software; you can redistribute it and/or modify diff --git a/include/rounding-mode.h b/include/rounding-mode.h index c765551979..9a048c7857 100644 --- a/include/rounding-mode.h +++ b/include/rounding-mode.h @@ -1,5 +1,5 @@ /* Handle floating-point rounding mode within libc. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/set-hooks.h b/include/set-hooks.h index e58f444d42..85bd771d25 100644 --- a/include/set-hooks.h +++ b/include/set-hooks.h @@ -1,5 +1,5 @@ /* Macros for using symbol sets for running lists of functions. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/shlib-compat.h b/include/shlib-compat.h index 955c6aeea2..fac0814bc2 100644 --- a/include/shlib-compat.h +++ b/include/shlib-compat.h @@ -1,5 +1,5 @@ /* Macros for managing ABI-compatibility definitions using ELF symbol versions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/stap-probe.h b/include/stap-probe.h index e2963506aa..73b88e67ee 100644 --- a/include/stap-probe.h +++ b/include/stap-probe.h @@ -1,5 +1,5 @@ /* Macros for defining Systemtap static probe points. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/stdc-predef.h b/include/stdc-predef.h index f8cb2cb97a..87e3666502 100644 --- a/include/stdc-predef.h +++ b/include/stdc-predef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/sys/time.h b/include/sys/time.h index b9af6d480f..d2c628e987 100644 --- a/include/sys/time.h +++ b/include/sys/time.h @@ -1,5 +1,5 @@ /* Time function internal interfaces. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/include/values.h b/include/values.h index d31cf72ae1..24b1fe6505 100644 --- a/include/values.h +++ b/include/values.h @@ -1,5 +1,5 @@ /* Old compatibility names for and constants. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/Makefile b/inet/Makefile index 712315dde7..f4c3273916 100644 --- a/inet/Makefile +++ b/inet/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/aliases.h b/inet/aliases.h index 8dc7b7bf5f..895520eb88 100644 --- a/inet/aliases.h +++ b/inet/aliases.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/arpa/inet.h b/inet/arpa/inet.h index 52fc068093..22b554229a 100644 --- a/inet/arpa/inet.h +++ b/inet/arpa/inet.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/bug-if1.c b/inet/bug-if1.c index dffa82b1cd..d6a4ef29a1 100644 --- a/inet/bug-if1.c +++ b/inet/bug-if1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/inet/check_native.c b/inet/check_native.c index 46ee837b57..3a1f192037 100644 --- a/inet/check_native.c +++ b/inet/check_native.c @@ -1,5 +1,5 @@ /* Determine whether interfaces use native transport. Generic version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/check_pf.c b/inet/check_pf.c index 0e506023ea..b2934f7718 100644 --- a/inet/check_pf.c +++ b/inet/check_pf.c @@ -1,5 +1,5 @@ /* Determine protocol families for which interfaces exist. Generic version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/ether_aton.c b/inet/ether_aton.c index ffc260f16b..cb9f438817 100644 --- a/inet/ether_aton.c +++ b/inet/ether_aton.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/ether_aton_r.c b/inet/ether_aton_r.c index 54adb9e7cc..8c8ad44e72 100644 --- a/inet/ether_aton_r.c +++ b/inet/ether_aton_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/ether_hton.c b/inet/ether_hton.c index a63f0afa02..fe2e0b0fad 100644 --- a/inet/ether_hton.c +++ b/inet/ether_hton.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/ether_line.c b/inet/ether_line.c index 0da3cf587b..7458a8dec1 100644 --- a/inet/ether_line.c +++ b/inet/ether_line.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/ether_ntoa.c b/inet/ether_ntoa.c index 973c187cae..9f29169619 100644 --- a/inet/ether_ntoa.c +++ b/inet/ether_ntoa.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/ether_ntoa_r.c b/inet/ether_ntoa_r.c index fed6247248..8c42a3e5f4 100644 --- a/inet/ether_ntoa_r.c +++ b/inet/ether_ntoa_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/ether_ntoh.c b/inet/ether_ntoh.c index b21b500d87..f019525829 100644 --- a/inet/ether_ntoh.c +++ b/inet/ether_ntoh.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getaliasent.c b/inet/getaliasent.c index cd0dcfdc21..4a1fe25fbd 100644 --- a/inet/getaliasent.c +++ b/inet/getaliasent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getaliasent_r.c b/inet/getaliasent_r.c index c4983a9958..881dae301f 100644 --- a/inet/getaliasent_r.c +++ b/inet/getaliasent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getaliasname.c b/inet/getaliasname.c index 9755de5c69..623ecce17e 100644 --- a/inet/getaliasname.c +++ b/inet/getaliasname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getaliasname_r.c b/inet/getaliasname_r.c index 7f6f7f8c6a..800ecd541c 100644 --- a/inet/getaliasname_r.c +++ b/inet/getaliasname_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/gethstbyad.c b/inet/gethstbyad.c index b8fdc27ecc..0bb94d854f 100644 --- a/inet/gethstbyad.c +++ b/inet/gethstbyad.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/gethstbyad_r.c b/inet/gethstbyad_r.c index e01eb71d32..e7ba9d1d70 100644 --- a/inet/gethstbyad_r.c +++ b/inet/gethstbyad_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/gethstbynm.c b/inet/gethstbynm.c index 3cd9157cae..e02959103e 100644 --- a/inet/gethstbynm.c +++ b/inet/gethstbynm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/gethstbynm2.c b/inet/gethstbynm2.c index d1867974ef..925f540228 100644 --- a/inet/gethstbynm2.c +++ b/inet/gethstbynm2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/gethstbynm2_r.c b/inet/gethstbynm2_r.c index 53063dfce0..d7da276a5e 100644 --- a/inet/gethstbynm2_r.c +++ b/inet/gethstbynm2_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/gethstbynm_r.c b/inet/gethstbynm_r.c index 4cb2b4d2cc..56f0a30de5 100644 --- a/inet/gethstbynm_r.c +++ b/inet/gethstbynm_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/gethstent.c b/inet/gethstent.c index acec1d315c..aafec10aac 100644 --- a/inet/gethstent.c +++ b/inet/gethstent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/gethstent_r.c b/inet/gethstent_r.c index 37d9844c94..31af630bf6 100644 --- a/inet/gethstent_r.c +++ b/inet/gethstent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getipv4sourcefilter.c b/inet/getipv4sourcefilter.c index 258829f18f..476fd0ab77 100644 --- a/inet/getipv4sourcefilter.c +++ b/inet/getipv4sourcefilter.c @@ -1,5 +1,5 @@ /* Get source filter. Stub version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/inet/getnetbyad.c b/inet/getnetbyad.c index 9032c055d0..7e7f410f66 100644 --- a/inet/getnetbyad.c +++ b/inet/getnetbyad.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getnetbyad_r.c b/inet/getnetbyad_r.c index 9239419761..9c2453d3b3 100644 --- a/inet/getnetbyad_r.c +++ b/inet/getnetbyad_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getnetbynm.c b/inet/getnetbynm.c index dfa8885f86..1edec1af00 100644 --- a/inet/getnetbynm.c +++ b/inet/getnetbynm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getnetbynm_r.c b/inet/getnetbynm_r.c index dd1d5f5222..bd2324bf74 100644 --- a/inet/getnetbynm_r.c +++ b/inet/getnetbynm_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getnetent.c b/inet/getnetent.c index 464d767ee3..b4046b4c12 100644 --- a/inet/getnetent.c +++ b/inet/getnetent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getnetent_r.c b/inet/getnetent_r.c index 1a38ea3c1b..51bbab129d 100644 --- a/inet/getnetent_r.c +++ b/inet/getnetent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getnetgrent.c b/inet/getnetgrent.c index 4934204f8e..2bcc5e5f6e 100644 --- a/inet/getnetgrent.c +++ b/inet/getnetgrent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getnetgrent_r.c b/inet/getnetgrent_r.c index 044e505ded..62cdfda9cb 100644 --- a/inet/getnetgrent_r.c +++ b/inet/getnetgrent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getproto.c b/inet/getproto.c index bd8bb9e424..ac9baaa592 100644 --- a/inet/getproto.c +++ b/inet/getproto.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getproto_r.c b/inet/getproto_r.c index 1a9cedda14..b966b3be35 100644 --- a/inet/getproto_r.c +++ b/inet/getproto_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getprtent.c b/inet/getprtent.c index 8cbc7548fc..d549493444 100644 --- a/inet/getprtent.c +++ b/inet/getprtent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getprtent_r.c b/inet/getprtent_r.c index 1de62d2c1b..5a322b7a01 100644 --- a/inet/getprtent_r.c +++ b/inet/getprtent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getprtname.c b/inet/getprtname.c index d252f5d7e5..4ed8a5d5cd 100644 --- a/inet/getprtname.c +++ b/inet/getprtname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getprtname_r.c b/inet/getprtname_r.c index 6974aecebe..fcea2ebd43 100644 --- a/inet/getprtname_r.c +++ b/inet/getprtname_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getrpcbyname.c b/inet/getrpcbyname.c index 25a9a45746..30867500ed 100644 --- a/inet/getrpcbyname.c +++ b/inet/getrpcbyname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getrpcbyname_r.c b/inet/getrpcbyname_r.c index 526620caca..59d0d5c4c4 100644 --- a/inet/getrpcbyname_r.c +++ b/inet/getrpcbyname_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getrpcbynumber.c b/inet/getrpcbynumber.c index d56cdf06eb..37be93c11e 100644 --- a/inet/getrpcbynumber.c +++ b/inet/getrpcbynumber.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getrpcbynumber_r.c b/inet/getrpcbynumber_r.c index 738ff11a43..a0020679d8 100644 --- a/inet/getrpcbynumber_r.c +++ b/inet/getrpcbynumber_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getrpcent.c b/inet/getrpcent.c index 53c8e8b82e..496944d6be 100644 --- a/inet/getrpcent.c +++ b/inet/getrpcent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getrpcent_r.c b/inet/getrpcent_r.c index f1d99bda7a..ae56362320 100644 --- a/inet/getrpcent_r.c +++ b/inet/getrpcent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getservent.c b/inet/getservent.c index 31e57caf6a..6526547c34 100644 --- a/inet/getservent.c +++ b/inet/getservent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getservent_r.c b/inet/getservent_r.c index 859307b4bf..90cda146d2 100644 --- a/inet/getservent_r.c +++ b/inet/getservent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/getsourcefilter.c b/inet/getsourcefilter.c index 662a60ab94..5fae44ea43 100644 --- a/inet/getsourcefilter.c +++ b/inet/getsourcefilter.c @@ -1,5 +1,5 @@ /* Get source filter. Stub version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/inet/getsrvbynm.c b/inet/getsrvbynm.c index 04635a3044..b863ef7180 100644 --- a/inet/getsrvbynm.c +++ b/inet/getsrvbynm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getsrvbynm_r.c b/inet/getsrvbynm_r.c index 6eadbb0054..0ee158b618 100644 --- a/inet/getsrvbynm_r.c +++ b/inet/getsrvbynm_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getsrvbypt.c b/inet/getsrvbypt.c index 77ed1b773e..5542fbb366 100644 --- a/inet/getsrvbypt.c +++ b/inet/getsrvbypt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/getsrvbypt_r.c b/inet/getsrvbypt_r.c index e06b246b37..ec380fd9b5 100644 --- a/inet/getsrvbypt_r.c +++ b/inet/getsrvbypt_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/inet/herrno-loc.c b/inet/herrno-loc.c index 1adf66b67c..ca0677f976 100644 --- a/inet/herrno-loc.c +++ b/inet/herrno-loc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/herrno.c b/inet/herrno.c index 695fda2617..3298b79255 100644 --- a/inet/herrno.c +++ b/inet/herrno.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/htonl.c b/inet/htonl.c index c753cb1545..3829e4f0cf 100644 --- a/inet/htonl.c +++ b/inet/htonl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/htons.c b/inet/htons.c index 47ed109c66..6305996126 100644 --- a/inet/htons.c +++ b/inet/htons.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/htontest.c b/inet/htontest.c index c5a3b08b65..d66e8bc1de 100644 --- a/inet/htontest.c +++ b/inet/htontest.c @@ -1,5 +1,5 @@ /* Test hton/ntoh functions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/inet/if_index.c b/inet/if_index.c index 348983e530..98b01d1ff4 100644 --- a/inet/if_index.c +++ b/inet/if_index.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/ifaddrs.c b/inet/ifaddrs.c index ef6aa8a5d3..8071600949 100644 --- a/inet/ifaddrs.c +++ b/inet/ifaddrs.c @@ -1,5 +1,5 @@ /* getifaddrs -- get names and addresses of all network interfaces - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/ifaddrs.h b/inet/ifaddrs.h index e1f3ee455a..e555102e9e 100644 --- a/inet/ifaddrs.h +++ b/inet/ifaddrs.h @@ -1,5 +1,5 @@ /* ifaddrs.h -- declarations for getting network interface addresses - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/ifreq.c b/inet/ifreq.c index d94d339c67..12da48af1e 100644 --- a/inet/ifreq.c +++ b/inet/ifreq.c @@ -1,5 +1,5 @@ /* Collect network interface list. Stub version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/in6_addr.c b/inet/in6_addr.c index 899b4c7581..519ca76564 100644 --- a/inet/in6_addr.c +++ b/inet/in6_addr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell , 1997. diff --git a/inet/inet6_opt.c b/inet/inet6_opt.c index de461f222f..a215889b5e 100644 --- a/inet/inet6_opt.c +++ b/inet/inet6_opt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2006. diff --git a/inet/inet6_option.c b/inet/inet6_option.c index f8000a16c7..a828697a9c 100644 --- a/inet/inet6_option.c +++ b/inet/inet6_option.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/inet/inet6_rth.c b/inet/inet6_rth.c index a7d3fc1f58..18c6750843 100644 --- a/inet/inet6_rth.c +++ b/inet/inet6_rth.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2006. diff --git a/inet/inet_net.c b/inet/inet_net.c index 5d61c75820..9fdd4bff1b 100644 --- a/inet/inet_net.c +++ b/inet/inet_net.c @@ -27,7 +27,7 @@ * SUCH DAMAGE. */ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/inet_ntoa.c b/inet/inet_ntoa.c index 5598361b3e..9fe8e9113f 100644 --- a/inet/inet_ntoa.c +++ b/inet/inet_ntoa.c @@ -1,5 +1,5 @@ /* Convert Inet number to ASCII representation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/inet/netgroup.h b/inet/netgroup.h index b7163aa87f..490004589d 100644 --- a/inet/netgroup.h +++ b/inet/netgroup.h @@ -1,5 +1,5 @@ /* Internal header for netgroup related functions. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/netinet/ether.h b/inet/netinet/ether.h index 69eeff510a..4d78f76469 100644 --- a/inet/netinet/ether.h +++ b/inet/netinet/ether.h @@ -1,5 +1,5 @@ /* Functions for storing Ethernet addresses in ASCII and mapping to hostnames. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/netinet/icmp6.h b/inet/netinet/icmp6.h index 49e30de771..baaeb267ed 100644 --- a/inet/netinet/icmp6.h +++ b/inet/netinet/icmp6.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/netinet/igmp.h b/inet/netinet/igmp.h index 915dcabdc2..c12552cd13 100644 --- a/inet/netinet/igmp.h +++ b/inet/netinet/igmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/netinet/in.h b/inet/netinet/in.h index 05c77e2310..83b4add8cb 100644 --- a/inet/netinet/in.h +++ b/inet/netinet/in.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/netinet/ip6.h b/inet/netinet/ip6.h index 47c6f02a6e..3cebf9fb90 100644 --- a/inet/netinet/ip6.h +++ b/inet/netinet/ip6.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/setipv4sourcefilter.c b/inet/setipv4sourcefilter.c index af9665968e..0d8fbbef4f 100644 --- a/inet/setipv4sourcefilter.c +++ b/inet/setipv4sourcefilter.c @@ -1,5 +1,5 @@ /* Set source filter. Stub version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/inet/setsourcefilter.c b/inet/setsourcefilter.c index 4f9c23f2cd..e5c87b95b7 100644 --- a/inet/setsourcefilter.c +++ b/inet/setsourcefilter.c @@ -1,5 +1,5 @@ /* Set source filter. Stub version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/inet/test-ifaddrs.c b/inet/test-ifaddrs.c index acb7c518c9..6220be35c3 100644 --- a/inet/test-ifaddrs.c +++ b/inet/test-ifaddrs.c @@ -1,5 +1,5 @@ /* Test listing of network interface addresses. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/inet/test_ifindex.c b/inet/test_ifindex.c index de5a7c75b4..fc81848415 100644 --- a/inet/test_ifindex.c +++ b/inet/test_ifindex.c @@ -1,5 +1,5 @@ /* Test interface name <-> index conversions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell . diff --git a/inet/tst-network.c b/inet/tst-network.c index 2eefb0c04a..fc90bd7245 100644 --- a/inet/tst-network.c +++ b/inet/tst-network.c @@ -1,5 +1,5 @@ /* Test for inet_network. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2000. diff --git a/intl/Makefile b/intl/Makefile index b1572a7d9f..93d2f9d137 100644 --- a/intl/Makefile +++ b/intl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/bindtextdom.c b/intl/bindtextdom.c index e4cc8d4136..20c37b2863 100644 --- a/intl/bindtextdom.c +++ b/intl/bindtextdom.c @@ -1,5 +1,5 @@ /* Implementation of the bindtextdomain(3) function - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/dcgettext.c b/intl/dcgettext.c index 294cedd644..4daae557f1 100644 --- a/intl/dcgettext.c +++ b/intl/dcgettext.c @@ -1,5 +1,5 @@ /* Implementation of the dcgettext(3) function. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/dcigettext.c b/intl/dcigettext.c index f4aa215744..f3d97fb0be 100644 --- a/intl/dcigettext.c +++ b/intl/dcigettext.c @@ -1,5 +1,5 @@ /* Implementation of the internal dcigettext function. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/dcngettext.c b/intl/dcngettext.c index 9b3e9d713e..f3404f3dab 100644 --- a/intl/dcngettext.c +++ b/intl/dcngettext.c @@ -1,5 +1,5 @@ /* Implementation of the dcngettext(3) function. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/dgettext.c b/intl/dgettext.c index 00b30c7b8b..d7c23311c8 100644 --- a/intl/dgettext.c +++ b/intl/dgettext.c @@ -1,5 +1,5 @@ /* Implementation of the dgettext(3) function. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/dngettext.c b/intl/dngettext.c index 185c5c90a6..38cfdac0db 100644 --- a/intl/dngettext.c +++ b/intl/dngettext.c @@ -1,5 +1,5 @@ /* Implementation of the dngettext(3) function. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/explodename.c b/intl/explodename.c index 247129b18d..31fcf3ddfa 100644 --- a/intl/explodename.c +++ b/intl/explodename.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/intl/finddomain.c b/intl/finddomain.c index 5d4c238d20..8a588bcaed 100644 --- a/intl/finddomain.c +++ b/intl/finddomain.c @@ -1,5 +1,5 @@ /* Handle list of needed message catalogs - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 1995. diff --git a/intl/gettext.c b/intl/gettext.c index b592f3c8e7..3864a03fe6 100644 --- a/intl/gettext.c +++ b/intl/gettext.c @@ -1,5 +1,5 @@ /* Implementation of gettext(3) function. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/gettextP.h b/intl/gettextP.h index d1ec644cb7..3da2322efa 100644 --- a/intl/gettextP.h +++ b/intl/gettextP.h @@ -1,5 +1,5 @@ /* Header describing internals of libintl library. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 1995. diff --git a/intl/gmo.h b/intl/gmo.h index 7b50597a9b..c9330dbf96 100644 --- a/intl/gmo.h +++ b/intl/gmo.h @@ -1,5 +1,5 @@ /* Internal header for GNU gettext internationalization functions. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/hash-string.c b/intl/hash-string.c index f40dcbf266..3e53e2ab88 100644 --- a/intl/hash-string.c +++ b/intl/hash-string.c @@ -1,5 +1,5 @@ /* Implements a string hashing function. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/hash-string.h b/intl/hash-string.h index bc81287f7a..646631f779 100644 --- a/intl/hash-string.h +++ b/intl/hash-string.h @@ -1,5 +1,5 @@ /* Implements a string hashing function. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/l10nflist.c b/intl/l10nflist.c index 3d8344be7b..428a3f1d15 100644 --- a/intl/l10nflist.c +++ b/intl/l10nflist.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/intl/libintl.h b/intl/libintl.h index e8637e47b5..3530d0714e 100644 --- a/intl/libintl.h +++ b/intl/libintl.h @@ -1,5 +1,5 @@ /* Message catalogs for internationalization. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. This file is derived from the file libgettext.h in the GNU gettext package. diff --git a/intl/loadinfo.h b/intl/loadinfo.h index 75636247ab..e11b2e85b0 100644 --- a/intl/loadinfo.h +++ b/intl/loadinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/intl/loadmsgcat.c b/intl/loadmsgcat.c index ac90ed1015..18bd501139 100644 --- a/intl/loadmsgcat.c +++ b/intl/loadmsgcat.c @@ -1,5 +1,5 @@ /* Load needed message catalogs. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/locale.alias b/intl/locale.alias index 0314df1beb..f25d01c54e 100644 --- a/intl/locale.alias +++ b/intl/locale.alias @@ -1,5 +1,5 @@ # Locale name alias data base. -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/intl/localealias.c b/intl/localealias.c index ee71eaf45d..ef826c0dc9 100644 --- a/intl/localealias.c +++ b/intl/localealias.c @@ -1,5 +1,5 @@ /* Handle aliases for locale names. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/ngettext.c b/intl/ngettext.c index eaf16c6d41..7bf8e2133a 100644 --- a/intl/ngettext.c +++ b/intl/ngettext.c @@ -1,5 +1,5 @@ /* Implementation of ngettext(3) function. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/plural-eval.c b/intl/plural-eval.c index 0484918175..6fc246009f 100644 --- a/intl/plural-eval.c +++ b/intl/plural-eval.c @@ -1,5 +1,5 @@ /* Plural expression evaluation. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/plural-exp.c b/intl/plural-exp.c index a2d23efc93..9a536c7447 100644 --- a/intl/plural-exp.c +++ b/intl/plural-exp.c @@ -1,5 +1,5 @@ /* Expression parsing for plural form selection. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This file is part of the GNU C Library. diff --git a/intl/plural-exp.h b/intl/plural-exp.h index 2185328066..9ec89013bf 100644 --- a/intl/plural-exp.h +++ b/intl/plural-exp.h @@ -1,5 +1,5 @@ /* Expression parsing and evaluation for plural form selection. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This file is part of the GNU C Library. diff --git a/intl/plural.c b/intl/plural.c index e52c2c4637..1bac3c0666 100644 --- a/intl/plural.c +++ b/intl/plural.c @@ -73,7 +73,7 @@ #line 1 "plural.y" /* Expression parsing for plural form selection. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 2000. diff --git a/intl/plural.y b/intl/plural.y index 58d8ee36f8..105fe0d50e 100644 --- a/intl/plural.y +++ b/intl/plural.y @@ -1,6 +1,6 @@ %{ /* Expression parsing for plural form selection. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 2000. diff --git a/intl/po2test.awk b/intl/po2test.awk index 815bdafb48..cb3d0d61f6 100644 --- a/intl/po2test.awk +++ b/intl/po2test.awk @@ -1,5 +1,5 @@ # po2test.awk - Convert Uniforum style .po file to C code for testing. -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/intl/textdomain.c b/intl/textdomain.c index 32976375e2..3b5a6c1a35 100644 --- a/intl/textdomain.c +++ b/intl/textdomain.c @@ -1,5 +1,5 @@ /* Implementation of the textdomain(3) function. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/tst-codeset.c b/intl/tst-codeset.c index 45938904b3..f5b37ec136 100644 --- a/intl/tst-codeset.c +++ b/intl/tst-codeset.c @@ -1,5 +1,5 @@ /* Test of bind_textdomain_codeset. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2001. diff --git a/intl/tst-gettext.c b/intl/tst-gettext.c index bea144dbb8..4a4c9823bd 100644 --- a/intl/tst-gettext.c +++ b/intl/tst-gettext.c @@ -1,5 +1,5 @@ /* Test of the gettext functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/intl/tst-gettext.sh b/intl/tst-gettext.sh index 87ebe7cf66..0483e2bbcd 100755 --- a/intl/tst-gettext.sh +++ b/intl/tst-gettext.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test of gettext functions. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/tst-gettext2.c b/intl/tst-gettext2.c index 3b4a2193f1..075680a926 100644 --- a/intl/tst-gettext2.c +++ b/intl/tst-gettext2.c @@ -1,5 +1,5 @@ /* Test of the gettext functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk and Andreas Jaeger , 2000. diff --git a/intl/tst-gettext2.sh b/intl/tst-gettext2.sh index c99ca4d3f3..44821d2d15 100644 --- a/intl/tst-gettext2.sh +++ b/intl/tst-gettext2.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test of gettext functions. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/tst-gettext3.c b/intl/tst-gettext3.c index ef128367b6..dd88987e64 100644 --- a/intl/tst-gettext3.c +++ b/intl/tst-gettext3.c @@ -1,6 +1,6 @@ /* Test that the gettext() results come out in the correct encoding for locales that differ only in their encoding. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2001, 2005. diff --git a/intl/tst-gettext4.c b/intl/tst-gettext4.c index ed1886fbfb..36017d8d10 100644 --- a/intl/tst-gettext4.c +++ b/intl/tst-gettext4.c @@ -1,6 +1,6 @@ /* Test that gettext() in multithreaded applications works correctly if different threads operate in different locales with the same encoding. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2005. diff --git a/intl/tst-gettext4.sh b/intl/tst-gettext4.sh index 8f3342a857..fc975df28f 100755 --- a/intl/tst-gettext4.sh +++ b/intl/tst-gettext4.sh @@ -1,7 +1,7 @@ #! /bin/sh # Test that gettext() in multithreaded applications works correctly if # different threads operate in different locales with the same encoding. -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/tst-gettext5.c b/intl/tst-gettext5.c index 17a6aea876..1d4edf6aec 100644 --- a/intl/tst-gettext5.c +++ b/intl/tst-gettext5.c @@ -1,7 +1,7 @@ /* Test that gettext() in multithreaded applications works correctly if different threads operate in different locales referring to the same catalog file but with different encodings. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2005. diff --git a/intl/tst-gettext6.c b/intl/tst-gettext6.c index 8419074f2d..93053e1d18 100644 --- a/intl/tst-gettext6.c +++ b/intl/tst-gettext6.c @@ -1,5 +1,5 @@ /* Test that gettext() in multithreaded applications works correctly. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2008. diff --git a/intl/tst-gettext6.sh b/intl/tst-gettext6.sh index ab570e782c..70cbcbea52 100644 --- a/intl/tst-gettext6.sh +++ b/intl/tst-gettext6.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test that gettext() in multithreaded applications works correctly. -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/intl/tst-ngettext.c b/intl/tst-ngettext.c index 188b7867aa..4fb0ca21dc 100644 --- a/intl/tst-ngettext.c +++ b/intl/tst-ngettext.c @@ -1,5 +1,5 @@ /* Test of the ngettext functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/intl/tst-translit.c b/intl/tst-translit.c index 946fabf67e..1aecee7081 100644 --- a/intl/tst-translit.c +++ b/intl/tst-translit.c @@ -1,5 +1,5 @@ /* Test of translitation in the gettext functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/intl/tst-translit.sh b/intl/tst-translit.sh index 154ac1f905..4803340de0 100755 --- a/intl/tst-translit.sh +++ b/intl/tst-translit.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test of transliteration in gettext functions. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/io/Makefile b/io/Makefile index a7a8044a88..19d3a6b113 100644 --- a/io/Makefile +++ b/io/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1992-2013 Free Software Foundation, Inc. +# Copyright (C) 1992-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/io/access.c b/io/access.c index 4af1168f48..7aa320d0af 100644 --- a/io/access.c +++ b/io/access.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/bits/fcntl2.h b/io/bits/fcntl2.h index f8f7fc73ea..4f13b10706 100644 --- a/io/bits/fcntl2.h +++ b/io/bits/fcntl2.h @@ -1,5 +1,5 @@ /* Checking macros for fcntl functions. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/bits/poll2.h b/io/bits/poll2.h index 14f7df9f84..cc303ceee4 100644 --- a/io/bits/poll2.h +++ b/io/bits/poll2.h @@ -1,5 +1,5 @@ /* Checking macros for poll functions. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/bug-ftw1.c b/io/bug-ftw1.c index db154e97cd..ef81eedc4c 100644 --- a/io/bug-ftw1.c +++ b/io/bug-ftw1.c @@ -1,5 +1,5 @@ /* Test for ftw function searching in root directory. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/io/bug-ftw2.c b/io/bug-ftw2.c index 15654c5017..325f8cbf44 100644 --- a/io/bug-ftw2.c +++ b/io/bug-ftw2.c @@ -1,5 +1,5 @@ /* Test for ftw function searching in current directory. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/io/bug-ftw4.c b/io/bug-ftw4.c index a1858dce2c..659525b0c5 100644 --- a/io/bug-ftw4.c +++ b/io/bug-ftw4.c @@ -1,5 +1,5 @@ /* Test if ftw function doesn't leak fds. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/io/chdir.c b/io/chdir.c index 11a6ab6835..be7865610e 100644 --- a/io/chdir.c +++ b/io/chdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/chmod.c b/io/chmod.c index 1364194211..ceee813727 100644 --- a/io/chmod.c +++ b/io/chmod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/chown.c b/io/chown.c index 2a13df6387..813e3b5337 100644 --- a/io/chown.c +++ b/io/chown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/close.c b/io/close.c index 273c4665e9..83f6ca073d 100644 --- a/io/close.c +++ b/io/close.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/creat.c b/io/creat.c index ffc14e1d8f..0ff524cca2 100644 --- a/io/creat.c +++ b/io/creat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/creat64.c b/io/creat64.c index bc5b66a942..b5f1d8b815 100644 --- a/io/creat64.c +++ b/io/creat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/dup.c b/io/dup.c index bfa2db6e1e..03cccee1e8 100644 --- a/io/dup.c +++ b/io/dup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/dup2.c b/io/dup2.c index 98a10809ad..6201a4c7f3 100644 --- a/io/dup2.c +++ b/io/dup2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/dup3.c b/io/dup3.c index a7cb009498..9afd6d1290 100644 --- a/io/dup3.c +++ b/io/dup3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/euidaccess.c b/io/euidaccess.c index cf4a5e133b..724d608271 100644 --- a/io/euidaccess.c +++ b/io/euidaccess.c @@ -1,5 +1,5 @@ /* Test for access to FILE using effective UID and GID. Stub version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/faccessat.c b/io/faccessat.c index a5c19713e3..e8ed638cf7 100644 --- a/io/faccessat.c +++ b/io/faccessat.c @@ -1,5 +1,5 @@ /* Test for access to file, relative to open directory. Stub version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fchdir.c b/io/fchdir.c index 843f10109c..b3cc3677f7 100644 --- a/io/fchdir.c +++ b/io/fchdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fchmod.c b/io/fchmod.c index 6a8e4d2e34..6688d3a138 100644 --- a/io/fchmod.c +++ b/io/fchmod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fchmodat.c b/io/fchmodat.c index eb037c6b80..63e3042578 100644 --- a/io/fchmodat.c +++ b/io/fchmodat.c @@ -1,5 +1,5 @@ /* Change the protections of file relative to open directory. Stub version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fchown.c b/io/fchown.c index 0d3a8c46d9..ad3e32a2fd 100644 --- a/io/fchown.c +++ b/io/fchown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fchownat.c b/io/fchownat.c index 2a04527625..daf0529d70 100644 --- a/io/fchownat.c +++ b/io/fchownat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fcntl.c b/io/fcntl.c index 8288547394..73e264d344 100644 --- a/io/fcntl.c +++ b/io/fcntl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fcntl.h b/io/fcntl.h index 14ccae0d26..28d83aeab5 100644 --- a/io/fcntl.h +++ b/io/fcntl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/flock.c b/io/flock.c index 48de61da70..b4105014da 100644 --- a/io/flock.c +++ b/io/flock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fstat.c b/io/fstat.c index 5450bce5de..b44939fe74 100644 --- a/io/fstat.c +++ b/io/fstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fstat64.c b/io/fstat64.c index 5f59f8168b..4fdf344570 100644 --- a/io/fstat64.c +++ b/io/fstat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fstatat.c b/io/fstatat.c index f9d7f6e726..bdc434b070 100644 --- a/io/fstatat.c +++ b/io/fstatat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fstatat64.c b/io/fstatat64.c index b88be46225..8a6379aaf0 100644 --- a/io/fstatat64.c +++ b/io/fstatat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fstatfs.c b/io/fstatfs.c index 2dd281acb1..817bc694e1 100644 --- a/io/fstatfs.c +++ b/io/fstatfs.c @@ -1,5 +1,5 @@ /* Return information about the filesystem on which FD resides. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fstatfs64.c b/io/fstatfs64.c index 386961f1ce..69bca30104 100644 --- a/io/fstatfs64.c +++ b/io/fstatfs64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fstatvfs.c b/io/fstatvfs.c index 6da377669c..8a9207e140 100644 --- a/io/fstatvfs.c +++ b/io/fstatvfs.c @@ -1,5 +1,5 @@ /* Return information about the filesystem on which FD resides. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fstatvfs64.c b/io/fstatvfs64.c index bb766d7fce..63ae5147b5 100644 --- a/io/fstatvfs64.c +++ b/io/fstatvfs64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/ftw.c b/io/ftw.c index ad67c627c6..b058b7465a 100644 --- a/io/ftw.c +++ b/io/ftw.c @@ -1,5 +1,5 @@ /* File tree walker functions. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/io/ftw.h b/io/ftw.h index 4f95725ff1..e5e3dd0c49 100644 --- a/io/ftw.h +++ b/io/ftw.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/ftw64.c b/io/ftw64.c index d6f6f9ddcd..92591b75d4 100644 --- a/io/ftw64.c +++ b/io/ftw64.c @@ -1,5 +1,5 @@ /* File tree walker functions. LFS version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/io/ftwtest-sh b/io/ftwtest-sh index 2804d907d0..7341c1f654 100644 --- a/io/ftwtest-sh +++ b/io/ftwtest-sh @@ -1,6 +1,6 @@ #! /bin/sh # Test for nftw(3). -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/io/futimens.c b/io/futimens.c index 96db304524..3fe8be596b 100644 --- a/io/futimens.c +++ b/io/futimens.c @@ -1,5 +1,5 @@ /* Change access and modification times of open file. Linux version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fxstat.c b/io/fxstat.c index 1ba61b9cde..1b61fde565 100644 --- a/io/fxstat.c +++ b/io/fxstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fxstat64.c b/io/fxstat64.c index 6a1d556e26..c8a9646faa 100644 --- a/io/fxstat64.c +++ b/io/fxstat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fxstatat.c b/io/fxstatat.c index 74320b4a58..ecb65fe455 100644 --- a/io/fxstatat.c +++ b/io/fxstatat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/fxstatat64.c b/io/fxstatat64.c index 02e025ce3a..f3c80938d9 100644 --- a/io/fxstatat64.c +++ b/io/fxstatat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/getcwd.c b/io/getcwd.c index becca69956..89caf62b16 100644 --- a/io/getcwd.c +++ b/io/getcwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/getdirname.c b/io/getdirname.c index a360eb9c12..88febbe381 100644 --- a/io/getdirname.c +++ b/io/getdirname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/getwd.c b/io/getwd.c index 5948744557..cc0bee8e61 100644 --- a/io/getwd.c +++ b/io/getwd.c @@ -1,5 +1,5 @@ /* Obsolete function to get current working directory. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/have_o_cloexec.c b/io/have_o_cloexec.c index e621b0a482..4a6cd173ed 100644 --- a/io/have_o_cloexec.c +++ b/io/have_o_cloexec.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/isatty.c b/io/isatty.c index 28cb12fc21..182d07012b 100644 --- a/io/isatty.c +++ b/io/isatty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/lchmod.c b/io/lchmod.c index aedc869cbf..cb64f93ca3 100644 --- a/io/lchmod.c +++ b/io/lchmod.c @@ -1,5 +1,5 @@ /* lchmod -- Change the protections of a file or symbolic link. Stub version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/lchown.c b/io/lchown.c index 30e5c44db7..2ffb426444 100644 --- a/io/lchown.c +++ b/io/lchown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/link.c b/io/link.c index 9ebf4231e7..6501ceb2cc 100644 --- a/io/link.c +++ b/io/link.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/linkat.c b/io/linkat.c index 3f29fccd17..e01ffdba8f 100644 --- a/io/linkat.c +++ b/io/linkat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/lockf.c b/io/lockf.c index ede4c6a098..a73092f035 100644 --- a/io/lockf.c +++ b/io/lockf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/lockf64.c b/io/lockf64.c index bc6d026d15..c4500d72b3 100644 --- a/io/lockf64.c +++ b/io/lockf64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/lseek.c b/io/lseek.c index 63cd75fd54..91be3c5e4b 100644 --- a/io/lseek.c +++ b/io/lseek.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/lseek64.c b/io/lseek64.c index f452cfbe66..39e2f40bdf 100644 --- a/io/lseek64.c +++ b/io/lseek64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/lstat.c b/io/lstat.c index 3e9c0a1fc7..9592f3b7ed 100644 --- a/io/lstat.c +++ b/io/lstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/lstat64.c b/io/lstat64.c index b754b209d9..f8f4f0e1eb 100644 --- a/io/lstat64.c +++ b/io/lstat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/lxstat.c b/io/lxstat.c index 810548187c..8f58c92fb2 100644 --- a/io/lxstat.c +++ b/io/lxstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/lxstat64.c b/io/lxstat64.c index 2d5049b004..eb6745d9f7 100644 --- a/io/lxstat64.c +++ b/io/lxstat64.c @@ -1,5 +1,5 @@ /* lxstat64 -- get file metadata, not following symlinks. Stub version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/mkdir.c b/io/mkdir.c index 259ca5fdc4..4ffa5c0893 100644 --- a/io/mkdir.c +++ b/io/mkdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/mkdirat.c b/io/mkdirat.c index 8618e240ce..f3f4a09caf 100644 --- a/io/mkdirat.c +++ b/io/mkdirat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/mkfifo.c b/io/mkfifo.c index d603a85294..616632da56 100644 --- a/io/mkfifo.c +++ b/io/mkfifo.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/mkfifoat.c b/io/mkfifoat.c index f33d435dd1..748d934747 100644 --- a/io/mkfifoat.c +++ b/io/mkfifoat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/mknod.c b/io/mknod.c index e038d43d66..3701e5dc15 100644 --- a/io/mknod.c +++ b/io/mknod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/mknodat.c b/io/mknodat.c index 24b8e63bd5..c59b964d7a 100644 --- a/io/mknodat.c +++ b/io/mknodat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/open.c b/io/open.c index b01ba6eac5..24aa380339 100644 --- a/io/open.c +++ b/io/open.c @@ -1,5 +1,5 @@ /* Open a file by name. Stub version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/open64.c b/io/open64.c index 818d3819f8..3f3d2e8bbd 100644 --- a/io/open64.c +++ b/io/open64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/open64_2.c b/io/open64_2.c index c9a83f9ff2..7cafbba4fc 100644 --- a/io/open64_2.c +++ b/io/open64_2.c @@ -1,5 +1,5 @@ /* _FORTIFY_SOURCE wrapper for open64. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/open_2.c b/io/open_2.c index 3b9fe28670..65d2c1c845 100644 --- a/io/open_2.c +++ b/io/open_2.c @@ -1,5 +1,5 @@ /* _FORTIFY_SOURCE wrapper for open. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/openat.c b/io/openat.c index 3722c58236..2d822702af 100644 --- a/io/openat.c +++ b/io/openat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/openat64.c b/io/openat64.c index 506da3cf07..c0c4e19589 100644 --- a/io/openat64.c +++ b/io/openat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/openat64_2.c b/io/openat64_2.c index e69fce41a9..6cfea6a9aa 100644 --- a/io/openat64_2.c +++ b/io/openat64_2.c @@ -1,5 +1,5 @@ /* _FORTIFY_SOURCE wrapper for openat64. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/openat_2.c b/io/openat_2.c index b423f1dc6b..9e38c14267 100644 --- a/io/openat_2.c +++ b/io/openat_2.c @@ -1,5 +1,5 @@ /* _FORTIFY_SOURCE wrapper for openat. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/pipe.c b/io/pipe.c index 281c027fe0..7b113f5bbc 100644 --- a/io/pipe.c +++ b/io/pipe.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/pipe2.c b/io/pipe2.c index 33c621893b..7f60b484e1 100644 --- a/io/pipe2.c +++ b/io/pipe2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/poll.c b/io/poll.c index aa4c2d07e3..976640c13e 100644 --- a/io/poll.c +++ b/io/poll.c @@ -1,5 +1,5 @@ /* Poll (or wait) for file descriptor I/O availability. Stub version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/posix_fadvise.c b/io/posix_fadvise.c index 41c9dc1786..b3084658c2 100644 --- a/io/posix_fadvise.c +++ b/io/posix_fadvise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/posix_fadvise64.c b/io/posix_fadvise64.c index 46041f2f21..456b2bd6a9 100644 --- a/io/posix_fadvise64.c +++ b/io/posix_fadvise64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/posix_fallocate.c b/io/posix_fallocate.c index cc93253cca..d9b2b9881d 100644 --- a/io/posix_fallocate.c +++ b/io/posix_fallocate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/posix_fallocate64.c b/io/posix_fallocate64.c index 726c5c57b0..1ff698d978 100644 --- a/io/posix_fallocate64.c +++ b/io/posix_fallocate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/ppoll.c b/io/ppoll.c index a95ac55a37..e31c7d4388 100644 --- a/io/ppoll.c +++ b/io/ppoll.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2006. diff --git a/io/pwd.c b/io/pwd.c index 1527a59a24..ea0731ecbc 100644 --- a/io/pwd.c +++ b/io/pwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/read.c b/io/read.c index afade26563..0b579acfd0 100644 --- a/io/read.c +++ b/io/read.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/readlink.c b/io/readlink.c index a966b711e6..93de80325f 100644 --- a/io/readlink.c +++ b/io/readlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/readlinkat.c b/io/readlinkat.c index 84aab79abb..62cfa17353 100644 --- a/io/readlinkat.c +++ b/io/readlinkat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/rmdir.c b/io/rmdir.c index 075f421447..4a6fc0c86b 100644 --- a/io/rmdir.c +++ b/io/rmdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/sendfile.c b/io/sendfile.c index 3058d4bd4c..26d1e4c28e 100644 --- a/io/sendfile.c +++ b/io/sendfile.c @@ -1,5 +1,5 @@ /* sendfile -- copy data directly from one file descriptor to another - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/sendfile64.c b/io/sendfile64.c index d70e1358e8..341dcd2271 100644 --- a/io/sendfile64.c +++ b/io/sendfile64.c @@ -1,5 +1,5 @@ /* sendfile -- copy data directly from one file descriptor to another - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/stat.c b/io/stat.c index 676e661f5d..c37a6a1e78 100644 --- a/io/stat.c +++ b/io/stat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/stat64.c b/io/stat64.c index ddb66db348..3afe141251 100644 --- a/io/stat64.c +++ b/io/stat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/statfs.c b/io/statfs.c index 09b6892066..1652006574 100644 --- a/io/statfs.c +++ b/io/statfs.c @@ -1,5 +1,5 @@ /* statfs -- Return information about the filesystem on which FILE resides. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/statfs64.c b/io/statfs64.c index f980bd63fd..37a23a9e47 100644 --- a/io/statfs64.c +++ b/io/statfs64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/statvfs.c b/io/statvfs.c index e6af2cd5ed..34480e72ec 100644 --- a/io/statvfs.c +++ b/io/statvfs.c @@ -1,5 +1,5 @@ /* Return information about the filesystem on which FILE resides. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/statvfs64.c b/io/statvfs64.c index a5db710a34..5caf7ecd25 100644 --- a/io/statvfs64.c +++ b/io/statvfs64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/symlink.c b/io/symlink.c index cdab43d338..53ae05b3c0 100644 --- a/io/symlink.c +++ b/io/symlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/symlinkat.c b/io/symlinkat.c index 01e22475c3..ce70409a06 100644 --- a/io/symlinkat.c +++ b/io/symlinkat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/sys/poll.h b/io/sys/poll.h index 3ec81c8659..35d2f0beb4 100644 --- a/io/sys/poll.h +++ b/io/sys/poll.h @@ -1,5 +1,5 @@ /* Compatibility definitions for System V `poll' interface. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/sys/sendfile.h b/io/sys/sendfile.h index 37053f3f60..3cccab62a8 100644 --- a/io/sys/sendfile.h +++ b/io/sys/sendfile.h @@ -1,5 +1,5 @@ /* sendfile -- copy data directly from one file descriptor to another - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/sys/stat.h b/io/sys/stat.h index f8263d6913..63e64dd777 100644 --- a/io/sys/stat.h +++ b/io/sys/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/sys/statfs.h b/io/sys/statfs.h index 51a27284da..a78481e02d 100644 --- a/io/sys/statfs.h +++ b/io/sys/statfs.h @@ -1,5 +1,5 @@ /* Definitions for getting information about a filesystem. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/sys/statvfs.h b/io/sys/statvfs.h index d76534b0d3..5264385442 100644 --- a/io/sys/statvfs.h +++ b/io/sys/statvfs.h @@ -1,5 +1,5 @@ /* Definitions for getting information about a filesystem. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/test-lfs.c b/io/test-lfs.c index 450967e829..ec32cc1095 100644 --- a/io/test-lfs.c +++ b/io/test-lfs.c @@ -1,5 +1,5 @@ /* Some basic tests for LFS. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2000. diff --git a/io/test-stat.c b/io/test-stat.c index 31714b3aee..c5cfd26fe5 100644 --- a/io/test-stat.c +++ b/io/test-stat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Maciej W. Rozycki , 2000. This file is part of the GNU C Library. diff --git a/io/test-stat2.c b/io/test-stat2.c index 7285c3dca7..89eb73e52a 100644 --- a/io/test-stat2.c +++ b/io/test-stat2.c @@ -1,5 +1,5 @@ /* Test consistence of results of stat and stat64. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/io/test-utime.c b/io/test-utime.c index c84a05717b..26a5464ce9 100644 --- a/io/test-utime.c +++ b/io/test-utime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/tst-fcntl.c b/io/tst-fcntl.c index 5412c9f741..bf7eb7d1d4 100644 --- a/io/tst-fcntl.c +++ b/io/tst-fcntl.c @@ -1,5 +1,5 @@ /* Tests for fcntl. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/io/tst-getcwd.c b/io/tst-getcwd.c index a4ec0173c2..0db4d01146 100644 --- a/io/tst-getcwd.c +++ b/io/tst-getcwd.c @@ -1,5 +1,5 @@ /* Test of getcwd function. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/io/ttyname.c b/io/ttyname.c index 6da4b2e039..8bc31c6d7c 100644 --- a/io/ttyname.c +++ b/io/ttyname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/ttyname_r.c b/io/ttyname_r.c index 9eea08bef6..e7028cc160 100644 --- a/io/ttyname_r.c +++ b/io/ttyname_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/umask.c b/io/umask.c index e2909d88d2..29b518b41b 100644 --- a/io/umask.c +++ b/io/umask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/unlink.c b/io/unlink.c index 3be7e5cc05..989f608bc9 100644 --- a/io/unlink.c +++ b/io/unlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/unlinkat.c b/io/unlinkat.c index a5302c7346..dd8933baa5 100644 --- a/io/unlinkat.c +++ b/io/unlinkat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/utime.c b/io/utime.c index e1c501fe28..c56a6e1284 100644 --- a/io/utime.c +++ b/io/utime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/utime.h b/io/utime.h index c59e32b8fb..727e107aef 100644 --- a/io/utime.h +++ b/io/utime.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/utimensat.c b/io/utimensat.c index bfbef0faee..dea4294946 100644 --- a/io/utimensat.c +++ b/io/utimensat.c @@ -1,5 +1,5 @@ /* Change access and modification times of open file. Stub version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/write.c b/io/write.c index 990888f993..e4ed8e8bc2 100644 --- a/io/write.c +++ b/io/write.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/xmknod.c b/io/xmknod.c index 7aec7a966f..7f17daf043 100644 --- a/io/xmknod.c +++ b/io/xmknod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/xmknodat.c b/io/xmknodat.c index 4378c0b7b7..876257d103 100644 --- a/io/xmknodat.c +++ b/io/xmknodat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/xstat.c b/io/xstat.c index e5689a4153..0465ac25b9 100644 --- a/io/xstat.c +++ b/io/xstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/io/xstat64.c b/io/xstat64.c index bedcd4f6c5..f072d1063b 100644 --- a/io/xstat64.c +++ b/io/xstat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libidn/Makefile b/libidn/Makefile index de26051355..542840d947 100644 --- a/libidn/Makefile +++ b/libidn/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/libidn/iconvme.c b/libidn/iconvme.c index d248438766..9f95cc1e83 100644 --- a/libidn/iconvme.c +++ b/libidn/iconvme.c @@ -1,5 +1,5 @@ /* Recode strings between character sets, using iconv. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as diff --git a/libidn/iconvme.h b/libidn/iconvme.h index 71e99a53e3..ce6072a5b8 100644 --- a/libidn/iconvme.h +++ b/libidn/iconvme.h @@ -1,5 +1,5 @@ /* Recode strings between character sets, using iconv. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. Written by Simon Josefsson. This program is free software; you can redistribute it and/or modify diff --git a/libio/Makefile b/libio/Makefile index b2f7627434..05432f4e6b 100644 --- a/libio/Makefile +++ b/libio/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/__fbufsize.c b/libio/__fbufsize.c index e389dd9e67..159a6c278a 100644 --- a/libio/__fbufsize.c +++ b/libio/__fbufsize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/__flbf.c b/libio/__flbf.c index 0f2a9571eb..7d4bcc954c 100644 --- a/libio/__flbf.c +++ b/libio/__flbf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/__fpending.c b/libio/__fpending.c index 046f0d1f62..0c4d329902 100644 --- a/libio/__fpending.c +++ b/libio/__fpending.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/__fpurge.c b/libio/__fpurge.c index 70585cf94f..ab090d54a6 100644 --- a/libio/__fpurge.c +++ b/libio/__fpurge.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/__freadable.c b/libio/__freadable.c index f617022ffc..1ef5511153 100644 --- a/libio/__freadable.c +++ b/libio/__freadable.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/__freading.c b/libio/__freading.c index 5117385b6d..834f4f9ab5 100644 --- a/libio/__freading.c +++ b/libio/__freading.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/__fsetlocking.c b/libio/__fsetlocking.c index 3696953da6..b9c113a853 100644 --- a/libio/__fsetlocking.c +++ b/libio/__fsetlocking.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/__fwritable.c b/libio/__fwritable.c index f3f17bdba7..b4190b03f2 100644 --- a/libio/__fwritable.c +++ b/libio/__fwritable.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/__fwriting.c b/libio/__fwriting.c index cc84b41425..a96503a456 100644 --- a/libio/__fwriting.c +++ b/libio/__fwriting.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/bits/libio-ldbl.h b/libio/bits/libio-ldbl.h index e305407b5e..cb08f3d18f 100644 --- a/libio/bits/libio-ldbl.h +++ b/libio/bits/libio-ldbl.h @@ -1,5 +1,5 @@ /* -mlong-double-64 compatibility mode for libio functions. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/bits/stdio-ldbl.h b/libio/bits/stdio-ldbl.h index 2501eb7bd5..e8f714f5cf 100644 --- a/libio/bits/stdio-ldbl.h +++ b/libio/bits/stdio-ldbl.h @@ -1,5 +1,5 @@ /* -mlong-double-64 compatibility mode for stdio functions. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/bits/stdio.h b/libio/bits/stdio.h index 9deac9fc38..4d872e26d1 100644 --- a/libio/bits/stdio.h +++ b/libio/bits/stdio.h @@ -1,5 +1,5 @@ /* Optimizing macros and inline functions for stdio functions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/bits/stdio2.h b/libio/bits/stdio2.h index 3e5ce69c7b..efa886976c 100644 --- a/libio/bits/stdio2.h +++ b/libio/bits/stdio2.h @@ -1,5 +1,5 @@ /* Checking macros for stdio functions. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/bug-ungetc4.c b/libio/bug-ungetc4.c index 4a1f56dbf2..2dc82d6cdf 100644 --- a/libio/bug-ungetc4.c +++ b/libio/bug-ungetc4.c @@ -1,5 +1,5 @@ /* Test program for ungetc/fseekpos interaction. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/libio/clearerr.c b/libio/clearerr.c index 224d02d1e1..39c2ff8b37 100644 --- a/libio/clearerr.c +++ b/libio/clearerr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/clearerr_u.c b/libio/clearerr_u.c index 8a66f638af..134f419ec2 100644 --- a/libio/clearerr_u.c +++ b/libio/clearerr_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fcloseall.c b/libio/fcloseall.c index 39c3be472d..9d1b1ac15c 100644 --- a/libio/fcloseall.c +++ b/libio/fcloseall.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/feof.c b/libio/feof.c index c252545900..28d256363a 100644 --- a/libio/feof.c +++ b/libio/feof.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/feof_u.c b/libio/feof_u.c index c92a5d68f6..9437c5712a 100644 --- a/libio/feof_u.c +++ b/libio/feof_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/ferror.c b/libio/ferror.c index d51a6dcbf2..74f3306cb2 100644 --- a/libio/ferror.c +++ b/libio/ferror.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/ferror_u.c b/libio/ferror_u.c index d38446c70c..944a661165 100644 --- a/libio/ferror_u.c +++ b/libio/ferror_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/filedoalloc.c b/libio/filedoalloc.c index 1408e3d66e..3b66ec6bb6 100644 --- a/libio/filedoalloc.c +++ b/libio/filedoalloc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fileno.c b/libio/fileno.c index 24dc1593af..92b0332c84 100644 --- a/libio/fileno.c +++ b/libio/fileno.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fileops.c b/libio/fileops.c index c58e860c04..36bea49992 100644 --- a/libio/fileops.c +++ b/libio/fileops.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Per Bothner . diff --git a/libio/fmemopen.c b/libio/fmemopen.c index 02c764f98b..e370a8b9e7 100644 --- a/libio/fmemopen.c +++ b/libio/fmemopen.c @@ -1,5 +1,5 @@ /* Fmemopen implementation. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Hanno Mueller, kontakt@hanno.de, 2000. diff --git a/libio/fputc.c b/libio/fputc.c index 74386cc6cc..ba30854ebd 100644 --- a/libio/fputc.c +++ b/libio/fputc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fputc_u.c b/libio/fputc_u.c index ff1710cb73..236526c31d 100644 --- a/libio/fputc_u.c +++ b/libio/fputc_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fputwc.c b/libio/fputwc.c index b8d8d5b8df..563b6864fb 100644 --- a/libio/fputwc.c +++ b/libio/fputwc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fputwc_u.c b/libio/fputwc_u.c index a1cd7c933c..e80cf24234 100644 --- a/libio/fputwc_u.c +++ b/libio/fputwc_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/freopen.c b/libio/freopen.c index 6ba37bf441..7d4c8bc24b 100644 --- a/libio/freopen.c +++ b/libio/freopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/freopen64.c b/libio/freopen64.c index 660647e7b5..380e795ff4 100644 --- a/libio/freopen64.c +++ b/libio/freopen64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fseek.c b/libio/fseek.c index 04809bcce2..ab85c0d525 100644 --- a/libio/fseek.c +++ b/libio/fseek.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fseeko.c b/libio/fseeko.c index bb4b61da70..7c76f56fc7 100644 --- a/libio/fseeko.c +++ b/libio/fseeko.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fseeko64.c b/libio/fseeko64.c index 9b24d3b991..7159f81091 100644 --- a/libio/fseeko64.c +++ b/libio/fseeko64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/ftello.c b/libio/ftello.c index 07b8697756..208ff8cfce 100644 --- a/libio/ftello.c +++ b/libio/ftello.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/ftello64.c b/libio/ftello64.c index efff2a254e..9f291d7a21 100644 --- a/libio/ftello64.c +++ b/libio/ftello64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fwide.c b/libio/fwide.c index 7ad0ca07ba..985728dd25 100644 --- a/libio/fwide.c +++ b/libio/fwide.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fwprintf.c b/libio/fwprintf.c index fbeeb4b355..aafa3290d2 100644 --- a/libio/fwprintf.c +++ b/libio/fwprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/fwscanf.c b/libio/fwscanf.c index d450c1b5f3..9d84947c80 100644 --- a/libio/fwscanf.c +++ b/libio/fwscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/genops.c b/libio/genops.c index a5fe13758e..e0ce8cc0f4 100644 --- a/libio/genops.c +++ b/libio/genops.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/getc.c b/libio/getc.c index 43187dd4f6..ed88d7e264 100644 --- a/libio/getc.c +++ b/libio/getc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/getc_u.c b/libio/getc_u.c index c94e2cd14f..4fdaafb28a 100644 --- a/libio/getc_u.c +++ b/libio/getc_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/getchar.c b/libio/getchar.c index 17709bf451..7dec9a05c1 100644 --- a/libio/getchar.c +++ b/libio/getchar.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/getchar_u.c b/libio/getchar_u.c index c01d957154..41a89e0f79 100644 --- a/libio/getchar_u.c +++ b/libio/getchar_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/getwc.c b/libio/getwc.c index 1767de6d04..a490154547 100644 --- a/libio/getwc.c +++ b/libio/getwc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/getwc_u.c b/libio/getwc_u.c index 4d3d8d09e2..21b617b456 100644 --- a/libio/getwc_u.c +++ b/libio/getwc_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/getwchar.c b/libio/getwchar.c index 10844e2bdc..d2e2613e1f 100644 --- a/libio/getwchar.c +++ b/libio/getwchar.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/getwchar_u.c b/libio/getwchar_u.c index 97bb244c66..4f2573594f 100644 --- a/libio/getwchar_u.c +++ b/libio/getwchar_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofclose.c b/libio/iofclose.c index cfc0ba1aff..953399387e 100644 --- a/libio/iofclose.c +++ b/libio/iofclose.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofdopen.c b/libio/iofdopen.c index a65a5a6343..066ff19000 100644 --- a/libio/iofdopen.c +++ b/libio/iofdopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofflush.c b/libio/iofflush.c index 5a54c67318..5205d10604 100644 --- a/libio/iofflush.c +++ b/libio/iofflush.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofflush_u.c b/libio/iofflush_u.c index 490c4fa978..43c5f74ce9 100644 --- a/libio/iofflush_u.c +++ b/libio/iofflush_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofgetpos.c b/libio/iofgetpos.c index d80c3e469a..cd5a5d4f1e 100644 --- a/libio/iofgetpos.c +++ b/libio/iofgetpos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofgetpos64.c b/libio/iofgetpos64.c index 53721b7bf5..c90cd2caa8 100644 --- a/libio/iofgetpos64.c +++ b/libio/iofgetpos64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofgets.c b/libio/iofgets.c index bab5aa5147..bf7f84ad3e 100644 --- a/libio/iofgets.c +++ b/libio/iofgets.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofgets_u.c b/libio/iofgets_u.c index 9b32fea8a4..128327e49b 100644 --- a/libio/iofgets_u.c +++ b/libio/iofgets_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofgetws.c b/libio/iofgetws.c index 086d6854d2..193c1a9946 100644 --- a/libio/iofgetws.c +++ b/libio/iofgetws.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofgetws_u.c b/libio/iofgetws_u.c index 1584beec1e..14c4898ea2 100644 --- a/libio/iofgetws_u.c +++ b/libio/iofgetws_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofopen.c b/libio/iofopen.c index 5a859c69cf..4fbf4864de 100644 --- a/libio/iofopen.c +++ b/libio/iofopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofopen64.c b/libio/iofopen64.c index 48e02f3519..e8e86ab6cd 100644 --- a/libio/iofopen64.c +++ b/libio/iofopen64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofopncook.c b/libio/iofopncook.c index 34db0cb7f2..e34af61a21 100644 --- a/libio/iofopncook.c +++ b/libio/iofopncook.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofputs.c b/libio/iofputs.c index f03387bceb..ff4f132db3 100644 --- a/libio/iofputs.c +++ b/libio/iofputs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofputs_u.c b/libio/iofputs_u.c index 69df5d69f5..dc2536742c 100644 --- a/libio/iofputs_u.c +++ b/libio/iofputs_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofputws.c b/libio/iofputws.c index c765827580..d502af46d8 100644 --- a/libio/iofputws.c +++ b/libio/iofputws.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofputws_u.c b/libio/iofputws_u.c index a48e8b6661..60fd349638 100644 --- a/libio/iofputws_u.c +++ b/libio/iofputws_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofread.c b/libio/iofread.c index f7c484830b..ca792a20bd 100644 --- a/libio/iofread.c +++ b/libio/iofread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofread_u.c b/libio/iofread_u.c index 4e6d256c2e..5e462254a9 100644 --- a/libio/iofread_u.c +++ b/libio/iofread_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofsetpos.c b/libio/iofsetpos.c index d1308dde90..3c89d682b3 100644 --- a/libio/iofsetpos.c +++ b/libio/iofsetpos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofsetpos64.c b/libio/iofsetpos64.c index 0a3a3ab16b..358a61a442 100644 --- a/libio/iofsetpos64.c +++ b/libio/iofsetpos64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/ioftell.c b/libio/ioftell.c index f28a40fd82..2bf38e0e32 100644 --- a/libio/ioftell.c +++ b/libio/ioftell.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofwide.c b/libio/iofwide.c index f85ea1e5df..5cff6325f1 100644 --- a/libio/iofwide.c +++ b/libio/iofwide.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofwrite.c b/libio/iofwrite.c index 66542eaea5..cd11bb43ae 100644 --- a/libio/iofwrite.c +++ b/libio/iofwrite.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iofwrite_u.c b/libio/iofwrite_u.c index 18dc6d032d..157fed8c3a 100644 --- a/libio/iofwrite_u.c +++ b/libio/iofwrite_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iogetdelim.c b/libio/iogetdelim.c index a7304c55eb..e2e0b0775e 100644 --- a/libio/iogetdelim.c +++ b/libio/iogetdelim.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iogetline.c b/libio/iogetline.c index a3f618213f..3ca38606dc 100644 --- a/libio/iogetline.c +++ b/libio/iogetline.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iogets.c b/libio/iogets.c index 1674e2a0ca..7d19c68204 100644 --- a/libio/iogets.c +++ b/libio/iogets.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iogetwline.c b/libio/iogetwline.c index 65962a2b03..b7c1196921 100644 --- a/libio/iogetwline.c +++ b/libio/iogetwline.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iopadn.c b/libio/iopadn.c index 5ebbcf4551..e1c5344634 100644 --- a/libio/iopadn.c +++ b/libio/iopadn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iopopen.c b/libio/iopopen.c index b2b88d7f0f..3c1f7ecc26 100644 --- a/libio/iopopen.c +++ b/libio/iopopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Per Bothner . diff --git a/libio/ioputs.c b/libio/ioputs.c index b98ca3a3c9..eb3737b258 100644 --- a/libio/ioputs.c +++ b/libio/ioputs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/ioseekoff.c b/libio/ioseekoff.c index 708e98fdd8..fdb7968149 100644 --- a/libio/ioseekoff.c +++ b/libio/ioseekoff.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/ioseekpos.c b/libio/ioseekpos.c index 94d754ce36..45b656751c 100644 --- a/libio/ioseekpos.c +++ b/libio/ioseekpos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iosetbuffer.c b/libio/iosetbuffer.c index 253591719e..31b0bbca09 100644 --- a/libio/iosetbuffer.c +++ b/libio/iosetbuffer.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iosetvbuf.c b/libio/iosetvbuf.c index d98672d006..d97e4820af 100644 --- a/libio/iosetvbuf.c +++ b/libio/iosetvbuf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/ioungetc.c b/libio/ioungetc.c index 1865694182..a3364ea773 100644 --- a/libio/ioungetc.c +++ b/libio/ioungetc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/ioungetwc.c b/libio/ioungetwc.c index 33549031a7..2c65d91b0d 100644 --- a/libio/ioungetwc.c +++ b/libio/ioungetwc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iovdprintf.c b/libio/iovdprintf.c index d9918f000c..b60d1c11f4 100644 --- a/libio/iovdprintf.c +++ b/libio/iovdprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iovsprintf.c b/libio/iovsprintf.c index e135d586f9..5d064311ec 100644 --- a/libio/iovsprintf.c +++ b/libio/iovsprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iovsscanf.c b/libio/iovsscanf.c index 9e68a7a4b0..4161d43bff 100644 --- a/libio/iovsscanf.c +++ b/libio/iovsscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iovswscanf.c b/libio/iovswscanf.c index 46fff57e5b..e34970d286 100644 --- a/libio/iovswscanf.c +++ b/libio/iovswscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/iowpadn.c b/libio/iowpadn.c index 5600f3711c..a3581994a7 100644 --- a/libio/iowpadn.c +++ b/libio/iowpadn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/libc_fatal.c b/libio/libc_fatal.c index be1eaddb8a..7fcc0fa872 100644 --- a/libio/libc_fatal.c +++ b/libio/libc_fatal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/libio.h b/libio/libio.h index 3cf1712ea9..6077f5c1fc 100644 --- a/libio/libio.h +++ b/libio/libio.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Per Bothner . diff --git a/libio/libioP.h b/libio/libioP.h index 7b46388f3e..4ca723c977 100644 --- a/libio/libioP.h +++ b/libio/libioP.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/memstream.c b/libio/memstream.c index 3cb1bd7057..ddb64a01b7 100644 --- a/libio/memstream.c +++ b/libio/memstream.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/obprintf.c b/libio/obprintf.c index 9f16eab007..641eab5909 100644 --- a/libio/obprintf.c +++ b/libio/obprintf.c @@ -1,5 +1,5 @@ /* Print output of stream to given obstack. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/libio/oldfileops.c b/libio/oldfileops.c index c9537f4d87..8439b97ffe 100644 --- a/libio/oldfileops.c +++ b/libio/oldfileops.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Per Bothner . diff --git a/libio/oldiofclose.c b/libio/oldiofclose.c index 2191fca4a3..6ffce12df4 100644 --- a/libio/oldiofclose.c +++ b/libio/oldiofclose.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/oldiofdopen.c b/libio/oldiofdopen.c index 2e90bbf639..8098c3ddf4 100644 --- a/libio/oldiofdopen.c +++ b/libio/oldiofdopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/oldiofgetpos.c b/libio/oldiofgetpos.c index a3132e477f..2b2410634a 100644 --- a/libio/oldiofgetpos.c +++ b/libio/oldiofgetpos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/oldiofgetpos64.c b/libio/oldiofgetpos64.c index ced967383a..1d712c6383 100644 --- a/libio/oldiofgetpos64.c +++ b/libio/oldiofgetpos64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/oldiofopen.c b/libio/oldiofopen.c index c81aefdd9c..c3ce2e5674 100644 --- a/libio/oldiofopen.c +++ b/libio/oldiofopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/oldiofsetpos.c b/libio/oldiofsetpos.c index f455c5cfc2..ac91d8fa6c 100644 --- a/libio/oldiofsetpos.c +++ b/libio/oldiofsetpos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/oldiofsetpos64.c b/libio/oldiofsetpos64.c index 068b1cec9a..97c730be29 100644 --- a/libio/oldiofsetpos64.c +++ b/libio/oldiofsetpos64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/oldiopopen.c b/libio/oldiopopen.c index f93de34816..7bde3b52c9 100644 --- a/libio/oldiopopen.c +++ b/libio/oldiopopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Per Bothner . diff --git a/libio/oldpclose.c b/libio/oldpclose.c index 0761d84f68..08de8035b9 100644 --- a/libio/oldpclose.c +++ b/libio/oldpclose.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/oldstdfiles.c b/libio/oldstdfiles.c index b02c62d7f0..fad966df5a 100644 --- a/libio/oldstdfiles.c +++ b/libio/oldstdfiles.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/oldtmpfile.c b/libio/oldtmpfile.c index b1b5e52d62..a6a5e71ae5 100644 --- a/libio/oldtmpfile.c +++ b/libio/oldtmpfile.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/pclose.c b/libio/pclose.c index 9c3b4b27e1..29220f6ca9 100644 --- a/libio/pclose.c +++ b/libio/pclose.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/peekc.c b/libio/peekc.c index 56362a9c79..38998c5355 100644 --- a/libio/peekc.c +++ b/libio/peekc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/putc.c b/libio/putc.c index 469ac31724..897d818238 100644 --- a/libio/putc.c +++ b/libio/putc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/putc_u.c b/libio/putc_u.c index 59ace86d69..f42f5c7a34 100644 --- a/libio/putc_u.c +++ b/libio/putc_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/putchar.c b/libio/putchar.c index 06cf4012f0..a002f4a4c8 100644 --- a/libio/putchar.c +++ b/libio/putchar.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/putchar_u.c b/libio/putchar_u.c index 0128241de0..46409849ed 100644 --- a/libio/putchar_u.c +++ b/libio/putchar_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/putwc.c b/libio/putwc.c index 469481698f..1b0f1814eb 100644 --- a/libio/putwc.c +++ b/libio/putwc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/putwc_u.c b/libio/putwc_u.c index da359c1c3c..08bd8f621b 100644 --- a/libio/putwc_u.c +++ b/libio/putwc_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/putwchar.c b/libio/putwchar.c index 0a25e2e952..dac5bbf524 100644 --- a/libio/putwchar.c +++ b/libio/putwchar.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/putwchar_u.c b/libio/putwchar_u.c index 97ac4c9784..4f09c16d72 100644 --- a/libio/putwchar_u.c +++ b/libio/putwchar_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/rewind.c b/libio/rewind.c index 95e0944469..06b2c38817 100644 --- a/libio/rewind.c +++ b/libio/rewind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/setbuf.c b/libio/setbuf.c index deba713858..db72cc6109 100644 --- a/libio/setbuf.c +++ b/libio/setbuf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/setlinebuf.c b/libio/setlinebuf.c index bf489be718..b758c228b6 100644 --- a/libio/setlinebuf.c +++ b/libio/setlinebuf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/stdfiles.c b/libio/stdfiles.c index cc02831c3b..e7b56dfd21 100644 --- a/libio/stdfiles.c +++ b/libio/stdfiles.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/stdio.c b/libio/stdio.c index fa28d3065c..3dadfadf36 100644 --- a/libio/stdio.c +++ b/libio/stdio.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/stdio.h b/libio/stdio.h index 754301fc1a..bdc79eabee 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -1,5 +1,5 @@ /* Define ISO C stdio on top of C++ iostreams. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/strfile.h b/libio/strfile.h index 63819dbee0..1c73ed8169 100644 --- a/libio/strfile.h +++ b/libio/strfile.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/strops.c b/libio/strops.c index 5c7baf5df0..e3a5ae3ca4 100644 --- a/libio/strops.c +++ b/libio/strops.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/swprintf.c b/libio/swprintf.c index 282534cad4..81aed53701 100644 --- a/libio/swprintf.c +++ b/libio/swprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/swscanf.c b/libio/swscanf.c index 2eb4fb2fce..7955d7a9a1 100644 --- a/libio/swscanf.c +++ b/libio/swscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/test-fmemopen.c b/libio/test-fmemopen.c index 47ee036c28..30998940e1 100644 --- a/libio/test-fmemopen.c +++ b/libio/test-fmemopen.c @@ -1,5 +1,5 @@ /* Test for fmemopen implementation. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Hanno Mueller, kontakt@hanno.de, 2000. diff --git a/libio/test-freopen.c b/libio/test-freopen.c index 6ae194e63e..3ba3d75d8a 100644 --- a/libio/test-freopen.c +++ b/libio/test-freopen.c @@ -1,5 +1,5 @@ /* Test for freopen implementation. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/test-freopen.sh b/libio/test-freopen.sh index 3b05614f70..69fc9fccab 100755 --- a/libio/test-freopen.sh +++ b/libio/test-freopen.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test of freopen. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/tst-fopenloc.c b/libio/tst-fopenloc.c index f83e7227df..8fe83fd5c8 100644 --- a/libio/tst-fopenloc.c +++ b/libio/tst-fopenloc.c @@ -1,5 +1,5 @@ /* Test for ,ccs= handling in fopen. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/libio/tst-freopen.c b/libio/tst-freopen.c index e0a49e824c..f9e71773e7 100644 --- a/libio/tst-freopen.c +++ b/libio/tst-freopen.c @@ -1,5 +1,5 @@ /* Test freopen with mmap stdio. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/libio/tst-fseek.c b/libio/tst-fseek.c index 46182c9486..56b04472f4 100644 --- a/libio/tst-fseek.c +++ b/libio/tst-fseek.c @@ -1,5 +1,5 @@ /* Verify that fseek/ftell combination works for wide chars. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/tst-fwrite-error.c b/libio/tst-fwrite-error.c index 87c876627e..68ddb82d8f 100644 --- a/libio/tst-fwrite-error.c +++ b/libio/tst-fwrite-error.c @@ -1,5 +1,5 @@ /* Test of fwrite() function, adapted from gnulib-tests in grep. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/libio/tst-mmap-setvbuf.c b/libio/tst-mmap-setvbuf.c index a6c73652d8..348d9ee65b 100644 --- a/libio/tst-mmap-setvbuf.c +++ b/libio/tst-mmap-setvbuf.c @@ -1,5 +1,5 @@ /* Test setvbuf on readonly fopen (using mmap stdio). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/libio/tst-widetext.c b/libio/tst-widetext.c index 36ca208187..179763e852 100644 --- a/libio/tst-widetext.c +++ b/libio/tst-widetext.c @@ -1,6 +1,6 @@ /* Test program for the wide character stream functions handling larger amounts of text. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . diff --git a/libio/tst_getwc.c b/libio/tst_getwc.c index 78d6177e60..9fde284f7f 100644 --- a/libio/tst_getwc.c +++ b/libio/tst_getwc.c @@ -1,5 +1,5 @@ /* Simple test of getwc in the C locale. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/libio/tst_putwc.c b/libio/tst_putwc.c index df39de7fae..fed3748c8f 100644 --- a/libio/tst_putwc.c +++ b/libio/tst_putwc.c @@ -1,5 +1,5 @@ /* Simple test of putwc in the C locale. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/libio/vasprintf.c b/libio/vasprintf.c index b9455f8a5f..fca16bebff 100644 --- a/libio/vasprintf.c +++ b/libio/vasprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/vscanf.c b/libio/vscanf.c index 3362597a71..b8ee989d2a 100644 --- a/libio/vscanf.c +++ b/libio/vscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/vsnprintf.c b/libio/vsnprintf.c index 865ccac547..a204fa3cc0 100644 --- a/libio/vsnprintf.c +++ b/libio/vsnprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/vswprintf.c b/libio/vswprintf.c index 136bda8fcd..2aa0ff1aaf 100644 --- a/libio/vswprintf.c +++ b/libio/vswprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/vwprintf.c b/libio/vwprintf.c index 84a68e6f97..6479d2ca2e 100644 --- a/libio/vwprintf.c +++ b/libio/vwprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/vwscanf.c b/libio/vwscanf.c index 32ebc2c34a..42f18f405b 100644 --- a/libio/vwscanf.c +++ b/libio/vwscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/wfiledoalloc.c b/libio/wfiledoalloc.c index 4a900a8118..f8e554e9f0 100644 --- a/libio/wfiledoalloc.c +++ b/libio/wfiledoalloc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/wfileops.c b/libio/wfileops.c index 0a156eaad4..87d3cdcf33 100644 --- a/libio/wfileops.c +++ b/libio/wfileops.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper . Based on the single byte version by Per Bothner . diff --git a/libio/wgenops.c b/libio/wgenops.c index b39b6912c6..a1f86c9d42 100644 --- a/libio/wgenops.c +++ b/libio/wgenops.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper . Based on the single byte version by Per Bothner . diff --git a/libio/wmemstream.c b/libio/wmemstream.c index fd7fe44c4c..1d472d7827 100644 --- a/libio/wmemstream.c +++ b/libio/wmemstream.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/wprintf.c b/libio/wprintf.c index 6362ddb5ab..7f97156e74 100644 --- a/libio/wprintf.c +++ b/libio/wprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/wscanf.c b/libio/wscanf.c index 82c83eed45..eacc52ba2c 100644 --- a/libio/wscanf.c +++ b/libio/wscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/libio/wstrops.c b/libio/wstrops.c index 828393081e..399a377104 100644 --- a/libio/wstrops.c +++ b/libio/wstrops.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/C-address.c b/locale/C-address.c index fe6e69e8ba..1fc2364432 100644 --- a/locale/C-address.c +++ b/locale/C-address.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/C-collate.c b/locale/C-collate.c index 6c7edf074f..447233fc5c 100644 --- a/locale/C-collate.c +++ b/locale/C-collate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/C-ctype.c b/locale/C-ctype.c index e85625449a..b3fac115e3 100644 --- a/locale/C-ctype.c +++ b/locale/C-ctype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/C-identification.c b/locale/C-identification.c index 106c1a52f5..a306d93730 100644 --- a/locale/C-identification.c +++ b/locale/C-identification.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/C-measurement.c b/locale/C-measurement.c index 8ed255fbe1..14116343ba 100644 --- a/locale/C-measurement.c +++ b/locale/C-measurement.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/C-messages.c b/locale/C-messages.c index 528fe3b39f..ab2c75a99b 100644 --- a/locale/C-messages.c +++ b/locale/C-messages.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/C-monetary.c b/locale/C-monetary.c index 9c36c761fe..d90631f371 100644 --- a/locale/C-monetary.c +++ b/locale/C-monetary.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/C-name.c b/locale/C-name.c index b18353da98..29c1b50c78 100644 --- a/locale/C-name.c +++ b/locale/C-name.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/C-numeric.c b/locale/C-numeric.c index a3a3b69d75..121263e318 100644 --- a/locale/C-numeric.c +++ b/locale/C-numeric.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/C-paper.c b/locale/C-paper.c index 9d25e95175..0b0129d98b 100644 --- a/locale/C-paper.c +++ b/locale/C-paper.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/C-telephone.c b/locale/C-telephone.c index 8d73a6dcd6..a8b49ba301 100644 --- a/locale/C-telephone.c +++ b/locale/C-telephone.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/C-time.c b/locale/C-time.c index 6f76deb6e5..8731f39e51 100644 --- a/locale/C-time.c +++ b/locale/C-time.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/C-translit.h.in b/locale/C-translit.h.in index 094550dc0f..dbe8723328 100644 --- a/locale/C-translit.h.in +++ b/locale/C-translit.h.in @@ -1,5 +1,5 @@ /* Transliteration for the C locale. -*-C-*- - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/locale/Makefile b/locale/Makefile index 8ccc603b15..51b383afa8 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/bits/locale.h b/locale/bits/locale.h index f830c2f793..481228f686 100644 --- a/locale/bits/locale.h +++ b/locale/bits/locale.h @@ -1,5 +1,5 @@ /* Definition of locale category symbol values. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/broken_cur_max.c b/locale/broken_cur_max.c index 2ca51a2c00..7d213402be 100644 --- a/locale/broken_cur_max.c +++ b/locale/broken_cur_max.c @@ -1,6 +1,6 @@ /* Return number of characters in multibyte representation for current character set. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/categories.def b/locale/categories.def index e1172e99c5..6a53a6bf7c 100644 --- a/locale/categories.def +++ b/locale/categories.def @@ -1,5 +1,5 @@ /* Definition of all available locale categories and their items. -*- C -*- - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/coll-lookup.c b/locale/coll-lookup.c index d778a98800..dd2a1d7305 100644 --- a/locale/coll-lookup.c +++ b/locale/coll-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2000. diff --git a/locale/coll-lookup.h b/locale/coll-lookup.h index 51e70f3af2..ed65341edf 100644 --- a/locale/coll-lookup.h +++ b/locale/coll-lookup.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2000. diff --git a/locale/duplocale.c b/locale/duplocale.c index 72c7c20e2b..5ea80e59b2 100644 --- a/locale/duplocale.c +++ b/locale/duplocale.c @@ -1,5 +1,5 @@ /* Duplicate handle for selection of locales. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/locale/elem-hash.h b/locale/elem-hash.h index eb53c1ee38..177e0bc645 100644 --- a/locale/elem-hash.h +++ b/locale/elem-hash.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper, . diff --git a/locale/findlocale.c b/locale/findlocale.c index 3c04aa86dd..0c42b99251 100644 --- a/locale/findlocale.c +++ b/locale/findlocale.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/freelocale.c b/locale/freelocale.c index db87429e3e..4d3b70c8c1 100644 --- a/locale/freelocale.c +++ b/locale/freelocale.c @@ -1,5 +1,5 @@ /* Free data allocated by a call to setlocale_r - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/global-locale.c b/locale/global-locale.c index 8784cfb377..b0799fbb38 100644 --- a/locale/global-locale.c +++ b/locale/global-locale.c @@ -1,5 +1,5 @@ /* Locale object representing the global locale controlled by setlocale. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/hashval.h b/locale/hashval.h index 88e7839386..eadb513d2c 100644 --- a/locale/hashval.h +++ b/locale/hashval.h @@ -1,5 +1,5 @@ /* Implement simple hashing table with string based keys. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , October 1994. diff --git a/locale/indigits.h b/locale/indigits.h index c6306293d3..f251efdd2e 100644 --- a/locale/indigits.h +++ b/locale/indigits.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/locale/indigitswc.h b/locale/indigitswc.h index 9d63913943..25a49ee7fb 100644 --- a/locale/indigitswc.h +++ b/locale/indigitswc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/locale/langinfo.h b/locale/langinfo.h index 7a5d40248c..a0155b50fd 100644 --- a/locale/langinfo.h +++ b/locale/langinfo.h @@ -1,5 +1,5 @@ /* Access to locale-dependent parameters. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-address.c b/locale/lc-address.c index b1873d4b64..9c78bfb4fb 100644 --- a/locale/lc-address.c +++ b/locale/lc-address.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_ADDRESS category. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-collate.c b/locale/lc-collate.c index 3aa3e2e98b..fdfb8a79b7 100644 --- a/locale/lc-collate.c +++ b/locale/lc-collate.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_COLLATE category. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-ctype.c b/locale/lc-ctype.c index e4be75a3de..2a2f48d1cd 100644 --- a/locale/lc-ctype.c +++ b/locale/lc-ctype.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_CTYPE category. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-identification.c b/locale/lc-identification.c index f16555efab..ebdfe5c4b8 100644 --- a/locale/lc-identification.c +++ b/locale/lc-identification.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_IDENTIFICATION category. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-measurement.c b/locale/lc-measurement.c index 6f64343c5c..fff215a63d 100644 --- a/locale/lc-measurement.c +++ b/locale/lc-measurement.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_MEASUREMENT category. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-messages.c b/locale/lc-messages.c index 6b6a5e6b35..de385e4b1b 100644 --- a/locale/lc-messages.c +++ b/locale/lc-messages.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_MESSAGES category. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-monetary.c b/locale/lc-monetary.c index 31ef40157f..d1eadaec90 100644 --- a/locale/lc-monetary.c +++ b/locale/lc-monetary.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_MONETARY category. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-name.c b/locale/lc-name.c index d7db7c15c9..ce3c6f737f 100644 --- a/locale/lc-name.c +++ b/locale/lc-name.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_NAME category. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-numeric.c b/locale/lc-numeric.c index fecd010db6..68a2c79bf1 100644 --- a/locale/lc-numeric.c +++ b/locale/lc-numeric.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_NUMERIC category. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-paper.c b/locale/lc-paper.c index a8a816566d..69e00f58c0 100644 --- a/locale/lc-paper.c +++ b/locale/lc-paper.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_PAPER category. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-telephone.c b/locale/lc-telephone.c index 2361fe3a9a..7db0e9b03d 100644 --- a/locale/lc-telephone.c +++ b/locale/lc-telephone.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_TELEPHONE category. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/lc-time.c b/locale/lc-time.c index 6a7627a8d7..49ffe19c63 100644 --- a/locale/lc-time.c +++ b/locale/lc-time.c @@ -1,5 +1,5 @@ /* Define current locale data for LC_TIME category. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/loadarchive.c b/locale/loadarchive.c index f723780ce1..e14535e7c0 100644 --- a/locale/loadarchive.c +++ b/locale/loadarchive.c @@ -1,5 +1,5 @@ /* Code to load locale data from the locale archive file. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/loadlocale.c b/locale/loadlocale.c index 45162f1364..f926036208 100644 --- a/locale/loadlocale.c +++ b/locale/loadlocale.c @@ -1,5 +1,5 @@ /* Functions to read locale data files. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/locale.h b/locale/locale.h index 170846fbc8..269b61cd2b 100644 --- a/locale/locale.h +++ b/locale/locale.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/localeconv.c b/locale/localeconv.c index 98e82a5cf0..3cb2e2b12b 100644 --- a/locale/localeconv.c +++ b/locale/localeconv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/localeinfo.h b/locale/localeinfo.h index 8d2c1665c2..070914dd51 100644 --- a/locale/localeinfo.h +++ b/locale/localeinfo.h @@ -1,5 +1,5 @@ /* Declarations for internal libc locale interfaces - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/localename.c b/locale/localename.c index 9a5478bc63..7e1a378171 100644 --- a/locale/localename.c +++ b/locale/localename.c @@ -1,5 +1,5 @@ /* current locale setting names - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/locarchive.h b/locale/locarchive.h index fec3b1a4f7..e00aee46ad 100644 --- a/locale/locarchive.h +++ b/locale/locarchive.h @@ -1,5 +1,5 @@ /* Definitions for locale archive handling. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/mb_cur_max.c b/locale/mb_cur_max.c index bdf1619746..2a91ac1c1d 100644 --- a/locale/mb_cur_max.c +++ b/locale/mb_cur_max.c @@ -1,6 +1,6 @@ /* Return number of characters in multibyte representation for current character set. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/newlocale.c b/locale/newlocale.c index b9a696b2bf..18fb6e2606 100644 --- a/locale/newlocale.c +++ b/locale/newlocale.c @@ -1,5 +1,5 @@ /* Return a reference to locale information record. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/nl_langinfo.c b/locale/nl_langinfo.c index cdf333c310..f30f12a254 100644 --- a/locale/nl_langinfo.c +++ b/locale/nl_langinfo.c @@ -1,5 +1,5 @@ /* User interface for extracting locale-dependent parameters. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/nl_langinfo_l.c b/locale/nl_langinfo_l.c index 294ba214b2..b9d02aa8b8 100644 --- a/locale/nl_langinfo_l.c +++ b/locale/nl_langinfo_l.c @@ -1,5 +1,5 @@ /* User interface for extracting locale-dependent parameters. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/outdigits.h b/locale/outdigits.h index 1b92ebec1b..37815f0567 100644 --- a/locale/outdigits.h +++ b/locale/outdigits.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/locale/outdigitswc.h b/locale/outdigitswc.h index f27ee8234f..b563372ee4 100644 --- a/locale/outdigitswc.h +++ b/locale/outdigitswc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/locale/programs/3level.h b/locale/programs/3level.h index c5f024fe35..c83cdf205e 100644 --- a/locale/programs/3level.h +++ b/locale/programs/3level.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2000. diff --git a/locale/programs/charmap-dir.c b/locale/programs/charmap-dir.c index 3edf72080a..1317650a10 100644 --- a/locale/programs/charmap-dir.c +++ b/locale/programs/charmap-dir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software; you can redistribute it and/or modify diff --git a/locale/programs/charmap-dir.h b/locale/programs/charmap-dir.h index 4f681062a6..b586a259f4 100644 --- a/locale/programs/charmap-dir.h +++ b/locale/programs/charmap-dir.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software; you can redistribute it and/or modify diff --git a/locale/programs/charmap-kw.gperf b/locale/programs/charmap-kw.gperf index 8e0161d92c..cfb5b7c53a 100644 --- a/locale/programs/charmap-kw.gperf +++ b/locale/programs/charmap-kw.gperf @@ -1,5 +1,5 @@ %{ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, . diff --git a/locale/programs/charmap-kw.h b/locale/programs/charmap-kw.h index fd9ff7eb9c..02ecf4ba36 100644 --- a/locale/programs/charmap-kw.h +++ b/locale/programs/charmap-kw.h @@ -30,7 +30,7 @@ #line 1 "charmap-kw.gperf" -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, . diff --git a/locale/programs/charmap.c b/locale/programs/charmap.c index 6ce9b18e2b..1fcce5c327 100644 --- a/locale/programs/charmap.c +++ b/locale/programs/charmap.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/programs/charmap.h b/locale/programs/charmap.h index 57a345dea9..1531e02369 100644 --- a/locale/programs/charmap.h +++ b/locale/programs/charmap.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/programs/config.h b/locale/programs/config.h index d3178a4741..18334182d1 100644 --- a/locale/programs/config.h +++ b/locale/programs/config.h @@ -1,5 +1,5 @@ /* Configuration for localedef program. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/programs/ld-address.c b/locale/programs/ld-address.c index 291e7b787f..643f081730 100644 --- a/locale/programs/ld-address.c +++ b/locale/programs/ld-address.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/programs/ld-collate.c b/locale/programs/ld-collate.c index f7ae09792a..037fd2fcc5 100644 --- a/locale/programs/ld-collate.c +++ b/locale/programs/ld-collate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/programs/ld-ctype.c b/locale/programs/ld-ctype.c index e7e17b86f9..505cb13c54 100644 --- a/locale/programs/ld-ctype.c +++ b/locale/programs/ld-ctype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/programs/ld-identification.c b/locale/programs/ld-identification.c index 5487aae7ce..2247b7c38f 100644 --- a/locale/programs/ld-identification.c +++ b/locale/programs/ld-identification.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/programs/ld-measurement.c b/locale/programs/ld-measurement.c index 5be54e739d..fe54b4be1c 100644 --- a/locale/programs/ld-measurement.c +++ b/locale/programs/ld-measurement.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/programs/ld-messages.c b/locale/programs/ld-messages.c index 116f3a2bb6..591ffaf5be 100644 --- a/locale/programs/ld-messages.c +++ b/locale/programs/ld-messages.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/programs/ld-monetary.c b/locale/programs/ld-monetary.c index c88275f1cc..16c8329e77 100644 --- a/locale/programs/ld-monetary.c +++ b/locale/programs/ld-monetary.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/programs/ld-name.c b/locale/programs/ld-name.c index efc541e47d..d409874753 100644 --- a/locale/programs/ld-name.c +++ b/locale/programs/ld-name.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/programs/ld-numeric.c b/locale/programs/ld-numeric.c index f759947de4..f2bd597f78 100644 --- a/locale/programs/ld-numeric.c +++ b/locale/programs/ld-numeric.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/programs/ld-paper.c b/locale/programs/ld-paper.c index 595a600543..eec92da671 100644 --- a/locale/programs/ld-paper.c +++ b/locale/programs/ld-paper.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/programs/ld-telephone.c b/locale/programs/ld-telephone.c index 3e71a36eb8..4ae241a88f 100644 --- a/locale/programs/ld-telephone.c +++ b/locale/programs/ld-telephone.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/programs/ld-time.c b/locale/programs/ld-time.c index 5956cb32cf..a40edfd474 100644 --- a/locale/programs/ld-time.c +++ b/locale/programs/ld-time.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/programs/linereader.c b/locale/programs/linereader.c index 4773d4cac4..d3eb17acc1 100644 --- a/locale/programs/linereader.c +++ b/locale/programs/linereader.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/programs/linereader.h b/locale/programs/linereader.h index 4e4fe9d874..e0b58d1a5c 100644 --- a/locale/programs/linereader.h +++ b/locale/programs/linereader.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, . diff --git a/locale/programs/locale-spec.c b/locale/programs/locale-spec.c index b0eaa55e8d..dff344633a 100644 --- a/locale/programs/locale-spec.c +++ b/locale/programs/locale-spec.c @@ -1,5 +1,5 @@ /* Handle special requests. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/programs/locale.c b/locale/programs/locale.c index d2b28d08f8..6659e6ac59 100644 --- a/locale/programs/locale.c +++ b/locale/programs/locale.c @@ -1,5 +1,5 @@ /* Implementation of the locale program according to POSIX 9945-2. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/programs/localedef.c b/locale/programs/localedef.c index d664232473..a275769b9b 100644 --- a/locale/programs/localedef.c +++ b/locale/programs/localedef.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/programs/localedef.h b/locale/programs/localedef.h index 5a05a2e382..5cdeabdcda 100644 --- a/locale/programs/localedef.h +++ b/locale/programs/localedef.h @@ -1,5 +1,5 @@ /* General definitions for localedef(1). - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/programs/locarchive.c b/locale/programs/locarchive.c index 88e1172219..cdd99602c2 100644 --- a/locale/programs/locarchive.c +++ b/locale/programs/locarchive.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/locale/programs/locfile-kw.gperf b/locale/programs/locfile-kw.gperf index f8e2babdb6..71adc10fba 100644 --- a/locale/programs/locfile-kw.gperf +++ b/locale/programs/locfile-kw.gperf @@ -1,5 +1,5 @@ %{ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/programs/locfile-kw.h b/locale/programs/locfile-kw.h index be311b329d..727df05cda 100644 --- a/locale/programs/locfile-kw.h +++ b/locale/programs/locfile-kw.h @@ -30,7 +30,7 @@ #line 1 "locfile-kw.gperf" -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/programs/locfile-token.h b/locale/programs/locfile-token.h index 1ccc169f23..d8859aebd8 100644 --- a/locale/programs/locfile-token.h +++ b/locale/programs/locfile-token.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/programs/locfile.c b/locale/programs/locfile.c index ef7adbff8d..de6b426f0c 100644 --- a/locale/programs/locfile.c +++ b/locale/programs/locfile.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/programs/locfile.h b/locale/programs/locfile.h index cb3e22fd87..b579a4626c 100644 --- a/locale/programs/locfile.h +++ b/locale/programs/locfile.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/programs/repertoire.c b/locale/programs/repertoire.c index be77b3e44e..28e4bcc15f 100644 --- a/locale/programs/repertoire.c +++ b/locale/programs/repertoire.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/programs/repertoire.h b/locale/programs/repertoire.h index d2279bed13..05d0cbc094 100644 --- a/locale/programs/repertoire.h +++ b/locale/programs/repertoire.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/locale/programs/simple-hash.c b/locale/programs/simple-hash.c index 30b1508bdb..ef371a080c 100644 --- a/locale/programs/simple-hash.c +++ b/locale/programs/simple-hash.c @@ -1,5 +1,5 @@ /* Implement simple hashing table with string based keys. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , October 1994. diff --git a/locale/programs/simple-hash.h b/locale/programs/simple-hash.h index 2ee22253e1..cd85290c0c 100644 --- a/locale/programs/simple-hash.h +++ b/locale/programs/simple-hash.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/locale/programs/xmalloc.c b/locale/programs/xmalloc.c index 2a3751ef56..361c2b49f6 100644 --- a/locale/programs/xmalloc.c +++ b/locale/programs/xmalloc.c @@ -1,5 +1,5 @@ /* xmalloc.c -- malloc with out of memory checking - Copyright (C) 1990-2013 Free Software Foundation, Inc. + Copyright (C) 1990-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software; you can redistribute it and/or modify diff --git a/locale/programs/xstrdup.c b/locale/programs/xstrdup.c index c0818aba2b..f8dc00a5d4 100644 --- a/locale/programs/xstrdup.c +++ b/locale/programs/xstrdup.c @@ -1,5 +1,5 @@ /* xstrdup.c -- copy a string with out of memory checking - Copyright (C) 1990-2013 Free Software Foundation, Inc. + Copyright (C) 1990-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software; you can redistribute it and/or modify diff --git a/locale/setlocale.c b/locale/setlocale.c index e83a156267..b70fa6cbce 100644 --- a/locale/setlocale.c +++ b/locale/setlocale.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/strlen-hash.h b/locale/strlen-hash.h index 3fa3bdff6f..b161f2d649 100644 --- a/locale/strlen-hash.h +++ b/locale/strlen-hash.h @@ -1,5 +1,5 @@ /* Implements hashing function for string with known length. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/locale/tst-C-locale.c b/locale/tst-C-locale.c index e1f750c914..afe4dc9a88 100644 --- a/locale/tst-C-locale.c +++ b/locale/tst-C-locale.c @@ -1,5 +1,5 @@ /* Tests of C and POSIX locale contents. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/locale/uselocale.c b/locale/uselocale.c index fe23342d65..b9114cdf0d 100644 --- a/locale/uselocale.c +++ b/locale/uselocale.c @@ -1,5 +1,5 @@ /* uselocale -- fetch and set the current per-thread locale - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/locale/weight.h b/locale/weight.h index b097aaca0b..9eb8ac666a 100644 --- a/locale/weight.h +++ b/locale/weight.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper, . diff --git a/locale/weightwc.h b/locale/weightwc.h index fd3b6bad9b..8f047e3ba7 100644 --- a/locale/weightwc.h +++ b/locale/weightwc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper, . diff --git a/locale/xlocale.c b/locale/xlocale.c index e76e18806a..67ee392afa 100644 --- a/locale/xlocale.c +++ b/locale/xlocale.c @@ -1,5 +1,5 @@ /* C locale object. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/locale/xlocale.h b/locale/xlocale.h index 73fe31d1a0..f58208fe6f 100644 --- a/locale/xlocale.h +++ b/locale/xlocale.h @@ -1,5 +1,5 @@ /* Definition of locale datatype. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/localedata/Makefile b/localedata/Makefile index 52c39b3f29..7d157bff42 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/localedata/collate-test.c b/localedata/collate-test.c index dfc15b0de8..e5bd84996b 100644 --- a/localedata/collate-test.c +++ b/localedata/collate-test.c @@ -1,5 +1,5 @@ /* Test collation function using real data. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/localedata/dump-ctype.c b/localedata/dump-ctype.c index f8fd14802d..bbf12f46b0 100644 --- a/localedata/dump-ctype.c +++ b/localedata/dump-ctype.c @@ -1,6 +1,6 @@ /* Dump the character classes and character maps of a locale to a bunch of individual files which can be processed with diff, sed etc. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2000. diff --git a/localedata/gen-locale.sh b/localedata/gen-locale.sh index 8d1634d246..d2fde61e32 100644 --- a/localedata/gen-locale.sh +++ b/localedata/gen-locale.sh @@ -1,6 +1,6 @@ #! /bin/sh # Generate test locale files. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/localedata/gen-unicode-ctype.c b/localedata/gen-unicode-ctype.c index 3463fa0461..0c001b299d 100644 --- a/localedata/gen-unicode-ctype.c +++ b/localedata/gen-unicode-ctype.c @@ -1,5 +1,5 @@ /* Generate a Unicode conforming LC_CTYPE category from a UnicodeData file. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2000. diff --git a/localedata/sort-test.sh b/localedata/sort-test.sh index b74ae9d17a..8a7ca89688 100644 --- a/localedata/sort-test.sh +++ b/localedata/sort-test.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test collation using xfrm-test. -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/localedata/tests/test6.c b/localedata/tests/test6.c index 65486016a3..96a12bf094 100644 --- a/localedata/tests/test6.c +++ b/localedata/tests/test6.c @@ -1,5 +1,5 @@ /* Test program for character classes and mappings. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/localedata/tst-ctype.c b/localedata/tst-ctype.c index 7a5b42fdaf..ceda891145 100644 --- a/localedata/tst-ctype.c +++ b/localedata/tst-ctype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/localedata/tst-ctype.sh b/localedata/tst-ctype.sh index 9c8c625da1..472f8dc8b0 100755 --- a/localedata/tst-ctype.sh +++ b/localedata/tst-ctype.sh @@ -1,6 +1,6 @@ #! /bin/sh # Testing the implementation of the isxxx() and toxxx() functions. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/localedata/tst-digits.c b/localedata/tst-digits.c index c5b594eb66..9b3ebcdaa1 100644 --- a/localedata/tst-digits.c +++ b/localedata/tst-digits.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/localedata/tst-fmon.c b/localedata/tst-fmon.c index c97f719406..d662539045 100644 --- a/localedata/tst-fmon.c +++ b/localedata/tst-fmon.c @@ -1,5 +1,5 @@ /* Testing the implementation of strfmon(3). - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jochen Hein , 1997. diff --git a/localedata/tst-fmon.data b/localedata/tst-fmon.data index eef1731f88..216aeac4a0 100644 --- a/localedata/tst-fmon.data +++ b/localedata/tst-fmon.data @@ -1,5 +1,5 @@ # Test data for test-strfmon, which checks it's implementation in glibc -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Jochen Hein , 1997. # diff --git a/localedata/tst-fmon.sh b/localedata/tst-fmon.sh index b3d8085521..e68aa96409 100755 --- a/localedata/tst-fmon.sh +++ b/localedata/tst-fmon.sh @@ -1,6 +1,6 @@ #! /bin/sh # Testing the implementation of strfmon(3). -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Jochen Hein , 1997. diff --git a/localedata/tst-langinfo.c b/localedata/tst-langinfo.c index a5fe3aea14..b3806ff119 100644 --- a/localedata/tst-langinfo.c +++ b/localedata/tst-langinfo.c @@ -1,5 +1,5 @@ /* Test program for nl_langinfo() function. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . diff --git a/localedata/tst-langinfo.sh b/localedata/tst-langinfo.sh index b00dc749ce..e75d22a618 100755 --- a/localedata/tst-langinfo.sh +++ b/localedata/tst-langinfo.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test nl_langinfo. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/localedata/tst-locale.sh b/localedata/tst-locale.sh index 694c952dac..b89dc095fa 100755 --- a/localedata/tst-locale.sh +++ b/localedata/tst-locale.sh @@ -1,6 +1,6 @@ #! /bin/sh # Testing the implementation of localedata. -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Andreas Jaeger, , 1998. diff --git a/localedata/tst-mbswcs.sh b/localedata/tst-mbswcs.sh index af3b3ae844..6a70fd7b62 100755 --- a/localedata/tst-mbswcs.sh +++ b/localedata/tst-mbswcs.sh @@ -1,6 +1,6 @@ #! /bin/sh # Testing the implementation of the mb*towc*() and wc*tomb*() functions. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/localedata/tst-mbswcs1.c b/localedata/tst-mbswcs1.c index eb8f5163bd..14f1372253 100644 --- a/localedata/tst-mbswcs1.c +++ b/localedata/tst-mbswcs1.c @@ -1,5 +1,5 @@ /* Test restarting behaviour of mbrtowc. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible . diff --git a/localedata/tst-mbswcs2.c b/localedata/tst-mbswcs2.c index c1448577d3..25fa9516a0 100644 --- a/localedata/tst-mbswcs2.c +++ b/localedata/tst-mbswcs2.c @@ -1,5 +1,5 @@ /* Test restarting behaviour of mbsnrtowcs. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible . diff --git a/localedata/tst-mbswcs3.c b/localedata/tst-mbswcs3.c index 3e3c475ab7..8db65c54d3 100644 --- a/localedata/tst-mbswcs3.c +++ b/localedata/tst-mbswcs3.c @@ -1,5 +1,5 @@ /* Test restarting behaviour of wcsrtombs. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible . diff --git a/localedata/tst-mbswcs4.c b/localedata/tst-mbswcs4.c index 9b121e7147..09b74179fb 100644 --- a/localedata/tst-mbswcs4.c +++ b/localedata/tst-mbswcs4.c @@ -1,5 +1,5 @@ /* Test restarting behaviour of mbsrtowcs. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/localedata/tst-mbswcs5.c b/localedata/tst-mbswcs5.c index 8776864c38..e18862c1d0 100644 --- a/localedata/tst-mbswcs5.c +++ b/localedata/tst-mbswcs5.c @@ -1,5 +1,5 @@ /* Test restarting behaviour of wcrtomb. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible . diff --git a/localedata/tst-mbswcs6.c b/localedata/tst-mbswcs6.c index d2d161de9e..98bc443660 100644 --- a/localedata/tst-mbswcs6.c +++ b/localedata/tst-mbswcs6.c @@ -1,5 +1,5 @@ /* Test for invalid input to wcrtomb. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/localedata/tst-numeric.c b/localedata/tst-numeric.c index 3e9baf9d27..f629767190 100644 --- a/localedata/tst-numeric.c +++ b/localedata/tst-numeric.c @@ -1,5 +1,5 @@ /* Testing the implementation of LC_NUMERIC and snprintf(). - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Petter Reinholdtsen , 2003 diff --git a/localedata/tst-numeric.data b/localedata/tst-numeric.data index d98dc91750..5e0aa20852 100644 --- a/localedata/tst-numeric.data +++ b/localedata/tst-numeric.data @@ -1,5 +1,5 @@ # Test data for tst-nomeric, which checks it's implementation in glibc -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Petter Reinholdtsen , 2003 # Based on code by Jochen Hein , 1997. diff --git a/localedata/tst-numeric.sh b/localedata/tst-numeric.sh index 035f3b44b5..ff797cd9fa 100644 --- a/localedata/tst-numeric.sh +++ b/localedata/tst-numeric.sh @@ -1,6 +1,6 @@ #! /bin/sh # Testing the implementation of LC_NUMERIC and snprintf(3). -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Jochen Hein , 1997. diff --git a/localedata/tst-rpmatch.c b/localedata/tst-rpmatch.c index ab03921645..e5e29ec93f 100644 --- a/localedata/tst-rpmatch.c +++ b/localedata/tst-rpmatch.c @@ -1,5 +1,5 @@ /* Test program for rpmatch function. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jochen Hein . diff --git a/localedata/tst-rpmatch.sh b/localedata/tst-rpmatch.sh index 29fb7b794d..bdb3b7c269 100755 --- a/localedata/tst-rpmatch.sh +++ b/localedata/tst-rpmatch.sh @@ -1,6 +1,6 @@ #! /bin/sh -f # -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library and contains tests for # the rpmatch(3)-implementation. # contributed by Jochen Hein diff --git a/localedata/tst-trans.c b/localedata/tst-trans.c index 5237d34e49..5e09631384 100644 --- a/localedata/tst-trans.c +++ b/localedata/tst-trans.c @@ -1,5 +1,5 @@ /* Test program for user-defined character maps. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . diff --git a/localedata/tst-trans.sh b/localedata/tst-trans.sh index 2037994cd4..e82e4f8b63 100755 --- a/localedata/tst-trans.sh +++ b/localedata/tst-trans.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test character mapping definitions. -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/localedata/tst-wctype.c b/localedata/tst-wctype.c index 5eb3469205..bd2b057b54 100644 --- a/localedata/tst-wctype.c +++ b/localedata/tst-wctype.c @@ -1,5 +1,5 @@ /* Test program for iswctype() function in ja_JP locale. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . diff --git a/localedata/tst-wctype.sh b/localedata/tst-wctype.sh index d031dab3cb..31d57bc514 100755 --- a/localedata/tst-wctype.sh +++ b/localedata/tst-wctype.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test locale-define character classes. -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/localedata/xfrm-test.c b/localedata/xfrm-test.c index 80fc1fd846..d2aba7d26e 100644 --- a/localedata/xfrm-test.c +++ b/localedata/xfrm-test.c @@ -1,5 +1,5 @@ /* Test collation function via transformation using real data. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/login/Makefile b/login/Makefile index 430c6d93d6..91947024e6 100644 --- a/login/Makefile +++ b/login/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/login/endutxent.c b/login/endutxent.c index 50e9ec5397..b19a70cb8d 100644 --- a/login/endutxent.c +++ b/login/endutxent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/login/forkpty.c b/login/forkpty.c index 180d94013c..660ba8e699 100644 --- a/login/forkpty.c +++ b/login/forkpty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/login/getlogin.c b/login/getlogin.c index d1800ee9fa..72d70e0eef 100644 --- a/login/getlogin.c +++ b/login/getlogin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/login/getlogin_r.c b/login/getlogin_r.c index ac9e14833d..4734f84147 100644 --- a/login/getlogin_r.c +++ b/login/getlogin_r.c @@ -1,5 +1,5 @@ /* Reentrant function to return the current login name. Stub version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/login/getlogin_r_chk.c b/login/getlogin_r_chk.c index 8e490858a5..ab274852f1 100644 --- a/login/getlogin_r_chk.c +++ b/login/getlogin_r_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/login/getpt.c b/login/getpt.c index 813e7acd10..bac0bfb247 100644 --- a/login/getpt.c +++ b/login/getpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/login/getutent.c b/login/getutent.c index 3d0fa58cd8..b8b984c207 100644 --- a/login/getutent.c +++ b/login/getutent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/login/getutent_r.c b/login/getutent_r.c index 5e85e9d68d..ba7e6ba644 100644 --- a/login/getutent_r.c +++ b/login/getutent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper and Paul Janzen , 1996. diff --git a/login/getutid.c b/login/getutid.c index 7504f719df..b40719b96f 100644 --- a/login/getutid.c +++ b/login/getutid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/login/getutid_r.c b/login/getutid_r.c index 0c4b263ec7..ce2d4506af 100644 --- a/login/getutid_r.c +++ b/login/getutid_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper and Paul Janzen , 1996. diff --git a/login/getutline.c b/login/getutline.c index 353b9fb737..172fbbcc44 100644 --- a/login/getutline.c +++ b/login/getutline.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/login/getutline_r.c b/login/getutline_r.c index 5dd31c5555..62c9f31f38 100644 --- a/login/getutline_r.c +++ b/login/getutline_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper and Paul Janzen , 1996. diff --git a/login/getutmp.c b/login/getutmp.c index bbbd7e3b82..bcd3437567 100644 --- a/login/getutmp.c +++ b/login/getutmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/login/getutmpx.c b/login/getutmpx.c index c53d8a9e51..1e6f2d21d1 100644 --- a/login/getutmpx.c +++ b/login/getutmpx.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/login/getutxent.c b/login/getutxent.c index 27d6b0d3cd..26d95f9203 100644 --- a/login/getutxent.c +++ b/login/getutxent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/login/getutxid.c b/login/getutxid.c index 80ab0922b7..0e3c12ba67 100644 --- a/login/getutxid.c +++ b/login/getutxid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/login/getutxline.c b/login/getutxline.c index cb1df5a28e..88687d640a 100644 --- a/login/getutxline.c +++ b/login/getutxline.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/login/grantpt.c b/login/grantpt.c index c6c69df3d4..ab5d42aa04 100644 --- a/login/grantpt.c +++ b/login/grantpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/login/login.c b/login/login.c index f8cbdd0b9b..eaa69c4135 100644 --- a/login/login.c +++ b/login/login.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/login/logout.c b/login/logout.c index 5692789f56..b7a6d78d08 100644 --- a/login/logout.c +++ b/login/logout.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/login/logwtmp.c b/login/logwtmp.c index 760f17acc4..d0fe6d182f 100644 --- a/login/logwtmp.c +++ b/login/logwtmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/login/openpty.c b/login/openpty.c index 255e59d197..c746c58c1a 100644 --- a/login/openpty.c +++ b/login/openpty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/login/programs/pt_chown.c b/login/programs/pt_chown.c index 598f5dda3b..fcaa8af7a0 100644 --- a/login/programs/pt_chown.c +++ b/login/programs/pt_chown.c @@ -1,5 +1,5 @@ /* pt_chmod - helper program for `grantpt'. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by C. Scott Ananian , 1998. diff --git a/login/programs/utmpdump.c b/login/programs/utmpdump.c index 7271b57ba9..a3a4ba36fc 100644 --- a/login/programs/utmpdump.c +++ b/login/programs/utmpdump.c @@ -1,5 +1,5 @@ /* utmpdump - dump utmp-like files. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1997. diff --git a/login/ptsname.c b/login/ptsname.c index 1a15797bd2..39b2c575d2 100644 --- a/login/ptsname.c +++ b/login/ptsname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/login/ptsname_r_chk.c b/login/ptsname_r_chk.c index 7e039acb74..932fbc45eb 100644 --- a/login/ptsname_r_chk.c +++ b/login/ptsname_r_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/login/pty.h b/login/pty.h index cd567e9817..6321c126ee 100644 --- a/login/pty.h +++ b/login/pty.h @@ -1,5 +1,5 @@ /* Functions for pseudo TTY handling. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/login/pututxline.c b/login/pututxline.c index 31acb8a42f..ac50e71445 100644 --- a/login/pututxline.c +++ b/login/pututxline.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/login/setlogin.c b/login/setlogin.c index e215c62804..09b44ddc69 100644 --- a/login/setlogin.c +++ b/login/setlogin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/login/setutxent.c b/login/setutxent.c index cad6a5491e..48b04e9ace 100644 --- a/login/setutxent.c +++ b/login/setutxent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/login/tst-utmp.c b/login/tst-utmp.c index a61b54305e..9de01fb51a 100644 --- a/login/tst-utmp.c +++ b/login/tst-utmp.c @@ -1,5 +1,5 @@ /* Tests for UTMP functions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/login/unlockpt.c b/login/unlockpt.c index 9bd11d26d3..c5f5da9b03 100644 --- a/login/unlockpt.c +++ b/login/unlockpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/login/updwtmp.c b/login/updwtmp.c index 2d8833d89b..941ee3e41e 100644 --- a/login/updwtmp.c +++ b/login/updwtmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1997. diff --git a/login/updwtmpx.c b/login/updwtmpx.c index b39cb62ef4..0b77f1f772 100644 --- a/login/updwtmpx.c +++ b/login/updwtmpx.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/login/utmp-private.h b/login/utmp-private.h index 694d18aae7..0f50645636 100644 --- a/login/utmp-private.h +++ b/login/utmp-private.h @@ -1,5 +1,5 @@ /* Internal definitions and declarations for UTMP functions. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper and Paul Janzen , 1996. diff --git a/login/utmp.h b/login/utmp.h index ff07ed096f..6f1094b2aa 100644 --- a/login/utmp.h +++ b/login/utmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/login/utmp_file.c b/login/utmp_file.c index 392a39b5e8..132ae52760 100644 --- a/login/utmp_file.c +++ b/login/utmp_file.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper and Paul Janzen , 1996. diff --git a/login/utmpname.c b/login/utmpname.c index 9cd5ad0d22..27ee869b37 100644 --- a/login/utmpname.c +++ b/login/utmpname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1997. diff --git a/login/utmpxname.c b/login/utmpxname.c index 99c347bbbe..b28e4e9a9a 100644 --- a/login/utmpxname.c +++ b/login/utmpxname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/mach/Machrules b/mach/Machrules index ac0197a9bd..8b35cf6690 100644 --- a/mach/Machrules +++ b/mach/Machrules @@ -1,5 +1,5 @@ # Rules for MiG interfaces that want to go into the C library. -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/Makefile b/mach/Makefile index 08bb3757e1..c804fa30c4 100644 --- a/mach/Makefile +++ b/mach/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/devstream.c b/mach/devstream.c index 0fc837bf87..66ad9193d5 100644 --- a/mach/devstream.c +++ b/mach/devstream.c @@ -1,6 +1,6 @@ /* stdio on a Mach device port. Translates \n to \r\n on output, echos and translates \r to \n on input. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/lock-intern.h b/mach/lock-intern.h index 0a5df7aa09..b85ed73675 100644 --- a/mach/lock-intern.h +++ b/mach/lock-intern.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/mach.h b/mach/mach.h index cf92171ec3..066762aa9d 100644 --- a/mach/mach.h +++ b/mach/mach.h @@ -1,5 +1,5 @@ /* Standard header for all Mach programs. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/mach/mach_traps.h b/mach/mach/mach_traps.h index 8dbda6a256..1c0bdf2278 100644 --- a/mach/mach/mach_traps.h +++ b/mach/mach/mach_traps.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/mach/mig_support.h b/mach/mach/mig_support.h index d73eafc9c3..cc31f07e6b 100644 --- a/mach/mach/mig_support.h +++ b/mach/mach/mig_support.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/mach_init.c b/mach/mach_init.c index e1ec8eac14..0aa8155572 100644 --- a/mach/mach_init.c +++ b/mach/mach_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/mach_init.h b/mach/mach_init.h index 98540333ba..d7ca27f1b7 100644 --- a/mach/mach_init.h +++ b/mach/mach_init.h @@ -1,5 +1,5 @@ /* Declarations and macros for the basic Mach things set at startup. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/mig-alloc.c b/mach/mig-alloc.c index 7920345e4b..383e0d01ea 100644 --- a/mach/mig-alloc.c +++ b/mach/mig-alloc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/mig-dealloc.c b/mach/mig-dealloc.c index 1a3f74e6e1..0c658070f4 100644 --- a/mach/mig-dealloc.c +++ b/mach/mig-dealloc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/mig-reply.c b/mach/mig-reply.c index c2898ece3e..871aa33dfe 100644 --- a/mach/mig-reply.c +++ b/mach/mig-reply.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/msgserver.c b/mach/msgserver.c index a77377b6d9..711800a10b 100644 --- a/mach/msgserver.c +++ b/mach/msgserver.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/mutex-init.c b/mach/mutex-init.c index d5010334ca..fc3a5e5c3d 100644 --- a/mach/mutex-init.c +++ b/mach/mutex-init.c @@ -1,5 +1,5 @@ /* Initialize a cthreads mutex structure. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/mutex-solid.c b/mach/mutex-solid.c index 61a09ef977..70e8333944 100644 --- a/mach/mutex-solid.c +++ b/mach/mutex-solid.c @@ -1,5 +1,5 @@ /* Stub versions of mutex_lock_solid/mutex_unlock_solid for no -lthreads. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/setup-thread.c b/mach/setup-thread.c index e1582d1937..5f2051efcc 100644 --- a/mach/setup-thread.c +++ b/mach/setup-thread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/spin-lock.h b/mach/spin-lock.h index 6fb07c5084..fc21b1e984 100644 --- a/mach/spin-lock.h +++ b/mach/spin-lock.h @@ -1,5 +1,5 @@ /* Definitions of user-visible names for spin locks. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/mach/spin-solid.c b/mach/spin-solid.c index 9a3326bda5..e1e154bdd6 100644 --- a/mach/spin-solid.c +++ b/mach/spin-solid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/Makefile b/malloc/Makefile index 0c1e19f65c..5db93dbf06 100644 --- a/malloc/Makefile +++ b/malloc/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/arena.c b/malloc/arena.c index 9d49f93265..5beb13d98b 100644 --- a/malloc/arena.c +++ b/malloc/arena.c @@ -1,5 +1,5 @@ /* Malloc implementation for multiple threads without lock contention. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Wolfram Gloger , 2001. diff --git a/malloc/hooks.c b/malloc/hooks.c index 7010fe66f8..1b80a74e28 100644 --- a/malloc/hooks.c +++ b/malloc/hooks.c @@ -1,5 +1,5 @@ /* Malloc implementation for multiple threads without lock contention. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Wolfram Gloger , 2001. diff --git a/malloc/malloc.c b/malloc/malloc.c index 5e419adac4..63d1d152ab 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -1,5 +1,5 @@ /* Malloc implementation for multiple threads without lock contention. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Wolfram Gloger and Doug Lea , 2001. diff --git a/malloc/malloc.h b/malloc/malloc.h index b8b0ca34ca..294cae4788 100644 --- a/malloc/malloc.h +++ b/malloc/malloc.h @@ -1,5 +1,5 @@ /* Prototypes and definition for malloc implementation. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/mcheck-init.c b/malloc/mcheck-init.c index bbc14da710..4ffd3975d7 100644 --- a/malloc/mcheck-init.c +++ b/malloc/mcheck-init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/mcheck.c b/malloc/mcheck.c index 2e5eadd80a..87f8acdc45 100644 --- a/malloc/mcheck.c +++ b/malloc/mcheck.c @@ -1,5 +1,5 @@ /* Standard debugging hooks for `malloc'. - Copyright (C) 1990-2013 Free Software Foundation, Inc. + Copyright (C) 1990-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written May 1989 by Mike Haertel. diff --git a/malloc/mcheck.h b/malloc/mcheck.h index 204ca33389..583ae245d9 100644 --- a/malloc/mcheck.h +++ b/malloc/mcheck.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/memusage.c b/malloc/memusage.c index e32f6ba030..6b636ac68a 100644 --- a/malloc/memusage.c +++ b/malloc/memusage.c @@ -1,5 +1,5 @@ /* Profile heap and stack memory usage of running program. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/malloc/memusage.sh b/malloc/memusage.sh index f65bda4345..66cfbb2685 100755 --- a/malloc/memusage.sh +++ b/malloc/memusage.sh @@ -1,5 +1,5 @@ #! @BASH@ -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 1999. diff --git a/malloc/memusagestat.c b/malloc/memusagestat.c index b244ef6432..e9939080c3 100644 --- a/malloc/memusagestat.c +++ b/malloc/memusagestat.c @@ -1,5 +1,5 @@ /* Generate graphic from memory profiling data. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/malloc/morecore.c b/malloc/morecore.c index 0a644c36ad..463cf28eff 100644 --- a/malloc/morecore.c +++ b/malloc/morecore.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/mtrace.c b/malloc/mtrace.c index ee941333a8..a33399a42a 100644 --- a/malloc/mtrace.c +++ b/malloc/mtrace.c @@ -1,5 +1,5 @@ /* More debugging hooks for `malloc'. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written April 2, 1991 by John Gilmore of Cygnus Support. Based on mcheck.c by Mike Haertel. diff --git a/malloc/mtrace.pl b/malloc/mtrace.pl index e80ac1d59f..1235b728d0 100644 --- a/malloc/mtrace.pl +++ b/malloc/mtrace.pl @@ -1,7 +1,7 @@ #! @PERL@ eval "exec @PERL@ -S $0 $@" if 0; -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 1997. # Based on the mtrace.awk script. diff --git a/malloc/obstack.c b/malloc/obstack.c index 69320ca143..90e1634f27 100644 --- a/malloc/obstack.c +++ b/malloc/obstack.c @@ -1,5 +1,5 @@ /* obstack.c - subroutines used implicitly by object stack macros - Copyright (C) 1988-2013 Free Software Foundation, Inc. + Copyright (C) 1988-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/obstack.h b/malloc/obstack.h index e786d1fef0..3bc78879d9 100644 --- a/malloc/obstack.h +++ b/malloc/obstack.h @@ -1,5 +1,5 @@ /* obstack.h - object stack macros - Copyright (C) 1988-2013 Free Software Foundation, Inc. + Copyright (C) 1988-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/set-freeres.c b/malloc/set-freeres.c index e7ffbe0894..6c9a941f1c 100644 --- a/malloc/set-freeres.c +++ b/malloc/set-freeres.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/thread-freeres.c b/malloc/thread-freeres.c index 6cf6a26f2b..589ea3ac78 100644 --- a/malloc/thread-freeres.c +++ b/malloc/thread-freeres.c @@ -1,5 +1,5 @@ /* Free resources stored in thread-local variables on thread exit. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/tst-calloc.c b/malloc/tst-calloc.c index 7dd9f126f4..51e6c25ebf 100644 --- a/malloc/tst-calloc.c +++ b/malloc/tst-calloc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . diff --git a/malloc/tst-malloc-usable.c b/malloc/tst-malloc-usable.c index 49a8dabc2d..ce45e556cc 100644 --- a/malloc/tst-malloc-usable.c +++ b/malloc/tst-malloc-usable.c @@ -1,7 +1,7 @@ /* Ensure that malloc_usable_size returns the request size with MALLOC_CHECK_ exported to a positive value. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/tst-malloc.c b/malloc/tst-malloc.c index 518c8e5a1c..a75ab1e3aa 100644 --- a/malloc/tst-malloc.c +++ b/malloc/tst-malloc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/malloc/tst-mallocstate.c b/malloc/tst-mallocstate.c index 8548dad653..2b7c59b48d 100644 --- a/malloc/tst-mallocstate.c +++ b/malloc/tst-mallocstate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Wolfram Gloger , 2001. diff --git a/malloc/tst-mcheck.c b/malloc/tst-mcheck.c index fce2e3937a..478ca8cd24 100644 --- a/malloc/tst-mcheck.c +++ b/malloc/tst-mcheck.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2005. diff --git a/malloc/tst-memalign.c b/malloc/tst-memalign.c index cf48e7ed1f..340199818d 100644 --- a/malloc/tst-memalign.c +++ b/malloc/tst-memalign.c @@ -1,5 +1,5 @@ /* Test for memalign. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/tst-mtrace.c b/malloc/tst-mtrace.c index 93d560d59e..e750bc8967 100644 --- a/malloc/tst-mtrace.c +++ b/malloc/tst-mtrace.c @@ -1,5 +1,5 @@ /* Test program for mtrace. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/tst-mtrace.sh b/malloc/tst-mtrace.sh index a86ecf03b1..abd425ddf3 100755 --- a/malloc/tst-mtrace.sh +++ b/malloc/tst-mtrace.sh @@ -1,6 +1,6 @@ #! /bin/sh # Testing the mtrace function. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/tst-posix_memalign.c b/malloc/tst-posix_memalign.c index 7f34e37bd2..7c33a7e291 100644 --- a/malloc/tst-posix_memalign.c +++ b/malloc/tst-posix_memalign.c @@ -1,5 +1,5 @@ /* Test for posix_memalign. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/tst-pvalloc.c b/malloc/tst-pvalloc.c index 1c81294926..e3a34b3791 100644 --- a/malloc/tst-pvalloc.c +++ b/malloc/tst-pvalloc.c @@ -1,5 +1,5 @@ /* Test for pvalloc. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/tst-realloc.c b/malloc/tst-realloc.c index 9d290d24c0..458f16fe46 100644 --- a/malloc/tst-realloc.c +++ b/malloc/tst-realloc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/malloc/tst-valloc.c b/malloc/tst-valloc.c index 4fd0dbb964..09eaa0a26d 100644 --- a/malloc/tst-valloc.c +++ b/malloc/tst-valloc.c @@ -1,5 +1,5 @@ /* Test for valloc. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/manual/Makefile b/manual/Makefile index 7bb419aea4..3037303a71 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1992-2013 Free Software Foundation, Inc. +# Copyright (C) 1992-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/manual/examples/add.c b/manual/examples/add.c index b9667a9c20..99ec53c0e9 100644 --- a/manual/examples/add.c +++ b/manual/examples/add.c @@ -1,5 +1,5 @@ /* Example of a Variadic Function - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/argp-ex1.c b/manual/examples/argp-ex1.c index efeba2d15f..12c16462f6 100644 --- a/manual/examples/argp-ex1.c +++ b/manual/examples/argp-ex1.c @@ -1,5 +1,5 @@ /* Argp example #1 -- a minimal program using argp - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/argp-ex2.c b/manual/examples/argp-ex2.c index f8f38646ac..6f77638e59 100644 --- a/manual/examples/argp-ex2.c +++ b/manual/examples/argp-ex2.c @@ -1,5 +1,5 @@ /* Argp example #2 -- a pretty minimal program using argp - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/argp-ex3.c b/manual/examples/argp-ex3.c index 6b60d465e7..f7764eabfa 100644 --- a/manual/examples/argp-ex3.c +++ b/manual/examples/argp-ex3.c @@ -1,5 +1,5 @@ /* Argp example #3 -- a program with options and arguments using argp - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/argp-ex4.c b/manual/examples/argp-ex4.c index f5fd683703..bbddc74292 100644 --- a/manual/examples/argp-ex4.c +++ b/manual/examples/argp-ex4.c @@ -1,5 +1,5 @@ /* Argp example #4 -- a program with somewhat more complicated options - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/atexit.c b/manual/examples/atexit.c index 9684f137f2..857901f259 100644 --- a/manual/examples/atexit.c +++ b/manual/examples/atexit.c @@ -1,5 +1,5 @@ /* Cleanups on Exit - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/db.c b/manual/examples/db.c index 75514b1125..a8ee9004af 100644 --- a/manual/examples/db.c +++ b/manual/examples/db.c @@ -1,5 +1,5 @@ /* User and Group Database Example - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/dir.c b/manual/examples/dir.c index 7ebb1c4b0b..61ce05acd9 100644 --- a/manual/examples/dir.c +++ b/manual/examples/dir.c @@ -1,5 +1,5 @@ /* Simple Program to List a Directory - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/dir2.c b/manual/examples/dir2.c index ac746d4b7b..22110ac62a 100644 --- a/manual/examples/dir2.c +++ b/manual/examples/dir2.c @@ -1,5 +1,5 @@ /* Simple Program to List a Directory, Mark II - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/execinfo.c b/manual/examples/execinfo.c index 40a996e591..f728373c04 100644 --- a/manual/examples/execinfo.c +++ b/manual/examples/execinfo.c @@ -1,5 +1,5 @@ /* Obtain a backtrace and print it. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/filecli.c b/manual/examples/filecli.c index 65a5a91a99..552a9109bb 100644 --- a/manual/examples/filecli.c +++ b/manual/examples/filecli.c @@ -1,5 +1,5 @@ /* Example of Reading Datagrams - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/filesrv.c b/manual/examples/filesrv.c index bcc7a2081a..36b59a0f6f 100644 --- a/manual/examples/filesrv.c +++ b/manual/examples/filesrv.c @@ -1,5 +1,5 @@ /* Datagram Socket Example - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/fmtmsgexpl.c b/manual/examples/fmtmsgexpl.c index da24f74d94..14e9bcf6fe 100644 --- a/manual/examples/fmtmsgexpl.c +++ b/manual/examples/fmtmsgexpl.c @@ -1,5 +1,5 @@ /* How to use fmtmsg and addseverity. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/genpass.c b/manual/examples/genpass.c index 5510fa8e23..79f9d0d2c4 100644 --- a/manual/examples/genpass.c +++ b/manual/examples/genpass.c @@ -1,5 +1,5 @@ /* Encrypting Passwords - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/inetcli.c b/manual/examples/inetcli.c index 77daf553e4..d65b8b58fa 100644 --- a/manual/examples/inetcli.c +++ b/manual/examples/inetcli.c @@ -1,5 +1,5 @@ /* Byte Stream Socket Example - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/inetsrv.c b/manual/examples/inetsrv.c index 57d5e4301c..f6589ec5d2 100644 --- a/manual/examples/inetsrv.c +++ b/manual/examples/inetsrv.c @@ -1,5 +1,5 @@ /* Byte Stream Connection Server Example - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/isockad.c b/manual/examples/isockad.c index 482da89fe8..3f447dcf42 100644 --- a/manual/examples/isockad.c +++ b/manual/examples/isockad.c @@ -1,5 +1,5 @@ /* Internet Socket Example using sockaddr_in. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/longopt.c b/manual/examples/longopt.c index 312c766ad5..bfd03e3da2 100644 --- a/manual/examples/longopt.c +++ b/manual/examples/longopt.c @@ -1,5 +1,5 @@ /* Example of Parsing Long Options with getopt_long. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/memopen.c b/manual/examples/memopen.c index df833b8266..a17c99cd7f 100644 --- a/manual/examples/memopen.c +++ b/manual/examples/memopen.c @@ -1,5 +1,5 @@ /* String Streams - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/memstrm.c b/manual/examples/memstrm.c index 95f0fc4935..2d19a7e247 100644 --- a/manual/examples/memstrm.c +++ b/manual/examples/memstrm.c @@ -1,5 +1,5 @@ /* open_memstream example. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/mkfsock.c b/manual/examples/mkfsock.c index 1a2b7f19fb..2a213171ae 100644 --- a/manual/examples/mkfsock.c +++ b/manual/examples/mkfsock.c @@ -1,5 +1,5 @@ /* Example of Local-Namespace Sockets - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/mkisock.c b/manual/examples/mkisock.c index b5e8cff6b7..2ed0736658 100644 --- a/manual/examples/mkisock.c +++ b/manual/examples/mkisock.c @@ -1,5 +1,5 @@ /* Internet Socket Example - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/mygetpass.c b/manual/examples/mygetpass.c index 00d743f97e..a78ae080a0 100644 --- a/manual/examples/mygetpass.c +++ b/manual/examples/mygetpass.c @@ -1,5 +1,5 @@ /* Reading Passwords - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/pipe.c b/manual/examples/pipe.c index 9c1cc11ef7..16c429e825 100644 --- a/manual/examples/pipe.c +++ b/manual/examples/pipe.c @@ -1,5 +1,5 @@ /* Creating a Pipe - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/popen.c b/manual/examples/popen.c index b3ca8749a9..a53c9fd535 100644 --- a/manual/examples/popen.c +++ b/manual/examples/popen.c @@ -1,5 +1,5 @@ /* Pipe to a Subprocess - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/rprintf.c b/manual/examples/rprintf.c index f3c69a8c06..57503c57d6 100644 --- a/manual/examples/rprintf.c +++ b/manual/examples/rprintf.c @@ -1,5 +1,5 @@ /* Printf Extension Example - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/search.c b/manual/examples/search.c index 5f5529a6e4..31e9d0a1de 100644 --- a/manual/examples/search.c +++ b/manual/examples/search.c @@ -1,5 +1,5 @@ /* Searching and Sorting Example - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/select.c b/manual/examples/select.c index 866b3a7b0a..f881424e04 100644 --- a/manual/examples/select.c +++ b/manual/examples/select.c @@ -1,5 +1,5 @@ /* Waiting for Input or Output - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/setjmp.c b/manual/examples/setjmp.c index 09e867f271..8c3df4ddd3 100644 --- a/manual/examples/setjmp.c +++ b/manual/examples/setjmp.c @@ -1,5 +1,5 @@ /* Introduction to Non-Local Exits - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/sigh1.c b/manual/examples/sigh1.c index 70104e275c..627651a4c3 100644 --- a/manual/examples/sigh1.c +++ b/manual/examples/sigh1.c @@ -1,5 +1,5 @@ /* Signal Handlers that Return - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/sigusr.c b/manual/examples/sigusr.c index acc7237fc3..5a1a405eb7 100644 --- a/manual/examples/sigusr.c +++ b/manual/examples/sigusr.c @@ -1,5 +1,5 @@ /* Using kill for Communication - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/stpcpy.c b/manual/examples/stpcpy.c index b9353d652e..b9a11e1389 100644 --- a/manual/examples/stpcpy.c +++ b/manual/examples/stpcpy.c @@ -1,5 +1,5 @@ /* stpcpy example. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/strdupa.c b/manual/examples/strdupa.c index 9485e4c224..26af22179c 100644 --- a/manual/examples/strdupa.c +++ b/manual/examples/strdupa.c @@ -1,5 +1,5 @@ /* strdupa example. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/strftim.c b/manual/examples/strftim.c index 84adb7c9fb..5f798401e8 100644 --- a/manual/examples/strftim.c +++ b/manual/examples/strftim.c @@ -1,5 +1,5 @@ /* Time Functions Example - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/strncat.c b/manual/examples/strncat.c index e6b05d780b..f2983c70af 100644 --- a/manual/examples/strncat.c +++ b/manual/examples/strncat.c @@ -1,5 +1,5 @@ /* strncat example. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/subopt.c b/manual/examples/subopt.c index 0f3518c8fa..be6bf98f7b 100644 --- a/manual/examples/subopt.c +++ b/manual/examples/subopt.c @@ -1,5 +1,5 @@ /* Parsing of Suboptions Example - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/swapcontext.c b/manual/examples/swapcontext.c index 52a4fae0f6..952987b8f1 100644 --- a/manual/examples/swapcontext.c +++ b/manual/examples/swapcontext.c @@ -1,5 +1,5 @@ /* Complete Context Control - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/termios.c b/manual/examples/termios.c index c5710be333..05636c23cd 100644 --- a/manual/examples/termios.c +++ b/manual/examples/termios.c @@ -1,5 +1,5 @@ /* Noncanonical Mode Example - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/testopt.c b/manual/examples/testopt.c index 6e16bcca58..7c65f510fb 100644 --- a/manual/examples/testopt.c +++ b/manual/examples/testopt.c @@ -1,5 +1,5 @@ /* Example of Parsing Arguments with getopt. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/testpass.c b/manual/examples/testpass.c index 3339ffab99..2e0bca52e9 100644 --- a/manual/examples/testpass.c +++ b/manual/examples/testpass.c @@ -1,5 +1,5 @@ /* Verify a password. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/examples/timeval_subtract.c b/manual/examples/timeval_subtract.c index f52bbf8d1f..232d4b199c 100644 --- a/manual/examples/timeval_subtract.c +++ b/manual/examples/timeval_subtract.c @@ -1,5 +1,5 @@ /* struct timeval subtraction. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/manual/libm-err-tab.pl b/manual/libm-err-tab.pl index 7c213fd2dc..7ac9af2e0e 100755 --- a/manual/libm-err-tab.pl +++ b/manual/libm-err-tab.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Andreas Jaeger , 1999. diff --git a/manual/summary.awk b/manual/summary.awk index 5ebced62a7..f13140995e 100644 --- a/manual/summary.awk +++ b/manual/summary.awk @@ -1,5 +1,5 @@ # awk script to create summary.texinfo from the library texinfo files. -# Copyright (C) 1992-2013 Free Software Foundation, Inc. +# Copyright (C) 1992-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/manual/tsort.awk b/manual/tsort.awk index c7f7456bc7..16c0a1e302 100644 --- a/manual/tsort.awk +++ b/manual/tsort.awk @@ -1,6 +1,6 @@ #! /usr/bin/awk -f # Generate topologically sorted list of manual chapters. -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # Written by Ulrich Drepper , 1998. BEGIN { diff --git a/math/Makefile b/math/Makefile index d178789fb5..cc27935acd 100644 --- a/math/Makefile +++ b/math/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/math/atest-exp.c b/math/atest-exp.c index d76b9125ca..3a538b251d 100644 --- a/math/atest-exp.c +++ b/math/atest-exp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating , 1997. diff --git a/math/atest-exp2.c b/math/atest-exp2.c index 0a0cc54cb8..3442715366 100644 --- a/math/atest-exp2.c +++ b/math/atest-exp2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating , 1997. diff --git a/math/atest-sincos.c b/math/atest-sincos.c index 313bccb884..5ad59b224d 100644 --- a/math/atest-sincos.c +++ b/math/atest-sincos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating , 1997. diff --git a/math/auto-libm-test-in b/math/auto-libm-test-in index c6cc3e35d3..c09089bc5d 100644 --- a/math/auto-libm-test-in +++ b/math/auto-libm-test-in @@ -1,5 +1,5 @@ # libm test inputs for gen-auto-libm-tests.c. -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # # The GNU C Library is free software; you can redistribute it and/or diff --git a/math/basic-test.c b/math/basic-test.c index 44145a75f6..77f1093f31 100644 --- a/math/basic-test.c +++ b/math/basic-test.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/math/bits/cmathcalls.h b/math/bits/cmathcalls.h index 235b0e8d03..25351b3fab 100644 --- a/math/bits/cmathcalls.h +++ b/math/bits/cmathcalls.h @@ -1,6 +1,6 @@ /* Prototype declarations for complex math functions; helper file for . - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/bits/math-finite.h b/math/bits/math-finite.h index 6888462e2f..e9a2b12d45 100644 --- a/math/bits/math-finite.h +++ b/math/bits/math-finite.h @@ -1,5 +1,5 @@ /* Entry points to finite-math-only compiler runs. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h index 870c54c529..4cb39e85f9 100644 --- a/math/bits/mathcalls.h +++ b/math/bits/mathcalls.h @@ -1,5 +1,5 @@ /* Prototype declarations for math functions; helper file for . - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/cabs.c b/math/cabs.c index aee483ab71..9ffe96ef7f 100644 --- a/math/cabs.c +++ b/math/cabs.c @@ -1,5 +1,5 @@ /* Return the complex absolute value of double complex value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/cabsf.c b/math/cabsf.c index 009ed78ad3..86647c44c8 100644 --- a/math/cabsf.c +++ b/math/cabsf.c @@ -1,5 +1,5 @@ /* Return the complex absolute value of float complex value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/cabsl.c b/math/cabsl.c index 631332778d..29cfcaced2 100644 --- a/math/cabsl.c +++ b/math/cabsl.c @@ -1,5 +1,5 @@ /* Return the complex absolute value of long double complex value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/carg.c b/math/carg.c index 5f2ac89cec..5f2fae2c42 100644 --- a/math/carg.c +++ b/math/carg.c @@ -1,5 +1,5 @@ /* Compute argument of complex double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/cargf.c b/math/cargf.c index 39d4b8bb9b..798cf9c045 100644 --- a/math/cargf.c +++ b/math/cargf.c @@ -1,5 +1,5 @@ /* Compute argument of complex float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/cargl.c b/math/cargl.c index 9fb06ef820..119f9aad91 100644 --- a/math/cargl.c +++ b/math/cargl.c @@ -1,5 +1,5 @@ /* Compute argument of complex long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/cimag.c b/math/cimag.c index 0c571cd425..23029107dd 100644 --- a/math/cimag.c +++ b/math/cimag.c @@ -1,5 +1,5 @@ /* Return imaginary part of complex double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/cimagf.c b/math/cimagf.c index e5252be41c..1913f13b56 100644 --- a/math/cimagf.c +++ b/math/cimagf.c @@ -1,5 +1,5 @@ /* Return imaginary part of complex float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/cimagl.c b/math/cimagl.c index ed465951cb..89b3194497 100644 --- a/math/cimagl.c +++ b/math/cimagl.c @@ -1,5 +1,5 @@ /* Return imaginary part of complex long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/complex.h b/math/complex.h index 82c7962feb..7ad247df14 100644 --- a/math/complex.h +++ b/math/complex.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/conj.c b/math/conj.c index 986a7b48a5..8394246d9f 100644 --- a/math/conj.c +++ b/math/conj.c @@ -1,5 +1,5 @@ /* Return complex conjugate of complex double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/conjf.c b/math/conjf.c index a1248b6bd8..1396c9a53e 100644 --- a/math/conjf.c +++ b/math/conjf.c @@ -1,5 +1,5 @@ /* Return complex conjugate of complex float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/conjl.c b/math/conjl.c index 2e73fb9669..4b42329126 100644 --- a/math/conjl.c +++ b/math/conjl.c @@ -1,5 +1,5 @@ /* Return complex conjugate of complex long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/creal.c b/math/creal.c index 57867f5561..81d862e75f 100644 --- a/math/creal.c +++ b/math/creal.c @@ -1,5 +1,5 @@ /* Return real part of complex double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/crealf.c b/math/crealf.c index c23e384649..f2f94b1146 100644 --- a/math/crealf.c +++ b/math/crealf.c @@ -1,5 +1,5 @@ /* Return real part of complex float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/creall.c b/math/creall.c index 81ed8488d3..ec83fb0e01 100644 --- a/math/creall.c +++ b/math/creall.c @@ -1,5 +1,5 @@ /* Return real part of complex long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/divtc3.c b/math/divtc3.c index 2855ab6985..48309e42dc 100644 --- a/math/divtc3.c +++ b/math/divtc3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 2005. diff --git a/math/e_exp10.c b/math/e_exp10.c index e980531d24..5197d491d5 100644 --- a/math/e_exp10.c +++ b/math/e_exp10.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/math/e_exp10f.c b/math/e_exp10f.c index 079d2d7842..b013a859be 100644 --- a/math/e_exp10f.c +++ b/math/e_exp10f.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/math/e_exp10l.c b/math/e_exp10l.c index 31c3ea8b28..1f5227a4f6 100644 --- a/math/e_exp10l.c +++ b/math/e_exp10l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/math/e_exp2l.c b/math/e_exp2l.c index ac8ff3d7ef..0bea7726af 100644 --- a/math/e_exp2l.c +++ b/math/e_exp2l.c @@ -1,5 +1,5 @@ /* Compute 2^x. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/e_scalb.c b/math/e_scalb.c index 5b9e1f4990..487f4413c2 100644 --- a/math/e_scalb.c +++ b/math/e_scalb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/e_scalbf.c b/math/e_scalbf.c index bcb0b4c6dd..68e6c5fcce 100644 --- a/math/e_scalbf.c +++ b/math/e_scalbf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/e_scalbl.c b/math/e_scalbl.c index 123ab302c2..256e7b131f 100644 --- a/math/e_scalbl.c +++ b/math/e_scalbl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/fclrexcpt.c b/math/fclrexcpt.c index a68c9ef1fb..9e1b9aa6d8 100644 --- a/math/fclrexcpt.c +++ b/math/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/fedisblxcpt.c b/math/fedisblxcpt.c index 9b8374adeb..bc2c795d13 100644 --- a/math/fedisblxcpt.c +++ b/math/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/math/feenablxcpt.c b/math/feenablxcpt.c index e57d4e3c15..06cc42649f 100644 --- a/math/feenablxcpt.c +++ b/math/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/math/fegetenv.c b/math/fegetenv.c index 29229dc22a..c031488b2f 100644 --- a/math/fegetenv.c +++ b/math/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/fegetexcept.c b/math/fegetexcept.c index 9075160ee0..aa2bcc307a 100644 --- a/math/fegetexcept.c +++ b/math/fegetexcept.c @@ -1,5 +1,5 @@ /* Get floating-point exceptions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/math/fegetround.c b/math/fegetround.c index 140e698480..af2343980f 100644 --- a/math/fegetround.c +++ b/math/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/feholdexcpt.c b/math/feholdexcpt.c index c830afbe6e..2c4d1e5c93 100644 --- a/math/feholdexcpt.c +++ b/math/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/fenv.h b/math/fenv.h index f8f3d6a026..1171199a23 100644 --- a/math/fenv.h +++ b/math/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/fesetenv.c b/math/fesetenv.c index 736195818d..acfe5f4889 100644 --- a/math/fesetenv.c +++ b/math/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/fesetround.c b/math/fesetround.c index 1895a20f18..0c6dfc401f 100644 --- a/math/fesetround.c +++ b/math/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/feupdateenv.c b/math/feupdateenv.c index 5a39521eed..13d819e479 100644 --- a/math/feupdateenv.c +++ b/math/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/fgetexcptflg.c b/math/fgetexcptflg.c index 764be42e6b..04abef2ecf 100644 --- a/math/fgetexcptflg.c +++ b/math/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/fpu_control.c b/math/fpu_control.c index 9fa99a8dfd..c059a93879 100644 --- a/math/fpu_control.c +++ b/math/fpu_control.c @@ -1,5 +1,5 @@ /* Default FPU control word initialization. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/fraiseexcpt.c b/math/fraiseexcpt.c index 61a673571c..8809af997d 100644 --- a/math/fraiseexcpt.c +++ b/math/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/fsetexcptflg.c b/math/fsetexcptflg.c index 7d1a2afb93..884a908ad7 100644 --- a/math/fsetexcptflg.c +++ b/math/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/ftestexcept.c b/math/ftestexcept.c index 1b7147055f..0bb3fa6d71 100644 --- a/math/ftestexcept.c +++ b/math/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/gen-auto-libm-tests.c b/math/gen-auto-libm-tests.c index e8a5393fa9..2f521d5c83 100644 --- a/math/gen-auto-libm-tests.c +++ b/math/gen-auto-libm-tests.c @@ -1,5 +1,5 @@ /* Generate expected output for libm tests with MPFR and MPC. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/gen-libm-test.pl b/math/gen-libm-test.pl index 29522a3a25..d5fb278d41 100755 --- a/math/gen-libm-test.pl +++ b/math/gen-libm-test.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Andreas Jaeger , 1999. diff --git a/math/k_casinh.c b/math/k_casinh.c index 145eb10110..c43329448f 100644 --- a/math/k_casinh.c +++ b/math/k_casinh.c @@ -1,7 +1,7 @@ /* Return arc hyperbole sine for double value, with the imaginary part of the result possibly adjusted for use in computing other functions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/k_casinhf.c b/math/k_casinhf.c index 56565e25e2..a7fed14374 100644 --- a/math/k_casinhf.c +++ b/math/k_casinhf.c @@ -1,7 +1,7 @@ /* Return arc hyperbole sine for float value, with the imaginary part of the result possibly adjusted for use in computing other functions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/k_casinhl.c b/math/k_casinhl.c index b5f94006f7..8ccbf564e8 100644 --- a/math/k_casinhl.c +++ b/math/k_casinhl.c @@ -1,7 +1,7 @@ /* Return arc hyperbole sine for long double value, with the imaginary part of the result possibly adjusted for use in computing other functions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/libm-test.inc b/math/libm-test.inc index e341f236ab..027dfb964e 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1997. diff --git a/math/math.h b/math/math.h index e3adf096ad..4cdbd08bf8 100644 --- a/math/math.h +++ b/math/math.h @@ -1,5 +1,5 @@ /* Declarations for math functions. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/multc3.c b/math/multc3.c index c1965baddd..15fb26e87b 100644 --- a/math/multc3.c +++ b/math/multc3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 2005. diff --git a/math/s_cacos.c b/math/s_cacos.c index acd9b2462a..d0aaba4e6a 100644 --- a/math/s_cacos.c +++ b/math/s_cacos.c @@ -1,5 +1,5 @@ /* Return cosine of complex double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cacosf.c b/math/s_cacosf.c index df2bf218a3..9eaeeec53d 100644 --- a/math/s_cacosf.c +++ b/math/s_cacosf.c @@ -1,5 +1,5 @@ /* Return cosine of complex float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cacosh.c b/math/s_cacosh.c index 1e502fa913..d9406d7962 100644 --- a/math/s_cacosh.c +++ b/math/s_cacosh.c @@ -1,5 +1,5 @@ /* Return arc hyperbole cosine for double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cacoshf.c b/math/s_cacoshf.c index 1e692f139e..a839a2401a 100644 --- a/math/s_cacoshf.c +++ b/math/s_cacoshf.c @@ -1,5 +1,5 @@ /* Return arc hyperbole cosine for float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cacoshl.c b/math/s_cacoshl.c index c110fabe3b..c97c6af7b2 100644 --- a/math/s_cacoshl.c +++ b/math/s_cacoshl.c @@ -1,5 +1,5 @@ /* Return arc hyperbole cosine for long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cacosl.c b/math/s_cacosl.c index 8eab1f0004..b9d34930d6 100644 --- a/math/s_cacosl.c +++ b/math/s_cacosl.c @@ -1,5 +1,5 @@ /* Return cosine of complex long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_casin.c b/math/s_casin.c index eade6cd021..edef3ac4e9 100644 --- a/math/s_casin.c +++ b/math/s_casin.c @@ -1,5 +1,5 @@ /* Return arc sine of complex double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_casinf.c b/math/s_casinf.c index 93c894ee66..676a838c3a 100644 --- a/math/s_casinf.c +++ b/math/s_casinf.c @@ -1,5 +1,5 @@ /* Return arc sine of complex float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_casinh.c b/math/s_casinh.c index 657e269ac1..6b58f86e2f 100644 --- a/math/s_casinh.c +++ b/math/s_casinh.c @@ -1,5 +1,5 @@ /* Return arc hyperbole sine for double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_casinhf.c b/math/s_casinhf.c index 8663c2e7cc..3e88858212 100644 --- a/math/s_casinhf.c +++ b/math/s_casinhf.c @@ -1,5 +1,5 @@ /* Return arc hyperbole sine for float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_casinhl.c b/math/s_casinhl.c index 2afc52714e..c5156951d6 100644 --- a/math/s_casinhl.c +++ b/math/s_casinhl.c @@ -1,5 +1,5 @@ /* Return arc hyperbole sine for long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_casinl.c b/math/s_casinl.c index 0172324c06..06b02adc4c 100644 --- a/math/s_casinl.c +++ b/math/s_casinl.c @@ -1,5 +1,5 @@ /* Return arc sine of complex long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_catan.c b/math/s_catan.c index 4da0a0dcac..87cdd31295 100644 --- a/math/s_catan.c +++ b/math/s_catan.c @@ -1,5 +1,5 @@ /* Return arc tangent of complex double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_catanf.c b/math/s_catanf.c index 0713565c86..80a34744e1 100644 --- a/math/s_catanf.c +++ b/math/s_catanf.c @@ -1,5 +1,5 @@ /* Return arc tangent of complex float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_catanh.c b/math/s_catanh.c index 54be9f9e41..0c8b268418 100644 --- a/math/s_catanh.c +++ b/math/s_catanh.c @@ -1,5 +1,5 @@ /* Return arc hyperbole tangent for double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_catanhf.c b/math/s_catanhf.c index 0a08b95b58..ebb7b8232d 100644 --- a/math/s_catanhf.c +++ b/math/s_catanhf.c @@ -1,5 +1,5 @@ /* Return arc hyperbole tangent for float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_catanhl.c b/math/s_catanhl.c index 8c4b8940c0..d45f1d1986 100644 --- a/math/s_catanhl.c +++ b/math/s_catanhl.c @@ -1,5 +1,5 @@ /* Return arc hyperbole tangent for long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_catanl.c b/math/s_catanl.c index 9bb5e012e6..32a4424962 100644 --- a/math/s_catanl.c +++ b/math/s_catanl.c @@ -1,5 +1,5 @@ /* Return arc tangent of complex long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ccos.c b/math/s_ccos.c index effed28329..e5b566c5fc 100644 --- a/math/s_ccos.c +++ b/math/s_ccos.c @@ -1,5 +1,5 @@ /* Return cosine of complex double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ccosf.c b/math/s_ccosf.c index 1286d1005a..eb01419c7b 100644 --- a/math/s_ccosf.c +++ b/math/s_ccosf.c @@ -1,5 +1,5 @@ /* Return cosine of complex float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ccosh.c b/math/s_ccosh.c index 05b146ecbf..3ee40b1153 100644 --- a/math/s_ccosh.c +++ b/math/s_ccosh.c @@ -1,5 +1,5 @@ /* Complex cosine hyperbole function for double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ccoshf.c b/math/s_ccoshf.c index 62bf83c05b..4a9e94d004 100644 --- a/math/s_ccoshf.c +++ b/math/s_ccoshf.c @@ -1,5 +1,5 @@ /* Complex cosine hyperbole function for float. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ccoshl.c b/math/s_ccoshl.c index 18d3df0430..bb79aad28e 100644 --- a/math/s_ccoshl.c +++ b/math/s_ccoshl.c @@ -1,5 +1,5 @@ /* Complex cosine hyperbole function for long double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ccosl.c b/math/s_ccosl.c index f302d9f800..de74449f10 100644 --- a/math/s_ccosl.c +++ b/math/s_ccosl.c @@ -1,5 +1,5 @@ /* Return cosine of complex long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cexp.c b/math/s_cexp.c index 40e0e518d2..dcb3228b99 100644 --- a/math/s_cexp.c +++ b/math/s_cexp.c @@ -1,5 +1,5 @@ /* Return value of complex exponential function for double complex value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cexpf.c b/math/s_cexpf.c index 7c42205164..8bfc7e251d 100644 --- a/math/s_cexpf.c +++ b/math/s_cexpf.c @@ -1,5 +1,5 @@ /* Return value of complex exponential function for float complex value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cexpl.c b/math/s_cexpl.c index 0c35603366..bd5572db88 100644 --- a/math/s_cexpl.c +++ b/math/s_cexpl.c @@ -1,5 +1,5 @@ /* Return value of complex exponential function for long double complex value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_clog.c b/math/s_clog.c index 77ccd0a219..e2b5846f2f 100644 --- a/math/s_clog.c +++ b/math/s_clog.c @@ -1,5 +1,5 @@ /* Compute complex natural logarithm. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_clog10.c b/math/s_clog10.c index c55a4624e4..0274db3617 100644 --- a/math/s_clog10.c +++ b/math/s_clog10.c @@ -1,5 +1,5 @@ /* Compute complex base 10 logarithm. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_clog10f.c b/math/s_clog10f.c index 56bf0efe53..dc676b23fc 100644 --- a/math/s_clog10f.c +++ b/math/s_clog10f.c @@ -1,5 +1,5 @@ /* Compute complex base 10 logarithm. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_clog10l.c b/math/s_clog10l.c index b4c48b782f..f7c3ec43a3 100644 --- a/math/s_clog10l.c +++ b/math/s_clog10l.c @@ -1,5 +1,5 @@ /* Compute complex base 10 logarithm. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_clogf.c b/math/s_clogf.c index 008970e2b7..73c2928116 100644 --- a/math/s_clogf.c +++ b/math/s_clogf.c @@ -1,5 +1,5 @@ /* Compute complex natural logarithm. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_clogl.c b/math/s_clogl.c index 4923b102ad..ec2ff84036 100644 --- a/math/s_clogl.c +++ b/math/s_clogl.c @@ -1,5 +1,5 @@ /* Compute complex natural logarithm. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cpow.c b/math/s_cpow.c index 4a7f5b2cae..5bcf26774e 100644 --- a/math/s_cpow.c +++ b/math/s_cpow.c @@ -1,5 +1,5 @@ /* Complex power of double values. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cpowf.c b/math/s_cpowf.c index a8136b8534..498fce9cfc 100644 --- a/math/s_cpowf.c +++ b/math/s_cpowf.c @@ -1,5 +1,5 @@ /* Complex power of float values. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cpowl.c b/math/s_cpowl.c index 986236e5e8..6dc3d6a3fd 100644 --- a/math/s_cpowl.c +++ b/math/s_cpowl.c @@ -1,5 +1,5 @@ /* Complex power of long double values. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cproj.c b/math/s_cproj.c index 98f1a4c4b2..2c2cd1d783 100644 --- a/math/s_cproj.c +++ b/math/s_cproj.c @@ -1,5 +1,5 @@ /* Compute projection of complex double value to Riemann sphere. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cprojf.c b/math/s_cprojf.c index e4dbc181bd..a0f0af9ac1 100644 --- a/math/s_cprojf.c +++ b/math/s_cprojf.c @@ -1,5 +1,5 @@ /* Compute projection of complex float value to Riemann sphere. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_cprojl.c b/math/s_cprojl.c index b564a83e63..65b77b3fde 100644 --- a/math/s_cprojl.c +++ b/math/s_cprojl.c @@ -1,5 +1,5 @@ /* Compute projection of complex long double value to Riemann sphere. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_csin.c b/math/s_csin.c index 6d28e4c1b9..48a4a901ab 100644 --- a/math/s_csin.c +++ b/math/s_csin.c @@ -1,5 +1,5 @@ /* Complex sine function for double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_csinf.c b/math/s_csinf.c index a3dcf9d3aa..26c4bb0a2f 100644 --- a/math/s_csinf.c +++ b/math/s_csinf.c @@ -1,5 +1,5 @@ /* Complex sine function for float. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_csinh.c b/math/s_csinh.c index 5a98f67851..3fc737b493 100644 --- a/math/s_csinh.c +++ b/math/s_csinh.c @@ -1,5 +1,5 @@ /* Complex sine hyperbole function for double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_csinhf.c b/math/s_csinhf.c index 3658805fcb..081c7592d6 100644 --- a/math/s_csinhf.c +++ b/math/s_csinhf.c @@ -1,5 +1,5 @@ /* Complex sine hyperbole function for float. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_csinhl.c b/math/s_csinhl.c index 54a13fdda2..3c4ba0d617 100644 --- a/math/s_csinhl.c +++ b/math/s_csinhl.c @@ -1,5 +1,5 @@ /* Complex sine hyperbole function for long double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_csinl.c b/math/s_csinl.c index 4d6ce3db35..5ae8969aac 100644 --- a/math/s_csinl.c +++ b/math/s_csinl.c @@ -1,5 +1,5 @@ /* Complex sine function for long double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_csqrt.c b/math/s_csqrt.c index 992f733552..2bbd2b8adf 100644 --- a/math/s_csqrt.c +++ b/math/s_csqrt.c @@ -1,5 +1,5 @@ /* Complex square root of double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on an algorithm by Stephen L. Moshier . Contributed by Ulrich Drepper , 1997. diff --git a/math/s_csqrtf.c b/math/s_csqrtf.c index e66b1cdf78..b2a11dec81 100644 --- a/math/s_csqrtf.c +++ b/math/s_csqrtf.c @@ -1,5 +1,5 @@ /* Complex square root of float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on an algorithm by Stephen L. Moshier . Contributed by Ulrich Drepper , 1997. diff --git a/math/s_csqrtl.c b/math/s_csqrtl.c index f729b7c011..a72bac1835 100644 --- a/math/s_csqrtl.c +++ b/math/s_csqrtl.c @@ -1,5 +1,5 @@ /* Complex square root of long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on an algorithm by Stephen L. Moshier . Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ctan.c b/math/s_ctan.c index c6565c0d3e..6fed4fe465 100644 --- a/math/s_ctan.c +++ b/math/s_ctan.c @@ -1,5 +1,5 @@ /* Complex tangent function for double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ctanf.c b/math/s_ctanf.c index e08571b93f..a2343dd54e 100644 --- a/math/s_ctanf.c +++ b/math/s_ctanf.c @@ -1,5 +1,5 @@ /* Complex tangent function for float. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ctanh.c b/math/s_ctanh.c index cfc71ec082..0ca35e0990 100644 --- a/math/s_ctanh.c +++ b/math/s_ctanh.c @@ -1,5 +1,5 @@ /* Complex hyperbole tangent for double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ctanhf.c b/math/s_ctanhf.c index d37d5bb822..8938d70186 100644 --- a/math/s_ctanhf.c +++ b/math/s_ctanhf.c @@ -1,5 +1,5 @@ /* Complex hyperbole tangent for float. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ctanhl.c b/math/s_ctanhl.c index 135e987e6e..098e009184 100644 --- a/math/s_ctanhl.c +++ b/math/s_ctanhl.c @@ -1,5 +1,5 @@ /* Complex hyperbole tangent for long double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_ctanl.c b/math/s_ctanl.c index a22e30adee..98fdac0c8d 100644 --- a/math/s_ctanl.c +++ b/math/s_ctanl.c @@ -1,5 +1,5 @@ /* Complex tangent function for long double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fdim.c b/math/s_fdim.c index f8fd80490d..9bfd8ec2d5 100644 --- a/math/s_fdim.c +++ b/math/s_fdim.c @@ -1,5 +1,5 @@ /* Return positive difference between arguments. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fdimf.c b/math/s_fdimf.c index 86efe6ef2a..a3051850ef 100644 --- a/math/s_fdimf.c +++ b/math/s_fdimf.c @@ -1,5 +1,5 @@ /* Return positive difference between arguments. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fdiml.c b/math/s_fdiml.c index 030fcc22e6..c57980075d 100644 --- a/math/s_fdiml.c +++ b/math/s_fdiml.c @@ -1,5 +1,5 @@ /* Return positive difference between arguments. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fma.c b/math/s_fma.c index 501dca6e48..01d37c02e2 100644 --- a/math/s_fma.c +++ b/math/s_fma.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fmaf.c b/math/s_fmaf.c index 574723c6d9..3f0e2cd8e8 100644 --- a/math/s_fmaf.c +++ b/math/s_fmaf.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fmal.c b/math/s_fmal.c index 2491ef14a9..e4849805b1 100644 --- a/math/s_fmal.c +++ b/math/s_fmal.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fmax.c b/math/s_fmax.c index f5898ee4df..dbf6e9708d 100644 --- a/math/s_fmax.c +++ b/math/s_fmax.c @@ -1,5 +1,5 @@ /* Return maximum numeric value of X and Y. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fmaxf.c b/math/s_fmaxf.c index b05533d31b..1bfd28bf13 100644 --- a/math/s_fmaxf.c +++ b/math/s_fmaxf.c @@ -1,5 +1,5 @@ /* Return maximum numeric value of X and Y. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fmaxl.c b/math/s_fmaxl.c index ea6fd850cf..851e9d57e5 100644 --- a/math/s_fmaxl.c +++ b/math/s_fmaxl.c @@ -1,5 +1,5 @@ /* Return maximum numeric value of X and Y. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fmin.c b/math/s_fmin.c index e83c1f3a79..bfae957e49 100644 --- a/math/s_fmin.c +++ b/math/s_fmin.c @@ -1,5 +1,5 @@ /* Return minimum numeric value of X and Y. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fminf.c b/math/s_fminf.c index ad745006e7..c563d0b036 100644 --- a/math/s_fminf.c +++ b/math/s_fminf.c @@ -1,5 +1,5 @@ /* Return minimum numeric value of X and Y. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_fminl.c b/math/s_fminl.c index cc8ae50f3f..c335fb9ae3 100644 --- a/math/s_fminl.c +++ b/math/s_fminl.c @@ -1,5 +1,5 @@ /* Return minimum numeric value of X and Y. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_nan.c b/math/s_nan.c index 38b46ab822..c01085f09e 100644 --- a/math/s_nan.c +++ b/math/s_nan.c @@ -1,5 +1,5 @@ /* Return quiet nan. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_nanf.c b/math/s_nanf.c index e343b7ffcf..a16fdbf7aa 100644 --- a/math/s_nanf.c +++ b/math/s_nanf.c @@ -1,5 +1,5 @@ /* Return quiet nan. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/s_nanl.c b/math/s_nanl.c index b1ab582f62..3769f17bee 100644 --- a/math/s_nanl.c +++ b/math/s_nanl.c @@ -1,5 +1,5 @@ /* Return quiet nan. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/math/setfpucw.c b/math/setfpucw.c index 3a390b30e3..9d1025bf1a 100644 --- a/math/setfpucw.c +++ b/math/setfpucw.c @@ -1,5 +1,5 @@ /* Set the FPU control word. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/test-double.c b/math/test-double.c index a017e5220d..5d2d8ccd4b 100644 --- a/math/test-double.c +++ b/math/test-double.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1997. diff --git a/math/test-fenv-tls.c b/math/test-fenv-tls.c index 879c9f9518..e059103cf7 100644 --- a/math/test-fenv-tls.c +++ b/math/test-fenv-tls.c @@ -1,5 +1,5 @@ /* Test floating-point environment is thread-local. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/test-fenv.c b/math/test-fenv.c index 70d45f1de0..73cd1a7fb8 100644 --- a/math/test-fenv.c +++ b/math/test-fenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger and Ulrich Drepper , 1997. diff --git a/math/test-float.c b/math/test-float.c index 95855af904..533aee4ae1 100644 --- a/math/test-float.c +++ b/math/test-float.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1997. diff --git a/math/test-fpucw-ieee.c b/math/test-fpucw-ieee.c index 7596486252..b0035263ff 100644 --- a/math/test-fpucw-ieee.c +++ b/math/test-fpucw-ieee.c @@ -1,5 +1,5 @@ /* FPU control word overridden initialization test. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/test-fpucw.c b/math/test-fpucw.c index ae6a2c9a71..b0b6dda77c 100644 --- a/math/test-fpucw.c +++ b/math/test-fpucw.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2000. diff --git a/math/test-idouble.c b/math/test-idouble.c index e8b91898a5..670384d586 100644 --- a/math/test-idouble.c +++ b/math/test-idouble.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1997. diff --git a/math/test-ifloat.c b/math/test-ifloat.c index 55ab84e067..b4de28488d 100644 --- a/math/test-ifloat.c +++ b/math/test-ifloat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1997. diff --git a/math/test-ildoubl.c b/math/test-ildoubl.c index ca5de7c538..ab5eadb82c 100644 --- a/math/test-ildoubl.c +++ b/math/test-ildoubl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1997. diff --git a/math/test-ldouble.c b/math/test-ldouble.c index 45889f068c..73504e2c41 100644 --- a/math/test-ldouble.c +++ b/math/test-ldouble.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1997. diff --git a/math/test-misc.c b/math/test-misc.c index f5276ebff9..3fd2bca6ac 100644 --- a/math/test-misc.c +++ b/math/test-misc.c @@ -1,5 +1,5 @@ /* Miscellaneous tests which don't fit anywhere else. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/test-powl.c b/math/test-powl.c index 45171856e4..fd2a1cbae4 100644 --- a/math/test-powl.c +++ b/math/test-powl.c @@ -1,5 +1,5 @@ /* Test for powl - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/test-snan.c b/math/test-snan.c index 82f1dbe209..c8e0d2fc18 100644 --- a/math/test-snan.c +++ b/math/test-snan.c @@ -1,5 +1,5 @@ /* Test signaling NaNs in issignaling, isnan, isinf, and similar functions. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2005. diff --git a/math/test-tgmath-int.c b/math/test-tgmath-int.c index 34300bdbde..a9a27e4368 100644 --- a/math/test-tgmath-int.c +++ b/math/test-tgmath-int.c @@ -1,5 +1,5 @@ /* Test compilation of tgmath macros. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2005. diff --git a/math/test-tgmath-ret.c b/math/test-tgmath-ret.c index 1cc1eecfc9..9cec7196cb 100644 --- a/math/test-tgmath-ret.c +++ b/math/test-tgmath-ret.c @@ -1,5 +1,5 @@ /* Test compilation of tgmath macros. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2003. diff --git a/math/test-tgmath.c b/math/test-tgmath.c index 5aa5b32e47..f3b33feb29 100644 --- a/math/test-tgmath.c +++ b/math/test-tgmath.c @@ -1,5 +1,5 @@ /* Test compilation of tgmath macros. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek and Ulrich Drepper , 2001. diff --git a/math/test-tgmath2.c b/math/test-tgmath2.c index 4459cdcdce..30be767d1d 100644 --- a/math/test-tgmath2.c +++ b/math/test-tgmath2.c @@ -1,5 +1,5 @@ /* Test compilation of tgmath macros. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2007. diff --git a/math/tgmath.h b/math/tgmath.h index a29efd3b89..18313b5eb0 100644 --- a/math/tgmath.h +++ b/math/tgmath.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/math/tst-CMPLX2.c b/math/tst-CMPLX2.c index 195ea7a848..d1078163e9 100644 --- a/math/tst-CMPLX2.c +++ b/math/tst-CMPLX2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Marek Polacek , 2012. diff --git a/math/tst-definitions.c b/math/tst-definitions.c index 06b6d1aa90..2501c8c3d4 100644 --- a/math/tst-definitions.c +++ b/math/tst-definitions.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/math/w_acos.c b/math/w_acos.c index 52479b1015..bb641092f0 100644 --- a/math/w_acos.c +++ b/math/w_acos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_acosf.c b/math/w_acosf.c index ab13db3f69..c9cbf151b4 100644 --- a/math/w_acosf.c +++ b/math/w_acosf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_acosh.c b/math/w_acosh.c index c69fc3fa4f..b03651bf67 100644 --- a/math/w_acosh.c +++ b/math/w_acosh.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_acoshf.c b/math/w_acoshf.c index 1eb91fc2dc..870a954c8a 100644 --- a/math/w_acoshf.c +++ b/math/w_acoshf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_acoshl.c b/math/w_acoshl.c index 9a6ff7f80d..79e32dbf10 100644 --- a/math/w_acoshl.c +++ b/math/w_acoshl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_acosl.c b/math/w_acosl.c index bbd22c3b7a..9abc79e659 100644 --- a/math/w_acosl.c +++ b/math/w_acosl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_asin.c b/math/w_asin.c index ab860b87e5..9bf9374ec8 100644 --- a/math/w_asin.c +++ b/math/w_asin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_asinf.c b/math/w_asinf.c index 9db1b8e878..0c2e260f55 100644 --- a/math/w_asinf.c +++ b/math/w_asinf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_asinl.c b/math/w_asinl.c index 3def235ba2..78ce18fd67 100644 --- a/math/w_asinl.c +++ b/math/w_asinl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_atan2.c b/math/w_atan2.c index 41faff6d5c..efbf0b333c 100644 --- a/math/w_atan2.c +++ b/math/w_atan2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_atan2f.c b/math/w_atan2f.c index eb4523e023..6967540e69 100644 --- a/math/w_atan2f.c +++ b/math/w_atan2f.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_atan2l.c b/math/w_atan2l.c index 3044229fa6..f1de1d14e9 100644 --- a/math/w_atan2l.c +++ b/math/w_atan2l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_atanh.c b/math/w_atanh.c index 609e315cf4..197674310d 100644 --- a/math/w_atanh.c +++ b/math/w_atanh.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_atanhf.c b/math/w_atanhf.c index 5e5128e7e6..33d81d6c24 100644 --- a/math/w_atanhf.c +++ b/math/w_atanhf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_atanhl.c b/math/w_atanhl.c index d144389e64..bba5befcae 100644 --- a/math/w_atanhl.c +++ b/math/w_atanhl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_exp10.c b/math/w_exp10.c index 17823f57ef..1261e97931 100644 --- a/math/w_exp10.c +++ b/math/w_exp10.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_exp10f.c b/math/w_exp10f.c index e2f9185b1e..c41838dec9 100644 --- a/math/w_exp10f.c +++ b/math/w_exp10f.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_exp10l.c b/math/w_exp10l.c index 19facddee6..066a8c1ada 100644 --- a/math/w_exp10l.c +++ b/math/w_exp10l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_fmod.c b/math/w_fmod.c index 9e872da6b9..c293aca26a 100644 --- a/math/w_fmod.c +++ b/math/w_fmod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_fmodf.c b/math/w_fmodf.c index 4af5e94e9b..21a148b72b 100644 --- a/math/w_fmodf.c +++ b/math/w_fmodf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_fmodl.c b/math/w_fmodl.c index 5e7a9edeee..ff6b85e03e 100644 --- a/math/w_fmodl.c +++ b/math/w_fmodl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_ilogb.c b/math/w_ilogb.c index 1374a243ad..9c0e264483 100644 --- a/math/w_ilogb.c +++ b/math/w_ilogb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011. diff --git a/math/w_ilogbf.c b/math/w_ilogbf.c index 5bf8c340de..2e0cdfb3d9 100644 --- a/math/w_ilogbf.c +++ b/math/w_ilogbf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011. diff --git a/math/w_ilogbl.c b/math/w_ilogbl.c index 3f5a61b3ac..f08ac36b88 100644 --- a/math/w_ilogbl.c +++ b/math/w_ilogbl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011. diff --git a/math/w_j0.c b/math/w_j0.c index 0849abbc35..f7d4f2b12e 100644 --- a/math/w_j0.c +++ b/math/w_j0.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_j0f.c b/math/w_j0f.c index ef309d2092..152a257c68 100644 --- a/math/w_j0f.c +++ b/math/w_j0f.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_j0l.c b/math/w_j0l.c index 01cd91cdb7..c009abfa50 100644 --- a/math/w_j0l.c +++ b/math/w_j0l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_j1.c b/math/w_j1.c index a9fb7aebbe..1665501f44 100644 --- a/math/w_j1.c +++ b/math/w_j1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_j1f.c b/math/w_j1f.c index f70913d5ae..b352ad2770 100644 --- a/math/w_j1f.c +++ b/math/w_j1f.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_j1l.c b/math/w_j1l.c index e4242ec218..790ac48737 100644 --- a/math/w_j1l.c +++ b/math/w_j1l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_jn.c b/math/w_jn.c index e9179835ba..993b33b610 100644 --- a/math/w_jn.c +++ b/math/w_jn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_jnf.c b/math/w_jnf.c index cb1aab8e73..1ad8163bf5 100644 --- a/math/w_jnf.c +++ b/math/w_jnf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_log.c b/math/w_log.c index e4071ebe5d..8c90052094 100644 --- a/math/w_log.c +++ b/math/w_log.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_log10.c b/math/w_log10.c index 5ba1a00659..472d2a146d 100644 --- a/math/w_log10.c +++ b/math/w_log10.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_log10f.c b/math/w_log10f.c index cde2ac4127..e54dd98f22 100644 --- a/math/w_log10f.c +++ b/math/w_log10f.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_log10l.c b/math/w_log10l.c index 0c9c4f522e..3199bfef8a 100644 --- a/math/w_log10l.c +++ b/math/w_log10l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_log2.c b/math/w_log2.c index 2f2e37ae3e..20a4a8afef 100644 --- a/math/w_log2.c +++ b/math/w_log2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_log2f.c b/math/w_log2f.c index 8aeeebbc84..614f58e947 100644 --- a/math/w_log2f.c +++ b/math/w_log2f.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_log2l.c b/math/w_log2l.c index cb2c94bbcd..08078f7e5b 100644 --- a/math/w_log2l.c +++ b/math/w_log2l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_logf.c b/math/w_logf.c index a13d60bcd8..223bd3e632 100644 --- a/math/w_logf.c +++ b/math/w_logf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_logl.c b/math/w_logl.c index 316f54a8f4..536dc65305 100644 --- a/math/w_logl.c +++ b/math/w_logl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_pow.c b/math/w_pow.c index d86833bf0d..713d7a8719 100644 --- a/math/w_pow.c +++ b/math/w_pow.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_powf.c b/math/w_powf.c index 918c76c518..1ba22c0560 100644 --- a/math/w_powf.c +++ b/math/w_powf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_powl.c b/math/w_powl.c index 901caba244..eba9202f23 100644 --- a/math/w_powl.c +++ b/math/w_powl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_remainder.c b/math/w_remainder.c index df991b8221..c39b5e7a16 100644 --- a/math/w_remainder.c +++ b/math/w_remainder.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_remainderf.c b/math/w_remainderf.c index 078abf12e6..5330cc07d3 100644 --- a/math/w_remainderf.c +++ b/math/w_remainderf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_remainderl.c b/math/w_remainderl.c index d68166c810..c74fa5c16c 100644 --- a/math/w_remainderl.c +++ b/math/w_remainderl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_scalb.c b/math/w_scalb.c index 9688691542..21b0c792d3 100644 --- a/math/w_scalb.c +++ b/math/w_scalb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_scalbf.c b/math/w_scalbf.c index 01070f697e..c23e35ba34 100644 --- a/math/w_scalbf.c +++ b/math/w_scalbf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_scalbl.c b/math/w_scalbl.c index 148cdc2c2e..4252af3bf8 100644 --- a/math/w_scalbl.c +++ b/math/w_scalbl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_sqrt.c b/math/w_sqrt.c index 8d9ed69ad2..75266d3b96 100644 --- a/math/w_sqrt.c +++ b/math/w_sqrt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_sqrtf.c b/math/w_sqrtf.c index c3408d0b56..245e697aed 100644 --- a/math/w_sqrtf.c +++ b/math/w_sqrtf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/math/w_sqrtl.c b/math/w_sqrtl.c index f03d2b4639..db7e9bd831 100644 --- a/math/w_sqrtl.c +++ b/math/w_sqrtl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/misc/Makefile b/misc/Makefile index 3b15fb553a..b039182fa0 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/acct.c b/misc/acct.c index 855edc195b..e24fdf1f13 100644 --- a/misc/acct.c +++ b/misc/acct.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/ar.h b/misc/ar.h index 4bf433704c..a226f6db01 100644 --- a/misc/ar.h +++ b/misc/ar.h @@ -1,5 +1,5 @@ /* Header describing `ar' archive file format. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/bits/error.h b/misc/bits/error.h index c5658d9ed9..5408450ab0 100644 --- a/misc/bits/error.h +++ b/misc/bits/error.h @@ -1,5 +1,5 @@ /* Specializations for error functions. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/bits/select2.h b/misc/bits/select2.h index 03558c9149..8906ba1f03 100644 --- a/misc/bits/select2.h +++ b/misc/bits/select2.h @@ -1,5 +1,5 @@ /* Checking macros for select functions. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/bits/stab.def b/misc/bits/stab.def index 9076fe2ac4..7e68c0d143 100644 --- a/misc/bits/stab.def +++ b/misc/bits/stab.def @@ -1,5 +1,5 @@ /* Table of DBX symbol codes for the GNU system. - Copyright (C) 1988, 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1988, 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/bits/syslog-ldbl.h b/misc/bits/syslog-ldbl.h index 527cc48e32..989978d94d 100644 --- a/misc/bits/syslog-ldbl.h +++ b/misc/bits/syslog-ldbl.h @@ -1,5 +1,5 @@ /* -mlong-double-64 compatibility mode for syslog functions. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/bits/syslog.h b/misc/bits/syslog.h index 5d04a920b7..a5c693a134 100644 --- a/misc/bits/syslog.h +++ b/misc/bits/syslog.h @@ -1,5 +1,5 @@ /* Checking macros for syslog functions. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/brk.c b/misc/brk.c index 32bb07a05b..cb2ca124a6 100644 --- a/misc/brk.c +++ b/misc/brk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/chflags.c b/misc/chflags.c index 3785c6b7b0..011ca69e3f 100644 --- a/misc/chflags.c +++ b/misc/chflags.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/chroot.c b/misc/chroot.c index 6b4dd9a24a..5737d582a4 100644 --- a/misc/chroot.c +++ b/misc/chroot.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/dirname.c b/misc/dirname.c index a31cc1dc05..d95e200cd9 100644 --- a/misc/dirname.c +++ b/misc/dirname.c @@ -1,5 +1,5 @@ /* dirname - return directory part of PATH. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/misc/efgcvt.c b/misc/efgcvt.c index 107fcd67a2..a0be534f2c 100644 --- a/misc/efgcvt.c +++ b/misc/efgcvt.c @@ -1,5 +1,5 @@ /* Compatibility functions for floating point formatting. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/efgcvt_r.c b/misc/efgcvt_r.c index 8d2128a69a..cd6f4e7628 100644 --- a/misc/efgcvt_r.c +++ b/misc/efgcvt_r.c @@ -1,5 +1,5 @@ /* Compatibility functions for floating point formatting, reentrant versions. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/err.c b/misc/err.c index e082a8b1ae..44fa28dcef 100644 --- a/misc/err.c +++ b/misc/err.c @@ -1,5 +1,5 @@ /* 4.4BSD utility functions for error messages. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/err.h b/misc/err.h index cc28db2abf..fabd836560 100644 --- a/misc/err.h +++ b/misc/err.h @@ -1,5 +1,5 @@ /* 4.4BSD utility functions for error messages. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/error.c b/misc/error.c index 408a1ab25e..dfaa240857 100644 --- a/misc/error.c +++ b/misc/error.c @@ -1,5 +1,5 @@ /* Error handler for noninteractive utilities - Copyright (C) 1990-2013 Free Software Foundation, Inc. + Copyright (C) 1990-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/error.h b/misc/error.h index ccf3f28492..a3c7ef0c45 100644 --- a/misc/error.h +++ b/misc/error.h @@ -1,5 +1,5 @@ /* Declaration for error-reporting function - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/fchflags.c b/misc/fchflags.c index 53805eaf0e..c08ff51713 100644 --- a/misc/fchflags.c +++ b/misc/fchflags.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/fdatasync.c b/misc/fdatasync.c index 340c6418a4..d98981e009 100644 --- a/misc/fdatasync.c +++ b/misc/fdatasync.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/fgetxattr.c b/misc/fgetxattr.c index aa11c4448b..1f42ff6a9e 100644 --- a/misc/fgetxattr.c +++ b/misc/fgetxattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/flistxattr.c b/misc/flistxattr.c index f96781a113..37104fc8ef 100644 --- a/misc/flistxattr.c +++ b/misc/flistxattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/fremovexattr.c b/misc/fremovexattr.c index 558e78c55c..316c37acd8 100644 --- a/misc/fremovexattr.c +++ b/misc/fremovexattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/fsetxattr.c b/misc/fsetxattr.c index 5e20ea3937..8ca13599b3 100644 --- a/misc/fsetxattr.c +++ b/misc/fsetxattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/fstab.c b/misc/fstab.c index 6172bcba3e..6cb33be046 100644 --- a/misc/fstab.c +++ b/misc/fstab.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/fsync.c b/misc/fsync.c index 7cce0f1301..47fc53f2b8 100644 --- a/misc/fsync.c +++ b/misc/fsync.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/ftruncate.c b/misc/ftruncate.c index 7b38b17372..ba3dd24818 100644 --- a/misc/ftruncate.c +++ b/misc/ftruncate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/ftruncate64.c b/misc/ftruncate64.c index b351e05984..8377576803 100644 --- a/misc/ftruncate64.c +++ b/misc/ftruncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/futimes.c b/misc/futimes.c index bb98fe8211..8cc100923e 100644 --- a/misc/futimes.c +++ b/misc/futimes.c @@ -1,5 +1,5 @@ /* futimes -- change access and modification times of open file. Stub version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/futimesat.c b/misc/futimesat.c index 3f5d4f9ba1..e9042c8f0d 100644 --- a/misc/futimesat.c +++ b/misc/futimesat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/getauxval.c b/misc/getauxval.c index dd4c8ecab3..80881afc38 100644 --- a/misc/getauxval.c +++ b/misc/getauxval.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/getclktck.c b/misc/getclktck.c index ce90baa971..9098c84472 100644 --- a/misc/getclktck.c +++ b/misc/getclktck.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/getdomain.c b/misc/getdomain.c index 482ea8a8d9..e3c786277c 100644 --- a/misc/getdomain.c +++ b/misc/getdomain.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/getdtsz.c b/misc/getdtsz.c index 25cf14abe2..3a4a64e422 100644 --- a/misc/getdtsz.c +++ b/misc/getdtsz.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/gethostid.c b/misc/gethostid.c index ce8fd2c579..2232b5af25 100644 --- a/misc/gethostid.c +++ b/misc/gethostid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/gethostname.c b/misc/gethostname.c index c31f998e1c..021aad09a5 100644 --- a/misc/gethostname.c +++ b/misc/gethostname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/getloadavg.c b/misc/getloadavg.c index d165d698a1..ef89589566 100644 --- a/misc/getloadavg.c +++ b/misc/getloadavg.c @@ -1,5 +1,5 @@ /* Get system load averages. Stub version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/getpagesize.c b/misc/getpagesize.c index 43e00a899c..4a5ba5a4d6 100644 --- a/misc/getpagesize.c +++ b/misc/getpagesize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/getpass.c b/misc/getpass.c index 4825b27976..575959354e 100644 --- a/misc/getpass.c +++ b/misc/getpass.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/getsysstats.c b/misc/getsysstats.c index d6f9df59d2..4a44b0dcbf 100644 --- a/misc/getsysstats.c +++ b/misc/getsysstats.c @@ -1,5 +1,5 @@ /* getsysstats - Determine various system internal values, stub version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/misc/getxattr.c b/misc/getxattr.c index bb18e3b99b..cc374916cc 100644 --- a/misc/getxattr.c +++ b/misc/getxattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/gtty.c b/misc/gtty.c index 4ddfb67ab2..ac674d2401 100644 --- a/misc/gtty.c +++ b/misc/gtty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/hsearch.c b/misc/hsearch.c index 58b5d393f4..4f3d12e58c 100644 --- a/misc/hsearch.c +++ b/misc/hsearch.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper This file is part of the GNU C Library. diff --git a/misc/hsearch_r.c b/misc/hsearch_r.c index 0c7f57cb10..81c27d800c 100644 --- a/misc/hsearch_r.c +++ b/misc/hsearch_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1993. diff --git a/misc/ifunc-impl-list.c b/misc/ifunc-impl-list.c index b1842927fb..97b58add16 100644 --- a/misc/ifunc-impl-list.c +++ b/misc/ifunc-impl-list.c @@ -1,5 +1,5 @@ /* Enumerate available IFUNC implementations of a function. Stub version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/init-misc.c b/misc/init-misc.c index e36e6d8d13..b6cfa91bdf 100644 --- a/misc/init-misc.c +++ b/misc/init-misc.c @@ -1,5 +1,5 @@ /* Define and initialize `__progname' et. al. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/insremque.c b/misc/insremque.c index 004452632c..6a4724d3d7 100644 --- a/misc/insremque.c +++ b/misc/insremque.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/ioctl.c b/misc/ioctl.c index db875e754f..ccc482e1a4 100644 --- a/misc/ioctl.c +++ b/misc/ioctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/lgetxattr.c b/misc/lgetxattr.c index e0f4e444ac..947849d677 100644 --- a/misc/lgetxattr.c +++ b/misc/lgetxattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/libgen.h b/misc/libgen.h index b7a36799bc..19aeecefa0 100644 --- a/misc/libgen.h +++ b/misc/libgen.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/listxattr.c b/misc/listxattr.c index 128ce95191..11004825ed 100644 --- a/misc/listxattr.c +++ b/misc/listxattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/llistxattr.c b/misc/llistxattr.c index 8bf5ee8d42..37a36ef98e 100644 --- a/misc/llistxattr.c +++ b/misc/llistxattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/lremovexattr.c b/misc/lremovexattr.c index 717e11665d..f2ff7cf8c0 100644 --- a/misc/lremovexattr.c +++ b/misc/lremovexattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/lsearch.c b/misc/lsearch.c index 6980f7106a..8674b32261 100644 --- a/misc/lsearch.c +++ b/misc/lsearch.c @@ -1,5 +1,5 @@ /* Linear search functions. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/misc/lsetxattr.c b/misc/lsetxattr.c index b56df72ef3..3dbfb797db 100644 --- a/misc/lsetxattr.c +++ b/misc/lsetxattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/lutimes.c b/misc/lutimes.c index 3eaeba690e..ee071e9af6 100644 --- a/misc/lutimes.c +++ b/misc/lutimes.c @@ -1,5 +1,5 @@ /* lutimes -- change access and modification times of a symlink. Stub version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/madvise.c b/misc/madvise.c index e98189bf03..ecc6896b28 100644 --- a/misc/madvise.c +++ b/misc/madvise.c @@ -1,5 +1,5 @@ /* Advise system about intentions for a memory region. Stub version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mincore.c b/misc/mincore.c index fc6a441b97..12f6f5afaa 100644 --- a/misc/mincore.c +++ b/misc/mincore.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mkdtemp.c b/misc/mkdtemp.c index b41bff1be9..6bd72cab49 100644 --- a/misc/mkdtemp.c +++ b/misc/mkdtemp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mkostemp.c b/misc/mkostemp.c index 387ca0d831..f0dc3c1b0d 100644 --- a/misc/mkostemp.c +++ b/misc/mkostemp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mkostemp64.c b/misc/mkostemp64.c index 780837fbac..c68e03dff5 100644 --- a/misc/mkostemp64.c +++ b/misc/mkostemp64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mkostemps.c b/misc/mkostemps.c index d96693c6f0..2f9745ce14 100644 --- a/misc/mkostemps.c +++ b/misc/mkostemps.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mkostemps64.c b/misc/mkostemps64.c index d120ff5771..1d1d3faf2f 100644 --- a/misc/mkostemps64.c +++ b/misc/mkostemps64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mkstemp.c b/misc/mkstemp.c index b272791563..a01095b3b7 100644 --- a/misc/mkstemp.c +++ b/misc/mkstemp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mkstemp64.c b/misc/mkstemp64.c index c8d751209b..3ca465722f 100644 --- a/misc/mkstemp64.c +++ b/misc/mkstemp64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mkstemps.c b/misc/mkstemps.c index aa6fa0801d..d58fce36da 100644 --- a/misc/mkstemps.c +++ b/misc/mkstemps.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mkstemps64.c b/misc/mkstemps64.c index ad46c8ad02..1b0f024257 100644 --- a/misc/mkstemps64.c +++ b/misc/mkstemps64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mktemp.c b/misc/mktemp.c index 55421fd74a..a60f95c067 100644 --- a/misc/mktemp.c +++ b/misc/mktemp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mlock.c b/misc/mlock.c index 7b53679ef6..7556d9d357 100644 --- a/misc/mlock.c +++ b/misc/mlock.c @@ -1,5 +1,5 @@ /* mlock -- guarantee pages are resident in memory. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mlockall.c b/misc/mlockall.c index b0b2f90bbc..5b688d4adf 100644 --- a/misc/mlockall.c +++ b/misc/mlockall.c @@ -1,5 +1,5 @@ /* mlockall -- lock in core all the pages in this process. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mmap.c b/misc/mmap.c index b180274627..4ffcd4deee 100644 --- a/misc/mmap.c +++ b/misc/mmap.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mmap64.c b/misc/mmap64.c index 2576c6c15a..98aacbbbd3 100644 --- a/misc/mmap64.c +++ b/misc/mmap64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mntent.c b/misc/mntent.c index 1336a41786..2f0aa6ef63 100644 --- a/misc/mntent.c +++ b/misc/mntent.c @@ -1,5 +1,5 @@ /* Utilities for reading/writing fstab, mtab, etc. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mntent.h b/misc/mntent.h index 52f5125a5f..879264c6a5 100644 --- a/misc/mntent.h +++ b/misc/mntent.h @@ -1,5 +1,5 @@ /* Utilities for reading/writing fstab, mtab, etc. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mntent_r.c b/misc/mntent_r.c index 858751ce9a..e68ec8e845 100644 --- a/misc/mntent_r.c +++ b/misc/mntent_r.c @@ -1,5 +1,5 @@ /* Utilities for reading/writing fstab, mtab, etc. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/mprotect.c b/misc/mprotect.c index 2df65587b4..2a33ad1f3e 100644 --- a/misc/mprotect.c +++ b/misc/mprotect.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/msync.c b/misc/msync.c index c3f57158be..d148676ccb 100644 --- a/misc/msync.c +++ b/misc/msync.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/munlock.c b/misc/munlock.c index 910289dfe2..bea8d542d4 100644 --- a/misc/munlock.c +++ b/misc/munlock.c @@ -1,5 +1,5 @@ /* munlock -- undo the effects of prior mlock calls. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/munlockall.c b/misc/munlockall.c index b7ef5115c1..077c32f0da 100644 --- a/misc/munlockall.c +++ b/misc/munlockall.c @@ -1,5 +1,5 @@ /* munlockall -- undo the effects of all prior mlock calls. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/munmap.c b/misc/munmap.c index eca31e0ea6..abbfc613b9 100644 --- a/misc/munmap.c +++ b/misc/munmap.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/preadv.c b/misc/preadv.c index 7bbb2b2665..07828db85d 100644 --- a/misc/preadv.c +++ b/misc/preadv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/preadv64.c b/misc/preadv64.c index 06229245f7..4f4f54bc2f 100644 --- a/misc/preadv64.c +++ b/misc/preadv64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/pselect.c b/misc/pselect.c index 59c444b90a..2f6517b2a0 100644 --- a/misc/pselect.c +++ b/misc/pselect.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/misc/ptrace.c b/misc/ptrace.c index 1685a79550..f999e73b4f 100644 --- a/misc/ptrace.c +++ b/misc/ptrace.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/pwritev.c b/misc/pwritev.c index a2b442bc25..10d76dc3f8 100644 --- a/misc/pwritev.c +++ b/misc/pwritev.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/pwritev64.c b/misc/pwritev64.c index e8d3d7a5c3..53fcc10537 100644 --- a/misc/pwritev64.c +++ b/misc/pwritev64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/qefgcvt.c b/misc/qefgcvt.c index b621a88d24..5b8668c0bb 100644 --- a/misc/qefgcvt.c +++ b/misc/qefgcvt.c @@ -1,5 +1,5 @@ /* Compatibility functions for floating point formatting, long double version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/qefgcvt_r.c b/misc/qefgcvt_r.c index 9f2518126b..e2b8e23a9d 100644 --- a/misc/qefgcvt_r.c +++ b/misc/qefgcvt_r.c @@ -1,6 +1,6 @@ /* Compatibility functions for floating point formatting, reentrant, long double versions. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/readv.c b/misc/readv.c index 854808f349..5cc24eba25 100644 --- a/misc/readv.c +++ b/misc/readv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/reboot.c b/misc/reboot.c index 8395833f80..3b3c21f616 100644 --- a/misc/reboot.c +++ b/misc/reboot.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/regexp.c b/misc/regexp.c index d2eefae483..d31ef774df 100644 --- a/misc/regexp.c +++ b/misc/regexp.c @@ -1,5 +1,5 @@ /* Define function and variables for the obsolete interface. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/misc/regexp.h b/misc/regexp.h index a5c2a611c7..2af2bdf2c8 100644 --- a/misc/regexp.h +++ b/misc/regexp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/misc/remap_file_pages.c b/misc/remap_file_pages.c index e4e2becf9b..15d579b7e6 100644 --- a/misc/remap_file_pages.c +++ b/misc/remap_file_pages.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/removexattr.c b/misc/removexattr.c index 730fd8609b..6c88d11f69 100644 --- a/misc/removexattr.c +++ b/misc/removexattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/revoke.c b/misc/revoke.c index d1c0974245..7aa019a9d4 100644 --- a/misc/revoke.c +++ b/misc/revoke.c @@ -1,5 +1,5 @@ /* Revoke the access of all descriptors currently open on a file. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sbrk.c b/misc/sbrk.c index 281fcf1878..42e125537b 100644 --- a/misc/sbrk.c +++ b/misc/sbrk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/search.h b/misc/search.h index e3b3dfdc0a..e09790c832 100644 --- a/misc/search.h +++ b/misc/search.h @@ -1,5 +1,5 @@ /* Declarations for System V style searching functions. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/select.c b/misc/select.c index a02e0a2e34..8a5e65fe89 100644 --- a/misc/select.c +++ b/misc/select.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/setdomain.c b/misc/setdomain.c index 8e2070c008..63b022b9d3 100644 --- a/misc/setdomain.c +++ b/misc/setdomain.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/setegid.c b/misc/setegid.c index 8356203d06..7a70e964ba 100644 --- a/misc/setegid.c +++ b/misc/setegid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/seteuid.c b/misc/seteuid.c index 437299e70d..2e10ebf639 100644 --- a/misc/seteuid.c +++ b/misc/seteuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sethostid.c b/misc/sethostid.c index 404e3647f3..58f97c50ea 100644 --- a/misc/sethostid.c +++ b/misc/sethostid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sethostname.c b/misc/sethostname.c index c6d9d9df84..753d56c480 100644 --- a/misc/sethostname.c +++ b/misc/sethostname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/setregid.c b/misc/setregid.c index 0d7697ce3e..08fbe364ec 100644 --- a/misc/setregid.c +++ b/misc/setregid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/setreuid.c b/misc/setreuid.c index df07a7550c..811dcc2254 100644 --- a/misc/setreuid.c +++ b/misc/setreuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/setxattr.c b/misc/setxattr.c index 206727f1f0..7521cbb383 100644 --- a/misc/setxattr.c +++ b/misc/setxattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sgtty.h b/misc/sgtty.h index a9f7354631..a2128ebe24 100644 --- a/misc/sgtty.h +++ b/misc/sgtty.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sstk.c b/misc/sstk.c index 39fe9d07a2..a9ebf60ac9 100644 --- a/misc/sstk.c +++ b/misc/sstk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/stty.c b/misc/stty.c index aaac9d2c48..b44d297747 100644 --- a/misc/stty.c +++ b/misc/stty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/swapoff.c b/misc/swapoff.c index cff98b3da7..58899cc022 100644 --- a/misc/swapoff.c +++ b/misc/swapoff.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/swapon.c b/misc/swapon.c index 0e587d473f..350f6dd791 100644 --- a/misc/swapon.c +++ b/misc/swapon.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sync.c b/misc/sync.c index 0b18e72531..b6c24c0493 100644 --- a/misc/sync.c +++ b/misc/sync.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/syncfs.c b/misc/syncfs.c index a51e2ced02..52499e7e4c 100644 --- a/misc/syncfs.c +++ b/misc/syncfs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sys/auxv.h b/misc/sys/auxv.h index 7aec3a04b8..b2db69e473 100644 --- a/misc/sys/auxv.h +++ b/misc/sys/auxv.h @@ -1,5 +1,5 @@ /* Access to the auxiliary vector. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h index 4aded9bbbd..4d958ea066 100644 --- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sys/dir.h b/misc/sys/dir.h index 5421ededcd..31a56f399f 100644 --- a/misc/sys/dir.h +++ b/misc/sys/dir.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sys/file.h b/misc/sys/file.h index 64e8764c47..3b00dc4b25 100644 --- a/misc/sys/file.h +++ b/misc/sys/file.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sys/ioctl.h b/misc/sys/ioctl.h index 2dfff0863c..c4d35d9b4f 100644 --- a/misc/sys/ioctl.h +++ b/misc/sys/ioctl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sys/mman.h b/misc/sys/mman.h index 70454a5bd4..5a3be79b3c 100644 --- a/misc/sys/mman.h +++ b/misc/sys/mman.h @@ -1,5 +1,5 @@ /* Definitions for BSD-style memory management. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sys/param.h b/misc/sys/param.h index d257ec7576..8ac62ac64b 100644 --- a/misc/sys/param.h +++ b/misc/sys/param.h @@ -1,5 +1,5 @@ /* Compatibility header for old-style Unix parameters and limits. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sys/select.h b/misc/sys/select.h index 21351fef75..fd13bab41a 100644 --- a/misc/sys/select.h +++ b/misc/sys/select.h @@ -1,5 +1,5 @@ /* `fd_set' type and related macros, and `select'/`pselect' declarations. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sys/uio.h b/misc/sys/uio.h index 248151548c..183ea9de49 100644 --- a/misc/sys/uio.h +++ b/misc/sys/uio.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sys/ustat.h b/misc/sys/ustat.h index e4a125e4e1..ee82a45d8b 100644 --- a/misc/sys/ustat.h +++ b/misc/sys/ustat.h @@ -1,5 +1,5 @@ /* Header describing obsolete `ustat' interface. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/sys/xattr.h b/misc/sys/xattr.h index 20a93865bd..929cd87639 100644 --- a/misc/sys/xattr.h +++ b/misc/sys/xattr.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/syscall.c b/misc/syscall.c index d20e7a7776..5b9ea928aa 100644 --- a/misc/syscall.c +++ b/misc/syscall.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/truncate.c b/misc/truncate.c index c5525f1a65..7b96d85cfc 100644 --- a/misc/truncate.c +++ b/misc/truncate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/truncate64.c b/misc/truncate64.c index 991f71b70e..8c332deb9a 100644 --- a/misc/truncate64.c +++ b/misc/truncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/tsearch.c b/misc/tsearch.c index 1bd5470d2f..dd8761b873 100644 --- a/misc/tsearch.c +++ b/misc/tsearch.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bernd Schmidt , 1997. diff --git a/misc/tst-dirname.c b/misc/tst-dirname.c index c6967b365e..d8f33dfc94 100644 --- a/misc/tst-dirname.c +++ b/misc/tst-dirname.c @@ -1,5 +1,5 @@ /* Test program for dirname function a la XPG. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/misc/tst-efgcvt.c b/misc/tst-efgcvt.c index c9896492fc..303042d36e 100644 --- a/misc/tst-efgcvt.c +++ b/misc/tst-efgcvt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/tst-fdset.c b/misc/tst-fdset.c index 91d0370cf1..78a34e9e5e 100644 --- a/misc/tst-fdset.c +++ b/misc/tst-fdset.c @@ -1,5 +1,5 @@ /* Test FD* macros. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Robert Bihlmeyer . diff --git a/misc/tst-tsearch.c b/misc/tst-tsearch.c index 9f6df9c765..2dc5a670ab 100644 --- a/misc/tst-tsearch.c +++ b/misc/tst-tsearch.c @@ -1,5 +1,5 @@ /* Test program for tsearch et al. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/ualarm.c b/misc/ualarm.c index 6bff084158..628a7b0a5b 100644 --- a/misc/ualarm.c +++ b/misc/ualarm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/usleep.c b/misc/usleep.c index 6a38dd2b9a..e082ffab09 100644 --- a/misc/usleep.c +++ b/misc/usleep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/ustat.c b/misc/ustat.c index 30b2abef35..cb187511c5 100644 --- a/misc/ustat.c +++ b/misc/ustat.c @@ -1,5 +1,5 @@ /* Return info on filesystem. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/utimes.c b/misc/utimes.c index b335494db4..92f5fbe147 100644 --- a/misc/utimes.c +++ b/misc/utimes.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/vhangup.c b/misc/vhangup.c index afee526f39..0912b1a9ef 100644 --- a/misc/vhangup.c +++ b/misc/vhangup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/misc/writev.c b/misc/writev.c index 93a561bf0f..b703aacd9a 100644 --- a/misc/writev.c +++ b/misc/writev.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nis/Makefile b/nis/Makefile index 0ce99d0770..15f86baaa9 100644 --- a/nis/Makefile +++ b/nis/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/nis/libnsl.h b/nis/libnsl.h index 0858bc2908..f3d8ebc21d 100644 --- a/nis/libnsl.h +++ b/nis/libnsl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nis/nis_add.c b/nis/nis_add.c index 085641cd40..f3f3e4f045 100644 --- a/nis/nis_add.c +++ b/nis/nis_add.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_addmember.c b/nis/nis_addmember.c index 4ba297bbcd..147d2ea0a7 100644 --- a/nis/nis_addmember.c +++ b/nis/nis_addmember.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_call.c b/nis/nis_call.c index b97f8a1b55..c437732c69 100644 --- a/nis/nis_call.c +++ b/nis/nis_call.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_callback.c b/nis/nis_callback.c index ca58ccf97f..958c49f122 100644 --- a/nis/nis_callback.c +++ b/nis/nis_callback.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_checkpoint.c b/nis/nis_checkpoint.c index f344d8cbf8..05fec4d42a 100644 --- a/nis/nis_checkpoint.c +++ b/nis/nis_checkpoint.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_clone_dir.c b/nis/nis_clone_dir.c index 2f8046313e..13154c8632 100644 --- a/nis/nis_clone_dir.c +++ b/nis/nis_clone_dir.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_clone_obj.c b/nis/nis_clone_obj.c index 06df0c2b27..32dfa2f9eb 100644 --- a/nis/nis_clone_obj.c +++ b/nis/nis_clone_obj.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_clone_res.c b/nis/nis_clone_res.c index 3a4c8bf151..388b892a5a 100644 --- a/nis/nis_clone_res.c +++ b/nis/nis_clone_res.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_creategroup.c b/nis/nis_creategroup.c index aecc1edd7f..a9167348c3 100644 --- a/nis/nis_creategroup.c +++ b/nis/nis_creategroup.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_defaults.c b/nis/nis_defaults.c index ff84faea4a..7e92a800de 100644 --- a/nis/nis_defaults.c +++ b/nis/nis_defaults.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_destroygroup.c b/nis/nis_destroygroup.c index bce841eec9..53486fbd5f 100644 --- a/nis/nis_destroygroup.c +++ b/nis/nis_destroygroup.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_domain_of.c b/nis/nis_domain_of.c index c56be27363..79382e43e1 100644 --- a/nis/nis_domain_of.c +++ b/nis/nis_domain_of.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_domain_of_r.c b/nis/nis_domain_of_r.c index df8317aa58..52af9cc9cd 100644 --- a/nis/nis_domain_of_r.c +++ b/nis/nis_domain_of_r.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_error.c b/nis/nis_error.c index 550e9b0a0f..cf94003507 100644 --- a/nis/nis_error.c +++ b/nis/nis_error.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_file.c b/nis/nis_file.c index 0034ab9948..6cd88e2793 100644 --- a/nis/nis_file.c +++ b/nis/nis_file.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_findserv.c b/nis/nis_findserv.c index c5269c2156..b566425015 100644 --- a/nis/nis_findserv.c +++ b/nis/nis_findserv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_free.c b/nis/nis_free.c index a42362a3b3..cd834eb42f 100644 --- a/nis/nis_free.c +++ b/nis/nis_free.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_getservlist.c b/nis/nis_getservlist.c index 54840ab12a..ac9278e227 100644 --- a/nis/nis_getservlist.c +++ b/nis/nis_getservlist.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_hash.c b/nis/nis_hash.c index c927575cc2..dc5d6337f7 100644 --- a/nis/nis_hash.c +++ b/nis/nis_hash.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_intern.h b/nis/nis_intern.h index 4f76792203..7210a687c9 100644 --- a/nis/nis_intern.h +++ b/nis/nis_intern.h @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_ismember.c b/nis/nis_ismember.c index 4f2e3f572a..09d7890817 100644 --- a/nis/nis_ismember.c +++ b/nis/nis_ismember.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_local_names.c b/nis/nis_local_names.c index c69af724b5..5c0e0344a7 100644 --- a/nis/nis_local_names.c +++ b/nis/nis_local_names.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_lookup.c b/nis/nis_lookup.c index 5cf187e5ec..a41f121855 100644 --- a/nis/nis_lookup.c +++ b/nis/nis_lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_mkdir.c b/nis/nis_mkdir.c index 268ece432c..a233996e34 100644 --- a/nis/nis_mkdir.c +++ b/nis/nis_mkdir.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_modify.c b/nis/nis_modify.c index 053a3778e1..8469f49417 100644 --- a/nis/nis_modify.c +++ b/nis/nis_modify.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_ping.c b/nis/nis_ping.c index d042770489..633231f169 100644 --- a/nis/nis_ping.c +++ b/nis/nis_ping.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_print.c b/nis/nis_print.c index e872b20673..1efa0e989a 100644 --- a/nis/nis_print.c +++ b/nis/nis_print.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_print_group_entry.c b/nis/nis_print_group_entry.c index 2fe42bae58..ffb8ed2433 100644 --- a/nis/nis_print_group_entry.c +++ b/nis/nis_print_group_entry.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_remove.c b/nis/nis_remove.c index 97f7439eac..4faaaf4b4e 100644 --- a/nis/nis_remove.c +++ b/nis/nis_remove.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_removemember.c b/nis/nis_removemember.c index 43178e7cb4..79e380ef7d 100644 --- a/nis/nis_removemember.c +++ b/nis/nis_removemember.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_rmdir.c b/nis/nis_rmdir.c index 218c71c19f..2e28aad44b 100644 --- a/nis/nis_rmdir.c +++ b/nis/nis_rmdir.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_server.c b/nis/nis_server.c index 93cbd28a73..70510c3002 100644 --- a/nis/nis_server.c +++ b/nis/nis_server.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_subr.c b/nis/nis_subr.c index a03600d14b..4a4580a1e6 100644 --- a/nis/nis_subr.c +++ b/nis/nis_subr.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_table.c b/nis/nis_table.c index 0ca40dbc6e..9344a1f7b3 100644 --- a/nis/nis_table.c +++ b/nis/nis_table.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_util.c b/nis/nis_util.c index 79c27ecdb8..193f3093be 100644 --- a/nis/nis_util.c +++ b/nis/nis_util.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_verifygroup.c b/nis/nis_verifygroup.c index 839f0c87eb..79fb962ac0 100644 --- a/nis/nis_verifygroup.c +++ b/nis/nis_verifygroup.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_xdr.c b/nis/nis_xdr.c index 10c913c5cc..d7ca81910e 100644 --- a/nis/nis_xdr.c +++ b/nis/nis_xdr.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nis_xdr.h b/nis/nis_xdr.h index b8d1f60d40..2ac1e9f53f 100644 --- a/nis/nis_xdr.h +++ b/nis/nis_xdr.h @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nis/nisplus-parser.h b/nis/nisplus-parser.h index 5d8c408219..5f39d749f0 100644 --- a/nis/nisplus-parser.h +++ b/nis/nisplus-parser.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss-default.c b/nis/nss-default.c index 0327351c7d..1b7bee10fb 100644 --- a/nis/nss-default.c +++ b/nis/nss-default.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nis/nss-nis.c b/nis/nss-nis.c index 08c8d7588c..ea1a3fc5d8 100644 --- a/nis/nss-nis.c +++ b/nis/nss-nis.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nis/nss-nis.h b/nis/nss-nis.h index e2c40fd40a..ec24d6491c 100644 --- a/nis/nss-nis.h +++ b/nis/nss-nis.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nis/nss-nisplus.c b/nis/nss-nisplus.c index 038552f76f..0ed4be2a78 100644 --- a/nis/nss-nisplus.c +++ b/nis/nss-nisplus.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss-nisplus.h b/nis/nss-nisplus.h index f28a08f142..349529ad36 100644 --- a/nis/nss-nisplus.h +++ b/nis/nss-nisplus.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_compat/compat-grp.c b/nis/nss_compat/compat-grp.c index 72a9a7aa92..2d57461fed 100644 --- a/nis/nss_compat/compat-grp.c +++ b/nis/nss_compat/compat-grp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_compat/compat-initgroups.c b/nis/nss_compat/compat-initgroups.c index cf924c4a4f..fa1523891e 100644 --- a/nis/nss_compat/compat-initgroups.c +++ b/nis/nss_compat/compat-initgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nis/nss_compat/compat-pwd.c b/nis/nss_compat/compat-pwd.c index f934fb24a1..021fb18d19 100644 --- a/nis/nss_compat/compat-pwd.c +++ b/nis/nss_compat/compat-pwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_compat/compat-spwd.c b/nis/nss_compat/compat-spwd.c index e854b285d5..1c2ec3d875 100644 --- a/nis/nss_compat/compat-spwd.c +++ b/nis/nss_compat/compat-spwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-alias.c b/nis/nss_nis/nis-alias.c index 1d84d293b3..2f708c185c 100644 --- a/nis/nss_nis/nis-alias.c +++ b/nis/nss_nis/nis-alias.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-ethers.c b/nis/nss_nis/nis-ethers.c index 3f9d03e887..a803c27ac6 100644 --- a/nis/nss_nis/nis-ethers.c +++ b/nis/nss_nis/nis-ethers.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-grp.c b/nis/nss_nis/nis-grp.c index 5176354e94..53368073a7 100644 --- a/nis/nss_nis/nis-grp.c +++ b/nis/nss_nis/nis-grp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-hosts.c b/nis/nss_nis/nis-hosts.c index 830285615b..f73a0eccb2 100644 --- a/nis/nss_nis/nis-hosts.c +++ b/nis/nss_nis/nis-hosts.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-initgroups.c b/nis/nss_nis/nis-initgroups.c index 87ceca2205..30bc90f691 100644 --- a/nis/nss_nis/nis-initgroups.c +++ b/nis/nss_nis/nis-initgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nis/nss_nis/nis-netgrp.c b/nis/nss_nis/nis-netgrp.c index 20dcd0424b..d4b2e569d3 100644 --- a/nis/nss_nis/nis-netgrp.c +++ b/nis/nss_nis/nis-netgrp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-network.c b/nis/nss_nis/nis-network.c index ba84555d71..da28860003 100644 --- a/nis/nss_nis/nis-network.c +++ b/nis/nss_nis/nis-network.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-proto.c b/nis/nss_nis/nis-proto.c index cfe67098ce..eff2eddd6c 100644 --- a/nis/nss_nis/nis-proto.c +++ b/nis/nss_nis/nis-proto.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-publickey.c b/nis/nss_nis/nis-publickey.c index 244e464978..cec43e2b24 100644 --- a/nis/nss_nis/nis-publickey.c +++ b/nis/nss_nis/nis-publickey.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-pwd.c b/nis/nss_nis/nis-pwd.c index 8df6dd3d38..6726efde57 100644 --- a/nis/nss_nis/nis-pwd.c +++ b/nis/nss_nis/nis-pwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-rpc.c b/nis/nss_nis/nis-rpc.c index d9ad06385e..a2fff630c4 100644 --- a/nis/nss_nis/nis-rpc.c +++ b/nis/nss_nis/nis-rpc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-service.c b/nis/nss_nis/nis-service.c index a63e8e9ca9..fd79d3fe07 100644 --- a/nis/nss_nis/nis-service.c +++ b/nis/nss_nis/nis-service.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nis/nis-spwd.c b/nis/nss_nis/nis-spwd.c index 1cc1200ddd..d024c0d22c 100644 --- a/nis/nss_nis/nis-spwd.c +++ b/nis/nss_nis/nis-spwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/nss_nisplus/nisplus-alias.c b/nis/nss_nisplus/nisplus-alias.c index aa965242d2..e3a82ffc49 100644 --- a/nis/nss_nisplus/nisplus-alias.c +++ b/nis/nss_nisplus/nisplus-alias.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-ethers.c b/nis/nss_nisplus/nisplus-ethers.c index 59b2f80373..cc7695f037 100644 --- a/nis/nss_nisplus/nisplus-ethers.c +++ b/nis/nss_nisplus/nisplus-ethers.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-grp.c b/nis/nss_nisplus/nisplus-grp.c index ad0764272c..8667532977 100644 --- a/nis/nss_nisplus/nisplus-grp.c +++ b/nis/nss_nisplus/nisplus-grp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-hosts.c b/nis/nss_nisplus/nisplus-hosts.c index 9c7a0b71f1..62440f2459 100644 --- a/nis/nss_nisplus/nisplus-hosts.c +++ b/nis/nss_nisplus/nisplus-hosts.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-initgroups.c b/nis/nss_nisplus/nisplus-initgroups.c index b54c53dba6..9df9643a28 100644 --- a/nis/nss_nisplus/nisplus-initgroups.c +++ b/nis/nss_nisplus/nisplus-initgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nis/nss_nisplus/nisplus-netgrp.c b/nis/nss_nisplus/nisplus-netgrp.c index 975901bc26..1027be1db6 100644 --- a/nis/nss_nisplus/nisplus-netgrp.c +++ b/nis/nss_nisplus/nisplus-netgrp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-network.c b/nis/nss_nisplus/nisplus-network.c index 7413c444d3..ed4a8f35e4 100644 --- a/nis/nss_nisplus/nisplus-network.c +++ b/nis/nss_nisplus/nisplus-network.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-parser.c b/nis/nss_nisplus/nisplus-parser.c index c9d9264a5f..42f49e036b 100644 --- a/nis/nss_nisplus/nisplus-parser.c +++ b/nis/nss_nisplus/nisplus-parser.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-proto.c b/nis/nss_nisplus/nisplus-proto.c index ddc6612245..358d7de216 100644 --- a/nis/nss_nisplus/nisplus-proto.c +++ b/nis/nss_nisplus/nisplus-proto.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-publickey.c b/nis/nss_nisplus/nisplus-publickey.c index bd4b9e52aa..4aef42450c 100644 --- a/nis/nss_nisplus/nisplus-publickey.c +++ b/nis/nss_nisplus/nisplus-publickey.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1997-2013 Free Software Foundation, Inc. +/* Copyright (c) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-pwd.c b/nis/nss_nisplus/nisplus-pwd.c index d493e57cb9..1a732bc813 100644 --- a/nis/nss_nisplus/nisplus-pwd.c +++ b/nis/nss_nisplus/nisplus-pwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-rpc.c b/nis/nss_nisplus/nisplus-rpc.c index e62a84bad8..5604a5f850 100644 --- a/nis/nss_nisplus/nisplus-rpc.c +++ b/nis/nss_nisplus/nisplus-rpc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-service.c b/nis/nss_nisplus/nisplus-service.c index 477cdb27fa..805ccfb2fb 100644 --- a/nis/nss_nisplus/nisplus-service.c +++ b/nis/nss_nisplus/nisplus-service.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/nss_nisplus/nisplus-spwd.c b/nis/nss_nisplus/nisplus-spwd.c index 5bf296aa43..5b671e2681 100644 --- a/nis/nss_nisplus/nisplus-spwd.c +++ b/nis/nss_nisplus/nisplus-spwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/rpcsvc/nislib.h b/nis/rpcsvc/nislib.h index 2f6fd768b3..3c6c33f03c 100644 --- a/nis/rpcsvc/nislib.h +++ b/nis/rpcsvc/nislib.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/nis/rpcsvc/ypclnt.h b/nis/rpcsvc/ypclnt.h index cdfe848b1a..3217299be0 100644 --- a/nis/rpcsvc/ypclnt.h +++ b/nis/rpcsvc/ypclnt.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nis/ypclnt.c b/nis/ypclnt.c index 7469d3b066..400db0a7ee 100644 --- a/nis/ypclnt.c +++ b/nis/ypclnt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1996. diff --git a/nptl/Makeconfig b/nptl/Makeconfig index 2a1399d74b..bfd1db0b31 100644 --- a/nptl/Makeconfig +++ b/nptl/Makeconfig @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 2002. diff --git a/nptl/Makefile b/nptl/Makefile index 0fbfc4d3b4..57cc8c69e4 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/alloca_cutoff.c b/nptl/alloca_cutoff.c index f9eb3d4fbf..deffffc3bf 100644 --- a/nptl/alloca_cutoff.c +++ b/nptl/alloca_cutoff.c @@ -1,5 +1,5 @@ /* Determine whether block of given size can be allocated on the stack or not. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c index 96e3845088..7f6094ebb2 100644 --- a/nptl/allocatestack.c +++ b/nptl/allocatestack.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/cancellation.c b/nptl/cancellation.c index be504e0380..bddea1f3fa 100644 --- a/nptl/cancellation.c +++ b/nptl/cancellation.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/cleanup.c b/nptl/cleanup.c index 07e064b41e..64334bf9e0 100644 --- a/nptl/cleanup.c +++ b/nptl/cleanup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/cleanup_compat.c b/nptl/cleanup_compat.c index c62d6e452b..a51aa13343 100644 --- a/nptl/cleanup_compat.c +++ b/nptl/cleanup_compat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/cleanup_defer.c b/nptl/cleanup_defer.c index 170623d7a1..4049497155 100644 --- a/nptl/cleanup_defer.c +++ b/nptl/cleanup_defer.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/cleanup_defer_compat.c b/nptl/cleanup_defer_compat.c index d9035fdb18..b57fd4e285 100644 --- a/nptl/cleanup_defer_compat.c +++ b/nptl/cleanup_defer_compat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/cleanup_routine.c b/nptl/cleanup_routine.c index e037f2bfd7..9e41e1b503 100644 --- a/nptl/cleanup_routine.c +++ b/nptl/cleanup_routine.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/descr.h b/nptl/descr.h index 58176ea2d8..61d57d5732 100644 --- a/nptl/descr.h +++ b/nptl/descr.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/eintr.c b/nptl/eintr.c index 70e42e4d28..83e6dab035 100644 --- a/nptl/eintr.c +++ b/nptl/eintr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/events.c b/nptl/events.c index b1929e8696..b5fa695fe5 100644 --- a/nptl/events.c +++ b/nptl/events.c @@ -1,5 +1,5 @@ /* Event functions used while debugging. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/forward.c b/nptl/forward.c index 585edc9ff2..6355c2396f 100644 --- a/nptl/forward.c +++ b/nptl/forward.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/herrno.c b/nptl/herrno.c index 0c4c3b840d..2b2a26f18d 100644 --- a/nptl/herrno.c +++ b/nptl/herrno.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/libc-cancellation.c b/nptl/libc-cancellation.c index 13c0864b07..c2c1fbb519 100644 --- a/nptl/libc-cancellation.c +++ b/nptl/libc-cancellation.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/libc-cleanup.c b/nptl/libc-cleanup.c index 673cf7c9d6..8dbb919ba0 100644 --- a/nptl/libc-cleanup.c +++ b/nptl/libc-cleanup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/lowlevellock.h b/nptl/lowlevellock.h index e57a337c27..7d1913a58d 100644 --- a/nptl/lowlevellock.h +++ b/nptl/lowlevellock.h @@ -1,5 +1,5 @@ /* Low level locking macros used in NPTL implementation. Stub version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/nptl-init.c b/nptl/nptl-init.c index 4e99a38e9e..4d1f7d8721 100644 --- a/nptl/nptl-init.c +++ b/nptl/nptl-init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/old_pthread_atfork.c b/nptl/old_pthread_atfork.c index f1142d3111..0779db09fe 100644 --- a/nptl/old_pthread_atfork.c +++ b/nptl/old_pthread_atfork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/old_pthread_cond_broadcast.c b/nptl/old_pthread_cond_broadcast.c index 27dbfc8942..cede6c502c 100644 --- a/nptl/old_pthread_cond_broadcast.c +++ b/nptl/old_pthread_cond_broadcast.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/old_pthread_cond_destroy.c b/nptl/old_pthread_cond_destroy.c index 423a177812..36fa715a46 100644 --- a/nptl/old_pthread_cond_destroy.c +++ b/nptl/old_pthread_cond_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/old_pthread_cond_init.c b/nptl/old_pthread_cond_init.c index 8324c4d316..593a86c2a3 100644 --- a/nptl/old_pthread_cond_init.c +++ b/nptl/old_pthread_cond_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/old_pthread_cond_signal.c b/nptl/old_pthread_cond_signal.c index dae66d0b79..dc56cefa0c 100644 --- a/nptl/old_pthread_cond_signal.c +++ b/nptl/old_pthread_cond_signal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/old_pthread_cond_timedwait.c b/nptl/old_pthread_cond_timedwait.c index bb4f098191..bbd1557124 100644 --- a/nptl/old_pthread_cond_timedwait.c +++ b/nptl/old_pthread_cond_timedwait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/old_pthread_cond_wait.c b/nptl/old_pthread_cond_wait.c index afca81d064..fef445cfcc 100644 --- a/nptl/old_pthread_cond_wait.c +++ b/nptl/old_pthread_cond_wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/perf.c b/nptl/perf.c index b456b41699..ceb30c6bcc 100644 --- a/nptl/perf.c +++ b/nptl/perf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pt-allocrtsig.c b/nptl/pt-allocrtsig.c index 86f0be18aa..fcc808a208 100644 --- a/nptl/pt-allocrtsig.c +++ b/nptl/pt-allocrtsig.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pt-cleanup.c b/nptl/pt-cleanup.c index 90ede84ae9..208ca68d2b 100644 --- a/nptl/pt-cleanup.c +++ b/nptl/pt-cleanup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pt-crti.S b/nptl/pt-crti.S index 23ddc582c6..064c06b2af 100644 --- a/nptl/pt-crti.S +++ b/nptl/pt-crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for libpthread. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/pt-raise.c b/nptl/pt-raise.c index 86f0c8c802..8132f00179 100644 --- a/nptl/pt-raise.c +++ b/nptl/pt-raise.c @@ -1,5 +1,5 @@ /* ISO C raise function for libpthread. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pt-system.c b/nptl/pt-system.c index 1fcd4ae447..4fc1bf2d6a 100644 --- a/nptl/pt-system.c +++ b/nptl/pt-system.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 789bbf6ae8..197401af89 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_atfork.c b/nptl/pthread_atfork.c index bf0a1c580e..8def99f749 100644 --- a/nptl/pthread_atfork.c +++ b/nptl/pthread_atfork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_destroy.c b/nptl/pthread_attr_destroy.c index 18ce5f4884..05d9ee8d15 100644 --- a/nptl/pthread_attr_destroy.c +++ b/nptl/pthread_attr_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_getdetachstate.c b/nptl/pthread_attr_getdetachstate.c index b00b28d3fc..8f09875995 100644 --- a/nptl/pthread_attr_getdetachstate.c +++ b/nptl/pthread_attr_getdetachstate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_getguardsize.c b/nptl/pthread_attr_getguardsize.c index b96b5eea6a..6204e7d38d 100644 --- a/nptl/pthread_attr_getguardsize.c +++ b/nptl/pthread_attr_getguardsize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_getinheritsched.c b/nptl/pthread_attr_getinheritsched.c index f46335e8cb..aab29718c1 100644 --- a/nptl/pthread_attr_getinheritsched.c +++ b/nptl/pthread_attr_getinheritsched.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_getschedparam.c b/nptl/pthread_attr_getschedparam.c index 46a22e9267..5a8f32b934 100644 --- a/nptl/pthread_attr_getschedparam.c +++ b/nptl/pthread_attr_getschedparam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_getschedpolicy.c b/nptl/pthread_attr_getschedpolicy.c index 65463f79f6..0d3104e30a 100644 --- a/nptl/pthread_attr_getschedpolicy.c +++ b/nptl/pthread_attr_getschedpolicy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_getscope.c b/nptl/pthread_attr_getscope.c index 7c052aac50..ada4a9d842 100644 --- a/nptl/pthread_attr_getscope.c +++ b/nptl/pthread_attr_getscope.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_getstack.c b/nptl/pthread_attr_getstack.c index 03907b7242..3f4fd8d40a 100644 --- a/nptl/pthread_attr_getstack.c +++ b/nptl/pthread_attr_getstack.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_getstackaddr.c b/nptl/pthread_attr_getstackaddr.c index 8093edcf0a..a137007004 100644 --- a/nptl/pthread_attr_getstackaddr.c +++ b/nptl/pthread_attr_getstackaddr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_getstacksize.c b/nptl/pthread_attr_getstacksize.c index 84c31cd6e4..d43bde81cf 100644 --- a/nptl/pthread_attr_getstacksize.c +++ b/nptl/pthread_attr_getstacksize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_init.c b/nptl/pthread_attr_init.c index 737563a54b..9030ea57d0 100644 --- a/nptl/pthread_attr_init.c +++ b/nptl/pthread_attr_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_setdetachstate.c b/nptl/pthread_attr_setdetachstate.c index ac82307476..603122e770 100644 --- a/nptl/pthread_attr_setdetachstate.c +++ b/nptl/pthread_attr_setdetachstate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_setguardsize.c b/nptl/pthread_attr_setguardsize.c index 8723272224..d67d219364 100644 --- a/nptl/pthread_attr_setguardsize.c +++ b/nptl/pthread_attr_setguardsize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_setinheritsched.c b/nptl/pthread_attr_setinheritsched.c index fec1421676..9295c9315c 100644 --- a/nptl/pthread_attr_setinheritsched.c +++ b/nptl/pthread_attr_setinheritsched.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_setschedparam.c b/nptl/pthread_attr_setschedparam.c index a167f153d1..3635a33637 100644 --- a/nptl/pthread_attr_setschedparam.c +++ b/nptl/pthread_attr_setschedparam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_setschedpolicy.c b/nptl/pthread_attr_setschedpolicy.c index 4fe0b8e102..dfd57963bf 100644 --- a/nptl/pthread_attr_setschedpolicy.c +++ b/nptl/pthread_attr_setschedpolicy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_setscope.c b/nptl/pthread_attr_setscope.c index 84db0a2c62..1d26b832b3 100644 --- a/nptl/pthread_attr_setscope.c +++ b/nptl/pthread_attr_setscope.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_setstack.c b/nptl/pthread_attr_setstack.c index 4bd314e66a..19a5b54981 100644 --- a/nptl/pthread_attr_setstack.c +++ b/nptl/pthread_attr_setstack.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_setstackaddr.c b/nptl/pthread_attr_setstackaddr.c index 40855b8246..e7e7ded4fc 100644 --- a/nptl/pthread_attr_setstackaddr.c +++ b/nptl/pthread_attr_setstackaddr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_attr_setstacksize.c b/nptl/pthread_attr_setstacksize.c index 585bf087df..79997c9cc8 100644 --- a/nptl/pthread_attr_setstacksize.c +++ b/nptl/pthread_attr_setstacksize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_barrier_destroy.c b/nptl/pthread_barrier_destroy.c index cafcb8b575..60fe2dfbff 100644 --- a/nptl/pthread_barrier_destroy.c +++ b/nptl/pthread_barrier_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_barrier_init.c b/nptl/pthread_barrier_init.c index 6d2910ef95..0e603ba59e 100644 --- a/nptl/pthread_barrier_init.c +++ b/nptl/pthread_barrier_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_barrier_wait.c b/nptl/pthread_barrier_wait.c index 0a5bd69d59..6126f1b137 100644 --- a/nptl/pthread_barrier_wait.c +++ b/nptl/pthread_barrier_wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/pthread_barrierattr_destroy.c b/nptl/pthread_barrierattr_destroy.c index d5aeac6002..048430ab5b 100644 --- a/nptl/pthread_barrierattr_destroy.c +++ b/nptl/pthread_barrierattr_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_barrierattr_getpshared.c b/nptl/pthread_barrierattr_getpshared.c index 37172024e6..c95032c441 100644 --- a/nptl/pthread_barrierattr_getpshared.c +++ b/nptl/pthread_barrierattr_getpshared.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_barrierattr_init.c b/nptl/pthread_barrierattr_init.c index a12cab4d56..df4a6e2537 100644 --- a/nptl/pthread_barrierattr_init.c +++ b/nptl/pthread_barrierattr_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_barrierattr_setpshared.c b/nptl/pthread_barrierattr_setpshared.c index 74a45704fc..0fe656887f 100644 --- a/nptl/pthread_barrierattr_setpshared.c +++ b/nptl/pthread_barrierattr_setpshared.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_cancel.c b/nptl/pthread_cancel.c index 46a97077b5..6ab81722a3 100644 --- a/nptl/pthread_cancel.c +++ b/nptl/pthread_cancel.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_clock_gettime.c b/nptl/pthread_clock_gettime.c index 0abb4b9743..7183efcc1d 100644 --- a/nptl/pthread_clock_gettime.c +++ b/nptl/pthread_clock_gettime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/pthread_clock_settime.c b/nptl/pthread_clock_settime.c index 2338e46c82..d3e4f667b0 100644 --- a/nptl/pthread_clock_settime.c +++ b/nptl/pthread_clock_settime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/pthread_cond_broadcast.c b/nptl/pthread_cond_broadcast.c index 7ba9efa0c0..ed30e7c60b 100644 --- a/nptl/pthread_cond_broadcast.c +++ b/nptl/pthread_cond_broadcast.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/pthread_cond_destroy.c b/nptl/pthread_cond_destroy.c index ebf150525f..2cc2b88276 100644 --- a/nptl/pthread_cond_destroy.c +++ b/nptl/pthread_cond_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_cond_init.c b/nptl/pthread_cond_init.c index 7789728d64..27efc9ca6f 100644 --- a/nptl/pthread_cond_init.c +++ b/nptl/pthread_cond_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_cond_signal.c b/nptl/pthread_cond_signal.c index ffc35dc9e1..22bef3d489 100644 --- a/nptl/pthread_cond_signal.c +++ b/nptl/pthread_cond_signal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/pthread_cond_timedwait.c b/nptl/pthread_cond_timedwait.c index 0a2d092e6c..b975b8f126 100644 --- a/nptl/pthread_cond_timedwait.c +++ b/nptl/pthread_cond_timedwait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/pthread_cond_wait.c b/nptl/pthread_cond_wait.c index 01d42d7834..6222d922ff 100644 --- a/nptl/pthread_cond_wait.c +++ b/nptl/pthread_cond_wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/pthread_condattr_destroy.c b/nptl/pthread_condattr_destroy.c index 7db3cf8d34..fdfa8af7c2 100644 --- a/nptl/pthread_condattr_destroy.c +++ b/nptl/pthread_condattr_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_condattr_getclock.c b/nptl/pthread_condattr_getclock.c index f23698661c..d06aef671d 100644 --- a/nptl/pthread_condattr_getclock.c +++ b/nptl/pthread_condattr_getclock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/pthread_condattr_getpshared.c b/nptl/pthread_condattr_getpshared.c index 58992abb8d..065b174419 100644 --- a/nptl/pthread_condattr_getpshared.c +++ b/nptl/pthread_condattr_getpshared.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_condattr_init.c b/nptl/pthread_condattr_init.c index 06867ad0a3..f79ff6bec4 100644 --- a/nptl/pthread_condattr_init.c +++ b/nptl/pthread_condattr_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_condattr_setclock.c b/nptl/pthread_condattr_setclock.c index f806771144..35d2c0794b 100644 --- a/nptl/pthread_condattr_setclock.c +++ b/nptl/pthread_condattr_setclock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/pthread_condattr_setpshared.c b/nptl/pthread_condattr_setpshared.c index 3067227b0e..c393bd59e1 100644 --- a/nptl/pthread_condattr_setpshared.c +++ b/nptl/pthread_condattr_setpshared.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c index 7f714f8903..9d7f52f57e 100644 --- a/nptl/pthread_create.c +++ b/nptl/pthread_create.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_detach.c b/nptl/pthread_detach.c index 4ac095b392..e1ba6bad38 100644 --- a/nptl/pthread_detach.c +++ b/nptl/pthread_detach.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_equal.c b/nptl/pthread_equal.c index 07ae0cb299..ec54d738ef 100644 --- a/nptl/pthread_equal.c +++ b/nptl/pthread_equal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_exit.c b/nptl/pthread_exit.c index 263e792806..33d80d641a 100644 --- a/nptl/pthread_exit.c +++ b/nptl/pthread_exit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_getattr_default_np.c b/nptl/pthread_getattr_default_np.c index f3a6b47464..e233bed7ca 100644 --- a/nptl/pthread_getattr_default_np.c +++ b/nptl/pthread_getattr_default_np.c @@ -1,5 +1,5 @@ /* Get the default attributes used by pthread_create in the process. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/pthread_getattr_np.c b/nptl/pthread_getattr_np.c index 88ac072aeb..e79f282fee 100644 --- a/nptl/pthread_getattr_np.c +++ b/nptl/pthread_getattr_np.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_getconcurrency.c b/nptl/pthread_getconcurrency.c index 3db64b8b5e..227e62d0c8 100644 --- a/nptl/pthread_getconcurrency.c +++ b/nptl/pthread_getconcurrency.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_getcpuclockid.c b/nptl/pthread_getcpuclockid.c index 6fd9f9b379..475a96157c 100644 --- a/nptl/pthread_getcpuclockid.c +++ b/nptl/pthread_getcpuclockid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/pthread_getschedparam.c b/nptl/pthread_getschedparam.c index 7d996e4f8c..dd0bbde073 100644 --- a/nptl/pthread_getschedparam.c +++ b/nptl/pthread_getschedparam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_getspecific.c b/nptl/pthread_getspecific.c index 2cedc397a5..e0e7daca24 100644 --- a/nptl/pthread_getspecific.c +++ b/nptl/pthread_getspecific.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_join.c b/nptl/pthread_join.c index 047985af0d..69f844a860 100644 --- a/nptl/pthread_join.c +++ b/nptl/pthread_join.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_key_create.c b/nptl/pthread_key_create.c index 99d5a4b7c1..a22e446e18 100644 --- a/nptl/pthread_key_create.c +++ b/nptl/pthread_key_create.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_key_delete.c b/nptl/pthread_key_delete.c index ad96597e26..a79a0ea52a 100644 --- a/nptl/pthread_key_delete.c +++ b/nptl/pthread_key_delete.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_kill_other_threads.c b/nptl/pthread_kill_other_threads.c index 3a3fd35db4..c404916b84 100644 --- a/nptl/pthread_kill_other_threads.c +++ b/nptl/pthread_kill_other_threads.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutex_consistent.c b/nptl/pthread_mutex_consistent.c index 2b61ec01f4..04ca1379b5 100644 --- a/nptl/pthread_mutex_consistent.c +++ b/nptl/pthread_mutex_consistent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2005. diff --git a/nptl/pthread_mutex_destroy.c b/nptl/pthread_mutex_destroy.c index d2c492fcb7..35a2dfeea0 100644 --- a/nptl/pthread_mutex_destroy.c +++ b/nptl/pthread_mutex_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutex_getprioceiling.c b/nptl/pthread_mutex_getprioceiling.c index 4b83d494e6..a19d3f2b35 100644 --- a/nptl/pthread_mutex_getprioceiling.c +++ b/nptl/pthread_mutex_getprioceiling.c @@ -1,5 +1,5 @@ /* Get current priority ceiling of pthread_mutex_t. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/nptl/pthread_mutex_init.c b/nptl/pthread_mutex_init.c index 174d900dc8..d67dcdb5e2 100644 --- a/nptl/pthread_mutex_init.c +++ b/nptl/pthread_mutex_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutex_lock.c b/nptl/pthread_mutex_lock.c index 76dd903142..add76e8a23 100644 --- a/nptl/pthread_mutex_lock.c +++ b/nptl/pthread_mutex_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutex_setprioceiling.c b/nptl/pthread_mutex_setprioceiling.c index a7300f89b1..52f65a0fcf 100644 --- a/nptl/pthread_mutex_setprioceiling.c +++ b/nptl/pthread_mutex_setprioceiling.c @@ -1,5 +1,5 @@ /* Set current priority ceiling of pthread_mutex_t. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/nptl/pthread_mutex_timedlock.c b/nptl/pthread_mutex_timedlock.c index 689cefa2de..8e7a52b54f 100644 --- a/nptl/pthread_mutex_timedlock.c +++ b/nptl/pthread_mutex_timedlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutex_trylock.c b/nptl/pthread_mutex_trylock.c index 24fb05286f..4d5f75d24f 100644 --- a/nptl/pthread_mutex_trylock.c +++ b/nptl/pthread_mutex_trylock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutex_unlock.c b/nptl/pthread_mutex_unlock.c index 6914503626..8fe5b67f09 100644 --- a/nptl/pthread_mutex_unlock.c +++ b/nptl/pthread_mutex_unlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutexattr_destroy.c b/nptl/pthread_mutexattr_destroy.c index 18b72ddfe9..79e31ee426 100644 --- a/nptl/pthread_mutexattr_destroy.c +++ b/nptl/pthread_mutexattr_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutexattr_getprioceiling.c b/nptl/pthread_mutexattr_getprioceiling.c index 6831fe3d28..c3e93fa655 100644 --- a/nptl/pthread_mutexattr_getprioceiling.c +++ b/nptl/pthread_mutexattr_getprioceiling.c @@ -1,5 +1,5 @@ /* Get priority ceiling setting from pthread_mutexattr_t. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/nptl/pthread_mutexattr_getprotocol.c b/nptl/pthread_mutexattr_getprotocol.c index f71afafbe6..b14da412a9 100644 --- a/nptl/pthread_mutexattr_getprotocol.c +++ b/nptl/pthread_mutexattr_getprotocol.c @@ -1,5 +1,5 @@ /* Get priority protocol setting from pthread_mutexattr_t. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/nptl/pthread_mutexattr_getpshared.c b/nptl/pthread_mutexattr_getpshared.c index b34eca679e..415deeedfa 100644 --- a/nptl/pthread_mutexattr_getpshared.c +++ b/nptl/pthread_mutexattr_getpshared.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutexattr_getrobust.c b/nptl/pthread_mutexattr_getrobust.c index b402e75ea5..d53757556e 100644 --- a/nptl/pthread_mutexattr_getrobust.c +++ b/nptl/pthread_mutexattr_getrobust.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2005. diff --git a/nptl/pthread_mutexattr_gettype.c b/nptl/pthread_mutexattr_gettype.c index 9008a49882..4685da4309 100644 --- a/nptl/pthread_mutexattr_gettype.c +++ b/nptl/pthread_mutexattr_gettype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutexattr_init.c b/nptl/pthread_mutexattr_init.c index b08eeab59a..ca4079c89a 100644 --- a/nptl/pthread_mutexattr_init.c +++ b/nptl/pthread_mutexattr_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutexattr_setprioceiling.c b/nptl/pthread_mutexattr_setprioceiling.c index d3bf59381c..d10e51cbfa 100644 --- a/nptl/pthread_mutexattr_setprioceiling.c +++ b/nptl/pthread_mutexattr_setprioceiling.c @@ -1,5 +1,5 @@ /* Change priority ceiling setting in pthread_mutexattr_t. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/nptl/pthread_mutexattr_setprotocol.c b/nptl/pthread_mutexattr_setprotocol.c index c45d8e4d47..6860dd0e68 100644 --- a/nptl/pthread_mutexattr_setprotocol.c +++ b/nptl/pthread_mutexattr_setprotocol.c @@ -1,5 +1,5 @@ /* Change priority protocol setting in pthread_mutexattr_t. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/nptl/pthread_mutexattr_setpshared.c b/nptl/pthread_mutexattr_setpshared.c index c9b06e9d52..d1121aa2d1 100644 --- a/nptl/pthread_mutexattr_setpshared.c +++ b/nptl/pthread_mutexattr_setpshared.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_mutexattr_setrobust.c b/nptl/pthread_mutexattr_setrobust.c index 63ae8a5923..6b749cfd70 100644 --- a/nptl/pthread_mutexattr_setrobust.c +++ b/nptl/pthread_mutexattr_setrobust.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2005. diff --git a/nptl/pthread_mutexattr_settype.c b/nptl/pthread_mutexattr_settype.c index a85cdcb389..0e912920d0 100644 --- a/nptl/pthread_mutexattr_settype.c +++ b/nptl/pthread_mutexattr_settype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_once.c b/nptl/pthread_once.c index 86ea5e219c..664b048acb 100644 --- a/nptl/pthread_once.c +++ b/nptl/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_rwlock_destroy.c b/nptl/pthread_rwlock_destroy.c index f714ea0a30..62e22adeb9 100644 --- a/nptl/pthread_rwlock_destroy.c +++ b/nptl/pthread_rwlock_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_rwlock_init.c b/nptl/pthread_rwlock_init.c index 29bef71db3..f1066b3400 100644 --- a/nptl/pthread_rwlock_init.c +++ b/nptl/pthread_rwlock_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_rwlock_rdlock.c b/nptl/pthread_rwlock_rdlock.c index f74e33a28e..a06c3f2d8b 100644 --- a/nptl/pthread_rwlock_rdlock.c +++ b/nptl/pthread_rwlock_rdlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/pthread_rwlock_timedrdlock.c b/nptl/pthread_rwlock_timedrdlock.c index 86a1d29bcb..770cc343cf 100644 --- a/nptl/pthread_rwlock_timedrdlock.c +++ b/nptl/pthread_rwlock_timedrdlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/pthread_rwlock_timedwrlock.c b/nptl/pthread_rwlock_timedwrlock.c index 1e1e95821f..2e1390b34f 100644 --- a/nptl/pthread_rwlock_timedwrlock.c +++ b/nptl/pthread_rwlock_timedwrlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/pthread_rwlock_tryrdlock.c b/nptl/pthread_rwlock_tryrdlock.c index 935ac8721e..697aa80c70 100644 --- a/nptl/pthread_rwlock_tryrdlock.c +++ b/nptl/pthread_rwlock_tryrdlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_rwlock_trywrlock.c b/nptl/pthread_rwlock_trywrlock.c index 01754ae529..106f157c1d 100644 --- a/nptl/pthread_rwlock_trywrlock.c +++ b/nptl/pthread_rwlock_trywrlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_rwlock_unlock.c b/nptl/pthread_rwlock_unlock.c index 8119fe758f..d4923838e7 100644 --- a/nptl/pthread_rwlock_unlock.c +++ b/nptl/pthread_rwlock_unlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/pthread_rwlock_wrlock.c b/nptl/pthread_rwlock_wrlock.c index 04cf803ed6..1613d4507c 100644 --- a/nptl/pthread_rwlock_wrlock.c +++ b/nptl/pthread_rwlock_wrlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/pthread_rwlockattr_destroy.c b/nptl/pthread_rwlockattr_destroy.c index 592d91626e..d835fd3dac 100644 --- a/nptl/pthread_rwlockattr_destroy.c +++ b/nptl/pthread_rwlockattr_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_rwlockattr_getkind_np.c b/nptl/pthread_rwlockattr_getkind_np.c index 4da4149666..cd82b56b8e 100644 --- a/nptl/pthread_rwlockattr_getkind_np.c +++ b/nptl/pthread_rwlockattr_getkind_np.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_rwlockattr_getpshared.c b/nptl/pthread_rwlockattr_getpshared.c index 293e868bb7..24cd8fd299 100644 --- a/nptl/pthread_rwlockattr_getpshared.c +++ b/nptl/pthread_rwlockattr_getpshared.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_rwlockattr_init.c b/nptl/pthread_rwlockattr_init.c index 5a42920660..5db3e7ae53 100644 --- a/nptl/pthread_rwlockattr_init.c +++ b/nptl/pthread_rwlockattr_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_rwlockattr_setkind_np.c b/nptl/pthread_rwlockattr_setkind_np.c index 64bd3417d7..8d96a569c1 100644 --- a/nptl/pthread_rwlockattr_setkind_np.c +++ b/nptl/pthread_rwlockattr_setkind_np.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_rwlockattr_setpshared.c b/nptl/pthread_rwlockattr_setpshared.c index 71031973c9..1e7dc72119 100644 --- a/nptl/pthread_rwlockattr_setpshared.c +++ b/nptl/pthread_rwlockattr_setpshared.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_self.c b/nptl/pthread_self.c index 73a4d0c896..9186c63e3f 100644 --- a/nptl/pthread_self.c +++ b/nptl/pthread_self.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_setattr_default_np.c b/nptl/pthread_setattr_default_np.c index c4624b3d4d..0f00483510 100644 --- a/nptl/pthread_setattr_default_np.c +++ b/nptl/pthread_setattr_default_np.c @@ -1,5 +1,5 @@ /* Set the default attributes to be used by pthread_create in the process. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/pthread_setcancelstate.c b/nptl/pthread_setcancelstate.c index cd49bd242c..3bb05030ed 100644 --- a/nptl/pthread_setcancelstate.c +++ b/nptl/pthread_setcancelstate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_setcanceltype.c b/nptl/pthread_setcanceltype.c index b88ba11197..0a7691f5b6 100644 --- a/nptl/pthread_setcanceltype.c +++ b/nptl/pthread_setcanceltype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_setconcurrency.c b/nptl/pthread_setconcurrency.c index 34deafde69..f919c54ea4 100644 --- a/nptl/pthread_setconcurrency.c +++ b/nptl/pthread_setconcurrency.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_setschedparam.c b/nptl/pthread_setschedparam.c index 0383bdaa20..2dfae5dedd 100644 --- a/nptl/pthread_setschedparam.c +++ b/nptl/pthread_setschedparam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_setschedprio.c b/nptl/pthread_setschedprio.c index 6679a2ead3..033bfecf62 100644 --- a/nptl/pthread_setschedprio.c +++ b/nptl/pthread_setschedprio.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_setspecific.c b/nptl/pthread_setspecific.c index b05429903a..877fb02200 100644 --- a/nptl/pthread_setspecific.c +++ b/nptl/pthread_setspecific.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_spin_destroy.c b/nptl/pthread_spin_destroy.c index 42b2c98564..b5716f406a 100644 --- a/nptl/pthread_spin_destroy.c +++ b/nptl/pthread_spin_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_spin_init.c b/nptl/pthread_spin_init.c index 6c5b35ceff..224775a1dd 100644 --- a/nptl/pthread_spin_init.c +++ b/nptl/pthread_spin_init.c @@ -1,5 +1,5 @@ /* pthread_spin_init -- initialize a spin lock. Generic version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/pthread_spin_lock.c b/nptl/pthread_spin_lock.c index e219b0270d..58c794b5da 100644 --- a/nptl/pthread_spin_lock.c +++ b/nptl/pthread_spin_lock.c @@ -1,5 +1,5 @@ /* pthread_spin_lock -- lock a spin lock. Generic version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/pthread_spin_trylock.c b/nptl/pthread_spin_trylock.c index cb819e2103..810f790ea5 100644 --- a/nptl/pthread_spin_trylock.c +++ b/nptl/pthread_spin_trylock.c @@ -1,5 +1,5 @@ /* pthread_spin_trylock -- trylock a spin lock. Generic version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/pthread_spin_unlock.c b/nptl/pthread_spin_unlock.c index ac442aec89..360f2fc3a8 100644 --- a/nptl/pthread_spin_unlock.c +++ b/nptl/pthread_spin_unlock.c @@ -1,5 +1,5 @@ /* pthread_spin_unlock -- unlock a spin lock. Generic version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/pthread_testcancel.c b/nptl/pthread_testcancel.c index 8e06377c2f..584ed458d7 100644 --- a/nptl/pthread_testcancel.c +++ b/nptl/pthread_testcancel.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_timedjoin.c b/nptl/pthread_timedjoin.c index 91c64ee99c..2f6701bc62 100644 --- a/nptl/pthread_timedjoin.c +++ b/nptl/pthread_timedjoin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/pthread_tryjoin.c b/nptl/pthread_tryjoin.c index 3f969820c1..8f6bc8e936 100644 --- a/nptl/pthread_tryjoin.c +++ b/nptl/pthread_tryjoin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/res.c b/nptl/res.c index 01924bd45e..b59c3b4176 100644 --- a/nptl/res.c +++ b/nptl/res.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sem_close.c b/nptl/sem_close.c index 8688a95a5b..05ebff1f1e 100644 --- a/nptl/sem_close.c +++ b/nptl/sem_close.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sem_destroy.c b/nptl/sem_destroy.c index df53489cc1..385645e18f 100644 --- a/nptl/sem_destroy.c +++ b/nptl/sem_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sem_getvalue.c b/nptl/sem_getvalue.c index d934db7224..a4ab41f116 100644 --- a/nptl/sem_getvalue.c +++ b/nptl/sem_getvalue.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sem_init.c b/nptl/sem_init.c index fd02ef34e3..8bfb9c1f0c 100644 --- a/nptl/sem_init.c +++ b/nptl/sem_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sem_open.c b/nptl/sem_open.c index 83b2fdf472..529f63693b 100644 --- a/nptl/sem_open.c +++ b/nptl/sem_open.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sem_unlink.c b/nptl/sem_unlink.c index 6f8620f7cc..485a3b8d2a 100644 --- a/nptl/sem_unlink.c +++ b/nptl/sem_unlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/semaphore.h b/nptl/semaphore.h index 17671a0b3a..763db34da7 100644 --- a/nptl/semaphore.h +++ b/nptl/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/semaphoreP.h b/nptl/semaphoreP.h index e3b28ac327..5e6a701970 100644 --- a/nptl/semaphoreP.h +++ b/nptl/semaphoreP.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sigaction.c b/nptl/sigaction.c index 3374851fca..33cf9ade41 100644 --- a/nptl/sigaction.c +++ b/nptl/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/i386/Makefile b/nptl/sysdeps/i386/Makefile index f69568f523..92f9c2418a 100644 --- a/nptl/sysdeps/i386/Makefile +++ b/nptl/sysdeps/i386/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/i386/i486/pthread_spin_trylock.S b/nptl/sysdeps/i386/i486/pthread_spin_trylock.S index 2df1c11af3..0bcc0c6ede 100644 --- a/nptl/sysdeps/i386/i486/pthread_spin_trylock.S +++ b/nptl/sysdeps/i386/i486/pthread_spin_trylock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/i386/i586/pthread_spin_trylock.S b/nptl/sysdeps/i386/i586/pthread_spin_trylock.S index 993bb07810..9afe82ae7f 100644 --- a/nptl/sysdeps/i386/i586/pthread_spin_trylock.S +++ b/nptl/sysdeps/i386/i586/pthread_spin_trylock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/i386/i686/Makefile b/nptl/sysdeps/i386/i686/Makefile index 10948231e2..8f42463a9b 100644 --- a/nptl/sysdeps/i386/i686/Makefile +++ b/nptl/sysdeps/i386/i686/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/i386/i686/pthread_spin_trylock.S b/nptl/sysdeps/i386/i686/pthread_spin_trylock.S index 84dfb05932..0ad3d1146b 100644 --- a/nptl/sysdeps/i386/i686/pthread_spin_trylock.S +++ b/nptl/sysdeps/i386/i686/pthread_spin_trylock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/i386/i686/tls.h b/nptl/sysdeps/i386/i686/tls.h index 9728bc10d5..60bf9e152d 100644 --- a/nptl/sysdeps/i386/i686/tls.h +++ b/nptl/sysdeps/i386/i686/tls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/i386/pthread_spin_init.c b/nptl/sysdeps/i386/pthread_spin_init.c index e43e23f3f9..279fc9a5a6 100644 --- a/nptl/sysdeps/i386/pthread_spin_init.c +++ b/nptl/sysdeps/i386/pthread_spin_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/i386/pthread_spin_lock.S b/nptl/sysdeps/i386/pthread_spin_lock.S index 6bca237465..b645fffb9a 100644 --- a/nptl/sysdeps/i386/pthread_spin_lock.S +++ b/nptl/sysdeps/i386/pthread_spin_lock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/i386/pthread_spin_unlock.S b/nptl/sysdeps/i386/pthread_spin_unlock.S index 28d6d0ef85..39100d2568 100644 --- a/nptl/sysdeps/i386/pthread_spin_unlock.S +++ b/nptl/sysdeps/i386/pthread_spin_unlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/i386/pthreaddef.h b/nptl/sysdeps/i386/pthreaddef.h index 5eaa964a00..3a1ea1cee5 100644 --- a/nptl/sysdeps/i386/pthreaddef.h +++ b/nptl/sysdeps/i386/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/i386/tls.h b/nptl/sysdeps/i386/tls.h index 9a56e21d52..9c695c0a14 100644 --- a/nptl/sysdeps/i386/tls.h +++ b/nptl/sysdeps/i386/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. nptl/i386 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/powerpc/Makefile b/nptl/sysdeps/powerpc/Makefile index 44448e0b73..0ecd371737 100644 --- a/nptl/sysdeps/powerpc/Makefile +++ b/nptl/sysdeps/powerpc/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/powerpc/pthread_spin_lock.c b/nptl/sysdeps/powerpc/pthread_spin_lock.c index 426734efaf..b8333c7d9a 100644 --- a/nptl/sysdeps/powerpc/pthread_spin_lock.c +++ b/nptl/sysdeps/powerpc/pthread_spin_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/powerpc/pthread_spin_trylock.c b/nptl/sysdeps/powerpc/pthread_spin_trylock.c index 0d2921129b..3131ae529c 100644 --- a/nptl/sysdeps/powerpc/pthread_spin_trylock.c +++ b/nptl/sysdeps/powerpc/pthread_spin_trylock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/powerpc/pthreaddef.h b/nptl/sysdeps/powerpc/pthreaddef.h index 0309559cda..a0db6297a6 100644 --- a/nptl/sysdeps/powerpc/pthreaddef.h +++ b/nptl/sysdeps/powerpc/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/powerpc/tls.h b/nptl/sysdeps/powerpc/tls.h index 31329c74ee..c9baf4d469 100644 --- a/nptl/sysdeps/powerpc/tls.h +++ b/nptl/sysdeps/powerpc/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. NPTL/PowerPC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/Makefile b/nptl/sysdeps/pthread/Makefile index be2ad423e1..60d525e9d7 100644 --- a/nptl/sysdeps/pthread/Makefile +++ b/nptl/sysdeps/pthread/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/pthread/aio_misc.h b/nptl/sysdeps/pthread/aio_misc.h index 9375accb51..ac3488c57e 100644 --- a/nptl/sysdeps/pthread/aio_misc.h +++ b/nptl/sysdeps/pthread/aio_misc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/allocalim.h b/nptl/sysdeps/pthread/allocalim.h index 2396b836b7..407d4007e7 100644 --- a/nptl/sysdeps/pthread/allocalim.h +++ b/nptl/sysdeps/pthread/allocalim.h @@ -1,5 +1,5 @@ /* Determine whether block of given size can be allocated on the stack or not. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/bits/libc-lock.h b/nptl/sysdeps/pthread/bits/libc-lock.h index 0b95ab7404..cddf11a382 100644 --- a/nptl/sysdeps/pthread/bits/libc-lock.h +++ b/nptl/sysdeps/pthread/bits/libc-lock.h @@ -1,5 +1,5 @@ /* libc-internal interface for mutex locks. NPTL version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/bits/libc-lockP.h b/nptl/sysdeps/pthread/bits/libc-lockP.h index 2781e191ec..bacc678abd 100644 --- a/nptl/sysdeps/pthread/bits/libc-lockP.h +++ b/nptl/sysdeps/pthread/bits/libc-lockP.h @@ -1,5 +1,5 @@ /* Private libc-internal interface for mutex locks. NPTL version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/bits/sigthread.h b/nptl/sysdeps/pthread/bits/sigthread.h index c0358bdadc..0048d7fd76 100644 --- a/nptl/sysdeps/pthread/bits/sigthread.h +++ b/nptl/sysdeps/pthread/bits/sigthread.h @@ -1,5 +1,5 @@ /* Signal handling function for threaded programs. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/bits/stdio-lock.h b/nptl/sysdeps/pthread/bits/stdio-lock.h index e237c15383..e2678cc918 100644 --- a/nptl/sysdeps/pthread/bits/stdio-lock.h +++ b/nptl/sysdeps/pthread/bits/stdio-lock.h @@ -1,5 +1,5 @@ /* Thread package specific definitions of stream lock type. NPTL version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/createthread.c b/nptl/sysdeps/pthread/createthread.c index d24136b0e3..2a9a723ddb 100644 --- a/nptl/sysdeps/pthread/createthread.c +++ b/nptl/sysdeps/pthread/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/pthread/flockfile.c b/nptl/sysdeps/pthread/flockfile.c index 02b1389e2b..da26824cc7 100644 --- a/nptl/sysdeps/pthread/flockfile.c +++ b/nptl/sysdeps/pthread/flockfile.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/pthread/ftrylockfile.c b/nptl/sysdeps/pthread/ftrylockfile.c index 8e8600bd4f..7921d607ef 100644 --- a/nptl/sysdeps/pthread/ftrylockfile.c +++ b/nptl/sysdeps/pthread/ftrylockfile.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/pthread/funlockfile.c b/nptl/sysdeps/pthread/funlockfile.c index e257350416..2b367db112 100644 --- a/nptl/sysdeps/pthread/funlockfile.c +++ b/nptl/sysdeps/pthread/funlockfile.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/pthread/gai_misc.h b/nptl/sysdeps/pthread/gai_misc.h index 6026085ab5..946275ed75 100644 --- a/nptl/sysdeps/pthread/gai_misc.h +++ b/nptl/sysdeps/pthread/gai_misc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/librt-cancellation.c b/nptl/sysdeps/pthread/librt-cancellation.c index 3b097e7077..e512929fbe 100644 --- a/nptl/sysdeps/pthread/librt-cancellation.c +++ b/nptl/sysdeps/pthread/librt-cancellation.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/pthread/list.h b/nptl/sysdeps/pthread/list.h index 48ade93723..749c727175 100644 --- a/nptl/sysdeps/pthread/list.h +++ b/nptl/sysdeps/pthread/list.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/pthread/malloc-machine.h b/nptl/sysdeps/pthread/malloc-machine.h index e15f84ced5..ad480a37d8 100644 --- a/nptl/sysdeps/pthread/malloc-machine.h +++ b/nptl/sysdeps/pthread/malloc-machine.h @@ -1,6 +1,6 @@ /* Basic platform-independent macro definitions for mutexes, thread-specific data and parameters for malloc. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/posix-timer.h b/nptl/sysdeps/pthread/posix-timer.h index 90b2dbf10b..1076110344 100644 --- a/nptl/sysdeps/pthread/posix-timer.h +++ b/nptl/sysdeps/pthread/posix-timer.h @@ -1,5 +1,5 @@ /* Definitions for POSIX timer implementation on top of NPTL. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kaz Kylheku . diff --git a/nptl/sysdeps/pthread/pt-longjmp.c b/nptl/sysdeps/pthread/pt-longjmp.c index d7a138241c..09b3c7eb86 100644 --- a/nptl/sysdeps/pthread/pt-longjmp.c +++ b/nptl/sysdeps/pthread/pt-longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/pthread/pthread-functions.h b/nptl/sysdeps/pthread/pthread-functions.h index 34054e15f9..631442585a 100644 --- a/nptl/sysdeps/pthread/pthread-functions.h +++ b/nptl/sysdeps/pthread/pthread-functions.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/pthread/pthread.h b/nptl/sysdeps/pthread/pthread.h index b58f60e4dd..1e0c5dc937 100644 --- a/nptl/sysdeps/pthread/pthread.h +++ b/nptl/sysdeps/pthread/pthread.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/pthread_sigmask.c b/nptl/sysdeps/pthread/pthread_sigmask.c index 795da28eae..21f0665460 100644 --- a/nptl/sysdeps/pthread/pthread_sigmask.c +++ b/nptl/sysdeps/pthread/pthread_sigmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/pthread/setxid.h b/nptl/sysdeps/pthread/setxid.h index 8cc1212915..65a1ce7bf9 100644 --- a/nptl/sysdeps/pthread/setxid.h +++ b/nptl/sysdeps/pthread/setxid.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/sigfillset.c b/nptl/sysdeps/pthread/sigfillset.c index af32180f78..9ab12c7a3e 100644 --- a/nptl/sysdeps/pthread/sigfillset.c +++ b/nptl/sysdeps/pthread/sigfillset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/sigprocmask.c b/nptl/sysdeps/pthread/sigprocmask.c index ca26a15850..3c7802a27a 100644 --- a/nptl/sysdeps/pthread/sigprocmask.c +++ b/nptl/sysdeps/pthread/sigprocmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/pthread/timer_create.c b/nptl/sysdeps/pthread/timer_create.c index c483a32b4d..359a770c05 100644 --- a/nptl/sysdeps/pthread/timer_create.c +++ b/nptl/sysdeps/pthread/timer_create.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kaz Kylheku . diff --git a/nptl/sysdeps/pthread/timer_delete.c b/nptl/sysdeps/pthread/timer_delete.c index c34cf545a3..99e4cc180e 100644 --- a/nptl/sysdeps/pthread/timer_delete.c +++ b/nptl/sysdeps/pthread/timer_delete.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kaz Kylheku . diff --git a/nptl/sysdeps/pthread/timer_getoverr.c b/nptl/sysdeps/pthread/timer_getoverr.c index 198f41c38c..159ebf27f0 100644 --- a/nptl/sysdeps/pthread/timer_getoverr.c +++ b/nptl/sysdeps/pthread/timer_getoverr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kaz Kylheku . diff --git a/nptl/sysdeps/pthread/timer_gettime.c b/nptl/sysdeps/pthread/timer_gettime.c index a87acec7c3..1e0ea69ad0 100644 --- a/nptl/sysdeps/pthread/timer_gettime.c +++ b/nptl/sysdeps/pthread/timer_gettime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kaz Kylheku . diff --git a/nptl/sysdeps/pthread/timer_routines.c b/nptl/sysdeps/pthread/timer_routines.c index 4a08cb35ae..ce1aa417cd 100644 --- a/nptl/sysdeps/pthread/timer_routines.c +++ b/nptl/sysdeps/pthread/timer_routines.c @@ -1,5 +1,5 @@ /* Helper code for POSIX timer implementation on NPTL. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kaz Kylheku . diff --git a/nptl/sysdeps/pthread/timer_settime.c b/nptl/sysdeps/pthread/timer_settime.c index 7794fea69a..5d3c1664f7 100644 --- a/nptl/sysdeps/pthread/timer_settime.c +++ b/nptl/sysdeps/pthread/timer_settime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kaz Kylheku . diff --git a/nptl/sysdeps/pthread/tst-timer.c b/nptl/sysdeps/pthread/tst-timer.c index fa1b6e72a3..16adf3c199 100644 --- a/nptl/sysdeps/pthread/tst-timer.c +++ b/nptl/sysdeps/pthread/tst-timer.c @@ -1,5 +1,5 @@ /* Tests for POSIX timer implementation. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kaz Kylheku . diff --git a/nptl/sysdeps/pthread/unwind-forcedunwind.c b/nptl/sysdeps/pthread/unwind-forcedunwind.c index 9718606e84..cb94ea6c21 100644 --- a/nptl/sysdeps/pthread/unwind-forcedunwind.c +++ b/nptl/sysdeps/pthread/unwind-forcedunwind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/nptl/sysdeps/s390/Makefile b/nptl/sysdeps/s390/Makefile index da7090422b..f1d18d0c06 100644 --- a/nptl/sysdeps/s390/Makefile +++ b/nptl/sysdeps/s390/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/s390/pthread_spin_init.c b/nptl/sysdeps/s390/pthread_spin_init.c index 3eed1616d6..988c2197c0 100644 --- a/nptl/sysdeps/s390/pthread_spin_init.c +++ b/nptl/sysdeps/s390/pthread_spin_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/s390/pthread_spin_lock.c b/nptl/sysdeps/s390/pthread_spin_lock.c index a69f4334fd..d03bdaf3e2 100644 --- a/nptl/sysdeps/s390/pthread_spin_lock.c +++ b/nptl/sysdeps/s390/pthread_spin_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/s390/pthread_spin_trylock.c b/nptl/sysdeps/s390/pthread_spin_trylock.c index 7ce732bcc7..6cfd05d5e0 100644 --- a/nptl/sysdeps/s390/pthread_spin_trylock.c +++ b/nptl/sysdeps/s390/pthread_spin_trylock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/s390/pthread_spin_unlock.c b/nptl/sysdeps/s390/pthread_spin_unlock.c index 70abdef6b8..1da58759cb 100644 --- a/nptl/sysdeps/s390/pthread_spin_unlock.c +++ b/nptl/sysdeps/s390/pthread_spin_unlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/s390/pthreaddef.h b/nptl/sysdeps/s390/pthreaddef.h index 16cedf1740..70cb6a4466 100644 --- a/nptl/sysdeps/s390/pthreaddef.h +++ b/nptl/sysdeps/s390/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/s390/tls.h b/nptl/sysdeps/s390/tls.h index 4ac7b590ea..d81019e4d3 100644 --- a/nptl/sysdeps/s390/tls.h +++ b/nptl/sysdeps/s390/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. NPTL/s390 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sh/pthread_spin_init.c b/nptl/sysdeps/sh/pthread_spin_init.c index e43e23f3f9..279fc9a5a6 100644 --- a/nptl/sysdeps/sh/pthread_spin_init.c +++ b/nptl/sysdeps/sh/pthread_spin_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/sh/pthread_spin_lock.c b/nptl/sysdeps/sh/pthread_spin_lock.c index 07a32a8a5a..e4bf190075 100644 --- a/nptl/sysdeps/sh/pthread_spin_lock.c +++ b/nptl/sysdeps/sh/pthread_spin_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sh/pthread_spin_trylock.S b/nptl/sysdeps/sh/pthread_spin_trylock.S index 192421e519..76ec533fa8 100644 --- a/nptl/sysdeps/sh/pthread_spin_trylock.S +++ b/nptl/sysdeps/sh/pthread_spin_trylock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sh/pthread_spin_unlock.S b/nptl/sysdeps/sh/pthread_spin_unlock.S index d9563ea609..34d7c9f1dc 100644 --- a/nptl/sysdeps/sh/pthread_spin_unlock.S +++ b/nptl/sysdeps/sh/pthread_spin_unlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sh/pthreaddef.h b/nptl/sysdeps/sh/pthreaddef.h index 600275dba4..f0b1ad7355 100644 --- a/nptl/sysdeps/sh/pthreaddef.h +++ b/nptl/sysdeps/sh/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sh/tls.h b/nptl/sysdeps/sh/tls.h index 1aec2b5bcb..59e49f743c 100644 --- a/nptl/sysdeps/sh/tls.h +++ b/nptl/sysdeps/sh/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. NPTL/SH version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S b/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S index 7099f2984a..ea863d7e34 100644 --- a/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S +++ b/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S b/nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S index 05d0c14867..68215ab2c9 100644 --- a/nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S +++ b/nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sparc/sparc32/pthreaddef.h b/nptl/sysdeps/sparc/sparc32/pthreaddef.h index 73ccf97c24..64d796b095 100644 --- a/nptl/sysdeps/sparc/sparc32/pthreaddef.h +++ b/nptl/sysdeps/sparc/sparc32/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S b/nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S index 11091e900b..0f849b2c5d 100644 --- a/nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S +++ b/nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S b/nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S index 2e5887b86c..d10b08b5da 100644 --- a/nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S +++ b/nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S b/nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S index 5bf7d6bd44..0c18530735 100644 --- a/nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S +++ b/nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sparc/sparc64/pthreaddef.h b/nptl/sysdeps/sparc/sparc64/pthreaddef.h index b106616c8b..de39eefb81 100644 --- a/nptl/sysdeps/sparc/sparc64/pthreaddef.h +++ b/nptl/sysdeps/sparc/sparc64/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/sparc/tls.h b/nptl/sysdeps/sparc/tls.h index 587c35adc1..b10c68f34e 100644 --- a/nptl/sysdeps/sparc/tls.h +++ b/nptl/sysdeps/sparc/tls.h @@ -1,5 +1,5 @@ /* Definitions for thread-local data handling. NPTL/sparc version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/Makefile b/nptl/sysdeps/unix/sysv/linux/Makefile index 9e0df9801b..1a5a29df69 100644 --- a/nptl/sysdeps/unix/sysv/linux/Makefile +++ b/nptl/sysdeps/unix/sysv/linux/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/aio_misc.h b/nptl/sysdeps/unix/sysv/linux/aio_misc.h index 2649dc1242..58ac45153f 100644 --- a/nptl/sysdeps/unix/sysv/linux/aio_misc.h +++ b/nptl/sysdeps/unix/sysv/linux/aio_misc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/allocrtsig.c b/nptl/sysdeps/unix/sysv/linux/allocrtsig.c index fd14683440..0ed7d089c6 100644 --- a/nptl/sysdeps/unix/sysv/linux/allocrtsig.c +++ b/nptl/sysdeps/unix/sysv/linux/allocrtsig.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/bits/local_lim.h b/nptl/sysdeps/unix/sysv/linux/bits/local_lim.h index 039304b735..b802facd5d 100644 --- a/nptl/sysdeps/unix/sysv/linux/bits/local_lim.h +++ b/nptl/sysdeps/unix/sysv/linux/bits/local_lim.h @@ -1,5 +1,5 @@ /* Minimum guaranteed maximum values for system limits. Linux version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h b/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h index 2a0da860e2..6ca0753ee1 100644 --- a/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h +++ b/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h @@ -1,5 +1,5 @@ /* Define POSIX options for Linux. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/createthread.c b/nptl/sysdeps/unix/sysv/linux/createthread.c index a2f83cc15c..c2f09025b4 100644 --- a/nptl/sysdeps/unix/sysv/linux/createthread.c +++ b/nptl/sysdeps/unix/sysv/linux/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky . diff --git a/nptl/sysdeps/unix/sysv/linux/fork.c b/nptl/sysdeps/unix/sysv/linux/fork.c index ff089422e4..961fc8a5ea 100644 --- a/nptl/sysdeps/unix/sysv/linux/fork.c +++ b/nptl/sysdeps/unix/sysv/linux/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/fork.h b/nptl/sysdeps/unix/sysv/linux/fork.h index 7029f474fb..8e28a76098 100644 --- a/nptl/sysdeps/unix/sysv/linux/fork.h +++ b/nptl/sysdeps/unix/sysv/linux/fork.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/getpid.c b/nptl/sysdeps/unix/sysv/linux/getpid.c index 723b137426..f806f2ff87 100644 --- a/nptl/sysdeps/unix/sysv/linux/getpid.c +++ b/nptl/sysdeps/unix/sysv/linux/getpid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/createthread.c b/nptl/sysdeps/unix/sysv/linux/i386/createthread.c index 99ce1c6345..c45661fe1e 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/createthread.c +++ b/nptl/sysdeps/unix/sysv/linux/i386/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h b/nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h index a89eb0a62f..c314b4dadd 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h +++ b/nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h @@ -1,5 +1,5 @@ /* System-specific settings for dynamic linker code. i386 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/i386/fork.c b/nptl/sysdeps/unix/sysv/linux/i386/fork.c index 31739b04ec..79ee39e1ee 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/fork.c +++ b/nptl/sysdeps/unix/sysv/linux/i386/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S index aa6ead1273..83e523174f 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S index c76592cdbe..4ed46fc63e 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S index 52719dddf3..1b2933dadc 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S index 68f2372347..aa755a1737 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S index c85ad05c64..60702ce8fe 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S index e7caa480b0..b086d92dae 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S index b74e4b5419..91888d774e 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S index 9695dcb0ae..c7e79712b8 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S index 6c46ba636a..a81bc06d7c 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S index 1908f6fbab..bc1001ce9c 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S index e0fc809209..9abba58ca8 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S index 708e31c058..738c067780 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S index 6ea17f755c..8345cae1ea 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S index af70cf2790..bc091a0926 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S index 472b1e0c47..94d052afc0 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S index 5c589a05dd..69611eac5d 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S index 88d8fe73c6..14d616fc91 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S index 48fe83f333..0c3acf811c 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S index be1915e6aa..3c0b4251cc 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S index 1c78c82a0b..f92b35f53c 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S index 9c09c52c66..94a4f547cf 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S index 3b32d82445..bb24e30759 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S index afff1fcfc5..bde665529e 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S index c5304f78c0..be30c3084b 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S index 83f7e91d33..85127c7824 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S index 3701be5eef..5a843e5986 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S index 2d498d673d..a8ca4cf51a 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S index 6a495c1d07..8018c8fa98 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S index d8a72c0c73..0b4cfa8637 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S index d67be2616b..28ebd2746e 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S index 00e0b3bb11..46f19590aa 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S index 3fd710b67f..bce1cbca1f 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S b/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S index 5490b79917..abe0e9fbdb 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h b/nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h index c59c8dbbdb..3c71fb7041 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h @@ -1,5 +1,5 @@ /* System-specific settings for dynamic linker code. IA-32 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S index 48fe83f333..0c3acf811c 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S index be1915e6aa..3c0b4251cc 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S index 1c78c82a0b..f92b35f53c 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S index 9c09c52c66..94a4f547cf 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S index 3b32d82445..bb24e30759 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S index 3c40de3356..12f67620d0 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S index c5304f78c0..be30c3084b 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S index 83f7e91d33..85127c7824 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S index 3701be5eef..5a843e5986 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S index 2d498d673d..a8ca4cf51a 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S index ee4da4062f..e52344b66a 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S index d8a72c0c73..0b4cfa8637 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S index d67be2616b..28ebd2746e 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S index 00e0b3bb11..46f19590aa 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S index 3fd710b67f..bce1cbca1f 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S b/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S index 5490b79917..abe0e9fbdb 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h b/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h index cc3ec5ba26..44ef4190b5 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h +++ b/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h b/nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h index 0fc5bb712a..bc17107239 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h @@ -1,5 +1,5 @@ /* Uncancelable versions of cancelable interfaces. Linux/NPTL version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S b/nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S index 8ddd5cb914..0a3d63e2b6 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S b/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S index b405b9e21e..dacd724d8b 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/smp.h b/nptl/sysdeps/unix/sysv/linux/i386/smp.h index 7388a5379b..072e01081e 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/smp.h +++ b/nptl/sysdeps/unix/sysv/linux/i386/smp.h @@ -1,5 +1,5 @@ /* Determine whether the host has multiple processors. Linux version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h index cd9f0009c3..4f4318d0bd 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/vfork.S b/nptl/sysdeps/unix/sysv/linux/i386/vfork.S index 27d520fc38..5e0e5e0e3f 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/internaltypes.h b/nptl/sysdeps/unix/sysv/linux/internaltypes.h index a7ee3fefe1..d127f688cf 100644 --- a/nptl/sysdeps/unix/sysv/linux/internaltypes.h +++ b/nptl/sysdeps/unix/sysv/linux/internaltypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/jmp-unwind.c b/nptl/sysdeps/unix/sysv/linux/jmp-unwind.c index fed8455e5e..b3a960c980 100644 --- a/nptl/sysdeps/unix/sysv/linux/jmp-unwind.c +++ b/nptl/sysdeps/unix/sysv/linux/jmp-unwind.c @@ -1,5 +1,5 @@ /* Clean up stack frames unwound by longjmp. Linux version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h b/nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h index a46ee2a8ec..532da55e14 100644 --- a/nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h +++ b/nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c b/nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c index 4bc6f78bc5..080d4bdafb 100644 --- a/nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c +++ b/nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c b/nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c index ce20a9584a..acf3594d71 100644 --- a/nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c +++ b/nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c b/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c index 1ba078a44f..4d8d710cca 100644 --- a/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c +++ b/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/lowlevellock.c b/nptl/sysdeps/unix/sysv/linux/lowlevellock.c index 0efb72a56c..e198af7e8d 100644 --- a/nptl/sysdeps/unix/sysv/linux/lowlevellock.c +++ b/nptl/sysdeps/unix/sysv/linux/lowlevellock.c @@ -1,5 +1,5 @@ /* low level locking for pthread library. Generic futex-using version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c b/nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c index ecb76636c0..5c9ada18a0 100644 --- a/nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c +++ b/nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/nptl/sysdeps/unix/sysv/linux/mq_notify.c b/nptl/sysdeps/unix/sysv/linux/mq_notify.c index 6bc34ba15d..0d20919667 100644 --- a/nptl/sysdeps/unix/sysv/linux/mq_notify.c +++ b/nptl/sysdeps/unix/sysv/linux/mq_notify.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contribute by Ulrich Drepper , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h b/nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h index 3e8439a12a..e022226a5b 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h @@ -1,5 +1,5 @@ /* Minimum guaranteed maximum values for system limits. Linux/PPC version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h b/nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h index 33e0fa230d..71bd3aed12 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h @@ -1,5 +1,5 @@ /* Machine-specific pthread type layouts. PowerPC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h index 8077d9ff50..89427442b9 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h @@ -1,5 +1,5 @@ /* Machine-specific POSIX semaphore type layouts. PowerPC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c b/nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c index 09d16309c4..453b1d96ce 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras . diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h b/nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h index f33f703346..fe856708a4 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S index a947dcbf21..81dbdeeb68 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h index cf2a2d3557..b6eedcb0e9 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h @@ -1,5 +1,5 @@ /* Cancellable system call stubs. Linux/PowerPC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Franz Sirl , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S index e17044cdb6..e0161050b1 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S index af7c32d038..bbf570fc0a 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h index d711dc6cf1..5807d9d5bc 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h @@ -1,5 +1,5 @@ /* Cancellable system call stubs. Linux/PowerPC64 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Franz Sirl , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S index 47240acb63..f8bf01699a 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c b/nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c index 4ac913c3be..18fdedd938 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c b/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c index 41e8768592..e925299b2a 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c b/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c index 86bb51ef52..2b8c84d756 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c @@ -1,5 +1,5 @@ /* pthread_spin_unlock -- unlock a spin lock. PowerPC version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c b/nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c index 742c5fc727..f222d9a69c 100644 --- a/nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c +++ b/nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c @@ -1,5 +1,5 @@ /* sem_post -- post to a POSIX semaphore. Powerpc version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/pt-fork.c b/nptl/sysdeps/unix/sysv/linux/pt-fork.c index 73a142be31..582409486e 100644 --- a/nptl/sysdeps/unix/sysv/linux/pt-fork.c +++ b/nptl/sysdeps/unix/sysv/linux/pt-fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/pt-raise.c b/nptl/sysdeps/unix/sysv/linux/pt-raise.c index 5edea5e993..68059db8db 100644 --- a/nptl/sysdeps/unix/sysv/linux/pt-raise.c +++ b/nptl/sysdeps/unix/sysv/linux/pt-raise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c b/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c index 2a60f8e19f..b15c83554e 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c b/nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c index b4335c56e3..96c52ea531 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c b/nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c index 4b752626e2..f58e9cc3e9 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c b/nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c index b91fcbf951..aa9c93f5a3 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c @@ -1,5 +1,5 @@ /* pthread_getcpuclockid -- Get POSIX clockid_t for a pthread_t. Linux version - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_getname.c b/nptl/sysdeps/unix/sysv/linux/pthread_getname.c index f5dc336f78..e5a319a3e1 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_getname.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_getname.c @@ -1,5 +1,5 @@ /* pthread_getname_np -- Get thread name. Linux version - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_kill.c b/nptl/sysdeps/unix/sysv/linux/pthread_kill.c index 04e9b65789..43e5c02b37 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_kill.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_kill.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c b/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c index 987604cbc1..288d73f8c8 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_setname.c b/nptl/sysdeps/unix/sysv/linux/pthread_setname.c index d6455dd2f5..409560e586 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_setname.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_setname.c @@ -1,5 +1,5 @@ /* pthread_setname_np -- Set thread name. Linux version - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c b/nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c index ba9abc5f64..9c3e73cdea 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2009. diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_yield.c b/nptl/sysdeps/unix/sysv/linux/pthread_yield.c index 381ad59070..7f5f2065d3 100644 --- a/nptl/sysdeps/unix/sysv/linux/pthread_yield.c +++ b/nptl/sysdeps/unix/sysv/linux/pthread_yield.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/raise.c b/nptl/sysdeps/unix/sysv/linux/raise.c index cbcb5a3096..321d9c3543 100644 --- a/nptl/sysdeps/unix/sysv/linux/raise.c +++ b/nptl/sysdeps/unix/sysv/linux/raise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/register-atfork.c b/nptl/sysdeps/unix/sysv/linux/register-atfork.c index 20a09e24d9..2cc49540b9 100644 --- a/nptl/sysdeps/unix/sysv/linux/register-atfork.c +++ b/nptl/sysdeps/unix/sysv/linux/register-atfork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h b/nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h index 75e9670786..9342e1c456 100644 --- a/nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h +++ b/nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h @@ -1,5 +1,5 @@ /* Defintions for lowlevel handling in ld.so. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h b/nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h index 75785d9f0b..a361db6edb 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h +++ b/nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h index d59888f510..674d3da727 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/s390/fork.c b/nptl/sysdeps/unix/sysv/linux/s390/fork.c index 262f9638d1..20fe4c9eff 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/fork.c +++ b/nptl/sysdeps/unix/sysv/linux/s390/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c b/nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c index f543c43e80..f35eab5ac1 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c +++ b/nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c @@ -1,5 +1,5 @@ /* Clean up stack frames unwound by longjmp. Linux/s390 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h b/nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h index 3dab05e057..80dc90543b 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h +++ b/nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c b/nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c index ed9bbb2268..ce02206c17 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c +++ b/nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S b/nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S index 9cab910998..00ed99292f 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h index 03e3f3e74c..0eeefca5cb 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S b/nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S index e7b3a8da72..adf66bebf7 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S b/nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S index 99d1a6284f..97f82f00f2 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h index 0e4b7bf944..b3560c8e4e 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S b/nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S index 729d7da2f4..4f7a0b53ca 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/sem_post.c b/nptl/sysdeps/unix/sysv/linux/sem_post.c index 622c7b0b0c..4906adf332 100644 --- a/nptl/sysdeps/unix/sysv/linux/sem_post.c +++ b/nptl/sysdeps/unix/sysv/linux/sem_post.c @@ -1,5 +1,5 @@ /* sem_post -- post to a POSIX semaphore. Generic futex-using version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c b/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c index da93c48226..7dfe51dd8b 100644 --- a/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c +++ b/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c @@ -1,5 +1,5 @@ /* sem_timedwait -- wait on a semaphore. Generic futex-using version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sem_trywait.c b/nptl/sysdeps/unix/sysv/linux/sem_trywait.c index 1ecc056024..aa1775aa6d 100644 --- a/nptl/sysdeps/unix/sysv/linux/sem_trywait.c +++ b/nptl/sysdeps/unix/sysv/linux/sem_trywait.c @@ -1,5 +1,5 @@ /* sem_trywait -- wait on a semaphore. Generic futex-using version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sem_wait.c b/nptl/sysdeps/unix/sysv/linux/sem_wait.c index 6b94d37e74..7d586cf186 100644 --- a/nptl/sysdeps/unix/sysv/linux/sem_wait.c +++ b/nptl/sysdeps/unix/sysv/linux/sem_wait.c @@ -1,5 +1,5 @@ /* sem_wait -- wait on a semaphore. Generic futex-using version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h b/nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h index 33f7260b7c..e42d94ebc0 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h +++ b/nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h index d4af8bbd83..87f898c354 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/sh/createthread.c b/nptl/sysdeps/unix/sysv/linux/sh/createthread.c index 48ca50d977..95d7cd8cfa 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/createthread.c +++ b/nptl/sysdeps/unix/sysv/linux/sh/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/fork.c b/nptl/sysdeps/unix/sysv/linux/sh/fork.c index 4b2e867350..60d3b86828 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/fork.c +++ b/nptl/sysdeps/unix/sysv/linux/sh/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S b/nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S index 0a5f9151fe..ad6188d096 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h b/nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h index 41adb87c1d..d580ca3ce5 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h +++ b/nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S b/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S index a7a7176c43..84b8edb86c 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h b/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h index 486e02c15a..438632d962 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h +++ b/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S b/nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S index 1981479997..65b8d0cdcd 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S b/nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S index 1752a6bc42..1febd1fd4e 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S b/nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S index 54209ceffb..946b1d746f 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S b/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S index a5b4f9c6f2..89b32ccf0e 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S b/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S index 88d0870452..b2ca812dfe 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S b/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S index 2c21883f75..94b99e724b 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S b/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S index c56b8b1bec..ad01966fc6 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S b/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S index 99c96e35f8..b22cf4491e 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S b/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S index ea12884220..34790fd3b8 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S b/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S index 75083d32f4..07f7b21198 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S b/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S index f588cb31d5..dd25e95b96 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S b/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S index 213d5f68fd..db99ee4696 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S b/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S index 7f1c984120..8802fa9383 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/sem_post.S b/nptl/sysdeps/unix/sysv/linux/sh/sem_post.S index 4d6389df09..ccc62550af 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/sem_post.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/sem_post.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S b/nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S index 6d786afa7f..4803d033d6 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S b/nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S index d8cb176c43..8ff8792ff4 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S b/nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S index 03279a47a1..04a6a405d4 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/smp.h b/nptl/sysdeps/unix/sysv/linux/sh/smp.h index 98cec2a192..c4c0a75105 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/smp.h +++ b/nptl/sysdeps/unix/sysv/linux/sh/smp.h @@ -1,5 +1,5 @@ /* Determine whether the host has multiple processors. SH version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h index 1810f76c5a..4278f25d7b 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sh/vfork.S b/nptl/sysdeps/unix/sysv/linux/sh/vfork.S index 253014393c..2676858dcf 100644 --- a/nptl/sysdeps/unix/sysv/linux/sh/vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/sh/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/smp.h b/nptl/sysdeps/unix/sysv/linux/smp.h index bb6c7d1e90..dda5c35d10 100644 --- a/nptl/sysdeps/unix/sysv/linux/smp.h +++ b/nptl/sysdeps/unix/sysv/linux/smp.h @@ -1,5 +1,5 @@ /* Determine whether the host has multiple processors. Linux version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h b/nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h index b3645a757d..ad68f5060f 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h +++ b/nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h @@ -1,5 +1,5 @@ /* Minimum guaranteed maximum values for system limits. Linux/SPARC version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h b/nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h index 5076aa3f4a..be615b6e89 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h +++ b/nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h @@ -1,5 +1,5 @@ /* Machine-specific pthread type layouts. SPARC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h index 0f3995c888..140c616d99 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h @@ -1,5 +1,5 @@ /* Machine-specific POSIX semaphore type layouts. SPARC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/fork.c b/nptl/sysdeps/unix/sysv/linux/sparc/fork.c index ff66b72c92..c7b90d66f3 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/fork.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h b/nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h index 5ee8f6d7bb..d851d74542 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h +++ b/nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c b/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c index 28920d94ed..4ce7871fbd 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c b/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c index 8c434ea1a4..9bc7a05333 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c b/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c index 9afec7859c..ed5c1f7071 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c b/nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c index 5879f44fed..a231e55879 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c b/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c index 3d383244c2..d415366f4c 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c b/nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c index 0c0b87c87b..d83b9d8e2e 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c @@ -1,5 +1,5 @@ /* sem_post -- post to a POSIX semaphore. SPARC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c b/nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c index 8ce6efde23..0557e4e709 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c @@ -1,5 +1,5 @@ /* sem_timedwait -- wait on a semaphore. Generic futex-using version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c b/nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c index 8fa8d5ec8a..cfa1ef3727 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c @@ -1,5 +1,5 @@ /* sem_wait -- wait on a semaphore. Generic futex-using version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c index 905c8bdd0b..8384281c3a 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c @@ -1,5 +1,5 @@ /* low level locking for pthread library. SPARC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S index 21b915b229..a17fecad49 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c index b5fcd8398f..0fed908865 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c index 440b6977fb..d3846c045c 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c @@ -1,5 +1,5 @@ /* sem_post -- post to a POSIX semaphore. SPARC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c index 2e210c7011..5c48cb385a 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c @@ -1,5 +1,5 @@ /* sem_timedwait -- wait on a semaphore. SPARC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c index 3e60bf6cd4..7d0fc556f9 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c @@ -1,5 +1,5 @@ /* sem_trywait -- wait on a semaphore. SPARC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c index 2f177a6b49..8c072fe5f4 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c @@ -1,5 +1,5 @@ /* sem_wait -- wait on a semaphore. Generic futex-using version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h index ca30df46a4..fd9968f911 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S index 52a8418939..7ae59cfae8 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S b/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S index 29168e10ec..9d45eb7e42 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S @@ -1,5 +1,5 @@ /* CPU strand yielding for busy loops. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. Contributed by David S. Miller (davem@davemloft.net) This file is part of the GNU C Library. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S b/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S index a2e6476c5d..0561bd2bb1 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h index 758611e5f0..4dad994ab3 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S b/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S index f9fb48c3f9..be6e269605 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/sysdeps/unix/sysv/linux/timer_create.c b/nptl/sysdeps/unix/sysv/linux/timer_create.c index acb2fec0bc..8b20aba53b 100644 --- a/nptl/sysdeps/unix/sysv/linux/timer_create.c +++ b/nptl/sysdeps/unix/sysv/linux/timer_create.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/timer_delete.c b/nptl/sysdeps/unix/sysv/linux/timer_delete.c index d0a58923fb..d7fc501f0a 100644 --- a/nptl/sysdeps/unix/sysv/linux/timer_delete.c +++ b/nptl/sysdeps/unix/sysv/linux/timer_delete.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/timer_getoverr.c b/nptl/sysdeps/unix/sysv/linux/timer_getoverr.c index b4d99e585e..ea61a4c427 100644 --- a/nptl/sysdeps/unix/sysv/linux/timer_getoverr.c +++ b/nptl/sysdeps/unix/sysv/linux/timer_getoverr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/timer_gettime.c b/nptl/sysdeps/unix/sysv/linux/timer_gettime.c index fe43a15fb6..902e1f947c 100644 --- a/nptl/sysdeps/unix/sysv/linux/timer_gettime.c +++ b/nptl/sysdeps/unix/sysv/linux/timer_gettime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/timer_routines.c b/nptl/sysdeps/unix/sysv/linux/timer_routines.c index 57f115fcbe..2c383bafdf 100644 --- a/nptl/sysdeps/unix/sysv/linux/timer_routines.c +++ b/nptl/sysdeps/unix/sysv/linux/timer_routines.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/timer_settime.c b/nptl/sysdeps/unix/sysv/linux/timer_settime.c index b76c13fe83..9d2529e259 100644 --- a/nptl/sysdeps/unix/sysv/linux/timer_settime.c +++ b/nptl/sysdeps/unix/sysv/linux/timer_settime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/tst-setgetname.c b/nptl/sysdeps/unix/sysv/linux/tst-setgetname.c index d80bf01a7b..2aceba53bc 100644 --- a/nptl/sysdeps/unix/sysv/linux/tst-setgetname.c +++ b/nptl/sysdeps/unix/sysv/linux/tst-setgetname.c @@ -1,5 +1,5 @@ /* Test pthread_setname_np and pthread_getname_np. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/unregister-atfork.c b/nptl/sysdeps/unix/sysv/linux/unregister-atfork.c index 6229e544f3..9005160f99 100644 --- a/nptl/sysdeps/unix/sysv/linux/unregister-atfork.c +++ b/nptl/sysdeps/unix/sysv/linux/unregister-atfork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h b/nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h index 28b49bd893..28e5144788 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h +++ b/nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h b/nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h index 28b0f0ca7e..741a9e03fb 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h +++ b/nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c b/nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c index 2fed32b9a9..e6f5d6d1ab 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c +++ b/nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c @@ -1,5 +1,5 @@ /* elision-conf.c: Lock elision tunable parameters. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h b/nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h index 02cd2a625c..6790b5aa13 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h +++ b/nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h @@ -1,5 +1,5 @@ /* elision-conf.h: Lock elision tunable parameters. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c b/nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c index 9d009839b8..385ac31a52 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c +++ b/nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c @@ -1,5 +1,5 @@ /* elision-lock.c: Elided pthread mutex lock. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c b/nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c index 1532964720..4fdaa0f9e9 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c +++ b/nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c @@ -1,5 +1,5 @@ /* elision-timed.c: Lock elision timed lock. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c b/nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c index f6c47ef42e..a478ac18e3 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c +++ b/nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c @@ -1,5 +1,5 @@ /* elision-trylock.c: Lock eliding trylock for pthreads. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c b/nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c index bb13c6b300..b9be19ccc4 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c +++ b/nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c @@ -1,5 +1,5 @@ /* elision-unlock.c: Commit an elided pthread lock. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86/force-elision.h b/nptl/sysdeps/unix/sysv/linux/x86/force-elision.h index 9789905608..945f8867fc 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/force-elision.h +++ b/nptl/sysdeps/unix/sysv/linux/x86/force-elision.h @@ -1,5 +1,5 @@ /* force-elision.h: Automatic enabling of elision for mutexes - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c b/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c index fe64e022d9..34c705235a 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c +++ b/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c b/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c index 37b122f47e..b8a33c1869 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c +++ b/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c @@ -1,5 +1,5 @@ /* Elided version of pthread_mutex_lock. - Copyright (C) 2011, 2012, 2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c b/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c index ddc6d929b3..d33dd2a112 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c +++ b/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c @@ -1,5 +1,5 @@ /* Elided version of pthread_mutex_timedlock. - Copyright (C) 2011, 2012, 2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c b/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c index 0148acaea5..6534e9693b 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c +++ b/nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c @@ -1,5 +1,5 @@ /* Elided version of pthread_mutex_trylock. - Copyright (C) 2011, 2012, 2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S b/nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S index b4e4dcf90c..89fda5efeb 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2009. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h b/nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h index 0d95d03531..2cb19bc173 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/fork.c b/nptl/sysdeps/unix/sysv/linux/x86_64/fork.c index a09ad405dc..a036b923ff 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/fork.c +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S b/nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S index 530e40bf4f..019e22fc89 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2009. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S b/nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S index aa6ead1273..83e523174f 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S b/nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S index 79094e2af6..02892effa7 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2009. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S b/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S index 6b03bc6cb4..f2dca070f3 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h b/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h index 35fb01a0de..0a2673974e 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S b/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S index 95983e33c3..990b6f9fdb 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S index 456bb2884b..77144ef3c0 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S index 87e729f121..eec17f226f 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S index 6257ef7e54..985e0f1cfa 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S index c562eb2b22..53d65b6f12 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S index 6c1a75fd47..0dc23405b0 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S index f0f6683b7f..0e61d0aa24 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S index 8338955957..2cbe2fae62 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S index 76818186df..3bbb4c7f62 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S index 57fe1e9ab1..40bcc04a9d 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S index 391be178c6..f57ef5238c 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S index 86dda05a8a..d779f7b759 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S index 734bee3700..e444def525 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S b/nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S index fafcba5d2a..1c11600468 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S b/nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S index 2aad39e36f..880610e682 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S b/nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S index 2dfe96ed9f..1893a34737 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S b/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S index 0eb45870b5..8f4d0686ec 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h index e651f0099a..83cd25fe8d 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c b/nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c index 47904dd422..e46eef426c 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c b/nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c index 02909dde0e..c92da1af35 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c b/nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c index f537e8e10b..66d927c56a 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c b/nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c index 0db80d9548..439d553d71 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c b/nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c index c018b4f423..f8a8664840 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S b/nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S index 2c64921bac..c6058af70c 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/x86_64/Makefile b/nptl/sysdeps/x86_64/Makefile index be8f30f41c..de43419bc9 100644 --- a/nptl/sysdeps/x86_64/Makefile +++ b/nptl/sysdeps/x86_64/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/x86_64/pthread_spin_lock.S b/nptl/sysdeps/x86_64/pthread_spin_lock.S index 1d5fcc32ba..71c93a4cec 100644 --- a/nptl/sysdeps/x86_64/pthread_spin_lock.S +++ b/nptl/sysdeps/x86_64/pthread_spin_lock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/x86_64/pthread_spin_trylock.S b/nptl/sysdeps/x86_64/pthread_spin_trylock.S index 7ddb8f782e..ba1e8b51e5 100644 --- a/nptl/sysdeps/x86_64/pthread_spin_trylock.S +++ b/nptl/sysdeps/x86_64/pthread_spin_trylock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/x86_64/pthread_spin_unlock.S b/nptl/sysdeps/x86_64/pthread_spin_unlock.S index d558d04943..6cd4feaf2a 100644 --- a/nptl/sysdeps/x86_64/pthread_spin_unlock.S +++ b/nptl/sysdeps/x86_64/pthread_spin_unlock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/x86_64/pthreaddef.h b/nptl/sysdeps/x86_64/pthreaddef.h index 2055768681..18a15a1dd4 100644 --- a/nptl/sysdeps/x86_64/pthreaddef.h +++ b/nptl/sysdeps/x86_64/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/sysdeps/x86_64/tls.h b/nptl/sysdeps/x86_64/tls.h index d6350fdf4a..cbb5e9e5bd 100644 --- a/nptl/sysdeps/x86_64/tls.h +++ b/nptl/sysdeps/x86_64/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. nptl/x86_64 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/sysdeps/x86_64/x32/tls.h b/nptl/sysdeps/x86_64/x32/tls.h index 964a16da8c..7060616a5c 100644 --- a/nptl/sysdeps/x86_64/x32/tls.h +++ b/nptl/sysdeps/x86_64/x32/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. nptl/x32 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tpp.c b/nptl/tpp.c index b2429f97df..ee9a2fe0d0 100644 --- a/nptl/tpp.c +++ b/nptl/tpp.c @@ -1,5 +1,5 @@ /* Thread Priority Protect helpers. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/nptl/tst-_res1.c b/nptl/tst-_res1.c index 6172c80036..0ae38d0578 100644 --- a/nptl/tst-_res1.c +++ b/nptl/tst-_res1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-_res1mod1.c b/nptl/tst-_res1mod1.c index 06687a4885..5505b44b85 100644 --- a/nptl/tst-_res1mod1.c +++ b/nptl/tst-_res1mod1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-abstime.c b/nptl/tst-abstime.c index 99fc7c1518..c6f595762f 100644 --- a/nptl/tst-abstime.c +++ b/nptl/tst-abstime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab , 2010. diff --git a/nptl/tst-align.c b/nptl/tst-align.c index 4026f2ae20..7624c63e3c 100644 --- a/nptl/tst-align.c +++ b/nptl/tst-align.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-align2.c b/nptl/tst-align2.c index d29ccb1667..b348921469 100644 --- a/nptl/tst-align2.c +++ b/nptl/tst-align2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-align3.c b/nptl/tst-align3.c index 8a31cbd482..bd953db110 100644 --- a/nptl/tst-align3.c +++ b/nptl/tst-align3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2005. diff --git a/nptl/tst-atfork1.c b/nptl/tst-atfork1.c index e2f23ac6b8..c75b4f11ef 100644 --- a/nptl/tst-atfork1.c +++ b/nptl/tst-atfork1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-atfork2.c b/nptl/tst-atfork2.c index 19d909124f..825e4b9649 100644 --- a/nptl/tst-atfork2.c +++ b/nptl/tst-atfork2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-atfork2mod.c b/nptl/tst-atfork2mod.c index 07b15ff6e4..9beb2eda90 100644 --- a/nptl/tst-atfork2mod.c +++ b/nptl/tst-atfork2mod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-attr1.c b/nptl/tst-attr1.c index d8a7488384..607c3f14fb 100644 --- a/nptl/tst-attr1.c +++ b/nptl/tst-attr1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-attr2.c b/nptl/tst-attr2.c index eb1099463b..324cb9b2b2 100644 --- a/nptl/tst-attr2.c +++ b/nptl/tst-attr2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-attr3.c b/nptl/tst-attr3.c index a23fd9ebc1..6ae0696db0 100644 --- a/nptl/tst-attr3.c +++ b/nptl/tst-attr3.c @@ -1,5 +1,5 @@ /* pthread_getattr_np test. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-backtrace1.c b/nptl/tst-backtrace1.c index 16d6efbd85..11fa6115de 100644 --- a/nptl/tst-backtrace1.c +++ b/nptl/tst-backtrace1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/tst-barrier1.c b/nptl/tst-barrier1.c index 9efadc40f6..8fc320a5bd 100644 --- a/nptl/tst-barrier1.c +++ b/nptl/tst-barrier1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-barrier2.c b/nptl/tst-barrier2.c index 7931663b98..70836fab94 100644 --- a/nptl/tst-barrier2.c +++ b/nptl/tst-barrier2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-barrier3.c b/nptl/tst-barrier3.c index 4e2d58ef37..624d45d3af 100644 --- a/nptl/tst-barrier3.c +++ b/nptl/tst-barrier3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-barrier4.c b/nptl/tst-barrier4.c index 2836fb341b..d054782178 100644 --- a/nptl/tst-barrier4.c +++ b/nptl/tst-barrier4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nptl/tst-basic1.c b/nptl/tst-basic1.c index 00eeecacea..dcf254f415 100644 --- a/nptl/tst-basic1.c +++ b/nptl/tst-basic1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-basic2.c b/nptl/tst-basic2.c index 6b21c6c2ee..b36b09f24c 100644 --- a/nptl/tst-basic2.c +++ b/nptl/tst-basic2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-basic3.c b/nptl/tst-basic3.c index 617229b082..e1022e34b7 100644 --- a/nptl/tst-basic3.c +++ b/nptl/tst-basic3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-basic4.c b/nptl/tst-basic4.c index aa77b417d5..c6b093cc00 100644 --- a/nptl/tst-basic4.c +++ b/nptl/tst-basic4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-basic5.c b/nptl/tst-basic5.c index e947510ab3..2832569868 100644 --- a/nptl/tst-basic5.c +++ b/nptl/tst-basic5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-basic6.c b/nptl/tst-basic6.c index 35a4a4d0ca..65b8f87480 100644 --- a/nptl/tst-basic6.c +++ b/nptl/tst-basic6.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cancel-self-cancelstate.c b/nptl/tst-cancel-self-cancelstate.c index 2d9e4a192c..3dce967e8f 100644 --- a/nptl/tst-cancel-self-cancelstate.c +++ b/nptl/tst-cancel-self-cancelstate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-cancel-self-canceltype.c b/nptl/tst-cancel-self-canceltype.c index 4419eb96b4..992ba17c44 100644 --- a/nptl/tst-cancel-self-canceltype.c +++ b/nptl/tst-cancel-self-canceltype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-cancel-self-cleanup.c b/nptl/tst-cancel-self-cleanup.c index 571c2c87f1..41ef43273a 100644 --- a/nptl/tst-cancel-self-cleanup.c +++ b/nptl/tst-cancel-self-cleanup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-cancel-self-testcancel.c b/nptl/tst-cancel-self-testcancel.c index 202ae0a1af..db8f202146 100644 --- a/nptl/tst-cancel-self-testcancel.c +++ b/nptl/tst-cancel-self-testcancel.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-cancel-self.c b/nptl/tst-cancel-self.c index 9af67f9f29..b047c612eb 100644 --- a/nptl/tst-cancel-self.c +++ b/nptl/tst-cancel-self.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-cancel-wrappers.sh b/nptl/tst-cancel-wrappers.sh index 84df636192..b0318ab7be 100644 --- a/nptl/tst-cancel-wrappers.sh +++ b/nptl/tst-cancel-wrappers.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test whether all cancelable functions are cancelable. -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Jakub Jelinek , 2002. diff --git a/nptl/tst-cancel1.c b/nptl/tst-cancel1.c index 39df856116..873faae677 100644 --- a/nptl/tst-cancel1.c +++ b/nptl/tst-cancel1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cancel10.c b/nptl/tst-cancel10.c index 54e07d2f1a..43a0d13b4e 100644 --- a/nptl/tst-cancel10.c +++ b/nptl/tst-cancel10.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cancel11.c b/nptl/tst-cancel11.c index defccf2ae4..ceb3964800 100644 --- a/nptl/tst-cancel11.c +++ b/nptl/tst-cancel11.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cancel12.c b/nptl/tst-cancel12.c index 47bdc35f87..d52febeecc 100644 --- a/nptl/tst-cancel12.c +++ b/nptl/tst-cancel12.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cancel13.c b/nptl/tst-cancel13.c index 7ddc69d2c8..31361353d1 100644 --- a/nptl/tst-cancel13.c +++ b/nptl/tst-cancel13.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cancel14.c b/nptl/tst-cancel14.c index ca9042d60a..8fdab6df4d 100644 --- a/nptl/tst-cancel14.c +++ b/nptl/tst-cancel14.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cancel15.c b/nptl/tst-cancel15.c index 3f320ad00d..63ab303b77 100644 --- a/nptl/tst-cancel15.c +++ b/nptl/tst-cancel15.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cancel16.c b/nptl/tst-cancel16.c index 9d90c9e7a4..bba3ad18ab 100644 --- a/nptl/tst-cancel16.c +++ b/nptl/tst-cancel16.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cancel17.c b/nptl/tst-cancel17.c index f7cad5021c..45e45a1ec9 100644 --- a/nptl/tst-cancel17.c +++ b/nptl/tst-cancel17.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cancel18.c b/nptl/tst-cancel18.c index 13ec89942e..92da180fc9 100644 --- a/nptl/tst-cancel18.c +++ b/nptl/tst-cancel18.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cancel19.c b/nptl/tst-cancel19.c index 14ae49a409..de387e236d 100644 --- a/nptl/tst-cancel19.c +++ b/nptl/tst-cancel19.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-cancel2.c b/nptl/tst-cancel2.c index e6d407ef74..2d834de212 100644 --- a/nptl/tst-cancel2.c +++ b/nptl/tst-cancel2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cancel20.c b/nptl/tst-cancel20.c index e34bd114bf..703e558453 100644 --- a/nptl/tst-cancel20.c +++ b/nptl/tst-cancel20.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-cancel21.c b/nptl/tst-cancel21.c index 057a4462c0..ddcea9038b 100644 --- a/nptl/tst-cancel21.c +++ b/nptl/tst-cancel21.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-cancel22.c b/nptl/tst-cancel22.c index 1945bb0a8c..b7d81589ee 100644 --- a/nptl/tst-cancel22.c +++ b/nptl/tst-cancel22.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-cancel3.c b/nptl/tst-cancel3.c index 526f9c1184..bd66b6386f 100644 --- a/nptl/tst-cancel3.c +++ b/nptl/tst-cancel3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cancel4.c b/nptl/tst-cancel4.c index 6ef654a40b..93080b232b 100644 --- a/nptl/tst-cancel4.c +++ b/nptl/tst-cancel4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cancel6.c b/nptl/tst-cancel6.c index 22bb1e841b..24c80ab3a2 100644 --- a/nptl/tst-cancel6.c +++ b/nptl/tst-cancel6.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cancel7.c b/nptl/tst-cancel7.c index ad40b9c9b7..53577a99b7 100644 --- a/nptl/tst-cancel7.c +++ b/nptl/tst-cancel7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/nptl/tst-cancel8.c b/nptl/tst-cancel8.c index a9e27d6e0b..9a14a29324 100644 --- a/nptl/tst-cancel8.c +++ b/nptl/tst-cancel8.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cancel9.c b/nptl/tst-cancel9.c index 14916add5a..98e23e7912 100644 --- a/nptl/tst-cancel9.c +++ b/nptl/tst-cancel9.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cleanup0.c b/nptl/tst-cleanup0.c index 7ab4f6f57d..5f23132c7b 100644 --- a/nptl/tst-cleanup0.c +++ b/nptl/tst-cleanup0.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cleanup1.c b/nptl/tst-cleanup1.c index d16f13d9db..b87dc2793f 100644 --- a/nptl/tst-cleanup1.c +++ b/nptl/tst-cleanup1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cleanup2.c b/nptl/tst-cleanup2.c index 65af0f2018..dd83ec8170 100644 --- a/nptl/tst-cleanup2.c +++ b/nptl/tst-cleanup2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bao Duong , 2003. diff --git a/nptl/tst-cleanup3.c b/nptl/tst-cleanup3.c index 2dd776942a..dddfddf971 100644 --- a/nptl/tst-cleanup3.c +++ b/nptl/tst-cleanup3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cleanup4.c b/nptl/tst-cleanup4.c index a4414684a9..ea94e02036 100644 --- a/nptl/tst-cleanup4.c +++ b/nptl/tst-cleanup4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-cleanup4aux.c b/nptl/tst-cleanup4aux.c index 66250c2e2f..3eab623b0c 100644 --- a/nptl/tst-cleanup4aux.c +++ b/nptl/tst-cleanup4aux.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-clock1.c b/nptl/tst-clock1.c index 8b47e7cede..2b52e084ca 100644 --- a/nptl/tst-clock1.c +++ b/nptl/tst-clock1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-clock2.c b/nptl/tst-clock2.c index c53ae416f5..9a86eed8d8 100644 --- a/nptl/tst-clock2.c +++ b/nptl/tst-clock2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cond-except.c b/nptl/tst-cond-except.c index 592326ec5f..76ffa26b42 100644 --- a/nptl/tst-cond-except.c +++ b/nptl/tst-cond-except.c @@ -1,5 +1,5 @@ /* Verify that exception table for pthread_cond_wait is correct. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-cond1.c b/nptl/tst-cond1.c index a90af98ea8..325ccc7653 100644 --- a/nptl/tst-cond1.c +++ b/nptl/tst-cond1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cond10.c b/nptl/tst-cond10.c index 49e1c0e470..481f173140 100644 --- a/nptl/tst-cond10.c +++ b/nptl/tst-cond10.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cond11.c b/nptl/tst-cond11.c index 356ebf681e..18f3d24cab 100644 --- a/nptl/tst-cond11.c +++ b/nptl/tst-cond11.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cond12.c b/nptl/tst-cond12.c index 40b7810c89..bb228dd0cf 100644 --- a/nptl/tst-cond12.c +++ b/nptl/tst-cond12.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cond14.c b/nptl/tst-cond14.c index af2cf1ea0f..5db46b1c43 100644 --- a/nptl/tst-cond14.c +++ b/nptl/tst-cond14.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nptl/tst-cond15.c b/nptl/tst-cond15.c index 496c554aa0..e7b54d708d 100644 --- a/nptl/tst-cond15.c +++ b/nptl/tst-cond15.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nptl/tst-cond16.c b/nptl/tst-cond16.c index 054409561c..31d1f512bb 100644 --- a/nptl/tst-cond16.c +++ b/nptl/tst-cond16.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/tst-cond18.c b/nptl/tst-cond18.c index c18a997dfe..c27200e8bd 100644 --- a/nptl/tst-cond18.c +++ b/nptl/tst-cond18.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/tst-cond19.c b/nptl/tst-cond19.c index 5e5326091b..78a67078ce 100644 --- a/nptl/tst-cond19.c +++ b/nptl/tst-cond19.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nptl/tst-cond2.c b/nptl/tst-cond2.c index 9c33abcfde..406b1d8afe 100644 --- a/nptl/tst-cond2.c +++ b/nptl/tst-cond2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cond20.c b/nptl/tst-cond20.c index da5b9eb8a8..e2610c7bdf 100644 --- a/nptl/tst-cond20.c +++ b/nptl/tst-cond20.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/tst-cond23.c b/nptl/tst-cond23.c index 313c2a4f75..860527322e 100644 --- a/nptl/tst-cond23.c +++ b/nptl/tst-cond23.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2008. diff --git a/nptl/tst-cond24.c b/nptl/tst-cond24.c index d58ab52f5a..b433691f4a 100644 --- a/nptl/tst-cond24.c +++ b/nptl/tst-cond24.c @@ -1,5 +1,5 @@ /* Verify that condition variables synchronized by PI mutexes don't hang. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-cond25.c b/nptl/tst-cond25.c index 53c99ff85b..9d9a98a4bd 100644 --- a/nptl/tst-cond25.c +++ b/nptl/tst-cond25.c @@ -1,6 +1,6 @@ /* Verify that condition variables synchronized by PI mutexes don't hang on on cancellation. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-cond3.c b/nptl/tst-cond3.c index 6287fbe549..229e3a7b5e 100644 --- a/nptl/tst-cond3.c +++ b/nptl/tst-cond3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cond4.c b/nptl/tst-cond4.c index f79ef653e0..756f52c67a 100644 --- a/nptl/tst-cond4.c +++ b/nptl/tst-cond4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cond5.c b/nptl/tst-cond5.c index ff02d83b7a..ff300d4a75 100644 --- a/nptl/tst-cond5.c +++ b/nptl/tst-cond5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cond6.c b/nptl/tst-cond6.c index 920f22d738..66548fd0fd 100644 --- a/nptl/tst-cond6.c +++ b/nptl/tst-cond6.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-cond7.c b/nptl/tst-cond7.c index 5261abb3d4..73766f2a9a 100644 --- a/nptl/tst-cond7.c +++ b/nptl/tst-cond7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-cond8.c b/nptl/tst-cond8.c index a5d70cd2cd..eba729dc96 100644 --- a/nptl/tst-cond8.c +++ b/nptl/tst-cond8.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-cond9.c b/nptl/tst-cond9.c index fdd3d375bb..2046029e40 100644 --- a/nptl/tst-cond9.c +++ b/nptl/tst-cond9.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-context1.c b/nptl/tst-context1.c index 2aa201e397..7e5d30e5ae 100644 --- a/nptl/tst-context1.c +++ b/nptl/tst-context1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-default-attr.c b/nptl/tst-default-attr.c index d7e8611ac5..02ca18431f 100644 --- a/nptl/tst-default-attr.c +++ b/nptl/tst-default-attr.c @@ -1,6 +1,6 @@ /* Verify that pthread_[gs]etattr_default_np work correctly. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-detach1.c b/nptl/tst-detach1.c index 1797048979..86ac7401ea 100644 --- a/nptl/tst-detach1.c +++ b/nptl/tst-detach1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-eintr1.c b/nptl/tst-eintr1.c index 18143c3340..dfc58c25e5 100644 --- a/nptl/tst-eintr1.c +++ b/nptl/tst-eintr1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-eintr2.c b/nptl/tst-eintr2.c index 169e60d7fc..fedcf815ef 100644 --- a/nptl/tst-eintr2.c +++ b/nptl/tst-eintr2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-eintr3.c b/nptl/tst-eintr3.c index a4bf1e60c4..5825d29854 100644 --- a/nptl/tst-eintr3.c +++ b/nptl/tst-eintr3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-eintr4.c b/nptl/tst-eintr4.c index e04edd742e..eb18b4d57a 100644 --- a/nptl/tst-eintr4.c +++ b/nptl/tst-eintr4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-eintr5.c b/nptl/tst-eintr5.c index f586cc57d4..c1b3b5bccd 100644 --- a/nptl/tst-eintr5.c +++ b/nptl/tst-eintr5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-exec1.c b/nptl/tst-exec1.c index 90a7db0cb8..0ddd171d0d 100644 --- a/nptl/tst-exec1.c +++ b/nptl/tst-exec1.c @@ -1,5 +1,5 @@ /* Simple exec test, only a thread in the parent. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-exec2.c b/nptl/tst-exec2.c index c45196ef0d..1df7f26f13 100644 --- a/nptl/tst-exec2.c +++ b/nptl/tst-exec2.c @@ -1,5 +1,5 @@ /* Thread with running thread calls exec. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-exec3.c b/nptl/tst-exec3.c index 0560d88818..720543565a 100644 --- a/nptl/tst-exec3.c +++ b/nptl/tst-exec3.c @@ -1,5 +1,5 @@ /* Thread calls exec. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-exec4.c b/nptl/tst-exec4.c index dd638138d5..45e6301804 100644 --- a/nptl/tst-exec4.c +++ b/nptl/tst-exec4.c @@ -1,5 +1,5 @@ /* Signal handler and mask set in thread which calls exec. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-exit1.c b/nptl/tst-exit1.c index 330e07a8b2..081aa46c54 100644 --- a/nptl/tst-exit1.c +++ b/nptl/tst-exit1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-fini1.c b/nptl/tst-fini1.c index f9d5e7d0db..3109525c1f 100644 --- a/nptl/tst-fini1.c +++ b/nptl/tst-fini1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nptl/tst-fini1mod.c b/nptl/tst-fini1mod.c index eed41cbf01..80f61762b6 100644 --- a/nptl/tst-fini1mod.c +++ b/nptl/tst-fini1mod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nptl/tst-flock1.c b/nptl/tst-flock1.c index 7abbbe3e52..0a4e0aa24c 100644 --- a/nptl/tst-flock1.c +++ b/nptl/tst-flock1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-flock2.c b/nptl/tst-flock2.c index 4e4c69a4d1..7d46e3425e 100644 --- a/nptl/tst-flock2.c +++ b/nptl/tst-flock2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-fork1.c b/nptl/tst-fork1.c index c42ae4452d..1f7939ce0c 100644 --- a/nptl/tst-fork1.c +++ b/nptl/tst-fork1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Roland McGrath , 2002. diff --git a/nptl/tst-fork2.c b/nptl/tst-fork2.c index aeeb227305..874f0209a4 100644 --- a/nptl/tst-fork2.c +++ b/nptl/tst-fork2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Roland McGrath , 2002. diff --git a/nptl/tst-fork3.c b/nptl/tst-fork3.c index 549816a60f..1aa6366e97 100644 --- a/nptl/tst-fork3.c +++ b/nptl/tst-fork3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Roland McGrath , 2002. diff --git a/nptl/tst-fork4.c b/nptl/tst-fork4.c index e587b210ae..f840f4a51b 100644 --- a/nptl/tst-fork4.c +++ b/nptl/tst-fork4.c @@ -1,5 +1,5 @@ /* Test of fork updating child universe's pthread structures. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-initializers1.c b/nptl/tst-initializers1.c index fdc4c60571..591a110863 100644 --- a/nptl/tst-initializers1.c +++ b/nptl/tst-initializers1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2005. diff --git a/nptl/tst-join1.c b/nptl/tst-join1.c index 0e2a6d7800..6044ae66ad 100644 --- a/nptl/tst-join1.c +++ b/nptl/tst-join1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-join2.c b/nptl/tst-join2.c index 56fe8389c6..a57c06cbb9 100644 --- a/nptl/tst-join2.c +++ b/nptl/tst-join2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-join3.c b/nptl/tst-join3.c index bf51f19769..4e27725c46 100644 --- a/nptl/tst-join3.c +++ b/nptl/tst-join3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-join4.c b/nptl/tst-join4.c index 66a7da8fe5..672edbdaf0 100644 --- a/nptl/tst-join4.c +++ b/nptl/tst-join4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-join5.c b/nptl/tst-join5.c index 5e942248d0..7f95bd1ea5 100644 --- a/nptl/tst-join5.c +++ b/nptl/tst-join5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-key1.c b/nptl/tst-key1.c index 8e4f3a0868..b40fffc33b 100644 --- a/nptl/tst-key1.c +++ b/nptl/tst-key1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-key2.c b/nptl/tst-key2.c index 30325fd22d..00d37d0cd2 100644 --- a/nptl/tst-key2.c +++ b/nptl/tst-key2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-key3.c b/nptl/tst-key3.c index a995454c76..8ff2153b97 100644 --- a/nptl/tst-key3.c +++ b/nptl/tst-key3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-key4.c b/nptl/tst-key4.c index e4e14927c3..9e65b59cae 100644 --- a/nptl/tst-key4.c +++ b/nptl/tst-key4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-kill1.c b/nptl/tst-kill1.c index dc111d1d6a..21ec91c045 100644 --- a/nptl/tst-kill1.c +++ b/nptl/tst-kill1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-kill2.c b/nptl/tst-kill2.c index 5e733c2a2a..0eff71852e 100644 --- a/nptl/tst-kill2.c +++ b/nptl/tst-kill2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-kill3.c b/nptl/tst-kill3.c index 3bfe8eca70..f739ac546c 100644 --- a/nptl/tst-kill3.c +++ b/nptl/tst-kill3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-kill4.c b/nptl/tst-kill4.c index d4f9d0c817..cbc9cd53f0 100644 --- a/nptl/tst-kill4.c +++ b/nptl/tst-kill4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-kill5.c b/nptl/tst-kill5.c index 708afe753b..65e501e15c 100644 --- a/nptl/tst-kill5.c +++ b/nptl/tst-kill5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-kill6.c b/nptl/tst-kill6.c index 26aac0f441..6d9d1a316d 100644 --- a/nptl/tst-kill6.c +++ b/nptl/tst-kill6.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-mutex1.c b/nptl/tst-mutex1.c index 5219253a6d..2a181e587e 100644 --- a/nptl/tst-mutex1.c +++ b/nptl/tst-mutex1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-mutex2.c b/nptl/tst-mutex2.c index ba120cd117..161cb28818 100644 --- a/nptl/tst-mutex2.c +++ b/nptl/tst-mutex2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-mutex3.c b/nptl/tst-mutex3.c index 9cff095577..57d2fb4bbb 100644 --- a/nptl/tst-mutex3.c +++ b/nptl/tst-mutex3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-mutex4.c b/nptl/tst-mutex4.c index d72f201736..e6e1ecd754 100644 --- a/nptl/tst-mutex4.c +++ b/nptl/tst-mutex4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-mutex5.c b/nptl/tst-mutex5.c index c223f67824..14d3025814 100644 --- a/nptl/tst-mutex5.c +++ b/nptl/tst-mutex5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-mutex6.c b/nptl/tst-mutex6.c index 1be8df1271..292e3bf06d 100644 --- a/nptl/tst-mutex6.c +++ b/nptl/tst-mutex6.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-mutex7.c b/nptl/tst-mutex7.c index b39a9d06a7..0ab528e0ad 100644 --- a/nptl/tst-mutex7.c +++ b/nptl/tst-mutex7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-mutex8.c b/nptl/tst-mutex8.c index c3d40faabe..686f0b9d30 100644 --- a/nptl/tst-mutex8.c +++ b/nptl/tst-mutex8.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-mutex9.c b/nptl/tst-mutex9.c index 1d689bd7e4..8fe05867b2 100644 --- a/nptl/tst-mutex9.c +++ b/nptl/tst-mutex9.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-mutexpp10.c b/nptl/tst-mutexpp10.c index 367b71bb19..2a23b9f93e 100644 --- a/nptl/tst-mutexpp10.c +++ b/nptl/tst-mutexpp10.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/nptl/tst-oddstacklimit.c b/nptl/tst-oddstacklimit.c index 49754fe48c..252d39fbf6 100644 --- a/nptl/tst-oddstacklimit.c +++ b/nptl/tst-oddstacklimit.c @@ -1,5 +1,5 @@ /* Test NPTL with stack limit that is not a multiple of the page size. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-once1.c b/nptl/tst-once1.c index 0f91863f0d..105c1709c6 100644 --- a/nptl/tst-once1.c +++ b/nptl/tst-once1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-once2.c b/nptl/tst-once2.c index 960182a991..4fc6217995 100644 --- a/nptl/tst-once2.c +++ b/nptl/tst-once2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-once3.c b/nptl/tst-once3.c index aed25ea69e..f11264d59b 100644 --- a/nptl/tst-once3.c +++ b/nptl/tst-once3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-once4.c b/nptl/tst-once4.c index 060a22c8ee..9cf0489b3a 100644 --- a/nptl/tst-once4.c +++ b/nptl/tst-once4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-popen1.c b/nptl/tst-popen1.c index 2d097cfcb9..3a11118026 100644 --- a/nptl/tst-popen1.c +++ b/nptl/tst-popen1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-pthread-attr-affinity.c b/nptl/tst-pthread-attr-affinity.c index eab0820f92..37a6b5306d 100644 --- a/nptl/tst-pthread-attr-affinity.c +++ b/nptl/tst-pthread-attr-affinity.c @@ -1,7 +1,7 @@ /* Make sure that pthread_attr_getaffinity_np does not crash when the input cpuset size is smaller than that in the attribute structure. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-pthread-getattr.c b/nptl/tst-pthread-getattr.c index 17769cdf32..1ce6a52b01 100644 --- a/nptl/tst-pthread-getattr.c +++ b/nptl/tst-pthread-getattr.c @@ -1,7 +1,7 @@ /* Make sure that the stackaddr returned by pthread_getattr_np is reachable. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-raise1.c b/nptl/tst-raise1.c index cfcc49128e..92b273503b 100644 --- a/nptl/tst-raise1.c +++ b/nptl/tst-raise1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-robust1.c b/nptl/tst-robust1.c index fcbf6a882a..9243a79bd5 100644 --- a/nptl/tst-robust1.c +++ b/nptl/tst-robust1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2005. diff --git a/nptl/tst-robust7.c b/nptl/tst-robust7.c index ed1857c4ec..05b1c56b95 100644 --- a/nptl/tst-robust7.c +++ b/nptl/tst-robust7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2005. diff --git a/nptl/tst-rwlock1.c b/nptl/tst-rwlock1.c index 918b6d7f78..cf873c49e8 100644 --- a/nptl/tst-rwlock1.c +++ b/nptl/tst-rwlock1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-rwlock10.c b/nptl/tst-rwlock10.c index b651d30e5f..c476bfa522 100644 --- a/nptl/tst-rwlock10.c +++ b/nptl/tst-rwlock10.c @@ -1,5 +1,5 @@ /* Test program for timedout read/write lock functions. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 2003. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-rwlock11.c b/nptl/tst-rwlock11.c index 519aa4e8c7..57ff207b90 100644 --- a/nptl/tst-rwlock11.c +++ b/nptl/tst-rwlock11.c @@ -1,5 +1,5 @@ /* Test program for timedout read/write lock functions. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 2003. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-rwlock12.c b/nptl/tst-rwlock12.c index b61b5ababc..df5bb49098 100644 --- a/nptl/tst-rwlock12.c +++ b/nptl/tst-rwlock12.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-rwlock13.c b/nptl/tst-rwlock13.c index ceaa468806..767cd998a4 100644 --- a/nptl/tst-rwlock13.c +++ b/nptl/tst-rwlock13.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-rwlock14.c b/nptl/tst-rwlock14.c index 0768a42b5b..7e9513fac8 100644 --- a/nptl/tst-rwlock14.c +++ b/nptl/tst-rwlock14.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nptl/tst-rwlock2.c b/nptl/tst-rwlock2.c index 21142b6e80..2d1c544228 100644 --- a/nptl/tst-rwlock2.c +++ b/nptl/tst-rwlock2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-rwlock3.c b/nptl/tst-rwlock3.c index 46614302b4..9c31d0379b 100644 --- a/nptl/tst-rwlock3.c +++ b/nptl/tst-rwlock3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-rwlock4.c b/nptl/tst-rwlock4.c index bdb4923da0..df9ce08584 100644 --- a/nptl/tst-rwlock4.c +++ b/nptl/tst-rwlock4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-rwlock5.c b/nptl/tst-rwlock5.c index 07904b0b6e..12e22320d1 100644 --- a/nptl/tst-rwlock5.c +++ b/nptl/tst-rwlock5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-rwlock6.c b/nptl/tst-rwlock6.c index 4bf917aac6..4bb3e97571 100644 --- a/nptl/tst-rwlock6.c +++ b/nptl/tst-rwlock6.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-rwlock7.c b/nptl/tst-rwlock7.c index 97dac64dc7..fe7ef12200 100644 --- a/nptl/tst-rwlock7.c +++ b/nptl/tst-rwlock7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-rwlock8.c b/nptl/tst-rwlock8.c index 3a3bf90709..768e6c8569 100644 --- a/nptl/tst-rwlock8.c +++ b/nptl/tst-rwlock8.c @@ -1,5 +1,5 @@ /* Test program for timedout read/write lock functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 2000. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-rwlock9.c b/nptl/tst-rwlock9.c index 59e2e61e39..8bd908b534 100644 --- a/nptl/tst-rwlock9.c +++ b/nptl/tst-rwlock9.c @@ -1,5 +1,5 @@ /* Test program for timedout read/write lock functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 2000. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-sched1.c b/nptl/tst-sched1.c index deb3d253f4..65581d0773 100644 --- a/nptl/tst-sched1.c +++ b/nptl/tst-sched1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-sem1.c b/nptl/tst-sem1.c index 8ad16adb26..7f2ad0469b 100644 --- a/nptl/tst-sem1.c +++ b/nptl/tst-sem1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-sem10.c b/nptl/tst-sem10.c index 8935cc1f3b..7cf50b6b56 100644 --- a/nptl/tst-sem10.c +++ b/nptl/tst-sem10.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2007. diff --git a/nptl/tst-sem14.c b/nptl/tst-sem14.c index bc8e005974..2b53ef5f7e 100644 --- a/nptl/tst-sem14.c +++ b/nptl/tst-sem14.c @@ -1,5 +1,5 @@ /* Test for sem_post race: bug 14532. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-sem2.c b/nptl/tst-sem2.c index adb851345c..d8c8fae361 100644 --- a/nptl/tst-sem2.c +++ b/nptl/tst-sem2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-sem3.c b/nptl/tst-sem3.c index a1ee8d7fb6..9862f430ad 100644 --- a/nptl/tst-sem3.c +++ b/nptl/tst-sem3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-sem4.c b/nptl/tst-sem4.c index d9fcbe1342..b3bac53c77 100644 --- a/nptl/tst-sem4.c +++ b/nptl/tst-sem4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-sem5.c b/nptl/tst-sem5.c index 037608eb10..3ed53b3018 100644 --- a/nptl/tst-sem5.c +++ b/nptl/tst-sem5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-sem6.c b/nptl/tst-sem6.c index 75fc5871cc..2d9f1ab362 100644 --- a/nptl/tst-sem6.c +++ b/nptl/tst-sem6.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-sem7.c b/nptl/tst-sem7.c index 56399960f0..d0e7f05838 100644 --- a/nptl/tst-sem7.c +++ b/nptl/tst-sem7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-sem8.c b/nptl/tst-sem8.c index 5e8f97803d..1aeb1e1ad3 100644 --- a/nptl/tst-sem8.c +++ b/nptl/tst-sem8.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-sem9.c b/nptl/tst-sem9.c index e84a2a4635..9727486ccd 100644 --- a/nptl/tst-sem9.c +++ b/nptl/tst-sem9.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-setuid1.c b/nptl/tst-setuid1.c index 639245bac6..c012185d57 100644 --- a/nptl/tst-setuid1.c +++ b/nptl/tst-setuid1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/nptl/tst-signal1.c b/nptl/tst-signal1.c index 81dd161a43..1f6c1d94d7 100644 --- a/nptl/tst-signal1.c +++ b/nptl/tst-signal1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-signal2.c b/nptl/tst-signal2.c index 87f3bb85ef..1e065f9290 100644 --- a/nptl/tst-signal2.c +++ b/nptl/tst-signal2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-signal3.c b/nptl/tst-signal3.c index fc34f66038..d76ab5e3bd 100644 --- a/nptl/tst-signal3.c +++ b/nptl/tst-signal3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-signal4.c b/nptl/tst-signal4.c index 2121f6d7a5..a2ed3bb2d1 100644 --- a/nptl/tst-signal4.c +++ b/nptl/tst-signal4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-signal5.c b/nptl/tst-signal5.c index 5952cc6342..2cd9ddc9ca 100644 --- a/nptl/tst-signal5.c +++ b/nptl/tst-signal5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-signal6.c b/nptl/tst-signal6.c index 2830bdf9b6..0d4d0f7f94 100644 --- a/nptl/tst-signal6.c +++ b/nptl/tst-signal6.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-signal7.c b/nptl/tst-signal7.c index b50bbf7a08..68ba43234e 100644 --- a/nptl/tst-signal7.c +++ b/nptl/tst-signal7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2005. diff --git a/nptl/tst-spin1.c b/nptl/tst-spin1.c index 80f2b08ff1..84a7e28744 100644 --- a/nptl/tst-spin1.c +++ b/nptl/tst-spin1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-spin2.c b/nptl/tst-spin2.c index 74228e8c3d..924870d1b6 100644 --- a/nptl/tst-spin2.c +++ b/nptl/tst-spin2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-spin3.c b/nptl/tst-spin3.c index 665a8f368b..e3f914d794 100644 --- a/nptl/tst-spin3.c +++ b/nptl/tst-spin3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-stack1.c b/nptl/tst-stack1.c index ffe2edb637..573cc1a735 100644 --- a/nptl/tst-stack1.c +++ b/nptl/tst-stack1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-stack2.c b/nptl/tst-stack2.c index 201260a559..5f41673b4f 100644 --- a/nptl/tst-stack2.c +++ b/nptl/tst-stack2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-stack3.c b/nptl/tst-stack3.c index 89e72800c9..8f88197ab1 100644 --- a/nptl/tst-stack3.c +++ b/nptl/tst-stack3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-stackguard1.c b/nptl/tst-stackguard1.c index 29c614c0c2..a0a13a14b7 100644 --- a/nptl/tst-stackguard1.c +++ b/nptl/tst-stackguard1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2005. diff --git a/nptl/tst-stdio1.c b/nptl/tst-stdio1.c index 5046eba371..e744953ea1 100644 --- a/nptl/tst-stdio1.c +++ b/nptl/tst-stdio1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-stdio2.c b/nptl/tst-stdio2.c index 6e479c0a3b..209429bbe5 100644 --- a/nptl/tst-stdio2.c +++ b/nptl/tst-stdio2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-sysconf.c b/nptl/tst-sysconf.c index 3d40c49b7b..c16182b6f2 100644 --- a/nptl/tst-sysconf.c +++ b/nptl/tst-sysconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-tls1.c b/nptl/tst-tls1.c index 26cad7e305..fb683ad8c4 100644 --- a/nptl/tst-tls1.c +++ b/nptl/tst-tls1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-tls2.c b/nptl/tst-tls2.c index ea622be640..10e9f76f5b 100644 --- a/nptl/tst-tls2.c +++ b/nptl/tst-tls2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-tls3.c b/nptl/tst-tls3.c index 823efcacad..48d56a5eb4 100644 --- a/nptl/tst-tls3.c +++ b/nptl/tst-tls3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-tls3mod.c b/nptl/tst-tls3mod.c index 61003484b9..ea74153ed6 100644 --- a/nptl/tst-tls3mod.c +++ b/nptl/tst-tls3mod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-tls4.c b/nptl/tst-tls4.c index 1b97a96051..bed8806ba7 100644 --- a/nptl/tst-tls4.c +++ b/nptl/tst-tls4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-tls4moda.c b/nptl/tst-tls4moda.c index 788ac9b629..7edcc61873 100644 --- a/nptl/tst-tls4moda.c +++ b/nptl/tst-tls4moda.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-tls4modb.c b/nptl/tst-tls4modb.c index 6f52c3b6e1..b741406c23 100644 --- a/nptl/tst-tls4modb.c +++ b/nptl/tst-tls4modb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-tls5.c b/nptl/tst-tls5.c index 6210e8a3d3..e3e61d8800 100644 --- a/nptl/tst-tls5.c +++ b/nptl/tst-tls5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/tst-tls6.sh b/nptl/tst-tls6.sh index fb2351208f..5a897fef60 100755 --- a/nptl/tst-tls6.sh +++ b/nptl/tst-tls6.sh @@ -1,6 +1,6 @@ #! /bin/bash # A tls test. -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/tst-tpp.h b/nptl/tst-tpp.h index 3f7d416795..36568c2433 100644 --- a/nptl/tst-tpp.h +++ b/nptl/tst-tpp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/nptl/tst-tsd1.c b/nptl/tst-tsd1.c index 548eb853f1..cfbefec59a 100644 --- a/nptl/tst-tsd1.c +++ b/nptl/tst-tsd1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-tsd2.c b/nptl/tst-tsd2.c index d514ed2eb2..da9a32e85c 100644 --- a/nptl/tst-tsd2.c +++ b/nptl/tst-tsd2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl/tst-tsd3.c b/nptl/tst-tsd3.c index 109aab6b8d..36f7b57a63 100644 --- a/nptl/tst-tsd3.c +++ b/nptl/tst-tsd3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-tsd4.c b/nptl/tst-tsd4.c index c1bed3680c..ab2c292001 100644 --- a/nptl/tst-tsd4.c +++ b/nptl/tst-tsd4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-tsd5.c b/nptl/tst-tsd5.c index f0d6dc2e30..127090d1aa 100644 --- a/nptl/tst-tsd5.c +++ b/nptl/tst-tsd5.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nptl/tst-typesizes.c b/nptl/tst-typesizes.c index 4cfaed8cb4..f046247db8 100644 --- a/nptl/tst-typesizes.c +++ b/nptl/tst-typesizes.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2005. diff --git a/nptl/tst-umask1.c b/nptl/tst-umask1.c index fa20232831..d9beb8dd16 100644 --- a/nptl/tst-umask1.c +++ b/nptl/tst-umask1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/nptl/tst-unload.c b/nptl/tst-unload.c index 48fc80dd7a..d8e4c16446 100644 --- a/nptl/tst-unload.c +++ b/nptl/tst-unload.c @@ -1,5 +1,5 @@ /* Tests for non-unloading of libpthread. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 2000. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/unwind.c b/nptl/unwind.c index e8011b648f..fb2489cd96 100644 --- a/nptl/unwind.c +++ b/nptl/unwind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper and Richard Henderson , 2003. diff --git a/nptl/vars.c b/nptl/vars.c index 3e2db42361..54e077185b 100644 --- a/nptl/vars.c +++ b/nptl/vars.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl/version.c b/nptl/version.c index 4db9fd319a..74d73ceb6d 100644 --- a/nptl/version.c +++ b/nptl/version.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl_db/Makefile b/nptl_db/Makefile index 77ea46e31b..93aad1909b 100644 --- a/nptl_db/Makefile +++ b/nptl_db/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl_db/db-symbols.h b/nptl_db/db-symbols.h index e20ab9bcb6..19682ba55c 100644 --- a/nptl_db/db-symbols.h +++ b/nptl_db/db-symbols.h @@ -1,5 +1,5 @@ /* List of symbols in libpthread examined by libthread_db. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl_db/db_info.c b/nptl_db/db_info.c index 31c8d88e1d..69cbcaa5be 100644 --- a/nptl_db/db_info.c +++ b/nptl_db/db_info.c @@ -1,7 +1,7 @@ /* This file is included by pthread_create.c to define in libpthread all the magic symbols required by libthread_db. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl_db/fetch-value.c b/nptl_db/fetch-value.c index 5986612cdf..e0e1d4f161 100644 --- a/nptl_db/fetch-value.c +++ b/nptl_db/fetch-value.c @@ -1,5 +1,5 @@ /* Helper routines for libthread_db. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl_db/proc_service.h b/nptl_db/proc_service.h index a3ee68c463..837d041b6e 100644 --- a/nptl_db/proc_service.h +++ b/nptl_db/proc_service.h @@ -1,5 +1,5 @@ /* Callback interface for libthread_db, functions users must define. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl_db/structs.def b/nptl_db/structs.def index a0a0ddc35e..ec72ef102a 100644 --- a/nptl_db/structs.def +++ b/nptl_db/structs.def @@ -1,5 +1,5 @@ /* List of types and symbols in libpthread examined by libthread_db. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl_db/td_init.c b/nptl_db/td_init.c index 206bba3c6b..c803148787 100644 --- a/nptl_db/td_init.c +++ b/nptl_db/td_init.c @@ -1,5 +1,5 @@ /* Initialization function of thread debugger support library. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_log.c b/nptl_db/td_log.c index 7d618ac354..9db8b1cf39 100644 --- a/nptl_db/td_log.c +++ b/nptl_db/td_log.c @@ -1,5 +1,5 @@ /* Noop, left for historical reasons. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_symbol_list.c b/nptl_db/td_symbol_list.c index c5ba6c1df1..c637444db1 100644 --- a/nptl_db/td_symbol_list.c +++ b/nptl_db/td_symbol_list.c @@ -1,5 +1,5 @@ /* Return list of symbols the library can request. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/nptl_db/td_ta_clear_event.c b/nptl_db/td_ta_clear_event.c index cf24a1b0ae..26dc04ca5c 100644 --- a/nptl_db/td_ta_clear_event.c +++ b/nptl_db/td_ta_clear_event.c @@ -1,5 +1,5 @@ /* Globally disable events. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_delete.c b/nptl_db/td_ta_delete.c index c1aaf4ad5b..d63bc7acf9 100644 --- a/nptl_db/td_ta_delete.c +++ b/nptl_db/td_ta_delete.c @@ -1,5 +1,5 @@ /* Detach to target process. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_enable_stats.c b/nptl_db/td_ta_enable_stats.c index 8cccaf25e4..8dd3bff71a 100644 --- a/nptl_db/td_ta_enable_stats.c +++ b/nptl_db/td_ta_enable_stats.c @@ -1,5 +1,5 @@ /* Enable collection of statistics for process. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_event_addr.c b/nptl_db/td_ta_event_addr.c index 5423b97239..5738379f43 100644 --- a/nptl_db/td_ta_event_addr.c +++ b/nptl_db/td_ta_event_addr.c @@ -1,5 +1,5 @@ /* Get event address. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_event_getmsg.c b/nptl_db/td_ta_event_getmsg.c index dde9fd1fd1..81430f92b6 100644 --- a/nptl_db/td_ta_event_getmsg.c +++ b/nptl_db/td_ta_event_getmsg.c @@ -1,5 +1,5 @@ /* Retrieve event. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_get_nthreads.c b/nptl_db/td_ta_get_nthreads.c index ff70af4f62..43e7845484 100644 --- a/nptl_db/td_ta_get_nthreads.c +++ b/nptl_db/td_ta_get_nthreads.c @@ -1,5 +1,5 @@ /* Get the number of threads in the process. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_get_ph.c b/nptl_db/td_ta_get_ph.c index 043938e0e8..f9ae402ada 100644 --- a/nptl_db/td_ta_get_ph.c +++ b/nptl_db/td_ta_get_ph.c @@ -1,5 +1,5 @@ /* Get external process handle. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_get_stats.c b/nptl_db/td_ta_get_stats.c index 8f6e0b2b5c..0b9fdf2d89 100644 --- a/nptl_db/td_ta_get_stats.c +++ b/nptl_db/td_ta_get_stats.c @@ -1,5 +1,5 @@ /* Retrieve statistics for process. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_map_id2thr.c b/nptl_db/td_ta_map_id2thr.c index 1c022745d8..276dde34cd 100644 --- a/nptl_db/td_ta_map_id2thr.c +++ b/nptl_db/td_ta_map_id2thr.c @@ -1,5 +1,5 @@ /* Map thread ID to thread handle. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_map_lwp2thr.c b/nptl_db/td_ta_map_lwp2thr.c index 085d6247f1..668627beb3 100644 --- a/nptl_db/td_ta_map_lwp2thr.c +++ b/nptl_db/td_ta_map_lwp2thr.c @@ -1,5 +1,5 @@ /* Which thread is running on an LWP? - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl_db/td_ta_new.c b/nptl_db/td_ta_new.c index 351eaa4145..050e76ace8 100644 --- a/nptl_db/td_ta_new.c +++ b/nptl_db/td_ta_new.c @@ -1,5 +1,5 @@ /* Attach to target process. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_reset_stats.c b/nptl_db/td_ta_reset_stats.c index 3b45c83765..335bc65ffb 100644 --- a/nptl_db/td_ta_reset_stats.c +++ b/nptl_db/td_ta_reset_stats.c @@ -1,5 +1,5 @@ /* Reset statistics. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_set_event.c b/nptl_db/td_ta_set_event.c index 6729ffb75b..754fd885b7 100644 --- a/nptl_db/td_ta_set_event.c +++ b/nptl_db/td_ta_set_event.c @@ -1,5 +1,5 @@ /* Globally enable events. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_setconcurrency.c b/nptl_db/td_ta_setconcurrency.c index 0490459c68..1ecfbeb38e 100644 --- a/nptl_db/td_ta_setconcurrency.c +++ b/nptl_db/td_ta_setconcurrency.c @@ -1,5 +1,5 @@ /* Set suggested concurrency level for process. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_thr_iter.c b/nptl_db/td_ta_thr_iter.c index 0070a7b05b..9f83974dea 100644 --- a/nptl_db/td_ta_thr_iter.c +++ b/nptl_db/td_ta_thr_iter.c @@ -1,5 +1,5 @@ /* Iterate over a process's threads. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_ta_tsd_iter.c b/nptl_db/td_ta_tsd_iter.c index e3f7ffeab8..e613ffe734 100644 --- a/nptl_db/td_ta_tsd_iter.c +++ b/nptl_db/td_ta_tsd_iter.c @@ -1,5 +1,5 @@ /* Iterate over a process's thread-specific data. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_clear_event.c b/nptl_db/td_thr_clear_event.c index bb6739d17f..470053177c 100644 --- a/nptl_db/td_thr_clear_event.c +++ b/nptl_db/td_thr_clear_event.c @@ -1,5 +1,5 @@ /* Disable specific event for thread. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_dbresume.c b/nptl_db/td_thr_dbresume.c index da912f52f8..8d288f9db0 100644 --- a/nptl_db/td_thr_dbresume.c +++ b/nptl_db/td_thr_dbresume.c @@ -1,5 +1,5 @@ /* Resume execution of given thread. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_dbsuspend.c b/nptl_db/td_thr_dbsuspend.c index 1d67e7d0fc..6008598eec 100644 --- a/nptl_db/td_thr_dbsuspend.c +++ b/nptl_db/td_thr_dbsuspend.c @@ -1,5 +1,5 @@ /* Suspend execution of given thread. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_event_enable.c b/nptl_db/td_thr_event_enable.c index ed2bfaf941..30045fed8a 100644 --- a/nptl_db/td_thr_event_enable.c +++ b/nptl_db/td_thr_event_enable.c @@ -1,5 +1,5 @@ /* Enable event process-wide. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_event_getmsg.c b/nptl_db/td_thr_event_getmsg.c index 33255724ab..990227ac08 100644 --- a/nptl_db/td_thr_event_getmsg.c +++ b/nptl_db/td_thr_event_getmsg.c @@ -1,5 +1,5 @@ /* Retrieve event. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_get_info.c b/nptl_db/td_thr_get_info.c index 18d0a2b18f..cc361b3c48 100644 --- a/nptl_db/td_thr_get_info.c +++ b/nptl_db/td_thr_get_info.c @@ -1,5 +1,5 @@ /* Get thread information. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_getfpregs.c b/nptl_db/td_thr_getfpregs.c index d7766f5883..2cdae14660 100644 --- a/nptl_db/td_thr_getfpregs.c +++ b/nptl_db/td_thr_getfpregs.c @@ -1,5 +1,5 @@ /* Get a thread's floating-point register set. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_getgregs.c b/nptl_db/td_thr_getgregs.c index 2268e4eed7..825d65d446 100644 --- a/nptl_db/td_thr_getgregs.c +++ b/nptl_db/td_thr_getgregs.c @@ -1,5 +1,5 @@ /* Get a thread's general register set. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_getxregs.c b/nptl_db/td_thr_getxregs.c index bae19323c3..cd33e6bb9e 100644 --- a/nptl_db/td_thr_getxregs.c +++ b/nptl_db/td_thr_getxregs.c @@ -1,5 +1,5 @@ /* Get a thread's extra state register set. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_getxregsize.c b/nptl_db/td_thr_getxregsize.c index 652e86a2e4..50fd9004d4 100644 --- a/nptl_db/td_thr_getxregsize.c +++ b/nptl_db/td_thr_getxregsize.c @@ -1,5 +1,5 @@ /* Get the size of the extra state register set for this architecture. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_set_event.c b/nptl_db/td_thr_set_event.c index b833c6ca9c..f7d2860e90 100644 --- a/nptl_db/td_thr_set_event.c +++ b/nptl_db/td_thr_set_event.c @@ -1,5 +1,5 @@ /* Enable specific event for thread. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_setfpregs.c b/nptl_db/td_thr_setfpregs.c index 7c9c4e301b..62164d0ed5 100644 --- a/nptl_db/td_thr_setfpregs.c +++ b/nptl_db/td_thr_setfpregs.c @@ -1,5 +1,5 @@ /* Set a thread's floating-point register set. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_setgregs.c b/nptl_db/td_thr_setgregs.c index 4d240839ac..446d96c67b 100644 --- a/nptl_db/td_thr_setgregs.c +++ b/nptl_db/td_thr_setgregs.c @@ -1,5 +1,5 @@ /* Set a thread's general register set. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_setprio.c b/nptl_db/td_thr_setprio.c index 62b3adfa1b..b2f75136cb 100644 --- a/nptl_db/td_thr_setprio.c +++ b/nptl_db/td_thr_setprio.c @@ -1,5 +1,5 @@ /* Set a thread's priority. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_setsigpending.c b/nptl_db/td_thr_setsigpending.c index e0c82e0ea0..bdbce549f3 100644 --- a/nptl_db/td_thr_setsigpending.c +++ b/nptl_db/td_thr_setsigpending.c @@ -1,5 +1,5 @@ /* Raise a signal for a thread. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_setxregs.c b/nptl_db/td_thr_setxregs.c index 3343a6588e..c1d5cdb3fc 100644 --- a/nptl_db/td_thr_setxregs.c +++ b/nptl_db/td_thr_setxregs.c @@ -1,5 +1,5 @@ /* Set a thread's extra state register set. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_sigsetmask.c b/nptl_db/td_thr_sigsetmask.c index 0eaf0e6afd..c7fd1baa19 100644 --- a/nptl_db/td_thr_sigsetmask.c +++ b/nptl_db/td_thr_sigsetmask.c @@ -1,5 +1,5 @@ /* Set a thread's signal mask. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_tls_get_addr.c b/nptl_db/td_thr_tls_get_addr.c index 19315902de..96a2b2a5d2 100644 --- a/nptl_db/td_thr_tls_get_addr.c +++ b/nptl_db/td_thr_tls_get_addr.c @@ -1,5 +1,5 @@ /* Get address of thread local variable. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/nptl_db/td_thr_tlsbase.c b/nptl_db/td_thr_tlsbase.c index 769b8de9e1..217df1fa9b 100644 --- a/nptl_db/td_thr_tlsbase.c +++ b/nptl_db/td_thr_tlsbase.c @@ -1,5 +1,5 @@ /* Locate TLS data for a thread. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl_db/td_thr_tsd.c b/nptl_db/td_thr_tsd.c index 79e39d3284..96d412ee0c 100644 --- a/nptl_db/td_thr_tsd.c +++ b/nptl_db/td_thr_tsd.c @@ -1,5 +1,5 @@ /* Get a thread-specific data pointer for a thread. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/td_thr_validate.c b/nptl_db/td_thr_validate.c index 8bde344905..8e6a21bc74 100644 --- a/nptl_db/td_thr_validate.c +++ b/nptl_db/td_thr_validate.c @@ -1,5 +1,5 @@ /* Validate a thread handle. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/nptl_db/thread_db.h b/nptl_db/thread_db.h index 97423a44ff..81cfbea47f 100644 --- a/nptl_db/thread_db.h +++ b/nptl_db/thread_db.h @@ -1,5 +1,5 @@ /* thread_db.h -- interface to libthread_db.so library for debugging -lpthread - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nptl_db/thread_dbP.h b/nptl_db/thread_dbP.h index bf5377037a..66d6d90f97 100644 --- a/nptl_db/thread_dbP.h +++ b/nptl_db/thread_dbP.h @@ -1,5 +1,5 @@ /* Private header for thread debug library - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nscd/Makefile b/nscd/Makefile index b8498da886..639d87b9f8 100644 --- a/nscd/Makefile +++ b/nscd/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/nscd/aicache.c b/nscd/aicache.c index 713e41a2e8..d6b928cf2d 100644 --- a/nscd/aicache.c +++ b/nscd/aicache.c @@ -1,5 +1,5 @@ /* Cache handling for host lookup. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nscd/cache.c b/nscd/cache.c index 699447a853..2c35a34943 100644 --- a/nscd/cache.c +++ b/nscd/cache.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/nscd/connections.c b/nscd/connections.c index e54d4f213a..f3732f5ef4 100644 --- a/nscd/connections.c +++ b/nscd/connections.c @@ -1,5 +1,5 @@ /* Inner loops of cache daemon. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/nscd/dbg_log.c b/nscd/dbg_log.c index 0ac8a11035..f42d18c731 100644 --- a/nscd/dbg_log.c +++ b/nscd/dbg_log.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nscd/dbg_log.h b/nscd/dbg_log.h index 0c35a30f0a..d042b1ab75 100644 --- a/nscd/dbg_log.h +++ b/nscd/dbg_log.h @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nscd/gai.c b/nscd/gai.c index 7db5aa9d2a..47d3d402fe 100644 --- a/nscd/gai.c +++ b/nscd/gai.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nscd/getgrgid_r.c b/nscd/getgrgid_r.c index f6b8373a98..4864c12187 100644 --- a/nscd/getgrgid_r.c +++ b/nscd/getgrgid_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nscd/getgrnam_r.c b/nscd/getgrnam_r.c index f948ef22eb..6056a01d16 100644 --- a/nscd/getgrnam_r.c +++ b/nscd/getgrnam_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nscd/gethstbyad_r.c b/nscd/gethstbyad_r.c index 60633e653f..ccb8775836 100644 --- a/nscd/gethstbyad_r.c +++ b/nscd/gethstbyad_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nscd/gethstbynm3_r.c b/nscd/gethstbynm3_r.c index 8143537d7e..8897f31a37 100644 --- a/nscd/gethstbynm3_r.c +++ b/nscd/gethstbynm3_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nscd/getpwnam_r.c b/nscd/getpwnam_r.c index d22d35b315..956c4e2a6b 100644 --- a/nscd/getpwnam_r.c +++ b/nscd/getpwnam_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nscd/getpwuid_r.c b/nscd/getpwuid_r.c index 8be7853d3b..3dda341a4d 100644 --- a/nscd/getpwuid_r.c +++ b/nscd/getpwuid_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nscd/getsrvbynm_r.c b/nscd/getsrvbynm_r.c index 29e0a2504c..d48242ec14 100644 --- a/nscd/getsrvbynm_r.c +++ b/nscd/getsrvbynm_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nscd/getsrvbypt_r.c b/nscd/getsrvbypt_r.c index 5d6c6fb57b..5c1ec3257a 100644 --- a/nscd/getsrvbypt_r.c +++ b/nscd/getsrvbypt_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nscd/grpcache.c b/nscd/grpcache.c index 5658792445..8f5d39b138 100644 --- a/nscd/grpcache.c +++ b/nscd/grpcache.c @@ -1,5 +1,5 @@ /* Cache handling for group lookup. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/nscd/hstcache.c b/nscd/hstcache.c index 0d421fcbbb..abedf9a63e 100644 --- a/nscd/hstcache.c +++ b/nscd/hstcache.c @@ -1,5 +1,5 @@ /* Cache handling for host lookup. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/nscd/initgrcache.c b/nscd/initgrcache.c index 4580884ead..a727fa9c8b 100644 --- a/nscd/initgrcache.c +++ b/nscd/initgrcache.c @@ -1,5 +1,5 @@ /* Cache handling for host lookup. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nscd/mem.c b/nscd/mem.c index 392fe5bbb4..0d09e21d5e 100644 --- a/nscd/mem.c +++ b/nscd/mem.c @@ -1,5 +1,5 @@ /* Cache memory handling. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nscd/netgroupcache.c b/nscd/netgroupcache.c index a607dda0a5..baebdd7e4e 100644 --- a/nscd/netgroupcache.c +++ b/nscd/netgroupcache.c @@ -1,5 +1,5 @@ /* Cache handling for netgroup lookup. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/nscd/nscd-client.h b/nscd/nscd-client.h index 360852b2a6..b5c9f871a7 100644 --- a/nscd/nscd-client.h +++ b/nscd/nscd-client.h @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nscd/nscd.c b/nscd/nscd.c index ffbc6f8bc9..c7e5cd43a5 100644 --- a/nscd/nscd.c +++ b/nscd/nscd.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nscd/nscd.h b/nscd/nscd.h index cbd402a958..972f4628b9 100644 --- a/nscd/nscd.h +++ b/nscd/nscd.h @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nscd/nscd_conf.c b/nscd/nscd_conf.c index 30cc403824..7856ed9b5a 100644 --- a/nscd/nscd_conf.c +++ b/nscd/nscd_conf.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nscd/nscd_getai.c b/nscd/nscd_getai.c index 236c939477..155cfef2eb 100644 --- a/nscd/nscd_getai.c +++ b/nscd/nscd_getai.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nscd/nscd_getgr_r.c b/nscd/nscd_getgr_r.c index dbcaac934a..ed5dc11159 100644 --- a/nscd/nscd_getgr_r.c +++ b/nscd/nscd_getgr_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nscd/nscd_gethst_r.c b/nscd/nscd_gethst_r.c index e07f62236a..3368fc4482 100644 --- a/nscd/nscd_gethst_r.c +++ b/nscd/nscd_gethst_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/nscd/nscd_getpw_r.c b/nscd/nscd_getpw_r.c index 46a9108b9e..5454ab62ad 100644 --- a/nscd/nscd_getpw_r.c +++ b/nscd/nscd_getpw_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nscd/nscd_getserv_r.c b/nscd/nscd_getserv_r.c index 772825854d..38f159eecf 100644 --- a/nscd/nscd_getserv_r.c +++ b/nscd/nscd_getserv_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2007. diff --git a/nscd/nscd_helper.c b/nscd/nscd_helper.c index 8587e4549c..e4fb2e59f8 100644 --- a/nscd/nscd_helper.c +++ b/nscd/nscd_helper.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/nscd/nscd_initgroups.c b/nscd/nscd_initgroups.c index 19e3d79aa8..8bc3e6ce3d 100644 --- a/nscd/nscd_initgroups.c +++ b/nscd/nscd_initgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nscd/nscd_netgroup.c b/nscd/nscd_netgroup.c index acb2c81457..4acb0be412 100644 --- a/nscd/nscd_netgroup.c +++ b/nscd/nscd_netgroup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/nscd/nscd_proto.h b/nscd/nscd_proto.h index d0c6584e4b..dc971c21b6 100644 --- a/nscd/nscd_proto.h +++ b/nscd/nscd_proto.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nscd/nscd_setup_thread.c b/nscd/nscd_setup_thread.c index 037652edf6..989dab3352 100644 --- a/nscd/nscd_setup_thread.c +++ b/nscd/nscd_setup_thread.c @@ -1,5 +1,5 @@ /* Setup of nscd worker threads. Stub verison. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/nscd/nscd_stat.c b/nscd/nscd_stat.c index 3df4273136..997ff46a8e 100644 --- a/nscd/nscd_stat.c +++ b/nscd/nscd_stat.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nscd/pwdcache.c b/nscd/pwdcache.c index 4f3fb416da..5adb8ad8e3 100644 --- a/nscd/pwdcache.c +++ b/nscd/pwdcache.c @@ -1,5 +1,5 @@ /* Cache handling for passwd lookup. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/nscd/selinux.c b/nscd/selinux.c index 0866c44953..c0c8e22f5c 100644 --- a/nscd/selinux.c +++ b/nscd/selinux.c @@ -1,5 +1,5 @@ /* SELinux access controls for nscd. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Matthew Rickard , 2004. diff --git a/nscd/selinux.h b/nscd/selinux.h index baf249d6af..04f2b7e68d 100644 --- a/nscd/selinux.h +++ b/nscd/selinux.h @@ -1,5 +1,5 @@ /* Header for nscd SELinux access controls. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Matthew Rickard , 2004. diff --git a/nscd/servicescache.c b/nscd/servicescache.c index b7738a7cb4..52058a6e02 100644 --- a/nscd/servicescache.c +++ b/nscd/servicescache.c @@ -1,5 +1,5 @@ /* Cache handling for services lookup. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2007. diff --git a/nss/Makefile b/nss/Makefile index ae2e5f6d5a..c8880c061c 100644 --- a/nss/Makefile +++ b/nss/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/XXX-lookup.c b/nss/XXX-lookup.c index 757ba12540..83ba6cf896 100644 --- a/nss/XXX-lookup.c +++ b/nss/XXX-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/alias-lookup.c b/nss/alias-lookup.c index 3047e2d64b..c771858309 100644 --- a/nss/alias-lookup.c +++ b/nss/alias-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/databases.def b/nss/databases.def index fc88c141bd..0d01581ddd 100644 --- a/nss/databases.def +++ b/nss/databases.def @@ -1,5 +1,5 @@ /* List of all databases defined for the NSS in GNU C Library. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/db-Makefile b/nss/db-Makefile index 26b277d883..d0009d0fac 100644 --- a/nss/db-Makefile +++ b/nss/db-Makefile @@ -1,5 +1,5 @@ # Makefile to (re-)generate db versions of system database files. -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper , 1996. # diff --git a/nss/digits_dots.c b/nss/digits_dots.c index e007ef47a4..0c12bf1f3d 100644 --- a/nss/digits_dots.c +++ b/nss/digits_dots.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by H.J. Lu , 1997. diff --git a/nss/ethers-lookup.c b/nss/ethers-lookup.c index 351b90b767..46bd76d879 100644 --- a/nss/ethers-lookup.c +++ b/nss/ethers-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/function.def b/nss/function.def index b5599958f9..4dfea8555d 100644 --- a/nss/function.def +++ b/nss/function.def @@ -1,5 +1,5 @@ /* List of functions defined for static NSS in GNU C Library. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/getXXbyYY.c b/nss/getXXbyYY.c index e12129f4d4..c9c64156aa 100644 --- a/nss/getXXbyYY.c +++ b/nss/getXXbyYY.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/getXXbyYY_r.c b/nss/getXXbyYY_r.c index 33e63d4318..edb74db029 100644 --- a/nss/getXXbyYY_r.c +++ b/nss/getXXbyYY_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/getXXent.c b/nss/getXXent.c index f11adddcac..609650e272 100644 --- a/nss/getXXent.c +++ b/nss/getXXent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/getXXent_r.c b/nss/getXXent_r.c index af0e6c76ce..89acb09031 100644 --- a/nss/getXXent_r.c +++ b/nss/getXXent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/getent.c b/nss/getent.c index 05ea80825a..555957b95a 100644 --- a/nss/getent.c +++ b/nss/getent.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/nss/getnssent.c b/nss/getnssent.c index 5c9de19146..ef05ccfbb5 100644 --- a/nss/getnssent.c +++ b/nss/getnssent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/getnssent_r.c b/nss/getnssent_r.c index a71165df88..31d4c91139 100644 --- a/nss/getnssent_r.c +++ b/nss/getnssent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/grp-lookup.c b/nss/grp-lookup.c index 64ca941c79..0509194062 100644 --- a/nss/grp-lookup.c +++ b/nss/grp-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/hosts-lookup.c b/nss/hosts-lookup.c index 96dde63b8f..2301242095 100644 --- a/nss/hosts-lookup.c +++ b/nss/hosts-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/key-lookup.c b/nss/key-lookup.c index e64d78d11d..1625ab8a49 100644 --- a/nss/key-lookup.c +++ b/nss/key-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/makedb.c b/nss/makedb.c index bfc9084425..41217a8427 100644 --- a/nss/makedb.c +++ b/nss/makedb.c @@ -1,5 +1,5 @@ /* Create simple DB database from textual input. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/netgrp-lookup.c b/nss/netgrp-lookup.c index 2c2d36f21b..b7937fdb8f 100644 --- a/nss/netgrp-lookup.c +++ b/nss/netgrp-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/network-lookup.c b/nss/network-lookup.c index 5b64b6f63d..80004c7f8e 100644 --- a/nss/network-lookup.c +++ b/nss/network-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/nss.h b/nss/nss.h index 167a8d5f87..6896703c79 100644 --- a/nss/nss.h +++ b/nss/nss.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_db/db-XXX.c b/nss/nss_db/db-XXX.c index 40b5ce9be7..89b1a126c2 100644 --- a/nss/nss_db/db-XXX.c +++ b/nss/nss_db/db-XXX.c @@ -1,5 +1,5 @@ /* Common code for DB-based databases in nss_db module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_db/db-init.c b/nss/nss_db/db-init.c index 5135691c19..521c452665 100644 --- a/nss/nss_db/db-init.c +++ b/nss/nss_db/db-init.c @@ -1,5 +1,5 @@ /* Initialization in nss_db module. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_db/db-initgroups.c b/nss/nss_db/db-initgroups.c index d0d73f0af9..fb130f9dd6 100644 --- a/nss/nss_db/db-initgroups.c +++ b/nss/nss_db/db-initgroups.c @@ -1,5 +1,5 @@ /* Initgroups handling in nss_db module. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . diff --git a/nss/nss_db/db-netgrp.c b/nss/nss_db/db-netgrp.c index 203529f4c8..8c8fbd8180 100644 --- a/nss/nss_db/db-netgrp.c +++ b/nss/nss_db/db-netgrp.c @@ -1,5 +1,5 @@ /* Netgroup file parser in nss_db modules. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/nss_db/db-open.c b/nss/nss_db/db-open.c index 916ed75259..ea867a7a7f 100644 --- a/nss/nss_db/db-open.c +++ b/nss/nss_db/db-open.c @@ -1,5 +1,5 @@ /* Common database routines for nss_db. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_db/nss_db.h b/nss/nss_db/nss_db.h index 9c5dee63a6..5c6b46b47c 100644 --- a/nss/nss_db/nss_db.h +++ b/nss/nss_db/nss_db.h @@ -1,5 +1,5 @@ /* Common database open/close routines for nss_db. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-XXX.c b/nss/nss_files/files-XXX.c index b62208c324..36242f9d44 100644 --- a/nss/nss_files/files-XXX.c +++ b/nss/nss_files/files-XXX.c @@ -1,5 +1,5 @@ /* Common code for file-based databases in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-alias.c b/nss/nss_files/files-alias.c index 8e9cd60bb9..53088f6a8b 100644 --- a/nss/nss_files/files-alias.c +++ b/nss/nss_files/files-alias.c @@ -1,5 +1,5 @@ /* Mail alias file parser in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/nss_files/files-ethers.c b/nss/nss_files/files-ethers.c index 4674307202..3f9ec57448 100644 --- a/nss/nss_files/files-ethers.c +++ b/nss/nss_files/files-ethers.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-grp.c b/nss/nss_files/files-grp.c index 2b818714c0..36068d446b 100644 --- a/nss/nss_files/files-grp.c +++ b/nss/nss_files/files-grp.c @@ -1,5 +1,5 @@ /* Group file parser in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-have_o_cloexec.c b/nss/nss_files/files-have_o_cloexec.c index e621b0a482..4a6cd173ed 100644 --- a/nss/nss_files/files-have_o_cloexec.c +++ b/nss/nss_files/files-have_o_cloexec.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-hosts.c b/nss/nss_files/files-hosts.c index cfec75da76..ab64eadabb 100644 --- a/nss/nss_files/files-hosts.c +++ b/nss/nss_files/files-hosts.c @@ -1,5 +1,5 @@ /* Hosts file parser in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-init.c b/nss/nss_files/files-init.c index a34c49a99f..346395c6ff 100644 --- a/nss/nss_files/files-init.c +++ b/nss/nss_files/files-init.c @@ -1,5 +1,5 @@ /* Initialization in nss_files module. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-initgroups.c b/nss/nss_files/files-initgroups.c index a547b0a386..9249c24939 100644 --- a/nss/nss_files/files-initgroups.c +++ b/nss/nss_files/files-initgroups.c @@ -1,5 +1,5 @@ /* Initgroups handling in nss_files module. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-key.c b/nss/nss_files/files-key.c index 4b2cf24ea6..561f79b669 100644 --- a/nss/nss_files/files-key.c +++ b/nss/nss_files/files-key.c @@ -1,5 +1,5 @@ /* Public key file parser in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-netgrp.c b/nss/nss_files/files-netgrp.c index 9cc678b38e..339f704c93 100644 --- a/nss/nss_files/files-netgrp.c +++ b/nss/nss_files/files-netgrp.c @@ -1,5 +1,5 @@ /* Netgroup file parser in nss_files modules. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/nss_files/files-network.c b/nss/nss_files/files-network.c index f18e9e174d..c0ac7bbd0a 100644 --- a/nss/nss_files/files-network.c +++ b/nss/nss_files/files-network.c @@ -1,5 +1,5 @@ /* Networks file parser in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-parse.c b/nss/nss_files/files-parse.c index 91f32da8b8..1da1a6f352 100644 --- a/nss/nss_files/files-parse.c +++ b/nss/nss_files/files-parse.c @@ -1,5 +1,5 @@ /* Common code for file-based database parsers in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-proto.c b/nss/nss_files/files-proto.c index 9c55515396..fded57dc20 100644 --- a/nss/nss_files/files-proto.c +++ b/nss/nss_files/files-proto.c @@ -1,5 +1,5 @@ /* Protocols file parser in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-pwd.c b/nss/nss_files/files-pwd.c index 3b31817a70..5d3c46be81 100644 --- a/nss/nss_files/files-pwd.c +++ b/nss/nss_files/files-pwd.c @@ -1,5 +1,5 @@ /* User file parser in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-rpc.c b/nss/nss_files/files-rpc.c index f42184f642..1cb9b78bde 100644 --- a/nss/nss_files/files-rpc.c +++ b/nss/nss_files/files-rpc.c @@ -1,5 +1,5 @@ /* SunRPC program number file parser in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-service.c b/nss/nss_files/files-service.c index c0f9dbacd7..2401cb0852 100644 --- a/nss/nss_files/files-service.c +++ b/nss/nss_files/files-service.c @@ -1,5 +1,5 @@ /* Services file parser in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-sgrp.c b/nss/nss_files/files-sgrp.c index dcbf18a0a8..2b2159a4ef 100644 --- a/nss/nss_files/files-sgrp.c +++ b/nss/nss_files/files-sgrp.c @@ -1,5 +1,5 @@ /* User file parser in nss_files module. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nss_files/files-spwd.c b/nss/nss_files/files-spwd.c index dfa0fa25ea..b7e2dddb44 100644 --- a/nss/nss_files/files-spwd.c +++ b/nss/nss_files/files-spwd.c @@ -1,5 +1,5 @@ /* User file parser in nss_files module. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/nsswitch.c b/nss/nsswitch.c index c927424ea1..07ca225232 100644 --- a/nss/nsswitch.c +++ b/nss/nsswitch.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/nsswitch.h b/nss/nsswitch.h index 7a7b852747..90a0c62f77 100644 --- a/nss/nsswitch.h +++ b/nss/nsswitch.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/proto-lookup.c b/nss/proto-lookup.c index 0a3bb1bf85..8ccc9da2f2 100644 --- a/nss/proto-lookup.c +++ b/nss/proto-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/pwd-lookup.c b/nss/pwd-lookup.c index a72603d556..b2c1bc7419 100644 --- a/nss/pwd-lookup.c +++ b/nss/pwd-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/rpc-lookup.c b/nss/rpc-lookup.c index b22d5c7209..6ef66fcf2e 100644 --- a/nss/rpc-lookup.c +++ b/nss/rpc-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/service-lookup.c b/nss/service-lookup.c index c1da2d8777..7f7dcdfb4a 100644 --- a/nss/service-lookup.c +++ b/nss/service-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/sgrp-lookup.c b/nss/sgrp-lookup.c index 6d079a4b6e..ee1782de1b 100644 --- a/nss/sgrp-lookup.c +++ b/nss/sgrp-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2009. diff --git a/nss/spwd-lookup.c b/nss/spwd-lookup.c index 902ede0749..aba1a4cc02 100644 --- a/nss/spwd-lookup.c +++ b/nss/spwd-lookup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/nss/test-digits-dots.c b/nss/test-digits-dots.c index 1efa3449a3..db6fdb7b33 100644 --- a/nss/test-digits-dots.c +++ b/nss/test-digits-dots.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/nss/test-netdb.c b/nss/test-netdb.c index 40b2f604a0..1620b5b173 100644 --- a/nss/test-netdb.c +++ b/nss/test-netdb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/po/Makefile b/po/Makefile index e022621761..d4b2e4accd 100644 --- a/po/Makefile +++ b/po/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/aarch64/__longjmp.S b/ports/sysdeps/aarch64/__longjmp.S index ffd30a24e8..250f2afa4e 100644 --- a/ports/sysdeps/aarch64/__longjmp.S +++ b/ports/sysdeps/aarch64/__longjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/bits/atomic.h b/ports/sysdeps/aarch64/bits/atomic.h index 3f90424264..456e2ecdff 100644 --- a/ports/sysdeps/aarch64/bits/atomic.h +++ b/ports/sysdeps/aarch64/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/bits/endian.h b/ports/sysdeps/aarch64/bits/endian.h index 597a52f610..bafaba7011 100644 --- a/ports/sysdeps/aarch64/bits/endian.h +++ b/ports/sysdeps/aarch64/bits/endian.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/bits/fenv.h b/ports/sysdeps/aarch64/bits/fenv.h index ef0c06aa90..8c884cbef4 100644 --- a/ports/sysdeps/aarch64/bits/fenv.h +++ b/ports/sysdeps/aarch64/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/bits/link.h b/ports/sysdeps/aarch64/bits/link.h index 3408c5b239..fe068276ea 100644 --- a/ports/sysdeps/aarch64/bits/link.h +++ b/ports/sysdeps/aarch64/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/bits/linkmap.h b/ports/sysdeps/aarch64/bits/linkmap.h index 85a0a2e4ed..96e79b153f 100644 --- a/ports/sysdeps/aarch64/bits/linkmap.h +++ b/ports/sysdeps/aarch64/bits/linkmap.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/bits/mathdef.h b/ports/sysdeps/aarch64/bits/mathdef.h index 194ef890e3..eb0a82559c 100644 --- a/ports/sysdeps/aarch64/bits/mathdef.h +++ b/ports/sysdeps/aarch64/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/bits/setjmp.h b/ports/sysdeps/aarch64/bits/setjmp.h index 6a93e0a253..e0a3d6073b 100644 --- a/ports/sysdeps/aarch64/bits/setjmp.h +++ b/ports/sysdeps/aarch64/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/bzero.S b/ports/sysdeps/aarch64/bzero.S index 228c0a5f35..d082c15cdb 100644 --- a/ports/sysdeps/aarch64/bzero.S +++ b/ports/sysdeps/aarch64/bzero.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/crti.S b/ports/sysdeps/aarch64/crti.S index ff2e3d758a..2db7b6793f 100644 --- a/ports/sysdeps/aarch64/crti.S +++ b/ports/sysdeps/aarch64/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for AArch64. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/crtn.S b/ports/sysdeps/aarch64/crtn.S index f593f27eb2..3094e0d148 100644 --- a/ports/sysdeps/aarch64/crtn.S +++ b/ports/sysdeps/aarch64/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for AArch64. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/dl-irel.h b/ports/sysdeps/aarch64/dl-irel.h index f37ee399c8..78395caf23 100644 --- a/ports/sysdeps/aarch64/dl-irel.h +++ b/ports/sysdeps/aarch64/dl-irel.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF indirect relocation inline functions. AArch64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/aarch64/dl-machine.h b/ports/sysdeps/aarch64/dl-machine.h index 01a214fb6b..997c860ccb 100644 --- a/ports/sysdeps/aarch64/dl-machine.h +++ b/ports/sysdeps/aarch64/dl-machine.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/dl-sysdep.h b/ports/sysdeps/aarch64/dl-sysdep.h index 3532ee8603..4a452f5d8f 100644 --- a/ports/sysdeps/aarch64/dl-sysdep.h +++ b/ports/sysdeps/aarch64/dl-sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/dl-tls.h b/ports/sysdeps/aarch64/dl-tls.h index 027fafb16a..1eb8c97245 100644 --- a/ports/sysdeps/aarch64/dl-tls.h +++ b/ports/sysdeps/aarch64/dl-tls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/dl-tlsdesc.S b/ports/sysdeps/aarch64/dl-tlsdesc.S index db61ef130c..ded5471bea 100644 --- a/ports/sysdeps/aarch64/dl-tlsdesc.S +++ b/ports/sysdeps/aarch64/dl-tlsdesc.S @@ -1,6 +1,6 @@ /* Thread-local storage handling in the ELF dynamic linker. AArch64 version. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/dl-tlsdesc.h b/ports/sysdeps/aarch64/dl-tlsdesc.h index ac22494a6b..5ff1f74177 100644 --- a/ports/sysdeps/aarch64/dl-tlsdesc.h +++ b/ports/sysdeps/aarch64/dl-tlsdesc.h @@ -1,6 +1,6 @@ /* Thread-local storage descriptor handling in the ELF dynamic linker. AArch64 version. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/dl-trampoline.S b/ports/sysdeps/aarch64/dl-trampoline.S index 923ca76afc..c007165ad5 100644 --- a/ports/sysdeps/aarch64/dl-trampoline.S +++ b/ports/sysdeps/aarch64/dl-trampoline.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/fclrexcpt.c b/ports/sysdeps/aarch64/fpu/fclrexcpt.c index bba5f73e8c..531269f9cf 100644 --- a/ports/sysdeps/aarch64/fpu/fclrexcpt.c +++ b/ports/sysdeps/aarch64/fpu/fclrexcpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/fedisblxcpt.c b/ports/sysdeps/aarch64/fpu/fedisblxcpt.c index 3c2a26b726..719d52f60a 100644 --- a/ports/sysdeps/aarch64/fpu/fedisblxcpt.c +++ b/ports/sysdeps/aarch64/fpu/fedisblxcpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/feenablxcpt.c b/ports/sysdeps/aarch64/fpu/feenablxcpt.c index 90d4dd132b..d97699981f 100644 --- a/ports/sysdeps/aarch64/fpu/feenablxcpt.c +++ b/ports/sysdeps/aarch64/fpu/feenablxcpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/fegetenv.c b/ports/sysdeps/aarch64/fpu/fegetenv.c index ce0d1f7b58..4c88fbfa43 100644 --- a/ports/sysdeps/aarch64/fpu/fegetenv.c +++ b/ports/sysdeps/aarch64/fpu/fegetenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/fegetexcept.c b/ports/sysdeps/aarch64/fpu/fegetexcept.c index 027aae7ebe..dbcd92a4a2 100644 --- a/ports/sysdeps/aarch64/fpu/fegetexcept.c +++ b/ports/sysdeps/aarch64/fpu/fegetexcept.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/fegetround.c b/ports/sysdeps/aarch64/fpu/fegetround.c index 370caa16d3..a970ce3569 100644 --- a/ports/sysdeps/aarch64/fpu/fegetround.c +++ b/ports/sysdeps/aarch64/fpu/fegetround.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/feholdexcpt.c b/ports/sysdeps/aarch64/fpu/feholdexcpt.c index f2d1b816ca..0514ac15b5 100644 --- a/ports/sysdeps/aarch64/fpu/feholdexcpt.c +++ b/ports/sysdeps/aarch64/fpu/feholdexcpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/fesetenv.c b/ports/sysdeps/aarch64/fpu/fesetenv.c index 8cafc78753..443c705d22 100644 --- a/ports/sysdeps/aarch64/fpu/fesetenv.c +++ b/ports/sysdeps/aarch64/fpu/fesetenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/fesetround.c b/ports/sysdeps/aarch64/fpu/fesetround.c index 96f3ea7bf9..40a05f6582 100644 --- a/ports/sysdeps/aarch64/fpu/fesetround.c +++ b/ports/sysdeps/aarch64/fpu/fesetround.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/feupdateenv.c b/ports/sysdeps/aarch64/fpu/feupdateenv.c index cd2bc1beec..6d64a9b727 100644 --- a/ports/sysdeps/aarch64/fpu/feupdateenv.c +++ b/ports/sysdeps/aarch64/fpu/feupdateenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/fgetexcptflg.c b/ports/sysdeps/aarch64/fpu/fgetexcptflg.c index 97433042d6..d25da1cab9 100644 --- a/ports/sysdeps/aarch64/fpu/fgetexcptflg.c +++ b/ports/sysdeps/aarch64/fpu/fgetexcptflg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/fpu_control.h b/ports/sysdeps/aarch64/fpu/fpu_control.h index 89ff7e129d..79ab5fb95d 100644 --- a/ports/sysdeps/aarch64/fpu/fpu_control.h +++ b/ports/sysdeps/aarch64/fpu/fpu_control.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/fraiseexcpt.c b/ports/sysdeps/aarch64/fpu/fraiseexcpt.c index 56006f82de..3e5c118677 100644 --- a/ports/sysdeps/aarch64/fpu/fraiseexcpt.c +++ b/ports/sysdeps/aarch64/fpu/fraiseexcpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/fsetexcptflg.c b/ports/sysdeps/aarch64/fpu/fsetexcptflg.c index 4ac5b5e654..49cd1e467f 100644 --- a/ports/sysdeps/aarch64/fpu/fsetexcptflg.c +++ b/ports/sysdeps/aarch64/fpu/fsetexcptflg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/ftestexcept.c b/ports/sysdeps/aarch64/fpu/ftestexcept.c index 9ed22baae3..73e01d4388 100644 --- a/ports/sysdeps/aarch64/fpu/ftestexcept.c +++ b/ports/sysdeps/aarch64/fpu/ftestexcept.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/get-rounding-mode.h b/ports/sysdeps/aarch64/fpu/get-rounding-mode.h index 0000e9ac4b..5c1615d04c 100644 --- a/ports/sysdeps/aarch64/fpu/get-rounding-mode.h +++ b/ports/sysdeps/aarch64/fpu/get-rounding-mode.h @@ -1,6 +1,6 @@ /* Determine floating-point rounding mode within libc. AArch64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_ceil.c b/ports/sysdeps/aarch64/fpu/s_ceil.c index ef25194fc4..5a85b51867 100644 --- a/ports/sysdeps/aarch64/fpu/s_ceil.c +++ b/ports/sysdeps/aarch64/fpu/s_ceil.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_ceilf.c b/ports/sysdeps/aarch64/fpu/s_ceilf.c index fb97513144..70be6067d8 100644 --- a/ports/sysdeps/aarch64/fpu/s_ceilf.c +++ b/ports/sysdeps/aarch64/fpu/s_ceilf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_floor.c b/ports/sysdeps/aarch64/fpu/s_floor.c index 93b44adf61..d7a2f48780 100644 --- a/ports/sysdeps/aarch64/fpu/s_floor.c +++ b/ports/sysdeps/aarch64/fpu/s_floor.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_floorf.c b/ports/sysdeps/aarch64/fpu/s_floorf.c index a0156818f0..b2dc9be4a2 100644 --- a/ports/sysdeps/aarch64/fpu/s_floorf.c +++ b/ports/sysdeps/aarch64/fpu/s_floorf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_fma.c b/ports/sysdeps/aarch64/fpu/s_fma.c index b12ade4e40..adbcfc1db1 100644 --- a/ports/sysdeps/aarch64/fpu/s_fma.c +++ b/ports/sysdeps/aarch64/fpu/s_fma.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_fmaf.c b/ports/sysdeps/aarch64/fpu/s_fmaf.c index 82b706daf1..38c5888738 100644 --- a/ports/sysdeps/aarch64/fpu/s_fmaf.c +++ b/ports/sysdeps/aarch64/fpu/s_fmaf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_fmax.c b/ports/sysdeps/aarch64/fpu/s_fmax.c index 705c39f7b5..37dc9703e7 100644 --- a/ports/sysdeps/aarch64/fpu/s_fmax.c +++ b/ports/sysdeps/aarch64/fpu/s_fmax.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_fmaxf.c b/ports/sysdeps/aarch64/fpu/s_fmaxf.c index 910c73f4db..748ac0f807 100644 --- a/ports/sysdeps/aarch64/fpu/s_fmaxf.c +++ b/ports/sysdeps/aarch64/fpu/s_fmaxf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_fmin.c b/ports/sysdeps/aarch64/fpu/s_fmin.c index b7a7a839a4..63875d5761 100644 --- a/ports/sysdeps/aarch64/fpu/s_fmin.c +++ b/ports/sysdeps/aarch64/fpu/s_fmin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_fminf.c b/ports/sysdeps/aarch64/fpu/s_fminf.c index 2bd52c6f57..86c6be2947 100644 --- a/ports/sysdeps/aarch64/fpu/s_fminf.c +++ b/ports/sysdeps/aarch64/fpu/s_fminf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_frint.c b/ports/sysdeps/aarch64/fpu/s_frint.c index 0fa527e37d..2e8195c67d 100644 --- a/ports/sysdeps/aarch64/fpu/s_frint.c +++ b/ports/sysdeps/aarch64/fpu/s_frint.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_frintf.c b/ports/sysdeps/aarch64/fpu/s_frintf.c index 2be76748ad..817d2d11a9 100644 --- a/ports/sysdeps/aarch64/fpu/s_frintf.c +++ b/ports/sysdeps/aarch64/fpu/s_frintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_llrint.c b/ports/sysdeps/aarch64/fpu/s_llrint.c index be74f23564..487452fb62 100644 --- a/ports/sysdeps/aarch64/fpu/s_llrint.c +++ b/ports/sysdeps/aarch64/fpu/s_llrint.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_llrintf.c b/ports/sysdeps/aarch64/fpu/s_llrintf.c index aae3ffb57b..1a0009d407 100644 --- a/ports/sysdeps/aarch64/fpu/s_llrintf.c +++ b/ports/sysdeps/aarch64/fpu/s_llrintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_llround.c b/ports/sysdeps/aarch64/fpu/s_llround.c index 39896fc286..90615358a1 100644 --- a/ports/sysdeps/aarch64/fpu/s_llround.c +++ b/ports/sysdeps/aarch64/fpu/s_llround.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_llroundf.c b/ports/sysdeps/aarch64/fpu/s_llroundf.c index 289d669a43..c4c7149396 100644 --- a/ports/sysdeps/aarch64/fpu/s_llroundf.c +++ b/ports/sysdeps/aarch64/fpu/s_llroundf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_lrint.c b/ports/sysdeps/aarch64/fpu/s_lrint.c index 17e492ec70..8ff9520b77 100644 --- a/ports/sysdeps/aarch64/fpu/s_lrint.c +++ b/ports/sysdeps/aarch64/fpu/s_lrint.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_lrintf.c b/ports/sysdeps/aarch64/fpu/s_lrintf.c index 97c45395a5..8ed38fe016 100644 --- a/ports/sysdeps/aarch64/fpu/s_lrintf.c +++ b/ports/sysdeps/aarch64/fpu/s_lrintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_lround.c b/ports/sysdeps/aarch64/fpu/s_lround.c index 59aa04f067..e1f4a2076d 100644 --- a/ports/sysdeps/aarch64/fpu/s_lround.c +++ b/ports/sysdeps/aarch64/fpu/s_lround.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_lroundf.c b/ports/sysdeps/aarch64/fpu/s_lroundf.c index 875f07540e..4970954d9f 100644 --- a/ports/sysdeps/aarch64/fpu/s_lroundf.c +++ b/ports/sysdeps/aarch64/fpu/s_lroundf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_nearbyint.c b/ports/sysdeps/aarch64/fpu/s_nearbyint.c index 1ee102622a..c130b83401 100644 --- a/ports/sysdeps/aarch64/fpu/s_nearbyint.c +++ b/ports/sysdeps/aarch64/fpu/s_nearbyint.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_nearbyintf.c b/ports/sysdeps/aarch64/fpu/s_nearbyintf.c index f073e25ff4..e09f162995 100644 --- a/ports/sysdeps/aarch64/fpu/s_nearbyintf.c +++ b/ports/sysdeps/aarch64/fpu/s_nearbyintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_rint.c b/ports/sysdeps/aarch64/fpu/s_rint.c index a04876bb91..f1ded8ec8b 100644 --- a/ports/sysdeps/aarch64/fpu/s_rint.c +++ b/ports/sysdeps/aarch64/fpu/s_rint.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_rintf.c b/ports/sysdeps/aarch64/fpu/s_rintf.c index d185e8835c..a950c765ec 100644 --- a/ports/sysdeps/aarch64/fpu/s_rintf.c +++ b/ports/sysdeps/aarch64/fpu/s_rintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_round.c b/ports/sysdeps/aarch64/fpu/s_round.c index 2c1da70b89..40411a5c44 100644 --- a/ports/sysdeps/aarch64/fpu/s_round.c +++ b/ports/sysdeps/aarch64/fpu/s_round.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_roundf.c b/ports/sysdeps/aarch64/fpu/s_roundf.c index 245dfa3983..05f0e9603d 100644 --- a/ports/sysdeps/aarch64/fpu/s_roundf.c +++ b/ports/sysdeps/aarch64/fpu/s_roundf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_trunc.c b/ports/sysdeps/aarch64/fpu/s_trunc.c index 99bcdb2775..2ffd899ab3 100644 --- a/ports/sysdeps/aarch64/fpu/s_trunc.c +++ b/ports/sysdeps/aarch64/fpu/s_trunc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/fpu/s_truncf.c b/ports/sysdeps/aarch64/fpu/s_truncf.c index d240ce20ac..10e69cae48 100644 --- a/ports/sysdeps/aarch64/fpu/s_truncf.c +++ b/ports/sysdeps/aarch64/fpu/s_truncf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/jmpbuf-offsets.h b/ports/sysdeps/aarch64/jmpbuf-offsets.h index ed5f42a7e9..84c2cccaf4 100644 --- a/ports/sysdeps/aarch64/jmpbuf-offsets.h +++ b/ports/sysdeps/aarch64/jmpbuf-offsets.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/jmpbuf-unwind.h b/ports/sysdeps/aarch64/jmpbuf-unwind.h index 087e1b6d96..22c6c2b758 100644 --- a/ports/sysdeps/aarch64/jmpbuf-unwind.h +++ b/ports/sysdeps/aarch64/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/ldsodefs.h b/ports/sysdeps/aarch64/ldsodefs.h index 5c21533cc7..f55608c271 100644 --- a/ports/sysdeps/aarch64/ldsodefs.h +++ b/ports/sysdeps/aarch64/ldsodefs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/libc-tls.c b/ports/sysdeps/aarch64/libc-tls.c index 0de92555d7..c67ef277a7 100644 --- a/ports/sysdeps/aarch64/libc-tls.c +++ b/ports/sysdeps/aarch64/libc-tls.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/machine-gmon.h b/ports/sysdeps/aarch64/machine-gmon.h index 5cc2941258..b9d8f0ecce 100644 --- a/ports/sysdeps/aarch64/machine-gmon.h +++ b/ports/sysdeps/aarch64/machine-gmon.h @@ -1,5 +1,5 @@ /* AArch64 definitions for profiling support. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/aarch64/mcount.c b/ports/sysdeps/aarch64/mcount.c index 10171b7c56..3201e41a1e 100644 --- a/ports/sysdeps/aarch64/mcount.c +++ b/ports/sysdeps/aarch64/mcount.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/memcmp.S b/ports/sysdeps/aarch64/memcmp.S index 6398ddd3e1..6a62a4bb32 100644 --- a/ports/sysdeps/aarch64/memcmp.S +++ b/ports/sysdeps/aarch64/memcmp.S @@ -1,6 +1,6 @@ /* memcmp - compare memory - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/memcpy.S b/ports/sysdeps/aarch64/memcpy.S index 4f4e36c066..caf2ab2e4f 100644 --- a/ports/sysdeps/aarch64/memcpy.S +++ b/ports/sysdeps/aarch64/memcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/memmove.S b/ports/sysdeps/aarch64/memmove.S index c42eb1c13a..4227b7f729 100644 --- a/ports/sysdeps/aarch64/memmove.S +++ b/ports/sysdeps/aarch64/memmove.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/memset.S b/ports/sysdeps/aarch64/memset.S index f96f6a6bab..06f04be044 100644 --- a/ports/sysdeps/aarch64/memset.S +++ b/ports/sysdeps/aarch64/memset.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/memusage.h b/ports/sysdeps/aarch64/memusage.h index bd714a316f..75532691e3 100644 --- a/ports/sysdeps/aarch64/memusage.h +++ b/ports/sysdeps/aarch64/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/nptl/Makefile b/ports/sysdeps/aarch64/nptl/Makefile index 3c0521a5a9..f550eb13fb 100644 --- a/ports/sysdeps/aarch64/nptl/Makefile +++ b/ports/sysdeps/aarch64/nptl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 Free Software Foundation, Inc. # # This file is part of the GNU C Library. # diff --git a/ports/sysdeps/aarch64/nptl/pthread_spin_lock.c b/ports/sysdeps/aarch64/nptl/pthread_spin_lock.c index 0d12517de3..490bd43438 100644 --- a/ports/sysdeps/aarch64/nptl/pthread_spin_lock.c +++ b/ports/sysdeps/aarch64/nptl/pthread_spin_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/nptl/pthreaddef.h b/ports/sysdeps/aarch64/nptl/pthreaddef.h index 4f8f68ba95..361a95c75d 100644 --- a/ports/sysdeps/aarch64/nptl/pthreaddef.h +++ b/ports/sysdeps/aarch64/nptl/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/nptl/tls.h b/ports/sysdeps/aarch64/nptl/tls.h index 2bdaac6dd9..f03c5195dd 100644 --- a/ports/sysdeps/aarch64/nptl/tls.h +++ b/ports/sysdeps/aarch64/nptl/tls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/setjmp.S b/ports/sysdeps/aarch64/setjmp.S index 10e070999c..cb94e01bbb 100644 --- a/ports/sysdeps/aarch64/setjmp.S +++ b/ports/sysdeps/aarch64/setjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/soft-fp/e_sqrtl.c b/ports/sysdeps/aarch64/soft-fp/e_sqrtl.c index d668326e2a..a13c542a05 100644 --- a/ports/sysdeps/aarch64/soft-fp/e_sqrtl.c +++ b/ports/sysdeps/aarch64/soft-fp/e_sqrtl.c @@ -1,5 +1,5 @@ /* long double square root in software floating-point emulation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/aarch64/sotruss-lib.c b/ports/sysdeps/aarch64/sotruss-lib.c index 920881fa94..735e9efef9 100644 --- a/ports/sysdeps/aarch64/sotruss-lib.c +++ b/ports/sysdeps/aarch64/sotruss-lib.c @@ -1,5 +1,5 @@ /* Override generic sotruss-lib.c to define actual functions for AArch64. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/stackinfo.h b/ports/sysdeps/aarch64/stackinfo.h index f64069badf..cf381f66ac 100644 --- a/ports/sysdeps/aarch64/stackinfo.h +++ b/ports/sysdeps/aarch64/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/start.S b/ports/sysdeps/aarch64/start.S index 10241143b8..35d603ae9e 100644 --- a/ports/sysdeps/aarch64/start.S +++ b/ports/sysdeps/aarch64/start.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/strcmp.S b/ports/sysdeps/aarch64/strcmp.S index fa4705c8b9..ec9d10a29b 100644 --- a/ports/sysdeps/aarch64/strcmp.S +++ b/ports/sysdeps/aarch64/strcmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/strlen.S b/ports/sysdeps/aarch64/strlen.S index ba05009c61..4d2a20a18e 100644 --- a/ports/sysdeps/aarch64/strlen.S +++ b/ports/sysdeps/aarch64/strlen.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/strncmp.S b/ports/sysdeps/aarch64/strncmp.S index 341d5ced5f..468bff4a3e 100644 --- a/ports/sysdeps/aarch64/strncmp.S +++ b/ports/sysdeps/aarch64/strncmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/strnlen.S b/ports/sysdeps/aarch64/strnlen.S index e582e8ad2d..928360f3a1 100644 --- a/ports/sysdeps/aarch64/strnlen.S +++ b/ports/sysdeps/aarch64/strnlen.S @@ -1,6 +1,6 @@ /* strnlen - calculate the length of a string with limit. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/sysdep.h b/ports/sysdeps/aarch64/sysdep.h index 9349471e36..0dd597acfc 100644 --- a/ports/sysdeps/aarch64/sysdep.h +++ b/ports/sysdeps/aarch64/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/tls-macros.h b/ports/sysdeps/aarch64/tls-macros.h index 7ad023bf07..ad39e243db 100644 --- a/ports/sysdeps/aarch64/tls-macros.h +++ b/ports/sysdeps/aarch64/tls-macros.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/tlsdesc.c b/ports/sysdeps/aarch64/tlsdesc.c index 326792d623..0921230676 100644 --- a/ports/sysdeps/aarch64/tlsdesc.c +++ b/ports/sysdeps/aarch64/tlsdesc.c @@ -1,6 +1,6 @@ /* Manage TLS descriptors. AArch64 version. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/aarch64/tst-audit.h b/ports/sysdeps/aarch64/tst-audit.h index 9991a039d1..ee0787611c 100644 --- a/ports/sysdeps/aarch64/tst-audit.h +++ b/ports/sysdeps/aarch64/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. AArch64 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/Makefile b/ports/sysdeps/alpha/Makefile index 30e8fd840e..1cf77fb239 100644 --- a/ports/sysdeps/alpha/Makefile +++ b/ports/sysdeps/alpha/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1993-2013 Free Software Foundation, Inc. +# Copyright (C) 1993-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Brendan Kehoe (brendan@zen.org). diff --git a/ports/sysdeps/alpha/__longjmp.S b/ports/sysdeps/alpha/__longjmp.S index 13fbb5e068..de35479770 100644 --- a/ports/sysdeps/alpha/__longjmp.S +++ b/ports/sysdeps/alpha/__longjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/_mcount.S b/ports/sysdeps/alpha/_mcount.S index d3c7160f39..f61287557b 100644 --- a/ports/sysdeps/alpha/_mcount.S +++ b/ports/sysdeps/alpha/_mcount.S @@ -1,5 +1,5 @@ /* Machine-specific calling sequence for `mcount' profiling function. alpha - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. Contributed by David Mosberger (davidm@cs.arizona.edu). This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/add_n.S b/ports/sysdeps/alpha/add_n.S index 0b70fd882b..038a371273 100644 --- a/ports/sysdeps/alpha/add_n.S +++ b/ports/sysdeps/alpha/add_n.S @@ -1,7 +1,7 @@ # Alpha __mpn_add_n -- Add two limb vectors of the same length > 0 and # store sum in a third limb vector. - # Copyright (C) 1995-2013 Free Software Foundation, Inc. + # Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/alpha/addmul_1.S b/ports/sysdeps/alpha/addmul_1.S index 7ed4b5b726..fcbc401c2c 100644 --- a/ports/sysdeps/alpha/addmul_1.S +++ b/ports/sysdeps/alpha/addmul_1.S @@ -1,7 +1,7 @@ # Alpha 21064 __mpn_addmul_1 -- Multiply a limb vector with a limb and add # the result to a second limb vector. - # Copyright (C) 1992-2013 Free Software Foundation, Inc. + # Copyright (C) 1992-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/alpha/alphaev5/add_n.S b/ports/sysdeps/alpha/alphaev5/add_n.S index fac83117dc..09494c217f 100644 --- a/ports/sysdeps/alpha/alphaev5/add_n.S +++ b/ports/sysdeps/alpha/alphaev5/add_n.S @@ -1,7 +1,7 @@ # Alpha __mpn_add_n -- Add two limb vectors of the same length > 0 and # store sum in a third limb vector. - # Copyright (C) 1995-2013 Free Software Foundation, Inc. + # Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/alpha/alphaev5/lshift.S b/ports/sysdeps/alpha/alphaev5/lshift.S index a1091eaec7..459221f256 100644 --- a/ports/sysdeps/alpha/alphaev5/lshift.S +++ b/ports/sysdeps/alpha/alphaev5/lshift.S @@ -1,6 +1,6 @@ # Alpha EV5 __mpn_lshift -- - # Copyright (C) 1994-2013 Free Software Foundation, Inc. + # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/alpha/alphaev5/rshift.S b/ports/sysdeps/alpha/alphaev5/rshift.S index 24d9abbf5b..0c53022c9d 100644 --- a/ports/sysdeps/alpha/alphaev5/rshift.S +++ b/ports/sysdeps/alpha/alphaev5/rshift.S @@ -1,6 +1,6 @@ # Alpha EV5 __mpn_rshift -- - # Copyright (C) 1994-2013 Free Software Foundation, Inc. + # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/alpha/alphaev5/sub_n.S b/ports/sysdeps/alpha/alphaev5/sub_n.S index 7b12592de6..4a53e92c88 100644 --- a/ports/sysdeps/alpha/alphaev5/sub_n.S +++ b/ports/sysdeps/alpha/alphaev5/sub_n.S @@ -1,7 +1,7 @@ # Alpha __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and # store difference in a third limb vector. - # Copyright (C) 1995-2013 Free Software Foundation, Inc. + # Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/alpha/alphaev6/addmul_1.S b/ports/sysdeps/alpha/alphaev6/addmul_1.S index f6a7f59c87..9e56fc87da 100644 --- a/ports/sysdeps/alpha/alphaev6/addmul_1.S +++ b/ports/sysdeps/alpha/alphaev6/addmul_1.S @@ -1,7 +1,7 @@ # Alpha ev6 mpn_addmul_1 -- Multiply a limb vector with a limb and add # the result to a second limb vector. # - # Copyright (C) 2000-2013 Free Software Foundation, Inc. + # Copyright (C) 2000-2014 Free Software Foundation, Inc. # # This file is part of the GNU MP Library. # diff --git a/ports/sysdeps/alpha/alphaev6/fpu/e_sqrt.S b/ports/sysdeps/alpha/alphaev6/fpu/e_sqrt.S index 2aac3d3280..3a3526dd26 100644 --- a/ports/sysdeps/alpha/alphaev6/fpu/e_sqrt.S +++ b/ports/sysdeps/alpha/alphaev6/fpu/e_sqrt.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/alphaev6/fpu/e_sqrtf.S b/ports/sysdeps/alpha/alphaev6/fpu/e_sqrtf.S index 5aeafca9ad..f5cbc26d36 100644 --- a/ports/sysdeps/alpha/alphaev6/fpu/e_sqrtf.S +++ b/ports/sysdeps/alpha/alphaev6/fpu/e_sqrtf.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/alphaev6/memcpy.S b/ports/sysdeps/alpha/alphaev6/memcpy.S index c6ce937896..0208501f1f 100644 --- a/ports/sysdeps/alpha/alphaev6/memcpy.S +++ b/ports/sysdeps/alpha/alphaev6/memcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. EV6 optimized by Rick Gorton . diff --git a/ports/sysdeps/alpha/alphaev6/memset.S b/ports/sysdeps/alpha/alphaev6/memset.S index a4d2abaeaf..f871561fda 100644 --- a/ports/sysdeps/alpha/alphaev6/memset.S +++ b/ports/sysdeps/alpha/alphaev6/memset.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Richard Henderson (rth@tamu.edu) EV6 optimized by Rick Gorton . This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/alphaev6/stxcpy.S b/ports/sysdeps/alpha/alphaev6/stxcpy.S index bf24703714..6a8b92c70f 100644 --- a/ports/sysdeps/alpha/alphaev6/stxcpy.S +++ b/ports/sysdeps/alpha/alphaev6/stxcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Richard Henderson (rth@tamu.edu) EV6 optimized by Rick Gorton . This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/alphaev6/stxncpy.S b/ports/sysdeps/alpha/alphaev6/stxncpy.S index a43ee8b0e9..81522d5d15 100644 --- a/ports/sysdeps/alpha/alphaev6/stxncpy.S +++ b/ports/sysdeps/alpha/alphaev6/stxncpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Richard Henderson (rth@tamu.edu) EV6 optimized by Rick Gorton . This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/alphaev67/ffs.S b/ports/sysdeps/alpha/alphaev67/ffs.S index 9b3463cbc6..7033b2af1c 100644 --- a/ports/sysdeps/alpha/alphaev67/ffs.S +++ b/ports/sysdeps/alpha/alphaev67/ffs.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/alphaev67/ffsll.S b/ports/sysdeps/alpha/alphaev67/ffsll.S index 9ed280cb44..d599f7a055 100644 --- a/ports/sysdeps/alpha/alphaev67/ffsll.S +++ b/ports/sysdeps/alpha/alphaev67/ffsll.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/alphaev67/rawmemchr.S b/ports/sysdeps/alpha/alphaev67/rawmemchr.S index 26d5d7f0bd..7e3c02c662 100644 --- a/ports/sysdeps/alpha/alphaev67/rawmemchr.S +++ b/ports/sysdeps/alpha/alphaev67/rawmemchr.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/alphaev67/stpcpy.S b/ports/sysdeps/alpha/alphaev67/stpcpy.S index eb281294b6..a11bbec7a6 100644 --- a/ports/sysdeps/alpha/alphaev67/stpcpy.S +++ b/ports/sysdeps/alpha/alphaev67/stpcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson . diff --git a/ports/sysdeps/alpha/alphaev67/stpncpy.S b/ports/sysdeps/alpha/alphaev67/stpncpy.S index 336db7dd00..451b2e03c4 100644 --- a/ports/sysdeps/alpha/alphaev67/stpncpy.S +++ b/ports/sysdeps/alpha/alphaev67/stpncpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Richard Henderson (rth@redhat.com) This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/alphaev67/strcat.S b/ports/sysdeps/alpha/alphaev67/strcat.S index bc01c1b297..914720c6cf 100644 --- a/ports/sysdeps/alpha/alphaev67/strcat.S +++ b/ports/sysdeps/alpha/alphaev67/strcat.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Richard Henderson , 1996. EV67 optimized by Rick Gorton . This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/alphaev67/strchr.S b/ports/sysdeps/alpha/alphaev67/strchr.S index 7b17af3a7b..328f8ec33a 100644 --- a/ports/sysdeps/alpha/alphaev67/strchr.S +++ b/ports/sysdeps/alpha/alphaev67/strchr.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Richard Henderson , 1996. EV67 optimized by Rick Gorton . This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/alphaev67/strlen.S b/ports/sysdeps/alpha/alphaev67/strlen.S index 987f728d0d..22ab1bffd5 100644 --- a/ports/sysdeps/alpha/alphaev67/strlen.S +++ b/ports/sysdeps/alpha/alphaev67/strlen.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by David Mosberger (davidm@cs.arizona.edu). EV67 optimized by Rick Gorton . This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/alphaev67/strncat.S b/ports/sysdeps/alpha/alphaev67/strncat.S index ce957056e6..36b872103a 100644 --- a/ports/sysdeps/alpha/alphaev67/strncat.S +++ b/ports/sysdeps/alpha/alphaev67/strncat.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Richard Henderson , 1996. EV67 optimized by Rick Gorton . This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/alphaev67/strrchr.S b/ports/sysdeps/alpha/alphaev67/strrchr.S index 094f42c855..0c0c90d524 100644 --- a/ports/sysdeps/alpha/alphaev67/strrchr.S +++ b/ports/sysdeps/alpha/alphaev67/strrchr.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. EV67 optimized by Rick Gorton . This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/bb_init_func.S b/ports/sysdeps/alpha/bb_init_func.S index a0b7ec2d7d..77a05b021c 100644 --- a/ports/sysdeps/alpha/bb_init_func.S +++ b/ports/sysdeps/alpha/bb_init_func.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. Contributed by David Mosberger (davidm@cs.arizona.edu). This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/bits/atomic.h b/ports/sysdeps/alpha/bits/atomic.h index c4653de770..abbbc7c92d 100644 --- a/ports/sysdeps/alpha/bits/atomic.h +++ b/ports/sysdeps/alpha/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/bits/link.h b/ports/sysdeps/alpha/bits/link.h index 12bd9dc03f..69b4d950fd 100644 --- a/ports/sysdeps/alpha/bits/link.h +++ b/ports/sysdeps/alpha/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/bits/mathdef.h b/ports/sysdeps/alpha/bits/mathdef.h index a75e510398..064a69e68c 100644 --- a/ports/sysdeps/alpha/bits/mathdef.h +++ b/ports/sysdeps/alpha/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/bits/setjmp.h b/ports/sysdeps/alpha/bits/setjmp.h index 673da0e7d1..d92e6f866d 100644 --- a/ports/sysdeps/alpha/bits/setjmp.h +++ b/ports/sysdeps/alpha/bits/setjmp.h @@ -1,5 +1,5 @@ /* Define the machine-dependent type `jmp_buf'. Alpha version. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/bzero.S b/ports/sysdeps/alpha/bzero.S index 468d7d7d60..36e891ca85 100644 --- a/ports/sysdeps/alpha/bzero.S +++ b/ports/sysdeps/alpha/bzero.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. Contributed by Richard Henderson (rth@tamu.edu) This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/crti.S b/ports/sysdeps/alpha/crti.S index 34774d0f35..f49d13648f 100644 --- a/ports/sysdeps/alpha/crti.S +++ b/ports/sysdeps/alpha/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for Alpha. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/crtn.S b/ports/sysdeps/alpha/crtn.S index 05939ebfd5..3b95bfafd6 100644 --- a/ports/sysdeps/alpha/crtn.S +++ b/ports/sysdeps/alpha/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for Alpha. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/div.S b/ports/sysdeps/alpha/div.S index 0027967208..65573e6676 100644 --- a/ports/sysdeps/alpha/div.S +++ b/ports/sysdeps/alpha/div.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson . diff --git a/ports/sysdeps/alpha/div_libc.h b/ports/sysdeps/alpha/div_libc.h index d3a3d34585..088001ac86 100644 --- a/ports/sysdeps/alpha/div_libc.h +++ b/ports/sysdeps/alpha/div_libc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/divl.S b/ports/sysdeps/alpha/divl.S index 071e4e55e9..94a7fd0920 100644 --- a/ports/sysdeps/alpha/divl.S +++ b/ports/sysdeps/alpha/divl.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/divq.S b/ports/sysdeps/alpha/divq.S index 08bfdd9ead..c552bd2477 100644 --- a/ports/sysdeps/alpha/divq.S +++ b/ports/sysdeps/alpha/divq.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/divqu.S b/ports/sysdeps/alpha/divqu.S index 444cddf3a0..f66dfad233 100644 --- a/ports/sysdeps/alpha/divqu.S +++ b/ports/sysdeps/alpha/divqu.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/dl-machine.h b/ports/sysdeps/alpha/dl-machine.h index 1268bb1e62..63db19c6cf 100644 --- a/ports/sysdeps/alpha/dl-machine.h +++ b/ports/sysdeps/alpha/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. Alpha version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson . diff --git a/ports/sysdeps/alpha/dl-procinfo.c b/ports/sysdeps/alpha/dl-procinfo.c index f230508a2c..ee707e6a8a 100644 --- a/ports/sysdeps/alpha/dl-procinfo.c +++ b/ports/sysdeps/alpha/dl-procinfo.c @@ -1,5 +1,5 @@ /* Data for Alpha version of processor capability information. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Aurelien Jarno , 2008. diff --git a/ports/sysdeps/alpha/dl-procinfo.h b/ports/sysdeps/alpha/dl-procinfo.h index 0344dbc968..02a8c173c9 100644 --- a/ports/sysdeps/alpha/dl-procinfo.h +++ b/ports/sysdeps/alpha/dl-procinfo.h @@ -1,5 +1,5 @@ /* Alpha version of processor capability information handling macros. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Aurelien Jarno , 2008. diff --git a/ports/sysdeps/alpha/dl-sysdep.h b/ports/sysdeps/alpha/dl-sysdep.h index 85f97e50ff..e9c86dfc12 100644 --- a/ports/sysdeps/alpha/dl-sysdep.h +++ b/ports/sysdeps/alpha/dl-sysdep.h @@ -1,5 +1,5 @@ /* System-specific settings for dynamic linker code. Alpha version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/dl-tls.h b/ports/sysdeps/alpha/dl-tls.h index 939cdd1e23..65bab9f856 100644 --- a/ports/sysdeps/alpha/dl-tls.h +++ b/ports/sysdeps/alpha/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. Alpha version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/dl-trampoline.S b/ports/sysdeps/alpha/dl-trampoline.S index 6e567247a6..2f3b66b67e 100644 --- a/ports/sysdeps/alpha/dl-trampoline.S +++ b/ports/sysdeps/alpha/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. Alpha version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/ffs.S b/ports/sysdeps/alpha/ffs.S index d1f0c83719..8d762efb36 100644 --- a/ports/sysdeps/alpha/ffs.S +++ b/ports/sysdeps/alpha/ffs.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. Contributed by David Mosberger (davidm@cs.arizona.edu). This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/fpu/bits/fenv.h b/ports/sysdeps/alpha/fpu/bits/fenv.h index 7c74f5315f..4dba9b59a0 100644 --- a/ports/sysdeps/alpha/fpu/bits/fenv.h +++ b/ports/sysdeps/alpha/fpu/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/bits/mathinline.h b/ports/sysdeps/alpha/fpu/bits/mathinline.h index 5313f67df9..3d64b56107 100644 --- a/ports/sysdeps/alpha/fpu/bits/mathinline.h +++ b/ports/sysdeps/alpha/fpu/bits/mathinline.h @@ -1,5 +1,5 @@ /* Inline math functions for Alpha. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang. diff --git a/ports/sysdeps/alpha/fpu/cabsf.c b/ports/sysdeps/alpha/fpu/cabsf.c index 6251b37133..6526526513 100644 --- a/ports/sysdeps/alpha/fpu/cabsf.c +++ b/ports/sysdeps/alpha/fpu/cabsf.c @@ -1,5 +1,5 @@ /* Return the complex absolute value of float complex value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/cargf.c b/ports/sysdeps/alpha/fpu/cargf.c index 7e25278dd1..46a67ce228 100644 --- a/ports/sysdeps/alpha/fpu/cargf.c +++ b/ports/sysdeps/alpha/fpu/cargf.c @@ -1,5 +1,5 @@ /* Compute argument of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/cfloat-compat.h b/ports/sysdeps/alpha/fpu/cfloat-compat.h index fd0dacfb36..b94dec0b28 100644 --- a/ports/sysdeps/alpha/fpu/cfloat-compat.h +++ b/ports/sysdeps/alpha/fpu/cfloat-compat.h @@ -1,5 +1,5 @@ /* Compatibility macros for old and new Alpha complex float ABI. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/cimagf.c b/ports/sysdeps/alpha/fpu/cimagf.c index 7d0daa8b9b..576a105927 100644 --- a/ports/sysdeps/alpha/fpu/cimagf.c +++ b/ports/sysdeps/alpha/fpu/cimagf.c @@ -1,5 +1,5 @@ /* Return imaginary part of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/conjf.c b/ports/sysdeps/alpha/fpu/conjf.c index e74e41e50f..64b3adf041 100644 --- a/ports/sysdeps/alpha/fpu/conjf.c +++ b/ports/sysdeps/alpha/fpu/conjf.c @@ -1,5 +1,5 @@ /* Return complex conjugate of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/crealf.c b/ports/sysdeps/alpha/fpu/crealf.c index 892d588555..bd56cae39f 100644 --- a/ports/sysdeps/alpha/fpu/crealf.c +++ b/ports/sysdeps/alpha/fpu/crealf.c @@ -1,5 +1,5 @@ /* Return real part of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/e_sqrt.c b/ports/sysdeps/alpha/fpu/e_sqrt.c index 6abca0896e..086215977f 100644 --- a/ports/sysdeps/alpha/fpu/e_sqrt.c +++ b/ports/sysdeps/alpha/fpu/e_sqrt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. Contributed by David Mosberger (davidm@cs.arizona.edu). This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/fpu/fclrexcpt.c b/ports/sysdeps/alpha/fpu/fclrexcpt.c index e5687b8af1..99bdbdf793 100644 --- a/ports/sysdeps/alpha/fpu/fclrexcpt.c +++ b/ports/sysdeps/alpha/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997. diff --git a/ports/sysdeps/alpha/fpu/fedisblxcpt.c b/ports/sysdeps/alpha/fpu/fedisblxcpt.c index 9707db0b5b..e7612a4755 100644 --- a/ports/sysdeps/alpha/fpu/fedisblxcpt.c +++ b/ports/sysdeps/alpha/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2000. diff --git a/ports/sysdeps/alpha/fpu/feenablxcpt.c b/ports/sysdeps/alpha/fpu/feenablxcpt.c index beb30420b9..f9eb203c1e 100644 --- a/ports/sysdeps/alpha/fpu/feenablxcpt.c +++ b/ports/sysdeps/alpha/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2000. diff --git a/ports/sysdeps/alpha/fpu/fegetenv.c b/ports/sysdeps/alpha/fpu/fegetenv.c index 0f4705aa82..ef688f20a3 100644 --- a/ports/sysdeps/alpha/fpu/fegetenv.c +++ b/ports/sysdeps/alpha/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997 diff --git a/ports/sysdeps/alpha/fpu/fegetexcept.c b/ports/sysdeps/alpha/fpu/fegetexcept.c index b23afcc633..e4d4f83c49 100644 --- a/ports/sysdeps/alpha/fpu/fegetexcept.c +++ b/ports/sysdeps/alpha/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get enabled floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2000. diff --git a/ports/sysdeps/alpha/fpu/fegetround.c b/ports/sysdeps/alpha/fpu/fegetround.c index 03a55ee7a7..e2d1911301 100644 --- a/ports/sysdeps/alpha/fpu/fegetround.c +++ b/ports/sysdeps/alpha/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997 diff --git a/ports/sysdeps/alpha/fpu/feholdexcpt.c b/ports/sysdeps/alpha/fpu/feholdexcpt.c index 344e3df3f0..30758b7c3a 100644 --- a/ports/sysdeps/alpha/fpu/feholdexcpt.c +++ b/ports/sysdeps/alpha/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997 diff --git a/ports/sysdeps/alpha/fpu/fenv_libc.h b/ports/sysdeps/alpha/fpu/fenv_libc.h index 91ebe504e0..9c3678578b 100644 --- a/ports/sysdeps/alpha/fpu/fenv_libc.h +++ b/ports/sysdeps/alpha/fpu/fenv_libc.h @@ -1,5 +1,5 @@ /* Internal libc stuff for floating point environment routines. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/fesetenv.c b/ports/sysdeps/alpha/fpu/fesetenv.c index 08e49f25c1..e903de9e29 100644 --- a/ports/sysdeps/alpha/fpu/fesetenv.c +++ b/ports/sysdeps/alpha/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997 diff --git a/ports/sysdeps/alpha/fpu/fesetround.c b/ports/sysdeps/alpha/fpu/fesetround.c index fca18eae4b..b5b41cebe0 100644 --- a/ports/sysdeps/alpha/fpu/fesetround.c +++ b/ports/sysdeps/alpha/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997 diff --git a/ports/sysdeps/alpha/fpu/feupdateenv.c b/ports/sysdeps/alpha/fpu/feupdateenv.c index ffebe4f043..af1f6309e3 100644 --- a/ports/sysdeps/alpha/fpu/feupdateenv.c +++ b/ports/sysdeps/alpha/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997. diff --git a/ports/sysdeps/alpha/fpu/fgetexcptflg.c b/ports/sysdeps/alpha/fpu/fgetexcptflg.c index 31f013a4fd..8cad9b29ba 100644 --- a/ports/sysdeps/alpha/fpu/fgetexcptflg.c +++ b/ports/sysdeps/alpha/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997. diff --git a/ports/sysdeps/alpha/fpu/fpu_control.h b/ports/sysdeps/alpha/fpu/fpu_control.h index 4a6b544cd2..b271c93951 100644 --- a/ports/sysdeps/alpha/fpu/fpu_control.h +++ b/ports/sysdeps/alpha/fpu/fpu_control.h @@ -1,5 +1,5 @@ /* FPU control word bits. Alpha-mapped-to-Intel version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Olaf Flebbe. diff --git a/ports/sysdeps/alpha/fpu/fsetexcptflg.c b/ports/sysdeps/alpha/fpu/fsetexcptflg.c index ffb734b092..36820083d0 100644 --- a/ports/sysdeps/alpha/fpu/fsetexcptflg.c +++ b/ports/sysdeps/alpha/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997. diff --git a/ports/sysdeps/alpha/fpu/ftestexcept.c b/ports/sysdeps/alpha/fpu/ftestexcept.c index e2f1828d47..521ec1f6c3 100644 --- a/ports/sysdeps/alpha/fpu/ftestexcept.c +++ b/ports/sysdeps/alpha/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997. diff --git a/ports/sysdeps/alpha/fpu/get-rounding-mode.h b/ports/sysdeps/alpha/fpu/get-rounding-mode.h index ca5b0d4ce1..f0c5549584 100644 --- a/ports/sysdeps/alpha/fpu/get-rounding-mode.h +++ b/ports/sysdeps/alpha/fpu/get-rounding-mode.h @@ -1,5 +1,5 @@ /* Determine floating-point rounding mode within libc. Alpha version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_cacosf.c b/ports/sysdeps/alpha/fpu/s_cacosf.c index 9a55264d25..fa1fe75400 100644 --- a/ports/sysdeps/alpha/fpu/s_cacosf.c +++ b/ports/sysdeps/alpha/fpu/s_cacosf.c @@ -1,5 +1,5 @@ /* Return arc cosine of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_cacoshf.c b/ports/sysdeps/alpha/fpu/s_cacoshf.c index a0f8621409..81eec289f1 100644 --- a/ports/sysdeps/alpha/fpu/s_cacoshf.c +++ b/ports/sysdeps/alpha/fpu/s_cacoshf.c @@ -1,5 +1,5 @@ /* Return arc hyperbole cosine of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_casinf.c b/ports/sysdeps/alpha/fpu/s_casinf.c index 647a759064..bae136742d 100644 --- a/ports/sysdeps/alpha/fpu/s_casinf.c +++ b/ports/sysdeps/alpha/fpu/s_casinf.c @@ -1,5 +1,5 @@ /* Return arc sine of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_casinhf.c b/ports/sysdeps/alpha/fpu/s_casinhf.c index 373adc722f..717c15c8d0 100644 --- a/ports/sysdeps/alpha/fpu/s_casinhf.c +++ b/ports/sysdeps/alpha/fpu/s_casinhf.c @@ -1,5 +1,5 @@ /* Return arc hyperbole sine of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_catanf.c b/ports/sysdeps/alpha/fpu/s_catanf.c index 925c7b3c04..dc2060e23b 100644 --- a/ports/sysdeps/alpha/fpu/s_catanf.c +++ b/ports/sysdeps/alpha/fpu/s_catanf.c @@ -1,5 +1,5 @@ /* Return arc tangent of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_catanhf.c b/ports/sysdeps/alpha/fpu/s_catanhf.c index 3f32e6ebb7..1e46a52a52 100644 --- a/ports/sysdeps/alpha/fpu/s_catanhf.c +++ b/ports/sysdeps/alpha/fpu/s_catanhf.c @@ -1,5 +1,5 @@ /* Return arc hyperbole tangent of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_ccosf.c b/ports/sysdeps/alpha/fpu/s_ccosf.c index 48a7610996..1ac5da3bdd 100644 --- a/ports/sysdeps/alpha/fpu/s_ccosf.c +++ b/ports/sysdeps/alpha/fpu/s_ccosf.c @@ -1,5 +1,5 @@ /* Return cosine of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_ccoshf.c b/ports/sysdeps/alpha/fpu/s_ccoshf.c index 4d0562ea19..1d6815813e 100644 --- a/ports/sysdeps/alpha/fpu/s_ccoshf.c +++ b/ports/sysdeps/alpha/fpu/s_ccoshf.c @@ -1,5 +1,5 @@ /* Return hyperbole cosine of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_ceil.c b/ports/sysdeps/alpha/fpu/s_ceil.c index b8801471cc..87ce984ea3 100644 --- a/ports/sysdeps/alpha/fpu/s_ceil.c +++ b/ports/sysdeps/alpha/fpu/s_ceil.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_ceilf.c b/ports/sysdeps/alpha/fpu/s_ceilf.c index a7bdbfb129..6d88fbe56a 100644 --- a/ports/sysdeps/alpha/fpu/s_ceilf.c +++ b/ports/sysdeps/alpha/fpu/s_ceilf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_cexpf.c b/ports/sysdeps/alpha/fpu/s_cexpf.c index 6a7142fb76..d925a81c76 100644 --- a/ports/sysdeps/alpha/fpu/s_cexpf.c +++ b/ports/sysdeps/alpha/fpu/s_cexpf.c @@ -1,5 +1,5 @@ /* Return exponent of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_clog10f.c b/ports/sysdeps/alpha/fpu/s_clog10f.c index a11169255e..ba6515fc67 100644 --- a/ports/sysdeps/alpha/fpu/s_clog10f.c +++ b/ports/sysdeps/alpha/fpu/s_clog10f.c @@ -1,5 +1,5 @@ /* Return base 10 logarithm of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_clogf.c b/ports/sysdeps/alpha/fpu/s_clogf.c index ba4ff0a45b..2e51820f7b 100644 --- a/ports/sysdeps/alpha/fpu/s_clogf.c +++ b/ports/sysdeps/alpha/fpu/s_clogf.c @@ -1,5 +1,5 @@ /* Return natural logarithm of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_copysign.c b/ports/sysdeps/alpha/fpu/s_copysign.c index 21e7621502..13f5f1bf4b 100644 --- a/ports/sysdeps/alpha/fpu/s_copysign.c +++ b/ports/sysdeps/alpha/fpu/s_copysign.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_copysignf.c b/ports/sysdeps/alpha/fpu/s_copysignf.c index 838e0690c2..2e68f4fcbe 100644 --- a/ports/sysdeps/alpha/fpu/s_copysignf.c +++ b/ports/sysdeps/alpha/fpu/s_copysignf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_cpowf.c b/ports/sysdeps/alpha/fpu/s_cpowf.c index bc5fb5f9f3..8e1903a64d 100644 --- a/ports/sysdeps/alpha/fpu/s_cpowf.c +++ b/ports/sysdeps/alpha/fpu/s_cpowf.c @@ -1,5 +1,5 @@ /* Return power of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_cprojf.c b/ports/sysdeps/alpha/fpu/s_cprojf.c index 3e6065e16c..72ff7350c7 100644 --- a/ports/sysdeps/alpha/fpu/s_cprojf.c +++ b/ports/sysdeps/alpha/fpu/s_cprojf.c @@ -1,5 +1,5 @@ /* Return projection of complex float value to Riemann sphere. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_csinf.c b/ports/sysdeps/alpha/fpu/s_csinf.c index 12c23bfe45..6a53ec8e4d 100644 --- a/ports/sysdeps/alpha/fpu/s_csinf.c +++ b/ports/sysdeps/alpha/fpu/s_csinf.c @@ -1,5 +1,5 @@ /* Return sine of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_csinhf.c b/ports/sysdeps/alpha/fpu/s_csinhf.c index fc594b7fa3..ffc8fc1922 100644 --- a/ports/sysdeps/alpha/fpu/s_csinhf.c +++ b/ports/sysdeps/alpha/fpu/s_csinhf.c @@ -1,5 +1,5 @@ /* Return hyperbole sine of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_csqrtf.c b/ports/sysdeps/alpha/fpu/s_csqrtf.c index 535b0a5f69..3fc3c17ea5 100644 --- a/ports/sysdeps/alpha/fpu/s_csqrtf.c +++ b/ports/sysdeps/alpha/fpu/s_csqrtf.c @@ -1,5 +1,5 @@ /* Return square root of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_ctanf.c b/ports/sysdeps/alpha/fpu/s_ctanf.c index e3d7815e20..75028e36e2 100644 --- a/ports/sysdeps/alpha/fpu/s_ctanf.c +++ b/ports/sysdeps/alpha/fpu/s_ctanf.c @@ -1,5 +1,5 @@ /* Return tangent of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_ctanhf.c b/ports/sysdeps/alpha/fpu/s_ctanhf.c index a827799046..6c639e0007 100644 --- a/ports/sysdeps/alpha/fpu/s_ctanhf.c +++ b/ports/sysdeps/alpha/fpu/s_ctanhf.c @@ -1,5 +1,5 @@ /* Return hyperbole tangent of complex float value. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_fabs.c b/ports/sysdeps/alpha/fpu/s_fabs.c index d31cf9a8d6..b6f866978e 100644 --- a/ports/sysdeps/alpha/fpu/s_fabs.c +++ b/ports/sysdeps/alpha/fpu/s_fabs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_fabsf.c b/ports/sysdeps/alpha/fpu/s_fabsf.c index 98f36e9bdf..59b7f0e302 100644 --- a/ports/sysdeps/alpha/fpu/s_fabsf.c +++ b/ports/sysdeps/alpha/fpu/s_fabsf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_floor.c b/ports/sysdeps/alpha/fpu/s_floor.c index f3a33ddf99..82d9e2e3dd 100644 --- a/ports/sysdeps/alpha/fpu/s_floor.c +++ b/ports/sysdeps/alpha/fpu/s_floor.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_floorf.c b/ports/sysdeps/alpha/fpu/s_floorf.c index 46a130022c..fe4c40b929 100644 --- a/ports/sysdeps/alpha/fpu/s_floorf.c +++ b/ports/sysdeps/alpha/fpu/s_floorf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_fmax.S b/ports/sysdeps/alpha/fpu/s_fmax.S index 62c90a4bd2..775de9f323 100644 --- a/ports/sysdeps/alpha/fpu/s_fmax.S +++ b/ports/sysdeps/alpha/fpu/s_fmax.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_fmin.S b/ports/sysdeps/alpha/fpu/s_fmin.S index c5a9ce8452..f061f84140 100644 --- a/ports/sysdeps/alpha/fpu/s_fmin.S +++ b/ports/sysdeps/alpha/fpu/s_fmin.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_isnan.c b/ports/sysdeps/alpha/fpu/s_isnan.c index 8707d6f103..adfb4ccf36 100644 --- a/ports/sysdeps/alpha/fpu/s_isnan.c +++ b/ports/sysdeps/alpha/fpu/s_isnan.c @@ -1,5 +1,5 @@ /* Return 1 if argument is a NaN, else 0. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_lrint.c b/ports/sysdeps/alpha/fpu/s_lrint.c index 31897aaeed..80949bc464 100644 --- a/ports/sysdeps/alpha/fpu/s_lrint.c +++ b/ports/sysdeps/alpha/fpu/s_lrint.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_lrintf.c b/ports/sysdeps/alpha/fpu/s_lrintf.c index 295882ec6b..814e25b3bc 100644 --- a/ports/sysdeps/alpha/fpu/s_lrintf.c +++ b/ports/sysdeps/alpha/fpu/s_lrintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_lround.c b/ports/sysdeps/alpha/fpu/s_lround.c index a01616a46b..dedb98e31a 100644 --- a/ports/sysdeps/alpha/fpu/s_lround.c +++ b/ports/sysdeps/alpha/fpu/s_lround.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_lroundf.c b/ports/sysdeps/alpha/fpu/s_lroundf.c index 8da8878d29..650004dbc1 100644 --- a/ports/sysdeps/alpha/fpu/s_lroundf.c +++ b/ports/sysdeps/alpha/fpu/s_lroundf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_nearbyint.c b/ports/sysdeps/alpha/fpu/s_nearbyint.c index eaa37a8283..ed6c997c85 100644 --- a/ports/sysdeps/alpha/fpu/s_nearbyint.c +++ b/ports/sysdeps/alpha/fpu/s_nearbyint.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_nearbyintf.c b/ports/sysdeps/alpha/fpu/s_nearbyintf.c index cc786302c8..e7693303f4 100644 --- a/ports/sysdeps/alpha/fpu/s_nearbyintf.c +++ b/ports/sysdeps/alpha/fpu/s_nearbyintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_rint.c b/ports/sysdeps/alpha/fpu/s_rint.c index 50c8e5256a..d5e3edc653 100644 --- a/ports/sysdeps/alpha/fpu/s_rint.c +++ b/ports/sysdeps/alpha/fpu/s_rint.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_rintf.c b/ports/sysdeps/alpha/fpu/s_rintf.c index b862cd7ca3..1a2a3aca68 100644 --- a/ports/sysdeps/alpha/fpu/s_rintf.c +++ b/ports/sysdeps/alpha/fpu/s_rintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_round.c b/ports/sysdeps/alpha/fpu/s_round.c index e366c94d8f..62a8e72b5f 100644 --- a/ports/sysdeps/alpha/fpu/s_round.c +++ b/ports/sysdeps/alpha/fpu/s_round.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/fpu/s_roundf.c b/ports/sysdeps/alpha/fpu/s_roundf.c index 1d22f97833..a07ffa3c8d 100644 --- a/ports/sysdeps/alpha/fpu/s_roundf.c +++ b/ports/sysdeps/alpha/fpu/s_roundf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_trunc.c b/ports/sysdeps/alpha/fpu/s_trunc.c index 19f56d9eb5..9216c03caf 100644 --- a/ports/sysdeps/alpha/fpu/s_trunc.c +++ b/ports/sysdeps/alpha/fpu/s_trunc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/fpu/s_truncf.c b/ports/sysdeps/alpha/fpu/s_truncf.c index aac47f719c..a631cd1ea9 100644 --- a/ports/sysdeps/alpha/fpu/s_truncf.c +++ b/ports/sysdeps/alpha/fpu/s_truncf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson. diff --git a/ports/sysdeps/alpha/gccframe.h b/ports/sysdeps/alpha/gccframe.h index fc0d2410ff..c36cdb6e2d 100644 --- a/ports/sysdeps/alpha/gccframe.h +++ b/ports/sysdeps/alpha/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. alpha version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/hp-timing.h b/ports/sysdeps/alpha/hp-timing.h index 4ccc2b0a87..90f9b9d475 100644 --- a/ports/sysdeps/alpha/hp-timing.h +++ b/ports/sysdeps/alpha/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. Alpha version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 2001. diff --git a/ports/sysdeps/alpha/htonl.S b/ports/sysdeps/alpha/htonl.S index e75118c164..c0b7663885 100644 --- a/ports/sysdeps/alpha/htonl.S +++ b/ports/sysdeps/alpha/htonl.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/htons.S b/ports/sysdeps/alpha/htons.S index 574c3fb808..c9904c8871 100644 --- a/ports/sysdeps/alpha/htons.S +++ b/ports/sysdeps/alpha/htons.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/jmpbuf-offsets.h b/ports/sysdeps/alpha/jmpbuf-offsets.h index 5055668195..2e4842c299 100644 --- a/ports/sysdeps/alpha/jmpbuf-offsets.h +++ b/ports/sysdeps/alpha/jmpbuf-offsets.h @@ -1,5 +1,5 @@ /* Private macros for accessing __jmp_buf contents. Alpha version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/jmpbuf-unwind.h b/ports/sysdeps/alpha/jmpbuf-unwind.h index ce2401b862..1303cbd6b9 100644 --- a/ports/sysdeps/alpha/jmpbuf-unwind.h +++ b/ports/sysdeps/alpha/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/alpha/ldiv.S b/ports/sysdeps/alpha/ldiv.S index 9139dad635..63b0fd8d71 100644 --- a/ports/sysdeps/alpha/ldiv.S +++ b/ports/sysdeps/alpha/ldiv.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson . diff --git a/ports/sysdeps/alpha/ldsodefs.h b/ports/sysdeps/alpha/ldsodefs.h index 97a876915c..f0c750d000 100644 --- a/ports/sysdeps/alpha/ldsodefs.h +++ b/ports/sysdeps/alpha/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/libc-tls.c b/ports/sysdeps/alpha/libc-tls.c index cefc215c89..a910589a53 100644 --- a/ports/sysdeps/alpha/libc-tls.c +++ b/ports/sysdeps/alpha/libc-tls.c @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. Alpha version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/lshift.S b/ports/sysdeps/alpha/lshift.S index b7eb8cf8cc..046762d333 100644 --- a/ports/sysdeps/alpha/lshift.S +++ b/ports/sysdeps/alpha/lshift.S @@ -1,6 +1,6 @@ # Alpha 21064 __mpn_lshift -- - # Copyright (C) 1994-2013 Free Software Foundation, Inc. + # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/alpha/machine-gmon.h b/ports/sysdeps/alpha/machine-gmon.h index 9e5ce07824..50301722f9 100644 --- a/ports/sysdeps/alpha/machine-gmon.h +++ b/ports/sysdeps/alpha/machine-gmon.h @@ -1,5 +1,5 @@ /* Machine-specific calling sequence for `mcount' profiling function. alpha - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/memchr.c b/ports/sysdeps/alpha/memchr.c index 4f634cef7a..6d80690b1d 100644 --- a/ports/sysdeps/alpha/memchr.c +++ b/ports/sysdeps/alpha/memchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/memset.S b/ports/sysdeps/alpha/memset.S index 84322ff4a1..5353168289 100644 --- a/ports/sysdeps/alpha/memset.S +++ b/ports/sysdeps/alpha/memset.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. Contributed by Richard Henderson (rth@tamu.edu) This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/memusage.h b/ports/sysdeps/alpha/memusage.h index e877bbaf43..a36447435e 100644 --- a/ports/sysdeps/alpha/memusage.h +++ b/ports/sysdeps/alpha/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/mul_1.S b/ports/sysdeps/alpha/mul_1.S index 0118676f53..e7474d3c35 100644 --- a/ports/sysdeps/alpha/mul_1.S +++ b/ports/sysdeps/alpha/mul_1.S @@ -1,7 +1,7 @@ # Alpha 21064 __mpn_mul_1 -- Multiply a limb vector with a limb and store # the result in a second limb vector. - # Copyright (C) 1992-2013 Free Software Foundation, Inc. + # Copyright (C) 1992-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/alpha/nptl/Makefile b/ports/sysdeps/alpha/nptl/Makefile index b16dbf3099..e077f968a1 100644 --- a/ports/sysdeps/alpha/nptl/Makefile +++ b/ports/sysdeps/alpha/nptl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # # The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/nptl/pthread_spin_lock.S b/ports/sysdeps/alpha/nptl/pthread_spin_lock.S index 452cffbacf..841f654293 100644 --- a/ports/sysdeps/alpha/nptl/pthread_spin_lock.S +++ b/ports/sysdeps/alpha/nptl/pthread_spin_lock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 2003. diff --git a/ports/sysdeps/alpha/nptl/pthread_spin_trylock.S b/ports/sysdeps/alpha/nptl/pthread_spin_trylock.S index 9359ad233a..28a8ac8ca5 100644 --- a/ports/sysdeps/alpha/nptl/pthread_spin_trylock.S +++ b/ports/sysdeps/alpha/nptl/pthread_spin_trylock.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 2003. diff --git a/ports/sysdeps/alpha/nptl/pthreaddef.h b/ports/sysdeps/alpha/nptl/pthreaddef.h index 4efd2677b9..4e56fd9df2 100644 --- a/ports/sysdeps/alpha/nptl/pthreaddef.h +++ b/ports/sysdeps/alpha/nptl/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/nptl/tls.h b/ports/sysdeps/alpha/nptl/tls.h index 66032eebb7..4894f0b6bc 100644 --- a/ports/sysdeps/alpha/nptl/tls.h +++ b/ports/sysdeps/alpha/nptl/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. NPTL/Alpha version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/nscd-types.h b/ports/sysdeps/alpha/nscd-types.h index 1ccf553e57..a9b2f232a8 100644 --- a/ports/sysdeps/alpha/nscd-types.h +++ b/ports/sysdeps/alpha/nscd-types.h @@ -1,5 +1,5 @@ /* Types for the NSCD implementation. Alpha version. - Copyright (c) 2000-2013 Free Software Foundation, Inc. + Copyright (c) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/rawmemchr.S b/ports/sysdeps/alpha/rawmemchr.S index 20bec2e5d9..4a06421f48 100644 --- a/ports/sysdeps/alpha/rawmemchr.S +++ b/ports/sysdeps/alpha/rawmemchr.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/reml.S b/ports/sysdeps/alpha/reml.S index 01d7244e80..8708cf8042 100644 --- a/ports/sysdeps/alpha/reml.S +++ b/ports/sysdeps/alpha/reml.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. Contributed by Richard Henderson This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/remq.S b/ports/sysdeps/alpha/remq.S index f8c4716edc..6d56d2630e 100644 --- a/ports/sysdeps/alpha/remq.S +++ b/ports/sysdeps/alpha/remq.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/remqu.S b/ports/sysdeps/alpha/remqu.S index 5219325ff0..809bac3a33 100644 --- a/ports/sysdeps/alpha/remqu.S +++ b/ports/sysdeps/alpha/remqu.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/rshift.S b/ports/sysdeps/alpha/rshift.S index 64edaad7ed..b458795e35 100644 --- a/ports/sysdeps/alpha/rshift.S +++ b/ports/sysdeps/alpha/rshift.S @@ -1,6 +1,6 @@ # Alpha 21064 __mpn_rshift -- - # Copyright (C) 1994-2013 Free Software Foundation, Inc. + # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/alpha/setjmp.S b/ports/sysdeps/alpha/setjmp.S index fdc54c624f..f79837c86b 100644 --- a/ports/sysdeps/alpha/setjmp.S +++ b/ports/sysdeps/alpha/setjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/soft-fp/e_sqrtl.c b/ports/sysdeps/alpha/soft-fp/e_sqrtl.c index 2cb076e4c6..256e5ef5f0 100644 --- a/ports/sysdeps/alpha/soft-fp/e_sqrtl.c +++ b/ports/sysdeps/alpha/soft-fp/e_sqrtl.c @@ -1,5 +1,5 @@ /* long double square root in software floating-point emulation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_add.c b/ports/sysdeps/alpha/soft-fp/ots_add.c index 30e5883da6..9cd56553ea 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_add.c +++ b/ports/sysdeps/alpha/soft-fp/ots_add.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: addition. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_cmp.c b/ports/sysdeps/alpha/soft-fp/ots_cmp.c index f50178f073..c28aa4f608 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_cmp.c +++ b/ports/sysdeps/alpha/soft-fp/ots_cmp.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: comparison. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_cmpe.c b/ports/sysdeps/alpha/soft-fp/ots_cmpe.c index 0805a442b0..adeda848f4 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_cmpe.c +++ b/ports/sysdeps/alpha/soft-fp/ots_cmpe.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: comparison. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_cvtqux.c b/ports/sysdeps/alpha/soft-fp/ots_cvtqux.c index 84edefdef0..5562098381 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_cvtqux.c +++ b/ports/sysdeps/alpha/soft-fp/ots_cvtqux.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: unsigned integer to float conversion. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_cvtqx.c b/ports/sysdeps/alpha/soft-fp/ots_cvtqx.c index 0db1cac07b..f062a081ec 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_cvtqx.c +++ b/ports/sysdeps/alpha/soft-fp/ots_cvtqx.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: signed integer to float conversion. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_cvttx.c b/ports/sysdeps/alpha/soft-fp/ots_cvttx.c index 9285e82840..a01cd95091 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_cvttx.c +++ b/ports/sysdeps/alpha/soft-fp/ots_cvttx.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: floating point extension. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_cvtxq.c b/ports/sysdeps/alpha/soft-fp/ots_cvtxq.c index dd26c59dd2..1eef9490c3 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_cvtxq.c +++ b/ports/sysdeps/alpha/soft-fp/ots_cvtxq.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: float to integer conversion. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_cvtxt.c b/ports/sysdeps/alpha/soft-fp/ots_cvtxt.c index 0a41a64f76..94e3f3193e 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_cvtxt.c +++ b/ports/sysdeps/alpha/soft-fp/ots_cvtxt.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: floating point truncation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_div.c b/ports/sysdeps/alpha/soft-fp/ots_div.c index c0eed6a6cb..4d1c8543f5 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_div.c +++ b/ports/sysdeps/alpha/soft-fp/ots_div.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: division. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_mul.c b/ports/sysdeps/alpha/soft-fp/ots_mul.c index 78d81f3cc1..39fe8234db 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_mul.c +++ b/ports/sysdeps/alpha/soft-fp/ots_mul.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: multiplication. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_nintxq.c b/ports/sysdeps/alpha/soft-fp/ots_nintxq.c index 42e80e67e0..cfdf38649d 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_nintxq.c +++ b/ports/sysdeps/alpha/soft-fp/ots_nintxq.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: convert to fortran nearest. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/ots_sub.c b/ports/sysdeps/alpha/soft-fp/ots_sub.c index ab13682443..6deb9d9425 100644 --- a/ports/sysdeps/alpha/soft-fp/ots_sub.c +++ b/ports/sysdeps/alpha/soft-fp/ots_sub.c @@ -1,5 +1,5 @@ /* Software floating-point emulation: subtraction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/alpha/soft-fp/sfp-machine.h b/ports/sysdeps/alpha/soft-fp/sfp-machine.h index be266feccc..cceccafe26 100644 --- a/ports/sysdeps/alpha/soft-fp/sfp-machine.h +++ b/ports/sysdeps/alpha/soft-fp/sfp-machine.h @@ -1,6 +1,6 @@ /* Machine-dependent software floating-point definitions. Alpha userland IEEE 128-bit version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz) and diff --git a/ports/sysdeps/alpha/sotruss-lib.c b/ports/sysdeps/alpha/sotruss-lib.c index cb628038f4..51a263dbb7 100644 --- a/ports/sysdeps/alpha/sotruss-lib.c +++ b/ports/sysdeps/alpha/sotruss-lib.c @@ -1,5 +1,5 @@ /* Override generic sotruss-lib.c to define actual functions for Alpha. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/stackinfo.h b/ports/sysdeps/alpha/stackinfo.h index 8fa9d775b0..026bf565a1 100644 --- a/ports/sysdeps/alpha/stackinfo.h +++ b/ports/sysdeps/alpha/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/start.S b/ports/sysdeps/alpha/start.S index e81523cdf1..cf195c1c44 100644 --- a/ports/sysdeps/alpha/start.S +++ b/ports/sysdeps/alpha/start.S @@ -1,5 +1,5 @@ /* Startup code for Alpha/ELF. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson diff --git a/ports/sysdeps/alpha/stpcpy.S b/ports/sysdeps/alpha/stpcpy.S index 706ca52424..8b989d9800 100644 --- a/ports/sysdeps/alpha/stpcpy.S +++ b/ports/sysdeps/alpha/stpcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1996. diff --git a/ports/sysdeps/alpha/stpncpy.S b/ports/sysdeps/alpha/stpncpy.S index b71aaa8cf0..82a109d096 100644 --- a/ports/sysdeps/alpha/stpncpy.S +++ b/ports/sysdeps/alpha/stpncpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@tamu.edu) diff --git a/ports/sysdeps/alpha/strcat.S b/ports/sysdeps/alpha/strcat.S index c93cfb5929..0b856a4ddc 100644 --- a/ports/sysdeps/alpha/strcat.S +++ b/ports/sysdeps/alpha/strcat.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1996. diff --git a/ports/sysdeps/alpha/strchr.S b/ports/sysdeps/alpha/strchr.S index af381d83ee..ba46ab3c90 100644 --- a/ports/sysdeps/alpha/strchr.S +++ b/ports/sysdeps/alpha/strchr.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@tamu.edu) diff --git a/ports/sysdeps/alpha/strcmp.S b/ports/sysdeps/alpha/strcmp.S index 9a4ac5300c..a9fa89327f 100644 --- a/ports/sysdeps/alpha/strcmp.S +++ b/ports/sysdeps/alpha/strcmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. Contributed by Richard Henderson (rth@tamu.edu) This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/strcpy.S b/ports/sysdeps/alpha/strcpy.S index ba914ec0c0..ce8d5ad24c 100644 --- a/ports/sysdeps/alpha/strcpy.S +++ b/ports/sysdeps/alpha/strcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1996. diff --git a/ports/sysdeps/alpha/strlen.S b/ports/sysdeps/alpha/strlen.S index 63191664e5..3e55220fad 100644 --- a/ports/sysdeps/alpha/strlen.S +++ b/ports/sysdeps/alpha/strlen.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. Contributed by David Mosberger (davidm@cs.arizona.edu). This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/strncat.S b/ports/sysdeps/alpha/strncat.S index 083f93011b..28aa49e9e8 100644 --- a/ports/sysdeps/alpha/strncat.S +++ b/ports/sysdeps/alpha/strncat.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1996. diff --git a/ports/sysdeps/alpha/strncmp.S b/ports/sysdeps/alpha/strncmp.S index 9e51b817ae..10a8f5c20c 100644 --- a/ports/sysdeps/alpha/strncmp.S +++ b/ports/sysdeps/alpha/strncmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. Contributed by Richard Henderson (rth@tamu.edu) This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/strncpy.S b/ports/sysdeps/alpha/strncpy.S index ba3c7f707e..db864d816e 100644 --- a/ports/sysdeps/alpha/strncpy.S +++ b/ports/sysdeps/alpha/strncpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. Contributed by Richard Henderson (rth@tamu.edu) This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/strrchr.S b/ports/sysdeps/alpha/strrchr.S index 21a49b2ac9..e85f0cf464 100644 --- a/ports/sysdeps/alpha/strrchr.S +++ b/ports/sysdeps/alpha/strrchr.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/alpha/stxcpy.S b/ports/sysdeps/alpha/stxcpy.S index df8e070e68..3296174751 100644 --- a/ports/sysdeps/alpha/stxcpy.S +++ b/ports/sysdeps/alpha/stxcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. Contributed by Richard Henderson (rth@tamu.edu) This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/stxncpy.S b/ports/sysdeps/alpha/stxncpy.S index 4fd9068614..a12f31e1b3 100644 --- a/ports/sysdeps/alpha/stxncpy.S +++ b/ports/sysdeps/alpha/stxncpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. Contributed by Richard Henderson (rth@tamu.edu) This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/sub_n.S b/ports/sysdeps/alpha/sub_n.S index 61e08a52dd..bf77fd2d24 100644 --- a/ports/sysdeps/alpha/sub_n.S +++ b/ports/sysdeps/alpha/sub_n.S @@ -1,7 +1,7 @@ # Alpha __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and # store difference in a third limb vector. - # Copyright (C) 1995-2013 Free Software Foundation, Inc. + # Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/alpha/submul_1.S b/ports/sysdeps/alpha/submul_1.S index 650d9860ab..961b0e31ee 100644 --- a/ports/sysdeps/alpha/submul_1.S +++ b/ports/sysdeps/alpha/submul_1.S @@ -1,7 +1,7 @@ # Alpha 21064 __mpn_submul_1 -- Multiply a limb vector with a limb and # subtract the result from a second limb vector. - # Copyright (C) 1992-2013 Free Software Foundation, Inc. + # Copyright (C) 1992-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/alpha/tst-audit.h b/ports/sysdeps/alpha/tst-audit.h index 60963955ca..06fab75f9d 100644 --- a/ports/sysdeps/alpha/tst-audit.h +++ b/ports/sysdeps/alpha/tst-audit.h @@ -1,5 +1,5 @@ /* Definitions for testing PLT entry/exit auditing. Alpha version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/alpha/udiv_qrnnd.S b/ports/sysdeps/alpha/udiv_qrnnd.S index 7cdbbb5ddc..7c6682e55a 100644 --- a/ports/sysdeps/alpha/udiv_qrnnd.S +++ b/ports/sysdeps/alpha/udiv_qrnnd.S @@ -1,6 +1,6 @@ # Alpha 21064 __udiv_qrnnd - # Copyright (C) 1992-2013 Free Software Foundation, Inc. + # Copyright (C) 1992-2014 Free Software Foundation, Inc. # This file is part of the GNU MP Library. diff --git a/ports/sysdeps/am33/__longjmp.S b/ports/sysdeps/am33/__longjmp.S index 76418115e9..aea25a1899 100644 --- a/ports/sysdeps/am33/__longjmp.S +++ b/ports/sysdeps/am33/__longjmp.S @@ -1,5 +1,5 @@ /* longjmp for AM33. - Copyright 2001-2013 Free Software Foundation, Inc. + Copyright 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/am33/atomicity.h b/ports/sysdeps/am33/atomicity.h index e9705a25df..f3d1496186 100644 --- a/ports/sysdeps/am33/atomicity.h +++ b/ports/sysdeps/am33/atomicity.h @@ -1,5 +1,5 @@ /* Low-level functions for atomic operations. AM33 version. - Copyright 1999-2013 Free Software Foundation, Inc. + Copyright 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . Based on ../sparc/sparc32/atomicity.h diff --git a/ports/sysdeps/am33/bits/setjmp.h b/ports/sysdeps/am33/bits/setjmp.h index cf260db693..46754ff4d1 100644 --- a/ports/sysdeps/am33/bits/setjmp.h +++ b/ports/sysdeps/am33/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright 2001-2013 Free Software Foundation, Inc. +/* Copyright 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/am33/dl-machine.h b/ports/sysdeps/am33/dl-machine.h index 924319d039..10e6e4662b 100644 --- a/ports/sysdeps/am33/dl-machine.h +++ b/ports/sysdeps/am33/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. AM33 version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/am33/elf/start.S b/ports/sysdeps/am33/elf/start.S index 6f1eb8cb3a..265ad215c8 100644 --- a/ports/sysdeps/am33/elf/start.S +++ b/ports/sysdeps/am33/elf/start.S @@ -1,5 +1,5 @@ /* Startup code compliant to the ELF MN10300 ABI. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. Contributed by Alexandre Oliva Based on ../../i386/elf/start.S. This file is part of the GNU C Library. diff --git a/ports/sysdeps/am33/fpu/bits/fenv.h b/ports/sysdeps/am33/fpu/bits/fenv.h index 279de714dc..e4a396dd0b 100644 --- a/ports/sysdeps/am33/fpu/bits/fenv.h +++ b/ports/sysdeps/am33/fpu/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on the corresponding file in the mips port. diff --git a/ports/sysdeps/am33/fpu/fclrexcpt.c b/ports/sysdeps/am33/fpu/fclrexcpt.c index 90f9752dce..12bda643fe 100644 --- a/ports/sysdeps/am33/fpu/fclrexcpt.c +++ b/ports/sysdeps/am33/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/fpu/fedisblxcpt.c b/ports/sysdeps/am33/fpu/fedisblxcpt.c index 36f13791e8..5273d9023f 100644 --- a/ports/sysdeps/am33/fpu/fedisblxcpt.c +++ b/ports/sysdeps/am33/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/fpu/feenablxcpt.c b/ports/sysdeps/am33/fpu/feenablxcpt.c index d665a2fdf3..ae4808a458 100644 --- a/ports/sysdeps/am33/fpu/feenablxcpt.c +++ b/ports/sysdeps/am33/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/fpu/fegetenv.c b/ports/sysdeps/am33/fpu/fegetenv.c index 51f9c8c83c..87853bad18 100644 --- a/ports/sysdeps/am33/fpu/fegetenv.c +++ b/ports/sysdeps/am33/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/fpu/fegetexcept.c b/ports/sysdeps/am33/fpu/fegetexcept.c index 28869b8601..01f7c0caa6 100644 --- a/ports/sysdeps/am33/fpu/fegetexcept.c +++ b/ports/sysdeps/am33/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get enabled floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/fpu/fegetround.c b/ports/sysdeps/am33/fpu/fegetround.c index 49cae00fd0..d946d9b6e8 100644 --- a/ports/sysdeps/am33/fpu/fegetround.c +++ b/ports/sysdeps/am33/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/fpu/feholdexcpt.c b/ports/sysdeps/am33/fpu/feholdexcpt.c index 9d2894bcb2..1e662d0eec 100644 --- a/ports/sysdeps/am33/fpu/feholdexcpt.c +++ b/ports/sysdeps/am33/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/fpu/fenv_libc.h b/ports/sysdeps/am33/fpu/fenv_libc.h index a8a7bc286f..ee19a04eb2 100644 --- a/ports/sysdeps/am33/fpu/fenv_libc.h +++ b/ports/sysdeps/am33/fpu/fenv_libc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on the corresponding file in the mips port. diff --git a/ports/sysdeps/am33/fpu/fesetenv.c b/ports/sysdeps/am33/fpu/fesetenv.c index fcde195f43..7a09cfb0dc 100644 --- a/ports/sysdeps/am33/fpu/fesetenv.c +++ b/ports/sysdeps/am33/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/fpu/fesetround.c b/ports/sysdeps/am33/fpu/fesetround.c index e063ec27cb..882e7dc576 100644 --- a/ports/sysdeps/am33/fpu/fesetround.c +++ b/ports/sysdeps/am33/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva diff --git a/ports/sysdeps/am33/fpu/feupdateenv.c b/ports/sysdeps/am33/fpu/feupdateenv.c index 3d7a16429d..11f9ef8116 100644 --- a/ports/sysdeps/am33/fpu/feupdateenv.c +++ b/ports/sysdeps/am33/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/fpu/fgetexcptflg.c b/ports/sysdeps/am33/fpu/fgetexcptflg.c index bb9f4e9946..8b09e9797d 100644 --- a/ports/sysdeps/am33/fpu/fgetexcptflg.c +++ b/ports/sysdeps/am33/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/fpu/fpu_control.h b/ports/sysdeps/am33/fpu/fpu_control.h index 5de500184f..8b1715f3fd 100644 --- a/ports/sysdeps/am33/fpu/fpu_control.h +++ b/ports/sysdeps/am33/fpu/fpu_control.h @@ -1,5 +1,5 @@ /* FPU control word bits. AM33/2.0 version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on the corresponding file in the mips port. diff --git a/ports/sysdeps/am33/fpu/fraiseexcpt.c b/ports/sysdeps/am33/fpu/fraiseexcpt.c index 1610adf5e2..b86a51eb8e 100644 --- a/ports/sysdeps/am33/fpu/fraiseexcpt.c +++ b/ports/sysdeps/am33/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the M68K port. diff --git a/ports/sysdeps/am33/fpu/fsetexcptflg.c b/ports/sysdeps/am33/fpu/fsetexcptflg.c index b924881a36..7b7ab84082 100644 --- a/ports/sysdeps/am33/fpu/fsetexcptflg.c +++ b/ports/sysdeps/am33/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/fpu/ftestexcept.c b/ports/sysdeps/am33/fpu/ftestexcept.c index cd996d3d73..fc43de5a99 100644 --- a/ports/sysdeps/am33/fpu/ftestexcept.c +++ b/ports/sysdeps/am33/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva based on corresponding file in the MIPS port. diff --git a/ports/sysdeps/am33/jmpbuf-offsets.h b/ports/sysdeps/am33/jmpbuf-offsets.h index 9021e873ee..cccfdb32aa 100644 --- a/ports/sysdeps/am33/jmpbuf-offsets.h +++ b/ports/sysdeps/am33/jmpbuf-offsets.h @@ -1,5 +1,5 @@ /* Private macros for accessing __jmp_buf contents. AM33 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/am33/jmpbuf-unwind.h b/ports/sysdeps/am33/jmpbuf-unwind.h index db5fefac04..0d28bf6f77 100644 --- a/ports/sysdeps/am33/jmpbuf-unwind.h +++ b/ports/sysdeps/am33/jmpbuf-unwind.h @@ -1,5 +1,5 @@ /* Examine __jmp_buf for unwinding frames. AM33 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/am33/linuxthreads/pspinlock.c b/ports/sysdeps/am33/linuxthreads/pspinlock.c index 987760de8c..8113907a7a 100644 --- a/ports/sysdeps/am33/linuxthreads/pspinlock.c +++ b/ports/sysdeps/am33/linuxthreads/pspinlock.c @@ -1,5 +1,5 @@ /* POSIX spinlock implementation. AM33 version. - Copyright 2001-2013 Free Software Foundation, Inc. + Copyright 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/am33/linuxthreads/pt-machine.h b/ports/sysdeps/am33/linuxthreads/pt-machine.h index bede797855..9e11746fe8 100644 --- a/ports/sysdeps/am33/linuxthreads/pt-machine.h +++ b/ports/sysdeps/am33/linuxthreads/pt-machine.h @@ -1,6 +1,6 @@ /* Machine-dependent pthreads configuration and inline functions. am33 version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva Based on ../i386/pt-machine.h. diff --git a/ports/sysdeps/am33/memusage.h b/ports/sysdeps/am33/memusage.h index 0a647a452e..236743d6a3 100644 --- a/ports/sysdeps/am33/memusage.h +++ b/ports/sysdeps/am33/memusage.h @@ -1,4 +1,4 @@ -/* Copyright 2000-2013 Free Software Foundation, Inc. +/* Copyright 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/am33/setjmp.S b/ports/sysdeps/am33/setjmp.S index 6b4b819d47..d03b0c7278 100644 --- a/ports/sysdeps/am33/setjmp.S +++ b/ports/sysdeps/am33/setjmp.S @@ -1,5 +1,5 @@ /* setjmp for am33. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/am33/stackinfo.h b/ports/sysdeps/am33/stackinfo.h index 0bba63f576..50079fd5f0 100644 --- a/ports/sysdeps/am33/stackinfo.h +++ b/ports/sysdeps/am33/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright 2001-2013 Free Software Foundation, Inc. +/* Copyright 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/am33/sys/ucontext.h b/ports/sysdeps/am33/sys/ucontext.h index 68ad84728a..bc2af63a81 100644 --- a/ports/sysdeps/am33/sys/ucontext.h +++ b/ports/sysdeps/am33/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright 1997-2013 Free Software Foundation, Inc. +/* Copyright 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/am33/sysdep.h b/ports/sysdeps/am33/sysdep.h index 3c1cf162a8..70303e3277 100644 --- a/ports/sysdeps/am33/sysdep.h +++ b/ports/sysdeps/am33/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright 2001-2013 Free Software Foundation, Inc. +/* Copyright 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . Based on ../i386/sysdep.h. diff --git a/ports/sysdeps/arm/__longjmp.S b/ports/sysdeps/arm/__longjmp.S index 894c121c0f..1503923aaa 100644 --- a/ports/sysdeps/arm/__longjmp.S +++ b/ports/sysdeps/arm/__longjmp.S @@ -1,5 +1,5 @@ /* longjmp for ARM. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/add_n.S b/ports/sysdeps/arm/add_n.S index c6b0147972..4cc1ac287f 100644 --- a/ports/sysdeps/arm/add_n.S +++ b/ports/sysdeps/arm/add_n.S @@ -1,5 +1,5 @@ /* mpn_add_n -- add (or subtract) bignums. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/addmul_1.S b/ports/sysdeps/arm/addmul_1.S index d204c887e3..fab1ae8cd4 100644 --- a/ports/sysdeps/arm/addmul_1.S +++ b/ports/sysdeps/arm/addmul_1.S @@ -1,5 +1,5 @@ /* mpn_addmul_1 -- multiply and accumulate bignums. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_assert.c b/ports/sysdeps/arm/aeabi_assert.c index ab1be7e7eb..0a31ffb4fb 100644 --- a/ports/sysdeps/arm/aeabi_assert.c +++ b/ports/sysdeps/arm/aeabi_assert.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_atexit.c b/ports/sysdeps/arm/aeabi_atexit.c index 5bfc8347a8..c5c207f4cf 100644 --- a/ports/sysdeps/arm/aeabi_atexit.c +++ b/ports/sysdeps/arm/aeabi_atexit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_errno_addr.c b/ports/sysdeps/arm/aeabi_errno_addr.c index fe73c15f92..160c765a09 100644 --- a/ports/sysdeps/arm/aeabi_errno_addr.c +++ b/ports/sysdeps/arm/aeabi_errno_addr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_lcsts.c b/ports/sysdeps/arm/aeabi_lcsts.c index eb756812cf..dac9a17604 100644 --- a/ports/sysdeps/arm/aeabi_lcsts.c +++ b/ports/sysdeps/arm/aeabi_lcsts.c @@ -1,5 +1,5 @@ /* Link-time constants for ARM EABI. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_localeconv.c b/ports/sysdeps/arm/aeabi_localeconv.c index 154d621670..2a7615f6de 100644 --- a/ports/sysdeps/arm/aeabi_localeconv.c +++ b/ports/sysdeps/arm/aeabi_localeconv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_math.c b/ports/sysdeps/arm/aeabi_math.c index 550b72e555..6b4211fbc5 100644 --- a/ports/sysdeps/arm/aeabi_math.c +++ b/ports/sysdeps/arm/aeabi_math.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_mb_cur_max.c b/ports/sysdeps/arm/aeabi_mb_cur_max.c index f3f3365400..ba2cc3a341 100644 --- a/ports/sysdeps/arm/aeabi_mb_cur_max.c +++ b/ports/sysdeps/arm/aeabi_mb_cur_max.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_memclr.c b/ports/sysdeps/arm/aeabi_memclr.c index 0f89217637..3bdfb3edf2 100644 --- a/ports/sysdeps/arm/aeabi_memclr.c +++ b/ports/sysdeps/arm/aeabi_memclr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_memcpy.c b/ports/sysdeps/arm/aeabi_memcpy.c index 5eb7245c25..88e2e7bfbb 100644 --- a/ports/sysdeps/arm/aeabi_memcpy.c +++ b/ports/sysdeps/arm/aeabi_memcpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_memmove.c b/ports/sysdeps/arm/aeabi_memmove.c index 67294e788e..14961337e2 100644 --- a/ports/sysdeps/arm/aeabi_memmove.c +++ b/ports/sysdeps/arm/aeabi_memmove.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_memset.c b/ports/sysdeps/arm/aeabi_memset.c index a08e263d86..160cfbb497 100644 --- a/ports/sysdeps/arm/aeabi_memset.c +++ b/ports/sysdeps/arm/aeabi_memset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_sighandlers.S b/ports/sysdeps/arm/aeabi_sighandlers.S index 6f2402f236..c14193b066 100644 --- a/ports/sysdeps/arm/aeabi_sighandlers.S +++ b/ports/sysdeps/arm/aeabi_sighandlers.S @@ -1,5 +1,5 @@ /* Link-time constants for ARM EABI - signal handlers. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/aeabi_unwind_cpp_pr1.c b/ports/sysdeps/arm/aeabi_unwind_cpp_pr1.c index ae5858039b..f65061310a 100644 --- a/ports/sysdeps/arm/aeabi_unwind_cpp_pr1.c +++ b/ports/sysdeps/arm/aeabi_unwind_cpp_pr1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/arm-features.h b/ports/sysdeps/arm/arm-features.h index 336b6905af..b743756519 100644 --- a/ports/sysdeps/arm/arm-features.h +++ b/ports/sysdeps/arm/arm-features.h @@ -1,5 +1,5 @@ /* Macros to test for CPU features on ARM. Generic ARM version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/arm-mcount.S b/ports/sysdeps/arm/arm-mcount.S index 8162be2483..8b8653c78e 100644 --- a/ports/sysdeps/arm/arm-mcount.S +++ b/ports/sysdeps/arm/arm-mcount.S @@ -1,5 +1,5 @@ /* Implementation of profiling support. ARM EABI version. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/armv6/rawmemchr.S b/ports/sysdeps/arm/armv6/rawmemchr.S index b5e4a16f03..c34fdc6988 100644 --- a/ports/sysdeps/arm/armv6/rawmemchr.S +++ b/ports/sysdeps/arm/armv6/rawmemchr.S @@ -1,5 +1,5 @@ /* rawmemchr -- find a byte within an unsized memory block. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/armv6/strchr.S b/ports/sysdeps/arm/armv6/strchr.S index 936c2be666..e4de0f3323 100644 --- a/ports/sysdeps/arm/armv6/strchr.S +++ b/ports/sysdeps/arm/armv6/strchr.S @@ -1,5 +1,5 @@ /* strchr -- find the first instance of C in a nul-terminated string. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/armv6/strcpy.S b/ports/sysdeps/arm/armv6/strcpy.S index 69e82d8314..833a83c28f 100644 --- a/ports/sysdeps/arm/armv6/strcpy.S +++ b/ports/sysdeps/arm/armv6/strcpy.S @@ -1,5 +1,5 @@ /* strcpy -- copy a nul-terminated string. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/armv6/strlen.S b/ports/sysdeps/arm/armv6/strlen.S index 59ff6b5d93..290d7bc86d 100644 --- a/ports/sysdeps/arm/armv6/strlen.S +++ b/ports/sysdeps/arm/armv6/strlen.S @@ -1,5 +1,5 @@ /* strlen -- find the length of a nul-terminated string. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/armv6/strrchr.S b/ports/sysdeps/arm/armv6/strrchr.S index e40df90a72..a1e753c11b 100644 --- a/ports/sysdeps/arm/armv6/strrchr.S +++ b/ports/sysdeps/arm/armv6/strrchr.S @@ -1,5 +1,5 @@ /* strrchr -- find the last occurence of C in a nul-terminated string - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/armv6t2/ffs.S b/ports/sysdeps/arm/armv6t2/ffs.S index 9f999306ff..b61624aedc 100644 --- a/ports/sysdeps/arm/armv6t2/ffs.S +++ b/ports/sysdeps/arm/armv6t2/ffs.S @@ -1,5 +1,5 @@ /* ffs -- find first set bit in an int, from least significant end. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/armv6t2/ffsll.S b/ports/sysdeps/arm/armv6t2/ffsll.S index e49c70fdf1..204ff80092 100644 --- a/ports/sysdeps/arm/armv6t2/ffsll.S +++ b/ports/sysdeps/arm/armv6t2/ffsll.S @@ -1,5 +1,5 @@ /* ffsll -- find first set bit in a long long, from least significant end. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/armv6t2/memchr.S b/ports/sysdeps/arm/armv6t2/memchr.S index f758971438..65bb94fe70 100644 --- a/ports/sysdeps/arm/armv6t2/memchr.S +++ b/ports/sysdeps/arm/armv6t2/memchr.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Code contributed by Dave Gilbert diff --git a/ports/sysdeps/arm/armv6t2/strlen.S b/ports/sysdeps/arm/armv6t2/strlen.S index f2b3ab4b58..1706f6c6b8 100644 --- a/ports/sysdeps/arm/armv6t2/strlen.S +++ b/ports/sysdeps/arm/armv6t2/strlen.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2011,2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/armv7/multiarch/ifunc-impl-list.c b/ports/sysdeps/arm/armv7/multiarch/ifunc-impl-list.c index 4a9a25c767..2515418eda 100644 --- a/ports/sysdeps/arm/armv7/multiarch/ifunc-impl-list.c +++ b/ports/sysdeps/arm/armv7/multiarch/ifunc-impl-list.c @@ -1,5 +1,5 @@ /* Enumerate available IFUNC implementations of a function. ARM version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/armv7/multiarch/memcpy.S b/ports/sysdeps/arm/armv7/multiarch/memcpy.S index 81c01d3eac..c4f4e80fb0 100644 --- a/ports/sysdeps/arm/armv7/multiarch/memcpy.S +++ b/ports/sysdeps/arm/armv7/multiarch/memcpy.S @@ -1,6 +1,6 @@ /* Multiple versions of memcpy All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/armv7/multiarch/memcpy_impl.S b/ports/sysdeps/arm/armv7/multiarch/memcpy_impl.S index 44cecb02d4..1562416cf6 100644 --- a/ports/sysdeps/arm/armv7/multiarch/memcpy_impl.S +++ b/ports/sysdeps/arm/armv7/multiarch/memcpy_impl.S @@ -1,5 +1,5 @@ /* NEON/VFP/ARM version of memcpy optimized for Cortex-A15. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/backtrace.c b/ports/sysdeps/arm/backtrace.c index e627d71c6f..15ba506411 100644 --- a/ports/sysdeps/arm/backtrace.c +++ b/ports/sysdeps/arm/backtrace.c @@ -1,5 +1,5 @@ /* Return backtrace of current program state. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kazu Hirata , 2008. diff --git a/ports/sysdeps/arm/bits/atomic.h b/ports/sysdeps/arm/bits/atomic.h index 5e0801dd8e..c2d5be5703 100644 --- a/ports/sysdeps/arm/bits/atomic.h +++ b/ports/sysdeps/arm/bits/atomic.h @@ -1,5 +1,5 @@ /* Atomic operations. Pure ARM version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/bits/fenv.h b/ports/sysdeps/arm/bits/fenv.h index 9e0834646e..c7f5876c5c 100644 --- a/ports/sysdeps/arm/bits/fenv.h +++ b/ports/sysdeps/arm/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/bits/link.h b/ports/sysdeps/arm/bits/link.h index 2f995e814b..9412cf8800 100644 --- a/ports/sysdeps/arm/bits/link.h +++ b/ports/sysdeps/arm/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/bits/mathdef.h b/ports/sysdeps/arm/bits/mathdef.h index 82ef389173..be727e5b8d 100644 --- a/ports/sysdeps/arm/bits/mathdef.h +++ b/ports/sysdeps/arm/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/bits/setjmp.h b/ports/sysdeps/arm/bits/setjmp.h index c8c3a9a324..41423b2c3b 100644 --- a/ports/sysdeps/arm/bits/setjmp.h +++ b/ports/sysdeps/arm/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/bsd-_setjmp.S b/ports/sysdeps/arm/bsd-_setjmp.S index 0c2313197c..e8c5b245bf 100644 --- a/ports/sysdeps/arm/bsd-_setjmp.S +++ b/ports/sysdeps/arm/bsd-_setjmp.S @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. ARM version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/bsd-setjmp.S b/ports/sysdeps/arm/bsd-setjmp.S index 5b1b744762..682e8130f1 100644 --- a/ports/sysdeps/arm/bsd-setjmp.S +++ b/ports/sysdeps/arm/bsd-setjmp.S @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. ARM version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/crti.S b/ports/sysdeps/arm/crti.S index be20a11995..d053e17ddb 100644 --- a/ports/sysdeps/arm/crti.S +++ b/ports/sysdeps/arm/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for ARM. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/crtn.S b/ports/sysdeps/arm/crtn.S index ae7546c5e7..d3254ad41f 100644 --- a/ports/sysdeps/arm/crtn.S +++ b/ports/sysdeps/arm/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for ARM. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/dl-irel.h b/ports/sysdeps/arm/dl-irel.h index 0e879d23b6..5c89ce496b 100644 --- a/ports/sysdeps/arm/dl-irel.h +++ b/ports/sysdeps/arm/dl-irel.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF indirect relocation inline functions. ARM version. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/dl-lookupcfg.h b/ports/sysdeps/arm/dl-lookupcfg.h index 1dcd340125..20b6fc626e 100644 --- a/ports/sysdeps/arm/dl-lookupcfg.h +++ b/ports/sysdeps/arm/dl-lookupcfg.h @@ -1,5 +1,5 @@ /* Configuration of lookup functions. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/dl-machine.h b/ports/sysdeps/arm/dl-machine.h index 85dba67fb3..02d1a5ebdf 100644 --- a/ports/sysdeps/arm/dl-machine.h +++ b/ports/sysdeps/arm/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. ARM version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/dl-sysdep.h b/ports/sysdeps/arm/dl-sysdep.h index 85f97e50ff..e9c86dfc12 100644 --- a/ports/sysdeps/arm/dl-sysdep.h +++ b/ports/sysdeps/arm/dl-sysdep.h @@ -1,5 +1,5 @@ /* System-specific settings for dynamic linker code. Alpha version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/dl-tls.h b/ports/sysdeps/arm/dl-tls.h index 5f3c432727..8dea3672f0 100644 --- a/ports/sysdeps/arm/dl-tls.h +++ b/ports/sysdeps/arm/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. ARM version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/dl-tlsdesc.S b/ports/sysdeps/arm/dl-tlsdesc.S index d4b046669a..1644a32793 100644 --- a/ports/sysdeps/arm/dl-tlsdesc.S +++ b/ports/sysdeps/arm/dl-tlsdesc.S @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. ARM version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/dl-tlsdesc.h b/ports/sysdeps/arm/dl-tlsdesc.h index c4e1be4f7e..27a5d5d948 100644 --- a/ports/sysdeps/arm/dl-tlsdesc.h +++ b/ports/sysdeps/arm/dl-tlsdesc.h @@ -1,6 +1,6 @@ /* Thread-local storage descriptor handling in the ELF dynamic linker. ARM version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/dl-trampoline.S b/ports/sysdeps/arm/dl-trampoline.S index 9366976762..2b7033b896 100644 --- a/ports/sysdeps/arm/dl-trampoline.S +++ b/ports/sysdeps/arm/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. ARM version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/fclrexcpt.c b/ports/sysdeps/arm/fclrexcpt.c index 64ec7466c2..8b54114e37 100644 --- a/ports/sysdeps/arm/fclrexcpt.c +++ b/ports/sysdeps/arm/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/fedisblxcpt.c b/ports/sysdeps/arm/fedisblxcpt.c index 34c218c985..88da539439 100644 --- a/ports/sysdeps/arm/fedisblxcpt.c +++ b/ports/sysdeps/arm/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell , 2001. diff --git a/ports/sysdeps/arm/feenablxcpt.c b/ports/sysdeps/arm/feenablxcpt.c index e2e287b6e5..b286ec5565 100644 --- a/ports/sysdeps/arm/feenablxcpt.c +++ b/ports/sysdeps/arm/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell , 2001. diff --git a/ports/sysdeps/arm/fegetenv.c b/ports/sysdeps/arm/fegetenv.c index fd1d4fd061..7003a01304 100644 --- a/ports/sysdeps/arm/fegetenv.c +++ b/ports/sysdeps/arm/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/fegetexcept.c b/ports/sysdeps/arm/fegetexcept.c index c9b697704c..5974c63336 100644 --- a/ports/sysdeps/arm/fegetexcept.c +++ b/ports/sysdeps/arm/fegetexcept.c @@ -1,5 +1,5 @@ /* Get floating-point exceptions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell , 2001 diff --git a/ports/sysdeps/arm/fegetround.c b/ports/sysdeps/arm/fegetround.c index 149a989518..cb4cf1bce2 100644 --- a/ports/sysdeps/arm/fegetround.c +++ b/ports/sysdeps/arm/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/feholdexcpt.c b/ports/sysdeps/arm/feholdexcpt.c index cf11a6425b..9ca673c6fb 100644 --- a/ports/sysdeps/arm/feholdexcpt.c +++ b/ports/sysdeps/arm/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/fesetenv.c b/ports/sysdeps/arm/fesetenv.c index 8f5349c4d3..af4f25d47d 100644 --- a/ports/sysdeps/arm/fesetenv.c +++ b/ports/sysdeps/arm/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/fesetround.c b/ports/sysdeps/arm/fesetround.c index 770420ecca..6f533d1992 100644 --- a/ports/sysdeps/arm/fesetround.c +++ b/ports/sysdeps/arm/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/feupdateenv.c b/ports/sysdeps/arm/feupdateenv.c index fa3f647bbc..58ec5f66db 100644 --- a/ports/sysdeps/arm/feupdateenv.c +++ b/ports/sysdeps/arm/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/arm/fgetexcptflg.c b/ports/sysdeps/arm/fgetexcptflg.c index bd6c169be3..114597990a 100644 --- a/ports/sysdeps/arm/fgetexcptflg.c +++ b/ports/sysdeps/arm/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/arm/find_exidx.c b/ports/sysdeps/arm/find_exidx.c index 978ed4947d..39910ed350 100644 --- a/ports/sysdeps/arm/find_exidx.c +++ b/ports/sysdeps/arm/find_exidx.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/fpu_control.h b/ports/sysdeps/arm/fpu_control.h index 513e6948a1..6d54b9bfee 100644 --- a/ports/sysdeps/arm/fpu_control.h +++ b/ports/sysdeps/arm/fpu_control.h @@ -1,5 +1,5 @@ /* FPU control word definitions. ARM VFP version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/fraiseexcpt.c b/ports/sysdeps/arm/fraiseexcpt.c index 9d6ed72875..8b320651eb 100644 --- a/ports/sysdeps/arm/fraiseexcpt.c +++ b/ports/sysdeps/arm/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/frame.h b/ports/sysdeps/arm/frame.h index db3529939b..eba5967c3f 100644 --- a/ports/sysdeps/arm/frame.h +++ b/ports/sysdeps/arm/frame.h @@ -1,5 +1,5 @@ /* Definition of stack frame structure. ARM/APCS version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/fsetexcptflg.c b/ports/sysdeps/arm/fsetexcptflg.c index 78b417b23f..0c88c0fa70 100644 --- a/ports/sysdeps/arm/fsetexcptflg.c +++ b/ports/sysdeps/arm/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/ftestexcept.c b/ports/sysdeps/arm/ftestexcept.c index 8572694360..9295c0fec2 100644 --- a/ports/sysdeps/arm/ftestexcept.c +++ b/ports/sysdeps/arm/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/gccframe.h b/ports/sysdeps/arm/gccframe.h index c11498e2cd..f417b45791 100644 --- a/ports/sysdeps/arm/gccframe.h +++ b/ports/sysdeps/arm/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. arm version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/get-rounding-mode.h b/ports/sysdeps/arm/get-rounding-mode.h index 5ebedbc7fe..7d6054cd89 100644 --- a/ports/sysdeps/arm/get-rounding-mode.h +++ b/ports/sysdeps/arm/get-rounding-mode.h @@ -1,5 +1,5 @@ /* Determine floating-point rounding mode within libc. ARM version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/gmp-mparam.h b/ports/sysdeps/arm/gmp-mparam.h index 465a77c610..e2276b7bce 100644 --- a/ports/sysdeps/arm/gmp-mparam.h +++ b/ports/sysdeps/arm/gmp-mparam.h @@ -1,6 +1,6 @@ /* gmp-mparam.h -- Compiler/machine parameter header file. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/arm/include/bits/setjmp.h b/ports/sysdeps/arm/include/bits/setjmp.h index 64505dcb94..2f502457d8 100644 --- a/ports/sysdeps/arm/include/bits/setjmp.h +++ b/ports/sysdeps/arm/include/bits/setjmp.h @@ -1,5 +1,5 @@ /* Private jmp_buf-related definitions. ARM EABI version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/jmpbuf-unwind.h b/ports/sysdeps/arm/jmpbuf-unwind.h index 1b0d0202e3..4dfba44ef8 100644 --- a/ports/sysdeps/arm/jmpbuf-unwind.h +++ b/ports/sysdeps/arm/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/ldsodefs.h b/ports/sysdeps/arm/ldsodefs.h index 587288a58e..47cbc4f205 100644 --- a/ports/sysdeps/arm/ldsodefs.h +++ b/ports/sysdeps/arm/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/libc-tls.c b/ports/sysdeps/arm/libc-tls.c index af19d14947..b364401bbe 100644 --- a/ports/sysdeps/arm/libc-tls.c +++ b/ports/sysdeps/arm/libc-tls.c @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. ARM version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/machine-gmon.h b/ports/sysdeps/arm/machine-gmon.h index d784d1b7ee..43e980148d 100644 --- a/ports/sysdeps/arm/machine-gmon.h +++ b/ports/sysdeps/arm/machine-gmon.h @@ -1,5 +1,5 @@ /* Machine-dependent definitions for profiling support. ARM EABI version. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/math-tests.h b/ports/sysdeps/arm/math-tests.h index 6fd17edca2..e65f135e97 100644 --- a/ports/sysdeps/arm/math-tests.h +++ b/ports/sysdeps/arm/math-tests.h @@ -1,5 +1,5 @@ /* Configuration for math tests. ARM version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/memcpy.S b/ports/sysdeps/arm/memcpy.S index add82e2d18..3e985dad68 100644 --- a/ports/sysdeps/arm/memcpy.S +++ b/ports/sysdeps/arm/memcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by MontaVista Software, Inc. (written by Nicolas Pitre) diff --git a/ports/sysdeps/arm/memmove.S b/ports/sysdeps/arm/memmove.S index 9d4d5b099e..04aa7db7b4 100644 --- a/ports/sysdeps/arm/memmove.S +++ b/ports/sysdeps/arm/memmove.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by MontaVista Software, Inc. (written by Nicolas Pitre) diff --git a/ports/sysdeps/arm/memset.S b/ports/sysdeps/arm/memset.S index a28cdc6205..cf04db4634 100644 --- a/ports/sysdeps/arm/memset.S +++ b/ports/sysdeps/arm/memset.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell diff --git a/ports/sysdeps/arm/memusage.h b/ports/sysdeps/arm/memusage.h index b7dcced713..51f276c200 100644 --- a/ports/sysdeps/arm/memusage.h +++ b/ports/sysdeps/arm/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/nptl/Makefile b/ports/sysdeps/arm/nptl/Makefile index fa32936c5e..143850e6c8 100644 --- a/ports/sysdeps/arm/nptl/Makefile +++ b/ports/sysdeps/arm/nptl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # # The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/nptl/pthread_spin_lock.c b/ports/sysdeps/arm/nptl/pthread_spin_lock.c index bebea5ee7d..7105c73594 100644 --- a/ports/sysdeps/arm/nptl/pthread_spin_lock.c +++ b/ports/sysdeps/arm/nptl/pthread_spin_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/nptl/pthreaddef.h b/ports/sysdeps/arm/nptl/pthreaddef.h index 9232fb1672..2488af9828 100644 --- a/ports/sysdeps/arm/nptl/pthreaddef.h +++ b/ports/sysdeps/arm/nptl/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/nptl/tls.h b/ports/sysdeps/arm/nptl/tls.h index da1502716c..8cc0a62173 100644 --- a/ports/sysdeps/arm/nptl/tls.h +++ b/ports/sysdeps/arm/nptl/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. NPTL/ARM version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/setfpucw.c b/ports/sysdeps/arm/setfpucw.c index 4331183a5d..92333eb364 100644 --- a/ports/sysdeps/arm/setfpucw.c +++ b/ports/sysdeps/arm/setfpucw.c @@ -1,5 +1,5 @@ /* Set the FPU control word. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/setjmp.S b/ports/sysdeps/arm/setjmp.S index fedd994313..96657071dd 100644 --- a/ports/sysdeps/arm/setjmp.S +++ b/ports/sysdeps/arm/setjmp.S @@ -1,5 +1,5 @@ /* setjmp for ARM. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/sotruss-lib.c b/ports/sysdeps/arm/sotruss-lib.c index 9f3e7938f7..1f5431c36b 100644 --- a/ports/sysdeps/arm/sotruss-lib.c +++ b/ports/sysdeps/arm/sotruss-lib.c @@ -1,5 +1,5 @@ /* Override generic sotruss-lib.c to define actual functions for ARM. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/stackinfo.h b/ports/sysdeps/arm/stackinfo.h index fa8bd937c5..dc08a17894 100644 --- a/ports/sysdeps/arm/stackinfo.h +++ b/ports/sysdeps/arm/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/start.S b/ports/sysdeps/arm/start.S index 0a57b0becb..adf6531892 100644 --- a/ports/sysdeps/arm/start.S +++ b/ports/sysdeps/arm/start.S @@ -1,5 +1,5 @@ /* Startup code for ARM & ELF - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/strlen.S b/ports/sysdeps/arm/strlen.S index 7d358a7249..c812202bc3 100644 --- a/ports/sysdeps/arm/strlen.S +++ b/ports/sysdeps/arm/strlen.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Code contributed by Matthew Wilcox diff --git a/ports/sysdeps/arm/submul_1.S b/ports/sysdeps/arm/submul_1.S index 2d17490d8b..76b9cda865 100644 --- a/ports/sysdeps/arm/submul_1.S +++ b/ports/sysdeps/arm/submul_1.S @@ -1,5 +1,5 @@ /* mpn_submul_1 -- multiply and subtract bignums. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/sys/ucontext.h b/ports/sysdeps/arm/sys/ucontext.h index 8cc8b47046..a913f68884 100644 --- a/ports/sysdeps/arm/sys/ucontext.h +++ b/ports/sysdeps/arm/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/sysdep.h b/ports/sysdeps/arm/sysdep.h index 3823617f13..7f34ab042f 100644 --- a/ports/sysdeps/arm/sysdep.h +++ b/ports/sysdeps/arm/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for ARM. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/tlsdesc.c b/ports/sysdeps/arm/tlsdesc.c index 991596403a..fc754d6c42 100644 --- a/ports/sysdeps/arm/tlsdesc.c +++ b/ports/sysdeps/arm/tlsdesc.c @@ -1,5 +1,5 @@ /* Manage TLS descriptors. ARM version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/arm/tst-audit.h b/ports/sysdeps/arm/tst-audit.h index c1c55c997c..4f46fa0f23 100644 --- a/ports/sysdeps/arm/tst-audit.h +++ b/ports/sysdeps/arm/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. ARM version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/arm/unwind-dw2-fde-glibc.c b/ports/sysdeps/arm/unwind-dw2-fde-glibc.c index 49e0e13330..6b2110c2db 100644 --- a/ports/sysdeps/arm/unwind-dw2-fde-glibc.c +++ b/ports/sysdeps/arm/unwind-dw2-fde-glibc.c @@ -1,5 +1,5 @@ /* Dummy exception handling and frame unwind runtime interface routines. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/hppa/Makefile b/ports/sysdeps/hppa/Makefile index 3316bbfd43..fa9bc206a2 100644 --- a/ports/sysdeps/hppa/Makefile +++ b/ports/sysdeps/hppa/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by David Huggins-Daines (dhd@debian.org) diff --git a/ports/sysdeps/hppa/__longjmp.c b/ports/sysdeps/hppa/__longjmp.c index d2d25022c6..3637fdbc49 100644 --- a/ports/sysdeps/hppa/__longjmp.c +++ b/ports/sysdeps/hppa/__longjmp.c @@ -1,5 +1,5 @@ /* longjmp for PA-RISC. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/add_n.S b/ports/sysdeps/hppa/add_n.S index 2cae0299a9..29a169cb70 100644 --- a/ports/sysdeps/hppa/add_n.S +++ b/ports/sysdeps/hppa/add_n.S @@ -1,7 +1,7 @@ ;! HP-PA __mpn_add_n -- Add two limb vectors of the same length > 0 and store ;! sum in a third limb vector. -;! Copyright (C) 1992-2013 Free Software Foundation, Inc. +;! Copyright (C) 1992-2014 Free Software Foundation, Inc. ;! This file is part of the GNU MP Library. diff --git a/ports/sysdeps/hppa/bits/link.h b/ports/sysdeps/hppa/bits/link.h index ccf13b433a..fa6e1ebe70 100644 --- a/ports/sysdeps/hppa/bits/link.h +++ b/ports/sysdeps/hppa/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/bits/setjmp.h b/ports/sysdeps/hppa/bits/setjmp.h index 25cba964cb..9a404e7c1e 100644 --- a/ports/sysdeps/hppa/bits/setjmp.h +++ b/ports/sysdeps/hppa/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/bsd-_setjmp.S b/ports/sysdeps/hppa/bsd-_setjmp.S index 35a8f2eb50..4795ceff36 100644 --- a/ports/sysdeps/hppa/bsd-_setjmp.S +++ b/ports/sysdeps/hppa/bsd-_setjmp.S @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. HPPA version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/bsd-setjmp.S b/ports/sysdeps/hppa/bsd-setjmp.S index 48b8c8ff2b..dd776f4e1c 100644 --- a/ports/sysdeps/hppa/bsd-setjmp.S +++ b/ports/sysdeps/hppa/bsd-setjmp.S @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. HPPA version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/crti.S b/ports/sysdeps/hppa/crti.S index 37b2e04ce3..c1d129a94c 100644 --- a/ports/sysdeps/hppa/crti.S +++ b/ports/sysdeps/hppa/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for HPPA - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/crtn.S b/ports/sysdeps/hppa/crtn.S index 44634970a1..296f3e83ee 100644 --- a/ports/sysdeps/hppa/crtn.S +++ b/ports/sysdeps/hppa/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for HPPA - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/dl-fptr.c b/ports/sysdeps/hppa/dl-fptr.c index e0a884237d..7404f5ff91 100644 --- a/ports/sysdeps/hppa/dl-fptr.c +++ b/ports/sysdeps/hppa/dl-fptr.c @@ -1,5 +1,5 @@ /* Manage function descriptors. Generic version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/dl-fptr.h b/ports/sysdeps/hppa/dl-fptr.h index 50a5b2f6dd..f8ce73cf05 100644 --- a/ports/sysdeps/hppa/dl-fptr.h +++ b/ports/sysdeps/hppa/dl-fptr.h @@ -1,5 +1,5 @@ /* Function descriptors. HPPA version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/dl-irel.h b/ports/sysdeps/hppa/dl-irel.h index 4607194144..beefff42fe 100644 --- a/ports/sysdeps/hppa/dl-irel.h +++ b/ports/sysdeps/hppa/dl-irel.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF indirect relocation inline functions. HP-PARISC version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/dl-lookupcfg.h b/ports/sysdeps/hppa/dl-lookupcfg.h index feea320789..666483659c 100644 --- a/ports/sysdeps/hppa/dl-lookupcfg.h +++ b/ports/sysdeps/hppa/dl-lookupcfg.h @@ -1,5 +1,5 @@ /* Configuration of lookup functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/dl-machine.h b/ports/sysdeps/hppa/dl-machine.h index e47e9473e1..6bab0ad07f 100644 --- a/ports/sysdeps/hppa/dl-machine.h +++ b/ports/sysdeps/hppa/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. PA-RISC version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. Contributed by David Huggins-Daines This file is part of the GNU C Library. diff --git a/ports/sysdeps/hppa/dl-symaddr.c b/ports/sysdeps/hppa/dl-symaddr.c index aadc43bec7..7c62c9597c 100644 --- a/ports/sysdeps/hppa/dl-symaddr.c +++ b/ports/sysdeps/hppa/dl-symaddr.c @@ -1,5 +1,5 @@ /* Get the symbol address. HPPA version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/dl-tls.h b/ports/sysdeps/hppa/dl-tls.h index 18bcc2d9bc..71b984390b 100644 --- a/ports/sysdeps/hppa/dl-tls.h +++ b/ports/sysdeps/hppa/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. hppa version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/dl-trampoline.S b/ports/sysdeps/hppa/dl-trampoline.S index 7fda14a7cc..1a3b97b315 100644 --- a/ports/sysdeps/hppa/dl-trampoline.S +++ b/ports/sysdeps/hppa/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. hppa version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/fpu/bits/fenv.h b/ports/sysdeps/hppa/fpu/bits/fenv.h index edbc9b166d..b675ea4c15 100644 --- a/ports/sysdeps/hppa/fpu/bits/fenv.h +++ b/ports/sysdeps/hppa/fpu/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines diff --git a/ports/sysdeps/hppa/fpu/bits/mathdef.h b/ports/sysdeps/hppa/fpu/bits/mathdef.h index 520d8ea69e..875bd44089 100644 --- a/ports/sysdeps/hppa/fpu/bits/mathdef.h +++ b/ports/sysdeps/hppa/fpu/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/fpu/fclrexcpt.c b/ports/sysdeps/hppa/fpu/fclrexcpt.c index 9ebdf083bf..ee097b4522 100644 --- a/ports/sysdeps/hppa/fpu/fclrexcpt.c +++ b/ports/sysdeps/hppa/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/fpu/fedisblxcpt.c b/ports/sysdeps/hppa/fpu/fedisblxcpt.c index 6d80b02099..892c78c987 100644 --- a/ports/sysdeps/hppa/fpu/fedisblxcpt.c +++ b/ports/sysdeps/hppa/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/fpu/feenablxcpt.c b/ports/sysdeps/hppa/fpu/feenablxcpt.c index 88f8fc920a..b0f1d9235b 100644 --- a/ports/sysdeps/hppa/fpu/feenablxcpt.c +++ b/ports/sysdeps/hppa/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/fpu/fegetenv.c b/ports/sysdeps/hppa/fpu/fegetenv.c index 590a1177e9..7028fe4a22 100644 --- a/ports/sysdeps/hppa/fpu/fegetenv.c +++ b/ports/sysdeps/hppa/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/fpu/fegetexcept.c b/ports/sysdeps/hppa/fpu/fegetexcept.c index 181cdb520e..1c4b62d1a6 100644 --- a/ports/sysdeps/hppa/fpu/fegetexcept.c +++ b/ports/sysdeps/hppa/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get enabled floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/fpu/fegetround.c b/ports/sysdeps/hppa/fpu/fegetround.c index 3815fbd94c..85ae2f42fd 100644 --- a/ports/sysdeps/hppa/fpu/fegetround.c +++ b/ports/sysdeps/hppa/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/fpu/feholdexcpt.c b/ports/sysdeps/hppa/fpu/feholdexcpt.c index c351fa4e16..b12138720f 100644 --- a/ports/sysdeps/hppa/fpu/feholdexcpt.c +++ b/ports/sysdeps/hppa/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/fpu/fesetenv.c b/ports/sysdeps/hppa/fpu/fesetenv.c index e845b2c8dd..c967bd505c 100644 --- a/ports/sysdeps/hppa/fpu/fesetenv.c +++ b/ports/sysdeps/hppa/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 Based on the m68k version by diff --git a/ports/sysdeps/hppa/fpu/fesetround.c b/ports/sysdeps/hppa/fpu/fesetround.c index 89d68814d1..15becdb24b 100644 --- a/ports/sysdeps/hppa/fpu/fesetround.c +++ b/ports/sysdeps/hppa/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/fpu/feupdateenv.c b/ports/sysdeps/hppa/fpu/feupdateenv.c index ce60dfe7f8..07757aebd3 100644 --- a/ports/sysdeps/hppa/fpu/feupdateenv.c +++ b/ports/sysdeps/hppa/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/fpu/fgetexcptflg.c b/ports/sysdeps/hppa/fpu/fgetexcptflg.c index 580951e4d1..291e151c6b 100644 --- a/ports/sysdeps/hppa/fpu/fgetexcptflg.c +++ b/ports/sysdeps/hppa/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/fpu/fpu_control.h b/ports/sysdeps/hppa/fpu/fpu_control.h index 627cdd5b92..8f855207df 100644 --- a/ports/sysdeps/hppa/fpu/fpu_control.h +++ b/ports/sysdeps/hppa/fpu/fpu_control.h @@ -1,5 +1,5 @@ /* FPU control word definitions. HP-PARISC version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/fpu/fraiseexcpt.c b/ports/sysdeps/hppa/fpu/fraiseexcpt.c index 28e2db4aab..74e93508f3 100644 --- a/ports/sysdeps/hppa/fpu/fraiseexcpt.c +++ b/ports/sysdeps/hppa/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines diff --git a/ports/sysdeps/hppa/fpu/fsetexcptflg.c b/ports/sysdeps/hppa/fpu/fsetexcptflg.c index ef1a90d721..246b66f8a3 100644 --- a/ports/sysdeps/hppa/fpu/fsetexcptflg.c +++ b/ports/sysdeps/hppa/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/fpu/ftestexcept.c b/ports/sysdeps/hppa/fpu/ftestexcept.c index bf57879edd..b8d41b44ef 100644 --- a/ports/sysdeps/hppa/fpu/ftestexcept.c +++ b/ports/sysdeps/hppa/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000 diff --git a/ports/sysdeps/hppa/frame.h b/ports/sysdeps/hppa/frame.h index 135065ff0b..c079fb0aff 100644 --- a/ports/sysdeps/hppa/frame.h +++ b/ports/sysdeps/hppa/frame.h @@ -1,5 +1,5 @@ /* Definition of stack frame structure. HPPA version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/gccframe.h b/ports/sysdeps/hppa/gccframe.h index a55582e00d..b633eaf302 100644 --- a/ports/sysdeps/hppa/gccframe.h +++ b/ports/sysdeps/hppa/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. hppa version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/get-rounding-mode.h b/ports/sysdeps/hppa/get-rounding-mode.h index c5184f9321..ffcd35b3f1 100644 --- a/ports/sysdeps/hppa/get-rounding-mode.h +++ b/ports/sysdeps/hppa/get-rounding-mode.h @@ -1,5 +1,5 @@ /* Determine floating-point rounding mode within libc. HP-PARISC version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/hppa1.1/addmul_1.S b/ports/sysdeps/hppa/hppa1.1/addmul_1.S index 1434979243..666b8ca3c1 100644 --- a/ports/sysdeps/hppa/hppa1.1/addmul_1.S +++ b/ports/sysdeps/hppa/hppa1.1/addmul_1.S @@ -1,7 +1,7 @@ ;! HP-PA-1.1 __mpn_addmul_1 -- Multiply a limb vector with a limb and ;! add the result to a second limb vector. -;! Copyright (C) 1992-2013 Free Software Foundation, Inc. +;! Copyright (C) 1992-2014 Free Software Foundation, Inc. ;! This file is part of the GNU MP Library. diff --git a/ports/sysdeps/hppa/hppa1.1/mul_1.S b/ports/sysdeps/hppa/hppa1.1/mul_1.S index ba419fd335..dc1f7e2adb 100644 --- a/ports/sysdeps/hppa/hppa1.1/mul_1.S +++ b/ports/sysdeps/hppa/hppa1.1/mul_1.S @@ -1,7 +1,7 @@ ;! HP-PA-1.1 __mpn_mul_1 -- Multiply a limb vector with a limb and store ;! the result in a second limb vector. -;! Copyright (C) 1992-2013 Free Software Foundation, Inc. +;! Copyright (C) 1992-2014 Free Software Foundation, Inc. ;! This file is part of the GNU MP Library. diff --git a/ports/sysdeps/hppa/hppa1.1/s_signbit.c b/ports/sysdeps/hppa/hppa1.1/s_signbit.c index 7cc63bab67..12278ea869 100644 --- a/ports/sysdeps/hppa/hppa1.1/s_signbit.c +++ b/ports/sysdeps/hppa/hppa1.1/s_signbit.c @@ -1,5 +1,5 @@ /* Return nonzero value if number is negative. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/hppa/hppa1.1/submul_1.S b/ports/sysdeps/hppa/hppa1.1/submul_1.S index 8cd5a634f8..3b843e7701 100644 --- a/ports/sysdeps/hppa/hppa1.1/submul_1.S +++ b/ports/sysdeps/hppa/hppa1.1/submul_1.S @@ -1,7 +1,7 @@ ;! HP-PA-1.1 __mpn_submul_1 -- Multiply a limb vector with a limb and ;! subtract the result from a second limb vector. -;! Copyright (C) 1992-2013 Free Software Foundation, Inc. +;! Copyright (C) 1992-2014 Free Software Foundation, Inc. ;! This file is part of the GNU MP Library. diff --git a/ports/sysdeps/hppa/hppa1.1/udiv_qrnnd.S b/ports/sysdeps/hppa/hppa1.1/udiv_qrnnd.S index c7fa30f349..6008a62945 100644 --- a/ports/sysdeps/hppa/hppa1.1/udiv_qrnnd.S +++ b/ports/sysdeps/hppa/hppa1.1/udiv_qrnnd.S @@ -1,7 +1,7 @@ ;! HP-PA __udiv_qrnnd division support, used from longlong.h. ;! This version runs fast on PA 7000 and later. -;! Copyright (C) 1993-2013 Free Software Foundation, Inc. +;! Copyright (C) 1993-2014 Free Software Foundation, Inc. ;! This file is part of the GNU MP Library. diff --git a/ports/sysdeps/hppa/jmpbuf-offsets.h b/ports/sysdeps/hppa/jmpbuf-offsets.h index cf2da4c7a1..bed0e0636d 100644 --- a/ports/sysdeps/hppa/jmpbuf-offsets.h +++ b/ports/sysdeps/hppa/jmpbuf-offsets.h @@ -1,5 +1,5 @@ /* Private macros for accessing __jmp_buf contents. HPPA version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/jmpbuf-unwind.h b/ports/sysdeps/hppa/jmpbuf-unwind.h index 6cdfd7986e..2a6788de6c 100644 --- a/ports/sysdeps/hppa/jmpbuf-unwind.h +++ b/ports/sysdeps/hppa/jmpbuf-unwind.h @@ -1,5 +1,5 @@ /* Examine __jmp_buf for unwinding frames. HPPA version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/ldsodefs.h b/ports/sysdeps/hppa/ldsodefs.h index cea22841b8..128f2be25a 100644 --- a/ports/sysdeps/hppa/ldsodefs.h +++ b/ports/sysdeps/hppa/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/libc-tls.c b/ports/sysdeps/hppa/libc-tls.c index 63cdc9fe8e..855227b761 100644 --- a/ports/sysdeps/hppa/libc-tls.c +++ b/ports/sysdeps/hppa/libc-tls.c @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. hppa version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/libgcc-compat.c b/ports/sysdeps/hppa/libgcc-compat.c index fc6c75f393..1a54981dd2 100644 --- a/ports/sysdeps/hppa/libgcc-compat.c +++ b/ports/sysdeps/hppa/libgcc-compat.c @@ -1,5 +1,5 @@ /* pre-.hidden libgcc compatibility - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Randolph Chung diff --git a/ports/sysdeps/hppa/lshift.S b/ports/sysdeps/hppa/lshift.S index 2174720103..f0debff415 100644 --- a/ports/sysdeps/hppa/lshift.S +++ b/ports/sysdeps/hppa/lshift.S @@ -1,6 +1,6 @@ ;! HP-PA __mpn_lshift -- -;! Copyright (C) 1992-2013 Free Software Foundation, Inc. +;! Copyright (C) 1992-2014 Free Software Foundation, Inc. ;! This file is part of the GNU MP Library. diff --git a/ports/sysdeps/hppa/machine-gmon.h b/ports/sysdeps/hppa/machine-gmon.h index dff4b2831e..2f3edc2d9e 100644 --- a/ports/sysdeps/hppa/machine-gmon.h +++ b/ports/sysdeps/hppa/machine-gmon.h @@ -1,5 +1,5 @@ /* Machine-specific calling sequence for `mcount' profiling function. PA-RISC - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/math_private.h b/ports/sysdeps/hppa/math_private.h index 03b0711e06..f7d41417dc 100644 --- a/ports/sysdeps/hppa/math_private.h +++ b/ports/sysdeps/hppa/math_private.h @@ -1,5 +1,5 @@ /* Internal math stuff. HPPA version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/memusage.h b/ports/sysdeps/hppa/memusage.h index e2eb2f91e3..d361356d25 100644 --- a/ports/sysdeps/hppa/memusage.h +++ b/ports/sysdeps/hppa/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/nptl/Makefile b/ports/sysdeps/hppa/nptl/Makefile index fa32936c5e..143850e6c8 100644 --- a/ports/sysdeps/hppa/nptl/Makefile +++ b/ports/sysdeps/hppa/nptl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # # The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/nptl/jmpbuf-unwind.h b/ports/sysdeps/hppa/nptl/jmpbuf-unwind.h index 84b14efcbe..01f5870694 100644 --- a/ports/sysdeps/hppa/nptl/jmpbuf-unwind.h +++ b/ports/sysdeps/hppa/nptl/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/nptl/pthread_spin_init.c b/ports/sysdeps/hppa/nptl/pthread_spin_init.c index c46e00cc89..c83669eb91 100644 --- a/ports/sysdeps/hppa/nptl/pthread_spin_init.c +++ b/ports/sysdeps/hppa/nptl/pthread_spin_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/nptl/pthread_spin_lock.c b/ports/sysdeps/hppa/nptl/pthread_spin_lock.c index cc32b8fd4d..b29fc7cef8 100644 --- a/ports/sysdeps/hppa/nptl/pthread_spin_lock.c +++ b/ports/sysdeps/hppa/nptl/pthread_spin_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/nptl/pthread_spin_unlock.c b/ports/sysdeps/hppa/nptl/pthread_spin_unlock.c index 6b9d79c7b2..5a8aed8e38 100644 --- a/ports/sysdeps/hppa/nptl/pthread_spin_unlock.c +++ b/ports/sysdeps/hppa/nptl/pthread_spin_unlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/nptl/pthreaddef.h b/ports/sysdeps/hppa/nptl/pthreaddef.h index 3dad02eaee..ee8765a6f1 100644 --- a/ports/sysdeps/hppa/nptl/pthreaddef.h +++ b/ports/sysdeps/hppa/nptl/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/nptl/tls.h b/ports/sysdeps/hppa/nptl/tls.h index 14e4705bf0..2880ad3203 100644 --- a/ports/sysdeps/hppa/nptl/tls.h +++ b/ports/sysdeps/hppa/nptl/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. NPTL/hppa version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/nptl/tst-oddstacklimit.c b/ports/sysdeps/hppa/nptl/tst-oddstacklimit.c index 41835b9007..f65dbc8cec 100644 --- a/ports/sysdeps/hppa/nptl/tst-oddstacklimit.c +++ b/ports/sysdeps/hppa/nptl/tst-oddstacklimit.c @@ -1,6 +1,6 @@ /* Test NPTL with stack limit that is not a multiple of the page size. HPPA version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/rshift.S b/ports/sysdeps/hppa/rshift.S index 026fad5af1..2d3561de40 100644 --- a/ports/sysdeps/hppa/rshift.S +++ b/ports/sysdeps/hppa/rshift.S @@ -1,6 +1,6 @@ ;! HP-PA __mpn_rshift -- -;! Copyright (C) 1992-2013 Free Software Foundation, Inc. +;! Copyright (C) 1992-2014 Free Software Foundation, Inc. ;! This file is part of the GNU MP Library. diff --git a/ports/sysdeps/hppa/setjmp.S b/ports/sysdeps/hppa/setjmp.S index 1ec724d744..51904af051 100644 --- a/ports/sysdeps/hppa/setjmp.S +++ b/ports/sysdeps/hppa/setjmp.S @@ -1,5 +1,5 @@ /* setjmp for HPPA. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/stackinfo.h b/ports/sysdeps/hppa/stackinfo.h index 97fc37c505..5d41d85952 100644 --- a/ports/sysdeps/hppa/stackinfo.h +++ b/ports/sysdeps/hppa/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/start.S b/ports/sysdeps/hppa/start.S index df8bad8297..0998270afd 100644 --- a/ports/sysdeps/hppa/start.S +++ b/ports/sysdeps/hppa/start.S @@ -1,5 +1,5 @@ /* ELF startup code for HPPA. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/hppa/sub_n.S b/ports/sysdeps/hppa/sub_n.S index a8521ff9e9..035c4cbbb3 100644 --- a/ports/sysdeps/hppa/sub_n.S +++ b/ports/sysdeps/hppa/sub_n.S @@ -1,7 +1,7 @@ ;! HP-PA __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and ;! store difference in a third limb vector. -;! Copyright (C) 1992-2013 Free Software Foundation, Inc. +;! Copyright (C) 1992-2014 Free Software Foundation, Inc. ;! This file is part of the GNU MP Library. diff --git a/ports/sysdeps/hppa/sysdep.h b/ports/sysdeps/hppa/sysdep.h index 7c9edd42a5..9d4b37b9c6 100644 --- a/ports/sysdeps/hppa/sysdep.h +++ b/ports/sysdeps/hppa/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for HP/PA. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, , August 1999. diff --git a/ports/sysdeps/hppa/tst-audit.h b/ports/sysdeps/hppa/tst-audit.h index 3be065cfb4..e32699054a 100644 --- a/ports/sysdeps/hppa/tst-audit.h +++ b/ports/sysdeps/hppa/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. HP-PARISC version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/hppa/udiv_qrnnd.S b/ports/sysdeps/hppa/udiv_qrnnd.S index 3d287e6572..cf06286b02 100644 --- a/ports/sysdeps/hppa/udiv_qrnnd.S +++ b/ports/sysdeps/hppa/udiv_qrnnd.S @@ -1,7 +1,7 @@ ;! HP-PA __udiv_qrnnd division support, used from longlong.h. ;! This version runs fast on pre-PA7000 CPUs. -;! Copyright (C) 1993-2013 Free Software Foundation, Inc. +;! Copyright (C) 1993-2014 Free Software Foundation, Inc. ;! This file is part of the GNU MP Library. diff --git a/ports/sysdeps/ia64/_mcount.S b/ports/sysdeps/ia64/_mcount.S index e98f8579e6..e009833e4a 100644 --- a/ports/sysdeps/ia64/_mcount.S +++ b/ports/sysdeps/ia64/_mcount.S @@ -1,5 +1,5 @@ /* Machine-specific calling sequence for `mcount' profiling function. ia64 - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by David Mosberger This file is part of the GNU C Library. diff --git a/ports/sysdeps/ia64/bits/atomic.h b/ports/sysdeps/ia64/bits/atomic.h index 643c72b158..766cb4b741 100644 --- a/ports/sysdeps/ia64/bits/atomic.h +++ b/ports/sysdeps/ia64/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/bits/byteswap-16.h b/ports/sysdeps/ia64/bits/byteswap-16.h index d91824e5b2..d55f81b085 100644 --- a/ports/sysdeps/ia64/bits/byteswap-16.h +++ b/ports/sysdeps/ia64/bits/byteswap-16.h @@ -1,5 +1,5 @@ /* Macros to swap the order of bytes in 16-bit integer values. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/bits/byteswap.h b/ports/sysdeps/ia64/bits/byteswap.h index 447cadfe73..c00768eab0 100644 --- a/ports/sysdeps/ia64/bits/byteswap.h +++ b/ports/sysdeps/ia64/bits/byteswap.h @@ -1,5 +1,5 @@ /* Macros to swap the order of bytes in integer values. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/bits/fenv.h b/ports/sysdeps/ia64/bits/fenv.h index 5a0140d4f2..3de41601f2 100644 --- a/ports/sysdeps/ia64/bits/fenv.h +++ b/ports/sysdeps/ia64/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/bits/huge_vall.h b/ports/sysdeps/ia64/bits/huge_vall.h index b25c684cd5..1a526d8fc4 100644 --- a/ports/sysdeps/ia64/bits/huge_vall.h +++ b/ports/sysdeps/ia64/bits/huge_vall.h @@ -1,6 +1,6 @@ /* `HUGE_VALL' constant for ia64 (where it is infinity). Used by and functions for overflow. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/bits/link.h b/ports/sysdeps/ia64/bits/link.h index dc2952e180..acdf47a692 100644 --- a/ports/sysdeps/ia64/bits/link.h +++ b/ports/sysdeps/ia64/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/bits/mathdef.h b/ports/sysdeps/ia64/bits/mathdef.h index 6a5ad81f31..548006dbcd 100644 --- a/ports/sysdeps/ia64/bits/mathdef.h +++ b/ports/sysdeps/ia64/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/bits/xtitypes.h b/ports/sysdeps/ia64/bits/xtitypes.h index 891d8a386e..aaeb2cc2c1 100644 --- a/ports/sysdeps/ia64/bits/xtitypes.h +++ b/ports/sysdeps/ia64/bits/xtitypes.h @@ -1,5 +1,5 @@ /* bits/xtitypes.h -- Define some types used by . IA64 - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/bzero.S b/ports/sysdeps/ia64/bzero.S index 1e8e27fdf8..82a67a9846 100644 --- a/ports/sysdeps/ia64/bzero.S +++ b/ports/sysdeps/ia64/bzero.S @@ -1,6 +1,6 @@ /* Optimized version of the standard bzero() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop for Itanium . Rewritten for McKinley by Sverre Jarp, HP Labs/CERN diff --git a/ports/sysdeps/ia64/crti.S b/ports/sysdeps/ia64/crti.S index be6b77beb6..0615ddecf7 100644 --- a/ports/sysdeps/ia64/crti.S +++ b/ports/sysdeps/ia64/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for IA64. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/crtn.S b/ports/sysdeps/ia64/crtn.S index 866c965f1c..94bcf25298 100644 --- a/ports/sysdeps/ia64/crtn.S +++ b/ports/sysdeps/ia64/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for ARM. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/dl-dtprocnum.h b/ports/sysdeps/ia64/dl-dtprocnum.h index 774120e3fc..93fb05bbab 100644 --- a/ports/sysdeps/ia64/dl-dtprocnum.h +++ b/ports/sysdeps/ia64/dl-dtprocnum.h @@ -1,5 +1,5 @@ /* Configuration of lookup functions. IA-64 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/dl-fptr.h b/ports/sysdeps/ia64/dl-fptr.h index 447c098aff..fea5a9d667 100644 --- a/ports/sysdeps/ia64/dl-fptr.h +++ b/ports/sysdeps/ia64/dl-fptr.h @@ -1,5 +1,5 @@ /* Function descriptors. IA64 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/dl-lookupcfg.h b/ports/sysdeps/ia64/dl-lookupcfg.h index cfaa2520b3..2b0cfe7472 100644 --- a/ports/sysdeps/ia64/dl-lookupcfg.h +++ b/ports/sysdeps/ia64/dl-lookupcfg.h @@ -1,5 +1,5 @@ /* Configuration of lookup functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/dl-machine.h b/ports/sysdeps/ia64/dl-machine.h index 61236378fe..853e6fd349 100644 --- a/ports/sysdeps/ia64/dl-machine.h +++ b/ports/sysdeps/ia64/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. IA-64 version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/dl-sysdep.h b/ports/sysdeps/ia64/dl-sysdep.h index 4302216796..dfcd653383 100644 --- a/ports/sysdeps/ia64/dl-sysdep.h +++ b/ports/sysdeps/ia64/dl-sysdep.h @@ -1,5 +1,5 @@ /* System-specific settings for dynamic linker code. IA-64 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/dl-tls.h b/ports/sysdeps/ia64/dl-tls.h index 07916d3072..0b687fb8bc 100644 --- a/ports/sysdeps/ia64/dl-tls.h +++ b/ports/sysdeps/ia64/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. IA-64 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/dl-trampoline.S b/ports/sysdeps/ia64/dl-trampoline.S index 26031254f8..87b684b656 100644 --- a/ports/sysdeps/ia64/dl-trampoline.S +++ b/ports/sysdeps/ia64/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. ia64 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/fpu/bits/math-finite.h b/ports/sysdeps/ia64/fpu/bits/math-finite.h index f93dbdce06..255138a8de 100644 --- a/ports/sysdeps/ia64/fpu/bits/math-finite.h +++ b/ports/sysdeps/ia64/fpu/bits/math-finite.h @@ -1,5 +1,5 @@ /* Entry points to finite-math-only compiler runs. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/fpu/bits/mathinline.h b/ports/sysdeps/ia64/fpu/bits/mathinline.h index ec61b92183..0656829595 100644 --- a/ports/sysdeps/ia64/fpu/bits/mathinline.h +++ b/ports/sysdeps/ia64/fpu/bits/mathinline.h @@ -1,5 +1,5 @@ /* Inline math functions for ia64. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/fpu/fclrexcpt.c b/ports/sysdeps/ia64/fpu/fclrexcpt.c index bf8a3c6333..32b89316a2 100644 --- a/ports/sysdeps/ia64/fpu/fclrexcpt.c +++ b/ports/sysdeps/ia64/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Christian Boissat , 1999 and Jes Sorensen , 2000 diff --git a/ports/sysdeps/ia64/fpu/fedisblxcpt.c b/ports/sysdeps/ia64/fpu/fedisblxcpt.c index 15efcde032..b28d32fd2b 100644 --- a/ports/sysdeps/ia64/fpu/fedisblxcpt.c +++ b/ports/sysdeps/ia64/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jes Sorensen , 2000. diff --git a/ports/sysdeps/ia64/fpu/feenablxcpt.c b/ports/sysdeps/ia64/fpu/feenablxcpt.c index 84f70a1683..b99a1619b8 100644 --- a/ports/sysdeps/ia64/fpu/feenablxcpt.c +++ b/ports/sysdeps/ia64/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jes Sorensen , 2000. diff --git a/ports/sysdeps/ia64/fpu/fegetenv.c b/ports/sysdeps/ia64/fpu/fegetenv.c index 4507dcd6ea..d337dda0c2 100644 --- a/ports/sysdeps/ia64/fpu/fegetenv.c +++ b/ports/sysdeps/ia64/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Christian Boissat , 1999. diff --git a/ports/sysdeps/ia64/fpu/fegetexcept.c b/ports/sysdeps/ia64/fpu/fegetexcept.c index e32baa7d46..4d85752dc0 100644 --- a/ports/sysdeps/ia64/fpu/fegetexcept.c +++ b/ports/sysdeps/ia64/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get enabled floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jes Sorensen , 2000. diff --git a/ports/sysdeps/ia64/fpu/fegetround.c b/ports/sysdeps/ia64/fpu/fegetround.c index f6dfea7276..7b36acd74e 100644 --- a/ports/sysdeps/ia64/fpu/fegetround.c +++ b/ports/sysdeps/ia64/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Christian Boissat , 1999. diff --git a/ports/sysdeps/ia64/fpu/feholdexcpt.c b/ports/sysdeps/ia64/fpu/feholdexcpt.c index 914f7b92f9..0f3980253e 100644 --- a/ports/sysdeps/ia64/fpu/feholdexcpt.c +++ b/ports/sysdeps/ia64/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Christian Boissat , 1999 diff --git a/ports/sysdeps/ia64/fpu/fesetenv.c b/ports/sysdeps/ia64/fpu/fesetenv.c index f02c8f346f..8d83aacf89 100644 --- a/ports/sysdeps/ia64/fpu/fesetenv.c +++ b/ports/sysdeps/ia64/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jes Sorensen , 2000 diff --git a/ports/sysdeps/ia64/fpu/fesetround.c b/ports/sysdeps/ia64/fpu/fesetround.c index 3180bb772f..4d125ef12a 100644 --- a/ports/sysdeps/ia64/fpu/fesetround.c +++ b/ports/sysdeps/ia64/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Christian Boissat , 1999. diff --git a/ports/sysdeps/ia64/fpu/feupdateenv.c b/ports/sysdeps/ia64/fpu/feupdateenv.c index 0bebdd0a07..23185616fc 100644 --- a/ports/sysdeps/ia64/fpu/feupdateenv.c +++ b/ports/sysdeps/ia64/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Christian Boissat , 1999. diff --git a/ports/sysdeps/ia64/fpu/fgetexcptflg.c b/ports/sysdeps/ia64/fpu/fgetexcptflg.c index 5336a8f79c..3273bd7f97 100644 --- a/ports/sysdeps/ia64/fpu/fgetexcptflg.c +++ b/ports/sysdeps/ia64/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Christian Boissat , 1999. diff --git a/ports/sysdeps/ia64/fpu/fraiseexcpt.c b/ports/sysdeps/ia64/fpu/fraiseexcpt.c index 76c1b7a315..7b70b2efca 100644 --- a/ports/sysdeps/ia64/fpu/fraiseexcpt.c +++ b/ports/sysdeps/ia64/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jes Sorensen , 2000. diff --git a/ports/sysdeps/ia64/fpu/fsetexcptflg.c b/ports/sysdeps/ia64/fpu/fsetexcptflg.c index 171c283a31..888ce0eaef 100644 --- a/ports/sysdeps/ia64/fpu/fsetexcptflg.c +++ b/ports/sysdeps/ia64/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Christian Boissat , 1999. diff --git a/ports/sysdeps/ia64/fpu/ftestexcept.c b/ports/sysdeps/ia64/fpu/ftestexcept.c index 526511e1f4..686bd90cfa 100644 --- a/ports/sysdeps/ia64/fpu/ftestexcept.c +++ b/ports/sysdeps/ia64/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Christian Boissat , 1999. diff --git a/ports/sysdeps/ia64/fpu/get-rounding-mode.h b/ports/sysdeps/ia64/fpu/get-rounding-mode.h index 583fd1d2f2..aae98b5e5b 100644 --- a/ports/sysdeps/ia64/fpu/get-rounding-mode.h +++ b/ports/sysdeps/ia64/fpu/get-rounding-mode.h @@ -1,5 +1,5 @@ /* Return current rounding direction within libc. IA64 version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Christian Boissat , 1999. diff --git a/ports/sysdeps/ia64/fpu/printf_fphex.c b/ports/sysdeps/ia64/fpu/printf_fphex.c index 0698cdad10..b07c76f593 100644 --- a/ports/sysdeps/ia64/fpu/printf_fphex.c +++ b/ports/sysdeps/ia64/fpu/printf_fphex.c @@ -1,5 +1,5 @@ /* Print floating point number in hexadecimal notation according to ISO C99. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/fpu/s_copysign.S b/ports/sysdeps/ia64/fpu/s_copysign.S index c8d74976e8..3ed0068c66 100644 --- a/ports/sysdeps/ia64/fpu/s_copysign.S +++ b/ports/sysdeps/ia64/fpu/s_copysign.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/fpu/s_finite.S b/ports/sysdeps/ia64/fpu/s_finite.S index 43df996fe9..8fa137dbe1 100644 --- a/ports/sysdeps/ia64/fpu/s_finite.S +++ b/ports/sysdeps/ia64/fpu/s_finite.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/fpu/s_fpclassify.S b/ports/sysdeps/ia64/fpu/s_fpclassify.S index dace43bb1a..845841f93b 100644 --- a/ports/sysdeps/ia64/fpu/s_fpclassify.S +++ b/ports/sysdeps/ia64/fpu/s_fpclassify.S @@ -1,5 +1,5 @@ /* Return classification value corresponding to argument. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/fpu/s_isinf.S b/ports/sysdeps/ia64/fpu/s_isinf.S index c8d7b64a91..e659ed065b 100644 --- a/ports/sysdeps/ia64/fpu/s_isinf.S +++ b/ports/sysdeps/ia64/fpu/s_isinf.S @@ -1,5 +1,5 @@ /* Test for inf/-inf - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jes Sorensen , October 2000. diff --git a/ports/sysdeps/ia64/fpu/s_isnan.S b/ports/sysdeps/ia64/fpu/s_isnan.S index 4c2816b4a5..7017e580ae 100644 --- a/ports/sysdeps/ia64/fpu/s_isnan.S +++ b/ports/sysdeps/ia64/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* Test for NaN - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jes Sorensen , October 2000. diff --git a/ports/sysdeps/ia64/fpu/s_signbit.S b/ports/sysdeps/ia64/fpu/s_signbit.S index 55e2076f12..9795701614 100644 --- a/ports/sysdeps/ia64/fpu/s_signbit.S +++ b/ports/sysdeps/ia64/fpu/s_signbit.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/gccframe.h b/ports/sysdeps/ia64/gccframe.h index 80d28015b7..a51b6c4371 100644 --- a/ports/sysdeps/ia64/gccframe.h +++ b/ports/sysdeps/ia64/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. ia64 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/hp-timing.c b/ports/sysdeps/ia64/hp-timing.c index 9052afc48c..7a661cbc9f 100644 --- a/ports/sysdeps/ia64/hp-timing.c +++ b/ports/sysdeps/ia64/hp-timing.c @@ -1,5 +1,5 @@ /* Support for high precision, low overhead timing functions. IA-64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/ports/sysdeps/ia64/hp-timing.h b/ports/sysdeps/ia64/hp-timing.h index 4fdf8c9046..bf97b478c0 100644 --- a/ports/sysdeps/ia64/hp-timing.h +++ b/ports/sysdeps/ia64/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. IA-64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/ports/sysdeps/ia64/htonl.S b/ports/sysdeps/ia64/htonl.S index c34907ea53..0f06658072 100644 --- a/ports/sysdeps/ia64/htonl.S +++ b/ports/sysdeps/ia64/htonl.S @@ -1,5 +1,5 @@ /* Change byte order in 32-bit value. ia64 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Dan Pop diff --git a/ports/sysdeps/ia64/htons.S b/ports/sysdeps/ia64/htons.S index a72af40392..940982f0f1 100644 --- a/ports/sysdeps/ia64/htons.S +++ b/ports/sysdeps/ia64/htons.S @@ -1,5 +1,5 @@ /* Change byte order in 16-bit value. ia64 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Dan Pop diff --git a/ports/sysdeps/ia64/ieee754.h b/ports/sysdeps/ia64/ieee754.h index 9d28b1662f..8850c4450a 100644 --- a/ports/sysdeps/ia64/ieee754.h +++ b/ports/sysdeps/ia64/ieee754.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/jmpbuf-unwind.h b/ports/sysdeps/ia64/jmpbuf-unwind.h index d4cf8ec948..40fd72c960 100644 --- a/ports/sysdeps/ia64/jmpbuf-unwind.h +++ b/ports/sysdeps/ia64/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/ia64/ldsodefs.h b/ports/sysdeps/ia64/ldsodefs.h index 860f7782bb..5c14653c84 100644 --- a/ports/sysdeps/ia64/ldsodefs.h +++ b/ports/sysdeps/ia64/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/libc-tls.c b/ports/sysdeps/ia64/libc-tls.c index c73d92a1a7..d21243899e 100644 --- a/ports/sysdeps/ia64/libc-tls.c +++ b/ports/sysdeps/ia64/libc-tls.c @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. IA-64 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/machine-gmon.h b/ports/sysdeps/ia64/machine-gmon.h index 1555c56c32..579790a046 100644 --- a/ports/sysdeps/ia64/machine-gmon.h +++ b/ports/sysdeps/ia64/machine-gmon.h @@ -1,5 +1,5 @@ /* Machine-specific calling sequence for `mcount' profiling function. IA-64. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/memccpy.S b/ports/sysdeps/ia64/memccpy.S index b6dd26077d..8546319136 100644 --- a/ports/sysdeps/ia64/memccpy.S +++ b/ports/sysdeps/ia64/memccpy.S @@ -1,6 +1,6 @@ /* Optimized version of the memccpy() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/memchr.S b/ports/sysdeps/ia64/memchr.S index 6102644071..602dbf9e5a 100644 --- a/ports/sysdeps/ia64/memchr.S +++ b/ports/sysdeps/ia64/memchr.S @@ -1,6 +1,6 @@ /* Optimized version of the standard memchr() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/memcmp.S b/ports/sysdeps/ia64/memcmp.S index 00118c5a45..5b27fba145 100644 --- a/ports/sysdeps/ia64/memcmp.S +++ b/ports/sysdeps/ia64/memcmp.S @@ -1,6 +1,6 @@ /* Optimized version of the standard memcmp() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/memcpy.S b/ports/sysdeps/ia64/memcpy.S index 41d500a064..c5025b8963 100644 --- a/ports/sysdeps/ia64/memcpy.S +++ b/ports/sysdeps/ia64/memcpy.S @@ -1,6 +1,6 @@ /* Optimized version of the standard memcpy() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop for Itanium . Rewritten for McKinley by Sverre Jarp, HP Labs/CERN diff --git a/ports/sysdeps/ia64/memmove.S b/ports/sysdeps/ia64/memmove.S index 6d01931cde..a6b3c0e5a6 100644 --- a/ports/sysdeps/ia64/memmove.S +++ b/ports/sysdeps/ia64/memmove.S @@ -1,6 +1,6 @@ /* Optimized version of the standard memmove() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/memset.S b/ports/sysdeps/ia64/memset.S index 934c2f62fa..7db47d8ba8 100644 --- a/ports/sysdeps/ia64/memset.S +++ b/ports/sysdeps/ia64/memset.S @@ -1,6 +1,6 @@ /* Optimized version of the standard memset() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop for Itanium . Rewritten for McKinley by Sverre Jarp, HP Labs/CERN diff --git a/ports/sysdeps/ia64/memusage.h b/ports/sysdeps/ia64/memusage.h index 2083868125..460de42e9c 100644 --- a/ports/sysdeps/ia64/memusage.h +++ b/ports/sysdeps/ia64/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/nptl/Makefile b/ports/sysdeps/ia64/nptl/Makefile index 03bc6f4f1c..e11c329d39 100644 --- a/ports/sysdeps/ia64/nptl/Makefile +++ b/ports/sysdeps/ia64/nptl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/nptl/pthread_spin_lock.c b/ports/sysdeps/ia64/nptl/pthread_spin_lock.c index 77f67cfdc6..71268ddc14 100644 --- a/ports/sysdeps/ia64/nptl/pthread_spin_lock.c +++ b/ports/sysdeps/ia64/nptl/pthread_spin_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/ia64/nptl/pthread_spin_trylock.c b/ports/sysdeps/ia64/nptl/pthread_spin_trylock.c index 152b4b40bd..10ae45da33 100644 --- a/ports/sysdeps/ia64/nptl/pthread_spin_trylock.c +++ b/ports/sysdeps/ia64/nptl/pthread_spin_trylock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/ia64/nptl/pthread_spin_unlock.c b/ports/sysdeps/ia64/nptl/pthread_spin_unlock.c index 13419f4372..87358fb614 100644 --- a/ports/sysdeps/ia64/nptl/pthread_spin_unlock.c +++ b/ports/sysdeps/ia64/nptl/pthread_spin_unlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/ia64/nptl/pthreaddef.h b/ports/sysdeps/ia64/nptl/pthreaddef.h index a00d4eb80f..cf4763c268 100644 --- a/ports/sysdeps/ia64/nptl/pthreaddef.h +++ b/ports/sysdeps/ia64/nptl/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/nptl/tls.h b/ports/sysdeps/ia64/nptl/tls.h index 0588229215..279d107d39 100644 --- a/ports/sysdeps/ia64/nptl/tls.h +++ b/ports/sysdeps/ia64/nptl/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. nptl/IA-64 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/sched_cpucount.c b/ports/sysdeps/ia64/sched_cpucount.c index bd6592f1cb..07591c492b 100644 --- a/ports/sysdeps/ia64/sched_cpucount.c +++ b/ports/sysdeps/ia64/sched_cpucount.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/softpipe.h b/ports/sysdeps/ia64/softpipe.h index 0b2f706278..41f003aa37 100644 --- a/ports/sysdeps/ia64/softpipe.h +++ b/ports/sysdeps/ia64/softpipe.h @@ -1,5 +1,5 @@ /* This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/ports/sysdeps/ia64/sotruss-lib.c b/ports/sysdeps/ia64/sotruss-lib.c index 8150c8bef1..b49cc788af 100644 --- a/ports/sysdeps/ia64/sotruss-lib.c +++ b/ports/sysdeps/ia64/sotruss-lib.c @@ -1,5 +1,5 @@ /* Override generic sotruss-lib.c to define actual functions for ia64. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/ia64/stackinfo.h b/ports/sysdeps/ia64/stackinfo.h index f4bd65ff74..ed1400bc6a 100644 --- a/ports/sysdeps/ia64/stackinfo.h +++ b/ports/sysdeps/ia64/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/start.S b/ports/sysdeps/ia64/start.S index ba8fd87ea0..7f80ba18ff 100644 --- a/ports/sysdeps/ia64/start.S +++ b/ports/sysdeps/ia64/start.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jes Sorensen, , April 1999. diff --git a/ports/sysdeps/ia64/strcat.c b/ports/sysdeps/ia64/strcat.c index a4c74bf548..6996f9d30a 100644 --- a/ports/sysdeps/ia64/strcat.c +++ b/ports/sysdeps/ia64/strcat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/strchr.S b/ports/sysdeps/ia64/strchr.S index 029eb5ce1b..ad059499db 100644 --- a/ports/sysdeps/ia64/strchr.S +++ b/ports/sysdeps/ia64/strchr.S @@ -1,6 +1,6 @@ /* Optimized version of the standard strchr() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/strcmp.S b/ports/sysdeps/ia64/strcmp.S index a014865d19..ec31eae682 100644 --- a/ports/sysdeps/ia64/strcmp.S +++ b/ports/sysdeps/ia64/strcmp.S @@ -1,6 +1,6 @@ /* Optimized version of the standard strcmp() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/strcpy.S b/ports/sysdeps/ia64/strcpy.S index 63720d81ee..e0ad967fa2 100644 --- a/ports/sysdeps/ia64/strcpy.S +++ b/ports/sysdeps/ia64/strcpy.S @@ -1,6 +1,6 @@ /* Optimized version of the standard strcpy() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/strlen.S b/ports/sysdeps/ia64/strlen.S index 8de5fb0722..5930af7b32 100644 --- a/ports/sysdeps/ia64/strlen.S +++ b/ports/sysdeps/ia64/strlen.S @@ -1,6 +1,6 @@ /* Optimized version of the standard strlen() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/strncmp.S b/ports/sysdeps/ia64/strncmp.S index 319aa531d6..77c36de1b9 100644 --- a/ports/sysdeps/ia64/strncmp.S +++ b/ports/sysdeps/ia64/strncmp.S @@ -1,6 +1,6 @@ /* Optimized version of the standard strncmp() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/ia64/strncpy.S b/ports/sysdeps/ia64/strncpy.S index 19e2e91172..80f93f185c 100644 --- a/ports/sysdeps/ia64/strncpy.S +++ b/ports/sysdeps/ia64/strncpy.S @@ -1,6 +1,6 @@ /* Optimized version of the standard strncpy() function. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Dan Pop and Jakub Jelinek . diff --git a/ports/sysdeps/ia64/sysdep.h b/ports/sysdeps/ia64/sysdep.h index e1e235e60d..fd28938741 100644 --- a/ports/sysdeps/ia64/sysdep.h +++ b/ports/sysdeps/ia64/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang diff --git a/ports/sysdeps/ia64/tst-audit.h b/ports/sysdeps/ia64/tst-audit.h index 0e2ec3151e..e5a55888b4 100644 --- a/ports/sysdeps/ia64/tst-audit.h +++ b/ports/sysdeps/ia64/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. IA64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/m68k/Makefile b/ports/sysdeps/m68k/Makefile index c5b5318f02..58ebd5ec4a 100644 --- a/ports/sysdeps/m68k/Makefile +++ b/ports/sysdeps/m68k/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1993-2013 Free Software Foundation, Inc. +# Copyright (C) 1993-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/__longjmp.c b/ports/sysdeps/m68k/__longjmp.c index 5421c2db6d..e1f8c8b9f8 100644 --- a/ports/sysdeps/m68k/__longjmp.c +++ b/ports/sysdeps/m68k/__longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/asm-syntax.h b/ports/sysdeps/m68k/asm-syntax.h index 2b221b7154..e162836ba9 100644 --- a/ports/sysdeps/m68k/asm-syntax.h +++ b/ports/sysdeps/m68k/asm-syntax.h @@ -1,5 +1,5 @@ /* Definitions for 68k syntax variations. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Its master source is NOT part of the C library, however. The master source lives in the GNU MP Library. diff --git a/ports/sysdeps/m68k/backtrace.c b/ports/sysdeps/m68k/backtrace.c index decd03c11f..b346420442 100644 --- a/ports/sysdeps/m68k/backtrace.c +++ b/ports/sysdeps/m68k/backtrace.c @@ -1,5 +1,5 @@ /* Return backtrace of current program state. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/bits/byteswap.h b/ports/sysdeps/m68k/bits/byteswap.h index 9f0a7b707a..9e7fd87615 100644 --- a/ports/sysdeps/m68k/bits/byteswap.h +++ b/ports/sysdeps/m68k/bits/byteswap.h @@ -1,5 +1,5 @@ /* Macros to swap the order of bytes in integer values. m68k version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/bits/link.h b/ports/sysdeps/m68k/bits/link.h index 038c4bbe91..f8f32e8865 100644 --- a/ports/sysdeps/m68k/bits/link.h +++ b/ports/sysdeps/m68k/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/bits/setjmp.h b/ports/sysdeps/m68k/bits/setjmp.h index 555211b75f..5588eb4a05 100644 --- a/ports/sysdeps/m68k/bits/setjmp.h +++ b/ports/sysdeps/m68k/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/bsd-_setjmp.c b/ports/sysdeps/m68k/bsd-_setjmp.c index dadf5b8914..e9e728d062 100644 --- a/ports/sysdeps/m68k/bsd-_setjmp.c +++ b/ports/sysdeps/m68k/bsd-_setjmp.c @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. m68k version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/bsd-setjmp.c b/ports/sysdeps/m68k/bsd-setjmp.c index aca413c440..7815532764 100644 --- a/ports/sysdeps/m68k/bsd-setjmp.c +++ b/ports/sysdeps/m68k/bsd-setjmp.c @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. m68k version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/bits/atomic.h b/ports/sysdeps/m68k/coldfire/bits/atomic.h index c5b5073d80..ec0c59a7da 100644 --- a/ports/sysdeps/m68k/coldfire/bits/atomic.h +++ b/ports/sysdeps/m68k/coldfire/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/fpu/bits/mathinline.h b/ports/sysdeps/m68k/coldfire/fpu/bits/mathinline.h index f369155fc2..bfd2bd61e8 100644 --- a/ports/sysdeps/m68k/coldfire/fpu/bits/mathinline.h +++ b/ports/sysdeps/m68k/coldfire/fpu/bits/mathinline.h @@ -1,5 +1,5 @@ /* Inline math functions for Coldfire. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/fpu/e_sqrt.c b/ports/sysdeps/m68k/coldfire/fpu/e_sqrt.c index 7bab8a5e73..5914de6029 100644 --- a/ports/sysdeps/m68k/coldfire/fpu/e_sqrt.c +++ b/ports/sysdeps/m68k/coldfire/fpu/e_sqrt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/fpu/e_sqrtf.c b/ports/sysdeps/m68k/coldfire/fpu/e_sqrtf.c index dce42364ce..7e7448db78 100644 --- a/ports/sysdeps/m68k/coldfire/fpu/e_sqrtf.c +++ b/ports/sysdeps/m68k/coldfire/fpu/e_sqrtf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/fpu/fraiseexcpt.c b/ports/sysdeps/m68k/coldfire/fpu/fraiseexcpt.c index b495a7fdfa..3d75deb6ac 100644 --- a/ports/sysdeps/m68k/coldfire/fpu/fraiseexcpt.c +++ b/ports/sysdeps/m68k/coldfire/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/fpu/s_fabs.c b/ports/sysdeps/m68k/coldfire/fpu/s_fabs.c index 7473962494..dc8d31e872 100644 --- a/ports/sysdeps/m68k/coldfire/fpu/s_fabs.c +++ b/ports/sysdeps/m68k/coldfire/fpu/s_fabs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/fpu/s_fabsf.c b/ports/sysdeps/m68k/coldfire/fpu/s_fabsf.c index 589119d210..29a25ccdad 100644 --- a/ports/sysdeps/m68k/coldfire/fpu/s_fabsf.c +++ b/ports/sysdeps/m68k/coldfire/fpu/s_fabsf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/fpu/s_lrint.c b/ports/sysdeps/m68k/coldfire/fpu/s_lrint.c index f26b39c9e0..7de6b44d30 100644 --- a/ports/sysdeps/m68k/coldfire/fpu/s_lrint.c +++ b/ports/sysdeps/m68k/coldfire/fpu/s_lrint.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/fpu/s_lrintf.c b/ports/sysdeps/m68k/coldfire/fpu/s_lrintf.c index 5cc97b5778..a73dd12a80 100644 --- a/ports/sysdeps/m68k/coldfire/fpu/s_lrintf.c +++ b/ports/sysdeps/m68k/coldfire/fpu/s_lrintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/fpu/s_rint.c b/ports/sysdeps/m68k/coldfire/fpu/s_rint.c index a17a377d2d..a98bb47eb1 100644 --- a/ports/sysdeps/m68k/coldfire/fpu/s_rint.c +++ b/ports/sysdeps/m68k/coldfire/fpu/s_rint.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/fpu/s_rintf.c b/ports/sysdeps/m68k/coldfire/fpu/s_rintf.c index 0469e2adcb..83bf5137e2 100644 --- a/ports/sysdeps/m68k/coldfire/fpu/s_rintf.c +++ b/ports/sysdeps/m68k/coldfire/fpu/s_rintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/coldfire/sysdep.h b/ports/sysdeps/m68k/coldfire/sysdep.h index 1c9735853a..2228481566 100644 --- a/ports/sysdeps/m68k/coldfire/sysdep.h +++ b/ports/sysdeps/m68k/coldfire/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for Coldfire. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/crti.S b/ports/sysdeps/m68k/crti.S index 73e2f0bbd5..75a3ce5f25 100644 --- a/ports/sysdeps/m68k/crti.S +++ b/ports/sysdeps/m68k/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for m68k. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/crtn.S b/ports/sysdeps/m68k/crtn.S index 6a8e30fca6..3938783c1e 100644 --- a/ports/sysdeps/m68k/crtn.S +++ b/ports/sysdeps/m68k/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for m68k. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/dl-machine.h b/ports/sysdeps/m68k/dl-machine.h index acaabc1e1e..3ec9862f8c 100644 --- a/ports/sysdeps/m68k/dl-machine.h +++ b/ports/sysdeps/m68k/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. m68k version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/dl-tls.h b/ports/sysdeps/m68k/dl-tls.h index 379149c5ca..38e958c975 100644 --- a/ports/sysdeps/m68k/dl-tls.h +++ b/ports/sysdeps/m68k/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. M68K version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/m68k/dl-trampoline.S b/ports/sysdeps/m68k/dl-trampoline.S index a4caa67a82..1c1bbf301b 100644 --- a/ports/sysdeps/m68k/dl-trampoline.S +++ b/ports/sysdeps/m68k/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. m68k version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/ffs.c b/ports/sysdeps/m68k/ffs.c index a3c1a0d02b..633c0012cb 100644 --- a/ports/sysdeps/m68k/ffs.c +++ b/ports/sysdeps/m68k/ffs.c @@ -1,7 +1,7 @@ /* ffs -- find first set bit in a word, counted from least significant end. For mc68020, mc68030, mc68040. This file is part of the GNU C Library. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. Contributed by Torbjorn Granlund (tege@sics.se). The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/fpu/bits/fenv.h b/ports/sysdeps/m68k/fpu/bits/fenv.h index bbb3d1d3f1..e16412514f 100644 --- a/ports/sysdeps/m68k/fpu/bits/fenv.h +++ b/ports/sysdeps/m68k/fpu/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/fpu/fclrexcpt.c b/ports/sysdeps/m68k/fpu/fclrexcpt.c index 544c02f592..16836f8f5c 100644 --- a/ports/sysdeps/m68k/fpu/fclrexcpt.c +++ b/ports/sysdeps/m68k/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/fpu/fedisblxcpt.c b/ports/sysdeps/m68k/fpu/fedisblxcpt.c index 996c8d1a61..4916bd6e38 100644 --- a/ports/sysdeps/m68k/fpu/fedisblxcpt.c +++ b/ports/sysdeps/m68k/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab , 2000. diff --git a/ports/sysdeps/m68k/fpu/feenablxcpt.c b/ports/sysdeps/m68k/fpu/feenablxcpt.c index 9149a24cc1..4e7825b034 100644 --- a/ports/sysdeps/m68k/fpu/feenablxcpt.c +++ b/ports/sysdeps/m68k/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab , 2000. diff --git a/ports/sysdeps/m68k/fpu/fegetenv.c b/ports/sysdeps/m68k/fpu/fegetenv.c index 9c5b769dcd..7feac6426f 100644 --- a/ports/sysdeps/m68k/fpu/fegetenv.c +++ b/ports/sysdeps/m68k/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/fpu/fegetexcept.c b/ports/sysdeps/m68k/fpu/fegetexcept.c index 707950d6a7..e3b43d4faf 100644 --- a/ports/sysdeps/m68k/fpu/fegetexcept.c +++ b/ports/sysdeps/m68k/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get enabled floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab , 2000. diff --git a/ports/sysdeps/m68k/fpu/fegetround.c b/ports/sysdeps/m68k/fpu/fegetround.c index 54fa7df896..b4f0802cb3 100644 --- a/ports/sysdeps/m68k/fpu/fegetround.c +++ b/ports/sysdeps/m68k/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/fpu/feholdexcpt.c b/ports/sysdeps/m68k/fpu/feholdexcpt.c index 4aa9fdaa1f..ad9ca0c1f1 100644 --- a/ports/sysdeps/m68k/fpu/feholdexcpt.c +++ b/ports/sysdeps/m68k/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/fpu/fesetenv.c b/ports/sysdeps/m68k/fpu/fesetenv.c index b143515d9a..6d91922dec 100644 --- a/ports/sysdeps/m68k/fpu/fesetenv.c +++ b/ports/sysdeps/m68k/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/fpu/fesetround.c b/ports/sysdeps/m68k/fpu/fesetround.c index 294c49aaf1..0f6d6b17ba 100644 --- a/ports/sysdeps/m68k/fpu/fesetround.c +++ b/ports/sysdeps/m68k/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/fpu/feupdateenv.c b/ports/sysdeps/m68k/fpu/feupdateenv.c index 2e45ce4b9f..3ed7ed00c6 100644 --- a/ports/sysdeps/m68k/fpu/feupdateenv.c +++ b/ports/sysdeps/m68k/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/fpu/fgetexcptflg.c b/ports/sysdeps/m68k/fpu/fgetexcptflg.c index ddcce3338b..b08b996be4 100644 --- a/ports/sysdeps/m68k/fpu/fgetexcptflg.c +++ b/ports/sysdeps/m68k/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/fpu/fsetexcptflg.c b/ports/sysdeps/m68k/fpu/fsetexcptflg.c index ce9d7260cc..8c0c2b0cca 100644 --- a/ports/sysdeps/m68k/fpu/fsetexcptflg.c +++ b/ports/sysdeps/m68k/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/fpu/ftestexcept.c b/ports/sysdeps/m68k/fpu/ftestexcept.c index 654989e2b4..29a7a53c01 100644 --- a/ports/sysdeps/m68k/fpu/ftestexcept.c +++ b/ports/sysdeps/m68k/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/fpu_control.h b/ports/sysdeps/m68k/fpu_control.h index 7b22a95c7f..56189f2d65 100644 --- a/ports/sysdeps/m68k/fpu_control.h +++ b/ports/sysdeps/m68k/fpu_control.h @@ -1,5 +1,5 @@ /* 68k FPU control word definitions. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/gccframe.h b/ports/sysdeps/m68k/gccframe.h index b47c388323..706b61a27b 100644 --- a/ports/sysdeps/m68k/gccframe.h +++ b/ports/sysdeps/m68k/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. m68k version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/jmpbuf-unwind.h b/ports/sysdeps/m68k/jmpbuf-unwind.h index be9e03b9ac..8739abbf95 100644 --- a/ports/sysdeps/m68k/jmpbuf-unwind.h +++ b/ports/sysdeps/m68k/jmpbuf-unwind.h @@ -1,5 +1,5 @@ /* Examine __jmp_buf for unwinding frames. m68k version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/ldsodefs.h b/ports/sysdeps/m68k/ldsodefs.h index 524bf6ea16..b73bf21f08 100644 --- a/ports/sysdeps/m68k/ldsodefs.h +++ b/ports/sysdeps/m68k/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/libc-tls.c b/ports/sysdeps/m68k/libc-tls.c index a809ba9ab7..300efcf98b 100644 --- a/ports/sysdeps/m68k/libc-tls.c +++ b/ports/sysdeps/m68k/libc-tls.c @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. m68k version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/m68k/m680x0/add_n.S b/ports/sysdeps/m68k/m680x0/add_n.S index e3f31edc55..370e993fbb 100644 --- a/ports/sysdeps/m68k/m680x0/add_n.S +++ b/ports/sysdeps/m68k/m680x0/add_n.S @@ -1,7 +1,7 @@ /* mc68020 __mpn_add_n -- Add two limb vectors of the same length > 0 and store sum in a third limb vector. -Copyright (C) 1992-2013 Free Software Foundation, Inc. +Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/m68k/m680x0/bits/huge_vall.h b/ports/sysdeps/m68k/m680x0/bits/huge_vall.h index a8b42a4d7c..f1a1614c35 100644 --- a/ports/sysdeps/m68k/m680x0/bits/huge_vall.h +++ b/ports/sysdeps/m68k/m680x0/bits/huge_vall.h @@ -1,6 +1,6 @@ /* `HUGE_VALL' constant for m68k (where it is infinity). Used by and functions for overflow. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/bits/mathdef.h b/ports/sysdeps/m68k/m680x0/bits/mathdef.h index 63938153b7..c13e53bf31 100644 --- a/ports/sysdeps/m68k/m680x0/bits/mathdef.h +++ b/ports/sysdeps/m68k/m680x0/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/bits/mathinline.h b/ports/sysdeps/m68k/m680x0/fpu/bits/mathinline.h index 0ad5baed01..e609eb5c1b 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/bits/mathinline.h +++ b/ports/sysdeps/m68k/m680x0/fpu/bits/mathinline.h @@ -1,5 +1,5 @@ /* Definitions of inline math functions implemented by the m68881/2. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/e_acos.c b/ports/sysdeps/m68k/m680x0/fpu/e_acos.c index f50799b8f1..c9234b7827 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/e_acos.c +++ b/ports/sysdeps/m68k/m680x0/fpu/e_acos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/e_atan2.c b/ports/sysdeps/m68k/m680x0/fpu/e_atan2.c index 98742d493e..277a7b96a9 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/e_atan2.c +++ b/ports/sysdeps/m68k/m680x0/fpu/e_atan2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/e_fmod.c b/ports/sysdeps/m68k/m680x0/fpu/e_fmod.c index 73703bb1bc..416c29f12a 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/e_fmod.c +++ b/ports/sysdeps/m68k/m680x0/fpu/e_fmod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/e_ilogb.c b/ports/sysdeps/m68k/m680x0/fpu/e_ilogb.c index 9e1ee8c75f..0288ac14e9 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/e_ilogb.c +++ b/ports/sysdeps/m68k/m680x0/fpu/e_ilogb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/e_pow.c b/ports/sysdeps/m68k/m680x0/fpu/e_pow.c index c34d2de402..892a76c66a 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/e_pow.c +++ b/ports/sysdeps/m68k/m680x0/fpu/e_pow.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/e_scalb.c b/ports/sysdeps/m68k/m680x0/fpu/e_scalb.c index bc72c22c48..a1c7761ac9 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/e_scalb.c +++ b/ports/sysdeps/m68k/m680x0/fpu/e_scalb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/ports/sysdeps/m68k/m680x0/fpu/fraiseexcpt.c b/ports/sysdeps/m68k/m680x0/fpu/fraiseexcpt.c index 83c4e4d253..6e41b1425d 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/fraiseexcpt.c +++ b/ports/sysdeps/m68k/m680x0/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/m680x0/fpu/mathimpl.h b/ports/sysdeps/m68k/m680x0/fpu/mathimpl.h index 436e58706e..2b129a86bd 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/mathimpl.h +++ b/ports/sysdeps/m68k/m680x0/fpu/mathimpl.h @@ -1,6 +1,6 @@ /* Definitions of libc internal inline math functions implemented by the m68881/2. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_atan.c b/ports/sysdeps/m68k/m680x0/fpu/s_atan.c index 17a879ec34..c10437e50d 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_atan.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_atan.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_ccosh.c b/ports/sysdeps/m68k/m680x0/fpu/s_ccosh.c index 5d7cf82afa..249516c15d 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_ccosh.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_ccosh.c @@ -1,5 +1,5 @@ /* Complex cosine hyperbole function. m68k fpu version - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_cexp.c b/ports/sysdeps/m68k/m680x0/fpu/s_cexp.c index cc2b6fa18c..79a2ca49c3 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_cexp.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_cexp.c @@ -1,5 +1,5 @@ /* Complex exponential function. m68k fpu version - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_csin.c b/ports/sysdeps/m68k/m680x0/fpu/s_csin.c index c6683e665e..9400adb094 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_csin.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_csin.c @@ -1,5 +1,5 @@ /* Complex sine function. m68k fpu version - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_csinh.c b/ports/sysdeps/m68k/m680x0/fpu/s_csinh.c index 92cfd80266..b5d10e03fd 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_csinh.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_csinh.c @@ -1,5 +1,5 @@ /* Complex sine hyperbole function. m68k fpu version - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_expm1.c b/ports/sysdeps/m68k/m680x0/fpu/s_expm1.c index 8a24a82b3b..341cd160b7 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_expm1.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_expm1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c b/ports/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c index 596651943d..c28decbba1 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c @@ -1,5 +1,5 @@ /* Return classification value corresponding to argument. m68k version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. Fixed for m68k by Andreas Schwab . diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_frexp.c b/ports/sysdeps/m68k/m680x0/fpu/s_frexp.c index ef23fb8b2f..f061b4f9ad 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_frexp.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_frexp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_frexpl.c b/ports/sysdeps/m68k/m680x0/fpu/s_frexpl.c index 649e763430..7fdfe2cf7d 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_frexpl.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_frexpl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_isinf.c b/ports/sysdeps/m68k/m680x0/fpu/s_isinf.c index ce6ddea5fe..43952f7a42 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_isinf.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_isinf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_llrint.c b/ports/sysdeps/m68k/m680x0/fpu/s_llrint.c index 3f8aee3a98..0734ac32ea 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_llrint.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_llrint.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_llrintf.c b/ports/sysdeps/m68k/m680x0/fpu/s_llrintf.c index 471fbcc649..4cd80308bd 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_llrintf.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_llrintf.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_llrintl.c b/ports/sysdeps/m68k/m680x0/fpu/s_llrintl.c index 271705540e..9bd9bf40e0 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_llrintl.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_llrintl.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_lrint.c b/ports/sysdeps/m68k/m680x0/fpu/s_lrint.c index 8b0f0e6b2f..02cb621d6a 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_lrint.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_lrint.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_modf.c b/ports/sysdeps/m68k/m680x0/fpu/s_modf.c index bea0f1afc6..c9360c0ec4 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_modf.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_modf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_remquo.c b/ports/sysdeps/m68k/m680x0/fpu/s_remquo.c index b006521479..95211b8e01 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_remquo.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_remquo.c @@ -1,5 +1,5 @@ /* Compute remainder and a congruent to the quotient. m68k fpu version - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_scalbn.c b/ports/sysdeps/m68k/m680x0/fpu/s_scalbn.c index 37b3a79fbf..c56a9ffe94 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_scalbn.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_scalbn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_sin.c b/ports/sysdeps/m68k/m680x0/fpu/s_sin.c index 30be753103..5768efc8f6 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_sin.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_sin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_sincos.c b/ports/sysdeps/m68k/m680x0/fpu/s_sincos.c index 41b64aad27..68c2327fd9 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_sincos.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_sincos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/lshift.S b/ports/sysdeps/m68k/m680x0/lshift.S index e5e3816380..f7724f4514 100644 --- a/ports/sysdeps/m68k/m680x0/lshift.S +++ b/ports/sysdeps/m68k/m680x0/lshift.S @@ -1,6 +1,6 @@ /* mc68020 __mpn_lshift -- Shift left a low-level natural-number integer. -Copyright (C) 1996-2013 Free Software Foundation, Inc. +Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/m68k/m680x0/m68020/addmul_1.S b/ports/sysdeps/m68k/m680x0/m68020/addmul_1.S index fe651abfd0..5629202104 100644 --- a/ports/sysdeps/m68k/m680x0/m68020/addmul_1.S +++ b/ports/sysdeps/m68k/m680x0/m68020/addmul_1.S @@ -1,7 +1,7 @@ /* mc68020 __mpn_addmul_1 -- Multiply a limb vector with a limb and add the result to a second limb vector. -Copyright (C) 1992-2013 Free Software Foundation, Inc. +Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/m68k/m680x0/m68020/bits/atomic.h b/ports/sysdeps/m68k/m680x0/m68020/bits/atomic.h index 33172fa380..0f081f169a 100644 --- a/ports/sysdeps/m68k/m680x0/m68020/bits/atomic.h +++ b/ports/sysdeps/m68k/m680x0/m68020/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab , 2003. diff --git a/ports/sysdeps/m68k/m680x0/m68020/bits/string.h b/ports/sysdeps/m68k/m680x0/m68020/bits/string.h index 99a22ba662..af6a776e0e 100644 --- a/ports/sysdeps/m68k/m680x0/m68020/bits/string.h +++ b/ports/sysdeps/m68k/m680x0/m68020/bits/string.h @@ -1,5 +1,5 @@ /* Optimized, inlined string functions. m680x0 version, x >= 2. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/m680x0/m68020/mul_1.S b/ports/sysdeps/m68k/m680x0/m68020/mul_1.S index fe3d695937..67822cd1af 100644 --- a/ports/sysdeps/m68k/m680x0/m68020/mul_1.S +++ b/ports/sysdeps/m68k/m680x0/m68020/mul_1.S @@ -1,7 +1,7 @@ /* mc68020 __mpn_mul_1 -- Multiply a limb vector with a limb and store the result in a second limb vector. -Copyright (C) 1992-2013 Free Software Foundation, Inc. +Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/m68k/m680x0/m68020/submul_1.S b/ports/sysdeps/m68k/m680x0/m68020/submul_1.S index ba830f97d8..b7c60d4b89 100644 --- a/ports/sysdeps/m68k/m680x0/m68020/submul_1.S +++ b/ports/sysdeps/m68k/m680x0/m68020/submul_1.S @@ -1,7 +1,7 @@ /* mc68020 __mpn_submul_1 -- Multiply a limb vector with a limb and subtract the result from a second limb vector. -Copyright (C) 1992-2013 Free Software Foundation, Inc. +Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/m68k/m680x0/rshift.S b/ports/sysdeps/m68k/m680x0/rshift.S index 5a2625ba91..e2d335405c 100644 --- a/ports/sysdeps/m68k/m680x0/rshift.S +++ b/ports/sysdeps/m68k/m680x0/rshift.S @@ -1,6 +1,6 @@ /* mc68020 __mpn_rshift -- Shift right a low-level natural-number integer. -Copyright (C) 1996-2013 Free Software Foundation, Inc. +Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/m68k/m680x0/sub_n.S b/ports/sysdeps/m68k/m680x0/sub_n.S index 6e703507b0..6c6d92e6f5 100644 --- a/ports/sysdeps/m68k/m680x0/sub_n.S +++ b/ports/sysdeps/m68k/m680x0/sub_n.S @@ -1,7 +1,7 @@ /* mc68020 __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and store difference in a third limb vector. -Copyright (C) 1992-2013 Free Software Foundation, Inc. +Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/m68k/m680x0/sysdep.h b/ports/sysdeps/m68k/m680x0/sysdep.h index 70a1513043..40526176f1 100644 --- a/ports/sysdeps/m68k/m680x0/sysdep.h +++ b/ports/sysdeps/m68k/m680x0/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for m680x0. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/memchr.S b/ports/sysdeps/m68k/memchr.S index 07b102523d..d031e3284d 100644 --- a/ports/sysdeps/m68k/memchr.S +++ b/ports/sysdeps/m68k/memchr.S @@ -1,7 +1,7 @@ /* memchr (str, ch, n) -- Return pointer to first occurrence of CH in the first N bytes of STR. For Motorola 68000. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/ports/sysdeps/m68k/memcopy.h b/ports/sysdeps/m68k/memcopy.h index bf6a6d7856..3210d4e83e 100644 --- a/ports/sysdeps/m68k/memcopy.h +++ b/ports/sysdeps/m68k/memcopy.h @@ -1,5 +1,5 @@ /* memcopy.h -- definitions for memory copy functions. Motorola 68020 version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/ports/sysdeps/m68k/memusage.h b/ports/sysdeps/m68k/memusage.h index d512ee09bd..c0ca783fae 100644 --- a/ports/sysdeps/m68k/memusage.h +++ b/ports/sysdeps/m68k/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/nptl/Makefile b/ports/sysdeps/m68k/nptl/Makefile index 670b0d7b1f..3a3f7c102b 100644 --- a/ports/sysdeps/m68k/nptl/Makefile +++ b/ports/sysdeps/m68k/nptl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Maxim Kuvyrkov , 2010. # diff --git a/ports/sysdeps/m68k/nptl/pthread_spin_lock.c b/ports/sysdeps/m68k/nptl/pthread_spin_lock.c index fbbe8e41e0..0914b41394 100644 --- a/ports/sysdeps/m68k/nptl/pthread_spin_lock.c +++ b/ports/sysdeps/m68k/nptl/pthread_spin_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/m68k/nptl/pthreaddef.h b/ports/sysdeps/m68k/nptl/pthreaddef.h index a5b6348143..68bf11af14 100644 --- a/ports/sysdeps/m68k/nptl/pthreaddef.h +++ b/ports/sysdeps/m68k/nptl/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/m68k/nptl/tls.h b/ports/sysdeps/m68k/nptl/tls.h index 39f5eb068b..5de079b9d4 100644 --- a/ports/sysdeps/m68k/nptl/tls.h +++ b/ports/sysdeps/m68k/nptl/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. NPTL/m68k version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/m68k/rawmemchr.S b/ports/sysdeps/m68k/rawmemchr.S index 3ea536e52a..8c1cdd3062 100644 --- a/ports/sysdeps/m68k/rawmemchr.S +++ b/ports/sysdeps/m68k/rawmemchr.S @@ -1,6 +1,6 @@ /* rawmemchr (str, ch) -- Return pointer to first occurrence of CH in STR. For Motorola 68000. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/ports/sysdeps/m68k/setjmp.c b/ports/sysdeps/m68k/setjmp.c index 17b366e012..cf742eecd0 100644 --- a/ports/sysdeps/m68k/setjmp.c +++ b/ports/sysdeps/m68k/setjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/sotruss-lib.c b/ports/sysdeps/m68k/sotruss-lib.c index d9e1626713..7d4c72164d 100644 --- a/ports/sysdeps/m68k/sotruss-lib.c +++ b/ports/sysdeps/m68k/sotruss-lib.c @@ -1,5 +1,5 @@ /* Override generic sotruss-lib.c to define actual functions for m68k. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/stackinfo.h b/ports/sysdeps/m68k/stackinfo.h index 5a072fd0d2..7ad911f1a7 100644 --- a/ports/sysdeps/m68k/stackinfo.h +++ b/ports/sysdeps/m68k/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/start.S b/ports/sysdeps/m68k/start.S index c3ceee6fa6..fd33ecdea8 100644 --- a/ports/sysdeps/m68k/start.S +++ b/ports/sysdeps/m68k/start.S @@ -1,5 +1,5 @@ /* Startup code compliant to the ELF m68k ABI. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/strchr.S b/ports/sysdeps/m68k/strchr.S index 3188f81785..a109b31541 100644 --- a/ports/sysdeps/m68k/strchr.S +++ b/ports/sysdeps/m68k/strchr.S @@ -1,6 +1,6 @@ /* strchr (str, ch) -- Return pointer to first occurrence of CH in STR. For Motorola 68000. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/ports/sysdeps/m68k/strchrnul.S b/ports/sysdeps/m68k/strchrnul.S index 7344990f82..f90d7f093e 100644 --- a/ports/sysdeps/m68k/strchrnul.S +++ b/ports/sysdeps/m68k/strchrnul.S @@ -1,7 +1,7 @@ /* strchrnul (str, ch) -- Return pointer to first occurrence of CH in STR or the final NUL byte. For Motorola 68000. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/ports/sysdeps/m68k/sys/ucontext.h b/ports/sysdeps/m68k/sys/ucontext.h index c178220133..6585fe9d40 100644 --- a/ports/sysdeps/m68k/sys/ucontext.h +++ b/ports/sysdeps/m68k/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/sysdep.h b/ports/sysdeps/m68k/sysdep.h index f8ad70e01b..31558decde 100644 --- a/ports/sysdeps/m68k/sysdep.h +++ b/ports/sysdeps/m68k/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for m68k. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/m68k/tls-macros.h b/ports/sysdeps/m68k/tls-macros.h index 353b34957b..84401d234a 100644 --- a/ports/sysdeps/m68k/tls-macros.h +++ b/ports/sysdeps/m68k/tls-macros.h @@ -1,5 +1,5 @@ /* Macros for accessing thread-local storage. m68k version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/m68k/tst-audit.h b/ports/sysdeps/m68k/tst-audit.h index bf8a6349f9..2ef31dcb40 100644 --- a/ports/sysdeps/m68k/tst-audit.h +++ b/ports/sysdeps/m68k/tst-audit.h @@ -1,5 +1,5 @@ /* Definitions for testing PLT entry/exit auditing. m68k version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/m68k/wcpcpy.c b/ports/sysdeps/m68k/wcpcpy.c index fe4f9080bd..55e7c53aac 100644 --- a/ports/sysdeps/m68k/wcpcpy.c +++ b/ports/sysdeps/m68k/wcpcpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/ports/sysdeps/m68k/wcpcpy_chk.c b/ports/sysdeps/m68k/wcpcpy_chk.c index f93d16a3e4..5d2739604b 100644 --- a/ports/sysdeps/m68k/wcpcpy_chk.c +++ b/ports/sysdeps/m68k/wcpcpy_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/ports/sysdeps/microblaze/__longjmp.S b/ports/sysdeps/microblaze/__longjmp.S index a49c33f1cc..dc588ebfe2 100644 --- a/ports/sysdeps/microblaze/__longjmp.S +++ b/ports/sysdeps/microblaze/__longjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/_mcount.S b/ports/sysdeps/microblaze/_mcount.S index 7d4f40aece..b3be87e35d 100644 --- a/ports/sysdeps/microblaze/_mcount.S +++ b/ports/sysdeps/microblaze/_mcount.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/asm-syntax.h b/ports/sysdeps/microblaze/asm-syntax.h index fc8fbcd9cd..1d60e654a1 100644 --- a/ports/sysdeps/microblaze/asm-syntax.h +++ b/ports/sysdeps/microblaze/asm-syntax.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/backtrace.c b/ports/sysdeps/microblaze/backtrace.c index 97a5fdbea4..6b0c617b0f 100644 --- a/ports/sysdeps/microblaze/backtrace.c +++ b/ports/sysdeps/microblaze/backtrace.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/backtrace_linux.c b/ports/sysdeps/microblaze/backtrace_linux.c index 55fa061dcd..309d7ef000 100644 --- a/ports/sysdeps/microblaze/backtrace_linux.c +++ b/ports/sysdeps/microblaze/backtrace_linux.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/bits/atomic.h b/ports/sysdeps/microblaze/bits/atomic.h index 2daaa7e9c2..77004a0284 100644 --- a/ports/sysdeps/microblaze/bits/atomic.h +++ b/ports/sysdeps/microblaze/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/bits/endian.h b/ports/sysdeps/microblaze/bits/endian.h index 174c115b08..49f000c4f7 100644 --- a/ports/sysdeps/microblaze/bits/endian.h +++ b/ports/sysdeps/microblaze/bits/endian.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/bits/fenv.h b/ports/sysdeps/microblaze/bits/fenv.h index 49dd8cd631..7622c258ee 100644 --- a/ports/sysdeps/microblaze/bits/fenv.h +++ b/ports/sysdeps/microblaze/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/microblaze/bits/link.h b/ports/sysdeps/microblaze/bits/link.h index 2b2842a8e8..588206e45d 100644 --- a/ports/sysdeps/microblaze/bits/link.h +++ b/ports/sysdeps/microblaze/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/bits/setjmp.h b/ports/sysdeps/microblaze/bits/setjmp.h index 19f83db75f..e90d6975b8 100644 --- a/ports/sysdeps/microblaze/bits/setjmp.h +++ b/ports/sysdeps/microblaze/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/bsd-_setjmp.S b/ports/sysdeps/microblaze/bsd-_setjmp.S index 22c8d20569..37e55dfe01 100644 --- a/ports/sysdeps/microblaze/bsd-_setjmp.S +++ b/ports/sysdeps/microblaze/bsd-_setjmp.S @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/microblaze/bsd-setjmp.S b/ports/sysdeps/microblaze/bsd-setjmp.S index e25b6cb7c7..58f32f60cf 100644 --- a/ports/sysdeps/microblaze/bsd-setjmp.S +++ b/ports/sysdeps/microblaze/bsd-setjmp.S @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/microblaze/crti.S b/ports/sysdeps/microblaze/crti.S index 19199336d7..9a642027bf 100644 --- a/ports/sysdeps/microblaze/crti.S +++ b/ports/sysdeps/microblaze/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for MicroBlaze. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/microblaze/crtn.S b/ports/sysdeps/microblaze/crtn.S index 83a8237f61..d7cfdc9962 100644 --- a/ports/sysdeps/microblaze/crtn.S +++ b/ports/sysdeps/microblaze/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for MicroBlaze. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/microblaze/dl-machine.h b/ports/sysdeps/microblaze/dl-machine.h index ad1fc3ef37..848e822106 100644 --- a/ports/sysdeps/microblaze/dl-machine.h +++ b/ports/sysdeps/microblaze/dl-machine.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/dl-tls.h b/ports/sysdeps/microblaze/dl-tls.h index 0e7f2e5d99..1ba8c97569 100644 --- a/ports/sysdeps/microblaze/dl-tls.h +++ b/ports/sysdeps/microblaze/dl-tls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/dl-trampoline.S b/ports/sysdeps/microblaze/dl-trampoline.S index f10e22eff6..1cc7c1ab12 100644 --- a/ports/sysdeps/microblaze/dl-trampoline.S +++ b/ports/sysdeps/microblaze/dl-trampoline.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/fegetround.c b/ports/sysdeps/microblaze/fegetround.c index b1039e8651..a2e57ebc2b 100644 --- a/ports/sysdeps/microblaze/fegetround.c +++ b/ports/sysdeps/microblaze/fegetround.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/microblaze/fesetround.c b/ports/sysdeps/microblaze/fesetround.c index 8ca4e5137b..16e2bf20ec 100644 --- a/ports/sysdeps/microblaze/fesetround.c +++ b/ports/sysdeps/microblaze/fesetround.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/microblaze/gccframe.h b/ports/sysdeps/microblaze/gccframe.h index 4561cf2734..9e43785bbd 100644 --- a/ports/sysdeps/microblaze/gccframe.h +++ b/ports/sysdeps/microblaze/gccframe.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/jmpbuf-unwind.h b/ports/sysdeps/microblaze/jmpbuf-unwind.h index 237b035122..e17a0853a1 100644 --- a/ports/sysdeps/microblaze/jmpbuf-unwind.h +++ b/ports/sysdeps/microblaze/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/ldsodefs.h b/ports/sysdeps/microblaze/ldsodefs.h index 74f68e97ac..13d972a7b7 100644 --- a/ports/sysdeps/microblaze/ldsodefs.h +++ b/ports/sysdeps/microblaze/ldsodefs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/libc-tls.c b/ports/sysdeps/microblaze/libc-tls.c index 1dacdca945..81cdad8470 100644 --- a/ports/sysdeps/microblaze/libc-tls.c +++ b/ports/sysdeps/microblaze/libc-tls.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/machine-gmon.h b/ports/sysdeps/microblaze/machine-gmon.h index 0cfaa19e0f..262ad12577 100644 --- a/ports/sysdeps/microblaze/machine-gmon.h +++ b/ports/sysdeps/microblaze/machine-gmon.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/memusage.h b/ports/sysdeps/microblaze/memusage.h index a4974b2187..9e57bdfd4f 100644 --- a/ports/sysdeps/microblaze/memusage.h +++ b/ports/sysdeps/microblaze/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/nptl/Makefile b/ports/sysdeps/microblaze/nptl/Makefile index 3c0521a5a9..f550eb13fb 100644 --- a/ports/sysdeps/microblaze/nptl/Makefile +++ b/ports/sysdeps/microblaze/nptl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 Free Software Foundation, Inc. # # This file is part of the GNU C Library. # diff --git a/ports/sysdeps/microblaze/nptl/pthread_spin_lock.c b/ports/sysdeps/microblaze/nptl/pthread_spin_lock.c index 0d12517de3..490bd43438 100644 --- a/ports/sysdeps/microblaze/nptl/pthread_spin_lock.c +++ b/ports/sysdeps/microblaze/nptl/pthread_spin_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/nptl/pthreaddef.h b/ports/sysdeps/microblaze/nptl/pthreaddef.h index 29d58284c1..37a44c168c 100644 --- a/ports/sysdeps/microblaze/nptl/pthreaddef.h +++ b/ports/sysdeps/microblaze/nptl/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/nptl/tls.h b/ports/sysdeps/microblaze/nptl/tls.h index 9598982cc2..4cfbdd3663 100644 --- a/ports/sysdeps/microblaze/nptl/tls.h +++ b/ports/sysdeps/microblaze/nptl/tls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/setjmp.S b/ports/sysdeps/microblaze/setjmp.S index 4a2bd22ed3..ab501ae549 100644 --- a/ports/sysdeps/microblaze/setjmp.S +++ b/ports/sysdeps/microblaze/setjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/sotruss-lib.c b/ports/sysdeps/microblaze/sotruss-lib.c index 88654880e6..3d79077065 100644 --- a/ports/sysdeps/microblaze/sotruss-lib.c +++ b/ports/sysdeps/microblaze/sotruss-lib.c @@ -1,5 +1,5 @@ /* Override generic sotruss-lib.c to define actual functions for MicroBlaze. - Copyright (C) 2012 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/microblaze/stackinfo.h b/ports/sysdeps/microblaze/stackinfo.h index 542bc6f4df..96d94d92e7 100644 --- a/ports/sysdeps/microblaze/stackinfo.h +++ b/ports/sysdeps/microblaze/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2012 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/start.S b/ports/sysdeps/microblaze/start.S index fbbf3bf36a..729569db90 100644 --- a/ports/sysdeps/microblaze/start.S +++ b/ports/sysdeps/microblaze/start.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2012 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/sysdep.h b/ports/sysdeps/microblaze/sysdep.h index 4fe460735d..a7c9e79a4c 100644 --- a/ports/sysdeps/microblaze/sysdep.h +++ b/ports/sysdeps/microblaze/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2012 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/tls-macros.h b/ports/sysdeps/microblaze/tls-macros.h index df58430bd9..6065b7b62d 100644 --- a/ports/sysdeps/microblaze/tls-macros.h +++ b/ports/sysdeps/microblaze/tls-macros.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2012 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/microblaze/tst-audit.h b/ports/sysdeps/microblaze/tst-audit.h index 90c1b25bae..61e5ad673d 100644 --- a/ports/sysdeps/microblaze/tst-audit.h +++ b/ports/sysdeps/microblaze/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. MicroBlaze version. - Copyright (C) 2012 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/mips/__longjmp.c b/ports/sysdeps/mips/__longjmp.c index d1d7d64dfa..5e6a3537b4 100644 --- a/ports/sysdeps/mips/__longjmp.c +++ b/ports/sysdeps/mips/__longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). diff --git a/ports/sysdeps/mips/add_n.S b/ports/sysdeps/mips/add_n.S index e83fc81707..f7bd0cbc10 100644 --- a/ports/sysdeps/mips/add_n.S +++ b/ports/sysdeps/mips/add_n.S @@ -1,7 +1,7 @@ /* MIPS2 __mpn_add_n -- Add two limb vectors of the same length > 0 and store sum in a third limb vector. -Copyright (C) 1995-2013 Free Software Foundation, Inc. +Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/mips/addmul_1.S b/ports/sysdeps/mips/addmul_1.S index c34580632b..2c4c34bb7c 100644 --- a/ports/sysdeps/mips/addmul_1.S +++ b/ports/sysdeps/mips/addmul_1.S @@ -1,7 +1,7 @@ /* MIPS __mpn_addmul_1 -- Multiply a limb vector with a single limb and add the product to a second limb vector. -Copyright (C) 1995-2013 Free Software Foundation, Inc. +Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/mips/bits/atomic.h b/ports/sysdeps/mips/bits/atomic.h index b31444f575..35b3786789 100644 --- a/ports/sysdeps/mips/bits/atomic.h +++ b/ports/sysdeps/mips/bits/atomic.h @@ -1,5 +1,5 @@ /* Low-level functions for atomic operations. Mips version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/bits/dlfcn.h b/ports/sysdeps/mips/bits/dlfcn.h index 3f82cff92e..405041dbc8 100644 --- a/ports/sysdeps/mips/bits/dlfcn.h +++ b/ports/sysdeps/mips/bits/dlfcn.h @@ -1,5 +1,5 @@ /* System dependent definitions for run-time dynamic loading. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/bits/fenv.h b/ports/sysdeps/mips/bits/fenv.h index 60aa6c0a9c..fcc03682c2 100644 --- a/ports/sysdeps/mips/bits/fenv.h +++ b/ports/sysdeps/mips/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/bits/ipctypes.h b/ports/sysdeps/mips/bits/ipctypes.h index 1f52ef4705..888e9282e8 100644 --- a/ports/sysdeps/mips/bits/ipctypes.h +++ b/ports/sysdeps/mips/bits/ipctypes.h @@ -1,5 +1,5 @@ /* bits/ipctypes.h -- Define some types used by SysV IPC/MSG/SHM. MIPS version - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/bits/link.h b/ports/sysdeps/mips/bits/link.h index b4e5226cb0..4e99e8b673 100644 --- a/ports/sysdeps/mips/bits/link.h +++ b/ports/sysdeps/mips/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/bits/mathdef.h b/ports/sysdeps/mips/bits/mathdef.h index 6168f1873d..0e7f56bc97 100644 --- a/ports/sysdeps/mips/bits/mathdef.h +++ b/ports/sysdeps/mips/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/bits/nan.h b/ports/sysdeps/mips/bits/nan.h index c322523275..80067ea145 100644 --- a/ports/sysdeps/mips/bits/nan.h +++ b/ports/sysdeps/mips/bits/nan.h @@ -1,5 +1,5 @@ /* `NAN' constant for IEEE 754 machines. MIPS version. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/bits/setjmp.h b/ports/sysdeps/mips/bits/setjmp.h index 437848fcb9..b9aaeb0f6b 100644 --- a/ports/sysdeps/mips/bits/setjmp.h +++ b/ports/sysdeps/mips/bits/setjmp.h @@ -1,5 +1,5 @@ /* Define the machine-dependent type `jmp_buf'. MIPS version. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/bits/wordsize.h b/ports/sysdeps/mips/bits/wordsize.h index 11d557ae4e..3f05c7d652 100644 --- a/ports/sysdeps/mips/bits/wordsize.h +++ b/ports/sysdeps/mips/bits/wordsize.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/bsd-_setjmp.S b/ports/sysdeps/mips/bsd-_setjmp.S index 50cce7e725..f623b65feb 100644 --- a/ports/sysdeps/mips/bsd-_setjmp.S +++ b/ports/sysdeps/mips/bsd-_setjmp.S @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. MIPS version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/bsd-setjmp.S b/ports/sysdeps/mips/bsd-setjmp.S index 18e8b0f908..fb18d0e171 100644 --- a/ports/sysdeps/mips/bsd-setjmp.S +++ b/ports/sysdeps/mips/bsd-setjmp.S @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. MIPS version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/dl-dtprocnum.h b/ports/sysdeps/mips/dl-dtprocnum.h index d7a80e90c7..35600bf17d 100644 --- a/ports/sysdeps/mips/dl-dtprocnum.h +++ b/ports/sysdeps/mips/dl-dtprocnum.h @@ -1,5 +1,5 @@ /* Configuration of lookup functions. MIPS version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/dl-lookup.c b/ports/sysdeps/mips/dl-lookup.c index 2b7bf15cde..bda0c522b2 100644 --- a/ports/sysdeps/mips/dl-lookup.c +++ b/ports/sysdeps/mips/dl-lookup.c @@ -1,6 +1,6 @@ /* Look up a symbol in the loaded objects. MIPS/Linux version - special handling of non-PIC undefined symbol rules. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/dl-machine.h b/ports/sysdeps/mips/dl-machine.h index 722c8a0ba8..c2dd915e8b 100644 --- a/ports/sysdeps/mips/dl-machine.h +++ b/ports/sysdeps/mips/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. MIPS version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kazumoto Kojima . diff --git a/ports/sysdeps/mips/dl-procinfo.c b/ports/sysdeps/mips/dl-procinfo.c index 69be221199..4a3dbf3ada 100644 --- a/ports/sysdeps/mips/dl-procinfo.c +++ b/ports/sysdeps/mips/dl-procinfo.c @@ -1,5 +1,5 @@ /* Data for Mips version of processor capability information. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Robert Millan . diff --git a/ports/sysdeps/mips/dl-procinfo.h b/ports/sysdeps/mips/dl-procinfo.h index e96550c402..b2b7702a16 100644 --- a/ports/sysdeps/mips/dl-procinfo.h +++ b/ports/sysdeps/mips/dl-procinfo.h @@ -1,5 +1,5 @@ /* Mips version of processor capability information handling macros. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Robert Millan . diff --git a/ports/sysdeps/mips/dl-tls.h b/ports/sysdeps/mips/dl-tls.h index 84b31ede72..93a6dc050c 100644 --- a/ports/sysdeps/mips/dl-tls.h +++ b/ports/sysdeps/mips/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. MIPS version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/dl-trampoline.c b/ports/sysdeps/mips/dl-trampoline.c index 605e44e181..f565654934 100644 --- a/ports/sysdeps/mips/dl-trampoline.c +++ b/ports/sysdeps/mips/dl-trampoline.c @@ -1,5 +1,5 @@ /* PLT trampoline. MIPS version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kazumoto Kojima . diff --git a/ports/sysdeps/mips/fpregdef.h b/ports/sysdeps/mips/fpregdef.h index 4b443020c5..e643960520 100644 --- a/ports/sysdeps/mips/fpregdef.h +++ b/ports/sysdeps/mips/fpregdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/fpu/e_sqrt.c b/ports/sysdeps/mips/fpu/e_sqrt.c index 26314b0109..ef82f9c620 100644 --- a/ports/sysdeps/mips/fpu/e_sqrt.c +++ b/ports/sysdeps/mips/fpu/e_sqrt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Hartvig Ekner , 2002. diff --git a/ports/sysdeps/mips/fpu/e_sqrtf.c b/ports/sysdeps/mips/fpu/e_sqrtf.c index 0f7bfd94ba..eaa0c979ad 100644 --- a/ports/sysdeps/mips/fpu/e_sqrtf.c +++ b/ports/sysdeps/mips/fpu/e_sqrtf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Hartvig Ekner , 2002. diff --git a/ports/sysdeps/mips/fpu/fclrexcpt.c b/ports/sysdeps/mips/fpu/fclrexcpt.c index 864505e8b1..345827ce06 100644 --- a/ports/sysdeps/mips/fpu/fclrexcpt.c +++ b/ports/sysdeps/mips/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/ports/sysdeps/mips/fpu/fedisblxcpt.c b/ports/sysdeps/mips/fpu/fedisblxcpt.c index 7498c0c27c..ea6cdecde1 100644 --- a/ports/sysdeps/mips/fpu/fedisblxcpt.c +++ b/ports/sysdeps/mips/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2000. diff --git a/ports/sysdeps/mips/fpu/feenablxcpt.c b/ports/sysdeps/mips/fpu/feenablxcpt.c index bca8e3d23e..9db0054372 100644 --- a/ports/sysdeps/mips/fpu/feenablxcpt.c +++ b/ports/sysdeps/mips/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2000. diff --git a/ports/sysdeps/mips/fpu/fegetenv.c b/ports/sysdeps/mips/fpu/fegetenv.c index 1ed8d4bfa4..b87d35f0de 100644 --- a/ports/sysdeps/mips/fpu/fegetenv.c +++ b/ports/sysdeps/mips/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/ports/sysdeps/mips/fpu/fegetexcept.c b/ports/sysdeps/mips/fpu/fegetexcept.c index d9fc134590..9b78f2faac 100644 --- a/ports/sysdeps/mips/fpu/fegetexcept.c +++ b/ports/sysdeps/mips/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get enabled floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2000. diff --git a/ports/sysdeps/mips/fpu/fegetround.c b/ports/sysdeps/mips/fpu/fegetround.c index 011d27f295..21c8a89df5 100644 --- a/ports/sysdeps/mips/fpu/fegetround.c +++ b/ports/sysdeps/mips/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/ports/sysdeps/mips/fpu/feholdexcpt.c b/ports/sysdeps/mips/fpu/feholdexcpt.c index 1fc57187b1..34709b2770 100644 --- a/ports/sysdeps/mips/fpu/feholdexcpt.c +++ b/ports/sysdeps/mips/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2000. diff --git a/ports/sysdeps/mips/fpu/fenv_libc.h b/ports/sysdeps/mips/fpu/fenv_libc.h index be09c8880f..cd0d6a91b8 100644 --- a/ports/sysdeps/mips/fpu/fenv_libc.h +++ b/ports/sysdeps/mips/fpu/fenv_libc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger . diff --git a/ports/sysdeps/mips/fpu/fesetenv.c b/ports/sysdeps/mips/fpu/fesetenv.c index abc9bc0fd3..9125688d28 100644 --- a/ports/sysdeps/mips/fpu/fesetenv.c +++ b/ports/sysdeps/mips/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/ports/sysdeps/mips/fpu/fesetround.c b/ports/sysdeps/mips/fpu/fesetround.c index c6fdd6622f..e2434f1b12 100644 --- a/ports/sysdeps/mips/fpu/fesetround.c +++ b/ports/sysdeps/mips/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/ports/sysdeps/mips/fpu/feupdateenv.c b/ports/sysdeps/mips/fpu/feupdateenv.c index 60528617f9..8b2572d914 100644 --- a/ports/sysdeps/mips/fpu/feupdateenv.c +++ b/ports/sysdeps/mips/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/ports/sysdeps/mips/fpu/fgetexcptflg.c b/ports/sysdeps/mips/fpu/fgetexcptflg.c index 436ba3e3f8..cb459a4c4d 100644 --- a/ports/sysdeps/mips/fpu/fgetexcptflg.c +++ b/ports/sysdeps/mips/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/ports/sysdeps/mips/fpu/fraiseexcpt.c b/ports/sysdeps/mips/fpu/fraiseexcpt.c index afd966ac85..ab84fe1867 100644 --- a/ports/sysdeps/mips/fpu/fraiseexcpt.c +++ b/ports/sysdeps/mips/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2000. diff --git a/ports/sysdeps/mips/fpu/fsetexcptflg.c b/ports/sysdeps/mips/fpu/fsetexcptflg.c index 2b9df3bed2..e061d7850f 100644 --- a/ports/sysdeps/mips/fpu/fsetexcptflg.c +++ b/ports/sysdeps/mips/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Hartvig Ekner , 2002. diff --git a/ports/sysdeps/mips/fpu/ftestexcept.c b/ports/sysdeps/mips/fpu/ftestexcept.c index ee16b90f7f..9459784562 100644 --- a/ports/sysdeps/mips/fpu/ftestexcept.c +++ b/ports/sysdeps/mips/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/ports/sysdeps/mips/fpu_control.h b/ports/sysdeps/mips/fpu_control.h index ee774153f2..57ea319b98 100644 --- a/ports/sysdeps/mips/fpu_control.h +++ b/ports/sysdeps/mips/fpu_control.h @@ -1,5 +1,5 @@ /* FPU control word bits. Mips version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Olaf Flebbe and Ralf Baechle. diff --git a/ports/sysdeps/mips/gccframe.h b/ports/sysdeps/mips/gccframe.h index 9d61627566..10c9be1d7c 100644 --- a/ports/sysdeps/mips/gccframe.h +++ b/ports/sysdeps/mips/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. mips version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/ieee754/ieee754.h b/ports/sysdeps/mips/ieee754/ieee754.h index 3a8b241ac9..d50f282dd1 100644 --- a/ports/sysdeps/mips/ieee754/ieee754.h +++ b/ports/sysdeps/mips/ieee754/ieee754.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/include/sys/asm.h b/ports/sysdeps/mips/include/sys/asm.h index 7b356e12e0..dd090972f4 100644 --- a/ports/sysdeps/mips/include/sys/asm.h +++ b/ports/sysdeps/mips/include/sys/asm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/jmpbuf-unwind.h b/ports/sysdeps/mips/jmpbuf-unwind.h index 0fc3408350..31268207f8 100644 --- a/ports/sysdeps/mips/jmpbuf-unwind.h +++ b/ports/sysdeps/mips/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/ldsodefs.h b/ports/sysdeps/mips/ldsodefs.h index d23283c8f8..a70c565dd6 100644 --- a/ports/sysdeps/mips/ldsodefs.h +++ b/ports/sysdeps/mips/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/libc-tls.c b/ports/sysdeps/mips/libc-tls.c index 8345d1358d..0a8f8962a6 100644 --- a/ports/sysdeps/mips/libc-tls.c +++ b/ports/sysdeps/mips/libc-tls.c @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. MIPS version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/lshift.S b/ports/sysdeps/mips/lshift.S index 402ab13b90..3a86b0f3ab 100644 --- a/ports/sysdeps/mips/lshift.S +++ b/ports/sysdeps/mips/lshift.S @@ -1,6 +1,6 @@ /* MIPS2 __mpn_lshift -- -Copyright (C) 1995-2013 Free Software Foundation, Inc. +Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/mips/machine-gmon.h b/ports/sysdeps/mips/machine-gmon.h index 144c044026..aac1723ef5 100644 --- a/ports/sysdeps/mips/machine-gmon.h +++ b/ports/sysdeps/mips/machine-gmon.h @@ -1,5 +1,5 @@ /* Machine-specific calling sequence for `mcount' profiling function. MIPS - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/math-tests.h b/ports/sysdeps/mips/math-tests.h index d2edd464ba..7be132685b 100644 --- a/ports/sysdeps/mips/math-tests.h +++ b/ports/sysdeps/mips/math-tests.h @@ -1,5 +1,5 @@ /* Configuration for math tests. MIPS version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/math_private.h b/ports/sysdeps/mips/math_private.h index 4f029b0a6c..95f438581b 100644 --- a/ports/sysdeps/mips/math_private.h +++ b/ports/sysdeps/mips/math_private.h @@ -1,5 +1,5 @@ /* Internal math stuff. MIPS version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/memcpy.S b/ports/sysdeps/mips/memcpy.S index c7168476e0..2420f931b2 100644 --- a/ports/sysdeps/mips/memcpy.S +++ b/ports/sysdeps/mips/memcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/memset.S b/ports/sysdeps/mips/memset.S index d30b1f0e64..999148095e 100644 --- a/ports/sysdeps/mips/memset.S +++ b/ports/sysdeps/mips/memset.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/memusage.h b/ports/sysdeps/mips/memusage.h index 56ce54bc1e..caf7baa477 100644 --- a/ports/sysdeps/mips/memusage.h +++ b/ports/sysdeps/mips/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/mips32/crti.S b/ports/sysdeps/mips/mips32/crti.S index 5f3e9ba43d..1daf0daf86 100644 --- a/ports/sysdeps/mips/mips32/crti.S +++ b/ports/sysdeps/mips/mips32/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for MIPS (o32). - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/mips32/crtn.S b/ports/sysdeps/mips/mips32/crtn.S index 42381c5129..61ce363d92 100644 --- a/ports/sysdeps/mips/mips32/crtn.S +++ b/ports/sysdeps/mips/mips32/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for MIPS (o32). - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/mips32/fpu/fpu_control.c b/ports/sysdeps/mips/mips32/fpu/fpu_control.c index cd107c533a..e06ce8be49 100644 --- a/ports/sysdeps/mips/mips32/fpu/fpu_control.c +++ b/ports/sysdeps/mips/mips32/fpu/fpu_control.c @@ -1,5 +1,5 @@ /* FPU control word handling, MIPS version, needed by MIPS16 callers. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/mips64/__longjmp.c b/ports/sysdeps/mips/mips64/__longjmp.c index bffb1137cd..d8697b4e4c 100644 --- a/ports/sysdeps/mips/mips64/__longjmp.c +++ b/ports/sysdeps/mips/mips64/__longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). diff --git a/ports/sysdeps/mips/mips64/add_n.S b/ports/sysdeps/mips/mips64/add_n.S index 020d4af090..6b9c93828b 100644 --- a/ports/sysdeps/mips/mips64/add_n.S +++ b/ports/sysdeps/mips/mips64/add_n.S @@ -1,7 +1,7 @@ /* MIPS3 __mpn_add_n -- Add two limb vectors of the same length > 0 and * store sum in a third limb vector. * - * Copyright (C) 1995-2013 Free Software Foundation, Inc. + * Copyright (C) 1995-2014 Free Software Foundation, Inc. * * This file is part of the GNU MP Library. * diff --git a/ports/sysdeps/mips/mips64/addmul_1.S b/ports/sysdeps/mips/mips64/addmul_1.S index 46729a65d9..57edd4aa76 100644 --- a/ports/sysdeps/mips/mips64/addmul_1.S +++ b/ports/sysdeps/mips/mips64/addmul_1.S @@ -1,7 +1,7 @@ /* MIPS3 __mpn_addmul_1 -- Multiply a limb vector with a single limb and * add the product to a second limb vector. * - * Copyright (C) 1992-2013 Free Software Foundation, Inc. + * Copyright (C) 1992-2014 Free Software Foundation, Inc. * * This file is part of the GNU MP Library. * diff --git a/ports/sysdeps/mips/mips64/bsd-_setjmp.S b/ports/sysdeps/mips/mips64/bsd-_setjmp.S index d0416a70b0..8b4681f15e 100644 --- a/ports/sysdeps/mips/mips64/bsd-_setjmp.S +++ b/ports/sysdeps/mips/mips64/bsd-_setjmp.S @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. MIPS64 version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/mips64/bsd-setjmp.S b/ports/sysdeps/mips/mips64/bsd-setjmp.S index 7203540e7b..0c2c0594ce 100644 --- a/ports/sysdeps/mips/mips64/bsd-setjmp.S +++ b/ports/sysdeps/mips/mips64/bsd-setjmp.S @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. MIPS64 version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/mips64/gmp-mparam.h b/ports/sysdeps/mips/mips64/gmp-mparam.h index cc6bf0e93a..f5b0dda257 100644 --- a/ports/sysdeps/mips/mips64/gmp-mparam.h +++ b/ports/sysdeps/mips/mips64/gmp-mparam.h @@ -1,6 +1,6 @@ /* gmp-mparam.h -- Compiler/machine parameter header file. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/mips/mips64/lshift.S b/ports/sysdeps/mips/mips64/lshift.S index 740408d75a..abaa17f0ce 100644 --- a/ports/sysdeps/mips/mips64/lshift.S +++ b/ports/sysdeps/mips/mips64/lshift.S @@ -1,6 +1,6 @@ /* MIPS3 __mpn_lshift -- * - * Copyright (C) 1995-2013 Free Software Foundation, Inc. + * Copyright (C) 1995-2014 Free Software Foundation, Inc. * * This file is part of the GNU MP Library. * diff --git a/ports/sysdeps/mips/mips64/mul_1.S b/ports/sysdeps/mips/mips64/mul_1.S index e1360658ae..a8d8078114 100644 --- a/ports/sysdeps/mips/mips64/mul_1.S +++ b/ports/sysdeps/mips/mips64/mul_1.S @@ -1,7 +1,7 @@ /* MIPS3 __mpn_mul_1 -- Multiply a limb vector with a single limb and * store the product in a second limb vector. * - * Copyright (C) 1992-2013 Free Software Foundation, Inc. + * Copyright (C) 1992-2014 Free Software Foundation, Inc. * * This file is part of the GNU MP Library. * diff --git a/ports/sysdeps/mips/mips64/n32/crti.S b/ports/sysdeps/mips/mips64/n32/crti.S index ddcc9cc7f5..bb1eb9120f 100644 --- a/ports/sysdeps/mips/mips64/n32/crti.S +++ b/ports/sysdeps/mips/mips64/n32/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for MIPS (n32). - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/mips64/n32/crtn.S b/ports/sysdeps/mips/mips64/n32/crtn.S index 5eb2b4f489..b03761b87c 100644 --- a/ports/sysdeps/mips/mips64/n32/crtn.S +++ b/ports/sysdeps/mips/mips64/n32/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for MIPS (n32). - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/mips64/n64/crti.S b/ports/sysdeps/mips/mips64/n64/crti.S index 0c66d0de6f..5f56ad14fa 100644 --- a/ports/sysdeps/mips/mips64/n64/crti.S +++ b/ports/sysdeps/mips/mips64/n64/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for MIPS (n64). - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/mips64/n64/crtn.S b/ports/sysdeps/mips/mips64/n64/crtn.S index 4c014b711b..c91e2b23f0 100644 --- a/ports/sysdeps/mips/mips64/n64/crtn.S +++ b/ports/sysdeps/mips/mips64/n64/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for MIPS (n64). - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/mips64/rshift.S b/ports/sysdeps/mips/mips64/rshift.S index 0d821f2b79..0815c1a174 100644 --- a/ports/sysdeps/mips/mips64/rshift.S +++ b/ports/sysdeps/mips/mips64/rshift.S @@ -1,6 +1,6 @@ /* MIPS3 __mpn_rshift -- * - * Copyright (C) 1995-2013 Free Software Foundation, Inc. + * Copyright (C) 1995-2014 Free Software Foundation, Inc. * * This file is part of the GNU MP Library. * diff --git a/ports/sysdeps/mips/mips64/setjmp.S b/ports/sysdeps/mips/mips64/setjmp.S index f0aa814c65..2b20e00a14 100644 --- a/ports/sysdeps/mips/mips64/setjmp.S +++ b/ports/sysdeps/mips/mips64/setjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/mips64/setjmp_aux.c b/ports/sysdeps/mips/mips64/setjmp_aux.c index 931830391b..e8c5064c4c 100644 --- a/ports/sysdeps/mips/mips64/setjmp_aux.c +++ b/ports/sysdeps/mips/mips64/setjmp_aux.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). diff --git a/ports/sysdeps/mips/mips64/soft-fp/e_sqrtl.c b/ports/sysdeps/mips/mips64/soft-fp/e_sqrtl.c index caefab47bc..81b3ef77a7 100644 --- a/ports/sysdeps/mips/mips64/soft-fp/e_sqrtl.c +++ b/ports/sysdeps/mips/mips64/soft-fp/e_sqrtl.c @@ -1,5 +1,5 @@ /* long double square root in software floating-point emulation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/ports/sysdeps/mips/mips64/sub_n.S b/ports/sysdeps/mips/mips64/sub_n.S index dd6f691841..23322481de 100644 --- a/ports/sysdeps/mips/mips64/sub_n.S +++ b/ports/sysdeps/mips/mips64/sub_n.S @@ -1,7 +1,7 @@ /* MIPS3 __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and * store difference in a third limb vector. * - * Copyright (C) 1995-2013 Free Software Foundation, Inc. + * Copyright (C) 1995-2014 Free Software Foundation, Inc. * * This file is part of the GNU MP Library. * diff --git a/ports/sysdeps/mips/mips64/submul_1.S b/ports/sysdeps/mips/mips64/submul_1.S index bf5d6ffce0..bf24123bde 100644 --- a/ports/sysdeps/mips/mips64/submul_1.S +++ b/ports/sysdeps/mips/mips64/submul_1.S @@ -1,7 +1,7 @@ /* MIPS3 __mpn_submul_1 -- Multiply a limb vector with a single limb and * subtract the product from a second limb vector. * - * Copyright (C) 1992-2013 Free Software Foundation, Inc. + * Copyright (C) 1992-2014 Free Software Foundation, Inc. * * This file is part of the GNU MP Library. * diff --git a/ports/sysdeps/mips/mul_1.S b/ports/sysdeps/mips/mul_1.S index 05ea372fe7..c2db68a9d4 100644 --- a/ports/sysdeps/mips/mul_1.S +++ b/ports/sysdeps/mips/mul_1.S @@ -1,7 +1,7 @@ /* MIPS __mpn_mul_1 -- Multiply a limb vector with a single limb and store the product in a second limb vector. -Copyright (C) 1995-2013 Free Software Foundation, Inc. +Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/mips/nptl/Makefile b/ports/sysdeps/mips/nptl/Makefile index d60aaf4333..b727197724 100644 --- a/ports/sysdeps/mips/nptl/Makefile +++ b/ports/sysdeps/mips/nptl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # # The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/nptl/pthread_spin_lock.c b/ports/sysdeps/mips/nptl/pthread_spin_lock.c index 4ab5b20344..f3e718c569 100644 --- a/ports/sysdeps/mips/nptl/pthread_spin_lock.c +++ b/ports/sysdeps/mips/nptl/pthread_spin_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/nptl/pthreaddef.h b/ports/sysdeps/mips/nptl/pthreaddef.h index 8ba1e5384d..60f57de0a5 100644 --- a/ports/sysdeps/mips/nptl/pthreaddef.h +++ b/ports/sysdeps/mips/nptl/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/nptl/tls.h b/ports/sysdeps/mips/nptl/tls.h index 2529408f2f..0a8da54146 100644 --- a/ports/sysdeps/mips/nptl/tls.h +++ b/ports/sysdeps/mips/nptl/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. NPTL/MIPS version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/regdef.h b/ports/sysdeps/mips/regdef.h index aeafb93d2a..3e75000d1b 100644 --- a/ports/sysdeps/mips/regdef.h +++ b/ports/sysdeps/mips/regdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ralf Baechle . diff --git a/ports/sysdeps/mips/rshift.S b/ports/sysdeps/mips/rshift.S index 8605cd4983..8d498bbaa0 100644 --- a/ports/sysdeps/mips/rshift.S +++ b/ports/sysdeps/mips/rshift.S @@ -1,6 +1,6 @@ /* MIPS2 __mpn_rshift -- -Copyright (C) 1995-2013 Free Software Foundation, Inc. +Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/mips/setjmp.S b/ports/sysdeps/mips/setjmp.S index f014b73b3f..c7287bc670 100644 --- a/ports/sysdeps/mips/setjmp.S +++ b/ports/sysdeps/mips/setjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/setjmp_aux.c b/ports/sysdeps/mips/setjmp_aux.c index 26715b77d8..0a84d3d328 100644 --- a/ports/sysdeps/mips/setjmp_aux.c +++ b/ports/sysdeps/mips/setjmp_aux.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). diff --git a/ports/sysdeps/mips/sgidefs.h b/ports/sysdeps/mips/sgidefs.h index e9f6c474ec..07b98b1cca 100644 --- a/ports/sysdeps/mips/sgidefs.h +++ b/ports/sysdeps/mips/sgidefs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ralf Baechle . diff --git a/ports/sysdeps/mips/sotruss-lib.c b/ports/sysdeps/mips/sotruss-lib.c index 3a267b1d8e..a1b8247161 100644 --- a/ports/sysdeps/mips/sotruss-lib.c +++ b/ports/sysdeps/mips/sotruss-lib.c @@ -1,5 +1,5 @@ /* Override generic sotruss-lib.c to define actual functions for MIPS. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/stackinfo.h b/ports/sysdeps/mips/stackinfo.h index 82659338fb..ba547bf16a 100644 --- a/ports/sysdeps/mips/stackinfo.h +++ b/ports/sysdeps/mips/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/start.S b/ports/sysdeps/mips/start.S index 75ab477395..a454941e55 100644 --- a/ports/sysdeps/mips/start.S +++ b/ports/sysdeps/mips/start.S @@ -1,5 +1,5 @@ /* Startup code compliant to the ELF Mips ABI. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/sub_n.S b/ports/sysdeps/mips/sub_n.S index 09cdb9b3e0..fe3e5cc8f2 100644 --- a/ports/sysdeps/mips/sub_n.S +++ b/ports/sysdeps/mips/sub_n.S @@ -1,7 +1,7 @@ /* MIPS2 __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and store difference in a third limb vector. -Copyright (C) 1995-2013 Free Software Foundation, Inc. +Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/mips/submul_1.S b/ports/sysdeps/mips/submul_1.S index 4fee744e5c..ce888d49a2 100644 --- a/ports/sysdeps/mips/submul_1.S +++ b/ports/sysdeps/mips/submul_1.S @@ -1,7 +1,7 @@ /* MIPS __mpn_submul_1 -- Multiply a limb vector with a single limb and subtract the product from a second limb vector. -Copyright (C) 1995-2013 Free Software Foundation, Inc. +Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/ports/sysdeps/mips/sys/asm.h b/ports/sysdeps/mips/sys/asm.h index c0ff80ae56..5015cb6bdf 100644 --- a/ports/sysdeps/mips/sys/asm.h +++ b/ports/sysdeps/mips/sys/asm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ralf Baechle . diff --git a/ports/sysdeps/mips/sys/fpregdef.h b/ports/sysdeps/mips/sys/fpregdef.h index 33014080dd..e2dd7f85de 100644 --- a/ports/sysdeps/mips/sys/fpregdef.h +++ b/ports/sysdeps/mips/sys/fpregdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/sys/regdef.h b/ports/sysdeps/mips/sys/regdef.h index 704f9aba22..0c78816d6d 100644 --- a/ports/sysdeps/mips/sys/regdef.h +++ b/ports/sysdeps/mips/sys/regdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ralf Baechle . diff --git a/ports/sysdeps/mips/sys/tas.h b/ports/sysdeps/mips/sys/tas.h index 871818565e..792b473dbe 100644 --- a/ports/sysdeps/mips/sys/tas.h +++ b/ports/sysdeps/mips/sys/tas.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maciej W. Rozycki , 2000. diff --git a/ports/sysdeps/mips/sys/ucontext.h b/ports/sysdeps/mips/sys/ucontext.h index a06a363ec5..52493c6fbe 100644 --- a/ports/sysdeps/mips/sys/ucontext.h +++ b/ports/sysdeps/mips/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/mips/tst-audit.h b/ports/sysdeps/mips/tst-audit.h index 19fe91b65b..407f5e19f3 100644 --- a/ports/sysdeps/mips/tst-audit.h +++ b/ports/sysdeps/mips/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. ARM version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/tile/__longjmp.S b/ports/sysdeps/tile/__longjmp.S index d609463ef9..2edcecc777 100644 --- a/ports/sysdeps/tile/__longjmp.S +++ b/ports/sysdeps/tile/__longjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/__tls_get_addr.S b/ports/sysdeps/tile/__tls_get_addr.S index 6561951d7d..e624fbcd56 100644 --- a/ports/sysdeps/tile/__tls_get_addr.S +++ b/ports/sysdeps/tile/__tls_get_addr.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/_mcount.S b/ports/sysdeps/tile/_mcount.S index d8a88fe181..c3648afec0 100644 --- a/ports/sysdeps/tile/_mcount.S +++ b/ports/sysdeps/tile/_mcount.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by David Mosberger (davidm@cs.arizona.edu). diff --git a/ports/sysdeps/tile/bits/atomic.h b/ports/sysdeps/tile/bits/atomic.h index b807f87160..2cbb086069 100644 --- a/ports/sysdeps/tile/bits/atomic.h +++ b/ports/sysdeps/tile/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/bits/byteswap.h b/ports/sysdeps/tile/bits/byteswap.h index 37604b5ca3..1e1007708b 100644 --- a/ports/sysdeps/tile/bits/byteswap.h +++ b/ports/sysdeps/tile/bits/byteswap.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/bits/fenv.h b/ports/sysdeps/tile/bits/fenv.h index 2fe58d0cd7..b5092c5039 100644 --- a/ports/sysdeps/tile/bits/fenv.h +++ b/ports/sysdeps/tile/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/bits/link.h b/ports/sysdeps/tile/bits/link.h index b8d7b0e915..abc3496030 100644 --- a/ports/sysdeps/tile/bits/link.h +++ b/ports/sysdeps/tile/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/bits/mathdef.h b/ports/sysdeps/tile/bits/mathdef.h index 5681212725..d043b4af5f 100644 --- a/ports/sysdeps/tile/bits/mathdef.h +++ b/ports/sysdeps/tile/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/bits/mathinline.h b/ports/sysdeps/tile/bits/mathinline.h index 2ac905b209..f6f9102a98 100644 --- a/ports/sysdeps/tile/bits/mathinline.h +++ b/ports/sysdeps/tile/bits/mathinline.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/bits/setjmp.h b/ports/sysdeps/tile/bits/setjmp.h index 3ed3613b31..a9ba3b986f 100644 --- a/ports/sysdeps/tile/bits/setjmp.h +++ b/ports/sysdeps/tile/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/bzero.S b/ports/sysdeps/tile/bzero.S index e5bf7c8245..584c955746 100644 --- a/ports/sysdeps/tile/bzero.S +++ b/ports/sysdeps/tile/bzero.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/crti.S b/ports/sysdeps/tile/crti.S index 7e8e559b91..55eb238866 100644 --- a/ports/sysdeps/tile/crti.S +++ b/ports/sysdeps/tile/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for tile. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/tile/crtn.S b/ports/sysdeps/tile/crtn.S index c47e507739..184ef8a665 100644 --- a/ports/sysdeps/tile/crtn.S +++ b/ports/sysdeps/tile/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for tile. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/tile/dl-lookupcfg.h b/ports/sysdeps/tile/dl-lookupcfg.h index 8ba4f7c17c..16c7cd849b 100644 --- a/ports/sysdeps/tile/dl-lookupcfg.h +++ b/ports/sysdeps/tile/dl-lookupcfg.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/dl-machine.h b/ports/sysdeps/tile/dl-machine.h index 05aa2d826c..8a24a92184 100644 --- a/ports/sysdeps/tile/dl-machine.h +++ b/ports/sysdeps/tile/dl-machine.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by by Carl Pederson & Martin Schwidefsky. diff --git a/ports/sysdeps/tile/dl-runtime.c b/ports/sysdeps/tile/dl-runtime.c index 42f0ab3ac2..3bfb830320 100644 --- a/ports/sysdeps/tile/dl-runtime.c +++ b/ports/sysdeps/tile/dl-runtime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/dl-start.S b/ports/sysdeps/tile/dl-start.S index 8abee506e0..d13f6096dc 100644 --- a/ports/sysdeps/tile/dl-start.S +++ b/ports/sysdeps/tile/dl-start.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/dl-tls.c b/ports/sysdeps/tile/dl-tls.c index 3551797185..c98527def8 100644 --- a/ports/sysdeps/tile/dl-tls.c +++ b/ports/sysdeps/tile/dl-tls.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/dl-tls.h b/ports/sysdeps/tile/dl-tls.h index c115018adb..03b9433ad6 100644 --- a/ports/sysdeps/tile/dl-tls.h +++ b/ports/sysdeps/tile/dl-tls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/dl-trampoline.S b/ports/sysdeps/tile/dl-trampoline.S index 771a1969b0..7a4914ef6e 100644 --- a/ports/sysdeps/tile/dl-trampoline.S +++ b/ports/sysdeps/tile/dl-trampoline.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/ffs.c b/ports/sysdeps/tile/ffs.c index eb982a6dd3..3e52f8c6ef 100644 --- a/ports/sysdeps/tile/ffs.c +++ b/ports/sysdeps/tile/ffs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/gccframe.h b/ports/sysdeps/tile/gccframe.h index 290ec0c84f..22a5463eb6 100644 --- a/ports/sysdeps/tile/gccframe.h +++ b/ports/sysdeps/tile/gccframe.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/jmpbuf-offsets.h b/ports/sysdeps/tile/jmpbuf-offsets.h index c6f5be3184..c16175f370 100644 --- a/ports/sysdeps/tile/jmpbuf-offsets.h +++ b/ports/sysdeps/tile/jmpbuf-offsets.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/jmpbuf-unwind.h b/ports/sysdeps/tile/jmpbuf-unwind.h index 8b7462a7d2..3925e905b1 100644 --- a/ports/sysdeps/tile/jmpbuf-unwind.h +++ b/ports/sysdeps/tile/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/tile/ldsodefs.h b/ports/sysdeps/tile/ldsodefs.h index 4efd9fbe86..682d4f2893 100644 --- a/ports/sysdeps/tile/ldsodefs.h +++ b/ports/sysdeps/tile/ldsodefs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/machine-gmon.h b/ports/sysdeps/tile/machine-gmon.h index 77cc2fdc3c..39ea9f472c 100644 --- a/ports/sysdeps/tile/machine-gmon.h +++ b/ports/sysdeps/tile/machine-gmon.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/memcopy.h b/ports/sysdeps/tile/memcopy.h index 86a83473f1..e8326eee66 100644 --- a/ports/sysdeps/tile/memcopy.h +++ b/ports/sysdeps/tile/memcopy.h @@ -1,5 +1,5 @@ /* memcopy.h -- definitions for memory copy functions. Tile version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/tile/nptl/Makefile b/ports/sysdeps/tile/nptl/Makefile index a46692d391..0dea187cf5 100644 --- a/ports/sysdeps/tile/nptl/Makefile +++ b/ports/sysdeps/tile/nptl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/tile/nptl/pthread_spin_lock.c b/ports/sysdeps/tile/nptl/pthread_spin_lock.c index 3333afe738..9414121fb7 100644 --- a/ports/sysdeps/tile/nptl/pthread_spin_lock.c +++ b/ports/sysdeps/tile/nptl/pthread_spin_lock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/nptl/pthread_spin_trylock.c b/ports/sysdeps/tile/nptl/pthread_spin_trylock.c index da694ba2bb..bf96e61a96 100644 --- a/ports/sysdeps/tile/nptl/pthread_spin_trylock.c +++ b/ports/sysdeps/tile/nptl/pthread_spin_trylock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/nptl/pthread_spin_unlock.c b/ports/sysdeps/tile/nptl/pthread_spin_unlock.c index 582012eb21..0c4ac073c9 100644 --- a/ports/sysdeps/tile/nptl/pthread_spin_unlock.c +++ b/ports/sysdeps/tile/nptl/pthread_spin_unlock.c @@ -1,5 +1,5 @@ /* pthread_spin_unlock -- unlock a spin lock. Tile version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/tile/nptl/pthreaddef.h b/ports/sysdeps/tile/nptl/pthreaddef.h index b84749477c..f3997250d2 100644 --- a/ports/sysdeps/tile/nptl/pthreaddef.h +++ b/ports/sysdeps/tile/nptl/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/nptl/tls.h b/ports/sysdeps/tile/nptl/tls.h index 0abd2e7222..d226188fea 100644 --- a/ports/sysdeps/tile/nptl/tls.h +++ b/ports/sysdeps/tile/nptl/tls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/setjmp.S b/ports/sysdeps/tile/setjmp.S index 85195f7c28..a2f34251a0 100644 --- a/ports/sysdeps/tile/setjmp.S +++ b/ports/sysdeps/tile/setjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/sfp-machine.h b/ports/sysdeps/tile/sfp-machine.h index 3ddc4b4c83..ff8beeffa7 100644 --- a/ports/sysdeps/tile/sfp-machine.h +++ b/ports/sysdeps/tile/sfp-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent software floating-point definitions, tile version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/tile/sotruss-lib.c b/ports/sysdeps/tile/sotruss-lib.c index fe13401458..6681770ec5 100644 --- a/ports/sysdeps/tile/sotruss-lib.c +++ b/ports/sysdeps/tile/sotruss-lib.c @@ -1,5 +1,5 @@ /* Override generic sotruss-lib.c to define actual functions for tile. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/tile/stackinfo.h b/ports/sysdeps/tile/stackinfo.h index b805dc309c..45c28a757b 100644 --- a/ports/sysdeps/tile/stackinfo.h +++ b/ports/sysdeps/tile/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/start.S b/ports/sysdeps/tile/start.S index 3e7ec5cccf..49661f21d8 100644 --- a/ports/sysdeps/tile/start.S +++ b/ports/sysdeps/tile/start.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/sysdep.h b/ports/sysdeps/tile/sysdep.h index ebe5414c8d..32aca49ff1 100644 --- a/ports/sysdeps/tile/sysdep.h +++ b/ports/sysdeps/tile/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilegx/bits/atomic.h b/ports/sysdeps/tile/tilegx/bits/atomic.h index 47285c4847..ce12db0216 100644 --- a/ports/sysdeps/tile/tilegx/bits/atomic.h +++ b/ports/sysdeps/tile/tilegx/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilegx/memchr.c b/ports/sysdeps/tile/tilegx/memchr.c index 65b109575b..ee17d9a40a 100644 --- a/ports/sysdeps/tile/tilegx/memchr.c +++ b/ports/sysdeps/tile/tilegx/memchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilegx/memcpy.c b/ports/sysdeps/tile/tilegx/memcpy.c index 396174c97d..5d5df19ef3 100644 --- a/ports/sysdeps/tile/tilegx/memcpy.c +++ b/ports/sysdeps/tile/tilegx/memcpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilegx/memmove.c b/ports/sysdeps/tile/tilegx/memmove.c index acf788bae3..38323cea3d 100644 --- a/ports/sysdeps/tile/tilegx/memmove.c +++ b/ports/sysdeps/tile/tilegx/memmove.c @@ -1,6 +1,6 @@ /* Copy memory to memory until the specified number of bytes has been copied. Overlap is handled correctly. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/tile/tilegx/memset.c b/ports/sysdeps/tile/tilegx/memset.c index f88ec25652..d41b205a3c 100644 --- a/ports/sysdeps/tile/tilegx/memset.c +++ b/ports/sysdeps/tile/tilegx/memset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilegx/memusage.h b/ports/sysdeps/tile/tilegx/memusage.h index a81916c219..7a9e661daf 100644 --- a/ports/sysdeps/tile/tilegx/memusage.h +++ b/ports/sysdeps/tile/tilegx/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilegx/rawmemchr.c b/ports/sysdeps/tile/tilegx/rawmemchr.c index e28510c3cc..bd6d3c7c70 100644 --- a/ports/sysdeps/tile/tilegx/rawmemchr.c +++ b/ports/sysdeps/tile/tilegx/rawmemchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilegx/strchr.c b/ports/sysdeps/tile/tilegx/strchr.c index bd678f5a6e..0ce73ce89d 100644 --- a/ports/sysdeps/tile/tilegx/strchr.c +++ b/ports/sysdeps/tile/tilegx/strchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilegx/strchrnul.c b/ports/sysdeps/tile/tilegx/strchrnul.c index 30b6606343..34c4317417 100644 --- a/ports/sysdeps/tile/tilegx/strchrnul.c +++ b/ports/sysdeps/tile/tilegx/strchrnul.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilegx/string-endian.h b/ports/sysdeps/tile/tilegx/string-endian.h index 69ca5fedf2..0c4d51766d 100644 --- a/ports/sysdeps/tile/tilegx/string-endian.h +++ b/ports/sysdeps/tile/tilegx/string-endian.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilegx/strlen.c b/ports/sysdeps/tile/tilegx/strlen.c index 5de9445eb6..d0c06dc23e 100644 --- a/ports/sysdeps/tile/tilegx/strlen.c +++ b/ports/sysdeps/tile/tilegx/strlen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilegx/strrchr.c b/ports/sysdeps/tile/tilegx/strrchr.c index 8fe8221a4b..f201cfa4fa 100644 --- a/ports/sysdeps/tile/tilegx/strrchr.c +++ b/ports/sysdeps/tile/tilegx/strrchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilepro/bits/atomic.h b/ports/sysdeps/tile/tilepro/bits/atomic.h index fec3e1b484..cbbf64cef1 100644 --- a/ports/sysdeps/tile/tilepro/bits/atomic.h +++ b/ports/sysdeps/tile/tilepro/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilepro/memchr.c b/ports/sysdeps/tile/tilepro/memchr.c index 5437126b07..87e64d2216 100644 --- a/ports/sysdeps/tile/tilepro/memchr.c +++ b/ports/sysdeps/tile/tilepro/memchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilepro/memcpy.S b/ports/sysdeps/tile/tilepro/memcpy.S index fd6c338a9f..1d496a4f2c 100644 --- a/ports/sysdeps/tile/tilepro/memcpy.S +++ b/ports/sysdeps/tile/tilepro/memcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilepro/memset.c b/ports/sysdeps/tile/tilepro/memset.c index 316c42eef2..85d6b810ed 100644 --- a/ports/sysdeps/tile/tilepro/memset.c +++ b/ports/sysdeps/tile/tilepro/memset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilepro/memusage.h b/ports/sysdeps/tile/tilepro/memusage.h index 99a101074f..1ce1a29fbe 100644 --- a/ports/sysdeps/tile/tilepro/memusage.h +++ b/ports/sysdeps/tile/tilepro/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilepro/rawmemchr.c b/ports/sysdeps/tile/tilepro/rawmemchr.c index 3477e9d794..46d9593a7f 100644 --- a/ports/sysdeps/tile/tilepro/rawmemchr.c +++ b/ports/sysdeps/tile/tilepro/rawmemchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilepro/strchr.c b/ports/sysdeps/tile/tilepro/strchr.c index 92ddbf6c8d..ecdbcfe5d1 100644 --- a/ports/sysdeps/tile/tilepro/strchr.c +++ b/ports/sysdeps/tile/tilepro/strchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilepro/strchrnul.c b/ports/sysdeps/tile/tilepro/strchrnul.c index eed43f29b0..2dccfe1908 100644 --- a/ports/sysdeps/tile/tilepro/strchrnul.c +++ b/ports/sysdeps/tile/tilepro/strchrnul.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilepro/strlen.c b/ports/sysdeps/tile/tilepro/strlen.c index 311eecc089..c40ee56c6f 100644 --- a/ports/sysdeps/tile/tilepro/strlen.c +++ b/ports/sysdeps/tile/tilepro/strlen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tilepro/strrchr.c b/ports/sysdeps/tile/tilepro/strrchr.c index 09d62eedda..1c7f5e7014 100644 --- a/ports/sysdeps/tile/tilepro/strrchr.c +++ b/ports/sysdeps/tile/tilepro/strrchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tls-macros.h b/ports/sysdeps/tile/tls-macros.h index d761382fb5..20c924fc5a 100644 --- a/ports/sysdeps/tile/tls-macros.h +++ b/ports/sysdeps/tile/tls-macros.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/tst-audit.h b/ports/sysdeps/tile/tst-audit.h index 7f6d1786bf..e5fe61f9e7 100644 --- a/ports/sysdeps/tile/tst-audit.h +++ b/ports/sysdeps/tile/tst-audit.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/tile/wordcopy.c b/ports/sysdeps/tile/wordcopy.c index 57898a53c1..5ed0e949f6 100644 --- a/ports/sysdeps/tile/wordcopy.c +++ b/ports/sysdeps/tile/wordcopy.c @@ -1,5 +1,5 @@ /* wordcopy.c -- subroutines for memory copy functions. Tile version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/alpha/getegid.S b/ports/sysdeps/unix/alpha/getegid.S index cdf596822f..70e319a26b 100644 --- a/ports/sysdeps/unix/alpha/getegid.S +++ b/ports/sysdeps/unix/alpha/getegid.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/alpha/geteuid.S b/ports/sysdeps/unix/alpha/geteuid.S index 8599cda628..a1010b8040 100644 --- a/ports/sysdeps/unix/alpha/geteuid.S +++ b/ports/sysdeps/unix/alpha/geteuid.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/alpha/getppid.S b/ports/sysdeps/unix/alpha/getppid.S index 2f10b111d2..6e6dc02bd0 100644 --- a/ports/sysdeps/unix/alpha/getppid.S +++ b/ports/sysdeps/unix/alpha/getppid.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/alpha/pipe.S b/ports/sysdeps/unix/alpha/pipe.S index 68eb3398f1..a24c66c0ca 100644 --- a/ports/sysdeps/unix/alpha/pipe.S +++ b/ports/sysdeps/unix/alpha/pipe.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger (davidm@cs.arizona.edu). diff --git a/ports/sysdeps/unix/alpha/sysdep.S b/ports/sysdeps/unix/alpha/sysdep.S index cc5846d12f..a39ee617ce 100644 --- a/ports/sysdeps/unix/alpha/sysdep.S +++ b/ports/sysdeps/unix/alpha/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). diff --git a/ports/sysdeps/unix/alpha/sysdep.h b/ports/sysdeps/unix/alpha/sysdep.h index 150a91906d..7425026241 100644 --- a/ports/sysdeps/unix/alpha/sysdep.h +++ b/ports/sysdeps/unix/alpha/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). diff --git a/ports/sysdeps/unix/am33/sysdep.S b/ports/sysdeps/unix/am33/sysdep.S index c5f0208704..57288cc54a 100644 --- a/ports/sysdeps/unix/am33/sysdep.S +++ b/ports/sysdeps/unix/am33/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . Based on ../i386/sysdep.S. diff --git a/ports/sysdeps/unix/am33/sysdep.h b/ports/sysdeps/unix/am33/sysdep.h index 2184dacf23..f305cb121b 100644 --- a/ports/sysdeps/unix/am33/sysdep.h +++ b/ports/sysdeps/unix/am33/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright 2001-2013 Free Software Foundation, Inc. +/* Copyright 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . Based on ../i386/sysdep.h. diff --git a/ports/sysdeps/unix/arm/sysdep.S b/ports/sysdeps/unix/arm/sysdep.S index d82ad258a0..1a0f093238 100644 --- a/ports/sysdeps/unix/arm/sysdep.S +++ b/ports/sysdeps/unix/arm/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/arm/sysdep.h b/ports/sysdeps/unix/arm/sysdep.h index edbaeff03e..ad069c33de 100644 --- a/ports/sysdeps/unix/arm/sysdep.h +++ b/ports/sysdeps/unix/arm/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/mips/mips32/sysdep.h b/ports/sysdeps/unix/mips/mips32/sysdep.h index 5d96d05c65..1a2431c8ee 100644 --- a/ports/sysdeps/unix/mips/mips32/sysdep.h +++ b/ports/sysdeps/unix/mips/mips32/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). diff --git a/ports/sysdeps/unix/mips/mips64/n32/sysdep.h b/ports/sysdeps/unix/mips/mips64/n32/sysdep.h index c55b95cc2a..a8700271dc 100644 --- a/ports/sysdeps/unix/mips/mips64/n32/sysdep.h +++ b/ports/sysdeps/unix/mips/mips64/n32/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . diff --git a/ports/sysdeps/unix/mips/mips64/n64/sysdep.h b/ports/sysdeps/unix/mips/mips64/n64/sysdep.h index 445e6ff738..ac00289140 100644 --- a/ports/sysdeps/unix/mips/mips64/n64/sysdep.h +++ b/ports/sysdeps/unix/mips/mips64/n64/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . diff --git a/ports/sysdeps/unix/mips/pipe.S b/ports/sysdeps/unix/mips/pipe.S index 9869796932..bed2f75e93 100644 --- a/ports/sysdeps/unix/mips/pipe.S +++ b/ports/sysdeps/unix/mips/pipe.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). diff --git a/ports/sysdeps/unix/mips/sysdep.S b/ports/sysdeps/unix/mips/sysdep.S index f03363870b..4a01c5f63f 100644 --- a/ports/sysdeps/unix/mips/sysdep.S +++ b/ports/sysdeps/unix/mips/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). diff --git a/ports/sysdeps/unix/mips/sysdep.h b/ports/sysdeps/unix/mips/sysdep.h index 4d7667ea9c..d59fac0e8d 100644 --- a/ports/sysdeps/unix/mips/sysdep.h +++ b/ports/sysdeps/unix/mips/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/__read_tp.S b/ports/sysdeps/unix/sysv/linux/aarch64/__read_tp.S index 4147c68214..88d6d7e116 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/__read_tp.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/__read_tp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/bits/fcntl.h b/ports/sysdeps/unix/sysv/linux/aarch64/bits/fcntl.h index 1360f8a838..78e13158bb 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/bits/fcntl.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for the AArch64 Linux ABI. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/bits/libc-vdso.h b/ports/sysdeps/unix/sysv/linux/aarch64/bits/libc-vdso.h index 5f9a4d84a4..31732d4088 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/bits/libc-vdso.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/bits/libc-vdso.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/bits/mman.h b/ports/sysdeps/unix/sysv/linux/aarch64/bits/mman.h index 770607b83e..d730247108 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/bits/mman.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/bits/mman.h @@ -1,6 +1,6 @@ /* Definitions for POSIX memory map interface. Linux/AArch64 version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/clone.S b/ports/sysdeps/unix/sysv/linux/aarch64/clone.S index b359e6e8a3..2ca8021064 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/clone.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/dl-cache.h b/ports/sysdeps/unix/sysv/linux/aarch64/dl-cache.h index 5db24eb5dd..32851d00b2 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/dl-cache.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/dl-cache.h @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/dl-static.c b/ports/sysdeps/unix/sysv/linux/aarch64/dl-static.c index 13b48e9332..3c29c564ef 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/dl-static.c +++ b/ports/sysdeps/unix/sysv/linux/aarch64/dl-static.c @@ -1,5 +1,5 @@ /* Variable initialization. AArch64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/getcontext.S b/ports/sysdeps/unix/sysv/linux/aarch64/getcontext.S index 2ba48044e2..70b2e32431 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/getcontext.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/getcontext.S @@ -1,6 +1,6 @@ /* Save current context. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c b/ports/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c index 4d1ec3b101..267cfae307 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c +++ b/ports/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/init-first.c b/ports/sysdeps/unix/sysv/linux/aarch64/init-first.c index f919de6086..b16bfeb8d9 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/init-first.c +++ b/ports/sysdeps/unix/sysv/linux/aarch64/init-first.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/ioctl.S b/ports/sysdeps/unix/sysv/linux/aarch64/ioctl.S index 2e08cf708c..4443f5a4aa 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/ioctl.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/ioctl.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/kernel-features.h b/ports/sysdeps/unix/sysv/linux/aarch64/kernel-features.h index 980f516bb9..c736eb9c0e 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/kernel-features.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/kernel-features.h @@ -1,7 +1,7 @@ /* Set flags signalling availability of kernel features based on given kernel version number. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/kernel_rt_sigframe.h b/ports/sysdeps/unix/sysv/linux/aarch64/kernel_rt_sigframe.h index 65ec6b84c3..8af31f6335 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/kernel_rt_sigframe.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/kernel_rt_sigframe.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h b/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h index a8edbd14a3..10be19768b 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/ldconfig.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/ldsodefs.h b/ports/sysdeps/unix/sysv/linux/aarch64/ldsodefs.h index 92877e53d1..77942682c1 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/ldsodefs.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. Tile. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/libc-__read_tp.S b/ports/sysdeps/unix/sysv/linux/aarch64/libc-__read_tp.S index b4555d23a8..25615aa579 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/libc-__read_tp.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/libc-__read_tp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/makecontext.c b/ports/sysdeps/unix/sysv/linux/aarch64/makecontext.c index 94116e0bf5..806eab2cf9 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/makecontext.c +++ b/ports/sysdeps/unix/sysv/linux/aarch64/makecontext.c @@ -1,5 +1,5 @@ /* Create new context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/mmap.c b/ports/sysdeps/unix/sysv/linux/aarch64/mmap.c index 9ca3d25eaa..54ecc10fbc 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/mmap.c +++ b/ports/sysdeps/unix/sysv/linux/aarch64/mmap.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h index 3acedb8339..0b01c72de4 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h @@ -1,5 +1,5 @@ /* Minimum guaranteed maximum values for system limits. Linux version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h index 42d759a809..f11eeabb17 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h index 468fae7a04..c865de786d 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/clone.S b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/clone.S index 01c97ab835..281be3b670 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/clone.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c index 237869684a..e5f1e4dcf9 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c +++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/fork.c b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/fork.c index 47fca43d86..79a2ec5861 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/fork.c +++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h index 851c85d753..69a5f278eb 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S index 33a623f2d9..2108347118 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c index 2fb9b859fb..d1b28ff51f 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c +++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h index ea0fe57b36..f6903b5dd8 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S index 7a221fe2eb..cc056085da 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/profil-counter.h b/ports/sysdeps/unix/sysv/linux/aarch64/profil-counter.h index fedb38b806..f89339832c 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/profil-counter.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/profil-counter.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/readelflib.c b/ports/sysdeps/unix/sysv/linux/aarch64/readelflib.c index 5336976b4c..2d8a7f1246 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/readelflib.c +++ b/ports/sysdeps/unix/sysv/linux/aarch64/readelflib.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/setcontext.S b/ports/sysdeps/unix/sysv/linux/aarch64/setcontext.S index ee4aa359ac..d220c41f67 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/setcontext.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/setcontext.S @@ -1,6 +1,6 @@ /* Set current context. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/sigaction.c b/ports/sysdeps/unix/sysv/linux/aarch64/sigaction.c index dbaa2246b7..418207f68d 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/sigaction.c +++ b/ports/sysdeps/unix/sysv/linux/aarch64/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h b/ports/sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h index 42ff38eced..3291fd97e3 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h @@ -1,5 +1,5 @@ /* AArch64 definitions for signal handling calling conventions. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/swapcontext.S b/ports/sysdeps/unix/sysv/linux/aarch64/swapcontext.S index 2b6d432479..deb27fa46c 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/swapcontext.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/swapcontext.S @@ -1,6 +1,6 @@ /* Modify saved context. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/sys/elf.h b/ports/sysdeps/unix/sysv/linux/aarch64/sys/elf.h index f48d33ccc6..b65832f6e5 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/sys/elf.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/sys/elf.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/sys/procfs.h b/ports/sysdeps/unix/sysv/linux/aarch64/sys/procfs.h index 52f5c4ffa7..b02af8ac1a 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/sys/procfs.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h b/ports/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h index 71e1dec11b..c8aff0eaad 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h @@ -1,5 +1,5 @@ /* `ptrace' debugger support interface. Linux version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h b/ports/sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h index 9b41d985f4..476f5debbf 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/sys/user.h b/ports/sysdeps/unix/sysv/linux/aarch64/sys/user.h index ca4dedd882..eceeb389e4 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/sys/user.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/syscall.S b/ports/sysdeps/unix/sysv/linux/aarch64/syscall.S index 3bf6692931..20dd6904a9 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/syscall.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.c b/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.c index f535bcc31f..bfb87c5d4f 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.c +++ b/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.h b/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.h index 9a7b16735c..f3f0ada203 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/ucontext-internal.h b/ports/sysdeps/unix/sysv/linux/aarch64/ucontext-internal.h index 51cbeecbec..8b58114dec 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/ucontext-internal.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/ucontext-internal.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/vfork.S b/ports/sysdeps/unix/sysv/linux/aarch64/vfork.S index 6fcaefa3bb..d9f2c70748 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/aarch64/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/____longjmp_chk.S b/ports/sysdeps/unix/sysv/linux/alpha/____longjmp_chk.S index 4aaddde7dc..d6ca4c1853 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/____longjmp_chk.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/adjtime.c b/ports/sysdeps/unix/sysv/linux/alpha/adjtime.c index c1efb0ae9b..a0cbba3d17 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/adjtime.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/adjtime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/dirent.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/dirent.h index bfa025be39..01b043a7b2 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/dirent.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/dirent.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/epoll.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/epoll.h index e983d506bb..0bbaae1527 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/epoll.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/epoll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/errno.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/errno.h index e4d3d44396..dd2f5bfab4 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/errno.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/errno.h @@ -1,5 +1,5 @@ /* Error constants. Linux/Alpha specific version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/eventfd.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/eventfd.h index b5a7e41cef..2b9b272770 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/eventfd.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/eventfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h index 02c9a7f751..db54cc814b 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/inotify.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/inotify.h index 26bcd43e84..315f09cb2f 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/inotify.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/inotify.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/ioctls.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/ioctls.h index ae4ad477af..24e498edb8 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/ioctls.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/ioctls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/ipc.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/ipc.h index deb3a2b213..8ab80af55c 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/ipc.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/ipc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/mman.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/mman.h index a0d087c1fa..650e5e370b 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/mman.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/Alpha version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/msq.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/msq.h index 415ef21a99..3fd28ff675 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/msq.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/netdb.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/netdb.h index 65f76fd103..2f39d705ff 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/netdb.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/netdb.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/resource.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/resource.h index 46c7b90d13..ac9367fd50 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/resource.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/resource.h @@ -1,5 +1,5 @@ /* Bit values & structures for resource limits. Alpha/Linux version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/sem.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/sem.h index 739cbc415f..6bd5007e84 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/sem.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/shm.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/shm.h index cd9476f4de..78751b00a2 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/shm.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/sigaction.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/sigaction.h index 698ac86be9..9fd37cd198 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/sigaction.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/sigaction.h @@ -1,5 +1,5 @@ /* The proper definitions for Linux/Alpha sigaction. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/siginfo.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/siginfo.h index 49ca826479..9334ab8b5e 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/siginfo.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/siginfo.h @@ -1,5 +1,5 @@ /* siginfo_t, sigevent and constants. Linux/Alpha version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/signalfd.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/signalfd.h index 0d75919bfe..c1b5e97abf 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/signalfd.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/signalfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/signum.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/signum.h index c7debcfa1a..2d8a321c97 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/signum.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/signum.h @@ -1,5 +1,5 @@ /* Signal number definitions. Linux/Alpha version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/sigstack.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/sigstack.h index ee471c0eaa..7c2b7d5830 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/sigstack.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/sigstack.h @@ -1,5 +1,5 @@ /* sigstack, sigaltstack definitions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/socket_type.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/socket_type.h index 68c38af147..69309c8dae 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/socket_type.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/socket_type.h @@ -1,5 +1,5 @@ /* Define enum __socket_type for Linux/Alpha. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/stat.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/stat.h index c34cbca371..ec42d1803d 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/stat.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/statfs.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/statfs.h index b33ad637d1..a3dfe0d04c 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/statfs.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/statfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/termios.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/termios.h index 88d86af3d2..4310585563 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/termios.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/termios.h @@ -1,5 +1,5 @@ /* termios type and macro definitions. Linux version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/timerfd.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/timerfd.h index e40d375954..f7c62e2cbd 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/timerfd.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/timerfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h index a7ba44742e..25615cdca1 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h @@ -1,5 +1,5 @@ /* bits/typesizes.h -- underlying types for *_t. Linux/Alpha version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/wordsize.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/wordsize.h index a2116d9084..6c2191e50d 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/bits/wordsize.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/wordsize.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/brk.S b/ports/sysdeps/unix/sysv/linux/alpha/brk.S index 0eee508d91..b8d658a9d4 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/brk.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/brk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe , 1993. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/clone.S b/ports/sysdeps/unix/sysv/linux/alpha/clone.S index cd69a802b9..c5c3300c47 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/clone.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1996. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/dl-auxv.h b/ports/sysdeps/unix/sysv/linux/alpha/dl-auxv.h index bfd48975cd..f58cf54b02 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/dl-auxv.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/dl-auxv.h @@ -1,5 +1,5 @@ /* Auxiliary vector processing for Linux/Alpha. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/fdatasync.c b/ports/sysdeps/unix/sysv/linux/alpha/fdatasync.c index fdcad0bfbb..747696125b 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/fdatasync.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/fdatasync.c @@ -1,7 +1,7 @@ /* fdatasync -- synchronize at least the data part of a file with the underlying media. Linux version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S b/ports/sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S index 63d3cd5b42..3db92d598b 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/fxstat.c b/ports/sysdeps/unix/sysv/linux/alpha/fxstat.c index b331e57ff1..c02d75e3b8 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/fxstat.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/fxstat.c @@ -1,5 +1,5 @@ /* fxstat using old-style Unix stat system call. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/fxstatat.c b/ports/sysdeps/unix/sysv/linux/alpha/fxstatat.c index 8d366627a3..a7312068e5 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/fxstatat.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/fxstatat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/getcontext.S b/ports/sysdeps/unix/sysv/linux/alpha/getcontext.S index 9dc944a9a7..eb1046a290 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/getcontext.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/getcontext.S @@ -1,5 +1,5 @@ /* Save current context. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/gethostname.c b/ports/sysdeps/unix/sysv/linux/alpha/gethostname.c index 48f3cec9d9..1969c178bb 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/gethostname.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/gethostname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001 diff --git a/ports/sysdeps/unix/sysv/linux/alpha/getsysstats.c b/ports/sysdeps/unix/sysv/linux/alpha/getsysstats.c index 7e1b4ef1d1..0b39d8951d 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/getsysstats.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/getsysstats.c @@ -1,5 +1,5 @@ /* Determine various system internal values, Linux/Alpha version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/unix/sysv/linux/alpha/glob.c b/ports/sysdeps/unix/sysv/linux/alpha/glob.c index cbaf20caeb..47f7d948e4 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/glob.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/glob.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S b/ports/sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S index f0778c1414..d3ea4c207e 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger , 1995. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S b/ports/sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S index 64c11cdcce..8d13d37f00 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger , 1995. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/ioperm.c b/ports/sysdeps/unix/sysv/linux/alpha/ioperm.c index 67e3438b7e..3dc3ae8f65 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/ioperm.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/ioperm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/kernel-features.h b/ports/sysdeps/unix/sysv/linux/alpha/kernel-features.h index 1c6beddf6c..7c38854c70 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/kernel-features.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/kernel-features.h @@ -1,6 +1,6 @@ /* Set flags signalling availability of kernel features based on given kernel version number. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/kernel_termios.h b/ports/sysdeps/unix/sysv/linux/alpha/kernel_termios.h index d26fe9d536..440e4c569a 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/kernel_termios.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/kernel_termios.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/lxstat.c b/ports/sysdeps/unix/sysv/linux/alpha/lxstat.c index 73fe1f93b7..7ecac5709a 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/lxstat.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/lxstat.c @@ -1,5 +1,5 @@ /* lxstat using old-style Unix stat system call. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/makecontext.S b/ports/sysdeps/unix/sysv/linux/alpha/makecontext.S index 8b4ed528e3..40ffd2089d 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/makecontext.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/makecontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/msgctl.c b/ports/sysdeps/unix/sysv/linux/alpha/msgctl.c index dbd03c1b2c..a0b6cb4372 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/msgctl.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/msgctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h b/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h index 57c7796c2c..950273e063 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h @@ -1,5 +1,5 @@ /* Minimum guaranteed maximum values for system limits. Linux/Alpha version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h b/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h index 2ce047454d..6f85eae5b0 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h @@ -1,5 +1,5 @@ /* Machine-specific pthread type layouts. Alpha version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h b/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h index bfa51497fe..4e30f94c96 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h @@ -1,5 +1,5 @@ /* Machine-specific POSIX semaphore type layouts. Alpha version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/createthread.c b/ports/sysdeps/unix/sysv/linux/alpha/nptl/createthread.c index c99eb00a40..9e88ae992a 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/createthread.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/fork.c b/ports/sysdeps/unix/sysv/linux/alpha/nptl/fork.c index ed4132b873..72ea3ccd99 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/fork.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h b/ports/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h index 567f8ab8c2..361bd342f1 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S b/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S index 50b152d0cb..769826e918 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c b/ports/sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c index 8f6dee137f..ab4d54742b 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h b/ports/sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h index 801b86e881..610b583b4a 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S b/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S index 03aa37f43c..083b341e3a 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/nptl/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/oldglob.c b/ports/sysdeps/unix/sysv/linux/alpha/oldglob.c index c03ad147e0..82c097e692 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/oldglob.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/oldglob.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/register-dump.h b/ports/sysdeps/unix/sysv/linux/alpha/register-dump.h index 216f54788d..3afde519bd 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/register-dump.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/rt_sigaction.S b/ports/sysdeps/unix/sysv/linux/alpha/rt_sigaction.S index 6efa7386d5..2cde160ec3 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/rt_sigaction.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/rt_sigaction.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1998 diff --git a/ports/sysdeps/unix/sysv/linux/alpha/semctl.c b/ports/sysdeps/unix/sysv/linux/alpha/semctl.c index 31278a06cf..a45863bd82 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/semctl.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/semctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/setcontext.S b/ports/sysdeps/unix/sysv/linux/alpha/setcontext.S index 2bf697e748..5a64e952c8 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/setcontext.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/setcontext.S @@ -1,5 +1,5 @@ /* Install given context. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/setfpucw.c b/ports/sysdeps/unix/sysv/linux/alpha/setfpucw.c index c3d92f1edf..5e5a352119 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/setfpucw.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/setfpucw.c @@ -1,5 +1,5 @@ /* Set FP exception mask and rounding mode. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/shmctl.c b/ports/sysdeps/unix/sysv/linux/alpha/shmctl.c index f2217a2b5a..eed4c8dcef 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/shmctl.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/shmctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sigaction.c b/ports/sysdeps/unix/sysv/linux/alpha/sigaction.c index ad3860dfc0..38242c6a7f 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sigaction.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h b/ports/sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h index 6b82a8e9e5..211dc1dbaa 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sigprocmask.c b/ports/sysdeps/unix/sysv/linux/alpha/sigprocmask.c index 3de5aa3488..a6abaf9577 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sigprocmask.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/sigprocmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger (davidm@azstarnet.com). diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sigsuspend.S b/ports/sysdeps/unix/sysv/linux/alpha/sigsuspend.S index 69a32e9065..aa5e6c67d5 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sigsuspend.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/sigsuspend.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger , 1995. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sizes.h b/ports/sysdeps/unix/sysv/linux/alpha/sizes.h index b358434e92..6eb358189c 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sizes.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/sizes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/swapcontext.S b/ports/sysdeps/unix/sysv/linux/alpha/swapcontext.S index f63b063bd1..fd202a4201 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/swapcontext.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/swapcontext.S @@ -1,5 +1,5 @@ /* Save current context and install the given one. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sys/acct.h b/ports/sysdeps/unix/sysv/linux/alpha/sys/acct.h index 77d5049dcf..5e647d8601 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sys/acct.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/sys/acct.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sys/io.h b/ports/sysdeps/unix/sysv/linux/alpha/sys/io.h index 6793790542..a3b94fa9ec 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sys/io.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/sys/io.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sys/procfs.h b/ports/sysdeps/unix/sysv/linux/alpha/sys/procfs.h index 2fbaffd61b..916ab764ad 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sys/procfs.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sys/ucontext.h b/ports/sysdeps/unix/sysv/linux/alpha/sys/ucontext.h index da515c4bc5..43c6b1a262 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sys/ucontext.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sys/user.h b/ports/sysdeps/unix/sysv/linux/alpha/sys/user.h index deea93ae47..42bb2e6d44 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sys/user.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/syscall.S b/ports/sysdeps/unix/sysv/linux/alpha/syscall.S index f4161fe2ed..b0088e5eca 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/syscall.S +++ b/ports/sysdeps/unix/sysv/linux/alpha/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger , 1996. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sysconf.c b/ports/sysdeps/unix/sysv/linux/alpha/sysconf.c index 40e6d01897..467c5bb5f2 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sysconf.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/sysconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/sysdep.h b/ports/sysdeps/unix/sysv/linux/alpha/sysdep.h index 9b913ea4ac..1826093e05 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, , August 1995. diff --git a/ports/sysdeps/unix/sysv/linux/alpha/xstat.c b/ports/sysdeps/unix/sysv/linux/alpha/xstat.c index bd171f6eb5..849734925f 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/xstat.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/xstat.c @@ -1,5 +1,5 @@ /* xstat using old-style Unix stat system call. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/xstatconv.c b/ports/sysdeps/unix/sysv/linux/alpha/xstatconv.c index 4e7e78b98f..55a601e086 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/xstatconv.c +++ b/ports/sysdeps/unix/sysv/linux/alpha/xstatconv.c @@ -1,5 +1,5 @@ /* Convert between the kernel's `struct stat' format, and libc's. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/alpha/xstatconv.h b/ports/sysdeps/unix/sysv/linux/alpha/xstatconv.h index 78ea01be3a..9b259778f6 100644 --- a/ports/sysdeps/unix/sysv/linux/alpha/xstatconv.h +++ b/ports/sysdeps/unix/sysv/linux/alpha/xstatconv.h @@ -1,5 +1,5 @@ /* Convert between the kernel's `struct stat' format, and libc's. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/am33/bits/fcntl.h b/ports/sysdeps/unix/sysv/linux/am33/bits/fcntl.h index 447483898b..37ccaddc2d 100644 --- a/ports/sysdeps/unix/sysv/linux/am33/bits/fcntl.h +++ b/ports/sysdeps/unix/sysv/linux/am33/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/am33/bits/mman.h b/ports/sysdeps/unix/sysv/linux/am33/bits/mman.h index a6e85f99d0..697fea7919 100644 --- a/ports/sysdeps/unix/sysv/linux/am33/bits/mman.h +++ b/ports/sysdeps/unix/sysv/linux/am33/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/AM33 version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/am33/brk.c b/ports/sysdeps/unix/sysv/linux/am33/brk.c index 8fd2ff01d9..f913fc6f88 100644 --- a/ports/sysdeps/unix/sysv/linux/am33/brk.c +++ b/ports/sysdeps/unix/sysv/linux/am33/brk.c @@ -1,5 +1,5 @@ /* brk system call for Linux/am33. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . Based on ../i386/brk.c. diff --git a/ports/sysdeps/unix/sysv/linux/am33/clone.S b/ports/sysdeps/unix/sysv/linux/am33/clone.S index cece99bf34..81eeac05d6 100644 --- a/ports/sysdeps/unix/sysv/linux/am33/clone.S +++ b/ports/sysdeps/unix/sysv/linux/am33/clone.S @@ -1,4 +1,4 @@ -/* Copyright 2001-2013 Free Software Foundation, Inc. +/* Copyright 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . Based on ../i386/clone.S. diff --git a/ports/sysdeps/unix/sysv/linux/am33/linuxthreads/sysdep-cancel.h b/ports/sysdeps/unix/sysv/linux/am33/linuxthreads/sysdep-cancel.h index 7f2eb7e31a..60b4fe03fc 100644 --- a/ports/sysdeps/unix/sysv/linux/am33/linuxthreads/sysdep-cancel.h +++ b/ports/sysdeps/unix/sysv/linux/am33/linuxthreads/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva diff --git a/ports/sysdeps/unix/sysv/linux/am33/profil-counter.h b/ports/sysdeps/unix/sysv/linux/am33/profil-counter.h index b7c975d3b0..888b5c3037 100644 --- a/ports/sysdeps/unix/sysv/linux/am33/profil-counter.h +++ b/ports/sysdeps/unix/sysv/linux/am33/profil-counter.h @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Linux/am33 version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/am33/socket.S b/ports/sysdeps/unix/sysv/linux/am33/socket.S index 959ce506a7..a6839123a1 100644 --- a/ports/sysdeps/unix/sysv/linux/am33/socket.S +++ b/ports/sysdeps/unix/sysv/linux/am33/socket.S @@ -1,4 +1,4 @@ -/* Copyright 2001-2013 Free Software Foundation, Inc. +/* Copyright 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . Based on ../i386/socket.S. diff --git a/ports/sysdeps/unix/sysv/linux/am33/syscall.S b/ports/sysdeps/unix/sysv/linux/am33/syscall.S index 5f936d924b..6ab91b0fc2 100644 --- a/ports/sysdeps/unix/sysv/linux/am33/syscall.S +++ b/ports/sysdeps/unix/sysv/linux/am33/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . Based on ../i386/syscall.S. diff --git a/ports/sysdeps/unix/sysv/linux/am33/sysdep.S b/ports/sysdeps/unix/sysv/linux/am33/sysdep.S index b82a2e6cc0..81ad03f700 100644 --- a/ports/sysdeps/unix/sysv/linux/am33/sysdep.S +++ b/ports/sysdeps/unix/sysv/linux/am33/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . Based on ../i386/sysdep.S. diff --git a/ports/sysdeps/unix/sysv/linux/am33/sysdep.h b/ports/sysdeps/unix/sysv/linux/am33/sysdep.h index 75384bcf2c..63fe716594 100644 --- a/ports/sysdeps/unix/sysv/linux/am33/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/am33/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright 2001-2013 Free Software Foundation, Inc. +/* Copyright 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva . Based on ../i386/sysdep.h. diff --git a/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S b/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S index 6777ef646b..96f8b4eb2d 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S +++ b/ports/sysdeps/unix/sysv/linux/arm/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/aeabi_read_tp.S b/ports/sysdeps/unix/sysv/linux/arm/aeabi_read_tp.S index 21e322986a..9351233873 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/aeabi_read_tp.S +++ b/ports/sysdeps/unix/sysv/linux/arm/aeabi_read_tp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/arm-features.h b/ports/sysdeps/unix/sysv/linux/arm/arm-features.h index 6f70ced601..5c721ef17d 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/arm-features.h +++ b/ports/sysdeps/unix/sysv/linux/arm/arm-features.h @@ -1,5 +1,5 @@ /* Macros to test for CPU features on ARM. Linux version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/bits/atomic.h b/ports/sysdeps/unix/sysv/linux/arm/bits/atomic.h index ae486e1f21..cc73684e8a 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/bits/atomic.h +++ b/ports/sysdeps/unix/sysv/linux/arm/bits/atomic.h @@ -1,5 +1,5 @@ /* Atomic operations. ARM/Linux version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/bits/fcntl.h b/ports/sysdeps/unix/sysv/linux/arm/bits/fcntl.h index aa60dbc766..a5f5f448e8 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/bits/fcntl.h +++ b/ports/sysdeps/unix/sysv/linux/arm/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/bits/hwcap.h b/ports/sysdeps/unix/sysv/linux/arm/bits/hwcap.h index a04be507b1..b438d2a02f 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/bits/hwcap.h +++ b/ports/sysdeps/unix/sysv/linux/arm/bits/hwcap.h @@ -1,5 +1,5 @@ /* Defines for bits in AT_HWCAP. ARM Linux version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/bits/mman.h b/ports/sysdeps/unix/sysv/linux/arm/bits/mman.h index 11ecbca03a..8259b96894 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/bits/mman.h +++ b/ports/sysdeps/unix/sysv/linux/arm/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/ARM version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/bits/shm.h b/ports/sysdeps/unix/sysv/linux/arm/bits/shm.h index eb581eaba9..a479054495 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/bits/shm.h +++ b/ports/sysdeps/unix/sysv/linux/arm/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/brk.c b/ports/sysdeps/unix/sysv/linux/arm/brk.c index 289eee6854..f442b5381d 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/brk.c +++ b/ports/sysdeps/unix/sysv/linux/arm/brk.c @@ -1,5 +1,5 @@ /* brk system call for Linux/ARM. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/clone.S b/ports/sysdeps/unix/sysv/linux/arm/clone.S index 6e74fa702b..44286a5cd0 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/clone.S +++ b/ports/sysdeps/unix/sysv/linux/arm/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Pat Beirne diff --git a/ports/sysdeps/unix/sysv/linux/arm/dl-cache.h b/ports/sysdeps/unix/sysv/linux/arm/dl-cache.h index 504fecab58..66e6cdbfc6 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/dl-cache.h +++ b/ports/sysdeps/unix/sysv/linux/arm/dl-cache.h @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/dl-machine.h b/ports/sysdeps/unix/sysv/linux/arm/dl-machine.h index 5925741062..9946db8a56 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/dl-machine.h +++ b/ports/sysdeps/unix/sysv/linux/arm/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. ARM/Linux version - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.c b/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.c index 09c6dd1a08..d304539f0c 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.c +++ b/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.c @@ -1,5 +1,5 @@ /* Data for Linux/ARM version of processor capability information. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell , 2001. diff --git a/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h b/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h index 251653ae16..2f8f003e9f 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h +++ b/ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h @@ -1,5 +1,5 @@ /* Linux/ARM version of processor capability information handling macros. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell , 2001. diff --git a/ports/sysdeps/unix/sysv/linux/arm/ftruncate64.c b/ports/sysdeps/unix/sysv/linux/arm/ftruncate64.c index 7fba41ab69..49631d4432 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/ftruncate64.c +++ b/ports/sysdeps/unix/sysv/linux/arm/ftruncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/getcontext.S b/ports/sysdeps/unix/sysv/linux/arm/getcontext.S index fa00c0b789..b8b7b202b8 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/getcontext.S +++ b/ports/sysdeps/unix/sysv/linux/arm/getcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/ioperm.c b/ports/sysdeps/unix/sysv/linux/arm/ioperm.c index 17e52e7b59..19b79f4bc6 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/ioperm.c +++ b/ports/sysdeps/unix/sysv/linux/arm/ioperm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Phil Blundell, based on the Alpha version by David Mosberger. diff --git a/ports/sysdeps/unix/sysv/linux/arm/kernel-features.h b/ports/sysdeps/unix/sysv/linux/arm/kernel-features.h index 2041e3e543..9d7ef877af 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/kernel-features.h +++ b/ports/sysdeps/unix/sysv/linux/arm/kernel-features.h @@ -1,6 +1,6 @@ /* Set flags signalling availability of kernel features based on given kernel version number. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/ldconfig.h b/ports/sysdeps/unix/sysv/linux/arm/ldconfig.h index b422fa1290..316d82bdb3 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/ldconfig.h +++ b/ports/sysdeps/unix/sysv/linux/arm/ldconfig.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/ldsodefs.h b/ports/sysdeps/unix/sysv/linux/arm/ldsodefs.h index 3821bf33b3..32cdfab64c 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/ldsodefs.h +++ b/ports/sysdeps/unix/sysv/linux/arm/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S b/ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S index 6552a7ce18..d42a94a560 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S +++ b/ports/sysdeps/unix/sysv/linux/arm/libc-do-syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/makecontext.c b/ports/sysdeps/unix/sysv/linux/arm/makecontext.c index 6ec0df9199..73fbe4a329 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/makecontext.c +++ b/ports/sysdeps/unix/sysv/linux/arm/makecontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/mmap.S b/ports/sysdeps/unix/sysv/linux/arm/mmap.S index 9fb1931c1a..0383bb5547 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/mmap.S +++ b/ports/sysdeps/unix/sysv/linux/arm/mmap.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/mmap64.S b/ports/sysdeps/unix/sysv/linux/arm/mmap64.S index d039129b29..eae522988c 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/mmap64.S +++ b/ports/sysdeps/unix/sysv/linux/arm/mmap64.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h b/ports/sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h index bfee1d911e..26edce54fe 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h b/ports/sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h index a736db3e3f..50d3a11ebd 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/createthread.c b/ports/sysdeps/unix/sysv/linux/arm/nptl/createthread.c index f278d0bc4e..5e96513ca8 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/createthread.c +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/fork.c b/ports/sysdeps/unix/sysv/linux/arm/nptl/fork.c index 4fc4bcabd1..0fbea176c3 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/fork.c +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Phil Blundell , 2005 diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c b/ports/sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c index 756f39fd4a..9603d7b328 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c @@ -1,5 +1,5 @@ /* low level locking for pthread library. Generic futex-using version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h b/ports/sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h index a29593aeca..5d19434cdc 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S b/ports/sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S index ca50457070..7eff08e720 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c b/ports/sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c index 0c897abbb1..a063149925 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h b/ports/sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h index 59b826ded4..118e6c3466 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c b/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c index 108924d8b3..6ccd9b43a1 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c b/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c index d155ea7dc4..bff3e2b4f1 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind.h b/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind.h index 1befa72782..7b71817e89 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind.h +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/unwind.h @@ -1,5 +1,5 @@ /* Header file for the ARM EABI unwinder - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. Contributed by Paul Brook This file is free software; you can redistribute it and/or modify it diff --git a/ports/sysdeps/unix/sysv/linux/arm/nptl/vfork.S b/ports/sysdeps/unix/sysv/linux/arm/nptl/vfork.S index 216fb2d2eb..2e942beba7 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/nptl/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/arm/nptl/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/posix_fadvise.c b/ports/sysdeps/unix/sysv/linux/arm/posix_fadvise.c index d5fe7e80c8..281ff5b4ac 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/posix_fadvise.c +++ b/ports/sysdeps/unix/sysv/linux/arm/posix_fadvise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/posix_fadvise64.c b/ports/sysdeps/unix/sysv/linux/arm/posix_fadvise64.c index 6bc9a27714..7c14eec8f8 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/posix_fadvise64.c +++ b/ports/sysdeps/unix/sysv/linux/arm/posix_fadvise64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/pread.c b/ports/sysdeps/unix/sysv/linux/arm/pread.c index e178402a8c..97822ad11f 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/pread.c +++ b/ports/sysdeps/unix/sysv/linux/arm/pread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/arm/pread64.c b/ports/sysdeps/unix/sysv/linux/arm/pread64.c index c7863a35c6..cc75c9582c 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/pread64.c +++ b/ports/sysdeps/unix/sysv/linux/arm/pread64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/arm/profil-counter.h b/ports/sysdeps/unix/sysv/linux/arm/profil-counter.h index f6af3970a8..ddf4d41af2 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/profil-counter.h +++ b/ports/sysdeps/unix/sysv/linux/arm/profil-counter.h @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Linux/ARM version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/pwrite.c b/ports/sysdeps/unix/sysv/linux/arm/pwrite.c index 4ae2e83304..dfbabda82c 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/pwrite.c +++ b/ports/sysdeps/unix/sysv/linux/arm/pwrite.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/arm/pwrite64.c b/ports/sysdeps/unix/sysv/linux/arm/pwrite64.c index bd6fca5832..6d551ecd07 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/pwrite64.c +++ b/ports/sysdeps/unix/sysv/linux/arm/pwrite64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/arm/readahead.c b/ports/sysdeps/unix/sysv/linux/arm/readahead.c index cdac5bb782..cba460c2b5 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/readahead.c +++ b/ports/sysdeps/unix/sysv/linux/arm/readahead.c @@ -1,5 +1,5 @@ /* Provide kernel hint to read ahead. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/readelflib.c b/ports/sysdeps/unix/sysv/linux/arm/readelflib.c index 3efb6134c3..a15ebe42a6 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/readelflib.c +++ b/ports/sysdeps/unix/sysv/linux/arm/readelflib.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999 and Jakub Jelinek , 1999. diff --git a/ports/sysdeps/unix/sysv/linux/arm/register-dump.h b/ports/sysdeps/unix/sysv/linux/arm/register-dump.h index 76f771e180..9714a0d8c7 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/register-dump.h +++ b/ports/sysdeps/unix/sysv/linux/arm/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell , 1998. diff --git a/ports/sysdeps/unix/sysv/linux/arm/setcontext.S b/ports/sysdeps/unix/sysv/linux/arm/setcontext.S index b3148c8943..7b9b511b80 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/setcontext.S +++ b/ports/sysdeps/unix/sysv/linux/arm/setcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/sigaction.c b/ports/sysdeps/unix/sysv/linux/arm/sigaction.c index 21bf506ef7..21df885a7a 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/sigaction.c +++ b/ports/sysdeps/unix/sysv/linux/arm/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/sigcontextinfo.h b/ports/sysdeps/unix/sysv/linux/arm/sigcontextinfo.h index 29d3a60cb3..258703dc88 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/sigcontextinfo.h +++ b/ports/sysdeps/unix/sysv/linux/arm/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell , 1999. diff --git a/ports/sysdeps/unix/sysv/linux/arm/sigrestorer.S b/ports/sysdeps/unix/sysv/linux/arm/sigrestorer.S index 52e8cd9052..566c04aed0 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/sigrestorer.S +++ b/ports/sysdeps/unix/sysv/linux/arm/sigrestorer.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/swapcontext.S b/ports/sysdeps/unix/sysv/linux/arm/swapcontext.S index 8a968eb0a2..65a36d2a4c 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/swapcontext.S +++ b/ports/sysdeps/unix/sysv/linux/arm/swapcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/sys/elf.h b/ports/sysdeps/unix/sysv/linux/arm/sys/elf.h index ae102b36a9..a03b1ad6ff 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/sys/elf.h +++ b/ports/sysdeps/unix/sysv/linux/arm/sys/elf.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/sys/io.h b/ports/sysdeps/unix/sysv/linux/arm/sys/io.h index a597fff4d8..59d4bbcc4d 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/sys/io.h +++ b/ports/sysdeps/unix/sysv/linux/arm/sys/io.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/sys/procfs.h b/ports/sysdeps/unix/sysv/linux/arm/sys/procfs.h index ea1729a73d..415cf8dd49 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/sys/procfs.h +++ b/ports/sysdeps/unix/sysv/linux/arm/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/sys/ucontext.h b/ports/sysdeps/unix/sysv/linux/arm/sys/ucontext.h index 17cbbc2537..dbda8303cb 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/sys/ucontext.h +++ b/ports/sysdeps/unix/sysv/linux/arm/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/sys/user.h b/ports/sysdeps/unix/sysv/linux/arm/sys/user.h index d871409fa8..37fc08b0a7 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/sys/user.h +++ b/ports/sysdeps/unix/sysv/linux/arm/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/syscall.S b/ports/sysdeps/unix/sysv/linux/arm/syscall.S index bdd5a52be8..c5582f82fd 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/syscall.S +++ b/ports/sysdeps/unix/sysv/linux/arm/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/sysdep.S b/ports/sysdeps/unix/sysv/linux/arm/sysdep.S index aed070c2ad..936de45533 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/sysdep.S +++ b/ports/sysdeps/unix/sysv/linux/arm/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/sysdep.h b/ports/sysdeps/unix/sysv/linux/arm/sysdep.h index 6cfe4e08a7..11d0a1146e 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/arm/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, , August 1995. ARM changes by Philip Blundell, , May 1997. diff --git a/ports/sysdeps/unix/sysv/linux/arm/truncate64.c b/ports/sysdeps/unix/sysv/linux/arm/truncate64.c index 6e52e32637..dbbb5fcb44 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/truncate64.c +++ b/ports/sysdeps/unix/sysv/linux/arm/truncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/arm/umount.c b/ports/sysdeps/unix/sysv/linux/arm/umount.c index aa9e7e2198..b8e499d8c4 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/umount.c +++ b/ports/sysdeps/unix/sysv/linux/arm/umount.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000. diff --git a/ports/sysdeps/unix/sysv/linux/arm/vfork.S b/ports/sysdeps/unix/sysv/linux/arm/vfork.S index 128a6402b9..1ac67881c9 100644 --- a/ports/sysdeps/unix/sysv/linux/arm/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/arm/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell . diff --git a/ports/sysdeps/unix/sysv/linux/generic/____longjmp_chk.c b/ports/sysdeps/unix/sysv/linux/generic/____longjmp_chk.c index f7b2d09569..579cf3998f 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/____longjmp_chk.c +++ b/ports/sysdeps/unix/sysv/linux/generic/____longjmp_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/access.c b/ports/sysdeps/unix/sysv/linux/generic/access.c index fcebafe487..d09ede2d7c 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/access.c +++ b/ports/sysdeps/unix/sysv/linux/generic/access.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/bits/fcntl.h b/ports/sysdeps/unix/sysv/linux/generic/bits/fcntl.h index 47d2747154..bdf9171ed1 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/bits/fcntl.h +++ b/ports/sysdeps/unix/sysv/linux/generic/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for the generic Linux ABI. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/bits/msq.h b/ports/sysdeps/unix/sysv/linux/generic/bits/msq.h index c2680d035e..f3fcd8d645 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/bits/msq.h +++ b/ports/sysdeps/unix/sysv/linux/generic/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/bits/sem.h b/ports/sysdeps/unix/sysv/linux/generic/bits/sem.h index 7b5d36ab51..3c9aea86ad 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/bits/sem.h +++ b/ports/sysdeps/unix/sysv/linux/generic/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/bits/shm.h b/ports/sysdeps/unix/sysv/linux/generic/bits/shm.h index 5afd30fdef..0dbed61700 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/bits/shm.h +++ b/ports/sysdeps/unix/sysv/linux/generic/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/bits/stat.h b/ports/sysdeps/unix/sysv/linux/generic/bits/stat.h index a9a42cca5b..faa28007f5 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/bits/stat.h +++ b/ports/sysdeps/unix/sysv/linux/generic/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/bits/statfs.h b/ports/sysdeps/unix/sysv/linux/generic/bits/statfs.h index 8aecb042b0..e32cf76741 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/bits/statfs.h +++ b/ports/sysdeps/unix/sysv/linux/generic/bits/statfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/bits/typesizes.h b/ports/sysdeps/unix/sysv/linux/generic/bits/typesizes.h index 36d057ff4c..eda847da1e 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/bits/typesizes.h +++ b/ports/sysdeps/unix/sysv/linux/generic/bits/typesizes.h @@ -1,5 +1,5 @@ /* bits/typesizes.h -- underlying types for *_t. For the generic Linux ABI. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/brk.c b/ports/sysdeps/unix/sysv/linux/generic/brk.c index 93f48f0701..214d8fd2fe 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/brk.c +++ b/ports/sysdeps/unix/sysv/linux/generic/brk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/chmod.c b/ports/sysdeps/unix/sysv/linux/generic/chmod.c index b4e98fd8a4..4ff6c8685e 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/chmod.c +++ b/ports/sysdeps/unix/sysv/linux/generic/chmod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/chown.c b/ports/sysdeps/unix/sysv/linux/generic/chown.c index 28f797c1e6..d14d574c29 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/chown.c +++ b/ports/sysdeps/unix/sysv/linux/generic/chown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/creat.c b/ports/sysdeps/unix/sysv/linux/generic/creat.c index f15bd3d317..f5d046060c 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/creat.c +++ b/ports/sysdeps/unix/sysv/linux/generic/creat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/dl-origin.c b/ports/sysdeps/unix/sysv/linux/generic/dl-origin.c index 95cac5da3c..c010076f06 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/dl-origin.c +++ b/ports/sysdeps/unix/sysv/linux/generic/dl-origin.c @@ -1,5 +1,5 @@ /* Find path of executable. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/ports/sysdeps/unix/sysv/linux/generic/dup2.c b/ports/sysdeps/unix/sysv/linux/generic/dup2.c index 7d079ec0e4..fb8e01a954 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/dup2.c +++ b/ports/sysdeps/unix/sysv/linux/generic/dup2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/epoll_create.c b/ports/sysdeps/unix/sysv/linux/generic/epoll_create.c index 3c57c3327d..a6f144df0b 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/epoll_create.c +++ b/ports/sysdeps/unix/sysv/linux/generic/epoll_create.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/epoll_wait.c b/ports/sysdeps/unix/sysv/linux/generic/epoll_wait.c index 13f8937094..4cd50e439a 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/epoll_wait.c +++ b/ports/sysdeps/unix/sysv/linux/generic/epoll_wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/futimesat.c b/ports/sysdeps/unix/sysv/linux/generic/futimesat.c index 4fa091a81c..0e9c983fb1 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/futimesat.c +++ b/ports/sysdeps/unix/sysv/linux/generic/futimesat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/getdents64.c b/ports/sysdeps/unix/sysv/linux/generic/getdents64.c index f99d45168c..272799b97d 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/getdents64.c +++ b/ports/sysdeps/unix/sysv/linux/generic/getdents64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/inotify_init.c b/ports/sysdeps/unix/sysv/linux/generic/inotify_init.c index ff173c5d68..ced7fe8e5e 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/inotify_init.c +++ b/ports/sysdeps/unix/sysv/linux/generic/inotify_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/kernel_stat.h b/ports/sysdeps/unix/sysv/linux/generic/kernel_stat.h index 2b299b8bd7..371a7c5a0a 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/kernel_stat.h +++ b/ports/sysdeps/unix/sysv/linux/generic/kernel_stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/lchown.c b/ports/sysdeps/unix/sysv/linux/generic/lchown.c index 11f7e2fe99..a3718209c9 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/lchown.c +++ b/ports/sysdeps/unix/sysv/linux/generic/lchown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/link.c b/ports/sysdeps/unix/sysv/linux/generic/link.c index 6109169b7d..12cf700d79 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/link.c +++ b/ports/sysdeps/unix/sysv/linux/generic/link.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/lxstat.c b/ports/sysdeps/unix/sysv/linux/generic/lxstat.c index 3fb8e9e7a2..8bb1d8e58f 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/lxstat.c +++ b/ports/sysdeps/unix/sysv/linux/generic/lxstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/mkdir.c b/ports/sysdeps/unix/sysv/linux/generic/mkdir.c index b64c5529fb..45ccf358c4 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/mkdir.c +++ b/ports/sysdeps/unix/sysv/linux/generic/mkdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/not-cancel.h b/ports/sysdeps/unix/sysv/linux/generic/not-cancel.h index eaf5c162cc..b8df253607 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/not-cancel.h +++ b/ports/sysdeps/unix/sysv/linux/generic/not-cancel.h @@ -1,5 +1,5 @@ /* Uncancelable versions of cancelable interfaces. Linux asm-generic version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2012. diff --git a/ports/sysdeps/unix/sysv/linux/generic/open.c b/ports/sysdeps/unix/sysv/linux/generic/open.c index 71f351be40..4f73fa019c 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/open.c +++ b/ports/sysdeps/unix/sysv/linux/generic/open.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/open64.c b/ports/sysdeps/unix/sysv/linux/generic/open64.c index 14a744edb4..93d79e381f 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/open64.c +++ b/ports/sysdeps/unix/sysv/linux/generic/open64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/pause.c b/ports/sysdeps/unix/sysv/linux/generic/pause.c index ad3213fbec..3804ce6e99 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/pause.c +++ b/ports/sysdeps/unix/sysv/linux/generic/pause.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/pipe.c b/ports/sysdeps/unix/sysv/linux/generic/pipe.c index 334e6d38f3..53bf6141a0 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/pipe.c +++ b/ports/sysdeps/unix/sysv/linux/generic/pipe.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/poll.c b/ports/sysdeps/unix/sysv/linux/generic/poll.c index 4ddf51b52e..62342779c4 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/poll.c +++ b/ports/sysdeps/unix/sysv/linux/generic/poll.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/readlink.c b/ports/sysdeps/unix/sysv/linux/generic/readlink.c index f0bac9e139..6f25649c6c 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/readlink.c +++ b/ports/sysdeps/unix/sysv/linux/generic/readlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/readlink_chk.c b/ports/sysdeps/unix/sysv/linux/generic/readlink_chk.c index 6c0d140b06..f73b3c577d 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/readlink_chk.c +++ b/ports/sysdeps/unix/sysv/linux/generic/readlink_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/recv.c b/ports/sysdeps/unix/sysv/linux/generic/recv.c index 2a8038b0f2..1d950eb0fe 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/recv.c +++ b/ports/sysdeps/unix/sysv/linux/generic/recv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/rename.c b/ports/sysdeps/unix/sysv/linux/generic/rename.c index 861e58ed4e..73e03c03d7 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/rename.c +++ b/ports/sysdeps/unix/sysv/linux/generic/rename.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/rmdir.c b/ports/sysdeps/unix/sysv/linux/generic/rmdir.c index cd3ecbfcd5..ff5d309df6 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/rmdir.c +++ b/ports/sysdeps/unix/sysv/linux/generic/rmdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/select.c b/ports/sysdeps/unix/sysv/linux/generic/select.c index 670f4592df..03f96037f6 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/select.c +++ b/ports/sysdeps/unix/sysv/linux/generic/select.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/send.c b/ports/sysdeps/unix/sysv/linux/generic/send.c index e00a4bc504..2db610d4bc 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/send.c +++ b/ports/sysdeps/unix/sysv/linux/generic/send.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/symlink.c b/ports/sysdeps/unix/sysv/linux/generic/symlink.c index 58ad30ab40..ad36c2cae2 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/symlink.c +++ b/ports/sysdeps/unix/sysv/linux/generic/symlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/sysctl.c b/ports/sysdeps/unix/sysv/linux/generic/sysctl.c index 94810ed496..e94237ac7c 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/sysctl.c +++ b/ports/sysdeps/unix/sysv/linux/generic/sysctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/sysdep.h b/ports/sysdeps/unix/sysv/linux/generic/sysdep.h index 2e2f50786f..f1ba2589e6 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/generic/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/umount.c b/ports/sysdeps/unix/sysv/linux/generic/umount.c index c55ab4ce23..115dcaaaff 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/umount.c +++ b/ports/sysdeps/unix/sysv/linux/generic/umount.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/unlink.c b/ports/sysdeps/unix/sysv/linux/generic/unlink.c index 86eefbfcd8..6fc6779c1a 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/unlink.c +++ b/ports/sysdeps/unix/sysv/linux/generic/unlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/ustat.c b/ports/sysdeps/unix/sysv/linux/generic/ustat.c index fabe82464d..a45e818aba 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/ustat.c +++ b/ports/sysdeps/unix/sysv/linux/generic/ustat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/utimes.c b/ports/sysdeps/unix/sysv/linux/generic/utimes.c index 6848e0ec80..e0abd7290a 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/utimes.c +++ b/ports/sysdeps/unix/sysv/linux/generic/utimes.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c index f8514ce75b..2637f03451 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fstatfs.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fstatfs.c index 1c3c12d3ab..bff1f4970b 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fstatfs.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fstatfs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/ftruncate.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/ftruncate.c index 331cd7c201..f153a04933 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/ftruncate.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/ftruncate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/ftruncate64.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/ftruncate64.c index 29307ec337..e430145828 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/ftruncate64.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/ftruncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fxstat.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fxstat.c index 449477eea5..41850c34bd 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fxstat.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fxstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c index 15c2d08ff5..94769b64e4 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/getdents.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/getdents.c index bafde85ab1..e4b6ee0d17 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/getdents.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/getdents.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Simplified from sysdeps/unix/sysv/linux/getdents.c. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/llseek.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/llseek.c index fac3111ac0..ce9eb9bd6d 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/llseek.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/llseek.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lseek.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lseek.c index 09b4b0832c..96d8a35378 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lseek.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lseek.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat.c index b6a9d3cb20..143f727d3f 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat64.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat64.c index 91e192a524..39d385cdb0 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat64.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/mmap.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/mmap.c index b8633bcb5a..be8ac7b100 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/mmap.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/mmap.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/overflow.h b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/overflow.h index ce66a229bd..2acc2e5486 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/overflow.h +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/overflow.h @@ -1,5 +1,5 @@ /* Overflow tests for stat, statfs, and lseek functions. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/posix_fadvise.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/posix_fadvise.c index f0e2c59b29..cc29817a95 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/posix_fadvise.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/posix_fadvise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c index e96051ed1b..2bffd1fbd9 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c index 3a9a066b24..093b874814 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c index a9c793b69c..1dae1272d0 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c index 10bdcf5f61..32cc314047 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c index 75e337c66f..909255bb7e 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c index 66a7a76977..cbdb9e9a4e 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c index 4fb1b5f936..a166e32c3f 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c index c41b595c46..33f4e80e66 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/sendfile.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/sendfile.c index 1f96b7820c..c35e54a511 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/sendfile.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/sendfile.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/statfs.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/statfs.c index eb8a59d967..7987457e8e 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/statfs.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/statfs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/truncate.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/truncate.c index 45fa1edb3f..fb31d1499c 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/truncate.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/truncate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/truncate64.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/truncate64.c index d351cb11b3..ff19d61559 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/truncate64.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/truncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/xstat.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/xstat.c index 86de8f9c5e..e9ca7aed16 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/xstat.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/xstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/xstat64.c b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/xstat64.c index aee424c31a..09862228db 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/xstat64.c +++ b/ports/sysdeps/unix/sysv/linux/generic/wordsize-32/xstat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/xmknod.c b/ports/sysdeps/unix/sysv/linux/generic/xmknod.c index 44bd383677..e08bb0ecea 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/xmknod.c +++ b/ports/sysdeps/unix/sysv/linux/generic/xmknod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/generic/xstat.c b/ports/sysdeps/unix/sysv/linux/generic/xstat.c index c099bc4167..7e37e9c6e5 100644 --- a/ports/sysdeps/unix/sysv/linux/generic/xstat.c +++ b/ports/sysdeps/unix/sysv/linux/generic/xstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/____longjmp_chk.c b/ports/sysdeps/unix/sysv/linux/hppa/____longjmp_chk.c index 9f2df7dc0e..8789538ded 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/____longjmp_chk.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/____longjmp_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/atomic.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/atomic.h index a92e8ac0c7..76ca0b15e5 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/atomic.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Carlos O'Donell , 2005. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/errno.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/errno.h index 00299347be..ac684d23f0 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/errno.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/errno.h @@ -1,5 +1,5 @@ /* Error constants. Linux/HPPA specific version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h index 76faa4086d..f596d5f100 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/ioctls.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/ioctls.h index 4b563f9720..8122c103ec 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/ioctls.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/ioctls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/ipc.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/ipc.h index 34827a940f..89d3dd62f8 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/ipc.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/ipc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/mman.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/mman.h index 2835b0ff07..6254b23972 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/mman.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/HPPA version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/msq.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/msq.h index 366165e0fb..60db3413e4 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/msq.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/sem.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/sem.h index 9f471176da..75c2605398 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/sem.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/shm.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/shm.h index 6905df0d26..ec5de39fd3 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/shm.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/sigaction.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/sigaction.h index 2659de12fd..3b1638dc8e 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/sigaction.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/sigaction.h @@ -1,5 +1,5 @@ /* Definitions for Linux/HPPA sigaction. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/signum.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/signum.h index a720d5d7a6..7f935c52a0 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/signum.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/signum.h @@ -1,5 +1,5 @@ /* Signal number definitions. Linux/HPPA version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/bits/socket_type.h b/ports/sysdeps/unix/sysv/linux/hppa/bits/socket_type.h index e62e9bdb06..0a404c6537 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/bits/socket_type.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/bits/socket_type.h @@ -1,5 +1,5 @@ /* Define enum __socket_type for Linux/HP-PARISC. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/brk.c b/ports/sysdeps/unix/sysv/linux/hppa/brk.c index 21db8818eb..2e0a8cfade 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/brk.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/brk.c @@ -1,5 +1,5 @@ /* brk system call for Linux/HPPA. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/clone.S b/ports/sysdeps/unix/sysv/linux/hppa/clone.S index fd55961bea..1a3c6c800d 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/clone.S +++ b/ports/sysdeps/unix/sysv/linux/hppa/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000. Based on the Alpha version by Richard Henderson , 1996. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/getcontext.S b/ports/sysdeps/unix/sysv/linux/hppa/getcontext.S index 29a6170fb5..1d17d30f4f 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/getcontext.S +++ b/ports/sysdeps/unix/sysv/linux/hppa/getcontext.S @@ -1,5 +1,5 @@ /* Get current user context. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Helge Deller , 2008. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/kernel-features.h b/ports/sysdeps/unix/sysv/linux/hppa/kernel-features.h index 31fa5a180c..e050c27189 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/kernel-features.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/kernel-features.h @@ -1,6 +1,6 @@ /* Set flags signalling availability of kernel features based on given kernel version number. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/makecontext.c b/ports/sysdeps/unix/sysv/linux/hppa/makecontext.c index 046aad2afb..e53644902b 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/makecontext.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/makecontext.c @@ -1,5 +1,5 @@ /* Create new context. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Helge Deller , 2008. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/mmap.c b/ports/sysdeps/unix/sysv/linux/hppa/mmap.c index bb3b97fe4a..174cd5e54f 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/mmap.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/mmap.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h b/ports/sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h index 7e52c680c0..deec4dae8c 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/bits/semaphore.h b/ports/sysdeps/unix/sysv/linux/hppa/nptl/bits/semaphore.h index 6c1f6f0ef0..b9873bd809 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/bits/semaphore.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/bits/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/createthread.c b/ports/sysdeps/unix/sysv/linux/hppa/nptl/createthread.c index f278d0bc4e..5e96513ca8 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/createthread.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/fork.c b/ports/sysdeps/unix/sysv/linux/hppa/nptl/fork.c index 695bbfd87f..3c21f5aef9 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/fork.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c b/ports/sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c index a770bc7af9..8f50fed615 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c @@ -1,5 +1,5 @@ /* low level locking for pthread library. Generic futex-using version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c b/ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c index af63e1b9a8..d61c5d3ac8 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c @@ -1,5 +1,5 @@ /* low level locking for pthread library. Generic futex-using version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h b/ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h index 4cf8468d42..a428bb4b9f 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S index 5fa0ef5c32..034b69957b 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread.h b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread.h index 39e1ab986f..8fbc1a41e6 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_broadcast.c b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_broadcast.c index 2a4064ea20..e80f880d3e 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_broadcast.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_broadcast.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Carlos O'Donell , 2009. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_destroy.c b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_destroy.c index f27221f441..a308899068 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_destroy.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Carlos O'Donell , 2009. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_init.c b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_init.c index 576da98464..92b3ecfbfa 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_init.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Carlos O'Donell , 2009. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_signal.c b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_signal.c index 9656b5f3b8..ddeb946c8e 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_signal.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_signal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Carlos O'Donell , 2009. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_timedwait.c b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_timedwait.c index c37a746fbf..69cc66d65b 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_timedwait.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_timedwait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Carlos O'Donell , 2009. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_wait.c b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_wait.c index d489a27876..606231824b 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_wait.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Carlos O'Donell , 2009. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_once.c b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_once.c index b032f29d44..ee6b496e4f 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_once.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h b/ports/sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h index b0ba11881f..154bd2de01 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/profil-counter.h b/ports/sysdeps/unix/sysv/linux/hppa/profil-counter.h index d6a427dacd..1561672d94 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/profil-counter.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/profil-counter.h @@ -1,5 +1,5 @@ /* Machine-dependent SIGPROF signal handler. PA-RISC version - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/setcontext.S b/ports/sysdeps/unix/sysv/linux/hppa/setcontext.S index 2740afcb18..a90ab0f9fe 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/setcontext.S +++ b/ports/sysdeps/unix/sysv/linux/hppa/setcontext.S @@ -1,5 +1,5 @@ /* Install given context. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Helge Deller , 2008. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/swapcontext.c b/ports/sysdeps/unix/sysv/linux/hppa/swapcontext.c index 6ae789b198..d3ac08e079 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/swapcontext.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/swapcontext.c @@ -1,5 +1,5 @@ /* Swap to new context. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Helge Deller , 2008. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/sys/epoll.h b/ports/sysdeps/unix/sysv/linux/hppa/sys/epoll.h index d9a0b1f4e7..86e2ca1f6a 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/sys/epoll.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/sys/epoll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/sys/eventfd.h b/ports/sysdeps/unix/sysv/linux/hppa/sys/eventfd.h index 9a791aec2d..2d198a8f5b 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/sys/eventfd.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/sys/eventfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/sys/inotify.h b/ports/sysdeps/unix/sysv/linux/hppa/sys/inotify.h index f606692437..ec78377781 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/sys/inotify.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/sys/inotify.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/sys/procfs.h b/ports/sysdeps/unix/sysv/linux/hppa/sys/procfs.h index 0c8ede490a..6174471807 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/sys/procfs.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/sys/signalfd.h b/ports/sysdeps/unix/sysv/linux/hppa/sys/signalfd.h index 25dfc3e522..d6dc3a7762 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/sys/signalfd.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/sys/signalfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/sys/timerfd.h b/ports/sysdeps/unix/sysv/linux/hppa/sys/timerfd.h index 643dcc945b..127e8e4386 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/sys/timerfd.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/sys/timerfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h b/ports/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h index 06c685e1fb..6c80433256 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/syscall.S b/ports/sysdeps/unix/sysv/linux/hppa/syscall.S index da1b5fa597..3efbd5a58f 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/syscall.S +++ b/ports/sysdeps/unix/sysv/linux/hppa/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/sysdep.c b/ports/sysdeps/unix/sysv/linux/hppa/sysdep.c index 3bf31f2811..f7cd526d25 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/sysdep.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/sysdep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/hppa/sysdep.h b/ports/sysdeps/unix/sysv/linux/hppa/sysdep.h index 0d27b4075d..20af8a76f1 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/hppa/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for PA-RISC. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, , August 1999. Linux/PA-RISC changes by Philipp Rumpf, , March 2000. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/umount.c b/ports/sysdeps/unix/sysv/linux/hppa/umount.c index aa9e7e2198..b8e499d8c4 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/umount.c +++ b/ports/sysdeps/unix/sysv/linux/hppa/umount.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000. diff --git a/ports/sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S b/ports/sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S index ccaf3ccf84..6025bf609c 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/__longjmp.S b/ports/sysdeps/unix/sysv/linux/ia64/__longjmp.S index 4968802ae9..f4d67e79d5 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/__longjmp.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/__longjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. Contributed by David Mosberger-Tang . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/__start_context.S b/ports/sysdeps/unix/sysv/linux/ia64/__start_context.S index b946a957fc..8914f5dd93 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/__start_context.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/__start_context.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/fcntl.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/fcntl.h index b4fbbd9f5a..70e809c811 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/fcntl.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux/IA64. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/ipc.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/ipc.h index fb78b5bcf0..e60189315a 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/ipc.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/ipc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/mman.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/mman.h index c3b1caf9d2..653d8e9fca 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/mman.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/ia64 version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/msq.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/msq.h index f3f9f75a5a..004d2ac770 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/msq.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contribute by David Mosberger-Tang diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/sem.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/sem.h index 998ba85ef7..45950f162d 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/sem.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/setjmp.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/setjmp.h index eeafc200a1..76e771f9a4 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/setjmp.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/setjmp.h @@ -1,5 +1,5 @@ /* Define the machine-dependent type `jmp_buf'. Linux/IA-64 version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/shm.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/shm.h index a6c0910f74..3923925a6d 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/shm.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/sigaction.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/sigaction.h index 63fdec9118..39478711cc 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/sigaction.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/sigaction.h @@ -1,5 +1,5 @@ /* Definitions for Linux/ia64 sigaction. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h index 3b8e4a7d82..93d421aff7 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jes Sorensen , July 2000 diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/siginfo.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/siginfo.h index 5fa97b5d59..bf62112270 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/siginfo.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/siginfo.h @@ -1,5 +1,5 @@ /* siginfo_t, sigevent and constants. Linux/ia64 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h index b427ea7696..a540da5bcf 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/sigstack.h @@ -1,5 +1,5 @@ /* sigstack, sigaltstack definitions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/bits/stat.h b/ports/sysdeps/unix/sysv/linux/ia64/bits/stat.h index d984dc4477..818e7bd79e 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/bits/stat.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/brk.S b/ports/sysdeps/unix/sysv/linux/ia64/brk.S index db6f962a0a..1a5525b109 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/brk.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/brk.S @@ -1,5 +1,5 @@ /* brk system call for Linux/ia64 - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Stephane Eranian and Jes Sorensen, , April 1999. diff --git a/ports/sysdeps/unix/sysv/linux/ia64/clone2.S b/ports/sysdeps/unix/sysv/linux/ia64/clone2.S index 39df6163c1..f857a746d4 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/clone2.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/clone2.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/dl-cache.h b/ports/sysdeps/unix/sysv/linux/ia64/dl-cache.h index cd831d521a..5c271a28cb 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/dl-cache.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/dl-cache.h @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/dl-static.c b/ports/sysdeps/unix/sysv/linux/ia64/dl-static.c index 9853253dcf..51fa79633f 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/dl-static.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/dl-static.c @@ -1,5 +1,5 @@ /* Variable initialization. IA-64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/fork.S b/ports/sysdeps/unix/sysv/linux/ia64/fork.S index cd8b6d8df3..496d0b7eff 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/fork.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/fork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/get_clockfreq.c b/ports/sysdeps/unix/sysv/linux/ia64/get_clockfreq.c index 0a8c9c8f6a..d69a2e8a4e 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/get_clockfreq.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/get_clockfreq.c @@ -1,5 +1,5 @@ /* Get frequency of the system processor. IA-64/Linux version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/getcontext.S b/ports/sysdeps/unix/sysv/linux/ia64/getcontext.S index f3410ab60e..a9d23382e6 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/getcontext.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/getcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/getpagesize.c b/ports/sysdeps/unix/sysv/linux/ia64/getpagesize.c index 8c2a60bc73..282b2c5c8c 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/getpagesize.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/getpagesize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/has_cpuclock.c b/ports/sysdeps/unix/sysv/linux/ia64/has_cpuclock.c index 7fb3b928cb..d9e1d353b3 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/has_cpuclock.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/has_cpuclock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/ioperm.c b/ports/sysdeps/unix/sysv/linux/ia64/ioperm.c index 6a8d17c0f4..f2e5418d54 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/ioperm.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/ioperm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/kernel-features.h b/ports/sysdeps/unix/sysv/linux/ia64/kernel-features.h index 62024dfe85..340f679320 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/kernel-features.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/kernel-features.h @@ -1,6 +1,6 @@ /* Set flags signalling availability of kernel features based on given kernel version number. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/kernel_stat.h b/ports/sysdeps/unix/sysv/linux/ia64/kernel_stat.h index 603bfcb44a..a34bea5881 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/kernel_stat.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/kernel_stat.h @@ -1,5 +1,5 @@ /* Definition of `struct stat' used in the kernel. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/ldconfig.h b/ports/sysdeps/unix/sysv/linux/ia64/ldconfig.h index 2c260e8d19..94dcee6e1f 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/ldconfig.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/ldconfig.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/ldsodefs.h b/ports/sysdeps/unix/sysv/linux/ia64/ldsodefs.h index 1c35c9af24..5fdca2d579 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/ldsodefs.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. IA64. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/makecontext.c b/ports/sysdeps/unix/sysv/linux/ia64/makecontext.c index c3bb5de197..67ba3e0d6c 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/makecontext.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/makecontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/__ia64_longjmp.S b/ports/sysdeps/unix/sysv/linux/ia64/nptl/__ia64_longjmp.S index db61a2c58d..274f7588d5 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/__ia64_longjmp.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/__ia64_longjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. Contributed by David Mosberger-Tang . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c b/ports/sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c index 9d263f2852..8c6a85b3a9 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/local_lim.h b/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/local_lim.h index c1af6db0de..4278c09bb0 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/local_lim.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/local_lim.h @@ -1,5 +1,5 @@ /* Minimum guaranteed maximum values for system limits. Linux/IA-64 version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h b/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h index adc8b30da5..b77b80ab22 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/semaphore.h b/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/semaphore.h index e306c7b88e..a29b20ef13 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/semaphore.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/bits/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/createthread.c b/ports/sysdeps/unix/sysv/linux/ia64/nptl/createthread.c index 1798cda2c1..a2d5dec040 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/createthread.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/dl-sysdep.h b/ports/sysdeps/unix/sysv/linux/ia64/nptl/dl-sysdep.h index 886a4f0e50..64c6ecd4bc 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/dl-sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/dl-sysdep.h @@ -1,5 +1,5 @@ /* System-specific settings for dynamic linker code. IA-64 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/fork.c b/ports/sysdeps/unix/sysv/linux/ia64/nptl/fork.c index 9f4865f419..a6d319a439 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/fork.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h b/ports/sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h index 5518b8adeb..0105972b40 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/pt-vfork.S b/ports/sysdeps/unix/sysv/linux/ia64/nptl/pt-vfork.S index 1a012dbe5f..59b5b7a704 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/pt-vfork.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c b/ports/sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c index 5879f44fed..a231e55879 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/sysdep-cancel.h b/ports/sysdeps/unix/sysv/linux/ia64/nptl/sysdep-cancel.h index c133baf54e..5b08748949 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/sysdep-cancel.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/unwind-forcedunwind.c b/ports/sysdeps/unix/sysv/linux/ia64/nptl/unwind-forcedunwind.c index 8562afda6f..dd5229458b 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/unwind-forcedunwind.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/unwind-forcedunwind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/unwind_longjmp.c b/ports/sysdeps/unix/sysv/linux/ia64/nptl/unwind_longjmp.c index 371569e94b..0b55598e85 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/unwind_longjmp.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/unwind_longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/nptl/vfork.S b/ports/sysdeps/unix/sysv/linux/ia64/nptl/vfork.S index 215632ac98..f1ca305554 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/nptl/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/nptl/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/pipe.S b/ports/sysdeps/unix/sysv/linux/ia64/pipe.S index 0678f5fc83..1ee559bced 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/pipe.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/pipe.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger diff --git a/ports/sysdeps/unix/sysv/linux/ia64/profil-counter.h b/ports/sysdeps/unix/sysv/linux/ia64/profil-counter.h index be95f788ef..1bd5c218ca 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/profil-counter.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/profil-counter.h @@ -1,5 +1,5 @@ /* Machine-dependent SIGPROF signal handler. IA-64 version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/readelflib.c b/ports/sysdeps/unix/sysv/linux/ia64/readelflib.c index 025a8de209..067cb24bd2 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/readelflib.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/readelflib.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/register-dump.h b/ports/sysdeps/unix/sysv/linux/ia64/register-dump.h index 4a900dbdb1..564175caee 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/register-dump.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/ports/sysdeps/unix/sysv/linux/ia64/setcontext.S b/ports/sysdeps/unix/sysv/linux/ia64/setcontext.S index 4351267ba3..7c45e0fdca 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/setcontext.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/setcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/setjmp.S b/ports/sysdeps/unix/sysv/linux/ia64/setjmp.S index 1be53cca4d..94b18c3685 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/setjmp.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/setjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. Contributed by David Mosberger-Tang . The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c b/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c index 664d0e12b9..97f7f499be 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Linux/IA64 specific sigaction Written by Jes Sorensen, , April 1999. diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sigcontextinfo.h b/ports/sysdeps/unix/sysv/linux/ia64/sigcontextinfo.h index d1e468e17d..e0342a1a5b 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sigcontextinfo.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sigpending.c b/ports/sysdeps/unix/sysv/linux/ia64/sigpending.c index 42fce5022a..0529666293 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sigpending.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/sigpending.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sigprocmask.c b/ports/sysdeps/unix/sysv/linux/ia64/sigprocmask.c index 53b85800b2..f21002d3cb 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sigprocmask.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/sigprocmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Linux/IA64 specific sigprocmask Written by Jes Sorensen, , April 1999. diff --git a/ports/sysdeps/unix/sysv/linux/ia64/swapcontext.c b/ports/sysdeps/unix/sysv/linux/ia64/swapcontext.c index 718d1502e4..0227e6cd52 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/swapcontext.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/swapcontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sys/io.h b/ports/sysdeps/unix/sysv/linux/ia64/sys/io.h index 36d36560e9..dd69c0f4b9 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sys/io.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/sys/io.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sys/procfs.h b/ports/sysdeps/unix/sysv/linux/ia64/sys/procfs.h index 29d1c42a61..fac96c3d47 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sys/procfs.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sys/ptrace.h b/ports/sysdeps/unix/sysv/linux/ia64/sys/ptrace.h index d6f390841f..0ea6d4024c 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sys/ptrace.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/sys/ptrace.h @@ -1,5 +1,5 @@ /* `ptrace' debugger support interface. Linux/ia64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sys/rse.h b/ports/sysdeps/unix/sysv/linux/ia64/sys/rse.h index abcd14686c..e6f85f91a2 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sys/rse.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/sys/rse.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h b/ports/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h index 8ec28d5fd4..0dc562e713 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sys/user.h b/ports/sysdeps/unix/sysv/linux/ia64/sys/user.h index 535079abad..afc939a5ae 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sys/user.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/syscall.S b/ports/sysdeps/unix/sysv/linux/ia64/syscall.S index 4cd75b8d4c..826f14cbd2 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/syscall.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jes Sorensen . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sysconf.c b/ports/sysdeps/unix/sysv/linux/ia64/sysconf.c index c19fa7d0ad..d6be7ba1d3 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sysconf.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/sysconf.c @@ -1,5 +1,5 @@ /* Get file-specific information about a file. Linux/ia64 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sysdep.S b/ports/sysdeps/unix/sysv/linux/ia64/sysdep.S index 3bef5a0283..004ade1627 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sysdep.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sysdep.h b/ports/sysdeps/unix/sysv/linux/ia64/sysdep.h index 96f6a4e8a5..4b732632d6 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jes Sorensen, , April 1999. Based on code originally written by David Mosberger-Tang diff --git a/ports/sysdeps/unix/sysv/linux/ia64/system.c b/ports/sysdeps/unix/sysv/linux/ia64/system.c index 5be2385f02..7ac8afcb8d 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/system.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/system.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/ucontext_i.h b/ports/sysdeps/unix/sysv/linux/ia64/ucontext_i.h index f6dff999a0..72b462e643 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/ucontext_i.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/ucontext_i.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger-Tang . diff --git a/ports/sysdeps/unix/sysv/linux/ia64/umount.c b/ports/sysdeps/unix/sysv/linux/ia64/umount.c index a3df7863fa..31a8090155 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/umount.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/umount.c @@ -1,5 +1,5 @@ /* umount system call for Linux/ia64. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/vfork.S b/ports/sysdeps/unix/sysv/linux/ia64/vfork.S index e59a7802d4..0422104b45 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/ia64/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/ia64/wordexp.c b/ports/sysdeps/unix/sysv/linux/ia64/wordexp.c index 1c486db0b0..c55658446a 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/wordexp.c +++ b/ports/sysdeps/unix/sysv/linux/ia64/wordexp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/____longjmp_chk.c b/ports/sysdeps/unix/sysv/linux/m68k/____longjmp_chk.c index 10cd621e1a..8c31c1957d 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/____longjmp_chk.c +++ b/ports/sysdeps/unix/sysv/linux/m68k/____longjmp_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/bits/fcntl.h b/ports/sysdeps/unix/sysv/linux/m68k/bits/fcntl.h index 9539bd7fe9..1238865603 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/bits/fcntl.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h b/ports/sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h index 3362cd8e97..f967524e2e 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h @@ -1,5 +1,5 @@ /* Resolve function pointers to VDSO functions. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/bits/mman.h b/ports/sysdeps/unix/sysv/linux/m68k/bits/mman.h index b89011aee1..dfdbcbb7c3 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/bits/mman.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/m68k version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/bits/poll.h b/ports/sysdeps/unix/sysv/linux/m68k/bits/poll.h index 15abe7bc5d..7936db3a88 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/bits/poll.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/bits/poll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/bits/stat.h b/ports/sysdeps/unix/sysv/linux/m68k/bits/stat.h index da6e45647c..c0bed57ded 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/bits/stat.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/brk.c b/ports/sysdeps/unix/sysv/linux/m68k/brk.c index ce82a7b320..a5b7ca028c 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/brk.c +++ b/ports/sysdeps/unix/sysv/linux/m68k/brk.c @@ -1,5 +1,5 @@ /* brk system call for Linux/m68k. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/clone.S b/ports/sysdeps/unix/sysv/linux/m68k/clone.S index ff430c9953..764f572e89 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/clone.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab (schwab@issan.informatik.uni-dortmund.de) diff --git a/ports/sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h b/ports/sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h index 6bc1f6f442..cd9bae324e 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h b/ports/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h index 0cbad480ab..93688ac3d4 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/dl-static.c b/ports/sysdeps/unix/sysv/linux/m68k/dl-static.c index 3c99e40a4d..72b98987cd 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/dl-static.c +++ b/ports/sysdeps/unix/sysv/linux/m68k/dl-static.c @@ -1,5 +1,5 @@ /* Variable initialization. M68K version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/getpagesize.c b/ports/sysdeps/unix/sysv/linux/m68k/getpagesize.c index 47527700b6..f7f72fbd8d 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/getpagesize.c +++ b/ports/sysdeps/unix/sysv/linux/m68k/getpagesize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/ports/sysdeps/unix/sysv/linux/m68k/getsysstats.c b/ports/sysdeps/unix/sysv/linux/m68k/getsysstats.c index bc2ebae3bd..c8aeb0fa1d 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/getsysstats.c +++ b/ports/sysdeps/unix/sysv/linux/m68k/getsysstats.c @@ -1,5 +1,5 @@ /* Determine various system internal values, Linux/m68k version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab diff --git a/ports/sysdeps/unix/sysv/linux/m68k/init-first.c b/ports/sysdeps/unix/sysv/linux/m68k/init-first.c index fb294040e6..5d37af7654 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/init-first.c +++ b/ports/sysdeps/unix/sysv/linux/m68k/init-first.c @@ -1,5 +1,5 @@ /* Initialization code run first thing by the ELF startup code. Linux/m68k. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/kernel-features.h b/ports/sysdeps/unix/sysv/linux/m68k/kernel-features.h index e9763cb1d2..3b05e96610 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/kernel-features.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/kernel-features.h @@ -1,6 +1,6 @@ /* Set flags signalling availability of kernel features based on given kernel version number. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/ldsodefs.h b/ports/sysdeps/unix/sysv/linux/m68k/ldsodefs.h index 18b22e8646..5ae1d6f899 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/ldsodefs.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. M68K. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/m680x0/getcontext.S b/ports/sysdeps/unix/sysv/linux/m68k/m680x0/getcontext.S index 0f165fa603..d383f95cc0 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/m680x0/getcontext.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/m680x0/getcontext.S @@ -1,5 +1,5 @@ /* Save current context. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/m680x0/makecontext.S b/ports/sysdeps/unix/sysv/linux/m68k/m680x0/makecontext.S index f90996c467..0d98753eec 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/m680x0/makecontext.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/m680x0/makecontext.S @@ -1,5 +1,5 @@ /* Create new context. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/m680x0/setcontext.S b/ports/sysdeps/unix/sysv/linux/m68k/m680x0/setcontext.S index 7cae85ef36..9242c55e87 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/m680x0/setcontext.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/m680x0/setcontext.S @@ -1,5 +1,5 @@ /* Install given context. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/m680x0/swapcontext.S b/ports/sysdeps/unix/sysv/linux/m68k/m680x0/swapcontext.S index f6890f6372..e7a73944b7 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/m680x0/swapcontext.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/m680x0/swapcontext.S @@ -1,5 +1,5 @@ /* Save current context and install the given one. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h b/ports/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h index 0a570853fe..1eb914017f 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/m68k-helpers.S b/ports/sysdeps/unix/sysv/linux/m68k/m68k-helpers.S index ade57fa3f3..032b1f2982 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/m68k-helpers.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/m68k-helpers.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/m68k-vdso.c b/ports/sysdeps/unix/sysv/linux/m68k/m68k-vdso.c index 7821cce00b..4573654a4f 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/m68k-vdso.c +++ b/ports/sysdeps/unix/sysv/linux/m68k/m68k-vdso.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/mmap.S b/ports/sysdeps/unix/sysv/linux/m68k/mmap.S index c21f27b8ec..c6877f76ec 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/mmap.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/mmap.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/mremap.S b/ports/sysdeps/unix/sysv/linux/m68k/mremap.S index 60cf87ea9f..22d1251471 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/mremap.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/mremap.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h b/ports/sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h index 13293e991b..283f240d55 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h b/ports/sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h index bcd5aa35bf..eff626cea2 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/nptl/createthread.c b/ports/sysdeps/unix/sysv/linux/m68k/nptl/createthread.c index 35225e4552..f0508a1bc1 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/nptl/createthread.c +++ b/ports/sysdeps/unix/sysv/linux/m68k/nptl/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/nptl/fork.c b/ports/sysdeps/unix/sysv/linux/m68k/nptl/fork.c index 6b632cd39f..69f9c6f202 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/nptl/fork.c +++ b/ports/sysdeps/unix/sysv/linux/m68k/nptl/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h b/ports/sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h index 3a2547765f..ba36d93090 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S b/ports/sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S index 55fec2f945..0689e682cf 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c b/ports/sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c index 8a1f307639..01542e9c74 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c +++ b/ports/sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h b/ports/sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h index de90332af4..868ce56687 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/nptl/vfork.S b/ports/sysdeps/unix/sysv/linux/m68k/nptl/vfork.S index b779322403..ab52fa89ba 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/nptl/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/nptl/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maxim Kuvyrkov , 2010. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/register-dump.h b/ports/sysdeps/unix/sysv/linux/m68k/register-dump.h index 1ad471eeba..51f5fca0d9 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/register-dump.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/ports/sysdeps/unix/sysv/linux/m68k/semtimedop.S b/ports/sysdeps/unix/sysv/linux/m68k/semtimedop.S index 8f3eec12c8..5fca8f5001 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/semtimedop.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/semtimedop.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab , 2003. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/sigcontextinfo.h b/ports/sysdeps/unix/sysv/linux/m68k/sigcontextinfo.h index 474c504890..4daf1df050 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/sigcontextinfo.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab , 1998. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/socket.S b/ports/sysdeps/unix/sysv/linux/m68k/socket.S index d82d30c2ce..a2521deb1e 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/socket.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/socket.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/sys/procfs.h b/ports/sysdeps/unix/sysv/linux/m68k/sys/procfs.h index 7b473715cb..6c25814ec6 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/sys/procfs.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/sys/reg.h b/ports/sysdeps/unix/sysv/linux/m68k/sys/reg.h index 3f4b565d6d..ba2a69528a 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/sys/reg.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/sys/reg.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/sys/ucontext.h b/ports/sysdeps/unix/sysv/linux/m68k/sys/ucontext.h index 11ad0868b5..8c5ca3dff3 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/sys/ucontext.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/sys/user.h b/ports/sysdeps/unix/sysv/linux/m68k/sys/user.h index 4647e6de5b..bc21dedcdf 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/sys/user.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/syscall.S b/ports/sysdeps/unix/sysv/linux/m68k/syscall.S index 642954b9d7..c0e116822d 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/syscall.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/sysdep.S b/ports/sysdeps/unix/sysv/linux/m68k/sysdep.S index 905cb10f2d..cf274d5881 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/sysdep.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/m68k/sysdep.h b/ports/sysdeps/unix/sysv/linux/m68k/sysdep.h index 9b34ef1256..3a91e867f3 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/m68k/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Andreas Schwab, , December 1995. diff --git a/ports/sysdeps/unix/sysv/linux/m68k/vfork.S b/ports/sysdeps/unix/sysv/linux/m68k/vfork.S index 07ff17f518..3745287cbf 100644 --- a/ports/sysdeps/unix/sysv/linux/m68k/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/m68k/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/____longjmp_chk.S b/ports/sysdeps/unix/sysv/linux/microblaze/____longjmp_chk.S index ff3fda41bf..5a7042e880 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/____longjmp_chk.S +++ b/ports/sysdeps/unix/sysv/linux/microblaze/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/bits/fcntl.h b/ports/sysdeps/unix/sysv/linux/microblaze/bits/fcntl.h index 1a7bd42635..5d8ee03c1e 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/bits/fcntl.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/bits/mman.h b/ports/sysdeps/unix/sysv/linux/microblaze/bits/mman.h index 5dd530203b..4807bc8bce 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/bits/mman.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/bits/mman.h @@ -1,6 +1,6 @@ /* Definitions for POSIX memory map interface. Linux/MicroBlaze version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/bits/stat.h b/ports/sysdeps/unix/sysv/linux/microblaze/bits/stat.h index e41d99270f..6175979782 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/bits/stat.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/brk.c b/ports/sysdeps/unix/sysv/linux/microblaze/brk.c index 9f19fb2adc..199a1abe73 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/brk.c +++ b/ports/sysdeps/unix/sysv/linux/microblaze/brk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/clone.S b/ports/sysdeps/unix/sysv/linux/microblaze/clone.S index c13091c052..c11213c2bd 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/clone.S +++ b/ports/sysdeps/unix/sysv/linux/microblaze/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/getsysstats.c b/ports/sysdeps/unix/sysv/linux/microblaze/getsysstats.c index 7baa13d732..4aee4546be 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/getsysstats.c +++ b/ports/sysdeps/unix/sysv/linux/microblaze/getsysstats.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/kernel-features.h b/ports/sysdeps/unix/sysv/linux/microblaze/kernel-features.h index d67d7fb694..dcc0ac9bbc 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/kernel-features.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/kernel-features.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/kernel_stat.h b/ports/sysdeps/unix/sysv/linux/microblaze/kernel_stat.h index 12d718ef04..dc7c495e6b 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/kernel_stat.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/kernel_stat.h @@ -1,5 +1,5 @@ /* Definition of `struct stat' used in the kernel - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/mmap.S b/ports/sysdeps/unix/sysv/linux/microblaze/mmap.S index 2b671897ee..34f6b3ba7d 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/mmap.S +++ b/ports/sysdeps/unix/sysv/linux/microblaze/mmap.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h index bb914a097a..ca053e3e18 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h index 25bf2d293c..6db4c11ba6 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c index 2e645f35ee..4f2de2bdc3 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c +++ b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/fork.c b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/fork.c index e8b26da9e3..66888a6b08 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/fork.c +++ b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h index 70f5537e28..47e18061e1 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S index 51d787fbcd..603cf566cb 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S +++ b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c index b1f2f4d04e..99d998e682 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c +++ b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S index a9d8376eae..6b7b81de4a 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/sigcontextinfo.h b/ports/sysdeps/unix/sysv/linux/microblaze/sigcontextinfo.h index e03effa4b6..1b46b0726c 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/sigcontextinfo.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/socket.S b/ports/sysdeps/unix/sysv/linux/microblaze/socket.S index 229f54f7e1..ab1cb54070 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/socket.S +++ b/ports/sysdeps/unix/sysv/linux/microblaze/socket.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/sys/procfs.h b/ports/sysdeps/unix/sysv/linux/microblaze/sys/procfs.h index 265ef682e8..0462c7d7e2 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/sys/procfs.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/sys/user.h b/ports/sysdeps/unix/sysv/linux/microblaze/sys/user.h index a633042902..6aeaeaa2e0 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/sys/user.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/syscall.S b/ports/sysdeps/unix/sysv/linux/microblaze/syscall.S index 7e5cea4438..1d97805e05 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/syscall.S +++ b/ports/sysdeps/unix/sysv/linux/microblaze/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/sysdep.S b/ports/sysdeps/unix/sysv/linux/microblaze/sysdep.S index 44fd00a6de..708da09274 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/sysdep.S +++ b/ports/sysdeps/unix/sysv/linux/microblaze/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/microblaze/sysdep.h b/ports/sysdeps/unix/sysv/linux/microblaze/sysdep.h index 0522dc02e1..5a98d72144 100644 --- a/ports/sysdeps/unix/sysv/linux/microblaze/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/microblaze/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/ports/sysdeps/unix/sysv/linux/mips/____longjmp_chk.c b/ports/sysdeps/unix/sysv/linux/mips/____longjmp_chk.c index 6d94f2600a..6e329eb08a 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/____longjmp_chk.c +++ b/ports/sysdeps/unix/sysv/linux/mips/____longjmp_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/_test_and_set.c b/ports/sysdeps/unix/sysv/linux/mips/_test_and_set.c index 87281f1cd3..6619f948cd 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/_test_and_set.c +++ b/ports/sysdeps/unix/sysv/linux/mips/_test_and_set.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maciej W. Rozycki , 2000. diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/epoll.h b/ports/sysdeps/unix/sysv/linux/mips/bits/epoll.h index d8b82053e0..e3ebf8d5fe 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/epoll.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/epoll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/errno.h b/ports/sysdeps/unix/sysv/linux/mips/bits/errno.h index d15bc6972d..95f1aebee1 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/errno.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/errno.h @@ -1,5 +1,5 @@ /* Error constants. MIPS/Linux specific version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/eventfd.h b/ports/sysdeps/unix/sysv/linux/mips/bits/eventfd.h index 17b2f469eb..c98fa05fab 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/eventfd.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/eventfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/fcntl.h b/ports/sysdeps/unix/sysv/linux/mips/bits/fcntl.h index daf563b0e6..97923ae4c3 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/fcntl.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/inotify.h b/ports/sysdeps/unix/sysv/linux/mips/bits/inotify.h index e7f84b452d..fa4f393b51 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/inotify.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/inotify.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/ioctl-types.h b/ports/sysdeps/unix/sysv/linux/mips/bits/ioctl-types.h index 7b71ab5625..6a0d22a225 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/ioctl-types.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/ioctl-types.h @@ -1,5 +1,5 @@ /* Structure types for pre-termios terminal ioctls. Linux/MIPS version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/ipc.h b/ports/sysdeps/unix/sysv/linux/mips/bits/ipc.h index 82496d6841..649e74a592 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/ipc.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/ipc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/mman.h b/ports/sysdeps/unix/sysv/linux/mips/bits/mman.h index b327795f89..011e1588fb 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/mman.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/MIPS version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/msq.h b/ports/sysdeps/unix/sysv/linux/mips/bits/msq.h index f97585cfd3..0b3b2283c9 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/msq.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/poll.h b/ports/sysdeps/unix/sysv/linux/mips/bits/poll.h index 15abe7bc5d..7936db3a88 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/poll.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/poll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/resource.h b/ports/sysdeps/unix/sysv/linux/mips/bits/resource.h index e30bbebabc..631bae34bb 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/resource.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/resource.h @@ -1,5 +1,5 @@ /* Bit values & structures for resource limits. Linux/MIPS version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/sem.h b/ports/sysdeps/unix/sysv/linux/mips/bits/sem.h index 739cbc415f..6bd5007e84 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/sem.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/shm.h b/ports/sysdeps/unix/sysv/linux/mips/bits/shm.h index 28d8ab05d1..21461d453e 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/shm.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/sigaction.h b/ports/sysdeps/unix/sysv/linux/mips/bits/sigaction.h index 251c3680e4..c84b592fdb 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/sigaction.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/sigaction.h @@ -1,5 +1,5 @@ /* The proper definitions for Linux/MIPS's sigaction. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/sigcontext.h b/ports/sysdeps/unix/sysv/linux/mips/bits/sigcontext.h index f3c5180b8f..f0ab7dc0da 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/sigcontext.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/sigcontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/siginfo.h b/ports/sysdeps/unix/sysv/linux/mips/bits/siginfo.h index a9a845a617..eaabc309eb 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/siginfo.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/siginfo.h @@ -1,5 +1,5 @@ /* siginfo_t, sigevent and constants. Linux/MIPS version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/signalfd.h b/ports/sysdeps/unix/sysv/linux/mips/bits/signalfd.h index 8577b6c712..3a41dc206f 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/signalfd.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/signalfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/signum.h b/ports/sysdeps/unix/sysv/linux/mips/bits/signum.h index 267def0214..fb911c90bb 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/signum.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/signum.h @@ -1,5 +1,5 @@ /* Signal number definitions. Linux version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/sigstack.h b/ports/sysdeps/unix/sysv/linux/mips/bits/sigstack.h index 743cc172f7..4b93c05e5f 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/sigstack.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/sigstack.h @@ -1,5 +1,5 @@ /* sigstack, sigaltstack definitions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/socket_type.h b/ports/sysdeps/unix/sysv/linux/mips/bits/socket_type.h index c5862881d3..a2a813df90 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/socket_type.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/socket_type.h @@ -1,5 +1,5 @@ /* Define enum __socket_type for Linux/MIPS. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/stat.h b/ports/sysdeps/unix/sysv/linux/mips/bits/stat.h index becb4282ce..8a1527217e 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/stat.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/statfs.h b/ports/sysdeps/unix/sysv/linux/mips/bits/statfs.h index e7840b97b8..9c3c2777e4 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/statfs.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/statfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/termios.h b/ports/sysdeps/unix/sysv/linux/mips/bits/termios.h index 1f3c47c5d1..51059f5336 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/termios.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/termios.h @@ -1,5 +1,5 @@ /* termios type and macro definitions. Linux/MIPS version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/bits/timerfd.h b/ports/sysdeps/unix/sysv/linux/mips/bits/timerfd.h index 91ed6c6a72..3016f5c918 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/bits/timerfd.h +++ b/ports/sysdeps/unix/sysv/linux/mips/bits/timerfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/brk.c b/ports/sysdeps/unix/sysv/linux/mips/brk.c index 07c8a9649f..09d588fbfb 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/brk.c +++ b/ports/sysdeps/unix/sysv/linux/mips/brk.c @@ -1,5 +1,5 @@ /* brk system call for Linux/MIPS. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/clone.S b/ports/sysdeps/unix/sysv/linux/mips/clone.S index f6f2f05659..d3fd80f993 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/clone.S +++ b/ports/sysdeps/unix/sysv/linux/mips/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ralf Baechle , 1996. diff --git a/ports/sysdeps/unix/sysv/linux/mips/dl-cache.h b/ports/sysdeps/unix/sysv/linux/mips/dl-cache.h index 49ad99ab92..2846608cfe 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/dl-cache.h +++ b/ports/sysdeps/unix/sysv/linux/mips/dl-cache.h @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/dl-static.c b/ports/sysdeps/unix/sysv/linux/mips/dl-static.c index 9290ed9ed3..a98b92136c 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/dl-static.c +++ b/ports/sysdeps/unix/sysv/linux/mips/dl-static.c @@ -1,5 +1,5 @@ /* Variable initialization. MIPS version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/getcontext.S b/ports/sysdeps/unix/sysv/linux/mips/getcontext.S index 268098c0b1..1e0a2776cc 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/getcontext.S +++ b/ports/sysdeps/unix/sysv/linux/mips/getcontext.S @@ -1,5 +1,5 @@ /* Save current context. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maciej W. Rozycki . diff --git a/ports/sysdeps/unix/sysv/linux/mips/getrlimit64.c b/ports/sysdeps/unix/sysv/linux/mips/getrlimit64.c index bd2e523f81..f3b3331228 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/getrlimit64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/getrlimit64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/getsysstats.c b/ports/sysdeps/unix/sysv/linux/mips/getsysstats.c index e4b852f7e6..b11d0b9262 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/getsysstats.c +++ b/ports/sysdeps/unix/sysv/linux/mips/getsysstats.c @@ -1,5 +1,5 @@ /* Determine various system internal values, Linux/MIPS version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/kernel-features.h b/ports/sysdeps/unix/sysv/linux/mips/kernel-features.h index 923b7cc4a5..1c83ee558d 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/kernel-features.h +++ b/ports/sysdeps/unix/sysv/linux/mips/kernel-features.h @@ -1,6 +1,6 @@ /* Set flags signalling availability of kernel features based on given kernel version number. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/kernel_termios.h b/ports/sysdeps/unix/sysv/linux/mips/kernel_termios.h index f35db32ed4..f202d074bb 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/kernel_termios.h +++ b/ports/sysdeps/unix/sysv/linux/mips/kernel_termios.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/ldsodefs.h b/ports/sysdeps/unix/sysv/linux/mips/ldsodefs.h index 76c38c8d29..d7c62f4b9c 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/ldsodefs.h +++ b/ports/sysdeps/unix/sysv/linux/mips/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. MIPS. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/makecontext.S b/ports/sysdeps/unix/sysv/linux/mips/makecontext.S index a8bbebbcc0..c61216cd9c 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/makecontext.S +++ b/ports/sysdeps/unix/sysv/linux/mips/makecontext.S @@ -1,5 +1,5 @@ /* Modify saved context. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maciej W. Rozycki . diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/accept4.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/accept4.c index 92d244e680..344d521943 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/accept4.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/accept4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/ftruncate64.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/ftruncate64.c index 7fba41ab69..49631d4432 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/ftruncate64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/ftruncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall.h b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall.h index 8449836d32..3b3993671e 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall.h +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall.h @@ -1,5 +1,5 @@ /* MIPS16 syscall wrappers. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall0.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall0.c index 0cdf94c22c..e5eae849f8 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall0.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall0.c @@ -1,5 +1,5 @@ /* MIPS16 syscall wrappers. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall1.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall1.c index 5e60a59d56..cb2bbd0c6f 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall1.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall1.c @@ -1,5 +1,5 @@ /* MIPS16 syscall wrappers. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall2.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall2.c index 7750c519ce..027d9b83a2 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall2.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall2.c @@ -1,5 +1,5 @@ /* MIPS16 syscall wrappers. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall3.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall3.c index 7fc1c4e435..a3cc9152eb 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall3.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall3.c @@ -1,5 +1,5 @@ /* MIPS16 syscall wrappers. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall4.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall4.c index b8b4198c78..63db08742d 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall4.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall4.c @@ -1,5 +1,5 @@ /* MIPS16 syscall wrappers. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall5.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall5.c index e1322d107f..86bfdc4fbc 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall5.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall5.c @@ -1,5 +1,5 @@ /* MIPS16 syscall wrappers. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall6.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall6.c index a9e5cd9dfe..5b76604cfd 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall6.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall6.c @@ -1,5 +1,5 @@ /* MIPS16 syscall wrappers. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall7.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall7.c index d87b5ba5a8..5e33ce18da 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall7.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall7.c @@ -1,5 +1,5 @@ /* MIPS16 syscall wrappers. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/posix_fadvise.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/posix_fadvise.c index c410e56df5..03caa67f2e 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/posix_fadvise.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/posix_fadvise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/posix_fadvise64.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/posix_fadvise64.c index bd2df3c6a1..b312fbdf05 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/posix_fadvise64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/posix_fadvise64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c index 023416813a..fa176e7e0b 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c index 8d7acb7ede..e7287de46e 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/sync_file_range.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/sync_file_range.c index f0884fbf8f..f80cca0585 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/sync_file_range.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/sync_file_range.c @@ -1,5 +1,5 @@ /* Selective file content synch'ing. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h b/ports/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h index 0faf68c4fc..6a7ea5047a 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/truncate64.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/truncate64.c index 6e52e32637..dbbb5fcb44 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips32/truncate64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/truncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstat64.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstat64.c index 624994022f..5ee021bf94 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstat64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstat64.c @@ -1,5 +1,5 @@ /* fxstat64 using 64-bit MIPS fstat system call. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c index ca2f2f6153..4003b6e63f 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/ldconfig.h b/ports/sysdeps/unix/sysv/linux/mips/mips64/ldconfig.h index a92acc8ddc..47ca922b7f 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/ldconfig.h +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/ldconfig.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/lxstat64.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/lxstat64.c index b01204deb7..1b520d373e 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/lxstat64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/lxstat64.c @@ -1,5 +1,5 @@ /* lxstat64 using 64-bit MIPS lstat system call. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/msgctl.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/msgctl.c index 3b94b1befe..e510b36648 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/msgctl.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/msgctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/fallocate.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/fallocate.c index 752cbe7306..c74335824f 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/fallocate.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/fallocate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/fallocate64.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/fallocate64.c index 5611bf610d..9c893cb688 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/fallocate64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/fallocate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise.c index d108d10462..1a75cf4652 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise64.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise64.c index 12bb7a0efc..5c718abd3a 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fadvise64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate.c index 6eb317d5b4..95ca363e9f 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate64.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate64.c index 9753ec2e8a..a61969f6d6 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h index b2a9a95796..47d07f8a7e 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S b/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S index c5f1c350ed..d2c645f6db 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S @@ -1,4 +1,4 @@ -/* Copyright 2003-2013 Free Software Foundation, Inc. +/* Copyright 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c index 638bf56439..1465058265 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h b/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h index 844a7e880c..a9f9649e74 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h b/ports/sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h index 157cc38259..d9e7236a37 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/semctl.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/semctl.c index e43e8937a5..57e453d645 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/semctl.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/semctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/shmctl.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/shmctl.c index 197f7eb809..aa8244601a 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/shmctl.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/shmctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/syscall.S b/ports/sysdeps/unix/sysv/linux/mips/mips64/syscall.S index 850025c635..213c2d12e8 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/syscall.S +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/xstat64.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/xstat64.c index 89cde2b33a..25afb7afe1 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/mips64/xstat64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/xstat64.c @@ -1,5 +1,5 @@ /* xstat64 using 64-bit MIPS stat system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h b/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h index a1fb9782d8..2366908d9c 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h +++ b/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h @@ -1,5 +1,5 @@ /* Minimum guaranteed maximum values for system limits. MIPS Linux version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h b/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h index 22a94dbf51..9d9386b146 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h +++ b/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h @@ -1,5 +1,5 @@ /* Machine-specific pthread type layouts. MIPS version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h b/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h index de0f39242d..c48c6c1716 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h +++ b/ports/sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/nptl/createthread.c b/ports/sysdeps/unix/sysv/linux/mips/nptl/createthread.c index da171db262..bcc6502537 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/nptl/createthread.c +++ b/ports/sysdeps/unix/sysv/linux/mips/nptl/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/nptl/lowlevellock.h b/ports/sysdeps/unix/sysv/linux/mips/nptl/lowlevellock.h index 208df8d682..07467f3790 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/nptl/lowlevellock.h +++ b/ports/sysdeps/unix/sysv/linux/mips/nptl/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S b/ports/sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S index 407bd17968..85c55c943f 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S +++ b/ports/sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c b/ports/sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c index 97f1ddf9b4..3e3430dbc6 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c +++ b/ports/sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/unix/sysv/linux/mips/nptl/sysdep-cancel.h b/ports/sysdeps/unix/sysv/linux/mips/nptl/sysdep-cancel.h index 3b0eccc77f..3666081266 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/nptl/sysdep-cancel.h +++ b/ports/sysdeps/unix/sysv/linux/mips/nptl/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/nptl/vfork.S b/ports/sysdeps/unix/sysv/linux/mips/nptl/vfork.S index 5e9f9dd6d2..7f1068c2eb 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/nptl/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/mips/nptl/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/pread.c b/ports/sysdeps/unix/sysv/linux/mips/pread.c index db18265e3d..38fb06bfe3 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/pread.c +++ b/ports/sysdeps/unix/sysv/linux/mips/pread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/mips/pread64.c b/ports/sysdeps/unix/sysv/linux/mips/pread64.c index 3b8c8aa720..9c2d5fd612 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/pread64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/pread64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/mips/pwrite.c b/ports/sysdeps/unix/sysv/linux/mips/pwrite.c index 94213bc8ba..426a534596 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/pwrite.c +++ b/ports/sysdeps/unix/sysv/linux/mips/pwrite.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/mips/pwrite64.c b/ports/sysdeps/unix/sysv/linux/mips/pwrite64.c index aa8a4dec35..6e12d5d00e 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/pwrite64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/pwrite64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ralf Baechle , 1998. diff --git a/ports/sysdeps/unix/sysv/linux/mips/readelflib.c b/ports/sysdeps/unix/sysv/linux/mips/readelflib.c index fd57a735c3..5643fde593 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/readelflib.c +++ b/ports/sysdeps/unix/sysv/linux/mips/readelflib.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Alexandre Oliva Based on work ../x86_64/readelflib.c, diff --git a/ports/sysdeps/unix/sysv/linux/mips/register-dump.h b/ports/sysdeps/unix/sysv/linux/mips/register-dump.h index d423f659a2..86c530f887 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/register-dump.h +++ b/ports/sysdeps/unix/sysv/linux/mips/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2000. diff --git a/ports/sysdeps/unix/sysv/linux/mips/setcontext.S b/ports/sysdeps/unix/sysv/linux/mips/setcontext.S index 2d5aee013b..beeb2a5f60 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/setcontext.S +++ b/ports/sysdeps/unix/sysv/linux/mips/setcontext.S @@ -1,5 +1,5 @@ /* Set current context. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maciej W. Rozycki . diff --git a/ports/sysdeps/unix/sysv/linux/mips/setrlimit64.c b/ports/sysdeps/unix/sysv/linux/mips/setrlimit64.c index 33af37b5c9..73d60950f2 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/setrlimit64.c +++ b/ports/sysdeps/unix/sysv/linux/mips/setrlimit64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/sigaction.c b/ports/sysdeps/unix/sysv/linux/mips/sigaction.c index 9d8ee76d02..a8ba3fe97a 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/sigaction.c +++ b/ports/sysdeps/unix/sysv/linux/mips/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/sigcontextinfo.h b/ports/sysdeps/unix/sysv/linux/mips/sigcontextinfo.h index afb9cccff7..3d9011421d 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/sigcontextinfo.h +++ b/ports/sysdeps/unix/sysv/linux/mips/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2000. diff --git a/ports/sysdeps/unix/sysv/linux/mips/swapcontext.S b/ports/sysdeps/unix/sysv/linux/mips/swapcontext.S index ec271b0584..2a79976411 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/swapcontext.S +++ b/ports/sysdeps/unix/sysv/linux/mips/swapcontext.S @@ -1,5 +1,5 @@ /* Save and set current context. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Maciej W. Rozycki . diff --git a/ports/sysdeps/unix/sysv/linux/mips/sys/cachectl.h b/ports/sysdeps/unix/sysv/linux/mips/sys/cachectl.h index 8a9f5bff50..d37dcef895 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/sys/cachectl.h +++ b/ports/sysdeps/unix/sysv/linux/mips/sys/cachectl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/sys/procfs.h b/ports/sysdeps/unix/sysv/linux/mips/sys/procfs.h index d07c7e1051..2aa2dabe2c 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/sys/procfs.h +++ b/ports/sysdeps/unix/sysv/linux/mips/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/sys/sysmips.h b/ports/sysdeps/unix/sysv/linux/mips/sys/sysmips.h index bc9d57efd1..fa71eea906 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/sys/sysmips.h +++ b/ports/sysdeps/unix/sysv/linux/mips/sys/sysmips.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/sys/ucontext.h b/ports/sysdeps/unix/sysv/linux/mips/sys/ucontext.h index ed5470522e..807ed539aa 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/sys/ucontext.h +++ b/ports/sysdeps/unix/sysv/linux/mips/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/ports/sysdeps/unix/sysv/linux/mips/sys/user.h b/ports/sysdeps/unix/sysv/linux/mips/sys/user.h index 37fc568936..18ff3a9824 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/sys/user.h +++ b/ports/sysdeps/unix/sysv/linux/mips/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/ustat.c b/ports/sysdeps/unix/sysv/linux/mips/ustat.c index 6db482e96b..91f27ec1e1 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/ustat.c +++ b/ports/sysdeps/unix/sysv/linux/mips/ustat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/ports/sysdeps/unix/sysv/linux/mips/vfork.S b/ports/sysdeps/unix/sysv/linux/mips/vfork.S index ae76a91d38..0913d6b7f9 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/mips/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/mips/xstatconv.c b/ports/sysdeps/unix/sysv/linux/mips/xstatconv.c index 3fe65b1352..38819e19b0 100644 --- a/ports/sysdeps/unix/sysv/linux/mips/xstatconv.c +++ b/ports/sysdeps/unix/sysv/linux/mips/xstatconv.c @@ -1,5 +1,5 @@ /* Convert between the kernel's `struct stat' format, and libc's. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/tile/bits/environments.h b/ports/sysdeps/unix/sysv/linux/tile/bits/environments.h index 6b8eaaaf8d..d7003aa92e 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/bits/environments.h +++ b/ports/sysdeps/unix/sysv/linux/tile/bits/environments.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/bits/libc-vdso.h b/ports/sysdeps/unix/sysv/linux/tile/bits/libc-vdso.h index 7b54068773..c4aec16d19 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/bits/libc-vdso.h +++ b/ports/sysdeps/unix/sysv/linux/tile/bits/libc-vdso.h @@ -1,5 +1,5 @@ /* Resolve function pointers to VDSO functions. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/tile/bits/local_lim.h b/ports/sysdeps/unix/sysv/linux/tile/bits/local_lim.h index cc363073de..4e5605fd52 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/bits/local_lim.h +++ b/ports/sysdeps/unix/sysv/linux/tile/bits/local_lim.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/bits/mman.h b/ports/sysdeps/unix/sysv/linux/tile/bits/mman.h index 02fddecc15..f97f275e85 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/bits/mman.h +++ b/ports/sysdeps/unix/sysv/linux/tile/bits/mman.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/bits/sigaction.h b/ports/sysdeps/unix/sysv/linux/tile/bits/sigaction.h index febd062ab5..76a6aae158 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/bits/sigaction.h +++ b/ports/sysdeps/unix/sysv/linux/tile/bits/sigaction.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/bits/siginfo.h b/ports/sysdeps/unix/sysv/linux/tile/bits/siginfo.h index 7b40f3db03..089edb2e86 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/bits/siginfo.h +++ b/ports/sysdeps/unix/sysv/linux/tile/bits/siginfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/cacheflush.c b/ports/sysdeps/unix/sysv/linux/tile/cacheflush.c index c60ac71bd8..fcf725cb3d 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/cacheflush.c +++ b/ports/sysdeps/unix/sysv/linux/tile/cacheflush.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/dl-static.c b/ports/sysdeps/unix/sysv/linux/tile/dl-static.c index 5b59a04dc4..8a749f23d9 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/dl-static.c +++ b/ports/sysdeps/unix/sysv/linux/tile/dl-static.c @@ -1,5 +1,5 @@ /* Variable initialization. Tile version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/tile/getcontext.S b/ports/sysdeps/unix/sysv/linux/tile/getcontext.S index dfcdd86023..dcfb653bdc 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/getcontext.S +++ b/ports/sysdeps/unix/sysv/linux/tile/getcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/gettimeofday.c b/ports/sysdeps/unix/sysv/linux/tile/gettimeofday.c index fecc7d8a52..6f62ab960c 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/gettimeofday.c +++ b/ports/sysdeps/unix/sysv/linux/tile/gettimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/tile/init-first.c b/ports/sysdeps/unix/sysv/linux/tile/init-first.c index 3e5d0456b4..9790d223b1 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/init-first.c +++ b/ports/sysdeps/unix/sysv/linux/tile/init-first.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/tile/kernel-features.h b/ports/sysdeps/unix/sysv/linux/tile/kernel-features.h index a8d836c904..5b811288ee 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/kernel-features.h +++ b/ports/sysdeps/unix/sysv/linux/tile/kernel-features.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/ldsodefs.h b/ports/sysdeps/unix/sysv/linux/tile/ldsodefs.h index 92877e53d1..77942682c1 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/ldsodefs.h +++ b/ports/sysdeps/unix/sysv/linux/tile/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. Tile. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/tile/makecontext.c b/ports/sysdeps/unix/sysv/linux/tile/makecontext.c index eae5f4b036..2ed30f48ba 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/makecontext.c +++ b/ports/sysdeps/unix/sysv/linux/tile/makecontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h b/ports/sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h index bf1ebaf324..f4693527f1 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h +++ b/ports/sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on work contributed by Ulrich Drepper , 2002. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h b/ports/sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h index 64737dddc1..475617df0f 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h +++ b/ports/sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Ulrich Drepper , 2002. diff --git a/ports/sysdeps/unix/sysv/linux/tile/nptl/clone.S b/ports/sysdeps/unix/sysv/linux/tile/nptl/clone.S index f8c821a2b3..f48dba523c 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/nptl/clone.S +++ b/ports/sysdeps/unix/sysv/linux/tile/nptl/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/nptl/createthread.c b/ports/sysdeps/unix/sysv/linux/tile/nptl/createthread.c index cc4879bc5c..8472ad5f62 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/nptl/createthread.c +++ b/ports/sysdeps/unix/sysv/linux/tile/nptl/createthread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/nptl/fork.c b/ports/sysdeps/unix/sysv/linux/tile/nptl/fork.c index 2100eea339..6cd83e9173 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/nptl/fork.c +++ b/ports/sysdeps/unix/sysv/linux/tile/nptl/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Ulrich Drepper , 2002. diff --git a/ports/sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h b/ports/sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h index a9822ec960..46149f1cd4 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h +++ b/ports/sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c b/ports/sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c index 68456f05f2..1b38999870 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c +++ b/ports/sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Jakub Jelinek , 2003. diff --git a/ports/sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h b/ports/sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h index 56937d017c..233333844f 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h +++ b/ports/sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/nptl/vfork.S b/ports/sysdeps/unix/sysv/linux/tile/nptl/vfork.S index a8d217f842..014cccf7e2 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/nptl/vfork.S +++ b/ports/sysdeps/unix/sysv/linux/tile/nptl/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/profil-counter.h b/ports/sysdeps/unix/sysv/linux/tile/profil-counter.h index fcc5449b27..4ab1666a12 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/profil-counter.h +++ b/ports/sysdeps/unix/sysv/linux/tile/profil-counter.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/set_dataplane.c b/ports/sysdeps/unix/sysv/linux/tile/set_dataplane.c index 98755c6ff2..d53ea9fe5a 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/set_dataplane.c +++ b/ports/sysdeps/unix/sysv/linux/tile/set_dataplane.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/setcontext.S b/ports/sysdeps/unix/sysv/linux/tile/setcontext.S index 04368948e4..76a797d32c 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/setcontext.S +++ b/ports/sysdeps/unix/sysv/linux/tile/setcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/sigcontextinfo.h b/ports/sysdeps/unix/sysv/linux/tile/sigcontextinfo.h index 2d1f1b984b..3f2680d209 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/sigcontextinfo.h +++ b/ports/sysdeps/unix/sysv/linux/tile/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/swapcontext.S b/ports/sysdeps/unix/sysv/linux/tile/swapcontext.S index 6e7dfa7a75..ef24e39898 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/swapcontext.S +++ b/ports/sysdeps/unix/sysv/linux/tile/swapcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/sys/cachectl.h b/ports/sysdeps/unix/sysv/linux/tile/sys/cachectl.h index 460e34f907..540f95e8e1 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/sys/cachectl.h +++ b/ports/sysdeps/unix/sysv/linux/tile/sys/cachectl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/sys/dataplane.h b/ports/sysdeps/unix/sysv/linux/tile/sys/dataplane.h index d28a3be08a..d333ec0fd3 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/sys/dataplane.h +++ b/ports/sysdeps/unix/sysv/linux/tile/sys/dataplane.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/sys/procfs.h b/ports/sysdeps/unix/sysv/linux/tile/sys/procfs.h index fbdf8f94a1..440ce45ffe 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/sys/procfs.h +++ b/ports/sysdeps/unix/sysv/linux/tile/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h b/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h index 32e47c7874..2a5246968f 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h +++ b/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/sys/ucontext.h b/ports/sysdeps/unix/sysv/linux/tile/sys/ucontext.h index a23d0d36bd..ac540f4775 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/sys/ucontext.h +++ b/ports/sysdeps/unix/sysv/linux/tile/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/syscall.S b/ports/sysdeps/unix/sysv/linux/tile/syscall.S index 8883f92949..11463f3808 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/syscall.S +++ b/ports/sysdeps/unix/sysv/linux/tile/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/sysdep.c b/ports/sysdeps/unix/sysv/linux/tile/sysdep.c index 2b4c8ed777..ffd1eef54f 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/sysdep.c +++ b/ports/sysdeps/unix/sysv/linux/tile/sysdep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/sysdep.h b/ports/sysdeps/unix/sysv/linux/tile/sysdep.h index ee1ea5226f..f2214f6cff 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/sysdep.h +++ b/ports/sysdeps/unix/sysv/linux/tile/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/tilegx/ioctl.S b/ports/sysdeps/unix/sysv/linux/tile/tilegx/ioctl.S index 39ff86ba1c..c12129958c 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/tilegx/ioctl.S +++ b/ports/sysdeps/unix/sysv/linux/tile/tilegx/ioctl.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/tilegx/ldconfig.h b/ports/sysdeps/unix/sysv/linux/tile/tilegx/ldconfig.h index a2e5cd4692..c5eaeb65ab 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/tilegx/ldconfig.h +++ b/ports/sysdeps/unix/sysv/linux/tile/tilegx/ldconfig.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/tilegx/register-dump.h b/ports/sysdeps/unix/sysv/linux/tile/tilegx/register-dump.h index 669c86163c..2c629c5dc3 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/tilegx/register-dump.h +++ b/ports/sysdeps/unix/sysv/linux/tile/tilegx/register-dump.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/tilegx/sched_getcpu.c b/ports/sysdeps/unix/sysv/linux/tile/tilegx/sched_getcpu.c index c1af346c72..beba3f4d05 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/tilegx/sched_getcpu.c +++ b/ports/sysdeps/unix/sysv/linux/tile/tilegx/sched_getcpu.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/ports/sysdeps/unix/sysv/linux/tile/tilepro/ldconfig.h b/ports/sysdeps/unix/sysv/linux/tile/tilepro/ldconfig.h index 0dcfef36b9..86a81d4789 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/tilepro/ldconfig.h +++ b/ports/sysdeps/unix/sysv/linux/tile/tilepro/ldconfig.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/ports/sysdeps/unix/sysv/linux/tile/tilepro/register-dump.h b/ports/sysdeps/unix/sysv/linux/tile/tilepro/register-dump.h index c561e233da..45298ec7c2 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/tilepro/register-dump.h +++ b/ports/sysdeps/unix/sysv/linux/tile/tilepro/register-dump.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. Based on work contributed by Ulrich Drepper , 1998. diff --git a/ports/sysdeps/unix/sysv/linux/tile/ucontext_i.h b/ports/sysdeps/unix/sysv/linux/tile/ucontext_i.h index 62d99ab88f..fe329cdbd6 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/ucontext_i.h +++ b/ports/sysdeps/unix/sysv/linux/tile/ucontext_i.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Chris Metcalf , 2011. diff --git a/posix/Makefile b/posix/Makefile index 54c635465c..6709900cb2 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/_exit.c b/posix/_exit.c index 2e63c2d14b..aa8c928908 100644 --- a/posix/_exit.c +++ b/posix/_exit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/alarm.c b/posix/alarm.c index c2950edb54..6dbbf0395b 100644 --- a/posix/alarm.c +++ b/posix/alarm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/annexc.c b/posix/annexc.c index 28770dc209..b31f760647 100644 --- a/posix/annexc.c +++ b/posix/annexc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/bits/posix1_lim.h b/posix/bits/posix1_lim.h index 5fa741909a..97f018d0a4 100644 --- a/posix/bits/posix1_lim.h +++ b/posix/bits/posix1_lim.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/bits/posix2_lim.h b/posix/bits/posix2_lim.h index 9d9aaa0e29..0dbdf1e6d6 100644 --- a/posix/bits/posix2_lim.h +++ b/posix/bits/posix2_lim.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/bits/unistd.h b/posix/bits/unistd.h index 349a042fd4..336b928b40 100644 --- a/posix/bits/unistd.h +++ b/posix/bits/unistd.h @@ -1,5 +1,5 @@ /* Checking macros for unistd functions. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/bsd-getpgrp.c b/posix/bsd-getpgrp.c index 36ba6a1f8e..f06a5d78be 100644 --- a/posix/bsd-getpgrp.c +++ b/posix/bsd-getpgrp.c @@ -1,5 +1,5 @@ /* BSD-compatible versions of getpgrp function. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/bug-glob2.c b/posix/bug-glob2.c index abae19b715..8e21deb658 100644 --- a/posix/bug-glob2.c +++ b/posix/bug-glob2.c @@ -1,6 +1,6 @@ /* Test glob memory management. for the filesystem access functions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/bug-regex10.c b/posix/bug-regex10.c index 40d1bf5eb8..d9d97525e8 100644 --- a/posix/bug-regex10.c +++ b/posix/bug-regex10.c @@ -1,5 +1,5 @@ /* Test for re_match with non-zero start. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/posix/bug-regex11.c b/posix/bug-regex11.c index 1a3f68a5be..2669f0ca70 100644 --- a/posix/bug-regex11.c +++ b/posix/bug-regex11.c @@ -1,5 +1,5 @@ /* Regular expression tests. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/posix/bug-regex12.c b/posix/bug-regex12.c index 1717e89b80..b576d2558b 100644 --- a/posix/bug-regex12.c +++ b/posix/bug-regex12.c @@ -1,5 +1,5 @@ /* Regular expression tests. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/posix/bug-regex13.c b/posix/bug-regex13.c index 9de3ea4d6b..d344faa4d3 100644 --- a/posix/bug-regex13.c +++ b/posix/bug-regex13.c @@ -1,5 +1,5 @@ /* Regular expression tests. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa , 2002. diff --git a/posix/bug-regex14.c b/posix/bug-regex14.c index 87977c5fc3..1028cfd89e 100644 --- a/posix/bug-regex14.c +++ b/posix/bug-regex14.c @@ -1,5 +1,5 @@ /* Tests re_comp and re_exec. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa , 2002. diff --git a/posix/bug-regex17.c b/posix/bug-regex17.c index cdd814bd64..73466a74dc 100644 --- a/posix/bug-regex17.c +++ b/posix/bug-regex17.c @@ -1,5 +1,5 @@ /* German regular expression tests. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/posix/bug-regex18.c b/posix/bug-regex18.c index d1fca5e750..fac7ff2873 100644 --- a/posix/bug-regex18.c +++ b/posix/bug-regex18.c @@ -1,5 +1,5 @@ /* Turkish regular expression tests. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/posix/bug-regex19.c b/posix/bug-regex19.c index 3ae4cab795..cd4ef59aba 100644 --- a/posix/bug-regex19.c +++ b/posix/bug-regex19.c @@ -1,5 +1,5 @@ /* Regular expression tests. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/posix/bug-regex2.c b/posix/bug-regex2.c index 49128990b4..0597ea043a 100644 --- a/posix/bug-regex2.c +++ b/posix/bug-regex2.c @@ -1,5 +1,5 @@ /* Test for memory handling in regex. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/posix/bug-regex20.c b/posix/bug-regex20.c index c3e0947365..c0377e90f8 100644 --- a/posix/bug-regex20.c +++ b/posix/bug-regex20.c @@ -1,5 +1,5 @@ /* Test for UTF-8 regular expression optimizations. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/posix/bug-regex21.c b/posix/bug-regex21.c index 15bd9f9e4d..7566691f79 100644 --- a/posix/bug-regex21.c +++ b/posix/bug-regex21.c @@ -1,5 +1,5 @@ /* Test for memory leaks in regcomp. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/posix/bug-regex22.c b/posix/bug-regex22.c index 45730ef58d..b5d0146731 100644 --- a/posix/bug-regex22.c +++ b/posix/bug-regex22.c @@ -1,5 +1,5 @@ /* Test re.translate != NULL. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/posix/bug-regex23.c b/posix/bug-regex23.c index 2793a4738c..b0718915fd 100644 --- a/posix/bug-regex23.c +++ b/posix/bug-regex23.c @@ -1,5 +1,5 @@ /* Test we don't segfault on invalid UTF-8 sequence. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/posix/bug-regex25.c b/posix/bug-regex25.c index 23bd949e09..2ae0564ca3 100644 --- a/posix/bug-regex25.c +++ b/posix/bug-regex25.c @@ -1,5 +1,5 @@ /* Test re_search in multibyte locale other than UTF-8. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/posix/bug-regex26.c b/posix/bug-regex26.c index f07c6f8172..76f0e6e51e 100644 --- a/posix/bug-regex26.c +++ b/posix/bug-regex26.c @@ -1,5 +1,5 @@ /* Test re_search with dotless i. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/posix/bug-regex27.c b/posix/bug-regex27.c index a50b0aa1b6..a18e395f05 100644 --- a/posix/bug-regex27.c +++ b/posix/bug-regex27.c @@ -1,5 +1,5 @@ /* Test REG_NEWLINE. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2007. diff --git a/posix/bug-regex28.c b/posix/bug-regex28.c index e00270ac28..941527a1ba 100644 --- a/posix/bug-regex28.c +++ b/posix/bug-regex28.c @@ -1,5 +1,5 @@ /* Test RE_HAT_LISTS_NOT_NEWLINE and RE_DOT_NEWLINE. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2007. diff --git a/posix/bug-regex3.c b/posix/bug-regex3.c index a4b64aa6f3..bbc08f5e5b 100644 --- a/posix/bug-regex3.c +++ b/posix/bug-regex3.c @@ -1,5 +1,5 @@ /* Test for case handling in regex. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2001. diff --git a/posix/bug-regex30.c b/posix/bug-regex30.c index eaec6fec5e..febba7d445 100644 --- a/posix/bug-regex30.c +++ b/posix/bug-regex30.c @@ -1,5 +1,5 @@ /* Russian regular expression tests. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paolo Bonzini , 2009. diff --git a/posix/bug-regex33.c b/posix/bug-regex33.c index da2736862d..626a681274 100644 --- a/posix/bug-regex33.c +++ b/posix/bug-regex33.c @@ -1,5 +1,5 @@ /* Test re_search with multi-byte characters in EUC-JP. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Stanislav Brabec , 2012. diff --git a/posix/bug-regex34.c b/posix/bug-regex34.c index bb3b6138f8..cf369ac736 100644 --- a/posix/bug-regex34.c +++ b/posix/bug-regex34.c @@ -1,5 +1,5 @@ /* Test re_search with multi-byte characters in UTF-8. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/bug-regex35.c b/posix/bug-regex35.c index 7957e7f860..57023b29cc 100644 --- a/posix/bug-regex35.c +++ b/posix/bug-regex35.c @@ -1,5 +1,5 @@ /* Test regcomp with collating symbols in bracket expressions - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/bug-regex4.c b/posix/bug-regex4.c index 7fdb81133c..d7c417e434 100644 --- a/posix/bug-regex4.c +++ b/posix/bug-regex4.c @@ -1,5 +1,5 @@ /* Test for re_search_2. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2001. diff --git a/posix/bug-regex6.c b/posix/bug-regex6.c index eb4fa7a4c6..c66f8253fd 100644 --- a/posix/bug-regex6.c +++ b/posix/bug-regex6.c @@ -1,5 +1,5 @@ /* Test for regexec. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/posix/bug-regex7.c b/posix/bug-regex7.c index 2c3768e1db..57e3e12d83 100644 --- a/posix/bug-regex7.c +++ b/posix/bug-regex7.c @@ -1,5 +1,5 @@ /* Test for regs allocation in re_search and re_match. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Stepan Kasal , 2002. diff --git a/posix/bug-regex8.c b/posix/bug-regex8.c index 6ee5070aa0..6a33d7e64a 100644 --- a/posix/bug-regex8.c +++ b/posix/bug-regex8.c @@ -1,5 +1,5 @@ /* Test for the STOP parameter of re_match_2 and re_search_2. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Stepan Kasal , 2002. diff --git a/posix/bug-regex9.c b/posix/bug-regex9.c index 600d552e06..2567ab6189 100644 --- a/posix/bug-regex9.c +++ b/posix/bug-regex9.c @@ -1,5 +1,5 @@ /* Test for memory handling in regex. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/posix/confstr.c b/posix/confstr.c index 69a9f84e9e..a2a1bf2862 100644 --- a/posix/confstr.c +++ b/posix/confstr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/cpio.h b/posix/cpio.h index a3b240a88d..db15a79a90 100644 --- a/posix/cpio.h +++ b/posix/cpio.h @@ -1,6 +1,6 @@ /* Extended cpio format from POSIX.1. This file is part of the GNU C Library. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. NOTE: The canonical source of this file is maintained with the GNU cpio. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/execl.c b/posix/execl.c index 3a7392d8dc..cdd0fa3c36 100644 --- a/posix/execl.c +++ b/posix/execl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/execle.c b/posix/execle.c index f14f5e5ead..eac270edae 100644 --- a/posix/execle.c +++ b/posix/execle.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/execlp.c b/posix/execlp.c index 661694d0cf..b0de543dd4 100644 --- a/posix/execlp.c +++ b/posix/execlp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/execv.c b/posix/execv.c index 54d0e627b7..4bda05f897 100644 --- a/posix/execv.c +++ b/posix/execv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/execve.c b/posix/execve.c index e4fb2835b6..3aaa477bf5 100644 --- a/posix/execve.c +++ b/posix/execve.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/execvp.c b/posix/execvp.c index f425382714..88e263f0ba 100644 --- a/posix/execvp.c +++ b/posix/execvp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/execvpe.c b/posix/execvpe.c index 588e7a71b1..e067ada17b 100644 --- a/posix/execvpe.c +++ b/posix/execvpe.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/fexecve.c b/posix/fexecve.c index 42e5d025f9..6be655004e 100644 --- a/posix/fexecve.c +++ b/posix/fexecve.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/fnmatch.c b/posix/fnmatch.c index 0f26a2e888..f748d3df46 100644 --- a/posix/fnmatch.c +++ b/posix/fnmatch.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/fnmatch.h b/posix/fnmatch.h index 62a6eb99da..ac96fb8780 100644 --- a/posix/fnmatch.h +++ b/posix/fnmatch.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/fnmatch_loop.c b/posix/fnmatch_loop.c index 078b98242e..f79d051a3a 100644 --- a/posix/fnmatch_loop.c +++ b/posix/fnmatch_loop.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/fork.c b/posix/fork.c index 4946a40b8b..44b7fca56a 100644 --- a/posix/fork.c +++ b/posix/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/fpathconf.c b/posix/fpathconf.c index 30c293728e..50bb591c3a 100644 --- a/posix/fpathconf.c +++ b/posix/fpathconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/gai_strerror.c b/posix/gai_strerror.c index 638e8ba23a..ab36419de4 100644 --- a/posix/gai_strerror.c +++ b/posix/gai_strerror.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/get_child_max.c b/posix/get_child_max.c index cdd6d44a10..ae15b3dbf2 100644 --- a/posix/get_child_max.c +++ b/posix/get_child_max.c @@ -1,5 +1,5 @@ /* Get POSIX {CHILD_MAX} run-time limit value. Stub version (no limit). - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getaddrinfo.c b/posix/getaddrinfo.c index 021a327679..ad3d70bcd2 100644 --- a/posix/getaddrinfo.c +++ b/posix/getaddrinfo.c @@ -1,5 +1,5 @@ /* Stub version of getaddrinfo function. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getconf-speclist.c b/posix/getconf-speclist.c index fbd2126c25..065b0b4b10 100644 --- a/posix/getconf-speclist.c +++ b/posix/getconf-speclist.c @@ -1,5 +1,5 @@ /* List POSIX compilation environments for this libc. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getconf.c b/posix/getconf.c index 878772022d..ecf085b1fb 100644 --- a/posix/getconf.c +++ b/posix/getconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software; you can redistribute it and/or modify diff --git a/posix/getegid.c b/posix/getegid.c index c14cc60971..fa86d9d790 100644 --- a/posix/getegid.c +++ b/posix/getegid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/geteuid.c b/posix/geteuid.c index c7af13f81e..19f185b2b6 100644 --- a/posix/geteuid.c +++ b/posix/geteuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getgid.c b/posix/getgid.c index 719f8fb46b..c480effd2e 100644 --- a/posix/getgid.c +++ b/posix/getgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getgroups.c b/posix/getgroups.c index cdb3d93fbf..3fab310945 100644 --- a/posix/getgroups.c +++ b/posix/getgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getopt.c b/posix/getopt.c index 5497fc4247..2d481f1c7f 100644 --- a/posix/getopt.c +++ b/posix/getopt.c @@ -2,7 +2,7 @@ NOTE: getopt is part of the C library, so if you don't know what "Keep this file name-space clean" means, talk to drepper@gnu.org before changing it! - Copyright (C) 1987-2013 Free Software Foundation, Inc. + Copyright (C) 1987-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getopt.h b/posix/getopt.h index 5d19cb3dfb..da1a01ffa8 100644 --- a/posix/getopt.h +++ b/posix/getopt.h @@ -1,5 +1,5 @@ /* Declarations for getopt. - Copyright (C) 1989-2013 Free Software Foundation, Inc. + Copyright (C) 1989-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getopt1.c b/posix/getopt1.c index 442cf9c982..75d6b9c1a3 100644 --- a/posix/getopt1.c +++ b/posix/getopt1.c @@ -1,5 +1,5 @@ /* getopt_long and getopt_long_only entry points for GNU getopt. - Copyright (C) 1987-2013 Free Software Foundation, Inc. + Copyright (C) 1987-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getopt_init.c b/posix/getopt_init.c index 4bc200124c..06ec2b3c59 100644 --- a/posix/getopt_init.c +++ b/posix/getopt_init.c @@ -1,5 +1,5 @@ /* Perform additional initialization for getopt functions in GNU libc. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/posix/getopt_int.h b/posix/getopt_int.h index 92f3871e5d..d255c8eee4 100644 --- a/posix/getopt_int.h +++ b/posix/getopt_int.h @@ -1,5 +1,5 @@ /* Internal declarations for getopt. - Copyright (C) 1989-2013 Free Software Foundation, Inc. + Copyright (C) 1989-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getpgid.c b/posix/getpgid.c index 0564a95a4f..f6b02a11a1 100644 --- a/posix/getpgid.c +++ b/posix/getpgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getpgrp.c b/posix/getpgrp.c index dc456da02c..e195b4c4ea 100644 --- a/posix/getpgrp.c +++ b/posix/getpgrp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getpid.c b/posix/getpid.c index 11a1865759..9bab75ed3c 100644 --- a/posix/getpid.c +++ b/posix/getpid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getppid.c b/posix/getppid.c index c32032436e..cf16c3cbab 100644 --- a/posix/getppid.c +++ b/posix/getppid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getresgid.c b/posix/getresgid.c index 32a54732dc..fd0072f317 100644 --- a/posix/getresgid.c +++ b/posix/getresgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getresuid.c b/posix/getresuid.c index 17e7be2ae0..967c2ecf21 100644 --- a/posix/getresuid.c +++ b/posix/getresuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getsid.c b/posix/getsid.c index 62161ba56a..19893a3a12 100644 --- a/posix/getsid.c +++ b/posix/getsid.c @@ -1,5 +1,5 @@ /* getsid -- Return session ID of a process. Stub version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/getuid.c b/posix/getuid.c index 19ad29626e..6fb9238450 100644 --- a/posix/getuid.c +++ b/posix/getuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/glob.c b/posix/glob.c index 85237c2a44..f1431088a2 100644 --- a/posix/glob.c +++ b/posix/glob.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/glob.h b/posix/glob.h index 70e7ffa473..9c5f37fc87 100644 --- a/posix/glob.h +++ b/posix/glob.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/glob64.c b/posix/glob64.c index 98e17240ad..73f07c12b4 100644 --- a/posix/glob64.c +++ b/posix/glob64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/globtest.c b/posix/globtest.c index dc5a57a02f..0a1bcbc1ab 100644 --- a/posix/globtest.c +++ b/posix/globtest.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/globtest.sh b/posix/globtest.sh index 6f3eaddd8f..d76fc6c772 100755 --- a/posix/globtest.sh +++ b/posix/globtest.sh @@ -1,6 +1,6 @@ #! /bin/bash # Test for glob(3). -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/group_member.c b/posix/group_member.c index 4e0460de5e..ca85bba19f 100644 --- a/posix/group_member.c +++ b/posix/group_member.c @@ -1,5 +1,5 @@ /* `group_member' -- test if process is in a given group. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/nanosleep.c b/posix/nanosleep.c index af5d913d84..19111e3247 100644 --- a/posix/nanosleep.c +++ b/posix/nanosleep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/pathconf.c b/posix/pathconf.c index 79025feee2..5e3892bdc9 100644 --- a/posix/pathconf.c +++ b/posix/pathconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/pause.c b/posix/pause.c index 19eebe76c2..e5db02c40f 100644 --- a/posix/pause.c +++ b/posix/pause.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/posix-envs.def b/posix/posix-envs.def index 9f609f6266..05043e9d56 100644 --- a/posix/posix-envs.def +++ b/posix/posix-envs.def @@ -1,5 +1,5 @@ /* Handle POSIX compilation environments that may or may not be present. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/posix_madvise.c b/posix/posix_madvise.c index 0e7cd12c3e..996e1ddbd6 100644 --- a/posix/posix_madvise.c +++ b/posix/posix_madvise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/pread.c b/posix/pread.c index 0f279291e5..9cf1f62d81 100644 --- a/posix/pread.c +++ b/posix/pread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/pread64.c b/posix/pread64.c index c026986236..e73fdab1ba 100644 --- a/posix/pread64.c +++ b/posix/pread64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/pwrite.c b/posix/pwrite.c index 32fafd306a..e982546f35 100644 --- a/posix/pwrite.c +++ b/posix/pwrite.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/pwrite64.c b/posix/pwrite64.c index 1a33ae8da3..50eaec83d3 100644 --- a/posix/pwrite64.c +++ b/posix/pwrite64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/re_comp.h b/posix/re_comp.h index 0ad5b78071..7c6a7240a6 100644 --- a/posix/re_comp.h +++ b/posix/re_comp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/regcomp.c b/posix/regcomp.c index 0ffc2fad8b..921d0f49a3 100644 --- a/posix/regcomp.c +++ b/posix/regcomp.c @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa . diff --git a/posix/regex.c b/posix/regex.c index 83e5cdffb5..c47fa0d6f6 100644 --- a/posix/regex.c +++ b/posix/regex.c @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa . diff --git a/posix/regex.h b/posix/regex.h index 74c73bcc57..bb18d64a85 100644 --- a/posix/regex.h +++ b/posix/regex.h @@ -1,6 +1,6 @@ /* Definitions for data structures and routines for the regular expression library. - Copyright (C) 1985, 1989-2013 Free Software Foundation, Inc. + Copyright (C) 1985, 1989-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/regex_internal.c b/posix/regex_internal.c index 0a3830bc19..7eebf46924 100644 --- a/posix/regex_internal.c +++ b/posix/regex_internal.c @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa . diff --git a/posix/regex_internal.h b/posix/regex_internal.h index 3c94fbed7d..75c390f8c8 100644 --- a/posix/regex_internal.h +++ b/posix/regex_internal.h @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa . diff --git a/posix/regexec.c b/posix/regexec.c index f85c5e8017..7032da75aa 100644 --- a/posix/regexec.c +++ b/posix/regexec.c @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa . diff --git a/posix/runptests.c b/posix/runptests.c index 4f8490245b..76b21e89d5 100644 --- a/posix/runptests.c +++ b/posix/runptests.c @@ -1,5 +1,5 @@ /* POSIX regex testsuite from IEEE 2003.2. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/posix/sched.h b/posix/sched.h index a0e216c4af..f7da2559f9 100644 --- a/posix/sched.h +++ b/posix/sched.h @@ -1,5 +1,5 @@ /* Definitions for POSIX 1003.1b-1993 (aka POSIX.4) scheduling interface. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_cpualloc.c b/posix/sched_cpualloc.c index 46efbcffd4..8396d268ce 100644 --- a/posix/sched_cpualloc.c +++ b/posix/sched_cpualloc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_cpucount.c b/posix/sched_cpucount.c index 70ad3c89ee..fd11f0b256 100644 --- a/posix/sched_cpucount.c +++ b/posix/sched_cpucount.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_cpufree.c b/posix/sched_cpufree.c index ca44fcb91a..9e9d43a15e 100644 --- a/posix/sched_cpufree.c +++ b/posix/sched_cpufree.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_getaffinity.c b/posix/sched_getaffinity.c index f2a69ef4fa..665b5c8295 100644 --- a/posix/sched_getaffinity.c +++ b/posix/sched_getaffinity.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_getp.c b/posix/sched_getp.c index 5003ad9fec..0a7fd29c15 100644 --- a/posix/sched_getp.c +++ b/posix/sched_getp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_gets.c b/posix/sched_gets.c index be4538d392..dbc37fdf7a 100644 --- a/posix/sched_gets.c +++ b/posix/sched_gets.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_primax.c b/posix/sched_primax.c index fe561bc88d..0730cb784c 100644 --- a/posix/sched_primax.c +++ b/posix/sched_primax.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_primin.c b/posix/sched_primin.c index 7ac9465081..ce3e2ffb06 100644 --- a/posix/sched_primin.c +++ b/posix/sched_primin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_rr_gi.c b/posix/sched_rr_gi.c index 69471093d3..c2a831b564 100644 --- a/posix/sched_rr_gi.c +++ b/posix/sched_rr_gi.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_setaffinity.c b/posix/sched_setaffinity.c index c9827da66f..687280b00f 100644 --- a/posix/sched_setaffinity.c +++ b/posix/sched_setaffinity.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_setp.c b/posix/sched_setp.c index ff19989da9..b7fe8e1e14 100644 --- a/posix/sched_setp.c +++ b/posix/sched_setp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_sets.c b/posix/sched_sets.c index 31fcf620f9..eb36c5b139 100644 --- a/posix/sched_sets.c +++ b/posix/sched_sets.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sched_yield.c b/posix/sched_yield.c index cf802f4eee..682ef6cb80 100644 --- a/posix/sched_yield.c +++ b/posix/sched_yield.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/setgid.c b/posix/setgid.c index 79cb15f399..ad9f71cca5 100644 --- a/posix/setgid.c +++ b/posix/setgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/setpgid.c b/posix/setpgid.c index 971367883a..f977577e61 100644 --- a/posix/setpgid.c +++ b/posix/setpgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/setpgrp.c b/posix/setpgrp.c index f31950b928..154777c411 100644 --- a/posix/setpgrp.c +++ b/posix/setpgrp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/setresgid.c b/posix/setresgid.c index 435e1e664b..7cf13e515a 100644 --- a/posix/setresgid.c +++ b/posix/setresgid.c @@ -1,5 +1,5 @@ /* setresgid -- set real group ID, effective group ID, and saved-set group ID - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/setresuid.c b/posix/setresuid.c index adbf23d89b..da1d786d31 100644 --- a/posix/setresuid.c +++ b/posix/setresuid.c @@ -1,5 +1,5 @@ /* setresuid -- set real user ID, effective user ID, and saved-set user ID - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/setsid.c b/posix/setsid.c index d3b99b2beb..0b93f7bb07 100644 --- a/posix/setsid.c +++ b/posix/setsid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/setuid.c b/posix/setuid.c index 95751371ac..99298fe397 100644 --- a/posix/setuid.c +++ b/posix/setuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sleep.c b/posix/sleep.c index 4f14e0e6be..0d53f07604 100644 --- a/posix/sleep.c +++ b/posix/sleep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawn.c b/posix/spawn.c index e8171ec5c8..6dd30c9c32 100644 --- a/posix/spawn.c +++ b/posix/spawn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawn.h b/posix/spawn.h index 6999ee0953..82b6761b75 100644 --- a/posix/spawn.h +++ b/posix/spawn.h @@ -1,5 +1,5 @@ /* Definitions for POSIX spawn interface. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawn_faction_addclose.c b/posix/spawn_faction_addclose.c index 3fcc86073a..ca1c5b2710 100644 --- a/posix/spawn_faction_addclose.c +++ b/posix/spawn_faction_addclose.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawn_faction_adddup2.c b/posix/spawn_faction_adddup2.c index 814cda358b..8c750f0bef 100644 --- a/posix/spawn_faction_adddup2.c +++ b/posix/spawn_faction_adddup2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawn_faction_addopen.c b/posix/spawn_faction_addopen.c index 93065b3a72..47f62425b6 100644 --- a/posix/spawn_faction_addopen.c +++ b/posix/spawn_faction_addopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawn_faction_destroy.c b/posix/spawn_faction_destroy.c index cc1d824bd1..4d165aab01 100644 --- a/posix/spawn_faction_destroy.c +++ b/posix/spawn_faction_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawn_faction_init.c b/posix/spawn_faction_init.c index ced29a8dae..081f781730 100644 --- a/posix/spawn_faction_init.c +++ b/posix/spawn_faction_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_destroy.c b/posix/spawnattr_destroy.c index 357dd96ef9..aae80da00f 100644 --- a/posix/spawnattr_destroy.c +++ b/posix/spawnattr_destroy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_getdefault.c b/posix/spawnattr_getdefault.c index e0e58cfde6..cc9f7667f3 100644 --- a/posix/spawnattr_getdefault.c +++ b/posix/spawnattr_getdefault.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_getflags.c b/posix/spawnattr_getflags.c index 78ec28ac1d..ca17d40fe0 100644 --- a/posix/spawnattr_getflags.c +++ b/posix/spawnattr_getflags.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_getpgroup.c b/posix/spawnattr_getpgroup.c index fcb067ea53..a6c698e487 100644 --- a/posix/spawnattr_getpgroup.c +++ b/posix/spawnattr_getpgroup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_getschedparam.c b/posix/spawnattr_getschedparam.c index f35633ca31..900beb4567 100644 --- a/posix/spawnattr_getschedparam.c +++ b/posix/spawnattr_getschedparam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_getschedpolicy.c b/posix/spawnattr_getschedpolicy.c index f0047e3ecf..aa57dfdf4e 100644 --- a/posix/spawnattr_getschedpolicy.c +++ b/posix/spawnattr_getschedpolicy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_getsigmask.c b/posix/spawnattr_getsigmask.c index f181ab9790..29104b0e8f 100644 --- a/posix/spawnattr_getsigmask.c +++ b/posix/spawnattr_getsigmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_init.c b/posix/spawnattr_init.c index d12c403e82..647a055b2d 100644 --- a/posix/spawnattr_init.c +++ b/posix/spawnattr_init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_setdefault.c b/posix/spawnattr_setdefault.c index fb7237cc50..9ec4752d93 100644 --- a/posix/spawnattr_setdefault.c +++ b/posix/spawnattr_setdefault.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_setflags.c b/posix/spawnattr_setflags.c index 49b447fe4f..8955de6efb 100644 --- a/posix/spawnattr_setflags.c +++ b/posix/spawnattr_setflags.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_setpgroup.c b/posix/spawnattr_setpgroup.c index 5acb39d5c9..a0b4333778 100644 --- a/posix/spawnattr_setpgroup.c +++ b/posix/spawnattr_setpgroup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_setschedparam.c b/posix/spawnattr_setschedparam.c index 7e7fb6d0c8..f5453b1b0b 100644 --- a/posix/spawnattr_setschedparam.c +++ b/posix/spawnattr_setschedparam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_setschedpolicy.c b/posix/spawnattr_setschedpolicy.c index 395ba0da23..88535dd549 100644 --- a/posix/spawnattr_setschedpolicy.c +++ b/posix/spawnattr_setschedpolicy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnattr_setsigmask.c b/posix/spawnattr_setsigmask.c index 31e2146b1b..add9b90eb7 100644 --- a/posix/spawnattr_setsigmask.c +++ b/posix/spawnattr_setsigmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawni.c b/posix/spawni.c index 14641da267..410f0fbef7 100644 --- a/posix/spawni.c +++ b/posix/spawni.c @@ -1,5 +1,5 @@ /* Guts of POSIX spawn interface. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/spawnp.c b/posix/spawnp.c index 026a373c4a..4be614b977 100644 --- a/posix/spawnp.c +++ b/posix/spawnp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sys/times.h b/posix/sys/times.h index bd28190202..7edead0f06 100644 --- a/posix/sys/times.h +++ b/posix/sys/times.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sys/types.h b/posix/sys/types.h index 33c2176d0f..0d51ae8a67 100644 --- a/posix/sys/types.h +++ b/posix/sys/types.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sys/utsname.h b/posix/sys/utsname.h index a0c917a008..32e3ba66be 100644 --- a/posix/sys/utsname.h +++ b/posix/sys/utsname.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sys/wait.h b/posix/sys/wait.h index 3ecc493651..72983865e5 100644 --- a/posix/sys/wait.h +++ b/posix/sys/wait.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/sysconf.c b/posix/sysconf.c index 38ca016091..51d2f989d0 100644 --- a/posix/sysconf.c +++ b/posix/sysconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tar.h b/posix/tar.h index 3a5c305925..115f4dfeab 100644 --- a/posix/tar.h +++ b/posix/tar.h @@ -1,5 +1,5 @@ /* Extended tar format from POSIX.1. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by David J. MacKenzie. diff --git a/posix/times.c b/posix/times.c index 6198508ece..5bc5daed51 100644 --- a/posix/times.c +++ b/posix/times.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tst-boost.c b/posix/tst-boost.c index 4c296c4918..8850314f35 100644 --- a/posix/tst-boost.c +++ b/posix/tst-boost.c @@ -1,5 +1,5 @@ /* Regular expression tests. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/posix/tst-chmod.c b/posix/tst-chmod.c index 237a52d64d..fb2ae8bfa5 100644 --- a/posix/tst-chmod.c +++ b/posix/tst-chmod.c @@ -1,5 +1,5 @@ /* Test for chmod functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/posix/tst-dir.c b/posix/tst-dir.c index e80bc48c96..49026f8751 100644 --- a/posix/tst-dir.c +++ b/posix/tst-dir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/posix/tst-exec.c b/posix/tst-exec.c index a1a2c183c6..51831a9b64 100644 --- a/posix/tst-exec.c +++ b/posix/tst-exec.c @@ -1,5 +1,5 @@ /* Tests for exec. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/posix/tst-fnmatch.c b/posix/tst-fnmatch.c index 8e30d8b289..ff2674cd73 100644 --- a/posix/tst-fnmatch.c +++ b/posix/tst-fnmatch.c @@ -1,5 +1,5 @@ /* Tests for fnmatch function. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tst-fnmatch.input b/posix/tst-fnmatch.input index a848d8ee73..6d3f275b47 100644 --- a/posix/tst-fnmatch.input +++ b/posix/tst-fnmatch.input @@ -1,5 +1,5 @@ # Tests for fnmatch. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributes by Ulrich Drepper . # diff --git a/posix/tst-fork.c b/posix/tst-fork.c index 8384c1ea1c..41b75b0bf6 100644 --- a/posix/tst-fork.c +++ b/posix/tst-fork.c @@ -1,5 +1,5 @@ /* Tests for fork. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/posix/tst-getaddrinfo.c b/posix/tst-getaddrinfo.c index 72b188726a..e161346a8b 100644 --- a/posix/tst-getaddrinfo.c +++ b/posix/tst-getaddrinfo.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tst-getaddrinfo4.c b/posix/tst-getaddrinfo4.c index 464cfb2ba5..69019f9206 100644 --- a/posix/tst-getaddrinfo4.c +++ b/posix/tst-getaddrinfo4.c @@ -1,5 +1,5 @@ /* Test getaddrinfo return value, [BZ #15339]. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tst-getconf.sh b/posix/tst-getconf.sh index c422625033..1cbebc5b68 100644 --- a/posix/tst-getconf.sh +++ b/posix/tst-getconf.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test for getconf(1). -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tst-getlogin.c b/posix/tst-getlogin.c index 7f910a10f4..1393c3a779 100644 --- a/posix/tst-getlogin.c +++ b/posix/tst-getlogin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tst-gnuglob.c b/posix/tst-gnuglob.c index 6e42724d08..1c72357de3 100644 --- a/posix/tst-gnuglob.c +++ b/posix/tst-gnuglob.c @@ -1,6 +1,6 @@ /* Test the GNU extensions in glob which allow the user to provide callbacks for the filesystem access functions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/posix/tst-nanosleep.c b/posix/tst-nanosleep.c index 2c03e2a024..4874e3b27d 100644 --- a/posix/tst-nanosleep.c +++ b/posix/tst-nanosleep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tst-nice.c b/posix/tst-nice.c index d1d8ebcbd3..4f172723f3 100644 --- a/posix/tst-nice.c +++ b/posix/tst-nice.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tst-pathconf.c b/posix/tst-pathconf.c index 7627a24d8d..1130359350 100644 --- a/posix/tst-pathconf.c +++ b/posix/tst-pathconf.c @@ -1,5 +1,5 @@ /* Test that values of pathconf and fpathconf are consistent for a file. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tst-pcre.c b/posix/tst-pcre.c index afae926699..9d13e67636 100644 --- a/posix/tst-pcre.c +++ b/posix/tst-pcre.c @@ -1,5 +1,5 @@ /* Regular expression tests. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/posix/tst-preadwrite.c b/posix/tst-preadwrite.c index 244c7f6618..20059b8415 100644 --- a/posix/tst-preadwrite.c +++ b/posix/tst-preadwrite.c @@ -1,5 +1,5 @@ /* Tests for pread and pwrite. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/posix/tst-preadwrite64.c b/posix/tst-preadwrite64.c index bcb9325f9f..b146a6920f 100644 --- a/posix/tst-preadwrite64.c +++ b/posix/tst-preadwrite64.c @@ -1,5 +1,5 @@ /* Tests for pread64 and pwrite64. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/posix/tst-regex.c b/posix/tst-regex.c index 833777ebe3..7df0bd1d38 100644 --- a/posix/tst-regex.c +++ b/posix/tst-regex.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tst-regexloc.c b/posix/tst-regexloc.c index 559f76a3e7..43a073f23a 100644 --- a/posix/tst-regexloc.c +++ b/posix/tst-regexloc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/tst-rxspencer.c b/posix/tst-rxspencer.c index 956e41bfbb..5f59cd5936 100644 --- a/posix/tst-rxspencer.c +++ b/posix/tst-rxspencer.c @@ -1,5 +1,5 @@ /* Regular expression tests. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/posix/tst-spawn.c b/posix/tst-spawn.c index 66fd26bba8..84cecf2945 100644 --- a/posix/tst-spawn.c +++ b/posix/tst-spawn.c @@ -1,5 +1,5 @@ /* Tests for spawn. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/posix/tst-truncate.c b/posix/tst-truncate.c index 51abd13a44..5d43b8dc4d 100644 --- a/posix/tst-truncate.c +++ b/posix/tst-truncate.c @@ -1,5 +1,5 @@ /* Tests for ftruncate and truncate. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/posix/tst-truncate64.c b/posix/tst-truncate64.c index 69bae0aeab..16cce45dce 100644 --- a/posix/tst-truncate64.c +++ b/posix/tst-truncate64.c @@ -1,5 +1,5 @@ /* Tests for ftruncate64 and truncate64. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/posix/tst-vfork1.c b/posix/tst-vfork1.c index 3a05f4c010..e25cf1fe2d 100644 --- a/posix/tst-vfork1.c +++ b/posix/tst-vfork1.c @@ -1,5 +1,5 @@ /* Test for vfork functions. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/posix/tst-vfork2.c b/posix/tst-vfork2.c index c6a26e4797..f124262d85 100644 --- a/posix/tst-vfork2.c +++ b/posix/tst-vfork2.c @@ -1,5 +1,5 @@ /* Test for vfork functions. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/posix/tst-vfork3.c b/posix/tst-vfork3.c index 887874a2cc..756901e032 100644 --- a/posix/tst-vfork3.c +++ b/posix/tst-vfork3.c @@ -1,5 +1,5 @@ /* Test for vfork functions. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2007. diff --git a/posix/tst-waitid.c b/posix/tst-waitid.c index 57a6a3f769..096f64c93f 100644 --- a/posix/tst-waitid.c +++ b/posix/tst-waitid.c @@ -1,5 +1,5 @@ /* Tests for waitid. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/uname.c b/posix/uname.c index 480651201b..e58f230620 100644 --- a/posix/uname.c +++ b/posix/uname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/unistd.h b/posix/unistd.h index f37dce7b46..64734b0f9b 100644 --- a/posix/unistd.h +++ b/posix/unistd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/vfork.c b/posix/vfork.c index 0978227986..4206168ed2 100644 --- a/posix/vfork.c +++ b/posix/vfork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/wait.c b/posix/wait.c index 3e7ecd54fa..706c86ab64 100644 --- a/posix/wait.c +++ b/posix/wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/wait3.c b/posix/wait3.c index 0628bfe7dc..766b1744a1 100644 --- a/posix/wait3.c +++ b/posix/wait3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/wait4.c b/posix/wait4.c index e55f71d3d3..c58cc8dcff 100644 --- a/posix/wait4.c +++ b/posix/wait4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/waitid.c b/posix/waitid.c index d92d9ded14..4a0a5a819b 100644 --- a/posix/waitid.c +++ b/posix/waitid.c @@ -1,5 +1,5 @@ /* Stub version of waitid. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/posix/waitpid.c b/posix/waitpid.c index 73928a04c4..68157830b0 100644 --- a/posix/waitpid.c +++ b/posix/waitpid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/wordexp-test.c b/posix/wordexp-test.c index 80320296b9..4957006da7 100644 --- a/posix/wordexp-test.c +++ b/posix/wordexp-test.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/wordexp-tst.sh b/posix/wordexp-tst.sh index 5dff727e34..392feb0966 100755 --- a/posix/wordexp-tst.sh +++ b/posix/wordexp-tst.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test for wordexp(3). -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/posix/wordexp.c b/posix/wordexp.c index 96ce8a4b17..366ec18aeb 100644 --- a/posix/wordexp.c +++ b/posix/wordexp.c @@ -1,5 +1,5 @@ /* POSIX.2 wordexp implementation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Tim Waugh . diff --git a/posix/wordexp.h b/posix/wordexp.h index 2868775fd2..f9ba108e37 100644 --- a/posix/wordexp.h +++ b/posix/wordexp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/pwd/Makefile b/pwd/Makefile index ab644d87ae..a19ddb5632 100644 --- a/pwd/Makefile +++ b/pwd/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/pwd/fgetpwent.c b/pwd/fgetpwent.c index f782dc82e0..5d1b36c5a8 100644 --- a/pwd/fgetpwent.c +++ b/pwd/fgetpwent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/pwd/fgetpwent_r.c b/pwd/fgetpwent_r.c index 301832ebd8..06102dbbd5 100644 --- a/pwd/fgetpwent_r.c +++ b/pwd/fgetpwent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/pwd/getpw.c b/pwd/getpw.c index 9b729af2c6..0f2a0630d5 100644 --- a/pwd/getpw.c +++ b/pwd/getpw.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/pwd/getpwent.c b/pwd/getpwent.c index cdc7a4ecc3..80548772c7 100644 --- a/pwd/getpwent.c +++ b/pwd/getpwent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/pwd/getpwent_r.c b/pwd/getpwent_r.c index 69ceea4c7a..b18049658b 100644 --- a/pwd/getpwent_r.c +++ b/pwd/getpwent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/pwd/getpwnam.c b/pwd/getpwnam.c index c76463163e..088e1d60e1 100644 --- a/pwd/getpwnam.c +++ b/pwd/getpwnam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/pwd/getpwnam_r.c b/pwd/getpwnam_r.c index 26e9710817..aafd9c0f0f 100644 --- a/pwd/getpwnam_r.c +++ b/pwd/getpwnam_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/pwd/getpwuid.c b/pwd/getpwuid.c index 267f42882e..848fa6dbce 100644 --- a/pwd/getpwuid.c +++ b/pwd/getpwuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/pwd/getpwuid_r.c b/pwd/getpwuid_r.c index 0fd4e14b31..0ba76717d8 100644 --- a/pwd/getpwuid_r.c +++ b/pwd/getpwuid_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/pwd/putpwent.c b/pwd/putpwent.c index f289860081..0973150975 100644 --- a/pwd/putpwent.c +++ b/pwd/putpwent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/pwd/pwd.h b/pwd/pwd.h index 290726f25a..626fcdd29f 100644 --- a/pwd/pwd.h +++ b/pwd/pwd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/pwd/tst-getpw.c b/pwd/tst-getpw.c index c80618bf26..7875af9571 100644 --- a/pwd/tst-getpw.c +++ b/pwd/tst-getpw.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resolv/Makefile b/resolv/Makefile index 51dcf217af..b96b8ed927 100644 --- a/resolv/Makefile +++ b/resolv/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1994-2013 Free Software Foundation, Inc. +# Copyright (C) 1994-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/resolv/gai_cancel.c b/resolv/gai_cancel.c index e625a913fc..caf31455a2 100644 --- a/resolv/gai_cancel.c +++ b/resolv/gai_cancel.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/resolv/gai_error.c b/resolv/gai_error.c index 80c5429076..e8d1baa1b5 100644 --- a/resolv/gai_error.c +++ b/resolv/gai_error.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/resolv/gai_misc.c b/resolv/gai_misc.c index 6b73aac096..9c53876bf9 100644 --- a/resolv/gai_misc.c +++ b/resolv/gai_misc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/resolv/gai_misc.h b/resolv/gai_misc.h index a7ba463e24..b87b9e3d32 100644 --- a/resolv/gai_misc.h +++ b/resolv/gai_misc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/resolv/gai_notify.c b/resolv/gai_notify.c index 48cb58ab0d..7bee10211b 100644 --- a/resolv/gai_notify.c +++ b/resolv/gai_notify.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/resolv/gai_sigqueue.c b/resolv/gai_sigqueue.c index ec2a1e7e8d..f6e391c729 100644 --- a/resolv/gai_sigqueue.c +++ b/resolv/gai_sigqueue.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resolv/gai_suspend.c b/resolv/gai_suspend.c index a61a337857..b795cdecb8 100644 --- a/resolv/gai_suspend.c +++ b/resolv/gai_suspend.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/resolv/getaddrinfo_a.c b/resolv/getaddrinfo_a.c index 4ea803df36..38b48c627e 100644 --- a/resolv/getaddrinfo_a.c +++ b/resolv/getaddrinfo_a.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/resolv/netdb.h b/resolv/netdb.h index 56729d179b..f9e2bf00cb 100644 --- a/resolv/netdb.h +++ b/resolv/netdb.h @@ -1,4 +1,4 @@ - /* Copyright (C) 1996-2013 Free Software Foundation, Inc. + /* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resolv/nss_dns/dns-canon.c b/resolv/nss_dns/dns-canon.c index cdc61b9c6a..a9db232c7b 100644 --- a/resolv/nss_dns/dns-canon.c +++ b/resolv/nss_dns/dns-canon.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/resolv/nss_dns/dns-host.c b/resolv/nss_dns/dns-host.c index 9018bb98a6..f8f192e5af 100644 --- a/resolv/nss_dns/dns-host.c +++ b/resolv/nss_dns/dns-host.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Extended from original form by Ulrich Drepper , 1996. diff --git a/resolv/nss_dns/dns-network.c b/resolv/nss_dns/dns-network.c index 3c4db7eec3..8e80a6010e 100644 --- a/resolv/nss_dns/dns-network.c +++ b/resolv/nss_dns/dns-network.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Extended from original form by Ulrich Drepper , 1996. diff --git a/resolv/res-state.c b/resolv/res-state.c index e53ba51a26..440940312e 100644 --- a/resolv/res-state.c +++ b/resolv/res-state.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resolv/res_hconf.c b/resolv/res_hconf.c index a92751b873..b4c86227f8 100644 --- a/resolv/res_hconf.c +++ b/resolv/res_hconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger (davidm@azstarnet.com). diff --git a/resolv/res_hconf.h b/resolv/res_hconf.h index ea207ab668..1e0c2d9a22 100644 --- a/resolv/res_hconf.h +++ b/resolv/res_hconf.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger (davidm@azstarnet.com). diff --git a/resolv/tst-leaks.c b/resolv/tst-leaks.c index 7a1183819b..e1f42f1264 100644 --- a/resolv/tst-leaks.c +++ b/resolv/tst-leaks.c @@ -1,5 +1,5 @@ /* Tests for res_query in libresolv - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resolv/tst-leaks2.c b/resolv/tst-leaks2.c index 582000a899..b964ae7435 100644 --- a/resolv/tst-leaks2.c +++ b/resolv/tst-leaks2.c @@ -1,5 +1,5 @@ /* Tests for res_init in libresolv - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/Makefile b/resource/Makefile index 8a8c6cb4af..9441b2b2f5 100644 --- a/resource/Makefile +++ b/resource/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/getpriority.c b/resource/getpriority.c index ab683afd72..06fcaba41f 100644 --- a/resource/getpriority.c +++ b/resource/getpriority.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/getrlimit.c b/resource/getrlimit.c index 51b45a74fe..6920622922 100644 --- a/resource/getrlimit.c +++ b/resource/getrlimit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/getrlimit64.c b/resource/getrlimit64.c index 140a2f34e1..2e8da17ba3 100644 --- a/resource/getrlimit64.c +++ b/resource/getrlimit64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/getrusage.c b/resource/getrusage.c index 1d3ec3ecd4..58f121d3f3 100644 --- a/resource/getrusage.c +++ b/resource/getrusage.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/nice.c b/resource/nice.c index 4ec9200a2a..aac2a33fd6 100644 --- a/resource/nice.c +++ b/resource/nice.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/setpriority.c b/resource/setpriority.c index 49ef4d668f..8f9c9586e4 100644 --- a/resource/setpriority.c +++ b/resource/setpriority.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/setrlimit.c b/resource/setrlimit.c index b8496b1548..7d46e4ab73 100644 --- a/resource/setrlimit.c +++ b/resource/setrlimit.c @@ -1,5 +1,5 @@ /* Set process resource limits. Stub version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/setrlimit64.c b/resource/setrlimit64.c index 6d120b378c..7bb153e7b5 100644 --- a/resource/setrlimit64.c +++ b/resource/setrlimit64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/sys/resource.h b/resource/sys/resource.h index 7e6972a5ac..1da04c5831 100644 --- a/resource/sys/resource.h +++ b/resource/sys/resource.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/sys/vlimit.h b/resource/sys/vlimit.h index 892d706392..f23033507e 100644 --- a/resource/sys/vlimit.h +++ b/resource/sys/vlimit.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/sys/vtimes.h b/resource/sys/vtimes.h index f9329554b3..e100b7f25e 100644 --- a/resource/sys/vtimes.h +++ b/resource/sys/vtimes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/ulimit.c b/resource/ulimit.c index 6cb7be6dcf..cda31a0e80 100644 --- a/resource/ulimit.c +++ b/resource/ulimit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/ulimit.h b/resource/ulimit.h index 4f95b32390..2d01aeb10f 100644 --- a/resource/ulimit.h +++ b/resource/ulimit.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/vlimit.c b/resource/vlimit.c index e7f9d4e54c..c68ee8e9c1 100644 --- a/resource/vlimit.c +++ b/resource/vlimit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/resource/vtimes.c b/resource/vtimes.c index f52428527f..d3101f4a7c 100644 --- a/resource/vtimes.c +++ b/resource/vtimes.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/Makefile b/rt/Makefile index b1392f2e0f..6e99da0ebb 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/aio.h b/rt/aio.h index fd2f15dbd6..090ff05462 100644 --- a/rt/aio.h +++ b/rt/aio.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/aio_cancel.c b/rt/aio_cancel.c index 53a15c5657..ca27feb89d 100644 --- a/rt/aio_cancel.c +++ b/rt/aio_cancel.c @@ -1,5 +1,5 @@ /* Cancel requests associated with given file descriptor. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/aio_error.c b/rt/aio_error.c index 222b5cfe31..7348f8012d 100644 --- a/rt/aio_error.c +++ b/rt/aio_error.c @@ -1,5 +1,5 @@ /* Return error status of asynchronous I/O request. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/rt/aio_fsync.c b/rt/aio_fsync.c index 97687a4e31..0617313f07 100644 --- a/rt/aio_fsync.c +++ b/rt/aio_fsync.c @@ -1,5 +1,5 @@ /* Synchronize I/O in given file descriptor. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/aio_misc.c b/rt/aio_misc.c index 98bf93b608..ba9af8023a 100644 --- a/rt/aio_misc.c +++ b/rt/aio_misc.c @@ -1,5 +1,5 @@ /* Handle general operations. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/aio_notify.c b/rt/aio_notify.c index f1ed8f1d07..5852b6d76a 100644 --- a/rt/aio_notify.c +++ b/rt/aio_notify.c @@ -1,5 +1,5 @@ /* Notify initiator of AIO request. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/aio_read.c b/rt/aio_read.c index 707de9adca..c3c10d7353 100644 --- a/rt/aio_read.c +++ b/rt/aio_read.c @@ -1,5 +1,5 @@ /* Asynchronous read. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/aio_return.c b/rt/aio_return.c index 125fcd551d..7dcecc13b3 100644 --- a/rt/aio_return.c +++ b/rt/aio_return.c @@ -1,5 +1,5 @@ /* Return exit value of asynchronous I/O request. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/rt/aio_sigqueue.c b/rt/aio_sigqueue.c index fb033add68..dfa6467fd1 100644 --- a/rt/aio_sigqueue.c +++ b/rt/aio_sigqueue.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/aio_suspend.c b/rt/aio_suspend.c index 0dd0ee4e8d..6ff22df6d3 100644 --- a/rt/aio_suspend.c +++ b/rt/aio_suspend.c @@ -1,5 +1,5 @@ /* Suspend until termination of a requests. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/aio_write.c b/rt/aio_write.c index 379fe80fc5..a1339fbb16 100644 --- a/rt/aio_write.c +++ b/rt/aio_write.c @@ -1,5 +1,5 @@ /* Asynchronous write. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/bits/mqueue2.h b/rt/bits/mqueue2.h index 234d3b5568..d1a5ea955a 100644 --- a/rt/bits/mqueue2.h +++ b/rt/bits/mqueue2.h @@ -1,5 +1,5 @@ /* Checking macros for mq functions. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/clock-compat.c b/rt/clock-compat.c index 9f4597e98f..1ccc2965e2 100644 --- a/rt/clock-compat.c +++ b/rt/clock-compat.c @@ -1,5 +1,5 @@ /* ABI compatibility redirects for clock_* symbols in librt. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/clock_getcpuclockid.c b/rt/clock_getcpuclockid.c index d16ce14a8b..b3f2d57983 100644 --- a/rt/clock_getcpuclockid.c +++ b/rt/clock_getcpuclockid.c @@ -1,5 +1,5 @@ /* Get a clockid_t for the process CPU clock of a given process. Generic. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/clock_getres.c b/rt/clock_getres.c index df19c40de3..154ac3a290 100644 --- a/rt/clock_getres.c +++ b/rt/clock_getres.c @@ -1,5 +1,5 @@ /* Get the resolution of a clock. Stub version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/clock_gettime.c b/rt/clock_gettime.c index 1c9e52459a..1f14872de8 100644 --- a/rt/clock_gettime.c +++ b/rt/clock_gettime.c @@ -1,5 +1,5 @@ /* Get the current value of a clock. Stub version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/clock_nanosleep.c b/rt/clock_nanosleep.c index 8779147516..7cc5429d8b 100644 --- a/rt/clock_nanosleep.c +++ b/rt/clock_nanosleep.c @@ -1,5 +1,5 @@ /* High-resolution sleep with the specified clock. Stub version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/clock_settime.c b/rt/clock_settime.c index 9249f262ff..0a69e5f894 100644 --- a/rt/clock_settime.c +++ b/rt/clock_settime.c @@ -1,5 +1,5 @@ /* Set a clock to a given value. Stub version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/get_clockfreq.c b/rt/get_clockfreq.c index dd91f89d7b..78008e1e51 100644 --- a/rt/get_clockfreq.c +++ b/rt/get_clockfreq.c @@ -1,5 +1,5 @@ /* Get frequency of the system processor. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/lio_listio.c b/rt/lio_listio.c index a887eb1ef9..233ecd664c 100644 --- a/rt/lio_listio.c +++ b/rt/lio_listio.c @@ -1,5 +1,5 @@ /* Enqueue a list of read or write requests. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/mq_close.c b/rt/mq_close.c index 5d855e22d4..93ee98c9c3 100644 --- a/rt/mq_close.c +++ b/rt/mq_close.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/mq_getattr.c b/rt/mq_getattr.c index 6c8d173940..e952cd4640 100644 --- a/rt/mq_getattr.c +++ b/rt/mq_getattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/mq_notify.c b/rt/mq_notify.c index acfc22013d..c19e48351e 100644 --- a/rt/mq_notify.c +++ b/rt/mq_notify.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/mq_open.c b/rt/mq_open.c index 0b55398504..0eff697696 100644 --- a/rt/mq_open.c +++ b/rt/mq_open.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/mq_receive.c b/rt/mq_receive.c index 2cf95849f8..203998feb9 100644 --- a/rt/mq_receive.c +++ b/rt/mq_receive.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/mq_send.c b/rt/mq_send.c index 7e6ff88655..93f8286017 100644 --- a/rt/mq_send.c +++ b/rt/mq_send.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/mq_setattr.c b/rt/mq_setattr.c index d220ebf367..3cc22f6149 100644 --- a/rt/mq_setattr.c +++ b/rt/mq_setattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/mq_timedreceive.c b/rt/mq_timedreceive.c index 8a59f1932f..1cf977b9e7 100644 --- a/rt/mq_timedreceive.c +++ b/rt/mq_timedreceive.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/mq_timedsend.c b/rt/mq_timedsend.c index fbaa980fc9..f150f4ed40 100644 --- a/rt/mq_timedsend.c +++ b/rt/mq_timedsend.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/mq_unlink.c b/rt/mq_unlink.c index 60a0cfdda6..3da1cecb83 100644 --- a/rt/mq_unlink.c +++ b/rt/mq_unlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/mqueue.h b/rt/mqueue.h index 6917247294..e92f009b7f 100644 --- a/rt/mqueue.h +++ b/rt/mqueue.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/shm_open.c b/rt/shm_open.c index 931cc9803f..63530e8471 100644 --- a/rt/shm_open.c +++ b/rt/shm_open.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/shm_unlink.c b/rt/shm_unlink.c index a4d96e673c..9cd1216bdb 100644 --- a/rt/shm_unlink.c +++ b/rt/shm_unlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/timer_create.c b/rt/timer_create.c index 3195a37d68..e2cb0551aa 100644 --- a/rt/timer_create.c +++ b/rt/timer_create.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/timer_delete.c b/rt/timer_delete.c index dc073d15d2..27290bcd34 100644 --- a/rt/timer_delete.c +++ b/rt/timer_delete.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/timer_getoverr.c b/rt/timer_getoverr.c index af4a4fa224..3faf09f00d 100644 --- a/rt/timer_getoverr.c +++ b/rt/timer_getoverr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/timer_gettime.c b/rt/timer_gettime.c index f95bef446c..63489e4df2 100644 --- a/rt/timer_gettime.c +++ b/rt/timer_gettime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/timer_settime.c b/rt/timer_settime.c index 9f593d9dd9..b85d59916c 100644 --- a/rt/timer_settime.c +++ b/rt/timer_settime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/tst-aio.c b/rt/tst-aio.c index 167e725593..d891a21b53 100644 --- a/rt/tst-aio.c +++ b/rt/tst-aio.c @@ -1,5 +1,5 @@ /* Tests for AIO in librt. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/rt/tst-aio2.c b/rt/tst-aio2.c index 353d545b6c..9cd382a0f5 100644 --- a/rt/tst-aio2.c +++ b/rt/tst-aio2.c @@ -1,5 +1,5 @@ /* Test for notification mechanism in lio_listio. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/rt/tst-aio3.c b/rt/tst-aio3.c index d8dcc80c09..a761376f2a 100644 --- a/rt/tst-aio3.c +++ b/rt/tst-aio3.c @@ -1,5 +1,5 @@ /* Test for notification mechanism in lio_listio. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/tst-aio4.c b/rt/tst-aio4.c index 9d71f3a989..05331b069a 100644 --- a/rt/tst-aio4.c +++ b/rt/tst-aio4.c @@ -1,5 +1,5 @@ /* Test for completion signal handling. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/tst-aio5.c b/rt/tst-aio5.c index 9b6ddec3e7..b45838d35e 100644 --- a/rt/tst-aio5.c +++ b/rt/tst-aio5.c @@ -1,5 +1,5 @@ /* Test for completion thread handling. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/tst-aio6.c b/rt/tst-aio6.c index a549df584c..7f93eeec0a 100644 --- a/rt/tst-aio6.c +++ b/rt/tst-aio6.c @@ -1,5 +1,5 @@ /* Test for timeout handling. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/tst-aio64.c b/rt/tst-aio64.c index 44be1ac409..03ab439f7e 100644 --- a/rt/tst-aio64.c +++ b/rt/tst-aio64.c @@ -1,5 +1,5 @@ /* Tests for 64bit AIO in librt. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/rt/tst-aio7.c b/rt/tst-aio7.c index b25c33c153..372d5c581a 100644 --- a/rt/tst-aio7.c +++ b/rt/tst-aio7.c @@ -1,5 +1,5 @@ /* Test for AIO POSIX compliance. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/tst-clock.c b/rt/tst-clock.c index 49c418d2db..f6133f5dde 100644 --- a/rt/tst-clock.c +++ b/rt/tst-clock.c @@ -1,5 +1,5 @@ /* Test program for POSIX clock_* functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/rt/tst-clock_nanosleep.c b/rt/tst-clock_nanosleep.c index 21a6ce5d66..04265bdd7f 100644 --- a/rt/tst-clock_nanosleep.c +++ b/rt/tst-clock_nanosleep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/tst-cpuclock1.c b/rt/tst-cpuclock1.c index d3ee937bca..f503bc28bf 100644 --- a/rt/tst-cpuclock1.c +++ b/rt/tst-cpuclock1.c @@ -1,5 +1,5 @@ /* Test program for process CPU clocks. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/tst-cpuclock2.c b/rt/tst-cpuclock2.c index 6752721717..8a447e15ab 100644 --- a/rt/tst-cpuclock2.c +++ b/rt/tst-cpuclock2.c @@ -1,5 +1,5 @@ /* Test program for process and thread CPU clocks. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/tst-mqueue.h b/rt/tst-mqueue.h index 37dbbb63bf..aef09035ca 100644 --- a/rt/tst-mqueue.h +++ b/rt/tst-mqueue.h @@ -1,5 +1,5 @@ /* Common code for message queue passing tests. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/rt/tst-mqueue1.c b/rt/tst-mqueue1.c index a3c8af360b..c242c37733 100644 --- a/rt/tst-mqueue1.c +++ b/rt/tst-mqueue1.c @@ -1,5 +1,5 @@ /* Test message queue passing. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/rt/tst-mqueue2.c b/rt/tst-mqueue2.c index c5f7ed8bb8..5d9ecf4109 100644 --- a/rt/tst-mqueue2.c +++ b/rt/tst-mqueue2.c @@ -1,5 +1,5 @@ /* Test message queue passing. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/rt/tst-mqueue3.c b/rt/tst-mqueue3.c index b96fcc633c..4607e1b088 100644 --- a/rt/tst-mqueue3.c +++ b/rt/tst-mqueue3.c @@ -1,5 +1,5 @@ /* Test SIGEV_THREAD handling for POSIX message queues. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/rt/tst-mqueue4.c b/rt/tst-mqueue4.c index 3957af7048..60603bec09 100644 --- a/rt/tst-mqueue4.c +++ b/rt/tst-mqueue4.c @@ -1,5 +1,5 @@ /* Test message queue passing. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/rt/tst-mqueue5.c b/rt/tst-mqueue5.c index 274649fb7c..575b0114ea 100644 --- a/rt/tst-mqueue5.c +++ b/rt/tst-mqueue5.c @@ -1,5 +1,5 @@ /* Test mq_notify. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/rt/tst-mqueue6.c b/rt/tst-mqueue6.c index 24278b1676..a7715151b2 100644 --- a/rt/tst-mqueue6.c +++ b/rt/tst-mqueue6.c @@ -1,5 +1,5 @@ /* Test mq_notify. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/rt/tst-mqueue7.c b/rt/tst-mqueue7.c index ae2b875c68..e77fcf6571 100644 --- a/rt/tst-mqueue7.c +++ b/rt/tst-mqueue7.c @@ -1,5 +1,5 @@ /* Test all open message queues descriptors are closed during exec*. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/rt/tst-mqueue8.c b/rt/tst-mqueue8.c index 63f3f7bd2e..20d1819e42 100644 --- a/rt/tst-mqueue8.c +++ b/rt/tst-mqueue8.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/rt/tst-mqueue9.c b/rt/tst-mqueue9.c index 5ab2a45e96..4fb1eadc86 100644 --- a/rt/tst-mqueue9.c +++ b/rt/tst-mqueue9.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/rt/tst-shm.c b/rt/tst-shm.c index 83ad586ccf..5f9449855d 100644 --- a/rt/tst-shm.c +++ b/rt/tst-shm.c @@ -1,5 +1,5 @@ /* Test program for POSIX shm_* functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/rt/tst-timer.c b/rt/tst-timer.c index 59ff242da8..f35d3e7328 100644 --- a/rt/tst-timer.c +++ b/rt/tst-timer.c @@ -1,5 +1,5 @@ /* Tests for POSIX timer implementation. Dummy version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/rt/tst-timer4.c b/rt/tst-timer4.c index faeed43eee..f64fadd28a 100644 --- a/rt/tst-timer4.c +++ b/rt/tst-timer4.c @@ -1,5 +1,5 @@ /* Tests for POSIX timer implementation. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004 diff --git a/scripts/bench.pl b/scripts/bench.pl index 10f0ba4179..569cd5156a 100755 --- a/scripts/bench.pl +++ b/scripts/bench.pl @@ -1,5 +1,5 @@ #! /usr/bin/perl -w -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/scripts/check-c++-types.sh b/scripts/check-c++-types.sh index 364f39b3fa..cb47c7b7fa 100755 --- a/scripts/check-c++-types.sh +++ b/scripts/check-c++-types.sh @@ -1,5 +1,5 @@ #! /bin/bash -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/scripts/check-local-headers.sh b/scripts/check-local-headers.sh index 6ec3162a11..9bffed321f 100755 --- a/scripts/check-local-headers.sh +++ b/scripts/check-local-headers.sh @@ -1,5 +1,5 @@ #! /bin/bash -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/scripts/cross-test-ssh.sh b/scripts/cross-test-ssh.sh index 030a76ab89..405ae999f5 100755 --- a/scripts/cross-test-ssh.sh +++ b/scripts/cross-test-ssh.sh @@ -1,6 +1,6 @@ #! /bin/bash # Run a testcase on a remote system, via ssh. -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/scripts/gen-sorted.awk b/scripts/gen-sorted.awk index 493a675f47..0f2a43f88f 100755 --- a/scripts/gen-sorted.awk +++ b/scripts/gen-sorted.awk @@ -1,7 +1,7 @@ #! /usr/bin/awk -f # Generate sorted list of directories. The sorting is stable but with # dependencies between directories resolved by moving dependees in front. -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # Written by Ulrich Drepper , 1998. BEGIN { diff --git a/scripts/rellns-sh b/scripts/rellns-sh index 9a1496a9fd..9132ce77a0 100755 --- a/scripts/rellns-sh +++ b/scripts/rellns-sh @@ -1,6 +1,6 @@ #! /bin/sh # rellns-sh - Simplified ln program to generate relative symbolic link. -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # Written by Ulrich Drepper , October 1996 # # This program is free software; you can redistribute it and/or modify diff --git a/scripts/test-installation.pl b/scripts/test-installation.pl index e01d60bd2b..55fa81337c 100755 --- a/scripts/test-installation.pl +++ b/scripts/test-installation.pl @@ -1,5 +1,5 @@ #! /usr/bin/perl -w -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Andreas Jaeger , 1997. diff --git a/scripts/update-copyrights b/scripts/update-copyrights index ff0c6bc83b..7d9d093c0b 100755 --- a/scripts/update-copyrights +++ b/scripts/update-copyrights @@ -1,6 +1,6 @@ #! /bin/sh # Update copyright year lists. -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/scripts/versions.awk b/scripts/versions.awk index 315278d8f7..7cc61d1a7f 100644 --- a/scripts/versions.awk +++ b/scripts/versions.awk @@ -1,5 +1,5 @@ # Combine version map fragments into version scripts for our shared objects. -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # Written by Ulrich Drepper , 1998. # This script expects the following variables to be defined: diff --git a/setjmp/Makefile b/setjmp/Makefile index 913359cf73..285b90982c 100644 --- a/setjmp/Makefile +++ b/setjmp/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/__longjmp.c b/setjmp/__longjmp.c index 97b2be8948..7837bf05b2 100644 --- a/setjmp/__longjmp.c +++ b/setjmp/__longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/bits/setjmp2.h b/setjmp/bits/setjmp2.h index 0e6e93cc5b..fb335a8ea3 100644 --- a/setjmp/bits/setjmp2.h +++ b/setjmp/bits/setjmp2.h @@ -1,5 +1,5 @@ /* Checking macros for setjmp functions. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/bsd-_setjmp.c b/setjmp/bsd-_setjmp.c index 3f48e1a73a..cd65d48d31 100644 --- a/setjmp/bsd-_setjmp.c +++ b/setjmp/bsd-_setjmp.c @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. Stub version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/bsd-setjmp.c b/setjmp/bsd-setjmp.c index 1c9ded6c6a..842587bf11 100644 --- a/setjmp/bsd-setjmp.c +++ b/setjmp/bsd-setjmp.c @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. Stub version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/bug269-setjmp.c b/setjmp/bug269-setjmp.c index 7521cee56f..ba4aa3591c 100644 --- a/setjmp/bug269-setjmp.c +++ b/setjmp/bug269-setjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/jmp-unwind.c b/setjmp/jmp-unwind.c index 80323b2652..e3ddee4eaf 100644 --- a/setjmp/jmp-unwind.c +++ b/setjmp/jmp-unwind.c @@ -1,5 +1,5 @@ /* _longjmp_unwind -- Clean up stack frames unwound by longjmp. Stub version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/longjmp.c b/setjmp/longjmp.c index cfda411f31..9253a38ad3 100644 --- a/setjmp/longjmp.c +++ b/setjmp/longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/setjmp.c b/setjmp/setjmp.c index 6254966bd9..8b3da39431 100644 --- a/setjmp/setjmp.c +++ b/setjmp/setjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/setjmp.h b/setjmp/setjmp.h index 8e6b5b49d1..774b764237 100644 --- a/setjmp/setjmp.h +++ b/setjmp/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/sigjmp.c b/setjmp/sigjmp.c index 73dd356055..8dc691465e 100644 --- a/setjmp/sigjmp.c +++ b/setjmp/sigjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/tst-setjmp-fp.c b/setjmp/tst-setjmp-fp.c index dc2b4b0808..d84c47ed5c 100644 --- a/setjmp/tst-setjmp-fp.c +++ b/setjmp/tst-setjmp-fp.c @@ -1,6 +1,6 @@ /* Test that setjmp/longjmp do not save and restore floating-point exceptions and rounding modes. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/tst-setjmp.c b/setjmp/tst-setjmp.c index 0f99c5bdfc..2484fc56dc 100644 --- a/setjmp/tst-setjmp.c +++ b/setjmp/tst-setjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/setjmp/tst-sigsetjmp.c b/setjmp/tst-sigsetjmp.c index 467c26a968..460ba9c964 100644 --- a/setjmp/tst-sigsetjmp.c +++ b/setjmp/tst-sigsetjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/shadow/Makefile b/shadow/Makefile index 88e97e2b40..c5cb358375 100644 --- a/shadow/Makefile +++ b/shadow/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/shadow/fgetspent.c b/shadow/fgetspent.c index a23cfa6cdd..697e118977 100644 --- a/shadow/fgetspent.c +++ b/shadow/fgetspent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/shadow/fgetspent_r.c b/shadow/fgetspent_r.c index 462a13c671..ff35af2b79 100644 --- a/shadow/fgetspent_r.c +++ b/shadow/fgetspent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/shadow/getspent.c b/shadow/getspent.c index 2fcbae164f..afbd98b8a8 100644 --- a/shadow/getspent.c +++ b/shadow/getspent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/shadow/getspent_r.c b/shadow/getspent_r.c index de63298f57..fb0aee2486 100644 --- a/shadow/getspent_r.c +++ b/shadow/getspent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/shadow/getspnam.c b/shadow/getspnam.c index 58839997ef..dffbd474b7 100644 --- a/shadow/getspnam.c +++ b/shadow/getspnam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/shadow/getspnam_r.c b/shadow/getspnam_r.c index b7886bd143..330bf36a99 100644 --- a/shadow/getspnam_r.c +++ b/shadow/getspnam_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/shadow/lckpwdf.c b/shadow/lckpwdf.c index 266027af8f..bedfc16ab3 100644 --- a/shadow/lckpwdf.c +++ b/shadow/lckpwdf.c @@ -1,5 +1,5 @@ /* Handle locking of password file. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/shadow/putspent.c b/shadow/putspent.c index d0d743c430..a6ab4a9479 100644 --- a/shadow/putspent.c +++ b/shadow/putspent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/shadow/sgetspent.c b/shadow/sgetspent.c index d484d45276..8adc666125 100644 --- a/shadow/sgetspent.c +++ b/shadow/sgetspent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/shadow/sgetspent_r.c b/shadow/sgetspent_r.c index c0fef4d139..0ee88bbdf0 100644 --- a/shadow/sgetspent_r.c +++ b/shadow/sgetspent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/shadow/shadow.h b/shadow/shadow.h index 90d46136a4..d931e68cd7 100644 --- a/shadow/shadow.h +++ b/shadow/shadow.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/Makefile b/signal/Makefile index dd068d7134..f9d5f715b9 100644 --- a/signal/Makefile +++ b/signal/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/allocrtsig.c b/signal/allocrtsig.c index a73c5bb890..b3b77cfb1e 100644 --- a/signal/allocrtsig.c +++ b/signal/allocrtsig.c @@ -1,5 +1,5 @@ /* Handle real-time signal allocation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/signal/kill.c b/signal/kill.c index 57a37803f0..a7927413cb 100644 --- a/signal/kill.c +++ b/signal/kill.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/killpg.c b/signal/killpg.c index 7755f1940b..3bd7ee611c 100644 --- a/signal/killpg.c +++ b/signal/killpg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/raise.c b/signal/raise.c index 3a5fd0e607..f1b7c3a8cd 100644 --- a/signal/raise.c +++ b/signal/raise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigaction.c b/signal/sigaction.c index a111066652..a938f294e4 100644 --- a/signal/sigaction.c +++ b/signal/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigaddset.c b/signal/sigaddset.c index c4d12da216..c35b2a8596 100644 --- a/signal/sigaddset.c +++ b/signal/sigaddset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigaltstack.c b/signal/sigaltstack.c index 955fd4c529..7b13420864 100644 --- a/signal/sigaltstack.c +++ b/signal/sigaltstack.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigandset.c b/signal/sigandset.c index 11630ab0f2..8cc0bcf302 100644 --- a/signal/sigandset.c +++ b/signal/sigandset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigblock.c b/signal/sigblock.c index 2dd6d8bd51..641915232e 100644 --- a/signal/sigblock.c +++ b/signal/sigblock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigdelset.c b/signal/sigdelset.c index 2a52ae44c4..870e4ac530 100644 --- a/signal/sigdelset.c +++ b/signal/sigdelset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigempty.c b/signal/sigempty.c index 4081de03b6..b8772f8edc 100644 --- a/signal/sigempty.c +++ b/signal/sigempty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigfillset.c b/signal/sigfillset.c index 43ec78572e..6b5df37541 100644 --- a/signal/sigfillset.c +++ b/signal/sigfillset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/siggetmask.c b/signal/siggetmask.c index 0e3bfd11e5..bfc9ee0f83 100644 --- a/signal/siggetmask.c +++ b/signal/siggetmask.c @@ -1,5 +1,5 @@ /* siggetmask -- useless alias for `sigblock (0)' for old Linux compatibility. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sighold.c b/signal/sighold.c index c681e3c715..8a4579f930 100644 --- a/signal/sighold.c +++ b/signal/sighold.c @@ -1,5 +1,5 @@ /* Add SIG to the calling process' signal mask. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/signal/sigignore.c b/signal/sigignore.c index 4192ddab51..47cc4f1a74 100644 --- a/signal/sigignore.c +++ b/signal/sigignore.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigintr.c b/signal/sigintr.c index 6ecc51c31b..20fc983673 100644 --- a/signal/sigintr.c +++ b/signal/sigintr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigisempty.c b/signal/sigisempty.c index ac2274d74e..3b56026268 100644 --- a/signal/sigisempty.c +++ b/signal/sigisempty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigismem.c b/signal/sigismem.c index 35e7d2abbf..ae1538d0d1 100644 --- a/signal/sigismem.c +++ b/signal/sigismem.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/signal.c b/signal/signal.c index 23f19fbae7..8631f15ffa 100644 --- a/signal/signal.c +++ b/signal/signal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/signal.h b/signal/signal.h index b698d14bb6..1807658f41 100644 --- a/signal/signal.h +++ b/signal/signal.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigorset.c b/signal/sigorset.c index 10810c8253..b7249d3687 100644 --- a/signal/sigorset.c +++ b/signal/sigorset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigpause.c b/signal/sigpause.c index b95d659585..f8a7bfe9b6 100644 --- a/signal/sigpause.c +++ b/signal/sigpause.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigpending.c b/signal/sigpending.c index 8542d38e01..68c2a674f3 100644 --- a/signal/sigpending.c +++ b/signal/sigpending.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigprocmask.c b/signal/sigprocmask.c index 877e477928..129905e130 100644 --- a/signal/sigprocmask.c +++ b/signal/sigprocmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigqueue.c b/signal/sigqueue.c index 5d115fcd9b..4e7f8c4a0e 100644 --- a/signal/sigqueue.c +++ b/signal/sigqueue.c @@ -1,5 +1,5 @@ /* Implementation of sigqueue function from POSIX.1b. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigrelse.c b/signal/sigrelse.c index 50deff5a89..533a5feb3f 100644 --- a/signal/sigrelse.c +++ b/signal/sigrelse.c @@ -1,5 +1,5 @@ /* Remove SIG from the calling process' signal mask. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/signal/sigreturn.c b/signal/sigreturn.c index 398e0aba19..bbd7457b57 100644 --- a/signal/sigreturn.c +++ b/signal/sigreturn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigset.c b/signal/sigset.c index f660eecca6..fefe99f187 100644 --- a/signal/sigset.c +++ b/signal/sigset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigsetmask.c b/signal/sigsetmask.c index 916aa32b6e..eb67f3e5d6 100644 --- a/signal/sigsetmask.c +++ b/signal/sigsetmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigsetops.h b/signal/sigsetops.h index 06cd98537f..ac48ec148d 100644 --- a/signal/sigsetops.h +++ b/signal/sigsetops.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigstack.c b/signal/sigstack.c index b49162df65..dfe3b9aead 100644 --- a/signal/sigstack.c +++ b/signal/sigstack.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigsuspend.c b/signal/sigsuspend.c index d4047d2f9c..8f061397c5 100644 --- a/signal/sigsuspend.c +++ b/signal/sigsuspend.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigtimedwait.c b/signal/sigtimedwait.c index 196de7db4e..70bcd7f249 100644 --- a/signal/sigtimedwait.c +++ b/signal/sigtimedwait.c @@ -1,5 +1,5 @@ /* Implementation of sigtimedwait function from POSIX.1b. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigvec.c b/signal/sigvec.c index f667a0179f..e3ffb281a8 100644 --- a/signal/sigvec.c +++ b/signal/sigvec.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigwait.c b/signal/sigwait.c index 53f4d90efc..ac7e5305ab 100644 --- a/signal/sigwait.c +++ b/signal/sigwait.c @@ -1,5 +1,5 @@ /* sigwait - implementation of sigwait function from POSIX.1c. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sigwaitinfo.c b/signal/sigwaitinfo.c index 33e5d1dd44..1b553633f2 100644 --- a/signal/sigwaitinfo.c +++ b/signal/sigwaitinfo.c @@ -1,5 +1,5 @@ /* Implementation of sigwaitinfo function from POSIX.1b. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/sysv_signal.c b/signal/sysv_signal.c index 4fb32b83dd..75dce0969d 100644 --- a/signal/sysv_signal.c +++ b/signal/sysv_signal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/signal/tst-raise.c b/signal/tst-raise.c index cfcc49128e..92b273503b 100644 --- a/signal/tst-raise.c +++ b/signal/tst-raise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/signal/tst-sigsimple.c b/signal/tst-sigsimple.c index cf3bedc8a9..82ec522be0 100644 --- a/signal/tst-sigsimple.c +++ b/signal/tst-sigsimple.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/socket/Makefile b/socket/Makefile index dc8bbde5c4..a297084cc7 100644 --- a/socket/Makefile +++ b/socket/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/accept.c b/socket/accept.c index 144f6890ef..7cf3832485 100644 --- a/socket/accept.c +++ b/socket/accept.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/accept4.c b/socket/accept4.c index 044512c60b..94a9864677 100644 --- a/socket/accept4.c +++ b/socket/accept4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/bind.c b/socket/bind.c index b78230eddf..24914fc592 100644 --- a/socket/bind.c +++ b/socket/bind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/bits/socket2.h b/socket/bits/socket2.h index 0b1b5d7596..74e1648e7c 100644 --- a/socket/bits/socket2.h +++ b/socket/bits/socket2.h @@ -1,5 +1,5 @@ /* Checking macros for socket functions. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/connect.c b/socket/connect.c index 0f36372eef..311ee3f1a7 100644 --- a/socket/connect.c +++ b/socket/connect.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/getpeername.c b/socket/getpeername.c index 4657fc3b16..d6597c0db0 100644 --- a/socket/getpeername.c +++ b/socket/getpeername.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/getsockname.c b/socket/getsockname.c index 328af05332..01d0b062b6 100644 --- a/socket/getsockname.c +++ b/socket/getsockname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/getsockopt.c b/socket/getsockopt.c index dbc4fb728b..ce35f336dc 100644 --- a/socket/getsockopt.c +++ b/socket/getsockopt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/have_sock_cloexec.c b/socket/have_sock_cloexec.c index f48514b800..f7b83411a0 100644 --- a/socket/have_sock_cloexec.c +++ b/socket/have_sock_cloexec.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/isfdtype.c b/socket/isfdtype.c index b6ebe514f3..4b127584df 100644 --- a/socket/isfdtype.c +++ b/socket/isfdtype.c @@ -1,5 +1,5 @@ /* isfdtype - Determine whether descriptor has given property. Stub version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/listen.c b/socket/listen.c index 89a50c015b..19fc726a0d 100644 --- a/socket/listen.c +++ b/socket/listen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/opensock.c b/socket/opensock.c index 926e8e0dd9..8dd89060fa 100644 --- a/socket/opensock.c +++ b/socket/opensock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/recv.c b/socket/recv.c index fcdab668d1..de9061e786 100644 --- a/socket/recv.c +++ b/socket/recv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/recvfrom.c b/socket/recvfrom.c index f58133d84c..ada4bebca2 100644 --- a/socket/recvfrom.c +++ b/socket/recvfrom.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/recvmmsg.c b/socket/recvmmsg.c index 640ddf91a1..ed0c369486 100644 --- a/socket/recvmmsg.c +++ b/socket/recvmmsg.c @@ -1,5 +1,5 @@ /* Receive multiple messages on a socket. Stub version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/recvmsg.c b/socket/recvmsg.c index 5ed9534e1c..a3aa567c8c 100644 --- a/socket/recvmsg.c +++ b/socket/recvmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/sa_len.c b/socket/sa_len.c index 5cbcf4b586..183e679aa5 100644 --- a/socket/sa_len.c +++ b/socket/sa_len.c @@ -1,5 +1,5 @@ /* Helper for SA_LEN macro. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/send.c b/socket/send.c index 0306c5fee6..39f05faa00 100644 --- a/socket/send.c +++ b/socket/send.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/sendmmsg.c b/socket/sendmmsg.c index db387a989a..e7e5cdc95f 100644 --- a/socket/sendmmsg.c +++ b/socket/sendmmsg.c @@ -1,5 +1,5 @@ /* Send multiple messages on a socket. Stub version. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/sendmsg.c b/socket/sendmsg.c index e996cf7859..08749b64f8 100644 --- a/socket/sendmsg.c +++ b/socket/sendmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/sendto.c b/socket/sendto.c index ef60526048..42f8e58494 100644 --- a/socket/sendto.c +++ b/socket/sendto.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/setsockopt.c b/socket/setsockopt.c index 03d224e5a8..3730da2b2a 100644 --- a/socket/setsockopt.c +++ b/socket/setsockopt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/shutdown.c b/socket/shutdown.c index 596f38a1d4..63506779bf 100644 --- a/socket/shutdown.c +++ b/socket/shutdown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/sockatmark.c b/socket/sockatmark.c index 43c453c9b0..4cc299a2f2 100644 --- a/socket/sockatmark.c +++ b/socket/sockatmark.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/socket.c b/socket/socket.c index 1f162a49c1..42ae4114d3 100644 --- a/socket/socket.c +++ b/socket/socket.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/socketpair.c b/socket/socketpair.c index 62ac22a0a7..da36155d58 100644 --- a/socket/socketpair.c +++ b/socket/socketpair.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/sys/socket.h b/socket/sys/socket.h index 8aa0babc65..10e17d3926 100644 --- a/socket/sys/socket.h +++ b/socket/sys/socket.h @@ -1,5 +1,5 @@ /* Declarations of socket constants, types, and functions. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/socket/sys/un.h b/socket/sys/un.h index c23bc2e5da..fc0ed39cd8 100644 --- a/socket/sys/un.h +++ b/socket/sys/un.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/soft-fp/Makefile b/soft-fp/Makefile index b5a23469aa..8a7efa3dfd 100644 --- a/soft-fp/Makefile +++ b/soft-fp/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # diff --git a/soft-fp/adddf3.c b/soft-fp/adddf3.c index 5aadfa3318..95bc8e56b0 100644 --- a/soft-fp/adddf3.c +++ b/soft-fp/adddf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a + b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/addsf3.c b/soft-fp/addsf3.c index ac571bad06..b332589d08 100644 --- a/soft-fp/addsf3.c +++ b/soft-fp/addsf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a + b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/addtf3.c b/soft-fp/addtf3.c index 1c0d266c66..ac0d9481fe 100644 --- a/soft-fp/addtf3.c +++ b/soft-fp/addtf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a + b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/divdf3.c b/soft-fp/divdf3.c index d357bf0222..f59da8216b 100644 --- a/soft-fp/divdf3.c +++ b/soft-fp/divdf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a / b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/divsf3.c b/soft-fp/divsf3.c index b53b4031d7..794192825b 100644 --- a/soft-fp/divsf3.c +++ b/soft-fp/divsf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a / b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/divtf3.c b/soft-fp/divtf3.c index 5b7175da54..621f70d99f 100644 --- a/soft-fp/divtf3.c +++ b/soft-fp/divtf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a / b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/double.h b/soft-fp/double.h index ef4576707a..7782994044 100644 --- a/soft-fp/double.h +++ b/soft-fp/double.h @@ -1,6 +1,6 @@ /* Software floating-point emulation. Definitions for IEEE Double Precision - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz), diff --git a/soft-fp/eqdf2.c b/soft-fp/eqdf2.c index e8cfd7666a..006b1ef83a 100644 --- a/soft-fp/eqdf2.c +++ b/soft-fp/eqdf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 0 iff a == b, 1 otherwise - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/eqsf2.c b/soft-fp/eqsf2.c index 0bdb7fb223..437ef99a2f 100644 --- a/soft-fp/eqsf2.c +++ b/soft-fp/eqsf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 0 iff a == b, 1 otherwise - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/eqtf2.c b/soft-fp/eqtf2.c index edbc6f6832..ffc558ced2 100644 --- a/soft-fp/eqtf2.c +++ b/soft-fp/eqtf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 0 iff a == b, 1 otherwise - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/extenddftf2.c b/soft-fp/extenddftf2.c index 2471fda954..6984b41a80 100644 --- a/soft-fp/extenddftf2.c +++ b/soft-fp/extenddftf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a converted to IEEE quad - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/extended.h b/soft-fp/extended.h index 1189f7c7d2..69a5a06260 100644 --- a/soft-fp/extended.h +++ b/soft-fp/extended.h @@ -1,6 +1,6 @@ /* Software floating-point emulation. Definitions for IEEE Extended Precision. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/extendsfdf2.c b/soft-fp/extendsfdf2.c index 2276de527f..a9b6bfbee7 100644 --- a/soft-fp/extendsfdf2.c +++ b/soft-fp/extendsfdf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a converted to IEEE double - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/extendsftf2.c b/soft-fp/extendsftf2.c index 51f60c4569..07fc3679ac 100644 --- a/soft-fp/extendsftf2.c +++ b/soft-fp/extendsftf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a converted to IEEE quad - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/extendxftf2.c b/soft-fp/extendxftf2.c index 684052d874..67b909563f 100644 --- a/soft-fp/extendxftf2.c +++ b/soft-fp/extendxftf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a converted to IEEE quad - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/fixdfdi.c b/soft-fp/fixdfdi.c index 7b926b3d69..4b7659a467 100644 --- a/soft-fp/fixdfdi.c +++ b/soft-fp/fixdfdi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 64bit signed integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixdfsi.c b/soft-fp/fixdfsi.c index 79b2d21505..1545454a0b 100644 --- a/soft-fp/fixdfsi.c +++ b/soft-fp/fixdfsi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 32bit signed integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixdfti.c b/soft-fp/fixdfti.c index b5fe4f99fc..b47b7c22cb 100644 --- a/soft-fp/fixdfti.c +++ b/soft-fp/fixdfti.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert IEEE double to 128bit signed integer - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/fixsfdi.c b/soft-fp/fixsfdi.c index df6b9c728a..5353839b93 100644 --- a/soft-fp/fixsfdi.c +++ b/soft-fp/fixsfdi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 64bit signed integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixsfsi.c b/soft-fp/fixsfsi.c index 4c0bfd39db..8fbebaac61 100644 --- a/soft-fp/fixsfsi.c +++ b/soft-fp/fixsfsi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 32bit signed integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixsfti.c b/soft-fp/fixsfti.c index 6b5229fe91..cf7d284a07 100644 --- a/soft-fp/fixsfti.c +++ b/soft-fp/fixsfti.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert IEEE single to 128bit signed integer - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/fixtfdi.c b/soft-fp/fixtfdi.c index a65173aa78..3697d0f070 100644 --- a/soft-fp/fixtfdi.c +++ b/soft-fp/fixtfdi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 64bit signed integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixtfsi.c b/soft-fp/fixtfsi.c index bc0ea0b87d..220a11ac66 100644 --- a/soft-fp/fixtfsi.c +++ b/soft-fp/fixtfsi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 32bit signed integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixtfti.c b/soft-fp/fixtfti.c index 573ca0ed11..47b062d15c 100644 --- a/soft-fp/fixtfti.c +++ b/soft-fp/fixtfti.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert IEEE quad to 128bit signed integer - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/fixunsdfdi.c b/soft-fp/fixunsdfdi.c index 8831cc3d19..a0a8be94f6 100644 --- a/soft-fp/fixunsdfdi.c +++ b/soft-fp/fixunsdfdi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 64bit unsigned integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixunsdfsi.c b/soft-fp/fixunsdfsi.c index ff3744467a..8905d825ef 100644 --- a/soft-fp/fixunsdfsi.c +++ b/soft-fp/fixunsdfsi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 32bit unsigned integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixunsdfti.c b/soft-fp/fixunsdfti.c index f124a7c6a8..de8189e1a1 100644 --- a/soft-fp/fixunsdfti.c +++ b/soft-fp/fixunsdfti.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert IEEE double to 128bit unsigned integer - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/fixunssfdi.c b/soft-fp/fixunssfdi.c index 4261c5e6a7..68e413d870 100644 --- a/soft-fp/fixunssfdi.c +++ b/soft-fp/fixunssfdi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 64bit unsigned integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixunssfsi.c b/soft-fp/fixunssfsi.c index b4bb890299..7e0bc6bbb8 100644 --- a/soft-fp/fixunssfsi.c +++ b/soft-fp/fixunssfsi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 32bit unsigned integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixunssfti.c b/soft-fp/fixunssfti.c index 36d01b0cfe..264ba13a6d 100644 --- a/soft-fp/fixunssfti.c +++ b/soft-fp/fixunssfti.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert IEEE single to 128bit unsigned integer - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/fixunstfdi.c b/soft-fp/fixunstfdi.c index b2355a2ae9..7e866e4218 100644 --- a/soft-fp/fixunstfdi.c +++ b/soft-fp/fixunstfdi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 64bit unsigned integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixunstfsi.c b/soft-fp/fixunstfsi.c index efa1418da1..9665721f3b 100644 --- a/soft-fp/fixunstfsi.c +++ b/soft-fp/fixunstfsi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a to 32bit unsigned integer - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/fixunstfti.c b/soft-fp/fixunstfti.c index efe0cf5c5d..fcdf122d24 100644 --- a/soft-fp/fixunstfti.c +++ b/soft-fp/fixunstfti.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert IEEE quad to 128bit unsigned integer - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/floatdidf.c b/soft-fp/floatdidf.c index fc8719abd7..f290e248f8 100644 --- a/soft-fp/floatdidf.c +++ b/soft-fp/floatdidf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 64bit signed integer to IEEE double - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floatdisf.c b/soft-fp/floatdisf.c index b6b6b42525..b54cef8ae0 100644 --- a/soft-fp/floatdisf.c +++ b/soft-fp/floatdisf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 64bit signed integer to IEEE single - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floatditf.c b/soft-fp/floatditf.c index fc3fba361f..33c3b197db 100644 --- a/soft-fp/floatditf.c +++ b/soft-fp/floatditf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 64bit signed integer to IEEE quad - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floatsidf.c b/soft-fp/floatsidf.c index 7df5265ffc..fdd9d752f0 100644 --- a/soft-fp/floatsidf.c +++ b/soft-fp/floatsidf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 32bit signed integer to IEEE double - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floatsisf.c b/soft-fp/floatsisf.c index b55fd3329e..3b2f8047bd 100644 --- a/soft-fp/floatsisf.c +++ b/soft-fp/floatsisf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 32bit signed integer to IEEE single - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floatsitf.c b/soft-fp/floatsitf.c index d7c3078e4b..d92e4bdd25 100644 --- a/soft-fp/floatsitf.c +++ b/soft-fp/floatsitf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 32bit signed integer to IEEE quad - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floattidf.c b/soft-fp/floattidf.c index a28181b23a..74c3599f04 100644 --- a/soft-fp/floattidf.c +++ b/soft-fp/floattidf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 128bit signed integer to IEEE double - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/floattisf.c b/soft-fp/floattisf.c index da81047945..1dc76438a0 100644 --- a/soft-fp/floattisf.c +++ b/soft-fp/floattisf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 128bit signed integer to IEEE single - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/floattitf.c b/soft-fp/floattitf.c index ffe217a622..8c439260b7 100644 --- a/soft-fp/floattitf.c +++ b/soft-fp/floattitf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 128bit signed integer to IEEE quad - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/floatundidf.c b/soft-fp/floatundidf.c index 8a041f827a..43d59c19b2 100644 --- a/soft-fp/floatundidf.c +++ b/soft-fp/floatundidf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 64bit unsigned integer to IEEE double - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floatundisf.c b/soft-fp/floatundisf.c index 8dc750851a..bf32a214fd 100644 --- a/soft-fp/floatundisf.c +++ b/soft-fp/floatundisf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 64bit unsigned integer to IEEE single - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floatunditf.c b/soft-fp/floatunditf.c index cc8a3fe06c..4eff13671a 100644 --- a/soft-fp/floatunditf.c +++ b/soft-fp/floatunditf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 64bit unsigned integer to IEEE quad - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floatunsidf.c b/soft-fp/floatunsidf.c index 059029640c..e995bf4e6a 100644 --- a/soft-fp/floatunsidf.c +++ b/soft-fp/floatunsidf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 32bit unsigned integer to IEEE double - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floatunsisf.c b/soft-fp/floatunsisf.c index 91c1e4d1a9..803e0db77f 100644 --- a/soft-fp/floatunsisf.c +++ b/soft-fp/floatunsisf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 32bit unsigned integer to IEEE single - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floatunsitf.c b/soft-fp/floatunsitf.c index b1eecfd7c9..956cb62ef2 100644 --- a/soft-fp/floatunsitf.c +++ b/soft-fp/floatunsitf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 32bit unsigned integer to IEEE quad - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/floatuntidf.c b/soft-fp/floatuntidf.c index 6a8981daec..1b543d4a96 100644 --- a/soft-fp/floatuntidf.c +++ b/soft-fp/floatuntidf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 128bit unsigned integer to IEEE double - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/floatuntisf.c b/soft-fp/floatuntisf.c index 94d0593f26..09a610d309 100644 --- a/soft-fp/floatuntisf.c +++ b/soft-fp/floatuntisf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 128bit unsigned integer to IEEE single - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/floatuntitf.c b/soft-fp/floatuntitf.c index 424bfef8fa..d6e57fdae8 100644 --- a/soft-fp/floatuntitf.c +++ b/soft-fp/floatuntitf.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Convert a 128bit unsigned integer to IEEE quad - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/fmadf4.c b/soft-fp/fmadf4.c index 709c47bb4b..c4826ca20c 100644 --- a/soft-fp/fmadf4.c +++ b/soft-fp/fmadf4.c @@ -1,5 +1,5 @@ /* Implement fma using soft-fp. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/soft-fp/fmasf4.c b/soft-fp/fmasf4.c index 6af3701429..a48e19d1f3 100644 --- a/soft-fp/fmasf4.c +++ b/soft-fp/fmasf4.c @@ -1,5 +1,5 @@ /* Implement fmaf using soft-fp. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/soft-fp/fmatf4.c b/soft-fp/fmatf4.c index 1427b2542f..1fe4b46e05 100644 --- a/soft-fp/fmatf4.c +++ b/soft-fp/fmatf4.c @@ -1,5 +1,5 @@ /* Implement fmal using soft-fp. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/soft-fp/gedf2.c b/soft-fp/gedf2.c index 5b6fad2849..4ff97561ba 100644 --- a/soft-fp/gedf2.c +++ b/soft-fp/gedf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/gesf2.c b/soft-fp/gesf2.c index 4e5d9393f1..f3c5d2d710 100644 --- a/soft-fp/gesf2.c +++ b/soft-fp/gesf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/getf2.c b/soft-fp/getf2.c index ed02f459ea..fb82b795ca 100644 --- a/soft-fp/getf2.c +++ b/soft-fp/getf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 0 iff a == b, 1 iff a > b, -2 iff a ? b, -1 iff a < b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/ledf2.c b/soft-fp/ledf2.c index 476f1c4701..8b15d32b74 100644 --- a/soft-fp/ledf2.c +++ b/soft-fp/ledf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/lesf2.c b/soft-fp/lesf2.c index ac2f748a36..e86ac3f08e 100644 --- a/soft-fp/lesf2.c +++ b/soft-fp/lesf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/letf2.c b/soft-fp/letf2.c index a41055b949..94b7d786d6 100644 --- a/soft-fp/letf2.c +++ b/soft-fp/letf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 0 iff a == b, 1 iff a > b, 2 iff a ? b, -1 iff a < b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/muldf3.c b/soft-fp/muldf3.c index dee3f76e5b..96bf65f554 100644 --- a/soft-fp/muldf3.c +++ b/soft-fp/muldf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a * b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/mulsf3.c b/soft-fp/mulsf3.c index f983b30347..d8160a1a1b 100644 --- a/soft-fp/mulsf3.c +++ b/soft-fp/mulsf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a * b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/multf3.c b/soft-fp/multf3.c index 1306c63f8a..d67a12b7bb 100644 --- a/soft-fp/multf3.c +++ b/soft-fp/multf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a * b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/negdf2.c b/soft-fp/negdf2.c index d74c16c1ed..5d3c6114e5 100644 --- a/soft-fp/negdf2.c +++ b/soft-fp/negdf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return -a - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/negsf2.c b/soft-fp/negsf2.c index 0316105a5d..c4a06089ee 100644 --- a/soft-fp/negsf2.c +++ b/soft-fp/negsf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return -a - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/negtf2.c b/soft-fp/negtf2.c index 8540af24d2..5306005b8b 100644 --- a/soft-fp/negtf2.c +++ b/soft-fp/negtf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return -a - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/op-1.h b/soft-fp/op-1.h index 8ccb46a796..33682cf51e 100644 --- a/soft-fp/op-1.h +++ b/soft-fp/op-1.h @@ -1,6 +1,6 @@ /* Software floating-point emulation. Basic one-word fraction declaration and manipulation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz), diff --git a/soft-fp/op-2.h b/soft-fp/op-2.h index 5ef4217de1..160990fe4e 100644 --- a/soft-fp/op-2.h +++ b/soft-fp/op-2.h @@ -1,6 +1,6 @@ /* Software floating-point emulation. Basic two-word fraction declaration and manipulation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz), diff --git a/soft-fp/op-4.h b/soft-fp/op-4.h index 6c6b461166..a80bdb2f27 100644 --- a/soft-fp/op-4.h +++ b/soft-fp/op-4.h @@ -1,6 +1,6 @@ /* Software floating-point emulation. Basic four-word fraction declaration and manipulation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz), diff --git a/soft-fp/op-8.h b/soft-fp/op-8.h index f1b23db80d..a50cd7b582 100644 --- a/soft-fp/op-8.h +++ b/soft-fp/op-8.h @@ -1,6 +1,6 @@ /* Software floating-point emulation. Basic eight-word fraction declaration and manipulation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz) and diff --git a/soft-fp/op-common.h b/soft-fp/op-common.h index 67cdc33b4c..e901981b95 100644 --- a/soft-fp/op-common.h +++ b/soft-fp/op-common.h @@ -1,5 +1,5 @@ /* Software floating-point emulation. Common operations. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz), diff --git a/soft-fp/quad.h b/soft-fp/quad.h index 5002da5a53..16e362f1c6 100644 --- a/soft-fp/quad.h +++ b/soft-fp/quad.h @@ -1,6 +1,6 @@ /* Software floating-point emulation. Definitions for IEEE Quad Precision. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz), diff --git a/soft-fp/single.h b/soft-fp/single.h index af60c96e68..19fd6476ee 100644 --- a/soft-fp/single.h +++ b/soft-fp/single.h @@ -1,6 +1,6 @@ /* Software floating-point emulation. Definitions for IEEE Single Precision. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz), diff --git a/soft-fp/soft-fp.h b/soft-fp/soft-fp.h index 696fc8676c..c8a98948f8 100644 --- a/soft-fp/soft-fp.h +++ b/soft-fp/soft-fp.h @@ -1,5 +1,5 @@ /* Software floating-point emulation. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz), diff --git a/soft-fp/sqrtdf2.c b/soft-fp/sqrtdf2.c index 266e1925af..db43ddebb3 100644 --- a/soft-fp/sqrtdf2.c +++ b/soft-fp/sqrtdf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return sqrt(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/sqrtsf2.c b/soft-fp/sqrtsf2.c index ded6e87f53..4a551dc7c3 100644 --- a/soft-fp/sqrtsf2.c +++ b/soft-fp/sqrtsf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return sqrt(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/sqrttf2.c b/soft-fp/sqrttf2.c index 9f3e7187b0..e0bec11104 100644 --- a/soft-fp/sqrttf2.c +++ b/soft-fp/sqrttf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return sqrt(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/subdf3.c b/soft-fp/subdf3.c index 6846e98dbd..ef82c86285 100644 --- a/soft-fp/subdf3.c +++ b/soft-fp/subdf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a - b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/subsf3.c b/soft-fp/subsf3.c index d46ddf58ae..8d36e284c7 100644 --- a/soft-fp/subsf3.c +++ b/soft-fp/subsf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a - b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/subtf3.c b/soft-fp/subtf3.c index 88c6edeb61..490ff9cefb 100644 --- a/soft-fp/subtf3.c +++ b/soft-fp/subtf3.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a - b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/truncdfsf2.c b/soft-fp/truncdfsf2.c index 3ec56fdf8a..e6ccb59079 100644 --- a/soft-fp/truncdfsf2.c +++ b/soft-fp/truncdfsf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Truncate IEEE double into IEEE single - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/trunctfdf2.c b/soft-fp/trunctfdf2.c index e970210129..781b5b90b0 100644 --- a/soft-fp/trunctfdf2.c +++ b/soft-fp/trunctfdf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Truncate IEEE quad into IEEE double - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/trunctfsf2.c b/soft-fp/trunctfsf2.c index d8a3728a0d..76437c4d34 100644 --- a/soft-fp/trunctfsf2.c +++ b/soft-fp/trunctfsf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Truncate IEEE quad into IEEE single - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/soft-fp/trunctfxf2.c b/soft-fp/trunctfxf2.c index 750bec1808..1782aaa7d8 100644 --- a/soft-fp/trunctfxf2.c +++ b/soft-fp/trunctfxf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Truncate IEEE quad into IEEE extended - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Uros Bizjak (ubizjak@gmail.com). diff --git a/soft-fp/unorddf2.c b/soft-fp/unorddf2.c index 641c869725..ceacb9e91d 100644 --- a/soft-fp/unorddf2.c +++ b/soft-fp/unorddf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 iff a or b is a NaN, 0 otherwise. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Joseph Myers (joseph@codesourcery.com). diff --git a/soft-fp/unordsf2.c b/soft-fp/unordsf2.c index f271421283..057f2c43a7 100644 --- a/soft-fp/unordsf2.c +++ b/soft-fp/unordsf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 iff a or b is a NaN, 0 otherwise. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Joseph Myers (joseph@codesourcery.com). diff --git a/soft-fp/unordtf2.c b/soft-fp/unordtf2.c index 38cc1a78b2..433a84fd5e 100644 --- a/soft-fp/unordtf2.c +++ b/soft-fp/unordtf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 iff a or b is a NaN, 0 otherwise. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Joseph Myers (joseph@codesourcery.com). diff --git a/stdio-common/Makefile b/stdio-common/Makefile index 16f8f1bd63..76eccb0f86 100644 --- a/stdio-common/Makefile +++ b/stdio-common/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/_i18n_number.h b/stdio-common/_i18n_number.h index edb7fc38d8..061c4d47f8 100644 --- a/stdio-common/_i18n_number.h +++ b/stdio-common/_i18n_number.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/stdio-common/_itoa.c b/stdio-common/_itoa.c index 31bffe7fff..716fe39cc6 100644 --- a/stdio-common/_itoa.c +++ b/stdio-common/_itoa.c @@ -1,5 +1,5 @@ /* Internal function for converting integers to ASCII. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund and Ulrich Drepper . diff --git a/stdio-common/_itowa.c b/stdio-common/_itowa.c index c71831ac6f..405550dfea 100644 --- a/stdio-common/_itowa.c +++ b/stdio-common/_itowa.c @@ -1,5 +1,5 @@ /* Internal function for converting integers to ASCII. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund and Ulrich Drepper . diff --git a/stdio-common/_itowa.h b/stdio-common/_itowa.h index d8e744fe4d..31442f4058 100644 --- a/stdio-common/_itowa.h +++ b/stdio-common/_itowa.h @@ -1,5 +1,5 @@ /* Internal function for converting integers to ASCII. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/asprintf.c b/stdio-common/asprintf.c index 86a5396ac9..787d3b3c68 100644 --- a/stdio-common/asprintf.c +++ b/stdio-common/asprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/bits/printf-ldbl.h b/stdio-common/bits/printf-ldbl.h index 1175ea2aae..5669faef30 100644 --- a/stdio-common/bits/printf-ldbl.h +++ b/stdio-common/bits/printf-ldbl.h @@ -1,5 +1,5 @@ /* -mlong-double-64 compatibility mode for functions. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/bug-vfprintf-nargs.c b/stdio-common/bug-vfprintf-nargs.c index 54d81fb362..c7e7f0b8b4 100644 --- a/stdio-common/bug-vfprintf-nargs.c +++ b/stdio-common/bug-vfprintf-nargs.c @@ -1,5 +1,5 @@ /* Test for vfprintf nargs allocation overflow (BZ #13656). - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kees Cook , 2012. diff --git a/stdio-common/bug26.c b/stdio-common/bug26.c index cc54b96418..285fe40c7e 100644 --- a/stdio-common/bug26.c +++ b/stdio-common/bug26.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/ctermid.c b/stdio-common/ctermid.c index 901d3692d5..892389cdde 100644 --- a/stdio-common/ctermid.c +++ b/stdio-common/ctermid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/cuserid.c b/stdio-common/cuserid.c index 35bcdbbe95..5bec4f0d0b 100644 --- a/stdio-common/cuserid.c +++ b/stdio-common/cuserid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/dprintf.c b/stdio-common/dprintf.c index e6f5a666e7..c8c992888f 100644 --- a/stdio-common/dprintf.c +++ b/stdio-common/dprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/errlist.c b/stdio-common/errlist.c index adb75b7b24..e06be8ccd9 100644 --- a/stdio-common/errlist.c +++ b/stdio-common/errlist.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/errnobug.c b/stdio-common/errnobug.c index 2a858547a5..5063fbddca 100644 --- a/stdio-common/errnobug.c +++ b/stdio-common/errnobug.c @@ -1,6 +1,6 @@ /* Regression test for reported old bug that errno is clobbered by the first successful output to a stream on an unseekable object. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/flockfile.c b/stdio-common/flockfile.c index fc0fc9fa25..0b44505023 100644 --- a/stdio-common/flockfile.c +++ b/stdio-common/flockfile.c @@ -1,5 +1,5 @@ /* Lock I/O stream. Singlethreaded version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/fprintf.c b/stdio-common/fprintf.c index 4d64dcbfb0..e59e81567d 100644 --- a/stdio-common/fprintf.c +++ b/stdio-common/fprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/fscanf.c b/stdio-common/fscanf.c index 1a392e1150..1ff8dc69d7 100644 --- a/stdio-common/fscanf.c +++ b/stdio-common/fscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/ftrylockfile.c b/stdio-common/ftrylockfile.c index 0bb58089b9..0bd6d7dd8b 100644 --- a/stdio-common/ftrylockfile.c +++ b/stdio-common/ftrylockfile.c @@ -1,5 +1,5 @@ /* Try locking I/O stream. Singlethreaded version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/funlockfile.c b/stdio-common/funlockfile.c index d946aebbc4..3d6ad0daf8 100644 --- a/stdio-common/funlockfile.c +++ b/stdio-common/funlockfile.c @@ -1,5 +1,5 @@ /* Unlock I/O stream. Singlethreaded version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/fxprintf.c b/stdio-common/fxprintf.c index b1ce5ec30b..6304300766 100644 --- a/stdio-common/fxprintf.c +++ b/stdio-common/fxprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . diff --git a/stdio-common/getline.c b/stdio-common/getline.c index 903ee0bdea..fa8100e0f4 100644 --- a/stdio-common/getline.c +++ b/stdio-common/getline.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/getw.c b/stdio-common/getw.c index 00918033fe..c9b15ebe4e 100644 --- a/stdio-common/getw.c +++ b/stdio-common/getw.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/isoc99_fscanf.c b/stdio-common/isoc99_fscanf.c index 9d6ea7c110..bdf8d15a58 100644 --- a/stdio-common/isoc99_fscanf.c +++ b/stdio-common/isoc99_fscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/isoc99_scanf.c b/stdio-common/isoc99_scanf.c index f5163de565..e08ec7120e 100644 --- a/stdio-common/isoc99_scanf.c +++ b/stdio-common/isoc99_scanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/isoc99_sscanf.c b/stdio-common/isoc99_sscanf.c index 1e3ddcd702..c61838a099 100644 --- a/stdio-common/isoc99_sscanf.c +++ b/stdio-common/isoc99_sscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/isoc99_vfscanf.c b/stdio-common/isoc99_vfscanf.c index 36778d2386..da5382ab01 100644 --- a/stdio-common/isoc99_vfscanf.c +++ b/stdio-common/isoc99_vfscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/isoc99_vscanf.c b/stdio-common/isoc99_vscanf.c index 36d3746c06..a359ef635f 100644 --- a/stdio-common/isoc99_vscanf.c +++ b/stdio-common/isoc99_vscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/isoc99_vsscanf.c b/stdio-common/isoc99_vsscanf.c index a0fcc6488e..3d6d50795c 100644 --- a/stdio-common/isoc99_vsscanf.c +++ b/stdio-common/isoc99_vsscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/itoa-digits.c b/stdio-common/itoa-digits.c index b21cb0fc34..dc5ea014f2 100644 --- a/stdio-common/itoa-digits.c +++ b/stdio-common/itoa-digits.c @@ -1,5 +1,5 @@ /* Digits. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/itoa-udigits.c b/stdio-common/itoa-udigits.c index b7bfe6bcf5..53185c3af5 100644 --- a/stdio-common/itoa-udigits.c +++ b/stdio-common/itoa-udigits.c @@ -1,5 +1,5 @@ /* Digits. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/itowa-digits.c b/stdio-common/itowa-digits.c index 91875a359c..11f018db87 100644 --- a/stdio-common/itowa-digits.c +++ b/stdio-common/itowa-digits.c @@ -1,5 +1,5 @@ /* Digits. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/perror.c b/stdio-common/perror.c index 4232ce44c5..acd97d2f7d 100644 --- a/stdio-common/perror.c +++ b/stdio-common/perror.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/printf-parse.h b/stdio-common/printf-parse.h index a193eddca9..ca9e77f248 100644 --- a/stdio-common/printf-parse.h +++ b/stdio-common/printf-parse.h @@ -1,5 +1,5 @@ /* Internal header for parsing printf format strings. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of th GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/printf-parsemb.c b/stdio-common/printf-parsemb.c index 483f16bf31..24909b2b04 100644 --- a/stdio-common/printf-parsemb.c +++ b/stdio-common/printf-parsemb.c @@ -1,5 +1,5 @@ /* Helper functions for parsing printf format strings. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of th GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/printf-prs.c b/stdio-common/printf-prs.c index ca844aa3d8..88d2b3f6af 100644 --- a/stdio-common/printf-prs.c +++ b/stdio-common/printf-prs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/printf.c b/stdio-common/printf.c index 5dac2a70d7..9bf28949cb 100644 --- a/stdio-common/printf.c +++ b/stdio-common/printf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/printf.h b/stdio-common/printf.h index 45847a99a6..1e79cc1e2e 100644 --- a/stdio-common/printf.h +++ b/stdio-common/printf.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/printf_fp.c b/stdio-common/printf_fp.c index 2b93e6c57a..7a3292cf97 100644 --- a/stdio-common/printf_fp.c +++ b/stdio-common/printf_fp.c @@ -1,5 +1,5 @@ /* Floating point output for `printf'. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 1995. diff --git a/stdio-common/printf_fphex.c b/stdio-common/printf_fphex.c index 50b6fbfbc7..4599867b3f 100644 --- a/stdio-common/printf_fphex.c +++ b/stdio-common/printf_fphex.c @@ -1,5 +1,5 @@ /* Print floating point number in hexadecimal notation according to ISO C99. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/stdio-common/printf_size.c b/stdio-common/printf_size.c index dfb3a539b9..a78ab41190 100644 --- a/stdio-common/printf_size.c +++ b/stdio-common/printf_size.c @@ -1,5 +1,5 @@ /* Print size value using units for orders of magnitude. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. Based on a proposal by Larry McVoy . diff --git a/stdio-common/psiginfo.c b/stdio-common/psiginfo.c index 905b98afd1..564d2375ee 100644 --- a/stdio-common/psiginfo.c +++ b/stdio-common/psiginfo.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/psignal.c b/stdio-common/psignal.c index 38d7475785..f8155f042c 100644 --- a/stdio-common/psignal.c +++ b/stdio-common/psignal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/putw.c b/stdio-common/putw.c index aab46bce9a..419c1e4288 100644 --- a/stdio-common/putw.c +++ b/stdio-common/putw.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/reg-modifier.c b/stdio-common/reg-modifier.c index 8a358f63ba..e24b114044 100644 --- a/stdio-common/reg-modifier.c +++ b/stdio-common/reg-modifier.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/reg-printf.c b/stdio-common/reg-printf.c index ff68b94ba7..464707a525 100644 --- a/stdio-common/reg-printf.c +++ b/stdio-common/reg-printf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/reg-type.c b/stdio-common/reg-type.c index 402ec0653a..329fbe9d18 100644 --- a/stdio-common/reg-type.c +++ b/stdio-common/reg-type.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/remove.c b/stdio-common/remove.c index dcb5874959..d48e9a9a0a 100644 --- a/stdio-common/remove.c +++ b/stdio-common/remove.c @@ -1,5 +1,5 @@ /* ANSI C `remove' function to delete a file or directory. Stub version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/rename.c b/stdio-common/rename.c index 35c40060e2..3831138ce8 100644 --- a/stdio-common/rename.c +++ b/stdio-common/rename.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/renameat.c b/stdio-common/renameat.c index 428e44e0bc..0726444a6b 100644 --- a/stdio-common/renameat.c +++ b/stdio-common/renameat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/scanf.c b/stdio-common/scanf.c index b26b65abef..14f9808161 100644 --- a/stdio-common/scanf.c +++ b/stdio-common/scanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/scanf11.c b/stdio-common/scanf11.c index 6fe0698445..6f1f037e5d 100644 --- a/stdio-common/scanf11.c +++ b/stdio-common/scanf11.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/stdio-common/siglist.c b/stdio-common/siglist.c index 9fd602b50e..1f8d693de5 100644 --- a/stdio-common/siglist.c +++ b/stdio-common/siglist.c @@ -1,5 +1,5 @@ /* Define list of all signal numbers and their names. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/snprintf.c b/stdio-common/snprintf.c index 81f9adec94..d0871a839f 100644 --- a/stdio-common/snprintf.c +++ b/stdio-common/snprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/sprintf.c b/stdio-common/sprintf.c index 543eed717b..7b8ecd1f2f 100644 --- a/stdio-common/sprintf.c +++ b/stdio-common/sprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/sscanf.c b/stdio-common/sscanf.c index 7218d6f3cb..d09e104ed1 100644 --- a/stdio-common/sscanf.c +++ b/stdio-common/sscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/stdio_ext.h b/stdio-common/stdio_ext.h index f5c0d37b0d..c32d5a5f8e 100644 --- a/stdio-common/stdio_ext.h +++ b/stdio-common/stdio_ext.h @@ -1,5 +1,5 @@ /* Functions to access FILE structure internals. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/stdio_lim.h.in b/stdio-common/stdio_lim.h.in index 5814a3c29a..77b82d2b14 100644 --- a/stdio-common/stdio_lim.h.in +++ b/stdio-common/stdio_lim.h.in @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tempnam.c b/stdio-common/tempnam.c index ac85121e18..dcbb0a92ee 100644 --- a/stdio-common/tempnam.c +++ b/stdio-common/tempnam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tempname.c b/stdio-common/tempname.c index 828bf82d64..7eeb089f14 100644 --- a/stdio-common/tempname.c +++ b/stdio-common/tempname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/test-fseek.c b/stdio-common/test-fseek.c index d9de356423..fe57df6ac7 100644 --- a/stdio-common/test-fseek.c +++ b/stdio-common/test-fseek.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/test-popen.c b/stdio-common/test-popen.c index 6fd64fce90..d36cd61b4c 100644 --- a/stdio-common/test-popen.c +++ b/stdio-common/test-popen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/test-vfprintf.c b/stdio-common/test-vfprintf.c index 3490f62e33..a936c2804d 100644 --- a/stdio-common/test-vfprintf.c +++ b/stdio-common/test-vfprintf.c @@ -1,5 +1,5 @@ /* Tests of *printf for very large strings. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/stdio-common/test_rdwr.c b/stdio-common/test_rdwr.c index 2be8365a39..0c42fa20f4 100644 --- a/stdio-common/test_rdwr.c +++ b/stdio-common/test_rdwr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tmpfile.c b/stdio-common/tmpfile.c index 7afd9b0752..022c2f650b 100644 --- a/stdio-common/tmpfile.c +++ b/stdio-common/tmpfile.c @@ -1,5 +1,5 @@ /* Open a stdio stream on an anonymous temporary file. Generic/POSIX version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tmpfile64.c b/stdio-common/tmpfile64.c index dfd38d86a0..f6d360441a 100644 --- a/stdio-common/tmpfile64.c +++ b/stdio-common/tmpfile64.c @@ -1,5 +1,5 @@ /* Open a stdio stream on an anonymous, large temporary file. Generic version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tmpnam.c b/stdio-common/tmpnam.c index 82ff80a1d7..3d0386269e 100644 --- a/stdio-common/tmpnam.c +++ b/stdio-common/tmpnam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tmpnam_r.c b/stdio-common/tmpnam_r.c index 521b75bf8c..aa2e24e732 100644 --- a/stdio-common/tmpnam_r.c +++ b/stdio-common/tmpnam_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tst-fileno.c b/stdio-common/tst-fileno.c index d79b839357..a0c8853b85 100644 --- a/stdio-common/tst-fileno.c +++ b/stdio-common/tst-fileno.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tst-fphex-wide.c b/stdio-common/tst-fphex-wide.c index f745b45f27..d285c97334 100644 --- a/stdio-common/tst-fphex-wide.c +++ b/stdio-common/tst-fphex-wide.c @@ -1,6 +1,6 @@ /* Test program for %a wprintf formats. This file is part of the GNU C Library. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. Contributed by Marek Polacek , 2012. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tst-fseek.c b/stdio-common/tst-fseek.c index 7e4474609e..1ab4702ab1 100644 --- a/stdio-common/tst-fseek.c +++ b/stdio-common/tst-fseek.c @@ -1,5 +1,5 @@ /* Tests of fseek and fseeko. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/stdio-common/tst-gets.c b/stdio-common/tst-gets.c index 5b42b6d10b..7f78fc1283 100644 --- a/stdio-common/tst-gets.c +++ b/stdio-common/tst-gets.c @@ -1,5 +1,5 @@ /* Tests for gets. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/stdio-common/tst-long-dbl-fphex.c b/stdio-common/tst-long-dbl-fphex.c index a406a71800..f0ae041820 100644 --- a/stdio-common/tst-long-dbl-fphex.c +++ b/stdio-common/tst-long-dbl-fphex.c @@ -1,5 +1,5 @@ /* This file is part of the GNU C Library. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. Contributed by Marek Polacek , 2012. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tst-popen.c b/stdio-common/tst-popen.c index 324f7cc2fd..bd84487018 100644 --- a/stdio-common/tst-popen.c +++ b/stdio-common/tst-popen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/stdio-common/tst-printf-round.c b/stdio-common/tst-printf-round.c index 2a45e48482..b76360f7e9 100644 --- a/stdio-common/tst-printf-round.c +++ b/stdio-common/tst-printf-round.c @@ -1,5 +1,5 @@ /* Test for correct rounding of printf floating-point output. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tst-printf.c b/stdio-common/tst-printf.c index dd0b8322f4..10673ce77d 100644 --- a/stdio-common/tst-printf.c +++ b/stdio-common/tst-printf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tst-printf.sh b/stdio-common/tst-printf.sh index 81e1e24af0..521e66068e 100644 --- a/stdio-common/tst-printf.sh +++ b/stdio-common/tst-printf.sh @@ -1,6 +1,6 @@ #! /bin/sh # Testing of printf. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tst-put-error.c b/stdio-common/tst-put-error.c index 9f248ac2b3..6329bf6c83 100644 --- a/stdio-common/tst-put-error.c +++ b/stdio-common/tst-put-error.c @@ -1,6 +1,6 @@ /* Verify that print functions return error when there is an I/O error. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tst-sprintf3.c b/stdio-common/tst-sprintf3.c index 85481e4d4b..e54b23b167 100644 --- a/stdio-common/tst-sprintf3.c +++ b/stdio-common/tst-sprintf3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tst-sscanf.c b/stdio-common/tst-sscanf.c index a77bc7e30b..1214c7d068 100644 --- a/stdio-common/tst-sscanf.c +++ b/stdio-common/tst-sscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2000. diff --git a/stdio-common/tst-tmpnam.c b/stdio-common/tst-tmpnam.c index d2ab656036..a3bd9fb90c 100644 --- a/stdio-common/tst-tmpnam.c +++ b/stdio-common/tst-tmpnam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tst-unbputc.sh b/stdio-common/tst-unbputc.sh index 3ce8696400..579747d1f6 100755 --- a/stdio-common/tst-unbputc.sh +++ b/stdio-common/tst-unbputc.sh @@ -1,6 +1,6 @@ #! /bin/sh # Testing the stdio implementation -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tst-unlockedio.c b/stdio-common/tst-unlockedio.c index 7e8e0b9987..4d17a4cb62 100644 --- a/stdio-common/tst-unlockedio.c +++ b/stdio-common/tst-unlockedio.c @@ -1,5 +1,5 @@ /* Test for some *_unlocked stdio interfaces. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2004. diff --git a/stdio-common/tstgetln.c b/stdio-common/tstgetln.c index ab4d645031..913b5259f7 100644 --- a/stdio-common/tstgetln.c +++ b/stdio-common/tstgetln.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/tstscanf.c b/stdio-common/tstscanf.c index 1cd3d20588..85a5edb394 100644 --- a/stdio-common/tstscanf.c +++ b/stdio-common/tstscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index 8cd7a85b21..115beabdfb 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c index c0b93ae3b7..2e1e91af78 100644 --- a/stdio-common/vfscanf.c +++ b/stdio-common/vfscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdio-common/vprintf.c b/stdio-common/vprintf.c index 08c749ebeb..367adfcb6e 100644 --- a/stdio-common/vprintf.c +++ b/stdio-common/vprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/Makefile b/stdlib/Makefile index b76c97af47..1be16eb8d0 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/a64l.c b/stdlib/a64l.c index 653411d044..a88688cf50 100644 --- a/stdlib/a64l.c +++ b/stdlib/a64l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/abort.c b/stdlib/abort.c index 72b2d60663..c471f44f27 100644 --- a/stdlib/abort.c +++ b/stdlib/abort.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/abs.c b/stdlib/abs.c index 2fbb4c380f..b82474d574 100644 --- a/stdlib/abs.c +++ b/stdlib/abs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/add_n.c b/stdlib/add_n.c index e3930ea5f7..17ebd435a1 100644 --- a/stdlib/add_n.c +++ b/stdlib/add_n.c @@ -1,6 +1,6 @@ /* mpn_add_n -- Add two limb vectors of equal, non-zero length. -Copyright (C) 1992-2013 Free Software Foundation, Inc. +Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/addmul_1.c b/stdlib/addmul_1.c index cf5b371601..b6f2d076c3 100644 --- a/stdlib/addmul_1.c +++ b/stdlib/addmul_1.c @@ -3,7 +3,7 @@ limb vector pointed to by RES_PTR. Return the most significant limb of the product, adjusted for carry-out from the addition. -Copyright (C) 1992-2013 Free Software Foundation, Inc. +Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/alloca.h b/stdlib/alloca.h index 88612b0738..2d592d4fb3 100644 --- a/stdlib/alloca.h +++ b/stdlib/alloca.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/at_quick_exit.c b/stdlib/at_quick_exit.c index 81a4c8c5c0..665edabcc7 100644 --- a/stdlib/at_quick_exit.c +++ b/stdlib/at_quick_exit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/atexit.c b/stdlib/atexit.c index 38f07b4f36..da8e41612e 100644 --- a/stdlib/atexit.c +++ b/stdlib/atexit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/atof.c b/stdlib/atof.c index ad4e4c103a..3cf8d25006 100644 --- a/stdlib/atof.c +++ b/stdlib/atof.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/atoi.c b/stdlib/atoi.c index ab7f077e4a..2ef52f7b4c 100644 --- a/stdlib/atoi.c +++ b/stdlib/atoi.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/atol.c b/stdlib/atol.c index bee0c675a1..35e18a41e7 100644 --- a/stdlib/atol.c +++ b/stdlib/atol.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/atoll.c b/stdlib/atoll.c index 7261020e7c..012dd94911 100644 --- a/stdlib/atoll.c +++ b/stdlib/atoll.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/bits/monetary-ldbl.h b/stdlib/bits/monetary-ldbl.h index 61c81bae30..9cd2a2465f 100644 --- a/stdlib/bits/monetary-ldbl.h +++ b/stdlib/bits/monetary-ldbl.h @@ -1,5 +1,5 @@ /* -mlong-double-64 compatibility mode for monetary functions. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/bits/stdlib-float.h b/stdlib/bits/stdlib-float.h index 65484be380..fdee2d5341 100644 --- a/stdlib/bits/stdlib-float.h +++ b/stdlib/bits/stdlib-float.h @@ -1,5 +1,5 @@ /* Floating-point inline functions for stdlib.h. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/bits/stdlib-ldbl.h b/stdlib/bits/stdlib-ldbl.h index a606fd3d09..feadbdf39c 100644 --- a/stdlib/bits/stdlib-ldbl.h +++ b/stdlib/bits/stdlib-ldbl.h @@ -1,5 +1,5 @@ /* -mlong-double-64 compatibility mode for functions. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/bits/stdlib.h b/stdlib/bits/stdlib.h index a4abe2a8bb..7b5b57b509 100644 --- a/stdlib/bits/stdlib.h +++ b/stdlib/bits/stdlib.h @@ -1,5 +1,5 @@ /* Checking macros for stdlib functions. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/bsearch.c b/stdlib/bsearch.c index 4a357efeef..7e7872def7 100644 --- a/stdlib/bsearch.c +++ b/stdlib/bsearch.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/bug-strtod.c b/stdlib/bug-strtod.c index a1a22f8ed0..89d0bcc6e6 100644 --- a/stdlib/bug-strtod.c +++ b/stdlib/bug-strtod.c @@ -1,6 +1,6 @@ /* Test to strtod etc for numbers like x000...0000.000e-nn. This file is part of the GNU C Library. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 2001. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/canonicalize.c b/stdlib/canonicalize.c index 784c978435..bf1775eba2 100644 --- a/stdlib/canonicalize.c +++ b/stdlib/canonicalize.c @@ -1,5 +1,5 @@ /* Return the canonical absolute name of a given file. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/cmp.c b/stdlib/cmp.c index 8b53cea2ed..83188d4037 100644 --- a/stdlib/cmp.c +++ b/stdlib/cmp.c @@ -1,6 +1,6 @@ /* mpn_cmp -- Compare two low-level natural-number integers. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/cxa_at_quick_exit.c b/stdlib/cxa_at_quick_exit.c index 800697c126..90419ffc6c 100644 --- a/stdlib/cxa_at_quick_exit.c +++ b/stdlib/cxa_at_quick_exit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/cxa_atexit.c b/stdlib/cxa_atexit.c index 0a42776dbd..21dec7b543 100644 --- a/stdlib/cxa_atexit.c +++ b/stdlib/cxa_atexit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/cxa_finalize.c b/stdlib/cxa_finalize.c index 2ee890f27a..299a9c0fc8 100644 --- a/stdlib/cxa_finalize.c +++ b/stdlib/cxa_finalize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/cxa_thread_atexit_impl.c b/stdlib/cxa_thread_atexit_impl.c index dfd4c7e694..d2f88d3ed8 100644 --- a/stdlib/cxa_thread_atexit_impl.c +++ b/stdlib/cxa_thread_atexit_impl.c @@ -1,5 +1,5 @@ /* Register destructors for C++ TLS variables declared with thread_local. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/dbl2mpn.c b/stdlib/dbl2mpn.c index 429e20aa7b..9163086e49 100644 --- a/stdlib/dbl2mpn.c +++ b/stdlib/dbl2mpn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/div.c b/stdlib/div.c index 0f5569a5dd..d0d42e5896 100644 --- a/stdlib/div.c +++ b/stdlib/div.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/divmod_1.c b/stdlib/divmod_1.c index c11c913e6f..b7bbf3c132 100644 --- a/stdlib/divmod_1.c +++ b/stdlib/divmod_1.c @@ -6,7 +6,7 @@ QUOT_PTR and DIVIDEND_PTR might point to the same limb. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/divrem.c b/stdlib/divrem.c index 99c782e22b..52375932cd 100644 --- a/stdlib/divrem.c +++ b/stdlib/divrem.c @@ -1,7 +1,7 @@ /* mpn_divrem -- Divide natural numbers, producing both remainder and quotient. -Copyright (C) 1993-2013 Free Software Foundation, Inc. +Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/drand48-iter.c b/stdlib/drand48-iter.c index c9b289fe9b..10d2969df0 100644 --- a/stdlib/drand48-iter.c +++ b/stdlib/drand48-iter.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/drand48.c b/stdlib/drand48.c index 6371b0be84..61f270f5d6 100644 --- a/stdlib/drand48.c +++ b/stdlib/drand48.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/drand48_r.c b/stdlib/drand48_r.c index cf18404b76..2a7f925e5b 100644 --- a/stdlib/drand48_r.c +++ b/stdlib/drand48_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/erand48.c b/stdlib/erand48.c index 6363440df3..bd89cbf242 100644 --- a/stdlib/erand48.c +++ b/stdlib/erand48.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/erand48_r.c b/stdlib/erand48_r.c index 06f00e023f..98eade7724 100644 --- a/stdlib/erand48_r.c +++ b/stdlib/erand48_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/errno.h b/stdlib/errno.h index 6843cbf953..9360221671 100644 --- a/stdlib/errno.h +++ b/stdlib/errno.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/exit.c b/stdlib/exit.c index 270fda7b4f..0aa7cd41dc 100644 --- a/stdlib/exit.c +++ b/stdlib/exit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/exit.h b/stdlib/exit.h index d96ed95d46..eb2c3949f0 100644 --- a/stdlib/exit.h +++ b/stdlib/exit.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/fmtmsg.c b/stdlib/fmtmsg.c index 5185de4272..acf3be2335 100644 --- a/stdlib/fmtmsg.c +++ b/stdlib/fmtmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/stdlib/fmtmsg.h b/stdlib/fmtmsg.h index 73bbb12252..ec4c5e0f73 100644 --- a/stdlib/fmtmsg.h +++ b/stdlib/fmtmsg.h @@ -1,5 +1,5 @@ /* Message display handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/fpioconst.c b/stdlib/fpioconst.c index 56072e682e..665f40ec13 100644 --- a/stdlib/fpioconst.c +++ b/stdlib/fpioconst.c @@ -1,5 +1,5 @@ /* Table of MP integer constants 10^(2^i), used for floating point <-> decimal. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/fpioconst.h b/stdlib/fpioconst.h index b5374c51b4..66c4936a91 100644 --- a/stdlib/fpioconst.h +++ b/stdlib/fpioconst.h @@ -1,5 +1,5 @@ /* Header file for constants used in floating point <-> decimal conversions. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/gen-fpioconst.c b/stdlib/gen-fpioconst.c index 1ff1baf981..3fe5de26f6 100644 --- a/stdlib/gen-fpioconst.c +++ b/stdlib/gen-fpioconst.c @@ -1,5 +1,5 @@ /* Generate data for fpioconst.c. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/gen-tst-strtod-round.c b/stdlib/gen-tst-strtod-round.c index c0634e0179..20aa432d67 100644 --- a/stdlib/gen-tst-strtod-round.c +++ b/stdlib/gen-tst-strtod-round.c @@ -1,6 +1,6 @@ /* Generate table of tests in tst-strtod-round.c from tst-strtod-round-data. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/getcontext.c b/stdlib/getcontext.c index 868c651624..a9e18e11a4 100644 --- a/stdlib/getcontext.c +++ b/stdlib/getcontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/getenv.c b/stdlib/getenv.c index f33c22f440..e8cb91349e 100644 --- a/stdlib/getenv.c +++ b/stdlib/getenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/getsubopt.c b/stdlib/getsubopt.c index 34705042f0..3e8366479b 100644 --- a/stdlib/getsubopt.c +++ b/stdlib/getsubopt.c @@ -1,5 +1,5 @@ /* Parse comma separate list into words. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/stdlib/gmp-impl.h b/stdlib/gmp-impl.h index c2cbfce9ad..83865dc412 100644 --- a/stdlib/gmp-impl.h +++ b/stdlib/gmp-impl.h @@ -1,6 +1,6 @@ /* Include file for internal GNU MP types and definitions. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/gmp.h b/stdlib/gmp.h index 07bebc008e..0eecf92f39 100644 --- a/stdlib/gmp.h +++ b/stdlib/gmp.h @@ -1,6 +1,6 @@ /* gmp.h -- Definitions for GNU multiple precision functions. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/grouping.c b/stdlib/grouping.c index 6709a3a0ee..e65cea9a34 100644 --- a/stdlib/grouping.c +++ b/stdlib/grouping.c @@ -1,5 +1,5 @@ /* Internal header for proving correct grouping in strings of numbers. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/stdlib/grouping.h b/stdlib/grouping.h index eedf84132d..ae28e6dfd6 100644 --- a/stdlib/grouping.h +++ b/stdlib/grouping.h @@ -1,5 +1,5 @@ /* Internal header for proving correct grouping in strings of numbers. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/stdlib/isomac.c b/stdlib/isomac.c index 621b5154d2..13accb566c 100644 --- a/stdlib/isomac.c +++ b/stdlib/isomac.c @@ -1,5 +1,5 @@ /* Check system header files for ISO 9899:1990 (ISO C) compliance. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jens Schweikhardt , 1996. diff --git a/stdlib/jrand48.c b/stdlib/jrand48.c index ac5ebad783..0b58e6ef94 100644 --- a/stdlib/jrand48.c +++ b/stdlib/jrand48.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/jrand48_r.c b/stdlib/jrand48_r.c index 251db9aed0..b550e5b2da 100644 --- a/stdlib/jrand48_r.c +++ b/stdlib/jrand48_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/l64a.c b/stdlib/l64a.c index 6f1aae2b4b..e71e1a2c2e 100644 --- a/stdlib/l64a.c +++ b/stdlib/l64a.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/labs.c b/stdlib/labs.c index b6c44fa05f..14f6f36b37 100644 --- a/stdlib/labs.c +++ b/stdlib/labs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/lcong48.c b/stdlib/lcong48.c index b40b92a3a3..8733909c80 100644 --- a/stdlib/lcong48.c +++ b/stdlib/lcong48.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/lcong48_r.c b/stdlib/lcong48_r.c index b7e2e711ef..39a51d2de1 100644 --- a/stdlib/lcong48_r.c +++ b/stdlib/lcong48_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/ldiv.c b/stdlib/ldiv.c index a03057fc0d..da864da6fb 100644 --- a/stdlib/ldiv.c +++ b/stdlib/ldiv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/llabs.c b/stdlib/llabs.c index af00e8c178..695ef0805d 100644 --- a/stdlib/llabs.c +++ b/stdlib/llabs.c @@ -1,5 +1,5 @@ /* `long long int' absolute value. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/lldiv.c b/stdlib/lldiv.c index 0da1a6afc1..6e6b7d4794 100644 --- a/stdlib/lldiv.c +++ b/stdlib/lldiv.c @@ -1,5 +1,5 @@ /* `long long int' divison with remainder. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/longlong.h b/stdlib/longlong.h index 5f00e548a7..10d76cf65e 100644 --- a/stdlib/longlong.h +++ b/stdlib/longlong.h @@ -1,5 +1,5 @@ /* longlong.h -- definitions for mixed size 32/64 bit arithmetic. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/stdlib/lrand48.c b/stdlib/lrand48.c index 2b9b19a113..c37ba391b5 100644 --- a/stdlib/lrand48.c +++ b/stdlib/lrand48.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/lrand48_r.c b/stdlib/lrand48_r.c index c535665108..fc5f10ecee 100644 --- a/stdlib/lrand48_r.c +++ b/stdlib/lrand48_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/lshift.c b/stdlib/lshift.c index c92439b4a5..6e0d5052f7 100644 --- a/stdlib/lshift.c +++ b/stdlib/lshift.c @@ -1,6 +1,6 @@ /* mpn_lshift -- Shift left low level. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/makecontext.c b/stdlib/makecontext.c index b4d07bd106..fb5103774e 100644 --- a/stdlib/makecontext.c +++ b/stdlib/makecontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/mblen.c b/stdlib/mblen.c index 2a92520367..2f92892197 100644 --- a/stdlib/mblen.c +++ b/stdlib/mblen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/mbstowcs.c b/stdlib/mbstowcs.c index 68382c7db8..7e41fc1324 100644 --- a/stdlib/mbstowcs.c +++ b/stdlib/mbstowcs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/mbtowc.c b/stdlib/mbtowc.c index 1ff261a507..fc534612ba 100644 --- a/stdlib/mbtowc.c +++ b/stdlib/mbtowc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/mod_1.c b/stdlib/mod_1.c index c5f5c908f0..83a12c6a56 100644 --- a/stdlib/mod_1.c +++ b/stdlib/mod_1.c @@ -3,7 +3,7 @@ Return the single-limb remainder. There are no constraints on the value of the divisor. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/monetary.h b/stdlib/monetary.h index 24c605dab8..f371d26d57 100644 --- a/stdlib/monetary.h +++ b/stdlib/monetary.h @@ -1,5 +1,5 @@ /* Header file for monetary value formatting functions. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/mp_clz_tab.c b/stdlib/mp_clz_tab.c index c782575621..866bcadf68 100644 --- a/stdlib/mp_clz_tab.c +++ b/stdlib/mp_clz_tab.c @@ -1,5 +1,5 @@ /* __clz_tab -- support for longlong.h - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Its master source is NOT part of the C library, however. The master source lives in the GNU MP Library. diff --git a/stdlib/mpn2dbl.c b/stdlib/mpn2dbl.c index b6d62fe09e..6b9bfb570d 100644 --- a/stdlib/mpn2dbl.c +++ b/stdlib/mpn2dbl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/mpn2flt.c b/stdlib/mpn2flt.c index 9044a8a6a6..5681bc6d2c 100644 --- a/stdlib/mpn2flt.c +++ b/stdlib/mpn2flt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/mrand48.c b/stdlib/mrand48.c index 6e0adf9418..f7d7543dcf 100644 --- a/stdlib/mrand48.c +++ b/stdlib/mrand48.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/mrand48_r.c b/stdlib/mrand48_r.c index 823640b775..a77b8f16ae 100644 --- a/stdlib/mrand48_r.c +++ b/stdlib/mrand48_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/msort.c b/stdlib/msort.c index 897fad0152..02ef28b89d 100644 --- a/stdlib/msort.c +++ b/stdlib/msort.c @@ -1,6 +1,6 @@ /* An alternative to qsort, with an identical interface. This file is part of the GNU C Library. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. Written by Mike Haertel, September 1988. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/mul.c b/stdlib/mul.c index 125871717b..bb699e42f6 100644 --- a/stdlib/mul.c +++ b/stdlib/mul.c @@ -1,6 +1,6 @@ /* mpn_mul -- Multiply two natural numbers. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/mul_1.c b/stdlib/mul_1.c index f566ba22f1..375df6ad33 100644 --- a/stdlib/mul_1.c +++ b/stdlib/mul_1.c @@ -1,7 +1,7 @@ /* mpn_mul_1 -- Multiply a limb vector with a single limb and store the product in a second limb vector. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/mul_n.c b/stdlib/mul_n.c index f0a9a304dd..a27ef6f58c 100644 --- a/stdlib/mul_n.c +++ b/stdlib/mul_n.c @@ -1,6 +1,6 @@ /* mpn_mul_n -- Multiply two natural numbers of length n. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/nrand48.c b/stdlib/nrand48.c index f5170089ee..ab6a554f40 100644 --- a/stdlib/nrand48.c +++ b/stdlib/nrand48.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/nrand48_r.c b/stdlib/nrand48_r.c index baacb7d568..6594045bb0 100644 --- a/stdlib/nrand48_r.c +++ b/stdlib/nrand48_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/on_exit.c b/stdlib/on_exit.c index c0966dcf40..bc0fc897bf 100644 --- a/stdlib/on_exit.c +++ b/stdlib/on_exit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/putenv.c b/stdlib/putenv.c index a6f585b172..9bc16872b4 100644 --- a/stdlib/putenv.c +++ b/stdlib/putenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/qsort.c b/stdlib/qsort.c index 471c66217f..04c25b984f 100644 --- a/stdlib/qsort.c +++ b/stdlib/qsort.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Douglas C. Schmidt (schmidt@ics.uci.edu). diff --git a/stdlib/quick_exit.c b/stdlib/quick_exit.c index 55064db7ba..440b5cdd6b 100644 --- a/stdlib/quick_exit.c +++ b/stdlib/quick_exit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/rand.c b/stdlib/rand.c index ba3a9e79bf..c0a13576b3 100644 --- a/stdlib/rand.c +++ b/stdlib/rand.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/rand_r.c b/stdlib/rand_r.c index 571b323fe9..ae66e88294 100644 --- a/stdlib/rand_r.c +++ b/stdlib/rand_r.c @@ -1,5 +1,5 @@ /* Reentrant random function from POSIX.1c. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/stdlib/random.c b/stdlib/random.c index d286bcf228..c75d1d96ad 100644 --- a/stdlib/random.c +++ b/stdlib/random.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/stdlib/random_r.c b/stdlib/random_r.c index a393dd3c19..87cfdc285c 100644 --- a/stdlib/random_r.c +++ b/stdlib/random_r.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/stdlib/rpmatch.c b/stdlib/rpmatch.c index 87755343b9..4d667a64a7 100644 --- a/stdlib/rpmatch.c +++ b/stdlib/rpmatch.c @@ -1,7 +1,7 @@ /* Determine whether string value is affirmation or negative response according to current locale's data. This file is part of the GNU C Library. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/stdlib/rshift.c b/stdlib/rshift.c index c69dbd02e4..72e4fc5811 100644 --- a/stdlib/rshift.c +++ b/stdlib/rshift.c @@ -1,6 +1,6 @@ /* mpn_rshift -- Shift right a low-level natural-number integer. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/secure-getenv.c b/stdlib/secure-getenv.c index 1ea795168c..5dc48d9dcb 100644 --- a/stdlib/secure-getenv.c +++ b/stdlib/secure-getenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/seed48.c b/stdlib/seed48.c index 2791d088ed..526fc421f4 100644 --- a/stdlib/seed48.c +++ b/stdlib/seed48.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/seed48_r.c b/stdlib/seed48_r.c index 3f7874c69e..6a6acd484a 100644 --- a/stdlib/seed48_r.c +++ b/stdlib/seed48_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/setcontext.c b/stdlib/setcontext.c index 7431e3916a..a276d8c1f0 100644 --- a/stdlib/setcontext.c +++ b/stdlib/setcontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/setenv.c b/stdlib/setenv.c index 63c995b0da..7df5b3fd5f 100644 --- a/stdlib/setenv.c +++ b/stdlib/setenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/srand48.c b/stdlib/srand48.c index 7b5d758fc9..e8bc8796cb 100644 --- a/stdlib/srand48.c +++ b/stdlib/srand48.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/srand48_r.c b/stdlib/srand48_r.c index db9219191e..4d01762e7c 100644 --- a/stdlib/srand48_r.c +++ b/stdlib/srand48_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index 813da19e0d..d35ffac792 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/strfmon.c b/stdlib/strfmon.c index e4d4c0d242..2f604884aa 100644 --- a/stdlib/strfmon.c +++ b/stdlib/strfmon.c @@ -1,5 +1,5 @@ /* Formatting a monetary value according to the current locale. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper and Jochen Hein , 1996. diff --git a/stdlib/strfmon_l.c b/stdlib/strfmon_l.c index a257dac26a..71bb5bd386 100644 --- a/stdlib/strfmon_l.c +++ b/stdlib/strfmon_l.c @@ -1,5 +1,5 @@ /* Formatting a monetary value according to the given locale. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/stdlib/strtod.c b/stdlib/strtod.c index bbeaf5e6cd..a42556bd7f 100644 --- a/stdlib/strtod.c +++ b/stdlib/strtod.c @@ -1,6 +1,6 @@ /* Read decimal floating point numbers. This file is part of the GNU C Library. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/strtod_l.c b/stdlib/strtod_l.c index c1c5c0db4e..c80306deef 100644 --- a/stdlib/strtod_l.c +++ b/stdlib/strtod_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to float value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/stdlib/strtof.c b/stdlib/strtof.c index 620c60095d..b7e8034f57 100644 --- a/stdlib/strtof.c +++ b/stdlib/strtof.c @@ -1,6 +1,6 @@ /* Read decimal floating point numbers. This file is part of the GNU C Library. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/strtof_l.c b/stdlib/strtof_l.c index c4c1c1f2dd..63105a5d40 100644 --- a/stdlib/strtof_l.c +++ b/stdlib/strtof_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to float value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/stdlib/strtol.c b/stdlib/strtol.c index 22ab264cfe..f97fc440a5 100644 --- a/stdlib/strtol.c +++ b/stdlib/strtol.c @@ -1,5 +1,5 @@ /* Convert string representation of a number into an integer value. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/strtol_l.c b/stdlib/strtol_l.c index dc47608b0c..95c2df398a 100644 --- a/stdlib/strtol_l.c +++ b/stdlib/strtol_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/stdlib/strtold.c b/stdlib/strtold.c index f9fa99efb6..38a1c4da56 100644 --- a/stdlib/strtold.c +++ b/stdlib/strtold.c @@ -1,6 +1,6 @@ /* Read decimal floating point numbers. This file is part of the GNU C Library. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/strtold_l.c b/stdlib/strtold_l.c index 8c7c13ccd7..1782890f09 100644 --- a/stdlib/strtold_l.c +++ b/stdlib/strtold_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/strtoll.c b/stdlib/strtoll.c index dffb0cec93..34b6e35328 100644 --- a/stdlib/strtoll.c +++ b/stdlib/strtoll.c @@ -1,5 +1,5 @@ /* Function to parse a `long long int' from text. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/strtoll_l.c b/stdlib/strtoll_l.c index bcf5286674..51d976aefb 100644 --- a/stdlib/strtoll_l.c +++ b/stdlib/strtoll_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/stdlib/strtoul.c b/stdlib/strtoul.c index 627a92f948..2aa412236b 100644 --- a/stdlib/strtoul.c +++ b/stdlib/strtoul.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/strtoul_l.c b/stdlib/strtoul_l.c index 0c03282ac0..77b37523ac 100644 --- a/stdlib/strtoul_l.c +++ b/stdlib/strtoul_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/stdlib/strtoull.c b/stdlib/strtoull.c index c946187f37..7e64c53cbd 100644 --- a/stdlib/strtoull.c +++ b/stdlib/strtoull.c @@ -1,5 +1,5 @@ /* Function to parse an `unsigned long long int' from text. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/strtoull_l.c b/stdlib/strtoull_l.c index b706f0afe6..ba407b3b53 100644 --- a/stdlib/strtoull_l.c +++ b/stdlib/strtoull_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/stdlib/sub_n.c b/stdlib/sub_n.c index 9b3fb92fea..50fc2b80b6 100644 --- a/stdlib/sub_n.c +++ b/stdlib/sub_n.c @@ -1,6 +1,6 @@ /* mpn_sub_n -- Subtract two limb vectors of equal, non-zero length. -Copyright (C) 1992-2013 Free Software Foundation, Inc. +Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/submul_1.c b/stdlib/submul_1.c index 61a07ca68c..ca82bfc244 100644 --- a/stdlib/submul_1.c +++ b/stdlib/submul_1.c @@ -3,7 +3,7 @@ from the limb vector pointed to by RES_PTR. Return the most significant limb of the product, adjusted for carry-out from the subtraction. -Copyright (C) 1992-2013 Free Software Foundation, Inc. +Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/stdlib/swapcontext.c b/stdlib/swapcontext.c index 47d6b8d926..ff43bbb438 100644 --- a/stdlib/swapcontext.c +++ b/stdlib/swapcontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/system.c b/stdlib/system.c index 4aeadc9f0b..e5ac6647e4 100644 --- a/stdlib/system.c +++ b/stdlib/system.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/test-a64l.c b/stdlib/test-a64l.c index e252351c49..aef569191e 100644 --- a/stdlib/test-a64l.c +++ b/stdlib/test-a64l.c @@ -1,5 +1,5 @@ /* Test program for the l64a and a64l functions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/stdlib/test-canon.c b/stdlib/test-canon.c index c4bff0ed9d..8d46290e3d 100644 --- a/stdlib/test-canon.c +++ b/stdlib/test-canon.c @@ -1,5 +1,5 @@ /* Test program for returning the canonical absolute name of a given file. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Mosberger . diff --git a/stdlib/test-canon2.c b/stdlib/test-canon2.c index 7f10238d4b..8785512dbc 100644 --- a/stdlib/test-canon2.c +++ b/stdlib/test-canon2.c @@ -1,5 +1,5 @@ /* Test for realpath/canonicalize function. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/stdlib/testdiv.c b/stdlib/testdiv.c index 049ecd474a..9091c433f2 100644 --- a/stdlib/testdiv.c +++ b/stdlib/testdiv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/testrand.c b/stdlib/testrand.c index 80a1a699a4..12e910d80c 100644 --- a/stdlib/testrand.c +++ b/stdlib/testrand.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-bsearch.c b/stdlib/tst-bsearch.c index a3ea608eac..e539275930 100644 --- a/stdlib/tst-bsearch.c +++ b/stdlib/tst-bsearch.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/stdlib/tst-environ.c b/stdlib/tst-environ.c index f5cb5da86d..3316d7e555 100644 --- a/stdlib/tst-environ.c +++ b/stdlib/tst-environ.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-fmtmsg.sh b/stdlib/tst-fmtmsg.sh index 963c522bb7..4f075dca3c 100755 --- a/stdlib/tst-fmtmsg.sh +++ b/stdlib/tst-fmtmsg.sh @@ -1,6 +1,6 @@ #! /bin/sh # Test of fmtmsg function family. -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-makecontext.c b/stdlib/tst-makecontext.c index 15a241254a..7968a6d3dc 100644 --- a/stdlib/tst-makecontext.c +++ b/stdlib/tst-makecontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-makecontext2.c b/stdlib/tst-makecontext2.c index 151be33220..1dfc1ae032 100644 --- a/stdlib/tst-makecontext2.c +++ b/stdlib/tst-makecontext2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-makecontext3.c b/stdlib/tst-makecontext3.c index bca4459656..545b8654af 100644 --- a/stdlib/tst-makecontext3.c +++ b/stdlib/tst-makecontext3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-random2.c b/stdlib/tst-random2.c index 094cd29d7c..0553b62992 100644 --- a/stdlib/tst-random2.c +++ b/stdlib/tst-random2.c @@ -1,5 +1,5 @@ /* Test initstate saving the old state. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2005. diff --git a/stdlib/tst-secure-getenv.c b/stdlib/tst-secure-getenv.c index 9e6837c552..e5da404b82 100644 --- a/stdlib/tst-secure-getenv.c +++ b/stdlib/tst-secure-getenv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-setcontext.c b/stdlib/tst-setcontext.c index 91183ac0c2..ac9deb1b4f 100644 --- a/stdlib/tst-setcontext.c +++ b/stdlib/tst-setcontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-strtod-overflow.c b/stdlib/tst-strtod-overflow.c index ed10fca037..d2c8818eb6 100644 --- a/stdlib/tst-strtod-overflow.c +++ b/stdlib/tst-strtod-overflow.c @@ -1,5 +1,5 @@ /* Test for integer/buffer overflow in strtod. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-strtod-round.c b/stdlib/tst-strtod-round.c index e7aaed17e8..f334b20af8 100644 --- a/stdlib/tst-strtod-round.c +++ b/stdlib/tst-strtod-round.c @@ -1,6 +1,6 @@ /* Test for correct rounding of results of strtod and related functions. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-strtod-underflow.c b/stdlib/tst-strtod-underflow.c index eac02dd3df..bc2374188b 100644 --- a/stdlib/tst-strtod-underflow.c +++ b/stdlib/tst-strtod-underflow.c @@ -1,6 +1,6 @@ /* Test for strtod handling of arguments that may cause floating-point underflow. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-strtod.c b/stdlib/tst-strtod.c index acd1377b2b..58a5b1c7a6 100644 --- a/stdlib/tst-strtod.c +++ b/stdlib/tst-strtod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-system.c b/stdlib/tst-system.c index 28dda686cc..eff0bf42f3 100644 --- a/stdlib/tst-system.c +++ b/stdlib/tst-system.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/stdlib/tst-tininess.c b/stdlib/tst-tininess.c index aa7124e225..c2dca571ac 100644 --- a/stdlib/tst-tininess.c +++ b/stdlib/tst-tininess.c @@ -1,5 +1,5 @@ /* Test that tininess.h is correct for this architecture. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-tls-atexit-lib.c b/stdlib/tst-tls-atexit-lib.c index 9c7021aeaf..964f94b276 100644 --- a/stdlib/tst-tls-atexit-lib.c +++ b/stdlib/tst-tls-atexit-lib.c @@ -1,5 +1,5 @@ /* Verify that DSO is unloaded only if its TLS objects are destroyed - the DSO. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-tls-atexit.c b/stdlib/tst-tls-atexit.c index 3d3777c31b..1ba3fae352 100644 --- a/stdlib/tst-tls-atexit.c +++ b/stdlib/tst-tls-atexit.c @@ -1,5 +1,5 @@ /* Verify that DSO is unloaded only if its TLS objects are destroyed. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/tst-xpg-basename.c b/stdlib/tst-xpg-basename.c index 3d2046e7a1..61e2e4b14c 100644 --- a/stdlib/tst-xpg-basename.c +++ b/stdlib/tst-xpg-basename.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/stdlib/ucontext.h b/stdlib/ucontext.h index 640e95753c..209ce31910 100644 --- a/stdlib/ucontext.h +++ b/stdlib/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/wcstombs.c b/stdlib/wcstombs.c index 63e693e60a..c7b8a42fd8 100644 --- a/stdlib/wcstombs.c +++ b/stdlib/wcstombs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/wctomb.c b/stdlib/wctomb.c index 196090f005..0001ab77f2 100644 --- a/stdlib/wctomb.c +++ b/stdlib/wctomb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/stdlib/xpg_basename.c b/stdlib/xpg_basename.c index ecba7fe60b..1a513144db 100644 --- a/stdlib/xpg_basename.c +++ b/stdlib/xpg_basename.c @@ -1,5 +1,5 @@ /* Return basename of given pathname according to the weird XPG specification. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/streams/Makefile b/streams/Makefile index 721f0631ef..eeacd3ab50 100644 --- a/streams/Makefile +++ b/streams/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/streams/fattach.c b/streams/fattach.c index 5250db9a45..73c060da80 100644 --- a/streams/fattach.c +++ b/streams/fattach.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/streams/fdetach.c b/streams/fdetach.c index cd8dbb3158..fe031ee25a 100644 --- a/streams/fdetach.c +++ b/streams/fdetach.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/streams/getmsg.c b/streams/getmsg.c index 6af6eaf154..0bfee0ae43 100644 --- a/streams/getmsg.c +++ b/streams/getmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/streams/getpmsg.c b/streams/getpmsg.c index a263f2d949..a0c927d323 100644 --- a/streams/getpmsg.c +++ b/streams/getpmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/streams/isastream.c b/streams/isastream.c index c96349e65e..9b1033ec9b 100644 --- a/streams/isastream.c +++ b/streams/isastream.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/streams/putmsg.c b/streams/putmsg.c index 11d0a6f031..eecca7b407 100644 --- a/streams/putmsg.c +++ b/streams/putmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/streams/putpmsg.c b/streams/putpmsg.c index 710a4529b1..29a923f503 100644 --- a/streams/putpmsg.c +++ b/streams/putpmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/streams/stropts.h b/streams/stropts.h index 5af61dc365..16de4ba38d 100644 --- a/streams/stropts.h +++ b/streams/stropts.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/Makefile b/string/Makefile index 35135a03e7..ffc02efa00 100644 --- a/string/Makefile +++ b/string/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/string/_strerror.c b/string/_strerror.c index e0be266f76..d171044cba 100644 --- a/string/_strerror.c +++ b/string/_strerror.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/argz-addsep.c b/string/argz-addsep.c index 12381f4f6b..90478b070b 100644 --- a/string/argz-addsep.c +++ b/string/argz-addsep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/string/argz-append.c b/string/argz-append.c index 84c2568b9f..5efa379596 100644 --- a/string/argz-append.c +++ b/string/argz-append.c @@ -1,5 +1,5 @@ /* Routines for dealing with '\0' separated arg vectors. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader diff --git a/string/argz-count.c b/string/argz-count.c index 7d87236dce..d33d4f6ea7 100644 --- a/string/argz-count.c +++ b/string/argz-count.c @@ -1,5 +1,5 @@ /* Routines for dealing with '\0' separated arg vectors. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader diff --git a/string/argz-create.c b/string/argz-create.c index 6fd1e7e6c6..ae971dee11 100644 --- a/string/argz-create.c +++ b/string/argz-create.c @@ -1,5 +1,5 @@ /* Routines for dealing with '\0' separated arg vectors. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader diff --git a/string/argz-ctsep.c b/string/argz-ctsep.c index 1999cdec6b..0a2f58c4db 100644 --- a/string/argz-ctsep.c +++ b/string/argz-ctsep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/string/argz-delete.c b/string/argz-delete.c index ad26bc72fc..398c7a663b 100644 --- a/string/argz-delete.c +++ b/string/argz-delete.c @@ -1,5 +1,5 @@ /* Routines for dealing with '\0' separated arg vectors. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader diff --git a/string/argz-extract.c b/string/argz-extract.c index 7b76df909b..795a4325af 100644 --- a/string/argz-extract.c +++ b/string/argz-extract.c @@ -1,5 +1,5 @@ /* Routines for dealing with '\0' separated arg vectors. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader diff --git a/string/argz-insert.c b/string/argz-insert.c index e2d1b90498..f95948ff8f 100644 --- a/string/argz-insert.c +++ b/string/argz-insert.c @@ -1,5 +1,5 @@ /* Routines for dealing with '\0' separated arg vectors. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader diff --git a/string/argz-next.c b/string/argz-next.c index 01166be80f..0be19f2015 100644 --- a/string/argz-next.c +++ b/string/argz-next.c @@ -1,5 +1,5 @@ /* Iterate through the elements of an argz block. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader diff --git a/string/argz-replace.c b/string/argz-replace.c index 4fd0f0fe15..e07f8a6a61 100644 --- a/string/argz-replace.c +++ b/string/argz-replace.c @@ -1,5 +1,5 @@ /* String replacement in an argz vector - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader diff --git a/string/argz-stringify.c b/string/argz-stringify.c index f18924835e..43a6d5f526 100644 --- a/string/argz-stringify.c +++ b/string/argz-stringify.c @@ -1,5 +1,5 @@ /* Routines for dealing with '\0' separated arg vectors. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader diff --git a/string/argz.h b/string/argz.h index 4a9edadccb..f43271fa0c 100644 --- a/string/argz.h +++ b/string/argz.h @@ -1,5 +1,5 @@ /* Routines for dealing with '\0' separated arg vectors. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/basename.c b/string/basename.c index 8b8a4c3aec..29b84eecb4 100644 --- a/string/basename.c +++ b/string/basename.c @@ -1,5 +1,5 @@ /* Return the name-within-directory of a file name. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/bcopy.c b/string/bcopy.c index 73eaf4efcd..7c1225c4d7 100644 --- a/string/bcopy.c +++ b/string/bcopy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/bits/string2.h b/string/bits/string2.h index 9369a7c4d9..b3df7089a9 100644 --- a/string/bits/string2.h +++ b/string/bits/string2.h @@ -1,5 +1,5 @@ /* Machine-independant string function optimizations. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/string/bits/string3.h b/string/bits/string3.h index 233aa9e0ad..acd2577406 100644 --- a/string/bits/string3.h +++ b/string/bits/string3.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/byteswap.h b/string/byteswap.h index 705015f055..cd76b449be 100644 --- a/string/byteswap.h +++ b/string/byteswap.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/bzero.c b/string/bzero.c index 6d5a0a8595..9c220b9c13 100644 --- a/string/bzero.c +++ b/string/bzero.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/string/endian.h b/string/endian.h index f414cb1503..875fea3778 100644 --- a/string/endian.h +++ b/string/endian.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/envz.c b/string/envz.c index ee57882345..8a79484f32 100644 --- a/string/envz.c +++ b/string/envz.c @@ -1,5 +1,5 @@ /* Routines for dealing with '\0' separated environment vectors - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Miles Bader diff --git a/string/envz.h b/string/envz.h index f3bfaa0dee..f51931cee8 100644 --- a/string/envz.h +++ b/string/envz.h @@ -1,5 +1,5 @@ /* Routines for dealing with '\0' separated environment vectors - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/ffs.c b/string/ffs.c index 916c5c3483..392d5044c5 100644 --- a/string/ffs.c +++ b/string/ffs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/string/ffsll.c b/string/ffsll.c index c50cd0f708..5b54b33c28 100644 --- a/string/ffsll.c +++ b/string/ffsll.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/string/memccpy.c b/string/memccpy.c index 2a3303221a..793f68ee1c 100644 --- a/string/memccpy.c +++ b/string/memccpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/memchr.c b/string/memchr.c index 7a09de8932..7408f33b22 100644 --- a/string/memchr.c +++ b/string/memchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on strlen implementation by Torbjorn Granlund (tege@sics.se), with help from Dan Sahlin (dan@sics.se) and diff --git a/string/memcmp.c b/string/memcmp.c index d7c57db8bd..ce9e897e2a 100644 --- a/string/memcmp.c +++ b/string/memcmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/string/memcpy.c b/string/memcpy.c index 3be8e35579..c19bad3b67 100644 --- a/string/memcpy.c +++ b/string/memcpy.c @@ -1,6 +1,6 @@ /* Copy memory to memory until the specified number of bytes has been copied. Overlap is NOT handled correctly. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/string/memfrob.c b/string/memfrob.c index f0897eb239..4841309874 100644 --- a/string/memfrob.c +++ b/string/memfrob.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/memmem.c b/string/memmem.c index 1ff644282a..93e5e18c66 100644 --- a/string/memmem.c +++ b/string/memmem.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/memmove.c b/string/memmove.c index ec61e28c60..3373401721 100644 --- a/string/memmove.c +++ b/string/memmove.c @@ -1,6 +1,6 @@ /* Copy memory to memory until the specified number of bytes has been copied. Overlap is handled correctly. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/string/memory.h b/string/memory.h index b58932bf32..6d3c3d506e 100644 --- a/string/memory.h +++ b/string/memory.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/mempcpy.c b/string/mempcpy.c index a626c9cc60..9749863eaf 100644 --- a/string/mempcpy.c +++ b/string/mempcpy.c @@ -1,7 +1,7 @@ /* Copy memory to memory until the specified number of bytes has been copied, return pointer to following byte. Overlap is NOT handled correctly. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/string/memrchr.c b/string/memrchr.c index 9f504f1120..a0bde92789 100644 --- a/string/memrchr.c +++ b/string/memrchr.c @@ -1,5 +1,5 @@ /* memrchr -- find the last occurrence of a byte in a memory block - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on strlen implementation by Torbjorn Granlund (tege@sics.se), with help from Dan Sahlin (dan@sics.se) and diff --git a/string/memset.c b/string/memset.c index 74b5409218..275ff42331 100644 --- a/string/memset.c +++ b/string/memset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/rawmemchr.c b/string/rawmemchr.c index 7702ecf047..110a6bc45e 100644 --- a/string/rawmemchr.c +++ b/string/rawmemchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on strlen implementation by Torbjorn Granlund (tege@sics.se), with help from Dan Sahlin (dan@sics.se) and diff --git a/string/stpcpy.c b/string/stpcpy.c index 8ece3d9a78..fc5ae5534f 100644 --- a/string/stpcpy.c +++ b/string/stpcpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/stpncpy.c b/string/stpncpy.c index 629ad2ecca..fad747e7aa 100644 --- a/string/stpncpy.c +++ b/string/stpncpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/str-two-way.h b/string/str-two-way.h index 1cc20ee47e..f15b9d368d 100644 --- a/string/str-two-way.h +++ b/string/str-two-way.h @@ -1,5 +1,5 @@ /* Byte-wise substring search, using the Two-Way algorithm. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Eric Blake , 2008. diff --git a/string/stratcliff.c b/string/stratcliff.c index 385008574f..596c61ef86 100644 --- a/string/stratcliff.c +++ b/string/stratcliff.c @@ -1,5 +1,5 @@ /* Test for string function add boundaries of usable memory. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/string/strcasecmp.c b/string/strcasecmp.c index f2f48732cf..510caa2ab2 100644 --- a/string/strcasecmp.c +++ b/string/strcasecmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strcasecmp_l.c b/string/strcasecmp_l.c index 7b81bafcb6..25c419e330 100644 --- a/string/strcasecmp_l.c +++ b/string/strcasecmp_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strcasestr.c b/string/strcasestr.c index 7c8cbcc4cb..4bd6d415f7 100644 --- a/string/strcasestr.c +++ b/string/strcasestr.c @@ -1,5 +1,5 @@ /* Return the offset of one string within another. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strcat.c b/string/strcat.c index 5f5bf9cb87..bb7c0a9909 100644 --- a/string/strcat.c +++ b/string/strcat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strchr.c b/string/strchr.c index 7312900278..da69ed2353 100644 --- a/string/strchr.c +++ b/string/strchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on strlen implementation by Torbjorn Granlund (tege@sics.se), with help from Dan Sahlin (dan@sics.se) and diff --git a/string/strchrnul.c b/string/strchrnul.c index bf39636872..2aec3144e9 100644 --- a/string/strchrnul.c +++ b/string/strchrnul.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on strlen implementation by Torbjorn Granlund (tege@sics.se), with help from Dan Sahlin (dan@sics.se) and diff --git a/string/strcmp.c b/string/strcmp.c index a4645638eb..212f20cc1c 100644 --- a/string/strcmp.c +++ b/string/strcmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strcoll.c b/string/strcoll.c index 9fe53ff05d..779ba1309c 100644 --- a/string/strcoll.c +++ b/string/strcoll.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 1995. diff --git a/string/strcoll_l.c b/string/strcoll_l.c index 5095e98fb7..10ce4a67ce 100644 --- a/string/strcoll_l.c +++ b/string/strcoll_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 1995. diff --git a/string/strcpy.c b/string/strcpy.c index b71f7536bc..f136916437 100644 --- a/string/strcpy.c +++ b/string/strcpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strcspn.c b/string/strcspn.c index 908d329cec..7c39f793ea 100644 --- a/string/strcspn.c +++ b/string/strcspn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strdup.c b/string/strdup.c index 1dacf787c1..cedffa0da2 100644 --- a/string/strdup.c +++ b/string/strdup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strerror.c b/string/strerror.c index 9123c396b7..5eed633e2b 100644 --- a/string/strerror.c +++ b/string/strerror.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strerror_l.c b/string/strerror_l.c index d135aacd79..19f591e7c3 100644 --- a/string/strerror_l.c +++ b/string/strerror_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strfry.c b/string/strfry.c index f40c532c8f..e448947d95 100644 --- a/string/strfry.c +++ b/string/strfry.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/string-inlines.c b/string/string-inlines.c index d85f4d3aeb..1e1e91ab49 100644 --- a/string/string-inlines.c +++ b/string/string-inlines.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/string.h b/string/string.h index 33d01ad71c..b127e8d9dd 100644 --- a/string/string.h +++ b/string/string.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strings.h b/string/strings.h index 0d2b5bf2a7..994c4b048c 100644 --- a/string/strings.h +++ b/string/strings.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strlen.c b/string/strlen.c index eba5f11efa..342c4a2b70 100644 --- a/string/strlen.c +++ b/string/strlen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Torbjorn Granlund (tege@sics.se), with help from Dan Sahlin (dan@sics.se); diff --git a/string/strncase.c b/string/strncase.c index 105286a819..a462a2a0e4 100644 --- a/string/strncase.c +++ b/string/strncase.c @@ -1,6 +1,6 @@ /* Compare at most N characters of two strings without taking care for the case. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strncase_l.c b/string/strncase_l.c index 300fa7bcc2..01e1f0c7ca 100644 --- a/string/strncase_l.c +++ b/string/strncase_l.c @@ -1,6 +1,6 @@ /* Compare at most N characters of two strings without taking care for the case using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strncat.c b/string/strncat.c index ad8e8dc2bd..7ac44561bd 100644 --- a/string/strncat.c +++ b/string/strncat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strncmp.c b/string/strncmp.c index 37d03c6d47..8a93373b97 100644 --- a/string/strncmp.c +++ b/string/strncmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strncpy.c b/string/strncpy.c index 1a41e6c411..0915e036d6 100644 --- a/string/strncpy.c +++ b/string/strncpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strndup.c b/string/strndup.c index c2eda4bfe7..e114a27208 100644 --- a/string/strndup.c +++ b/string/strndup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strnlen.c b/string/strnlen.c index 2363350f4e..8d53afbaf0 100644 --- a/string/strnlen.c +++ b/string/strnlen.c @@ -1,5 +1,5 @@ /* Find the length of STRING, but scan at most MAXLEN characters. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. Contributed by Jakub Jelinek . Based on strlen written by Torbjorn Granlund (tege@sics.se), diff --git a/string/strpbrk.c b/string/strpbrk.c index 1069094d6a..ce33b684ef 100644 --- a/string/strpbrk.c +++ b/string/strpbrk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strrchr.c b/string/strrchr.c index bdec841c87..b5b4bc6208 100644 --- a/string/strrchr.c +++ b/string/strrchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strsep.c b/string/strsep.c index 61e0aea3c7..dedd0f1073 100644 --- a/string/strsep.c +++ b/string/strsep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strsignal.c b/string/strsignal.c index c4f49dca1d..5806081a2d 100644 --- a/string/strsignal.c +++ b/string/strsignal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strspn.c b/string/strspn.c index a35a7c9312..37e8161a28 100644 --- a/string/strspn.c +++ b/string/strspn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strstr.c b/string/strstr.c index b2f8e74cae..2ae04c644f 100644 --- a/string/strstr.c +++ b/string/strstr.c @@ -1,5 +1,5 @@ /* Return the offset of one string within another. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strtok.c b/string/strtok.c index 5db534508c..f7f709908f 100644 --- a/string/strtok.c +++ b/string/strtok.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strtok_r.c b/string/strtok_r.c index 601000d99c..fb5ba8d7a2 100644 --- a/string/strtok_r.c +++ b/string/strtok_r.c @@ -1,5 +1,5 @@ /* Reentrant string tokenizer. Generic version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/strverscmp.c b/string/strverscmp.c index 719b8cecfd..7060afcc65 100644 --- a/string/strverscmp.c +++ b/string/strverscmp.c @@ -1,5 +1,5 @@ /* Compare strings while treating digits characters numerically. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jean-François Bignolles , 1997. diff --git a/string/strxfrm.c b/string/strxfrm.c index 069f40b810..22ed3761e3 100644 --- a/string/strxfrm.c +++ b/string/strxfrm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 1995. diff --git a/string/strxfrm_l.c b/string/strxfrm_l.c index 3812ed6096..04b9338f05 100644 --- a/string/strxfrm_l.c +++ b/string/strxfrm_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 1995. diff --git a/string/swab.c b/string/swab.c index 5766166a30..489eb042c2 100644 --- a/string/swab.c +++ b/string/swab.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/test-bcopy.c b/string/test-bcopy.c index dc846d975f..dc91f5e813 100644 --- a/string/test-bcopy.c +++ b/string/test-bcopy.c @@ -1,5 +1,5 @@ /* Test and measure bcopy functions. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/test-bzero.c b/string/test-bzero.c index 5d3919b3ae..f0fd24fa87 100644 --- a/string/test-bzero.c +++ b/string/test-bzero.c @@ -1,5 +1,5 @@ /* Test and measure bzero functions. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/test-ffs.c b/string/test-ffs.c index b9ddf4d3a7..7ac1dd6bfd 100644 --- a/string/test-ffs.c +++ b/string/test-ffs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Joel Sherrill (jsherril@redstone-emh2.army.mil), On-Line Applications Research Corporation. diff --git a/string/test-memccpy.c b/string/test-memccpy.c index a3f20a8c48..725d64042e 100644 --- a/string/test-memccpy.c +++ b/string/test-memccpy.c @@ -1,5 +1,5 @@ /* Test and measure memccpy functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-memchr.c b/string/test-memchr.c index bc1767c692..0ba79b8b07 100644 --- a/string/test-memchr.c +++ b/string/test-memchr.c @@ -1,5 +1,5 @@ /* Test and measure memchr functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-memcmp.c b/string/test-memcmp.c index 0420cd0b7b..14090edb35 100644 --- a/string/test-memcmp.c +++ b/string/test-memcmp.c @@ -1,5 +1,5 @@ /* Test and measure memcmp functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. Added wmemcmp support by Liubov Dmitrieva , 2011. diff --git a/string/test-memcpy.c b/string/test-memcpy.c index b7ebe5f4e0..136c985abd 100644 --- a/string/test-memcpy.c +++ b/string/test-memcpy.c @@ -1,5 +1,5 @@ /* Test and measure memcpy functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-memmem.c b/string/test-memmem.c index d98ede79e3..1b4e4b7ea0 100644 --- a/string/test-memmem.c +++ b/string/test-memmem.c @@ -1,5 +1,5 @@ /* Test and measure memmem functions. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 2008. diff --git a/string/test-memmove.c b/string/test-memmove.c index 94576a299b..7e1c41c64d 100644 --- a/string/test-memmove.c +++ b/string/test-memmove.c @@ -1,5 +1,5 @@ /* Test and measure memmove functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-mempcpy.c b/string/test-mempcpy.c index 039a917101..ce853b09ec 100644 --- a/string/test-mempcpy.c +++ b/string/test-mempcpy.c @@ -1,5 +1,5 @@ /* Test and measure mempcpy functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-memrchr.c b/string/test-memrchr.c index a4fe81190e..efe4e9fbf1 100644 --- a/string/test-memrchr.c +++ b/string/test-memrchr.c @@ -1,5 +1,5 @@ /* Test and measure memrchr functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-memset.c b/string/test-memset.c index 72a390e7d9..2171b0d9e6 100644 --- a/string/test-memset.c +++ b/string/test-memset.c @@ -1,5 +1,5 @@ /* Test and measure memset functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-rawmemchr.c b/string/test-rawmemchr.c index 9e4952f7c7..c718a49dd8 100644 --- a/string/test-rawmemchr.c +++ b/string/test-rawmemchr.c @@ -1,5 +1,5 @@ /* Test and measure memchr functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-stpcpy.c b/string/test-stpcpy.c index 2dff927c6a..6c3d28c35f 100644 --- a/string/test-stpcpy.c +++ b/string/test-stpcpy.c @@ -1,5 +1,5 @@ /* Test and measure stpcpy functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-stpncpy.c b/string/test-stpncpy.c index ee95091035..ec7b72b4d5 100644 --- a/string/test-stpncpy.c +++ b/string/test-stpncpy.c @@ -1,5 +1,5 @@ /* Test and measure stpncpy functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-strcasecmp.c b/string/test-strcasecmp.c index bdfcccaa12..11bc65b0c6 100644 --- a/string/test-strcasecmp.c +++ b/string/test-strcasecmp.c @@ -1,5 +1,5 @@ /* Test and measure strcasecmp functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-strcasestr.c b/string/test-strcasestr.c index 5b1d827a05..1c24506e3e 100644 --- a/string/test-strcasestr.c +++ b/string/test-strcasestr.c @@ -1,5 +1,5 @@ /* Test and measure strcasestr functions. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 2010. diff --git a/string/test-strcat.c b/string/test-strcat.c index 89fc90d1d0..5b73b11b2a 100644 --- a/string/test-strcat.c +++ b/string/test-strcat.c @@ -1,5 +1,5 @@ /* Test and measure strcat functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-strchr.c b/string/test-strchr.c index cbcf53ef80..12cd9d84ec 100644 --- a/string/test-strchr.c +++ b/string/test-strchr.c @@ -1,5 +1,5 @@ /* Test and measure STRCHR functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. Added wcschr support by Liubov Dmitrieva , 2011 diff --git a/string/test-strchrnul.c b/string/test-strchrnul.c index 43f2f1ea0c..9d5d819a72 100644 --- a/string/test-strchrnul.c +++ b/string/test-strchrnul.c @@ -1,6 +1,6 @@ /* Test and measure strchrnul function. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/test-strcmp.c b/string/test-strcmp.c index f666993929..b395dc7fbe 100644 --- a/string/test-strcmp.c +++ b/string/test-strcmp.c @@ -1,5 +1,5 @@ /* Test and measure strcmp and wcscmp functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. Added wcscmp support by Liubov Dmitrieva , 2011. diff --git a/string/test-strcpy.c b/string/test-strcpy.c index d97326795b..e244db5367 100644 --- a/string/test-strcpy.c +++ b/string/test-strcpy.c @@ -1,5 +1,5 @@ /* Test and measure strcpy functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. Added wcscpy support by Liubov Dmitrieva , 2011 diff --git a/string/test-strcspn.c b/string/test-strcspn.c index 84b2301cd0..5ea50a6699 100644 --- a/string/test-strcspn.c +++ b/string/test-strcspn.c @@ -1,5 +1,5 @@ /* Test and measure strcspn functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-string.h b/string/test-string.h index 5385fa04f5..4d9a39de30 100644 --- a/string/test-string.h +++ b/string/test-string.h @@ -1,5 +1,5 @@ /* Test and measure string and memory functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-strlen.c b/string/test-strlen.c index f8b791d0f2..046a19435a 100644 --- a/string/test-strlen.c +++ b/string/test-strlen.c @@ -1,5 +1,5 @@ /* Test and measure STRLEN functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. Added wcslen support by Liubov Dmitrieva , 2011 diff --git a/string/test-strncasecmp.c b/string/test-strncasecmp.c index 00eca4a26f..6ad54e0916 100644 --- a/string/test-strncasecmp.c +++ b/string/test-strncasecmp.c @@ -1,5 +1,5 @@ /* Test and measure strncasecmp functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-strncat.c b/string/test-strncat.c index 6cdd5e723e..4915c59584 100644 --- a/string/test-strncat.c +++ b/string/test-strncat.c @@ -1,5 +1,5 @@ /* Test and measure strncat functions. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/test-strncmp.c b/string/test-strncmp.c index 47c33e33b4..f3b2c68014 100644 --- a/string/test-strncmp.c +++ b/string/test-strncmp.c @@ -1,5 +1,5 @@ /* Test and measure strncmp functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-strncpy.c b/string/test-strncpy.c index ac0e0004db..2326acc6fa 100644 --- a/string/test-strncpy.c +++ b/string/test-strncpy.c @@ -1,5 +1,5 @@ /* Test and measure strncpy functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-strnlen.c b/string/test-strnlen.c index bc7459bbe0..be9edd2aae 100644 --- a/string/test-strnlen.c +++ b/string/test-strnlen.c @@ -1,5 +1,5 @@ /* Test and measure strlen functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-strpbrk.c b/string/test-strpbrk.c index 9f1b4a769b..bd981618a3 100644 --- a/string/test-strpbrk.c +++ b/string/test-strpbrk.c @@ -1,5 +1,5 @@ /* Test and measure strpbrk functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-strrchr.c b/string/test-strrchr.c index f5afe75399..12d7c9f779 100644 --- a/string/test-strrchr.c +++ b/string/test-strrchr.c @@ -1,5 +1,5 @@ /* Test and measure STRCHR functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. Added wcsrrchr support by Liubov Dmitrieva , diff --git a/string/test-strspn.c b/string/test-strspn.c index 4943faaeda..56dcf5378a 100644 --- a/string/test-strspn.c +++ b/string/test-strspn.c @@ -1,5 +1,5 @@ /* Test and measure strspn functions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jakub Jelinek , 1999. diff --git a/string/test-strstr.c b/string/test-strstr.c index 4e49007f34..5547186c9a 100644 --- a/string/test-strstr.c +++ b/string/test-strstr.c @@ -1,5 +1,5 @@ /* Test and measure strstr functions. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper , 2010. diff --git a/string/testcopy.c b/string/testcopy.c index 684c41fc86..d0afdc868a 100644 --- a/string/testcopy.c +++ b/string/testcopy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1990-2013 Free Software Foundation, Inc. +/* Copyright (C) 1990-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/string/tester.c b/string/tester.c index f1ea4381d4..62905a7d24 100644 --- a/string/tester.c +++ b/string/tester.c @@ -1,5 +1,5 @@ /* Tester for string functions. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/tst-bswap.c b/string/tst-bswap.c index 9230c4bed7..cca704c0d2 100644 --- a/string/tst-bswap.c +++ b/string/tst-bswap.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . diff --git a/string/tst-inlcall.c b/string/tst-inlcall.c index a35198709f..32d88631f5 100644 --- a/string/tst-inlcall.c +++ b/string/tst-inlcall.c @@ -1,5 +1,5 @@ /* Tester for calling inline string functions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/tst-strcoll-overflow.c b/string/tst-strcoll-overflow.c index bb665ac514..e7a43ea844 100644 --- a/string/tst-strcoll-overflow.c +++ b/string/tst-strcoll-overflow.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/tst-strtok_r.c b/string/tst-strtok_r.c index d5a445feec..b1e89a425f 100644 --- a/string/tst-strtok_r.c +++ b/string/tst-strtok_r.c @@ -1,5 +1,5 @@ /* Test strtok_r regression for BZ #14229. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/string/wordcopy.c b/string/wordcopy.c index 51c1fad0ec..ff4cce4702 100644 --- a/string/wordcopy.c +++ b/string/wordcopy.c @@ -1,5 +1,5 @@ /* _memcopy.c -- subroutines for memory copy functions. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/string/xpg-strerror.c b/string/xpg-strerror.c index 79214143cc..36e2548dbb 100644 --- a/string/xpg-strerror.c +++ b/string/xpg-strerror.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sunrpc/Makefile b/sunrpc/Makefile index 9b59796b10..b36e3dd513 100644 --- a/sunrpc/Makefile +++ b/sunrpc/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1994-2013 Free Software Foundation, Inc. +# Copyright (C) 1994-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sunrpc/create_xid.c b/sunrpc/create_xid.c index c005087c76..bb346dcada 100644 --- a/sunrpc/create_xid.c +++ b/sunrpc/create_xid.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/sunrpc/netname.c b/sunrpc/netname.c index 8ba43c6699..0765f55d5b 100644 --- a/sunrpc/netname.c +++ b/sunrpc/netname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1997. diff --git a/sunrpc/publickey.c b/sunrpc/publickey.c index 61f39b633d..3cc5b00eb7 100644 --- a/sunrpc/publickey.c +++ b/sunrpc/publickey.c @@ -1,5 +1,5 @@ /* Get public or secret key from key server. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sunrpc/rpc/auth_des.h b/sunrpc/rpc/auth_des.h index 21d40cc569..19cdc166c1 100644 --- a/sunrpc/rpc/auth_des.h +++ b/sunrpc/rpc/auth_des.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sunrpc/rpc/svc.h b/sunrpc/rpc/svc.h index d7a37958ff..ed5989bf6d 100644 --- a/sunrpc/rpc/svc.h +++ b/sunrpc/rpc/svc.h @@ -1,7 +1,7 @@ /* * svc.h, Server-side remote procedure call interface. * - * Copyright (C) 2012-2013 Free Software Foundation, Inc. + * Copyright (C) 2012-2014 Free Software Foundation, Inc. * This file is part of the GNU C Library. * * The GNU C Library is free software; you can redistribute it and/or diff --git a/sunrpc/rpcsvc/bootparam.h b/sunrpc/rpcsvc/bootparam.h index 7e9086161c..20e84410cc 100644 --- a/sunrpc/rpcsvc/bootparam.h +++ b/sunrpc/rpcsvc/bootparam.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sunrpc/svc.c b/sunrpc/svc.c index 53e5d9faeb..ccf0902f85 100644 --- a/sunrpc/svc.c +++ b/sunrpc/svc.c @@ -4,7 +4,7 @@ * There are two sets of procedures here. The xprt routines are * for handling transport handles. The svc routines handle the * list of service routines. - * Copyright (C) 2002-2013 Free Software Foundation, Inc. + * Copyright (C) 2002-2014 Free Software Foundation, Inc. * This file is part of the GNU C Library. * Contributed by Ulrich Drepper , 2002. * diff --git a/sunrpc/svc_tcp.c b/sunrpc/svc_tcp.c index 50be6aada8..913f05f033 100644 --- a/sunrpc/svc_tcp.c +++ b/sunrpc/svc_tcp.c @@ -1,7 +1,7 @@ /* * svc_tcp.c, Server side for TCP/IP based RPC. * - * Copyright (C) 2012-2013 Free Software Foundation, Inc. + * Copyright (C) 2012-2014 Free Software Foundation, Inc. * This file is part of the GNU C Library. * * The GNU C Library is free software; you can redistribute it and/or diff --git a/sunrpc/svc_udp.c b/sunrpc/svc_udp.c index 8f45525b8e..411234a207 100644 --- a/sunrpc/svc_udp.c +++ b/sunrpc/svc_udp.c @@ -3,7 +3,7 @@ * Server side for UDP/IP based RPC. (Does some caching in the hopes of * achieving execute-at-most-once semantics.) * - * Copyright (C) 2012-2013 Free Software Foundation, Inc. + * Copyright (C) 2012-2014 Free Software Foundation, Inc. * This file is part of the GNU C Library. * * The GNU C Library is free software; you can redistribute it and/or diff --git a/sunrpc/svc_unix.c b/sunrpc/svc_unix.c index a279a6e4bb..963276b2f9 100644 --- a/sunrpc/svc_unix.c +++ b/sunrpc/svc_unix.c @@ -1,7 +1,7 @@ /* * svc_unix.c, Server side for TCP/IP based RPC. * - * Copyright (C) 2012-2013 Free Software Foundation, Inc. + * Copyright (C) 2012-2014 Free Software Foundation, Inc. * This file is part of the GNU C Library. * * The GNU C Library is free software; you can redistribute it and/or diff --git a/sunrpc/tst-xdrmem.c b/sunrpc/tst-xdrmem.c index 2d21eff52d..383876a843 100644 --- a/sunrpc/tst-xdrmem.c +++ b/sunrpc/tst-xdrmem.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2005. diff --git a/sunrpc/tst-xdrmem2.c b/sunrpc/tst-xdrmem2.c index 546ea2bd07..387266a2a4 100644 --- a/sunrpc/tst-xdrmem2.c +++ b/sunrpc/tst-xdrmem2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/sunrpc/xdr_intXX_t.c b/sunrpc/xdr_intXX_t.c index 9de567cab4..b9b3dd1fae 100644 --- a/sunrpc/xdr_intXX_t.c +++ b/sunrpc/xdr_intXX_t.c @@ -1,4 +1,4 @@ -/* Copyright (c) 1998-2013 Free Software Foundation, Inc. +/* Copyright (c) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk , 1998. diff --git a/sysdeps/generic/Makefile b/sysdeps/generic/Makefile index 852d6bd094..091d5d9d4e 100644 --- a/sysdeps/generic/Makefile +++ b/sysdeps/generic/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1992-2013 Free Software Foundation, Inc. +# Copyright (C) 1992-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/_itoa.h b/sysdeps/generic/_itoa.h index 8e0ab6ffeb..98e91cce79 100644 --- a/sysdeps/generic/_itoa.h +++ b/sysdeps/generic/_itoa.h @@ -1,5 +1,5 @@ /* Internal function for converting integers to ASCII. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/aio_misc.h b/sysdeps/generic/aio_misc.h index 4379976245..5a865963b9 100644 --- a/sysdeps/generic/aio_misc.h +++ b/sysdeps/generic/aio_misc.h @@ -1,5 +1,5 @@ /* Internal declarations for functions implementation. Stub version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/bits/hwcap.h b/sysdeps/generic/bits/hwcap.h index c82cc7e36c..16a26a4963 100644 --- a/sysdeps/generic/bits/hwcap.h +++ b/sysdeps/generic/bits/hwcap.h @@ -1,5 +1,5 @@ /* Defines for bits in AT_HWCAP. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/device-nrs.h b/sysdeps/generic/device-nrs.h index 01d021207c..50962143fb 100644 --- a/sysdeps/generic/device-nrs.h +++ b/sysdeps/generic/device-nrs.h @@ -1,5 +1,5 @@ /* Device numbers of devices used in the implementation. Generic version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/dirstream.h b/sysdeps/generic/dirstream.h index 1e1457a4bd..fa108a44f0 100644 --- a/sysdeps/generic/dirstream.h +++ b/sysdeps/generic/dirstream.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/dl-cache.h b/sysdeps/generic/dl-cache.h index ab68e1d592..fe8f3c8dc0 100644 --- a/sysdeps/generic/dl-cache.h +++ b/sysdeps/generic/dl-cache.h @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/dl-dtprocnum.h b/sysdeps/generic/dl-dtprocnum.h index 2983c203ed..419fd0905f 100644 --- a/sysdeps/generic/dl-dtprocnum.h +++ b/sysdeps/generic/dl-dtprocnum.h @@ -1,5 +1,5 @@ /* Configuration of lookup functions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/dl-fptr.h b/sysdeps/generic/dl-fptr.h index 5a99113ca5..ae79a08e39 100644 --- a/sysdeps/generic/dl-fptr.h +++ b/sysdeps/generic/dl-fptr.h @@ -1,5 +1,5 @@ /* Function descriptors. Generic version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/dl-hash.h b/sysdeps/generic/dl-hash.h index 9ad7d3ceed..ca211eb362 100644 --- a/sysdeps/generic/dl-hash.h +++ b/sysdeps/generic/dl-hash.h @@ -1,5 +1,5 @@ /* Compute hash value for given string according to ELF standard. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/dl-irel.h b/sysdeps/generic/dl-irel.h index 41b834a387..b8648b2266 100644 --- a/sysdeps/generic/dl-irel.h +++ b/sysdeps/generic/dl-irel.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF indirect relocation inline functions. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/dl-librecon.h b/sysdeps/generic/dl-librecon.h index ba73bc3742..7fa3fa7efc 100644 --- a/sysdeps/generic/dl-librecon.h +++ b/sysdeps/generic/dl-librecon.h @@ -1,5 +1,5 @@ /* Optional code to distinguish library flavours. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/generic/dl-lookupcfg.h b/sysdeps/generic/dl-lookupcfg.h index 3d294d6a95..0260a769dc 100644 --- a/sysdeps/generic/dl-lookupcfg.h +++ b/sysdeps/generic/dl-lookupcfg.h @@ -1,5 +1,5 @@ /* Configuration of lookup functions. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/dl-machine.h b/sysdeps/generic/dl-machine.h index 42ef94be0e..d7a2b60c0c 100644 --- a/sysdeps/generic/dl-machine.h +++ b/sysdeps/generic/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. Stub version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/dl-osinfo.h b/sysdeps/generic/dl-osinfo.h index 35971167b6..d7667f862d 100644 --- a/sysdeps/generic/dl-osinfo.h +++ b/sysdeps/generic/dl-osinfo.h @@ -1,5 +1,5 @@ /* Operating system specific code for generic dynamic loader functions. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/dl-procinfo.h b/sysdeps/generic/dl-procinfo.h index a184a5918a..56d4535b65 100644 --- a/sysdeps/generic/dl-procinfo.h +++ b/sysdeps/generic/dl-procinfo.h @@ -1,5 +1,5 @@ /* Stub version of processor capability information handling macros. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/generic/dl-sysdep.h b/sysdeps/generic/dl-sysdep.h index 77c8ff6773..ae0e4be6d1 100644 --- a/sysdeps/generic/dl-sysdep.h +++ b/sysdeps/generic/dl-sysdep.h @@ -1,5 +1,5 @@ /* System-specific settings for dynamic linker code. Generic version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/dwarf2.h b/sysdeps/generic/dwarf2.h index 46460a0273..57c2d4e744 100644 --- a/sysdeps/generic/dwarf2.h +++ b/sysdeps/generic/dwarf2.h @@ -1,6 +1,6 @@ /* Declarations and definitions of codes relating to the DWARF2 symbolic debugging information format. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. Contributed by Gary Funck (gary@intrepid.com). Derived from the DWARF 1 implementation written by Ron Guilmette (rfg@monkeys.com). diff --git a/sysdeps/generic/eloop-threshold.h b/sysdeps/generic/eloop-threshold.h index 16ca49321e..ce7da147ba 100644 --- a/sysdeps/generic/eloop-threshold.h +++ b/sysdeps/generic/eloop-threshold.h @@ -1,5 +1,5 @@ /* Threshold at which to diagnose ELOOP. Generic version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/fd_to_filename.h b/sysdeps/generic/fd_to_filename.h index 1ca8846730..5606401bc3 100644 --- a/sysdeps/generic/fd_to_filename.h +++ b/sysdeps/generic/fd_to_filename.h @@ -1,5 +1,5 @@ /* Query filename corresponding to an open FD. Generic version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/fips-private.h b/sysdeps/generic/fips-private.h index 10ea99cbdc..1f4b99f394 100644 --- a/sysdeps/generic/fips-private.h +++ b/sysdeps/generic/fips-private.h @@ -1,5 +1,5 @@ /* Dummy implementation of FIPS compliance status test. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/fpu_control.h b/sysdeps/generic/fpu_control.h index 9084f9a4bb..39a3e6612c 100644 --- a/sysdeps/generic/fpu_control.h +++ b/sysdeps/generic/fpu_control.h @@ -1,5 +1,5 @@ /* FPU control word definitions. Stub version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/frame.h b/sysdeps/generic/frame.h index cae84ef3e2..14d23d8a87 100644 --- a/sysdeps/generic/frame.h +++ b/sysdeps/generic/frame.h @@ -1,5 +1,5 @@ /* Definition of stack frame structure. Generic version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/framestate.c b/sysdeps/generic/framestate.c index e224ab5e0c..fadc0add40 100644 --- a/sysdeps/generic/framestate.c +++ b/sysdeps/generic/framestate.c @@ -1,5 +1,5 @@ /* __frame_state_for unwinder helper function wrapper. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2001. diff --git a/sysdeps/generic/gccframe.h b/sysdeps/generic/gccframe.h index 80236f0903..2927ce7b7e 100644 --- a/sysdeps/generic/gccframe.h +++ b/sysdeps/generic/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. Generic version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/get-rounding-mode.h b/sysdeps/generic/get-rounding-mode.h index a281a90793..b46cab5926 100644 --- a/sysdeps/generic/get-rounding-mode.h +++ b/sysdeps/generic/get-rounding-mode.h @@ -1,5 +1,5 @@ /* Determine floating-point rounding mode within libc. Generic version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/gmp-mparam.h b/sysdeps/generic/gmp-mparam.h index f9aef2b95c..8355881b25 100644 --- a/sysdeps/generic/gmp-mparam.h +++ b/sysdeps/generic/gmp-mparam.h @@ -1,5 +1,5 @@ /* gmp-mparam.h -- Compiler/machine parameter header file. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/sysdeps/generic/hp-timing.h b/sysdeps/generic/hp-timing.h index 39e163d901..eddc971520 100644 --- a/sysdeps/generic/hp-timing.h +++ b/sysdeps/generic/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. Generic version. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/generic/ifreq.h b/sysdeps/generic/ifreq.h index f5af1fa430..b6c1c9fb14 100644 --- a/sysdeps/generic/ifreq.h +++ b/sysdeps/generic/ifreq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger . diff --git a/sysdeps/generic/inttypes.h b/sysdeps/generic/inttypes.h index 95d781815b..72837f329c 100644 --- a/sysdeps/generic/inttypes.h +++ b/sysdeps/generic/inttypes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/ldconfig.h b/sysdeps/generic/ldconfig.h index 037f959954..ba1d9535b2 100644 --- a/sysdeps/generic/ldconfig.h +++ b/sysdeps/generic/ldconfig.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index 48bdb6e44b..72de344b9c 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/libc-mmap.h b/sysdeps/generic/libc-mmap.h index 0ddd20d42a..8236ef71ba 100644 --- a/sysdeps/generic/libc-mmap.h +++ b/sysdeps/generic/libc-mmap.h @@ -1,5 +1,5 @@ /* Internal logic for dealing with mmap quirks. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/machine-gmon.h b/sysdeps/generic/machine-gmon.h index 31fbd0785a..e440d66199 100644 --- a/sysdeps/generic/machine-gmon.h +++ b/sysdeps/generic/machine-gmon.h @@ -1,5 +1,5 @@ /* Machine-dependent definitions for profiling support. Generic GCC 2 version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/machine-lock.h b/sysdeps/generic/machine-lock.h index 6aad93242d..5b9b2145e6 100644 --- a/sysdeps/generic/machine-lock.h +++ b/sysdeps/generic/machine-lock.h @@ -1,5 +1,5 @@ /* Machine-specific definition for spin locks. Stub version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/machine-sp.h b/sysdeps/generic/machine-sp.h index 4fe208cc91..cc48eac674 100644 --- a/sysdeps/generic/machine-sp.h +++ b/sysdeps/generic/machine-sp.h @@ -1,5 +1,5 @@ /* Machine-specific function to return the stack pointer. Stub version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/malloc-machine.h b/sysdeps/generic/malloc-machine.h index 1823481bd6..df7adebe26 100644 --- a/sysdeps/generic/malloc-machine.h +++ b/sysdeps/generic/malloc-machine.h @@ -1,6 +1,6 @@ /* Basic platform-independent macro definitions for mutexes, thread-specific data and parameters for malloc. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/malloc-sysdep.h b/sysdeps/generic/malloc-sysdep.h index 18980bc826..a563ab1bac 100644 --- a/sysdeps/generic/malloc-sysdep.h +++ b/sysdeps/generic/malloc-sysdep.h @@ -1,5 +1,5 @@ /* System-specific malloc support functions. Generic version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/math-tests.h b/sysdeps/generic/math-tests.h index 89b2260d0f..c86b06705e 100644 --- a/sysdeps/generic/math-tests.h +++ b/sysdeps/generic/math-tests.h @@ -1,5 +1,5 @@ /* Configuration for math tests. Generic version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/memcopy.h b/sysdeps/generic/memcopy.h index 72b18ae383..49e53630dd 100644 --- a/sysdeps/generic/memcopy.h +++ b/sysdeps/generic/memcopy.h @@ -1,5 +1,5 @@ /* memcopy.h -- definitions for memory copy functions. Generic C version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/sysdeps/generic/memusage.h b/sysdeps/generic/memusage.h index 631287827a..b610b7b2ce 100644 --- a/sysdeps/generic/memusage.h +++ b/sysdeps/generic/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/net/if.h b/sysdeps/generic/net/if.h index 1e554171f9..35bb142086 100644 --- a/sysdeps/generic/net/if.h +++ b/sysdeps/generic/net/if.h @@ -1,5 +1,5 @@ /* net/if.h -- declarations for inquiring about network interfaces - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/netinet/if_ether.h b/sysdeps/generic/netinet/if_ether.h index 6b2a1ec4f8..a52883e575 100644 --- a/sysdeps/generic/netinet/if_ether.h +++ b/sysdeps/generic/netinet/if_ether.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/netinet/in_systm.h b/sysdeps/generic/netinet/in_systm.h index a22ddf806c..2bc56d9f2b 100644 --- a/sysdeps/generic/netinet/in_systm.h +++ b/sysdeps/generic/netinet/in_systm.h @@ -1,5 +1,5 @@ /* System specific type definitions for networking code. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/netinet/ip.h b/sysdeps/generic/netinet/ip.h index 9e14a2d8e1..ecf340e07f 100644 --- a/sysdeps/generic/netinet/ip.h +++ b/sysdeps/generic/netinet/ip.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/nfs/nfs.h b/sysdeps/generic/nfs/nfs.h index 8d2be4903a..c32b1d8498 100644 --- a/sysdeps/generic/nfs/nfs.h +++ b/sysdeps/generic/nfs/nfs.h @@ -1,5 +1,5 @@ /* -- ill-specified NFS-related definitions - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/not-cancel.h b/sysdeps/generic/not-cancel.h index d5e76d56c3..cc1d606289 100644 --- a/sysdeps/generic/not-cancel.h +++ b/sysdeps/generic/not-cancel.h @@ -1,5 +1,5 @@ /* Uncancelable versions of cancelable interfaces. Generic version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/sysdeps/generic/nscd-types.h b/sysdeps/generic/nscd-types.h index 4673605c3f..c577ca7aea 100644 --- a/sysdeps/generic/nscd-types.h +++ b/sysdeps/generic/nscd-types.h @@ -1,5 +1,5 @@ /* Types for the NSCD implementation. Generic version. - Copyright (c) 2000-2013 Free Software Foundation, Inc. + Copyright (c) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/pagecopy.h b/sysdeps/generic/pagecopy.h index 078ad44638..2c35b71b87 100644 --- a/sysdeps/generic/pagecopy.h +++ b/sysdeps/generic/pagecopy.h @@ -1,5 +1,5 @@ /* Macros for copying by pages; used in memcpy, memmove. Generic macros. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/profil-counter.h b/sysdeps/generic/profil-counter.h index c531658e3c..4ff9b496cf 100644 --- a/sysdeps/generic/profil-counter.h +++ b/sysdeps/generic/profil-counter.h @@ -1,5 +1,5 @@ /* Machine-dependent SIGPROF signal handler. "Generic" version w/ sigcontext - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/pty-private.h b/sysdeps/generic/pty-private.h index de5f95b2b3..aa8fff7781 100644 --- a/sysdeps/generic/pty-private.h +++ b/sysdeps/generic/pty-private.h @@ -1,5 +1,5 @@ /* Internal defenitions and declarations for pseudo terminal functions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/sysdeps/generic/register-dump.h b/sysdeps/generic/register-dump.h index f56aa13326..486772972a 100644 --- a/sysdeps/generic/register-dump.h +++ b/sysdeps/generic/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/generic/sigcontextinfo.h b/sysdeps/generic/sigcontextinfo.h index 856641114e..1b8acb876d 100644 --- a/sysdeps/generic/sigcontextinfo.h +++ b/sysdeps/generic/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/generic/siglist.h b/sysdeps/generic/siglist.h index 71ddafe16a..e4f62c288b 100644 --- a/sysdeps/generic/siglist.h +++ b/sysdeps/generic/siglist.h @@ -1,5 +1,5 @@ /* Canonical list of all signal names. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/sigset-cvt-mask.h b/sysdeps/generic/sigset-cvt-mask.h index bc42bdc6fb..acb4e01655 100644 --- a/sysdeps/generic/sigset-cvt-mask.h +++ b/sysdeps/generic/sigset-cvt-mask.h @@ -1,6 +1,6 @@ /* Convert between lowlevel sigmask and libc representation of sigset_t. Generic version. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Joe Keane . diff --git a/sysdeps/generic/stackinfo.h b/sysdeps/generic/stackinfo.h index 1009293c7c..6ed686a73a 100644 --- a/sysdeps/generic/stackinfo.h +++ b/sysdeps/generic/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/stdint.h b/sysdeps/generic/stdint.h index 94c3203c84..4660748af1 100644 --- a/sysdeps/generic/stdint.h +++ b/sysdeps/generic/stdint.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/sys/ptrace.h b/sysdeps/generic/sys/ptrace.h index 4f8cee1f10..7c252a80f4 100644 --- a/sysdeps/generic/sys/ptrace.h +++ b/sysdeps/generic/sys/ptrace.h @@ -1,5 +1,5 @@ /* `ptrace' debugger support interface. Generic version; constants are common. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/sys/swap.h b/sysdeps/generic/sys/swap.h index 52c73c5693..1db04985f8 100644 --- a/sysdeps/generic/sys/swap.h +++ b/sysdeps/generic/sys/swap.h @@ -1,5 +1,5 @@ /* Calls to enable and disable swapping on specified locations. Unix version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/sys/sysinfo.h b/sysdeps/generic/sys/sysinfo.h index 0e9137a001..85f0438507 100644 --- a/sysdeps/generic/sys/sysinfo.h +++ b/sysdeps/generic/sys/sysinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/sys/sysmacros.h b/sysdeps/generic/sys/sysmacros.h index 2a038e405b..1d3732291d 100644 --- a/sysdeps/generic/sys/sysmacros.h +++ b/sysdeps/generic/sys/sysmacros.h @@ -1,5 +1,5 @@ /* Definitions of macros to access `dev_t' values. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/sys/ucontext.h b/sysdeps/generic/sys/ucontext.h index 13fbe8e75f..24de8dd33d 100644 --- a/sysdeps/generic/sys/ucontext.h +++ b/sysdeps/generic/sys/ucontext.h @@ -1,5 +1,5 @@ /* Data structures for user-level context switching. Generic version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/sysdep.h b/sysdeps/generic/sysdep.h index a935799ffa..d1104efdf4 100644 --- a/sysdeps/generic/sysdep.h +++ b/sysdeps/generic/sysdep.h @@ -1,5 +1,5 @@ /* Generic asm macros used on many machines. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/testrtsig.h b/sysdeps/generic/testrtsig.h index 0279c6a6c7..421691043d 100644 --- a/sysdeps/generic/testrtsig.h +++ b/sysdeps/generic/testrtsig.h @@ -1,5 +1,5 @@ /* Test whether RT signals are really available. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/generic/thread_state.h b/sysdeps/generic/thread_state.h index 869658e1ad..28d6c9a895 100644 --- a/sysdeps/generic/thread_state.h +++ b/sysdeps/generic/thread_state.h @@ -1,5 +1,5 @@ /* Mach thread state definitions for machine-independent code. Stub version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/tininess.h b/sysdeps/generic/tininess.h index a183de5a3b..58cd4dd46e 100644 --- a/sysdeps/generic/tininess.h +++ b/sysdeps/generic/tininess.h @@ -1,6 +1,6 @@ /* Specify architecture-specific rules for determining tininess of floating-point results. Generic version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/tls.h b/sysdeps/generic/tls.h index 47dcba80fb..fb3d965bb9 100644 --- a/sysdeps/generic/tls.h +++ b/sysdeps/generic/tls.h @@ -1,5 +1,5 @@ /* Definition for thread-local data handling. Generic version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/tst-stack-align.h b/sysdeps/generic/tst-stack-align.h index 194d007c9a..884b349d0d 100644 --- a/sysdeps/generic/tst-stack-align.h +++ b/sysdeps/generic/tst-stack-align.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/generic/unwind-dw2-fde-glibc.c b/sysdeps/generic/unwind-dw2-fde-glibc.c index 9c566f71bb..586cca5b9b 100644 --- a/sysdeps/generic/unwind-dw2-fde-glibc.c +++ b/sysdeps/generic/unwind-dw2-fde-glibc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Jakub Jelinek . This file is part of the GNU C Library. diff --git a/sysdeps/generic/unwind-dw2-fde.c b/sysdeps/generic/unwind-dw2-fde.c index 7c811395f3..ba003a9f15 100644 --- a/sysdeps/generic/unwind-dw2-fde.c +++ b/sysdeps/generic/unwind-dw2-fde.c @@ -1,5 +1,5 @@ /* Subroutines needed for unwinding stack frames for exception handling. */ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. Contributed by Jason Merrill . This file is part of the GNU C Library. diff --git a/sysdeps/generic/unwind-dw2-fde.h b/sysdeps/generic/unwind-dw2-fde.h index fad46bfbcc..d759f95e75 100644 --- a/sysdeps/generic/unwind-dw2-fde.h +++ b/sysdeps/generic/unwind-dw2-fde.h @@ -1,5 +1,5 @@ /* Subroutines needed for unwinding stack frames for exception handling. */ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. Contributed by Jason Merrill . This file is part of the GNU C Library. diff --git a/sysdeps/generic/unwind-dw2.c b/sysdeps/generic/unwind-dw2.c index b1c9f86753..0f33d5b47a 100644 --- a/sysdeps/generic/unwind-dw2.c +++ b/sysdeps/generic/unwind-dw2.c @@ -1,5 +1,5 @@ /* DWARF2 exception handling and frame unwind runtime interface routines. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/generic/unwind-pe.h b/sysdeps/generic/unwind-pe.h index f402b9a4d4..a4afe5c757 100644 --- a/sysdeps/generic/unwind-pe.h +++ b/sysdeps/generic/unwind-pe.h @@ -1,5 +1,5 @@ /* Exception handling and frame unwind runtime interface routines. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/generic/unwind.h b/sysdeps/generic/unwind.h index ad19b96efc..f2c744b4f5 100644 --- a/sysdeps/generic/unwind.h +++ b/sysdeps/generic/unwind.h @@ -1,5 +1,5 @@ /* Exception handling and frame unwind runtime interface routines. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/generic/utmp-equal.h b/sysdeps/generic/utmp-equal.h index b416a641e2..3f8ab05b69 100644 --- a/sysdeps/generic/utmp-equal.h +++ b/sysdeps/generic/utmp-equal.h @@ -1,5 +1,5 @@ /* Helper function for utmp functions to see if two entries are equal. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper and Paul Janzen , 1996. diff --git a/sysdeps/gnu/Makefile b/sysdeps/gnu/Makefile index b3166967cc..c05708d479 100644 --- a/sysdeps/gnu/Makefile +++ b/sysdeps/gnu/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/bits/ipc.h b/sysdeps/gnu/bits/ipc.h index f57acaccb1..0688e5d84a 100644 --- a/sysdeps/gnu/bits/ipc.h +++ b/sysdeps/gnu/bits/ipc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/bits/msq.h b/sysdeps/gnu/bits/msq.h index ca70acd52e..cd3f1d8f45 100644 --- a/sysdeps/gnu/bits/msq.h +++ b/sysdeps/gnu/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/bits/sem.h b/sysdeps/gnu/bits/sem.h index 83cebef4f3..4f2e02cd11 100644 --- a/sysdeps/gnu/bits/sem.h +++ b/sysdeps/gnu/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/bits/shm.h b/sysdeps/gnu/bits/shm.h index 8d908ccecc..a652a6e2d3 100644 --- a/sysdeps/gnu/bits/shm.h +++ b/sysdeps/gnu/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/bits/utmp.h b/sysdeps/gnu/bits/utmp.h index ebb611cf32..891e055777 100644 --- a/sysdeps/gnu/bits/utmp.h +++ b/sysdeps/gnu/bits/utmp.h @@ -1,5 +1,5 @@ /* The `struct utmp' type, describing entries in the utmp file. GNU version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/bits/utmpx.h b/sysdeps/gnu/bits/utmpx.h index 271d8b7d96..89d43a4a03 100644 --- a/sysdeps/gnu/bits/utmpx.h +++ b/sysdeps/gnu/bits/utmpx.h @@ -1,5 +1,5 @@ /* Structures and definitions for the user accounting database. GNU version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/errlist-compat.awk b/sysdeps/gnu/errlist-compat.awk index 46c3f5d4ba..1461ae499a 100644 --- a/sysdeps/gnu/errlist-compat.awk +++ b/sysdeps/gnu/errlist-compat.awk @@ -1,5 +1,5 @@ # awk script to generate errlist-compat.c -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/errlist.awk b/sysdeps/gnu/errlist.awk index 379146a22d..654984b221 100644 --- a/sysdeps/gnu/errlist.awk +++ b/sysdeps/gnu/errlist.awk @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/getutmp.c b/sysdeps/gnu/getutmp.c index eeb90175f4..b7d913b418 100644 --- a/sysdeps/gnu/getutmp.c +++ b/sysdeps/gnu/getutmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/ifaddrs.c b/sysdeps/gnu/ifaddrs.c index 3626c30494..1b8775f013 100644 --- a/sysdeps/gnu/ifaddrs.c +++ b/sysdeps/gnu/ifaddrs.c @@ -1,5 +1,5 @@ /* getifaddrs -- get names and addresses of all network interfaces - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/ldsodefs.h b/sysdeps/gnu/ldsodefs.h index 3cc42845be..7a1988b79c 100644 --- a/sysdeps/gnu/ldsodefs.h +++ b/sysdeps/gnu/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. GNU. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/net/if.h b/sysdeps/gnu/net/if.h index 60099108d0..a36990f3d0 100644 --- a/sysdeps/gnu/net/if.h +++ b/sysdeps/gnu/net/if.h @@ -1,5 +1,5 @@ /* net/if.h -- declarations for inquiring about network interfaces - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/netinet/ip_icmp.h b/sysdeps/gnu/netinet/ip_icmp.h index d23318c9d3..e7a351e966 100644 --- a/sysdeps/gnu/netinet/ip_icmp.h +++ b/sysdeps/gnu/netinet/ip_icmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/netinet/udp.h b/sysdeps/gnu/netinet/udp.h index 0bf8696acf..32159cd142 100644 --- a/sysdeps/gnu/netinet/udp.h +++ b/sysdeps/gnu/netinet/udp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/siglist.c b/sysdeps/gnu/siglist.c index 63f6f73ff2..e3d5b27314 100644 --- a/sysdeps/gnu/siglist.c +++ b/sysdeps/gnu/siglist.c @@ -1,5 +1,5 @@ /* Define list of all signal numbers and their names. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/sys/mtio.h b/sysdeps/gnu/sys/mtio.h index 73546ed0ad..f40a35184c 100644 --- a/sysdeps/gnu/sys/mtio.h +++ b/sysdeps/gnu/sys/mtio.h @@ -1,5 +1,5 @@ /* Structures and definitions for magnetic tape I/O control commands. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/gnu/unwind-resume.c b/sysdeps/gnu/unwind-resume.c index df845cd45b..8963bf6deb 100644 --- a/sysdeps/gnu/unwind-resume.c +++ b/sysdeps/gnu/unwind-resume.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/sysdeps/gnu/updwtmp.c b/sysdeps/gnu/updwtmp.c index b13fee8547..dc51818795 100644 --- a/sysdeps/gnu/updwtmp.c +++ b/sysdeps/gnu/updwtmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/sysdeps/gnu/utmp_file.c b/sysdeps/gnu/utmp_file.c index c9c099ddd1..7b4b8698de 100644 --- a/sysdeps/gnu/utmp_file.c +++ b/sysdeps/gnu/utmp_file.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/sysdeps/gnu/utmpx.h b/sysdeps/gnu/utmpx.h index bab8fa8239..2a35b89aee 100644 --- a/sysdeps/gnu/utmpx.h +++ b/sysdeps/gnu/utmpx.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/__longjmp.S b/sysdeps/i386/__longjmp.S index a0e7f41e3d..38fbedf1f6 100644 --- a/sysdeps/i386/__longjmp.S +++ b/sysdeps/i386/__longjmp.S @@ -1,5 +1,5 @@ /* longjmp for i386. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/add_n.S b/sysdeps/i386/add_n.S index dddbe7dd1e..1a354e93bd 100644 --- a/sysdeps/i386/add_n.S +++ b/sysdeps/i386/add_n.S @@ -1,6 +1,6 @@ /* Add two limb vectors of the same length > 0 and store sum in a third limb vector. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/addmul_1.S b/sysdeps/i386/addmul_1.S index ee2a78b470..69c71979be 100644 --- a/sysdeps/i386/addmul_1.S +++ b/sysdeps/i386/addmul_1.S @@ -1,6 +1,6 @@ /* i80386 __mpn_addmul_1 -- Multiply a limb vector with a limb and add the result to a second limb vector. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/asm-syntax.h b/sysdeps/i386/asm-syntax.h index c89b6bd6fe..1258e208c7 100644 --- a/sysdeps/i386/asm-syntax.h +++ b/sysdeps/i386/asm-syntax.h @@ -1,5 +1,5 @@ /* Definitions for x86 syntax variations. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Its master source is NOT part of the C library, however. The master source lives in the GNU MP Library. diff --git a/sysdeps/i386/backtrace.c b/sysdeps/i386/backtrace.c index 7b801b2adf..dc2007e5eb 100644 --- a/sysdeps/i386/backtrace.c +++ b/sysdeps/i386/backtrace.c @@ -1,5 +1,5 @@ /* Return backtrace of current program state. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/i386/bsd-_setjmp.S b/sysdeps/i386/bsd-_setjmp.S index 5c35d76383..4daaff3f1e 100644 --- a/sysdeps/i386/bsd-_setjmp.S +++ b/sysdeps/i386/bsd-_setjmp.S @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. i386 version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/bsd-setjmp.S b/sysdeps/i386/bsd-setjmp.S index 803d48ccd6..fcdab03363 100644 --- a/sysdeps/i386/bsd-setjmp.S +++ b/sysdeps/i386/bsd-setjmp.S @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. i386 version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/bzero.c b/sysdeps/i386/bzero.c index fd3359a91d..0743c41644 100644 --- a/sysdeps/i386/bzero.c +++ b/sysdeps/i386/bzero.c @@ -1,6 +1,6 @@ /* bzero -- set a block of memory to zero. For Intel 80x86, x>=3. This file is part of the GNU C Library. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. Contributed by Torbjorn Granlund (tege@sics.se). The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/crti.S b/sysdeps/i386/crti.S index 18218faf32..974fc8f6aa 100644 --- a/sysdeps/i386/crti.S +++ b/sysdeps/i386/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for x86. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/crtn.S b/sysdeps/i386/crtn.S index bef484e7a4..b9fd5721fc 100644 --- a/sysdeps/i386/crtn.S +++ b/sysdeps/i386/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for x86. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/dl-irel.h b/sysdeps/i386/dl-irel.h index 270d7628a5..6eb3495f88 100644 --- a/sysdeps/i386/dl-irel.h +++ b/sysdeps/i386/dl-irel.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF indirect relocation inline functions. i386 version. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/dl-lookupcfg.h b/sysdeps/i386/dl-lookupcfg.h index d4fa4104e0..3fea8b4ab1 100644 --- a/sysdeps/i386/dl-lookupcfg.h +++ b/sysdeps/i386/dl-lookupcfg.h @@ -1,5 +1,5 @@ /* Configuration of lookup functions. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/dl-machine.h b/sysdeps/i386/dl-machine.h index b6fc8051e5..917550c64f 100644 --- a/sysdeps/i386/dl-machine.h +++ b/sysdeps/i386/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. i386 version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/dl-procinfo.c b/sysdeps/i386/dl-procinfo.c index 7e9426d469..92831731c7 100644 --- a/sysdeps/i386/dl-procinfo.c +++ b/sysdeps/i386/dl-procinfo.c @@ -1,5 +1,5 @@ /* Data for i386 version of processor capability information. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/sysdeps/i386/dl-procinfo.h b/sysdeps/i386/dl-procinfo.h index 233a3257e3..0f22b76e08 100644 --- a/sysdeps/i386/dl-procinfo.h +++ b/sysdeps/i386/dl-procinfo.h @@ -1,5 +1,5 @@ /* i386 version of processor capability information handling macros. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/i386/dl-tls.h b/sysdeps/i386/dl-tls.h index 3b22be351f..736137254f 100644 --- a/sysdeps/i386/dl-tls.h +++ b/sysdeps/i386/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. i386 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/dl-tlsdesc.S b/sysdeps/i386/dl-tlsdesc.S index 5a749b6d8e..e6753e9e19 100644 --- a/sysdeps/i386/dl-tlsdesc.S +++ b/sysdeps/i386/dl-tlsdesc.S @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. i386 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/dl-tlsdesc.h b/sysdeps/i386/dl-tlsdesc.h index 78f4cdbfb9..ce6e831b60 100644 --- a/sysdeps/i386/dl-tlsdesc.h +++ b/sysdeps/i386/dl-tlsdesc.h @@ -1,6 +1,6 @@ /* Thread-local storage descriptor handling in the ELF dynamic linker. i386 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/dl-trampoline.S b/sysdeps/i386/dl-trampoline.S index 945708fa73..8cbab48206 100644 --- a/sysdeps/i386/dl-trampoline.S +++ b/sysdeps/i386/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. i386 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/ffs.c b/sysdeps/i386/ffs.c index 77d2e60b76..0ff5857759 100644 --- a/sysdeps/i386/ffs.c +++ b/sysdeps/i386/ffs.c @@ -1,7 +1,7 @@ /* ffs -- find first set bit in a word, counted from least significant end. For Intel 80x86, x>=3. This file is part of the GNU C Library. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. Contributed by Torbjorn Granlund (tege@sics.se). The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/fpu/e_acosh.S b/sysdeps/i386/fpu/e_acosh.S index 2779c9c800..98a329179b 100644 --- a/sysdeps/i386/fpu/e_acosh.S +++ b/sysdeps/i386/fpu/e_acosh.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of arcsinh. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/e_acoshf.S b/sysdeps/i386/fpu/e_acoshf.S index 1e3d37355f..db9cf337b2 100644 --- a/sysdeps/i386/fpu/e_acoshf.S +++ b/sysdeps/i386/fpu/e_acoshf.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of arcsinh. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/e_acoshl.S b/sysdeps/i386/fpu/e_acoshl.S index b8122213cd..a832155d17 100644 --- a/sysdeps/i386/fpu/e_acoshl.S +++ b/sysdeps/i386/fpu/e_acoshl.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of arcsinh. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/e_atanh.S b/sysdeps/i386/fpu/e_atanh.S index 06a2a4520a..38a4559370 100644 --- a/sysdeps/i386/fpu/e_atanh.S +++ b/sysdeps/i386/fpu/e_atanh.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of arctanh function. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/e_atanhf.S b/sysdeps/i386/fpu/e_atanhf.S index 0739756e2f..5a4208cec3 100644 --- a/sysdeps/i386/fpu/e_atanhf.S +++ b/sysdeps/i386/fpu/e_atanhf.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of arctanh function. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/e_atanhl.S b/sysdeps/i386/fpu/e_atanhl.S index 82d5e98b84..0d0ce12be9 100644 --- a/sysdeps/i386/fpu/e_atanhl.S +++ b/sysdeps/i386/fpu/e_atanhl.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of arctanh function. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/e_hypot.S b/sysdeps/i386/fpu/e_hypot.S index bae6a5952d..36290b0b45 100644 --- a/sysdeps/i386/fpu/e_hypot.S +++ b/sysdeps/i386/fpu/e_hypot.S @@ -1,5 +1,5 @@ /* Compute the hypothenuse of X and Y. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/i386/fpu/e_hypotf.S b/sysdeps/i386/fpu/e_hypotf.S index 238850dbbd..adfb818fa4 100644 --- a/sysdeps/i386/fpu/e_hypotf.S +++ b/sysdeps/i386/fpu/e_hypotf.S @@ -1,5 +1,5 @@ /* Compute the hypothenuse of X and Y. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/i386/fpu/e_pow.S b/sysdeps/i386/fpu/e_pow.S index 835c39b7bd..8b641bb401 100644 --- a/sysdeps/i386/fpu/e_pow.S +++ b/sysdeps/i386/fpu/e_pow.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of pow function. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/e_powf.S b/sysdeps/i386/fpu/e_powf.S index 90d3d0ca6a..89d30d8187 100644 --- a/sysdeps/i386/fpu/e_powf.S +++ b/sysdeps/i386/fpu/e_powf.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of pow function. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/e_powl.S b/sysdeps/i386/fpu/e_powl.S index 91e22c8a29..cc6dcd1a88 100644 --- a/sysdeps/i386/fpu/e_powl.S +++ b/sysdeps/i386/fpu/e_powl.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of pow function. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/fclrexcpt.c b/sysdeps/i386/fpu/fclrexcpt.c index ccb1b0678c..8e4d29f055 100644 --- a/sysdeps/i386/fpu/fclrexcpt.c +++ b/sysdeps/i386/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/fedisblxcpt.c b/sysdeps/i386/fpu/fedisblxcpt.c index 70d1e0cd17..b4e9c6c7a0 100644 --- a/sysdeps/i386/fpu/fedisblxcpt.c +++ b/sysdeps/i386/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/sysdeps/i386/fpu/feenablxcpt.c b/sysdeps/i386/fpu/feenablxcpt.c index 12535aacc9..14221fa215 100644 --- a/sysdeps/i386/fpu/feenablxcpt.c +++ b/sysdeps/i386/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/sysdeps/i386/fpu/fegetenv.c b/sysdeps/i386/fpu/fegetenv.c index c650f9fe05..8dbdb5787a 100644 --- a/sysdeps/i386/fpu/fegetenv.c +++ b/sysdeps/i386/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/fegetexcept.c b/sysdeps/i386/fpu/fegetexcept.c index 3b945f943f..998eb7aa88 100644 --- a/sysdeps/i386/fpu/fegetexcept.c +++ b/sysdeps/i386/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get enabled floating-point exceptions. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. diff --git a/sysdeps/i386/fpu/fegetround.c b/sysdeps/i386/fpu/fegetround.c index cd96ae99d3..27b9ac338a 100644 --- a/sysdeps/i386/fpu/fegetround.c +++ b/sysdeps/i386/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/feholdexcpt.c b/sysdeps/i386/fpu/feholdexcpt.c index 4bce904790..d475ca850c 100644 --- a/sysdeps/i386/fpu/feholdexcpt.c +++ b/sysdeps/i386/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/fesetenv.c b/sysdeps/i386/fpu/fesetenv.c index 94178e13c9..95b2f0a1ab 100644 --- a/sysdeps/i386/fpu/fesetenv.c +++ b/sysdeps/i386/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/fesetround.c b/sysdeps/i386/fpu/fesetround.c index bcb47f6415..73645dd8e6 100644 --- a/sysdeps/i386/fpu/fesetround.c +++ b/sysdeps/i386/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/feupdateenv.c b/sysdeps/i386/fpu/feupdateenv.c index b2a810add3..d557f11464 100644 --- a/sysdeps/i386/fpu/feupdateenv.c +++ b/sysdeps/i386/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/fgetexcptflg.c b/sysdeps/i386/fpu/fgetexcptflg.c index 1a17368b4c..faa5926915 100644 --- a/sysdeps/i386/fpu/fgetexcptflg.c +++ b/sysdeps/i386/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/fraiseexcpt.c b/sysdeps/i386/fpu/fraiseexcpt.c index c359e5e5a5..076477fc5d 100644 --- a/sysdeps/i386/fpu/fraiseexcpt.c +++ b/sysdeps/i386/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/fsetexcptflg.c b/sysdeps/i386/fpu/fsetexcptflg.c index 0c328272d7..73e358bab6 100644 --- a/sysdeps/i386/fpu/fsetexcptflg.c +++ b/sysdeps/i386/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/ftestexcept.c b/sysdeps/i386/fpu/ftestexcept.c index 51d99bdcd3..61696bb0a0 100644 --- a/sysdeps/i386/fpu/ftestexcept.c +++ b/sysdeps/i386/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/math-tests.h b/sysdeps/i386/fpu/math-tests.h index 2245fc9012..46a5fd0251 100644 --- a/sysdeps/i386/fpu/math-tests.h +++ b/sysdeps/i386/fpu/math-tests.h @@ -1,5 +1,5 @@ /* Configuration for math tests. 32-bit x86 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/fpu/s_asinh.S b/sysdeps/i386/fpu/s_asinh.S index fdd59bb271..729e50ecd0 100644 --- a/sysdeps/i386/fpu/s_asinh.S +++ b/sysdeps/i386/fpu/s_asinh.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of arcsinh. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/s_asinhf.S b/sysdeps/i386/fpu/s_asinhf.S index 5b8ecb4883..c2a1114341 100644 --- a/sysdeps/i386/fpu/s_asinhf.S +++ b/sysdeps/i386/fpu/s_asinhf.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of arcsinh. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/s_asinhl.S b/sysdeps/i386/fpu/s_asinhl.S index 759af3d684..557613e65e 100644 --- a/sysdeps/i386/fpu/s_asinhl.S +++ b/sysdeps/i386/fpu/s_asinhl.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of arcsinh. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/fpu/s_cbrt.S b/sysdeps/i386/fpu/s_cbrt.S index 88bdfd5377..df62268dc7 100644 --- a/sysdeps/i386/fpu/s_cbrt.S +++ b/sysdeps/i386/fpu/s_cbrt.S @@ -1,5 +1,5 @@ /* Compute cubic root of double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Dirk Alboth and Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_cbrtf.S b/sysdeps/i386/fpu/s_cbrtf.S index a6b034425e..7393cccaae 100644 --- a/sysdeps/i386/fpu/s_cbrtf.S +++ b/sysdeps/i386/fpu/s_cbrtf.S @@ -1,5 +1,5 @@ /* Compute cubic root of float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Dirk Alboth and Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_cbrtl.S b/sysdeps/i386/fpu/s_cbrtl.S index 456d206a05..ef068da554 100644 --- a/sysdeps/i386/fpu/s_cbrtl.S +++ b/sysdeps/i386/fpu/s_cbrtl.S @@ -1,5 +1,5 @@ /* Compute cubic root of long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Dirk Alboth and Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_expm1.S b/sysdeps/i386/fpu/s_expm1.S index 398055276e..36f8214c0b 100644 --- a/sysdeps/i386/fpu/s_expm1.S +++ b/sysdeps/i386/fpu/s_expm1.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of exp(x)-1. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. Based on code by John C. Bowman . diff --git a/sysdeps/i386/fpu/s_expm1f.S b/sysdeps/i386/fpu/s_expm1f.S index e5e52a08f3..1f191c576a 100644 --- a/sysdeps/i386/fpu/s_expm1f.S +++ b/sysdeps/i386/fpu/s_expm1f.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of exp(x)-1. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. Based on code by John C. Bowman . diff --git a/sysdeps/i386/fpu/s_fdim.S b/sysdeps/i386/fpu/s_fdim.S index 40d3c4cb51..b16fae39b3 100644 --- a/sysdeps/i386/fpu/s_fdim.S +++ b/sysdeps/i386/fpu/s_fdim.S @@ -1,5 +1,5 @@ /* Compute positive difference. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_fdimf.S b/sysdeps/i386/fpu/s_fdimf.S index 987f62860e..97f5d60dd0 100644 --- a/sysdeps/i386/fpu/s_fdimf.S +++ b/sysdeps/i386/fpu/s_fdimf.S @@ -1,5 +1,5 @@ /* Compute positive difference. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_fdiml.S b/sysdeps/i386/fpu/s_fdiml.S index da6d62b0f0..b904b8e8c7 100644 --- a/sysdeps/i386/fpu/s_fdiml.S +++ b/sysdeps/i386/fpu/s_fdiml.S @@ -1,5 +1,5 @@ /* Compute positive difference. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_fmax.S b/sysdeps/i386/fpu/s_fmax.S index c840b03f21..0b0f79f80c 100644 --- a/sysdeps/i386/fpu/s_fmax.S +++ b/sysdeps/i386/fpu/s_fmax.S @@ -1,5 +1,5 @@ /* Compute maximum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_fmaxf.S b/sysdeps/i386/fpu/s_fmaxf.S index af3ae66750..66083298f8 100644 --- a/sysdeps/i386/fpu/s_fmaxf.S +++ b/sysdeps/i386/fpu/s_fmaxf.S @@ -1,5 +1,5 @@ /* Compute maximum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_fmaxl.S b/sysdeps/i386/fpu/s_fmaxl.S index bf510d50d2..ab63edfc2a 100644 --- a/sysdeps/i386/fpu/s_fmaxl.S +++ b/sysdeps/i386/fpu/s_fmaxl.S @@ -1,5 +1,5 @@ /* Compute maximum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_fmin.S b/sysdeps/i386/fpu/s_fmin.S index a8942bf857..75e07aa987 100644 --- a/sysdeps/i386/fpu/s_fmin.S +++ b/sysdeps/i386/fpu/s_fmin.S @@ -1,5 +1,5 @@ /* Compute minimum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_fminf.S b/sysdeps/i386/fpu/s_fminf.S index 04d6495770..6e774fa0ec 100644 --- a/sysdeps/i386/fpu/s_fminf.S +++ b/sysdeps/i386/fpu/s_fminf.S @@ -1,5 +1,5 @@ /* Compute minimum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_fminl.S b/sysdeps/i386/fpu/s_fminl.S index 470a084c58..ed8801eb01 100644 --- a/sysdeps/i386/fpu/s_fminl.S +++ b/sysdeps/i386/fpu/s_fminl.S @@ -1,5 +1,5 @@ /* Compute minimum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_fpclassifyl.c b/sysdeps/i386/fpu/s_fpclassifyl.c index fa60a43c6d..d66fcf7cdb 100644 --- a/sysdeps/i386/fpu/s_fpclassifyl.c +++ b/sysdeps/i386/fpu/s_fpclassifyl.c @@ -1,5 +1,5 @@ /* Return classification value corresponding to argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_frexp.S b/sysdeps/i386/fpu/s_frexp.S index 037019e91c..5768083831 100644 --- a/sysdeps/i386/fpu/s_frexp.S +++ b/sysdeps/i386/fpu/s_frexp.S @@ -1,5 +1,5 @@ /* ix87 specific frexp implementation for double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_frexpf.S b/sysdeps/i386/fpu/s_frexpf.S index f8d903d778..cfdf28e8ed 100644 --- a/sysdeps/i386/fpu/s_frexpf.S +++ b/sysdeps/i386/fpu/s_frexpf.S @@ -1,5 +1,5 @@ /* ix87 specific frexp implementation for float. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_frexpl.S b/sysdeps/i386/fpu/s_frexpl.S index e32b4d5a10..dc819cc79c 100644 --- a/sysdeps/i386/fpu/s_frexpl.S +++ b/sysdeps/i386/fpu/s_frexpl.S @@ -1,5 +1,5 @@ /* ix87 specific frexp implementation for long double. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_llrint.S b/sysdeps/i386/fpu/s_llrint.S index b5c83da6b1..d9333f52ce 100644 --- a/sysdeps/i386/fpu/s_llrint.S +++ b/sysdeps/i386/fpu/s_llrint.S @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_llrintf.S b/sysdeps/i386/fpu/s_llrintf.S index 5a6ad98003..26a9ac4b91 100644 --- a/sysdeps/i386/fpu/s_llrintf.S +++ b/sysdeps/i386/fpu/s_llrintf.S @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_llrintl.S b/sysdeps/i386/fpu/s_llrintl.S index 355b5d3d63..55ce482810 100644 --- a/sysdeps/i386/fpu/s_llrintl.S +++ b/sysdeps/i386/fpu/s_llrintl.S @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_lrint.S b/sysdeps/i386/fpu/s_lrint.S index 6dd119cc3b..0de8fcfb4b 100644 --- a/sysdeps/i386/fpu/s_lrint.S +++ b/sysdeps/i386/fpu/s_lrint.S @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_lrintf.S b/sysdeps/i386/fpu/s_lrintf.S index 6fdc12c7be..602adfd752 100644 --- a/sysdeps/i386/fpu/s_lrintf.S +++ b/sysdeps/i386/fpu/s_lrintf.S @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_lrintl.S b/sysdeps/i386/fpu/s_lrintl.S index 46806e8cd9..fb2ab36740 100644 --- a/sysdeps/i386/fpu/s_lrintl.S +++ b/sysdeps/i386/fpu/s_lrintl.S @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_trunc.S b/sysdeps/i386/fpu/s_trunc.S index 1f4fd652f1..5a148643e3 100644 --- a/sysdeps/i386/fpu/s_trunc.S +++ b/sysdeps/i386/fpu/s_trunc.S @@ -1,5 +1,5 @@ /* Truncate double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_truncf.S b/sysdeps/i386/fpu/s_truncf.S index e3b22c3210..d3b9385bfb 100644 --- a/sysdeps/i386/fpu/s_truncf.S +++ b/sysdeps/i386/fpu/s_truncf.S @@ -1,5 +1,5 @@ /* Truncate float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/fpu/s_truncl.S b/sysdeps/i386/fpu/s_truncl.S index 64e2e62758..4bef0f478a 100644 --- a/sysdeps/i386/fpu/s_truncl.S +++ b/sysdeps/i386/fpu/s_truncl.S @@ -1,5 +1,5 @@ /* Truncate long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/gccframe.h b/sysdeps/i386/gccframe.h index bba57c4a2e..05861c8441 100644 --- a/sysdeps/i386/gccframe.h +++ b/sysdeps/i386/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. i386 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/gmp-mparam.h b/sysdeps/i386/gmp-mparam.h index dc0ff5bdf8..2414529280 100644 --- a/sysdeps/i386/gmp-mparam.h +++ b/sysdeps/i386/gmp-mparam.h @@ -1,6 +1,6 @@ /* gmp-mparam.h -- Compiler/machine parameter header file. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/sysdeps/i386/htonl.S b/sysdeps/i386/htonl.S index 5a7e16ac3a..ec974c7169 100644 --- a/sysdeps/i386/htonl.S +++ b/sysdeps/i386/htonl.S @@ -1,5 +1,5 @@ /* Change byte order in word. For Intel 80386. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/htons.S b/sysdeps/i386/htons.S index 255acf611e..f1f3b361dc 100644 --- a/sysdeps/i386/htons.S +++ b/sysdeps/i386/htons.S @@ -1,5 +1,5 @@ /* Change byte order in word. For Intel 80x86, x >= 3. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i386-mcount.S b/sysdeps/i386/i386-mcount.S index 5651368449..d75dc32fa7 100644 --- a/sysdeps/i386/i386-mcount.S +++ b/sysdeps/i386/i386-mcount.S @@ -1,5 +1,5 @@ /* i386-specific implemetation of profiling support. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i486/bits/atomic.h b/sysdeps/i386/i486/bits/atomic.h index dc36dc65c7..76e0e8e2e3 100644 --- a/sysdeps/i386/i486/bits/atomic.h +++ b/sysdeps/i386/i486/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/sysdeps/i386/i486/htonl.S b/sysdeps/i386/i486/htonl.S index b4989f0775..3d6304c830 100644 --- a/sysdeps/i386/i486/htonl.S +++ b/sysdeps/i386/i486/htonl.S @@ -1,5 +1,5 @@ /* Change byte order in word. For Intel 80x86, x >= 4. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i486/strcat.S b/sysdeps/i386/i486/strcat.S index 7d45862a2a..aa8539d95a 100644 --- a/sysdeps/i386/i486/strcat.S +++ b/sysdeps/i386/i486/strcat.S @@ -1,6 +1,6 @@ /* strcat(dest, src) -- Append SRC on the end of DEST. For Intel 80x86, x>=4. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . Optimised a little by Alan Modra diff --git a/sysdeps/i386/i486/string-inlines.c b/sysdeps/i386/i486/string-inlines.c index 65fa298d8f..6348f151bd 100644 --- a/sysdeps/i386/i486/string-inlines.c +++ b/sysdeps/i386/i486/string-inlines.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i486/strlen.S b/sysdeps/i386/i486/strlen.S index 67bee4eb2b..4592f73b3d 100644 --- a/sysdeps/i386/i486/strlen.S +++ b/sysdeps/i386/i486/strlen.S @@ -1,6 +1,6 @@ /* strlen(str) -- determine the length of the string STR. Optimized for Intel 80x86, x>=4. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper . This file is part of the GNU C Library. diff --git a/sysdeps/i386/i586/add_n.S b/sysdeps/i386/i586/add_n.S index 2d6161fa92..0459046d93 100644 --- a/sysdeps/i386/i586/add_n.S +++ b/sysdeps/i386/i586/add_n.S @@ -1,6 +1,6 @@ /* Pentium __mpn_add_n -- Add two limb vectors of the same length > 0 and store sum in a third limb vector. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/i586/addmul_1.S b/sysdeps/i386/i586/addmul_1.S index e18e405306..a75c95041f 100644 --- a/sysdeps/i386/i586/addmul_1.S +++ b/sysdeps/i386/i586/addmul_1.S @@ -1,6 +1,6 @@ /* Pentium __mpn_addmul_1 -- Multiply a limb vector with a limb and add the result to a second limb vector. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/i586/lshift.S b/sysdeps/i386/i586/lshift.S index cda3aecef4..4a77f9e785 100644 --- a/sysdeps/i386/i586/lshift.S +++ b/sysdeps/i386/i586/lshift.S @@ -1,5 +1,5 @@ /* Pentium optimized __mpn_lshift -- - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i586/memcopy.h b/sysdeps/i386/i586/memcopy.h index 887b1f78f9..972258b516 100644 --- a/sysdeps/i386/i586/memcopy.h +++ b/sysdeps/i386/i586/memcopy.h @@ -1,5 +1,5 @@ /* memcopy.h -- definitions for memory copy functions. Pentium version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. Contributed by Torbjorn Granlund (tege@sics.se). This file is part of the GNU C Library. diff --git a/sysdeps/i386/i586/memcpy.S b/sysdeps/i386/i586/memcpy.S index 49f165241c..edd9f08723 100644 --- a/sysdeps/i386/i586/memcpy.S +++ b/sysdeps/i386/i586/memcpy.S @@ -1,5 +1,5 @@ /* Highly optimized version for i586. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i586/memset.S b/sysdeps/i386/i586/memset.S index c194b102d7..910d7bbb99 100644 --- a/sysdeps/i386/i586/memset.S +++ b/sysdeps/i386/i586/memset.S @@ -1,6 +1,6 @@ /* memset/bzero -- set memory area to CH/0 Highly optimized version for ix86, x>=5. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund, diff --git a/sysdeps/i386/i586/mul_1.S b/sysdeps/i386/i586/mul_1.S index f5bbea2b58..61a18fda7e 100644 --- a/sysdeps/i386/i586/mul_1.S +++ b/sysdeps/i386/i586/mul_1.S @@ -1,6 +1,6 @@ /* Pentium __mpn_mul_1 -- Multiply a limb vector with a limb and store the result in a second limb vector. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/i586/rshift.S b/sysdeps/i386/i586/rshift.S index 37eff12f3c..b108b479de 100644 --- a/sysdeps/i386/i586/rshift.S +++ b/sysdeps/i386/i586/rshift.S @@ -1,5 +1,5 @@ /* Pentium optimized __mpn_rshift -- - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/i586/strchr.S b/sysdeps/i386/i586/strchr.S index 648d52830d..6095a18407 100644 --- a/sysdeps/i386/i586/strchr.S +++ b/sysdeps/i386/i586/strchr.S @@ -1,6 +1,6 @@ /* Find character CH in a NUL terminated string. Highly optimized version for ix85, x>=5. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, . diff --git a/sysdeps/i386/i586/strcpy.S b/sysdeps/i386/i586/strcpy.S index c940369342..b061491532 100644 --- a/sysdeps/i386/i586/strcpy.S +++ b/sysdeps/i386/i586/strcpy.S @@ -1,5 +1,5 @@ /* strcpy/stpcpy implementation for i586. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i586/strlen.S b/sysdeps/i386/i586/strlen.S index b50fffa1fb..a1fa464957 100644 --- a/sysdeps/i386/i586/strlen.S +++ b/sysdeps/i386/i586/strlen.S @@ -1,6 +1,6 @@ /* strlen -- Compute length of NUL terminated string. Highly optimized version for ix86, x>=5. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, . diff --git a/sysdeps/i386/i586/sub_n.S b/sysdeps/i386/i586/sub_n.S index 3b40ff3e42..d0ae56ab5b 100644 --- a/sysdeps/i386/i586/sub_n.S +++ b/sysdeps/i386/i586/sub_n.S @@ -1,6 +1,6 @@ /* Pentium __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and store difference in a third limb vector. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/i586/submul_1.S b/sysdeps/i386/i586/submul_1.S index 97a9048d9f..982ea215eb 100644 --- a/sysdeps/i386/i586/submul_1.S +++ b/sysdeps/i386/i586/submul_1.S @@ -1,6 +1,6 @@ /* Pentium __mpn_submul_1 -- Multiply a limb vector with a limb and subtract the result from a second limb vector. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/i686/add_n.S b/sysdeps/i386/i686/add_n.S index 1e2cdc550c..f6113b38d5 100644 --- a/sysdeps/i386/i686/add_n.S +++ b/sysdeps/i386/i686/add_n.S @@ -1,6 +1,6 @@ /* Add two limb vectors of the same length > 0 and store sum in a third limb vector. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/i686/dl-hash.h b/sysdeps/i386/i686/dl-hash.h index 3efaa2e08d..ac04459821 100644 --- a/sysdeps/i386/i686/dl-hash.h +++ b/sysdeps/i386/i686/dl-hash.h @@ -1,5 +1,5 @@ /* Compute hash alue for given string according to ELF standard. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/i386/i686/ffs.c b/sysdeps/i386/i686/ffs.c index cde1c99566..73b68c889d 100644 --- a/sysdeps/i386/i686/ffs.c +++ b/sysdeps/i386/i686/ffs.c @@ -1,7 +1,7 @@ /* ffs -- find first set bit in a word, counted from least significant end. For Intel 80x86, x>=6. This file is part of the GNU C Library. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper . The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/fpu/multiarch/e_expf-ia32.S b/sysdeps/i386/i686/fpu/multiarch/e_expf-ia32.S index 9a21cc9b09..af925bcd1f 100644 --- a/sysdeps/i386/i686/fpu/multiarch/e_expf-ia32.S +++ b/sysdeps/i386/i686/fpu/multiarch/e_expf-ia32.S @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S b/sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S index 41f7fbe148..046e366878 100644 --- a/sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S +++ b/sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S @@ -1,5 +1,5 @@ /* SSE2 version of __ieee754_expf and __expf_finite - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/fpu/multiarch/e_expf.c b/sysdeps/i386/i686/fpu/multiarch/e_expf.c index 8438054f73..f97620bd63 100644 --- a/sysdeps/i386/i686/fpu/multiarch/e_expf.c +++ b/sysdeps/i386/i686/fpu/multiarch/e_expf.c @@ -1,5 +1,5 @@ /* Multiple versions of expf - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S b/sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S index 8763e71b79..4b564bf801 100644 --- a/sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S +++ b/sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S @@ -1,5 +1,5 @@ /* Optimized with sse2 version of cosf - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/fpu/multiarch/s_cosf.c b/sysdeps/i386/i686/fpu/multiarch/s_cosf.c index b63ab3153d..4cc4594575 100644 --- a/sysdeps/i386/i686/fpu/multiarch/s_cosf.c +++ b/sysdeps/i386/i686/fpu/multiarch/s_cosf.c @@ -1,5 +1,5 @@ /* Multiple versions of cosf - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S b/sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S index e6138eff01..60d239bb0b 100644 --- a/sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S +++ b/sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S @@ -1,5 +1,5 @@ /* Optimized with sse2 version of sincosf - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/fpu/multiarch/s_sincosf.c b/sysdeps/i386/i686/fpu/multiarch/s_sincosf.c index 8e8346d905..18e887d801 100644 --- a/sysdeps/i386/i686/fpu/multiarch/s_sincosf.c +++ b/sysdeps/i386/i686/fpu/multiarch/s_sincosf.c @@ -1,5 +1,5 @@ /* Multiple versions of sincosf - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S b/sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S index 4ff65a3f11..b9a24cf9d7 100644 --- a/sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S +++ b/sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S @@ -1,5 +1,5 @@ /* Optimized with sse2 version of sinf - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/fpu/multiarch/s_sinf.c b/sysdeps/i386/i686/fpu/multiarch/s_sinf.c index 490e5c22f3..0465edd502 100644 --- a/sysdeps/i386/i686/fpu/multiarch/s_sinf.c +++ b/sysdeps/i386/i686/fpu/multiarch/s_sinf.c @@ -1,5 +1,5 @@ /* Multiple versions of sinf - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/fpu/s_fdim.S b/sysdeps/i386/i686/fpu/s_fdim.S index c0e0354638..3d4b01f820 100644 --- a/sysdeps/i386/i686/fpu/s_fdim.S +++ b/sysdeps/i386/i686/fpu/s_fdim.S @@ -1,5 +1,5 @@ /* Compute positive difference. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i686/fpu/s_fdimf.S b/sysdeps/i386/i686/fpu/s_fdimf.S index 1b32efff1c..1310128438 100644 --- a/sysdeps/i386/i686/fpu/s_fdimf.S +++ b/sysdeps/i386/i686/fpu/s_fdimf.S @@ -1,5 +1,5 @@ /* Compute positive difference. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i686/fpu/s_fdiml.S b/sysdeps/i386/i686/fpu/s_fdiml.S index ab553285b1..b7b1d6d33f 100644 --- a/sysdeps/i386/i686/fpu/s_fdiml.S +++ b/sysdeps/i386/i686/fpu/s_fdiml.S @@ -1,5 +1,5 @@ /* Compute positive difference. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i686/fpu/s_fmax.S b/sysdeps/i386/i686/fpu/s_fmax.S index a668e67c28..e865ee01d9 100644 --- a/sysdeps/i386/i686/fpu/s_fmax.S +++ b/sysdeps/i386/i686/fpu/s_fmax.S @@ -1,5 +1,5 @@ /* Compute maximum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i686/fpu/s_fmaxf.S b/sysdeps/i386/i686/fpu/s_fmaxf.S index 818102072d..7f7ac28c68 100644 --- a/sysdeps/i386/i686/fpu/s_fmaxf.S +++ b/sysdeps/i386/i686/fpu/s_fmaxf.S @@ -1,5 +1,5 @@ /* Compute maximum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i686/fpu/s_fmaxl.S b/sysdeps/i386/i686/fpu/s_fmaxl.S index aaa07e7581..5281f39814 100644 --- a/sysdeps/i386/i686/fpu/s_fmaxl.S +++ b/sysdeps/i386/i686/fpu/s_fmaxl.S @@ -1,5 +1,5 @@ /* Compute maximum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i686/fpu/s_fmin.S b/sysdeps/i386/i686/fpu/s_fmin.S index 4bdeedeb52..a173d55fd3 100644 --- a/sysdeps/i386/i686/fpu/s_fmin.S +++ b/sysdeps/i386/i686/fpu/s_fmin.S @@ -1,5 +1,5 @@ /* Compute minimum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i686/fpu/s_fminf.S b/sysdeps/i386/i686/fpu/s_fminf.S index 8b103066bd..f5371b073b 100644 --- a/sysdeps/i386/i686/fpu/s_fminf.S +++ b/sysdeps/i386/i686/fpu/s_fminf.S @@ -1,5 +1,5 @@ /* Compute minimum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i686/fpu/s_fminl.S b/sysdeps/i386/i686/fpu/s_fminl.S index 0f95ecbcce..048c42349c 100644 --- a/sysdeps/i386/i686/fpu/s_fminl.S +++ b/sysdeps/i386/i686/fpu/s_fminl.S @@ -1,5 +1,5 @@ /* Compute minimum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/i686/hp-timing.c b/sysdeps/i386/i686/hp-timing.c index af64da2e3b..faa6dadd0a 100644 --- a/sysdeps/i386/i686/hp-timing.c +++ b/sysdeps/i386/i686/hp-timing.c @@ -1,5 +1,5 @@ /* Support for high precision, low overhead timing functions. i686 version. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/i386/i686/hp-timing.h b/sysdeps/i386/i686/hp-timing.h index 920d441359..4a2006e745 100644 --- a/sysdeps/i386/i686/hp-timing.h +++ b/sysdeps/i386/i686/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. i686 version. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/i386/i686/memcmp.S b/sysdeps/i386/i686/memcmp.S index b8091a60ec..612e37dcb0 100644 --- a/sysdeps/i386/i686/memcmp.S +++ b/sysdeps/i386/i686/memcmp.S @@ -1,5 +1,5 @@ /* Compare two memory blocks for differences in the first COUNT bytes. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/memcpy.S b/sysdeps/i386/i686/memcpy.S index bb05c3d0b4..17e815e901 100644 --- a/sysdeps/i386/i686/memcpy.S +++ b/sysdeps/i386/i686/memcpy.S @@ -1,7 +1,7 @@ /* Copy memory block and return pointer to beginning of destination block For Intel 80x86, x>=6. This file is part of the GNU C Library. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1999. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/memcpy_chk.S b/sysdeps/i386/i686/memcpy_chk.S index f1b50d32ba..b320e5c1a8 100644 --- a/sysdeps/i386/i686/memcpy_chk.S +++ b/sysdeps/i386/i686/memcpy_chk.S @@ -1,5 +1,5 @@ /* Checking memcpy for i686. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/memmove.S b/sysdeps/i386/i686/memmove.S index 8c53d4a9a9..d9017388f9 100644 --- a/sysdeps/i386/i686/memmove.S +++ b/sysdeps/i386/i686/memmove.S @@ -1,7 +1,7 @@ /* Copy memory block and return pointer to beginning of destination block For Intel 80x86, x>=6. This file is part of the GNU C Library. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 2003. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/memmove_chk.S b/sysdeps/i386/i686/memmove_chk.S index 97eb125ff9..9b1ae23318 100644 --- a/sysdeps/i386/i686/memmove_chk.S +++ b/sysdeps/i386/i686/memmove_chk.S @@ -1,5 +1,5 @@ /* Checking memmove for x86-64. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/mempcpy.S b/sysdeps/i386/i686/mempcpy.S index 97fd4966a9..ec4b42b8d7 100644 --- a/sysdeps/i386/i686/mempcpy.S +++ b/sysdeps/i386/i686/mempcpy.S @@ -1,7 +1,7 @@ /* Copy memory block and return pointer to following byte. For Intel 80x86, x>=6. This file is part of the GNU C Library. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1998. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/mempcpy_chk.S b/sysdeps/i386/i686/mempcpy_chk.S index b9a02b9038..7bbb9f28f1 100644 --- a/sysdeps/i386/i686/mempcpy_chk.S +++ b/sysdeps/i386/i686/mempcpy_chk.S @@ -1,5 +1,5 @@ /* Checking mempcpy for x86-64. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/memset.S b/sysdeps/i386/i686/memset.S index aed79a8aa9..72d21fa92d 100644 --- a/sysdeps/i386/i686/memset.S +++ b/sysdeps/i386/i686/memset.S @@ -1,6 +1,6 @@ /* memset/bzero -- set memory area to CH/0 Highly optimized version for ix86, x>=6. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/sysdeps/i386/i686/memset_chk.S b/sysdeps/i386/i686/memset_chk.S index 962d427fc5..6211f75426 100644 --- a/sysdeps/i386/i686/memset_chk.S +++ b/sysdeps/i386/i686/memset_chk.S @@ -1,5 +1,5 @@ /* Checking memset for i686. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/memusage.h b/sysdeps/i386/i686/memusage.h index 9768cdcdd6..7191434272 100644 --- a/sysdeps/i386/i686/memusage.h +++ b/sysdeps/i386/i686/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/bcopy.S b/sysdeps/i386/i686/multiarch/bcopy.S index f8e40aff94..4f50035d0a 100644 --- a/sysdeps/i386/i686/multiarch/bcopy.S +++ b/sysdeps/i386/i686/multiarch/bcopy.S @@ -1,6 +1,6 @@ /* Multiple versions of bcopy All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/bzero.S b/sysdeps/i386/i686/multiarch/bzero.S index 03a7cc959a..cd59940f9c 100644 --- a/sysdeps/i386/i686/multiarch/bzero.S +++ b/sysdeps/i386/i686/multiarch/bzero.S @@ -1,6 +1,6 @@ /* Multiple versions of bzero All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/ifunc-impl-list.c b/sysdeps/i386/i686/multiarch/ifunc-impl-list.c index 3a8d094c89..e47577690d 100644 --- a/sysdeps/i386/i686/multiarch/ifunc-impl-list.c +++ b/sysdeps/i386/i686/multiarch/ifunc-impl-list.c @@ -1,5 +1,5 @@ /* Enumerate available IFUNC implementations of a function. i686 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S b/sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S index d3641778f3..8f5ccca195 100644 --- a/sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S @@ -1,5 +1,5 @@ /* Optimized memchr with sse2 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memchr-sse2.S b/sysdeps/i386/i686/multiarch/memchr-sse2.S index eae918034d..8d2c159cea 100644 --- a/sysdeps/i386/i686/multiarch/memchr-sse2.S +++ b/sysdeps/i386/i686/multiarch/memchr-sse2.S @@ -1,5 +1,5 @@ /* Optimized memchr with sse2 without bsf - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memchr.S b/sysdeps/i386/i686/multiarch/memchr.S index 77c9f31b67..1bdf0e7968 100644 --- a/sysdeps/i386/i686/multiarch/memchr.S +++ b/sysdeps/i386/i686/multiarch/memchr.S @@ -1,6 +1,6 @@ /* Multiple versions of memchr All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memcmp-sse4.S b/sysdeps/i386/i686/multiarch/memcmp-sse4.S index 2984a374cf..a23861556a 100644 --- a/sysdeps/i386/i686/multiarch/memcmp-sse4.S +++ b/sysdeps/i386/i686/multiarch/memcmp-sse4.S @@ -1,5 +1,5 @@ /* memcmp with SSE4.2, wmemcmp with SSE4.2 - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memcmp-ssse3.S b/sysdeps/i386/i686/multiarch/memcmp-ssse3.S index dccaff8381..4a0bd6727a 100644 --- a/sysdeps/i386/i686/multiarch/memcmp-ssse3.S +++ b/sysdeps/i386/i686/multiarch/memcmp-ssse3.S @@ -1,5 +1,5 @@ /* memcmp with SSSE3, wmemcmp with SSSE3 - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memcmp.S b/sysdeps/i386/i686/multiarch/memcmp.S index 73d136390e..e4d56fa28f 100644 --- a/sysdeps/i386/i686/multiarch/memcmp.S +++ b/sysdeps/i386/i686/multiarch/memcmp.S @@ -1,6 +1,6 @@ /* Multiple versions of memcmp All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S b/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S index bb66f50db2..c4cdcfdbe3 100644 --- a/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S +++ b/sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S @@ -1,5 +1,5 @@ /* memcpy with SSSE3 and REP string. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memcpy-ssse3.S b/sysdeps/i386/i686/multiarch/memcpy-ssse3.S index 07841688d3..c0d718b8aa 100644 --- a/sysdeps/i386/i686/multiarch/memcpy-ssse3.S +++ b/sysdeps/i386/i686/multiarch/memcpy-ssse3.S @@ -1,5 +1,5 @@ /* memcpy with SSSE3 - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memcpy.S b/sysdeps/i386/i686/multiarch/memcpy.S index 9a6cd75669..f583482bd7 100644 --- a/sysdeps/i386/i686/multiarch/memcpy.S +++ b/sysdeps/i386/i686/multiarch/memcpy.S @@ -1,6 +1,6 @@ /* Multiple versions of memcpy All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memcpy_chk.S b/sysdeps/i386/i686/multiarch/memcpy_chk.S index f66ecfe16b..bf93b68fa4 100644 --- a/sysdeps/i386/i686/multiarch/memcpy_chk.S +++ b/sysdeps/i386/i686/multiarch/memcpy_chk.S @@ -1,6 +1,6 @@ /* Multiple versions of __memcpy_chk All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memmove.S b/sysdeps/i386/i686/multiarch/memmove.S index 2d20dd9409..90cf16770f 100644 --- a/sysdeps/i386/i686/multiarch/memmove.S +++ b/sysdeps/i386/i686/multiarch/memmove.S @@ -1,6 +1,6 @@ /* Multiple versions of memmove All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memmove_chk.S b/sysdeps/i386/i686/multiarch/memmove_chk.S index 9552640d52..182aeb3d46 100644 --- a/sysdeps/i386/i686/multiarch/memmove_chk.S +++ b/sysdeps/i386/i686/multiarch/memmove_chk.S @@ -1,6 +1,6 @@ /* Multiple versions of __memmove_chk All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/mempcpy.S b/sysdeps/i386/i686/multiarch/mempcpy.S index 83bd1f2075..56b50bb2fc 100644 --- a/sysdeps/i386/i686/multiarch/mempcpy.S +++ b/sysdeps/i386/i686/multiarch/mempcpy.S @@ -1,6 +1,6 @@ /* Multiple versions of mempcpy All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/mempcpy_chk.S b/sysdeps/i386/i686/multiarch/mempcpy_chk.S index 7bd4eb1406..a76341c0e3 100644 --- a/sysdeps/i386/i686/multiarch/mempcpy_chk.S +++ b/sysdeps/i386/i686/multiarch/mempcpy_chk.S @@ -1,6 +1,6 @@ /* Multiple versions of __mempcpy_chk All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S b/sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S index c5c3e97f0f..303ef9dd62 100644 --- a/sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S @@ -1,5 +1,5 @@ /* Optimized memrchr with sse2 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memrchr-sse2.S b/sysdeps/i386/i686/multiarch/memrchr-sse2.S index f8d5d7703a..90ba738498 100644 --- a/sysdeps/i386/i686/multiarch/memrchr-sse2.S +++ b/sysdeps/i386/i686/multiarch/memrchr-sse2.S @@ -1,5 +1,5 @@ /* Optimized memrchr with sse2 without bsf - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memrchr.S b/sysdeps/i386/i686/multiarch/memrchr.S index 9fb5d0b269..0dff8b6e80 100644 --- a/sysdeps/i386/i686/multiarch/memrchr.S +++ b/sysdeps/i386/i686/multiarch/memrchr.S @@ -1,6 +1,6 @@ /* Multiple versions of memrchr All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memset-sse2-rep.S b/sysdeps/i386/i686/multiarch/memset-sse2-rep.S index bcea296a9a..8655a8c5b4 100644 --- a/sysdeps/i386/i686/multiarch/memset-sse2-rep.S +++ b/sysdeps/i386/i686/multiarch/memset-sse2-rep.S @@ -1,5 +1,5 @@ /* memset with SSE2 and REP string. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memset-sse2.S b/sysdeps/i386/i686/multiarch/memset-sse2.S index 36bca84a78..cd94e4e7b9 100644 --- a/sysdeps/i386/i686/multiarch/memset-sse2.S +++ b/sysdeps/i386/i686/multiarch/memset-sse2.S @@ -1,5 +1,5 @@ /* memset with SSE2 - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memset.S b/sysdeps/i386/i686/multiarch/memset.S index 5b517c7c00..ecec1ead46 100644 --- a/sysdeps/i386/i686/multiarch/memset.S +++ b/sysdeps/i386/i686/multiarch/memset.S @@ -1,6 +1,6 @@ /* Multiple versions of memset All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/memset_chk.S b/sysdeps/i386/i686/multiarch/memset_chk.S index ef1df5a179..92c6099590 100644 --- a/sysdeps/i386/i686/multiarch/memset_chk.S +++ b/sysdeps/i386/i686/multiarch/memset_chk.S @@ -1,6 +1,6 @@ /* Multiple versions of __memset_chk All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/rawmemchr.S b/sysdeps/i386/i686/multiarch/rawmemchr.S index e84b7578a6..01850cf904 100644 --- a/sysdeps/i386/i686/multiarch/rawmemchr.S +++ b/sysdeps/i386/i686/multiarch/rawmemchr.S @@ -1,6 +1,6 @@ /* Multiple versions of rawmemchr All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/s_fma-fma.c b/sysdeps/i386/i686/multiarch/s_fma-fma.c index 227a1c4daf..dcf1ee5ba3 100644 --- a/sysdeps/i386/i686/multiarch/s_fma-fma.c +++ b/sysdeps/i386/i686/multiarch/s_fma-fma.c @@ -1,5 +1,5 @@ /* FMA version of fma. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/s_fma.c b/sysdeps/i386/i686/multiarch/s_fma.c index 15d57b1163..49680e4937 100644 --- a/sysdeps/i386/i686/multiarch/s_fma.c +++ b/sysdeps/i386/i686/multiarch/s_fma.c @@ -1,5 +1,5 @@ /* Multiple versions of fma. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/s_fmaf-fma.c b/sysdeps/i386/i686/multiarch/s_fmaf-fma.c index e6e9fd1e14..42722acfa9 100644 --- a/sysdeps/i386/i686/multiarch/s_fmaf-fma.c +++ b/sysdeps/i386/i686/multiarch/s_fmaf-fma.c @@ -1,5 +1,5 @@ /* FMA version of fmaf. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/s_fmaf.c b/sysdeps/i386/i686/multiarch/s_fmaf.c index 6a0bee2020..638980ae7d 100644 --- a/sysdeps/i386/i686/multiarch/s_fmaf.c +++ b/sysdeps/i386/i686/multiarch/s_fmaf.c @@ -1,5 +1,5 @@ /* Multiple versions of fmaf. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strcasecmp.S b/sysdeps/i386/i686/multiarch/strcasecmp.S index 25de4daf47..4f2de4f37b 100644 --- a/sysdeps/i386/i686/multiarch/strcasecmp.S +++ b/sysdeps/i386/i686/multiarch/strcasecmp.S @@ -1,6 +1,6 @@ /* Entry point for multi-version x86 strcasecmp. All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strcat-sse2.S b/sysdeps/i386/i686/multiarch/strcat-sse2.S index 62d60cdb78..efd3f67a39 100644 --- a/sysdeps/i386/i686/multiarch/strcat-sse2.S +++ b/sysdeps/i386/i686/multiarch/strcat-sse2.S @@ -1,5 +1,5 @@ /* strcat with SSE2 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strcat-ssse3.S b/sysdeps/i386/i686/multiarch/strcat-ssse3.S index 13efdbf5f0..8527166f75 100644 --- a/sysdeps/i386/i686/multiarch/strcat-ssse3.S +++ b/sysdeps/i386/i686/multiarch/strcat-ssse3.S @@ -1,5 +1,5 @@ /* strcat with SSSE3 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strcat.S b/sysdeps/i386/i686/multiarch/strcat.S index e79c1b9815..598c3f0a58 100644 --- a/sysdeps/i386/i686/multiarch/strcat.S +++ b/sysdeps/i386/i686/multiarch/strcat.S @@ -1,6 +1,6 @@ /* Multiple versions of strcat All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S b/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S index 938d74d318..3357f53f56 100644 --- a/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S @@ -1,5 +1,5 @@ /* strchr with SSE2 with bsf - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strchr-sse2.S b/sysdeps/i386/i686/multiarch/strchr-sse2.S index 0847610859..e0f3a2edf4 100644 --- a/sysdeps/i386/i686/multiarch/strchr-sse2.S +++ b/sysdeps/i386/i686/multiarch/strchr-sse2.S @@ -1,5 +1,5 @@ /* strchr SSE2 without bsf - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strchr.S b/sysdeps/i386/i686/multiarch/strchr.S index 314bce8308..0fc4d8c293 100644 --- a/sysdeps/i386/i686/multiarch/strchr.S +++ b/sysdeps/i386/i686/multiarch/strchr.S @@ -1,6 +1,6 @@ /* Multiple versions of strchr All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strcmp-sse4.S b/sysdeps/i386/i686/multiarch/strcmp-sse4.S index 355ed4e674..42d308a923 100644 --- a/sysdeps/i386/i686/multiarch/strcmp-sse4.S +++ b/sysdeps/i386/i686/multiarch/strcmp-sse4.S @@ -1,5 +1,5 @@ /* strcmp with SSE4.2 - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strcmp-ssse3.S b/sysdeps/i386/i686/multiarch/strcmp-ssse3.S index 3eb304bca0..c3107e50ef 100644 --- a/sysdeps/i386/i686/multiarch/strcmp-ssse3.S +++ b/sysdeps/i386/i686/multiarch/strcmp-ssse3.S @@ -1,5 +1,5 @@ /* strcmp with SSSE3 - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strcmp.S b/sysdeps/i386/i686/multiarch/strcmp.S index 41dd3b3f1c..2ad6bf4212 100644 --- a/sysdeps/i386/i686/multiarch/strcmp.S +++ b/sysdeps/i386/i686/multiarch/strcmp.S @@ -1,6 +1,6 @@ /* Multiple versions of strcmp All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strcpy-sse2.S b/sysdeps/i386/i686/multiarch/strcpy-sse2.S index d942ac2852..cbe040caf8 100644 --- a/sysdeps/i386/i686/multiarch/strcpy-sse2.S +++ b/sysdeps/i386/i686/multiarch/strcpy-sse2.S @@ -1,5 +1,5 @@ /* strcpy with SSE2 and unaligned load - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strcpy-ssse3.S b/sysdeps/i386/i686/multiarch/strcpy-ssse3.S index 9a1d74dc03..2d67994816 100644 --- a/sysdeps/i386/i686/multiarch/strcpy-ssse3.S +++ b/sysdeps/i386/i686/multiarch/strcpy-ssse3.S @@ -1,5 +1,5 @@ /* strcpy with SSSE3 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strcpy.S b/sysdeps/i386/i686/multiarch/strcpy.S index 946f1d6ff6..f44ddf7ec4 100644 --- a/sysdeps/i386/i686/multiarch/strcpy.S +++ b/sysdeps/i386/i686/multiarch/strcpy.S @@ -1,6 +1,6 @@ /* Multiple versions of strcpy All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strcspn.S b/sysdeps/i386/i686/multiarch/strcspn.S index c2af6fb912..c35f4bfc3b 100644 --- a/sysdeps/i386/i686/multiarch/strcspn.S +++ b/sysdeps/i386/i686/multiarch/strcspn.S @@ -1,6 +1,6 @@ /* Multiple versions of strcspn All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S b/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S index 32db65cbd2..8f9b149de0 100644 --- a/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S @@ -1,5 +1,5 @@ /* strlen with SSE2 and BSF - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strlen-sse2.S b/sysdeps/i386/i686/multiarch/strlen-sse2.S index a4f2806cfe..20e82a6104 100644 --- a/sysdeps/i386/i686/multiarch/strlen-sse2.S +++ b/sysdeps/i386/i686/multiarch/strlen-sse2.S @@ -1,5 +1,5 @@ /* strlen with SSE2 - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strlen.S b/sysdeps/i386/i686/multiarch/strlen.S index ba2f4b5e45..5b262a2ef2 100644 --- a/sysdeps/i386/i686/multiarch/strlen.S +++ b/sysdeps/i386/i686/multiarch/strlen.S @@ -1,6 +1,6 @@ /* Multiple versions of strlen All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strncase.S b/sysdeps/i386/i686/multiarch/strncase.S index de97e1b1a2..9b4cfa063a 100644 --- a/sysdeps/i386/i686/multiarch/strncase.S +++ b/sysdeps/i386/i686/multiarch/strncase.S @@ -1,6 +1,6 @@ /* Entry point for multi-version x86 strncasecmp. All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/i686/multiarch/strnlen.S b/sysdeps/i386/i686/multiarch/strnlen.S index 1cdb5bf1ce..63357d7267 100644 --- a/sysdeps/i386/i686/multiarch/strnlen.S +++ b/sysdeps/i386/i686/multiarch/strnlen.S @@ -1,6 +1,6 @@ /* Multiple versions of strnlen All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S b/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S index e026c40683..622b9f2fe6 100644 --- a/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S +++ b/sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S @@ -1,5 +1,5 @@ /* strrchr with SSE2 with bsf and bsr - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strrchr-sse2.S b/sysdeps/i386/i686/multiarch/strrchr-sse2.S index 3420b2a696..1644d5d080 100644 --- a/sysdeps/i386/i686/multiarch/strrchr-sse2.S +++ b/sysdeps/i386/i686/multiarch/strrchr-sse2.S @@ -1,5 +1,5 @@ /* strrchr SSE2 without bsf and bsr - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strrchr.S b/sysdeps/i386/i686/multiarch/strrchr.S index f4ee866c93..323f3f49ca 100644 --- a/sysdeps/i386/i686/multiarch/strrchr.S +++ b/sysdeps/i386/i686/multiarch/strrchr.S @@ -1,6 +1,6 @@ /* Multiple versions of strrchr All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/strspn.S b/sysdeps/i386/i686/multiarch/strspn.S index 5925137028..703fc174b0 100644 --- a/sysdeps/i386/i686/multiarch/strspn.S +++ b/sysdeps/i386/i686/multiarch/strspn.S @@ -1,6 +1,6 @@ /* Multiple versions of strspn All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/wcschr-sse2.S b/sysdeps/i386/i686/multiarch/wcschr-sse2.S index 63101d9c9f..332bdb00be 100644 --- a/sysdeps/i386/i686/multiarch/wcschr-sse2.S +++ b/sysdeps/i386/i686/multiarch/wcschr-sse2.S @@ -1,5 +1,5 @@ /* wcschr with SSE2, without using bsf instructions - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/wcschr.S b/sysdeps/i386/i686/multiarch/wcschr.S index 2e900b9996..7622085984 100644 --- a/sysdeps/i386/i686/multiarch/wcschr.S +++ b/sysdeps/i386/i686/multiarch/wcschr.S @@ -1,6 +1,6 @@ /* Multiple versions of wcschr All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/wcscmp-sse2.S b/sysdeps/i386/i686/multiarch/wcscmp-sse2.S index 9b248c1073..926bdcf876 100644 --- a/sysdeps/i386/i686/multiarch/wcscmp-sse2.S +++ b/sysdeps/i386/i686/multiarch/wcscmp-sse2.S @@ -1,5 +1,5 @@ /* wcscmp with SSE2 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/wcscmp.S b/sysdeps/i386/i686/multiarch/wcscmp.S index f2321e1fbb..37dd07fa9e 100644 --- a/sysdeps/i386/i686/multiarch/wcscmp.S +++ b/sysdeps/i386/i686/multiarch/wcscmp.S @@ -1,6 +1,6 @@ /* Multiple versions of wcscmp All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/wcscpy-ssse3.S b/sysdeps/i386/i686/multiarch/wcscpy-ssse3.S index 47fb5164b3..f404252a61 100644 --- a/sysdeps/i386/i686/multiarch/wcscpy-ssse3.S +++ b/sysdeps/i386/i686/multiarch/wcscpy-ssse3.S @@ -1,5 +1,5 @@ /* wcscpy with SSSE3 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/wcscpy.S b/sysdeps/i386/i686/multiarch/wcscpy.S index 9ab4d1bb5a..54a432599f 100644 --- a/sysdeps/i386/i686/multiarch/wcscpy.S +++ b/sysdeps/i386/i686/multiarch/wcscpy.S @@ -1,6 +1,6 @@ /* Multiple versions of wcscpy All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/wcslen-sse2.S b/sysdeps/i386/i686/multiarch/wcslen-sse2.S index a92b92ffd3..8e94545c04 100644 --- a/sysdeps/i386/i686/multiarch/wcslen-sse2.S +++ b/sysdeps/i386/i686/multiarch/wcslen-sse2.S @@ -1,5 +1,5 @@ /* wcslen with SSE2 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/wcslen.S b/sysdeps/i386/i686/multiarch/wcslen.S index af9a16b354..ba97cc49d6 100644 --- a/sysdeps/i386/i686/multiarch/wcslen.S +++ b/sysdeps/i386/i686/multiarch/wcslen.S @@ -1,6 +1,6 @@ /* Multiple versions of wcslen All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/wcsrchr-sse2.S b/sysdeps/i386/i686/multiarch/wcsrchr-sse2.S index d31e48e43f..f6abd6b192 100644 --- a/sysdeps/i386/i686/multiarch/wcsrchr-sse2.S +++ b/sysdeps/i386/i686/multiarch/wcsrchr-sse2.S @@ -1,5 +1,5 @@ /* wcsrchr with SSE2, without using bsf instructions. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/wcsrchr.S b/sysdeps/i386/i686/multiarch/wcsrchr.S index 0e43c4775f..4d80b54f2e 100644 --- a/sysdeps/i386/i686/multiarch/wcsrchr.S +++ b/sysdeps/i386/i686/multiarch/wcsrchr.S @@ -1,6 +1,6 @@ /* Multiple versions of wcsrchr All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/multiarch/wmemcmp.S b/sysdeps/i386/i686/multiarch/wmemcmp.S index e99403864c..1b5a211982 100644 --- a/sysdeps/i386/i686/multiarch/wmemcmp.S +++ b/sysdeps/i386/i686/multiarch/wmemcmp.S @@ -1,6 +1,6 @@ /* Multiple versions of wmemcmp All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/i386/i686/strcmp.S b/sysdeps/i386/i686/strcmp.S index 6ca6220a02..24ed78328f 100644 --- a/sysdeps/i386/i686/strcmp.S +++ b/sysdeps/i386/i686/strcmp.S @@ -1,5 +1,5 @@ /* Highly optimized version for ix86, x>=6. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/sysdeps/i386/i686/strtok.S b/sysdeps/i386/i686/strtok.S index 8848faf4d9..6cb76dcb8c 100644 --- a/sysdeps/i386/i686/strtok.S +++ b/sysdeps/i386/i686/strtok.S @@ -1,6 +1,6 @@ /* strtok (str, delim) -- Return next DELIM separated token from STR. For Intel 80686. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/i386/i686/tst-stack-align.h b/sysdeps/i386/i686/tst-stack-align.h index 28fa18a925..ddfa12cf4e 100644 --- a/sysdeps/i386/i686/tst-stack-align.h +++ b/sysdeps/i386/i686/tst-stack-align.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/jmpbuf-offsets.h b/sysdeps/i386/jmpbuf-offsets.h index 2c0e52e21c..afd2316fa1 100644 --- a/sysdeps/i386/jmpbuf-offsets.h +++ b/sysdeps/i386/jmpbuf-offsets.h @@ -1,5 +1,5 @@ /* Private macros for accessing __jmp_buf contents. i386 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/jmpbuf-unwind.h b/sysdeps/i386/jmpbuf-unwind.h index 923a53cc84..81faab2a71 100644 --- a/sysdeps/i386/jmpbuf-unwind.h +++ b/sysdeps/i386/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/sysdeps/i386/ldbl2mpn.c b/sysdeps/i386/ldbl2mpn.c index c7b322b452..09e30965ef 100644 --- a/sysdeps/i386/ldbl2mpn.c +++ b/sysdeps/i386/ldbl2mpn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/ldsodefs.h b/sysdeps/i386/ldsodefs.h index 654bad7c72..645ba3154f 100644 --- a/sysdeps/i386/ldsodefs.h +++ b/sysdeps/i386/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/lshift.S b/sysdeps/i386/lshift.S index 771891e574..513c0a5eff 100644 --- a/sysdeps/i386/lshift.S +++ b/sysdeps/i386/lshift.S @@ -1,5 +1,5 @@ /* i80386 __mpn_lshift -- - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/machine-gmon.h b/sysdeps/i386/machine-gmon.h index 304d77d6fb..48d0b07df3 100644 --- a/sysdeps/i386/machine-gmon.h +++ b/sysdeps/i386/machine-gmon.h @@ -1,5 +1,5 @@ /* i386-specific implementation of profiling support. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/i386/memchr.S b/sysdeps/i386/memchr.S index 67995002ed..f82e894ca4 100644 --- a/sysdeps/i386/memchr.S +++ b/sysdeps/i386/memchr.S @@ -1,6 +1,6 @@ /* memchr (str, chr, len) -- Return pointer to first occurrence of CHR in STR less than LEN. For Intel 80x86, x>=3. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper Optimised a little by Alan Modra diff --git a/sysdeps/i386/memcmp.S b/sysdeps/i386/memcmp.S index 21e0bfcd1c..88a9a9e416 100644 --- a/sysdeps/i386/memcmp.S +++ b/sysdeps/i386/memcmp.S @@ -1,5 +1,5 @@ /* Compare two memory blocks for differences in the first COUNT bytes. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/memcopy.h b/sysdeps/i386/memcopy.h index 23d913da34..7a34b56c52 100644 --- a/sysdeps/i386/memcopy.h +++ b/sysdeps/i386/memcopy.h @@ -1,5 +1,5 @@ /* memcopy.h -- definitions for memory copy functions. i386 version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/sysdeps/i386/memset.c b/sysdeps/i386/memset.c index dfc5480da3..fc4f3ba9f4 100644 --- a/sysdeps/i386/memset.c +++ b/sysdeps/i386/memset.c @@ -1,6 +1,6 @@ /* Set a block of memory to some byte value. For Intel 80x86, x>=3. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/sysdeps/i386/memusage.h b/sysdeps/i386/memusage.h index c391554241..2ae89e9941 100644 --- a/sysdeps/i386/memusage.h +++ b/sysdeps/i386/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/mul_1.S b/sysdeps/i386/mul_1.S index 896ba12309..779b7d1e23 100644 --- a/sysdeps/i386/mul_1.S +++ b/sysdeps/i386/mul_1.S @@ -1,6 +1,6 @@ /* i80386 __mpn_mul_1 -- Multiply a limb vector with a limb and store the result in a second limb vector. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/rawmemchr.S b/sysdeps/i386/rawmemchr.S index 2bd20e0459..c33a5c2f4f 100644 --- a/sysdeps/i386/rawmemchr.S +++ b/sysdeps/i386/rawmemchr.S @@ -1,6 +1,6 @@ /* rawmemchr (str, ch) -- Return pointer to first occurrence of CH in STR. For Intel 80x86, x>=3. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper Optimised a little by Alan Modra diff --git a/sysdeps/i386/rshift.S b/sysdeps/i386/rshift.S index 5f41227125..1ed43f56db 100644 --- a/sysdeps/i386/rshift.S +++ b/sysdeps/i386/rshift.S @@ -1,5 +1,5 @@ /* i80386 __mpn_rshift -- - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/setfpucw.c b/sysdeps/i386/setfpucw.c index 966012d25c..ceb02c39df 100644 --- a/sysdeps/i386/setfpucw.c +++ b/sysdeps/i386/setfpucw.c @@ -1,5 +1,5 @@ /* Set the FPU control word for x86. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/setjmp.S b/sysdeps/i386/setjmp.S index 14d36c7e40..b7637debee 100644 --- a/sysdeps/i386/setjmp.S +++ b/sysdeps/i386/setjmp.S @@ -1,5 +1,5 @@ /* setjmp for i386. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/stackinfo.h b/sysdeps/i386/stackinfo.h index 326a71c3e4..f6eccf99bd 100644 --- a/sysdeps/i386/stackinfo.h +++ b/sysdeps/i386/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/start.S b/sysdeps/i386/start.S index 51187652dc..b79bff2dfc 100644 --- a/sysdeps/i386/start.S +++ b/sysdeps/i386/start.S @@ -1,5 +1,5 @@ /* Startup code compliant to the ELF i386 ABI. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/stpcpy.S b/sysdeps/i386/stpcpy.S index 3c7562ed4e..176b258744 100644 --- a/sysdeps/i386/stpcpy.S +++ b/sysdeps/i386/stpcpy.S @@ -1,6 +1,6 @@ /* Copy SRC to DEST returning the address of the terminating '\0' in DEST. For Intel 80x86, x>=3. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper (drepper@gnu.ai.mit.edu). diff --git a/sysdeps/i386/stpncpy.S b/sysdeps/i386/stpncpy.S index b23e8208a0..0f6db6478a 100644 --- a/sysdeps/i386/stpncpy.S +++ b/sysdeps/i386/stpncpy.S @@ -1,7 +1,7 @@ /* copy no more than N bytes from SRC to DEST, returning the address of the terminating '\0' in DEST. For Intel 80x86, x>=3. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper Some bug fixes by Alan Modra diff --git a/sysdeps/i386/strchr.S b/sysdeps/i386/strchr.S index 666c7498fe..7a9cebaa21 100644 --- a/sysdeps/i386/strchr.S +++ b/sysdeps/i386/strchr.S @@ -1,6 +1,6 @@ /* strchr (str, ch) -- Return pointer to first occurrence of CH in STR. For Intel 80x86, x>=3. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper Some optimisations by Alan Modra diff --git a/sysdeps/i386/strchrnul.S b/sysdeps/i386/strchrnul.S index 7ceb88ed8b..28ce91d789 100644 --- a/sysdeps/i386/strchrnul.S +++ b/sysdeps/i386/strchrnul.S @@ -1,7 +1,7 @@ /* strchrnul (str, chr) -- Return pointer to first occurrence of CHR in STR or the final NUL byte. For Intel 80x86, x>=3. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper Some optimisations by Alan Modra diff --git a/sysdeps/i386/strcspn.S b/sysdeps/i386/strcspn.S index 0c262d6001..e5106b420a 100644 --- a/sysdeps/i386/strcspn.S +++ b/sysdeps/i386/strcspn.S @@ -1,7 +1,7 @@ /* strcspn (str, ss) -- Return the length of the initial segment of STR which contains no characters from SS. For Intel 80x86, x>=3. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper Bug fixes by Alan Modra diff --git a/sysdeps/i386/string-inlines.c b/sysdeps/i386/string-inlines.c index 43ba7a8348..8e94ea1504 100644 --- a/sysdeps/i386/string-inlines.c +++ b/sysdeps/i386/string-inlines.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/strlen.c b/sysdeps/i386/strlen.c index 5db799bd9b..be13e8774e 100644 --- a/sysdeps/i386/strlen.c +++ b/sysdeps/i386/strlen.c @@ -1,5 +1,5 @@ /* Determine the length of a string. For Intel 80x86, x>=3. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/sysdeps/i386/strpbrk.S b/sysdeps/i386/strpbrk.S index 246ae27c53..ac526162cf 100644 --- a/sysdeps/i386/strpbrk.S +++ b/sysdeps/i386/strpbrk.S @@ -1,7 +1,7 @@ /* strcspn (str, ss) -- Return the length of the initial segement of STR which contains no characters from SS. For Intel 80x86, x>=3. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper Bug fixes by Alan Modra This file is part of the GNU C Library. diff --git a/sysdeps/i386/strrchr.S b/sysdeps/i386/strrchr.S index 31b8a4562c..33e706195f 100644 --- a/sysdeps/i386/strrchr.S +++ b/sysdeps/i386/strrchr.S @@ -1,6 +1,6 @@ /* strrchr (str, ch) -- Return pointer to last occurrence of CH in STR. For Intel 80x86, x>=3. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper Some optimisations by Alan Modra diff --git a/sysdeps/i386/strspn.S b/sysdeps/i386/strspn.S index 1865e49202..903fe7d23c 100644 --- a/sysdeps/i386/strspn.S +++ b/sysdeps/i386/strspn.S @@ -1,7 +1,7 @@ /* strcspn (str, ss) -- Return the length of the initial segment of STR which contains only characters from SS. For Intel 80x86, x>=3. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper Bug fixes by Alan Modra diff --git a/sysdeps/i386/strtok.S b/sysdeps/i386/strtok.S index 79d540b603..70ec8bbd62 100644 --- a/sysdeps/i386/strtok.S +++ b/sysdeps/i386/strtok.S @@ -1,6 +1,6 @@ /* strtok (str, delim) -- Return next DELIM separated token from STR. For Intel 80x86, x>=3. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/i386/sub_n.S b/sysdeps/i386/sub_n.S index 40d430d6ea..18a43aba49 100644 --- a/sysdeps/i386/sub_n.S +++ b/sysdeps/i386/sub_n.S @@ -1,6 +1,6 @@ /* i80386 __mpn_sub_n -- Add two limb vectors of the same length > 0 and store sum in a third limb vector. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/submul_1.S b/sysdeps/i386/submul_1.S index a0ecfb5ed6..ea787eaffb 100644 --- a/sysdeps/i386/submul_1.S +++ b/sysdeps/i386/submul_1.S @@ -1,6 +1,6 @@ /* i80386 __mpn_submul_1 -- Multiply a limb vector with a limb and subtract the result from a second limb vector. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/i386/sys/ucontext.h b/sysdeps/i386/sys/ucontext.h index 95abeba2e7..c7ab13af17 100644 --- a/sysdeps/i386/sys/ucontext.h +++ b/sysdeps/i386/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/sysdep.h b/sysdeps/i386/sysdep.h index 9716264021..217e746c6d 100644 --- a/sysdeps/i386/sysdep.h +++ b/sysdeps/i386/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for i386. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/tlsdesc.c b/sysdeps/i386/tlsdesc.c index a1b374e8f6..9b6e359ae0 100644 --- a/sysdeps/i386/tlsdesc.c +++ b/sysdeps/i386/tlsdesc.c @@ -1,5 +1,5 @@ /* Manage TLS descriptors. i386 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/i386/tst-audit.h b/sysdeps/i386/tst-audit.h index ec2dc7fd4a..1ee2af3a5e 100644 --- a/sysdeps/i386/tst-audit.h +++ b/sysdeps/i386/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. i386 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/i386/tst-stack-align.h b/sysdeps/i386/tst-stack-align.h index 03b0f3dbe8..12ac56c160 100644 --- a/sysdeps/i386/tst-stack-align.h +++ b/sysdeps/i386/tst-stack-align.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/bits/huge_val.h b/sysdeps/ieee754/bits/huge_val.h index 7dcdefe616..111922a280 100644 --- a/sysdeps/ieee754/bits/huge_val.h +++ b/sysdeps/ieee754/bits/huge_val.h @@ -1,6 +1,6 @@ /* `HUGE_VAL' constant for IEEE 754 machines (where it is infinity). Used by and functions for overflow. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/bits/huge_valf.h b/sysdeps/ieee754/bits/huge_valf.h index 7974820ac7..a8025a9032 100644 --- a/sysdeps/ieee754/bits/huge_valf.h +++ b/sysdeps/ieee754/bits/huge_valf.h @@ -1,6 +1,6 @@ /* `HUGE_VALF' constant for IEEE 754 machines (where it is infinity). Used by and functions for overflow. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/bits/inf.h b/sysdeps/ieee754/bits/inf.h index cf66bf0fe2..07d080eb38 100644 --- a/sysdeps/ieee754/bits/inf.h +++ b/sysdeps/ieee754/bits/inf.h @@ -1,5 +1,5 @@ /* `INFINITY' constant for IEEE 754 machines. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/bits/nan.h b/sysdeps/ieee754/bits/nan.h index 41f47ba097..f0704da5c6 100644 --- a/sysdeps/ieee754/bits/nan.h +++ b/sysdeps/ieee754/bits/nan.h @@ -1,5 +1,5 @@ /* `NAN' constant for IEEE 754 machines. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/dbl-64/MathLib.h b/sysdeps/ieee754/dbl-64/MathLib.h index cf56606e36..395a57669c 100644 --- a/sysdeps/ieee754/dbl-64/MathLib.h +++ b/sysdeps/ieee754/dbl-64/MathLib.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/asincos.tbl b/sysdeps/ieee754/dbl-64/asincos.tbl index b50a366d8b..840b61852f 100644 --- a/sysdeps/ieee754/dbl-64/asincos.tbl +++ b/sysdeps/ieee754/dbl-64/asincos.tbl @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/atnat.h b/sysdeps/ieee754/dbl-64/atnat.h index a1a3572f7c..de612b09c7 100644 --- a/sysdeps/ieee754/dbl-64/atnat.h +++ b/sysdeps/ieee754/dbl-64/atnat.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/atnat2.h b/sysdeps/ieee754/dbl-64/atnat2.h index f12498bf3f..d5a141deb0 100644 --- a/sysdeps/ieee754/dbl-64/atnat2.h +++ b/sysdeps/ieee754/dbl-64/atnat2.h @@ -2,7 +2,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/branred.c b/sysdeps/ieee754/dbl-64/branred.c index 524d091dc3..9d15fdf4d2 100644 --- a/sysdeps/ieee754/dbl-64/branred.c +++ b/sysdeps/ieee754/dbl-64/branred.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/branred.h b/sysdeps/ieee754/dbl-64/branred.h index 4e27c37b84..2306e2e023 100644 --- a/sysdeps/ieee754/dbl-64/branred.h +++ b/sysdeps/ieee754/dbl-64/branred.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/dbl2mpn.c b/sysdeps/ieee754/dbl-64/dbl2mpn.c index 087d64377b..f7d8186098 100644 --- a/sysdeps/ieee754/dbl-64/dbl2mpn.c +++ b/sysdeps/ieee754/dbl-64/dbl2mpn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/dbl-64/dla.h b/sysdeps/ieee754/dbl-64/dla.h index 6666982bfa..f90a6f8d2e 100644 --- a/sysdeps/ieee754/dbl-64/dla.h +++ b/sysdeps/ieee754/dbl-64/dla.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/doasin.c b/sysdeps/ieee754/dbl-64/doasin.c index ff444d5ca9..132a3f0113 100644 --- a/sysdeps/ieee754/dbl-64/doasin.c +++ b/sysdeps/ieee754/dbl-64/doasin.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/doasin.h b/sysdeps/ieee754/dbl-64/doasin.h index 5548210789..39cfcf4aed 100644 --- a/sysdeps/ieee754/dbl-64/doasin.h +++ b/sysdeps/ieee754/dbl-64/doasin.h @@ -2,7 +2,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/dosincos.c b/sysdeps/ieee754/dbl-64/dosincos.c index e1c8836b72..de6f57bfff 100644 --- a/sysdeps/ieee754/dbl-64/dosincos.c +++ b/sysdeps/ieee754/dbl-64/dosincos.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/dosincos.h b/sysdeps/ieee754/dbl-64/dosincos.h index 49a22c8d73..516afd3977 100644 --- a/sysdeps/ieee754/dbl-64/dosincos.h +++ b/sysdeps/ieee754/dbl-64/dosincos.h @@ -2,7 +2,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/e_asin.c b/sysdeps/ieee754/dbl-64/e_asin.c index 27cd2a10d3..5bb5aeb075 100644 --- a/sysdeps/ieee754/dbl-64/e_asin.c +++ b/sysdeps/ieee754/dbl-64/e_asin.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/e_atan2.c b/sysdeps/ieee754/dbl-64/e_atan2.c index e36305cda7..a287ca6656 100644 --- a/sysdeps/ieee754/dbl-64/e_atan2.c +++ b/sysdeps/ieee754/dbl-64/e_atan2.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/e_atanh.c b/sysdeps/ieee754/dbl-64/e_atanh.c index 958e9375c6..21bb9908d1 100644 --- a/sysdeps/ieee754/dbl-64/e_atanh.c +++ b/sysdeps/ieee754/dbl-64/e_atanh.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/ieee754/dbl-64/e_exp.c b/sysdeps/ieee754/dbl-64/e_exp.c index 9d35e6d66c..100fc397a7 100644 --- a/sysdeps/ieee754/dbl-64/e_exp.c +++ b/sysdeps/ieee754/dbl-64/e_exp.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/e_exp10.c b/sysdeps/ieee754/dbl-64/e_exp10.c index 50b97f17ae..eac609b71d 100644 --- a/sysdeps/ieee754/dbl-64/e_exp10.c +++ b/sysdeps/ieee754/dbl-64/e_exp10.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/dbl-64/e_exp2.c b/sysdeps/ieee754/dbl-64/e_exp2.c index e1ba940e6c..10e23e2218 100644 --- a/sysdeps/ieee754/dbl-64/e_exp2.c +++ b/sysdeps/ieee754/dbl-64/e_exp2.c @@ -1,5 +1,5 @@ /* Double-precision floating point 2^x. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating diff --git a/sysdeps/ieee754/dbl-64/e_gamma_r.c b/sysdeps/ieee754/dbl-64/e_gamma_r.c index 13e389d7c1..1c427556bc 100644 --- a/sysdeps/ieee754/dbl-64/e_gamma_r.c +++ b/sysdeps/ieee754/dbl-64/e_gamma_r.c @@ -1,5 +1,5 @@ /* Implementation of gamma function according to ISO C. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/e_log.c b/sysdeps/ieee754/dbl-64/e_log.c index a7ab544354..0b2889cb3b 100644 --- a/sysdeps/ieee754/dbl-64/e_log.c +++ b/sysdeps/ieee754/dbl-64/e_log.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/e_pow.c b/sysdeps/ieee754/dbl-64/e_pow.c index 9cf2309174..1c5f4b311e 100644 --- a/sysdeps/ieee754/dbl-64/e_pow.c +++ b/sysdeps/ieee754/dbl-64/e_pow.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/e_remainder.c b/sysdeps/ieee754/dbl-64/e_remainder.c index c6a1901b10..28689614f0 100644 --- a/sysdeps/ieee754/dbl-64/e_remainder.c +++ b/sysdeps/ieee754/dbl-64/e_remainder.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/e_sqrt.c b/sysdeps/ieee754/dbl-64/e_sqrt.c index 88809daa76..f095d6cb3c 100644 --- a/sysdeps/ieee754/dbl-64/e_sqrt.c +++ b/sysdeps/ieee754/dbl-64/e_sqrt.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/gamma_product.c b/sysdeps/ieee754/dbl-64/gamma_product.c index 2a3fc1aff8..511cb33561 100644 --- a/sysdeps/ieee754/dbl-64/gamma_product.c +++ b/sysdeps/ieee754/dbl-64/gamma_product.c @@ -1,5 +1,5 @@ /* Compute a product of X, X+1, ..., with an error estimate. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/dbl-64/gamma_productf.c b/sysdeps/ieee754/dbl-64/gamma_productf.c index 46072f16ea..60c6f7bceb 100644 --- a/sysdeps/ieee754/dbl-64/gamma_productf.c +++ b/sysdeps/ieee754/dbl-64/gamma_productf.c @@ -1,5 +1,5 @@ /* Compute a product of X, X+1, ..., with an error estimate. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/dbl-64/halfulp.c b/sysdeps/ieee754/dbl-64/halfulp.c index 382ad7aada..68d613412d 100644 --- a/sysdeps/ieee754/dbl-64/halfulp.c +++ b/sysdeps/ieee754/dbl-64/halfulp.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mpa-arch.h b/sysdeps/ieee754/dbl-64/mpa-arch.h index 779a43d9b0..4a9f45ecc8 100644 --- a/sysdeps/ieee754/dbl-64/mpa-arch.h +++ b/sysdeps/ieee754/dbl-64/mpa-arch.h @@ -1,5 +1,5 @@ /* Overridable constants and operations. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mpa.c b/sysdeps/ieee754/dbl-64/mpa.c index 190e8a6373..9f7f44fa48 100644 --- a/sysdeps/ieee754/dbl-64/mpa.c +++ b/sysdeps/ieee754/dbl-64/mpa.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mpa.h b/sysdeps/ieee754/dbl-64/mpa.h index 5fad584394..bf1ad873d1 100644 --- a/sysdeps/ieee754/dbl-64/mpa.h +++ b/sysdeps/ieee754/dbl-64/mpa.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mpatan.c b/sysdeps/ieee754/dbl-64/mpatan.c index a6ae611955..49ecdd2d85 100644 --- a/sysdeps/ieee754/dbl-64/mpatan.c +++ b/sysdeps/ieee754/dbl-64/mpatan.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mpatan.h b/sysdeps/ieee754/dbl-64/mpatan.h index 743a1b98c4..4ac4541ff4 100644 --- a/sysdeps/ieee754/dbl-64/mpatan.h +++ b/sysdeps/ieee754/dbl-64/mpatan.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mpatan2.c b/sysdeps/ieee754/dbl-64/mpatan2.c index f66f9eb884..5249492666 100644 --- a/sysdeps/ieee754/dbl-64/mpatan2.c +++ b/sysdeps/ieee754/dbl-64/mpatan2.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mpexp.c b/sysdeps/ieee754/dbl-64/mpexp.c index 06347b74b8..0096afb836 100644 --- a/sysdeps/ieee754/dbl-64/mpexp.c +++ b/sysdeps/ieee754/dbl-64/mpexp.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mplog.c b/sysdeps/ieee754/dbl-64/mplog.c index f8d5c1095f..75adac9df6 100644 --- a/sysdeps/ieee754/dbl-64/mplog.c +++ b/sysdeps/ieee754/dbl-64/mplog.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mpn2dbl.c b/sysdeps/ieee754/dbl-64/mpn2dbl.c index 0fada79a0c..4e8a764326 100644 --- a/sysdeps/ieee754/dbl-64/mpn2dbl.c +++ b/sysdeps/ieee754/dbl-64/mpn2dbl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/dbl-64/mpsqrt.c b/sysdeps/ieee754/dbl-64/mpsqrt.c index 230d1f36e8..86418237bb 100644 --- a/sysdeps/ieee754/dbl-64/mpsqrt.c +++ b/sysdeps/ieee754/dbl-64/mpsqrt.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mpsqrt.h b/sysdeps/ieee754/dbl-64/mpsqrt.h index 2b83c4cbf8..9cf725b021 100644 --- a/sysdeps/ieee754/dbl-64/mpsqrt.h +++ b/sysdeps/ieee754/dbl-64/mpsqrt.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mptan.c b/sysdeps/ieee754/dbl-64/mptan.c index a5c3fb36c9..aa16782c2c 100644 --- a/sysdeps/ieee754/dbl-64/mptan.c +++ b/sysdeps/ieee754/dbl-64/mptan.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/mydefs.h b/sysdeps/ieee754/dbl-64/mydefs.h index a430397c67..b53dd94764 100644 --- a/sysdeps/ieee754/dbl-64/mydefs.h +++ b/sysdeps/ieee754/dbl-64/mydefs.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/powtwo.tbl b/sysdeps/ieee754/dbl-64/powtwo.tbl index 2963d14e31..d1d207155f 100644 --- a/sysdeps/ieee754/dbl-64/powtwo.tbl +++ b/sysdeps/ieee754/dbl-64/powtwo.tbl @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/root.tbl b/sysdeps/ieee754/dbl-64/root.tbl index 6ceddee394..f52ab96c27 100644 --- a/sysdeps/ieee754/dbl-64/root.tbl +++ b/sysdeps/ieee754/dbl-64/root.tbl @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/s_atan.c b/sysdeps/ieee754/dbl-64/s_atan.c index 744e961469..0aa145cade 100644 --- a/sysdeps/ieee754/dbl-64/s_atan.c +++ b/sysdeps/ieee754/dbl-64/s_atan.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/s_cbrt.c b/sysdeps/ieee754/dbl-64/s_cbrt.c index 208a369a6c..ada34b6632 100644 --- a/sysdeps/ieee754/dbl-64/s_cbrt.c +++ b/sysdeps/ieee754/dbl-64/s_cbrt.c @@ -1,5 +1,5 @@ /* Compute cubic root of double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Dirk Alboth and Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/s_fma.c b/sysdeps/ieee754/dbl-64/s_fma.c index 06c0d2ae68..cfaa22d184 100644 --- a/sysdeps/ieee754/dbl-64/s_fma.c +++ b/sysdeps/ieee754/dbl-64/s_fma.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2010. diff --git a/sysdeps/ieee754/dbl-64/s_fmaf.c b/sysdeps/ieee754/dbl-64/s_fmaf.c index e921450543..9a062f0bb7 100644 --- a/sysdeps/ieee754/dbl-64/s_fmaf.c +++ b/sysdeps/ieee754/dbl-64/s_fmaf.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2010. diff --git a/sysdeps/ieee754/dbl-64/s_fpclassify.c b/sysdeps/ieee754/dbl-64/s_fpclassify.c index 0f72454f1f..d875ca4db3 100644 --- a/sysdeps/ieee754/dbl-64/s_fpclassify.c +++ b/sysdeps/ieee754/dbl-64/s_fpclassify.c @@ -1,5 +1,5 @@ /* Return classification value corresponding to argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/s_issignaling.c b/sysdeps/ieee754/dbl-64/s_issignaling.c index f475bc7bdf..4631ff9c59 100644 --- a/sysdeps/ieee754/dbl-64/s_issignaling.c +++ b/sysdeps/ieee754/dbl-64/s_issignaling.c @@ -1,5 +1,5 @@ /* Test for signaling NaN. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/dbl-64/s_llrint.c b/sysdeps/ieee754/dbl-64/s_llrint.c index 0cbc39a552..3bcca28988 100644 --- a/sysdeps/ieee754/dbl-64/s_llrint.c +++ b/sysdeps/ieee754/dbl-64/s_llrint.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/s_llround.c b/sysdeps/ieee754/dbl-64/s_llround.c index 7d50a57dd3..e1cc1770c8 100644 --- a/sysdeps/ieee754/dbl-64/s_llround.c +++ b/sysdeps/ieee754/dbl-64/s_llround.c @@ -1,5 +1,5 @@ /* Round double value to long long int. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/s_lrint.c b/sysdeps/ieee754/dbl-64/s_lrint.c index 1c3037364b..3ab988473a 100644 --- a/sysdeps/ieee754/dbl-64/s_lrint.c +++ b/sysdeps/ieee754/dbl-64/s_lrint.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/s_lround.c b/sysdeps/ieee754/dbl-64/s_lround.c index e9dfcbaab4..ae7f178b98 100644 --- a/sysdeps/ieee754/dbl-64/s_lround.c +++ b/sysdeps/ieee754/dbl-64/s_lround.c @@ -1,5 +1,5 @@ /* Round double value to long int. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/s_remquo.c b/sysdeps/ieee754/dbl-64/s_remquo.c index c406150043..04b1d81bb3 100644 --- a/sysdeps/ieee754/dbl-64/s_remquo.c +++ b/sysdeps/ieee754/dbl-64/s_remquo.c @@ -1,5 +1,5 @@ /* Compute remainder and a congruent to the quotient. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/s_round.c b/sysdeps/ieee754/dbl-64/s_round.c index 7913ac0615..7eacdf3dc1 100644 --- a/sysdeps/ieee754/dbl-64/s_round.c +++ b/sysdeps/ieee754/dbl-64/s_round.c @@ -1,5 +1,5 @@ /* Round double to integer away from zero. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/s_signbit.c b/sysdeps/ieee754/dbl-64/s_signbit.c index bc1edac486..89bc8b6d67 100644 --- a/sysdeps/ieee754/dbl-64/s_signbit.c +++ b/sysdeps/ieee754/dbl-64/s_signbit.c @@ -1,5 +1,5 @@ /* Return nonzero value if number is negative. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/s_sin.c b/sysdeps/ieee754/dbl-64/s_sin.c index edc441577c..6105e9fbdf 100644 --- a/sysdeps/ieee754/dbl-64/s_sin.c +++ b/sysdeps/ieee754/dbl-64/s_sin.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/s_sincos.c b/sysdeps/ieee754/dbl-64/s_sincos.c index 01d1bdf977..e4371069d4 100644 --- a/sysdeps/ieee754/dbl-64/s_sincos.c +++ b/sysdeps/ieee754/dbl-64/s_sincos.c @@ -1,5 +1,5 @@ /* Compute sine and cosine of argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/s_tan.c b/sysdeps/ieee754/dbl-64/s_tan.c index 09db096d05..a72530dadc 100644 --- a/sysdeps/ieee754/dbl-64/s_tan.c +++ b/sysdeps/ieee754/dbl-64/s_tan.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/s_trunc.c b/sysdeps/ieee754/dbl-64/s_trunc.c index e234477212..bd777f6860 100644 --- a/sysdeps/ieee754/dbl-64/s_trunc.c +++ b/sysdeps/ieee754/dbl-64/s_trunc.c @@ -1,5 +1,5 @@ /* Truncate argument to nearest integral value not larger than the argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/sincos32.c b/sysdeps/ieee754/dbl-64/sincos32.c index e42fd27250..6b2fa878a4 100644 --- a/sysdeps/ieee754/dbl-64/sincos32.c +++ b/sysdeps/ieee754/dbl-64/sincos32.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/sincos32.h b/sysdeps/ieee754/dbl-64/sincos32.h index 1e5ac8bcf4..e289b165c2 100644 --- a/sysdeps/ieee754/dbl-64/sincos32.h +++ b/sysdeps/ieee754/dbl-64/sincos32.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/sincostab.c b/sysdeps/ieee754/dbl-64/sincostab.c index 43833f0b5b..e3e24e0f84 100644 --- a/sysdeps/ieee754/dbl-64/sincostab.c +++ b/sysdeps/ieee754/dbl-64/sincostab.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/slowexp.c b/sysdeps/ieee754/dbl-64/slowexp.c index 525224f44a..e32742d5d4 100644 --- a/sysdeps/ieee754/dbl-64/slowexp.c +++ b/sysdeps/ieee754/dbl-64/slowexp.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/slowpow.c b/sysdeps/ieee754/dbl-64/slowpow.c index d200c39e59..b2e403308e 100644 --- a/sysdeps/ieee754/dbl-64/slowpow.c +++ b/sysdeps/ieee754/dbl-64/slowpow.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/t_exp.c b/sysdeps/ieee754/dbl-64/t_exp.c index 7466e29971..f32fa57a47 100644 --- a/sysdeps/ieee754/dbl-64/t_exp.c +++ b/sysdeps/ieee754/dbl-64/t_exp.c @@ -1,5 +1,5 @@ /* Accurate tables for exp(). - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating diff --git a/sysdeps/ieee754/dbl-64/uasncs.h b/sysdeps/ieee754/dbl-64/uasncs.h index 66030d1c6f..db56a53542 100644 --- a/sysdeps/ieee754/dbl-64/uasncs.h +++ b/sysdeps/ieee754/dbl-64/uasncs.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/uatan.tbl b/sysdeps/ieee754/dbl-64/uatan.tbl index d259587b71..24e72e7105 100644 --- a/sysdeps/ieee754/dbl-64/uatan.tbl +++ b/sysdeps/ieee754/dbl-64/uatan.tbl @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/uexp.h b/sysdeps/ieee754/dbl-64/uexp.h index 073c0ee42d..dd59451e3a 100644 --- a/sysdeps/ieee754/dbl-64/uexp.h +++ b/sysdeps/ieee754/dbl-64/uexp.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/uexp.tbl b/sysdeps/ieee754/dbl-64/uexp.tbl index 68396b79d1..90ff55de41 100644 --- a/sysdeps/ieee754/dbl-64/uexp.tbl +++ b/sysdeps/ieee754/dbl-64/uexp.tbl @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/ulog.h b/sysdeps/ieee754/dbl-64/ulog.h index eec1eef675..70389b4cdb 100644 --- a/sysdeps/ieee754/dbl-64/ulog.h +++ b/sysdeps/ieee754/dbl-64/ulog.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/ulog.tbl b/sysdeps/ieee754/dbl-64/ulog.tbl index 32f3846357..454fb61b22 100644 --- a/sysdeps/ieee754/dbl-64/ulog.tbl +++ b/sysdeps/ieee754/dbl-64/ulog.tbl @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/upow.h b/sysdeps/ieee754/dbl-64/upow.h index 130fb3296f..f26240652e 100644 --- a/sysdeps/ieee754/dbl-64/upow.h +++ b/sysdeps/ieee754/dbl-64/upow.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/upow.tbl b/sysdeps/ieee754/dbl-64/upow.tbl index f836b9b7b6..f5e7660d91 100644 --- a/sysdeps/ieee754/dbl-64/upow.tbl +++ b/sysdeps/ieee754/dbl-64/upow.tbl @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/urem.h b/sysdeps/ieee754/dbl-64/urem.h index b576691ced..3bd2883be7 100644 --- a/sysdeps/ieee754/dbl-64/urem.h +++ b/sysdeps/ieee754/dbl-64/urem.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/uroot.h b/sysdeps/ieee754/dbl-64/uroot.h index f2484994c9..2db841ffa9 100644 --- a/sysdeps/ieee754/dbl-64/uroot.h +++ b/sysdeps/ieee754/dbl-64/uroot.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/usncs.h b/sysdeps/ieee754/dbl-64/usncs.h index 209c74f33d..b3296ca9c8 100644 --- a/sysdeps/ieee754/dbl-64/usncs.h +++ b/sysdeps/ieee754/dbl-64/usncs.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/utan.h b/sysdeps/ieee754/dbl-64/utan.h index 3bdeee1c4d..374132be5f 100644 --- a/sysdeps/ieee754/dbl-64/utan.h +++ b/sysdeps/ieee754/dbl-64/utan.h @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/utan.tbl b/sysdeps/ieee754/dbl-64/utan.tbl index 271f6fbeb0..25c59c2759 100644 --- a/sysdeps/ieee754/dbl-64/utan.tbl +++ b/sysdeps/ieee754/dbl-64/utan.tbl @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * Written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/dbl-64/w_exp.c b/sysdeps/ieee754/dbl-64/w_exp.c index 4f6da6c15f..3c2c3e5f40 100644 --- a/sysdeps/ieee754/dbl-64/w_exp.c +++ b/sysdeps/ieee754/dbl-64/w_exp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c b/sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c index 914a3c823a..3823a53ad4 100644 --- a/sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c +++ b/sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c @@ -1,5 +1,5 @@ /* Round double to integer away from zero. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c b/sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c index 59dafe8e1e..d03e33ee1f 100644 --- a/sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c +++ b/sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c b/sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c index 3fa0254374..3b8be8430c 100644 --- a/sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c +++ b/sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c @@ -1,5 +1,5 @@ /* Test for signaling NaN. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c b/sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c index d9214298a4..da180fef55 100644 --- a/sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c +++ b/sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c @@ -1,5 +1,5 @@ /* Round double value to long long int. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c b/sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c index 42349bd906..e51c849592 100644 --- a/sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c +++ b/sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c @@ -1,5 +1,5 @@ /* Compute radix independent exponent. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c b/sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c index 29e62874bb..b22503f5c7 100644 --- a/sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c +++ b/sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c @@ -1,5 +1,5 @@ /* Compute remainder and a congruent to the quotient. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/wordsize-64/s_round.c b/sysdeps/ieee754/dbl-64/wordsize-64/s_round.c index bea7960835..684858c065 100644 --- a/sysdeps/ieee754/dbl-64/wordsize-64/s_round.c +++ b/sysdeps/ieee754/dbl-64/wordsize-64/s_round.c @@ -1,5 +1,5 @@ /* Round double to integer away from zero. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c b/sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c index dcdf569d6c..768e36fdd4 100644 --- a/sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c +++ b/sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c @@ -1,5 +1,5 @@ /* Truncate argument to nearest integral value not larger than the argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/dbl-64/x2y2m1.c b/sysdeps/ieee754/dbl-64/x2y2m1.c index d36a950e36..d39738fc20 100644 --- a/sysdeps/ieee754/dbl-64/x2y2m1.c +++ b/sysdeps/ieee754/dbl-64/x2y2m1.c @@ -1,5 +1,5 @@ /* Compute x^2 + y^2 - 1, without large cancellation error. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/dbl-64/x2y2m1f.c b/sysdeps/ieee754/dbl-64/x2y2m1f.c index bd1444dad9..fd80b9f512 100644 --- a/sysdeps/ieee754/dbl-64/x2y2m1f.c +++ b/sysdeps/ieee754/dbl-64/x2y2m1f.c @@ -1,5 +1,5 @@ /* Compute x^2 + y^2 - 1, without large cancellation error. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/flt-32/e_atanhf.c b/sysdeps/ieee754/flt-32/e_atanhf.c index e87e34ec7c..dbd3fe4be2 100644 --- a/sysdeps/ieee754/flt-32/e_atanhf.c +++ b/sysdeps/ieee754/flt-32/e_atanhf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/ieee754/flt-32/e_exp2f.c b/sysdeps/ieee754/flt-32/e_exp2f.c index d586979f6b..544226a637 100644 --- a/sysdeps/ieee754/flt-32/e_exp2f.c +++ b/sysdeps/ieee754/flt-32/e_exp2f.c @@ -1,5 +1,5 @@ /* Single-precision floating point 2^x. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating diff --git a/sysdeps/ieee754/flt-32/e_expf.c b/sysdeps/ieee754/flt-32/e_expf.c index 2dc42606f1..678b97cf4f 100644 --- a/sysdeps/ieee754/flt-32/e_expf.c +++ b/sysdeps/ieee754/flt-32/e_expf.c @@ -1,5 +1,5 @@ /* Single-precision floating point e^x. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating diff --git a/sysdeps/ieee754/flt-32/e_gammaf_r.c b/sysdeps/ieee754/flt-32/e_gammaf_r.c index f58f4c8056..e8da51a42c 100644 --- a/sysdeps/ieee754/flt-32/e_gammaf_r.c +++ b/sysdeps/ieee754/flt-32/e_gammaf_r.c @@ -1,5 +1,5 @@ /* Implementation of gamma function according to ISO C. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/mpn2flt.c b/sysdeps/ieee754/flt-32/mpn2flt.c index 9e7365dba9..90fbfa1aca 100644 --- a/sysdeps/ieee754/flt-32/mpn2flt.c +++ b/sysdeps/ieee754/flt-32/mpn2flt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/flt-32/s_cbrtf.c b/sysdeps/ieee754/flt-32/s_cbrtf.c index d0dcba08ba..7d94dfe1fb 100644 --- a/sysdeps/ieee754/flt-32/s_cbrtf.c +++ b/sysdeps/ieee754/flt-32/s_cbrtf.c @@ -1,5 +1,5 @@ /* Compute cubic root of float value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Dirk Alboth and Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/s_fpclassifyf.c b/sysdeps/ieee754/flt-32/s_fpclassifyf.c index dd5c74c749..5d374c250f 100644 --- a/sysdeps/ieee754/flt-32/s_fpclassifyf.c +++ b/sysdeps/ieee754/flt-32/s_fpclassifyf.c @@ -1,5 +1,5 @@ /* Return classification value corresponding to argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/s_issignalingf.c b/sysdeps/ieee754/flt-32/s_issignalingf.c index 59a189252e..ac5e7292b6 100644 --- a/sysdeps/ieee754/flt-32/s_issignalingf.c +++ b/sysdeps/ieee754/flt-32/s_issignalingf.c @@ -1,5 +1,5 @@ /* Test for signaling NaN. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/flt-32/s_llrintf.c b/sysdeps/ieee754/flt-32/s_llrintf.c index fee0b1a6c7..d0625da6d4 100644 --- a/sysdeps/ieee754/flt-32/s_llrintf.c +++ b/sysdeps/ieee754/flt-32/s_llrintf.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/s_llroundf.c b/sysdeps/ieee754/flt-32/s_llroundf.c index 4ea7b38bad..36c66dc76a 100644 --- a/sysdeps/ieee754/flt-32/s_llroundf.c +++ b/sysdeps/ieee754/flt-32/s_llroundf.c @@ -1,5 +1,5 @@ /* Round float value to long long int. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/s_lrintf.c b/sysdeps/ieee754/flt-32/s_lrintf.c index 9f3d5f084d..77f1505565 100644 --- a/sysdeps/ieee754/flt-32/s_lrintf.c +++ b/sysdeps/ieee754/flt-32/s_lrintf.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/s_lroundf.c b/sysdeps/ieee754/flt-32/s_lroundf.c index 00b874fcb8..b5e063898b 100644 --- a/sysdeps/ieee754/flt-32/s_lroundf.c +++ b/sysdeps/ieee754/flt-32/s_lroundf.c @@ -1,5 +1,5 @@ /* Round float value to long int. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/s_remquof.c b/sysdeps/ieee754/flt-32/s_remquof.c index d55704c44f..c98f9aa224 100644 --- a/sysdeps/ieee754/flt-32/s_remquof.c +++ b/sysdeps/ieee754/flt-32/s_remquof.c @@ -1,5 +1,5 @@ /* Compute remainder and a congruent to the quotient. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/s_roundf.c b/sysdeps/ieee754/flt-32/s_roundf.c index 5ee3d29d24..58ec5bcbf1 100644 --- a/sysdeps/ieee754/flt-32/s_roundf.c +++ b/sysdeps/ieee754/flt-32/s_roundf.c @@ -1,5 +1,5 @@ /* Round float to integer away from zero. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/s_signbitf.c b/sysdeps/ieee754/flt-32/s_signbitf.c index a42bfb9762..1cbb2d0293 100644 --- a/sysdeps/ieee754/flt-32/s_signbitf.c +++ b/sysdeps/ieee754/flt-32/s_signbitf.c @@ -1,5 +1,5 @@ /* Return nonzero value if number is negative. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/s_sincosf.c b/sysdeps/ieee754/flt-32/s_sincosf.c index 1b3fd9fd52..c86fd57214 100644 --- a/sysdeps/ieee754/flt-32/s_sincosf.c +++ b/sysdeps/ieee754/flt-32/s_sincosf.c @@ -1,5 +1,5 @@ /* Compute sine and cosine of argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/s_truncf.c b/sysdeps/ieee754/flt-32/s_truncf.c index cc8e5f3aff..f1acf179c3 100644 --- a/sysdeps/ieee754/flt-32/s_truncf.c +++ b/sysdeps/ieee754/flt-32/s_truncf.c @@ -1,5 +1,5 @@ /* Truncate argument to nearest integral value not larger than the argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/flt-32/t_exp2f.h b/sysdeps/ieee754/flt-32/t_exp2f.h index 51ac6f5ec7..6f84cfce0a 100644 --- a/sysdeps/ieee754/flt-32/t_exp2f.h +++ b/sysdeps/ieee754/flt-32/t_exp2f.h @@ -1,5 +1,5 @@ /* Accurate tables for exp2f(). - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating diff --git a/sysdeps/ieee754/flt-32/w_expf.c b/sysdeps/ieee754/flt-32/w_expf.c index 1fbfe6a96d..cf5cae5f9e 100644 --- a/sysdeps/ieee754/flt-32/w_expf.c +++ b/sysdeps/ieee754/flt-32/w_expf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/ieee754/ieee754.h b/sysdeps/ieee754/ieee754.h index 4c694bb956..48d9360ef2 100644 --- a/sysdeps/ieee754/ieee754.h +++ b/sysdeps/ieee754/ieee754.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128/e_exp10l.c b/sysdeps/ieee754/ldbl-128/e_exp10l.c index e6f4a86795..3c5096379c 100644 --- a/sysdeps/ieee754/ldbl-128/e_exp10l.c +++ b/sysdeps/ieee754/ldbl-128/e_exp10l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128/e_expl.c b/sysdeps/ieee754/ldbl-128/e_expl.c index 23c204ce07..8259758cff 100644 --- a/sysdeps/ieee754/ldbl-128/e_expl.c +++ b/sysdeps/ieee754/ldbl-128/e_expl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point e^x. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek Partly based on double-precision code diff --git a/sysdeps/ieee754/ldbl-128/e_gammal_r.c b/sysdeps/ieee754/ldbl-128/e_gammal_r.c index e8d49e9872..ffa27bc2b7 100644 --- a/sysdeps/ieee754/ldbl-128/e_gammal_r.c +++ b/sysdeps/ieee754/ldbl-128/e_gammal_r.c @@ -1,5 +1,5 @@ /* Implementation of gamma function according to ISO C. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-128/gamma_productl.c b/sysdeps/ieee754/ldbl-128/gamma_productl.c index 157dbab9fb..2c87649677 100644 --- a/sysdeps/ieee754/ldbl-128/gamma_productl.c +++ b/sysdeps/ieee754/ldbl-128/gamma_productl.c @@ -1,5 +1,5 @@ /* Compute a product of X, X+1, ..., with an error estimate. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128/ieee754.h b/sysdeps/ieee754/ldbl-128/ieee754.h index 2324f0b300..d77b83592f 100644 --- a/sysdeps/ieee754/ldbl-128/ieee754.h +++ b/sysdeps/ieee754/ldbl-128/ieee754.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128/k_cosl.c b/sysdeps/ieee754/ldbl-128/k_cosl.c index 997f7f1156..0c76332bcb 100644 --- a/sysdeps/ieee754/ldbl-128/k_cosl.c +++ b/sysdeps/ieee754/ldbl-128/k_cosl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point cosine on <-pi/4,pi/4>. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-128/k_sincosl.c b/sysdeps/ieee754/ldbl-128/k_sincosl.c index 4f18deb6fe..038718a29f 100644 --- a/sysdeps/ieee754/ldbl-128/k_sincosl.c +++ b/sysdeps/ieee754/ldbl-128/k_sincosl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point sine and cosine on <-pi/4,pi/4>. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-128/k_sinl.c b/sysdeps/ieee754/ldbl-128/k_sinl.c index e36a4024fa..1c9c7c7174 100644 --- a/sysdeps/ieee754/ldbl-128/k_sinl.c +++ b/sysdeps/ieee754/ldbl-128/k_sinl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point sine on <-pi/4,pi/4>. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-128/ldbl2mpn.c b/sysdeps/ieee754/ldbl-128/ldbl2mpn.c index 64f98a59d2..6d6ee2a555 100644 --- a/sysdeps/ieee754/ldbl-128/ldbl2mpn.c +++ b/sysdeps/ieee754/ldbl-128/ldbl2mpn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128/mpn2ldbl.c b/sysdeps/ieee754/ldbl-128/mpn2ldbl.c index eabbdd2297..6d17567fa7 100644 --- a/sysdeps/ieee754/ldbl-128/mpn2ldbl.c +++ b/sysdeps/ieee754/ldbl-128/mpn2ldbl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128/printf_fphex.c b/sysdeps/ieee754/ldbl-128/printf_fphex.c index e82228a53e..5bd1615105 100644 --- a/sysdeps/ieee754/ldbl-128/printf_fphex.c +++ b/sysdeps/ieee754/ldbl-128/printf_fphex.c @@ -1,6 +1,6 @@ /* Print floating point number in hexadecimal notation according to ISO C99. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128/s_fma.c b/sysdeps/ieee754/ldbl-128/s_fma.c index 8cc7db81c8..e3cae61cf9 100644 --- a/sysdeps/ieee754/ldbl-128/s_fma.c +++ b/sysdeps/ieee754/ldbl-128/s_fma.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2010. diff --git a/sysdeps/ieee754/ldbl-128/s_fmal.c b/sysdeps/ieee754/ldbl-128/s_fmal.c index 5ec0a06185..48b63ab51d 100644 --- a/sysdeps/ieee754/ldbl-128/s_fmal.c +++ b/sysdeps/ieee754/ldbl-128/s_fmal.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2010. diff --git a/sysdeps/ieee754/ldbl-128/s_fpclassifyl.c b/sysdeps/ieee754/ldbl-128/s_fpclassifyl.c index dc57ba9ca3..efe69f2d45 100644 --- a/sysdeps/ieee754/ldbl-128/s_fpclassifyl.c +++ b/sysdeps/ieee754/ldbl-128/s_fpclassifyl.c @@ -1,5 +1,5 @@ /* Return classification value corresponding to argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek , 1999. diff --git a/sysdeps/ieee754/ldbl-128/s_issignalingl.c b/sysdeps/ieee754/ldbl-128/s_issignalingl.c index b69a66d0ba..c3d77aff78 100644 --- a/sysdeps/ieee754/ldbl-128/s_issignalingl.c +++ b/sysdeps/ieee754/ldbl-128/s_issignalingl.c @@ -1,5 +1,5 @@ /* Test for signaling NaN. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128/s_llrintl.c b/sysdeps/ieee754/ldbl-128/s_llrintl.c index 9d56cf120f..b3a2124f23 100644 --- a/sysdeps/ieee754/ldbl-128/s_llrintl.c +++ b/sysdeps/ieee754/ldbl-128/s_llrintl.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek , 1999. diff --git a/sysdeps/ieee754/ldbl-128/s_llroundl.c b/sysdeps/ieee754/ldbl-128/s_llroundl.c index c2136d9904..8c2b48ea28 100644 --- a/sysdeps/ieee754/ldbl-128/s_llroundl.c +++ b/sysdeps/ieee754/ldbl-128/s_llroundl.c @@ -1,5 +1,5 @@ /* Round long double value to long long int. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek , 1999. diff --git a/sysdeps/ieee754/ldbl-128/s_lrintl.c b/sysdeps/ieee754/ldbl-128/s_lrintl.c index 61c508f203..7dbab5cc10 100644 --- a/sysdeps/ieee754/ldbl-128/s_lrintl.c +++ b/sysdeps/ieee754/ldbl-128/s_lrintl.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek , 1999. diff --git a/sysdeps/ieee754/ldbl-128/s_lroundl.c b/sysdeps/ieee754/ldbl-128/s_lroundl.c index 68256ecbe2..493592c4d5 100644 --- a/sysdeps/ieee754/ldbl-128/s_lroundl.c +++ b/sysdeps/ieee754/ldbl-128/s_lroundl.c @@ -1,5 +1,5 @@ /* Round long double value to long int. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek , 1999. diff --git a/sysdeps/ieee754/ldbl-128/s_remquol.c b/sysdeps/ieee754/ldbl-128/s_remquol.c index f916b64e44..d7b1503857 100644 --- a/sysdeps/ieee754/ldbl-128/s_remquol.c +++ b/sysdeps/ieee754/ldbl-128/s_remquol.c @@ -1,5 +1,5 @@ /* Compute remainder and a congruent to the quotient. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek , 1999. diff --git a/sysdeps/ieee754/ldbl-128/s_roundl.c b/sysdeps/ieee754/ldbl-128/s_roundl.c index 2445b76c8a..4be1ad8228 100644 --- a/sysdeps/ieee754/ldbl-128/s_roundl.c +++ b/sysdeps/ieee754/ldbl-128/s_roundl.c @@ -1,5 +1,5 @@ /* Round long double to integer away from zero. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek , 1999. diff --git a/sysdeps/ieee754/ldbl-128/s_signbitl.c b/sysdeps/ieee754/ldbl-128/s_signbitl.c index e5fc78f950..434bc2ce64 100644 --- a/sysdeps/ieee754/ldbl-128/s_signbitl.c +++ b/sysdeps/ieee754/ldbl-128/s_signbitl.c @@ -1,5 +1,5 @@ /* Return nonzero value if number is negative. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-128/s_sincosl.c b/sysdeps/ieee754/ldbl-128/s_sincosl.c index 260373bd3f..591867acd2 100644 --- a/sysdeps/ieee754/ldbl-128/s_sincosl.c +++ b/sysdeps/ieee754/ldbl-128/s_sincosl.c @@ -1,5 +1,5 @@ /* Compute sine and cosine of argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek . diff --git a/sysdeps/ieee754/ldbl-128/s_truncl.c b/sysdeps/ieee754/ldbl-128/s_truncl.c index cd9f44802d..2395b5a152 100644 --- a/sysdeps/ieee754/ldbl-128/s_truncl.c +++ b/sysdeps/ieee754/ldbl-128/s_truncl.c @@ -1,5 +1,5 @@ /* Truncate argument to nearest integral value not larger than the argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek , 1999. diff --git a/sysdeps/ieee754/ldbl-128/strtold_l.c b/sysdeps/ieee754/ldbl-128/strtold_l.c index d3a1d1e862..b22cfe7651 100644 --- a/sysdeps/ieee754/ldbl-128/strtold_l.c +++ b/sysdeps/ieee754/ldbl-128/strtold_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128/t_expl.h b/sysdeps/ieee754/ldbl-128/t_expl.h index 002fb8f172..6b94956ffe 100644 --- a/sysdeps/ieee754/ldbl-128/t_expl.h +++ b/sysdeps/ieee754/ldbl-128/t_expl.h @@ -1,5 +1,5 @@ /* Accurate table for expl(). - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-128/t_sincosl.c b/sysdeps/ieee754/ldbl-128/t_sincosl.c index 95fe01ec95..b04321dc12 100644 --- a/sysdeps/ieee754/ldbl-128/t_sincosl.c +++ b/sysdeps/ieee754/ldbl-128/t_sincosl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point sine and cosine tables. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-128/x2y2m1l.c b/sysdeps/ieee754/ldbl-128/x2y2m1l.c index 7bf9e297b7..575bcd812d 100644 --- a/sysdeps/ieee754/ldbl-128/x2y2m1l.c +++ b/sysdeps/ieee754/ldbl-128/x2y2m1l.c @@ -1,5 +1,5 @@ /* Compute x^2 + y^2 - 1, without large cancellation error. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/e_exp10l.c b/sysdeps/ieee754/ldbl-128ibm/e_exp10l.c index 49121ca315..5c68eb57b1 100644 --- a/sysdeps/ieee754/ldbl-128ibm/e_exp10l.c +++ b/sysdeps/ieee754/ldbl-128ibm/e_exp10l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/e_expl.c b/sysdeps/ieee754/ldbl-128ibm/e_expl.c index 65ef18532d..da71bb3b42 100644 --- a/sysdeps/ieee754/ldbl-128ibm/e_expl.c +++ b/sysdeps/ieee754/ldbl-128ibm/e_expl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point e^x. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek Partly based on double-precision code diff --git a/sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c b/sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c index 84c13de9b8..41a71dc864 100644 --- a/sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c +++ b/sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c @@ -1,5 +1,5 @@ /* Implementation of gamma function according to ISO C. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c b/sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c index 61feb367f7..29e8735659 100644 --- a/sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c +++ b/sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c @@ -1,7 +1,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/ieee754/ldbl-128ibm/gamma_productl.c b/sysdeps/ieee754/ldbl-128ibm/gamma_productl.c index 7c6186d230..e94338592b 100644 --- a/sysdeps/ieee754/ldbl-128ibm/gamma_productl.c +++ b/sysdeps/ieee754/ldbl-128ibm/gamma_productl.c @@ -1,5 +1,5 @@ /* Compute a product of X, X+1, ..., with an error estimate. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/ieee754.h b/sysdeps/ieee754/ldbl-128ibm/ieee754.h index 0c97a99207..52dbe8be9c 100644 --- a/sysdeps/ieee754/ldbl-128ibm/ieee754.h +++ b/sysdeps/ieee754/ldbl-128ibm/ieee754.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/k_cosl.c b/sysdeps/ieee754/ldbl-128ibm/k_cosl.c index 046f3b573c..5409f2b943 100644 --- a/sysdeps/ieee754/ldbl-128ibm/k_cosl.c +++ b/sysdeps/ieee754/ldbl-128ibm/k_cosl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point cosine on <-pi/4,pi/4>. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-128ibm/k_sincosl.c b/sysdeps/ieee754/ldbl-128ibm/k_sincosl.c index 3ba9d7e907..14d135ec1a 100644 --- a/sysdeps/ieee754/ldbl-128ibm/k_sincosl.c +++ b/sysdeps/ieee754/ldbl-128ibm/k_sincosl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point sine and cosine on <-pi/4,pi/4>. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-128ibm/k_sinl.c b/sysdeps/ieee754/ldbl-128ibm/k_sinl.c index b12ea134d5..0e53a62a84 100644 --- a/sysdeps/ieee754/ldbl-128ibm/k_sinl.c +++ b/sysdeps/ieee754/ldbl-128ibm/k_sinl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point sine on <-pi/4,pi/4>. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c b/sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c index e46fde74fc..5cdfbe1be9 100644 --- a/sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c +++ b/sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c b/sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c index c96852dfd9..532a119b7e 100644 --- a/sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c +++ b/sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/printf_fphex.c b/sysdeps/ieee754/ldbl-128ibm/printf_fphex.c index e0ec422b01..fb4c9aca70 100644 --- a/sysdeps/ieee754/ldbl-128ibm/printf_fphex.c +++ b/sysdeps/ieee754/ldbl-128ibm/printf_fphex.c @@ -1,5 +1,5 @@ /* Print floating point number in hexadecimal notation according to ISO C99. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-128ibm/s_ceill.c b/sysdeps/ieee754/ldbl-128ibm/s_ceill.c index c230d9e461..1389ccd683 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_ceill.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_ceill.c @@ -1,6 +1,6 @@ /* Ceil (round to +inf) long double floating-point values. IBM extended format long double version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/s_cprojl.c b/sysdeps/ieee754/ldbl-128ibm/s_cprojl.c index a344e9288f..9edec7dbb3 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_cprojl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_cprojl.c @@ -1,5 +1,5 @@ /* Compute projection of complex long double value to Riemann sphere. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c b/sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c index 3cc0bcd2a9..b2ac100d67 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c @@ -1,5 +1,5 @@ /* Complex hyperbole tangent for long double. IBM extended format version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-128ibm/s_ctanl.c b/sysdeps/ieee754/ldbl-128ibm/s_ctanl.c index ce1ec8afb8..c2c4c6f92b 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_ctanl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_ctanl.c @@ -1,5 +1,5 @@ /* Complex tangent function for long double. IBM extended format version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-128ibm/s_floorl.c b/sysdeps/ieee754/ldbl-128ibm/s_floorl.c index 9f28d98103..50bc47750c 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_floorl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_floorl.c @@ -1,6 +1,6 @@ /* Round to int long double floating-point values. IBM extended format long double version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/s_fmal.c b/sysdeps/ieee754/ldbl-128ibm/s_fmal.c index 5ad93332ed..46dedf83fb 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_fmal.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_fmal.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Flaherty . diff --git a/sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c b/sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c index 90586e822e..1fac09d88b 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c @@ -1,5 +1,5 @@ /* Return classification value corresponding to argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek , 1999. diff --git a/sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c b/sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c index bdd58f8f25..ffc9bbe9ac 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c @@ -1,5 +1,5 @@ /* Test for signaling NaN. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/s_llrintl.c b/sysdeps/ieee754/ldbl-128ibm/s_llrintl.c index 35039737bf..345f3905d6 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_llrintl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_llrintl.c @@ -1,6 +1,6 @@ /* Round to long long int long double floating-point values. IBM extended format long double version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/s_llroundl.c b/sysdeps/ieee754/ldbl-128ibm/s_llroundl.c index c402b08d90..4a6e2d5f83 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_llroundl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_llroundl.c @@ -1,6 +1,6 @@ /* Round to long long int long double floating-point values. IBM extended format long double version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/s_lrintl.c b/sysdeps/ieee754/ldbl-128ibm/s_lrintl.c index 49dbd42f5b..56c3a81cd3 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_lrintl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_lrintl.c @@ -1,6 +1,6 @@ /* Round to long int long double floating-point values. IBM extended format long double version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/s_lroundl.c b/sysdeps/ieee754/ldbl-128ibm/s_lroundl.c index c9f2e201a7..107778df3e 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_lroundl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_lroundl.c @@ -1,6 +1,6 @@ /* Round to long int long double floating-point values. IBM extended format long double version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c b/sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c index 92ced5218b..4e997a68f9 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c @@ -1,6 +1,6 @@ /* Round to int long double floating-point values without raising inexact. IBM extended format long double version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/s_remquol.c b/sysdeps/ieee754/ldbl-128ibm/s_remquol.c index 195e108ca9..aafffa529d 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_remquol.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_remquol.c @@ -1,5 +1,5 @@ /* Compute remainder and a congruent to the quotient. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek , 1999. diff --git a/sysdeps/ieee754/ldbl-128ibm/s_rintl.c b/sysdeps/ieee754/ldbl-128ibm/s_rintl.c index 5fd6bb8702..20b75dd214 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_rintl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_rintl.c @@ -1,6 +1,6 @@ /* Round to int long double floating-point values. IBM extended format long double version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/s_roundl.c b/sysdeps/ieee754/ldbl-128ibm/s_roundl.c index 8cc451b134..4dd0cc9ed7 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_roundl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_roundl.c @@ -1,6 +1,6 @@ /* Round to int long double floating-point values. IBM extended format long double version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/s_signbitl.c b/sysdeps/ieee754/ldbl-128ibm/s_signbitl.c index aecb1fd792..6d25711064 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_signbitl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_signbitl.c @@ -1,5 +1,5 @@ /* Return nonzero value if number is negative. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-128ibm/s_sincosl.c b/sysdeps/ieee754/ldbl-128ibm/s_sincosl.c index a9e2f3d19a..57971f9c9c 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_sincosl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_sincosl.c @@ -1,5 +1,5 @@ /* Compute sine and cosine of argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997 and Jakub Jelinek . diff --git a/sysdeps/ieee754/ldbl-128ibm/s_truncl.c b/sysdeps/ieee754/ldbl-128ibm/s_truncl.c index 2765b63132..490ad266d4 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_truncl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_truncl.c @@ -1,6 +1,6 @@ /* Truncate (toward zero) long double floating-point values. IBM extended format long double version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/strtold_l.c b/sysdeps/ieee754/ldbl-128ibm/strtold_l.c index 93a80c5eec..0830a10e33 100644 --- a/sysdeps/ieee754/ldbl-128ibm/strtold_l.c +++ b/sysdeps/ieee754/ldbl-128ibm/strtold_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-128ibm/t_sincosl.c b/sysdeps/ieee754/ldbl-128ibm/t_sincosl.c index e4f54b05b8..dcc36bda1d 100644 --- a/sysdeps/ieee754/ldbl-128ibm/t_sincosl.c +++ b/sysdeps/ieee754/ldbl-128ibm/t_sincosl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point sine and cosine tables. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c b/sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c index 06dcf02ffe..d533339c9e 100644 --- a/sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c +++ b/sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c @@ -1,5 +1,5 @@ /* Compute x^2 + y^2 - 1, without large cancellation error. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-64-128/strtold_l.c b/sysdeps/ieee754/ldbl-64-128/strtold_l.c index e9b33f2d80..dfa79e99fa 100644 --- a/sysdeps/ieee754/ldbl-64-128/strtold_l.c +++ b/sysdeps/ieee754/ldbl-64-128/strtold_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-96/e_gammal_r.c b/sysdeps/ieee754/ldbl-96/e_gammal_r.c index 7cb3e8563a..477c3a61d3 100644 --- a/sysdeps/ieee754/ldbl-96/e_gammal_r.c +++ b/sysdeps/ieee754/ldbl-96/e_gammal_r.c @@ -1,5 +1,5 @@ /* Implementation of gamma function according to ISO C. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-96/e_rem_pio2l.c b/sysdeps/ieee754/ldbl-96/e_rem_pio2l.c index 18e6047b65..e18be6ee0c 100644 --- a/sysdeps/ieee754/ldbl-96/e_rem_pio2l.c +++ b/sysdeps/ieee754/ldbl-96/e_rem_pio2l.c @@ -1,5 +1,5 @@ /* Extended-precision floating point argument reduction. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on quad-precision code by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-96/gamma_product.c b/sysdeps/ieee754/ldbl-96/gamma_product.c index d464e70842..214745624f 100644 --- a/sysdeps/ieee754/ldbl-96/gamma_product.c +++ b/sysdeps/ieee754/ldbl-96/gamma_product.c @@ -1,5 +1,5 @@ /* Compute a product of X, X+1, ..., with an error estimate. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-96/gamma_productl.c b/sysdeps/ieee754/ldbl-96/gamma_productl.c index 157dbab9fb..2c87649677 100644 --- a/sysdeps/ieee754/ldbl-96/gamma_productl.c +++ b/sysdeps/ieee754/ldbl-96/gamma_productl.c @@ -1,5 +1,5 @@ /* Compute a product of X, X+1, ..., with an error estimate. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-96/k_cosl.c b/sysdeps/ieee754/ldbl-96/k_cosl.c index 52ce076ca5..daf7c060d2 100644 --- a/sysdeps/ieee754/ldbl-96/k_cosl.c +++ b/sysdeps/ieee754/ldbl-96/k_cosl.c @@ -1,5 +1,5 @@ /* Extended-precision floating point cosine on <-pi/4,pi/4>. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on quad-precision cosine by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-96/k_sinl.c b/sysdeps/ieee754/ldbl-96/k_sinl.c index 15581944a9..f2d1c860e8 100644 --- a/sysdeps/ieee754/ldbl-96/k_sinl.c +++ b/sysdeps/ieee754/ldbl-96/k_sinl.c @@ -1,5 +1,5 @@ /* Quad-precision floating point sine on <-pi/4,pi/4>. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on quad-precision sine by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-96/ldbl2mpn.c b/sysdeps/ieee754/ldbl-96/ldbl2mpn.c index 3f85e0ae90..be8b93ffa5 100644 --- a/sysdeps/ieee754/ldbl-96/ldbl2mpn.c +++ b/sysdeps/ieee754/ldbl-96/ldbl2mpn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-96/mpn2ldbl.c b/sysdeps/ieee754/ldbl-96/mpn2ldbl.c index ab6f4e0594..8fdb335fe4 100644 --- a/sysdeps/ieee754/ldbl-96/mpn2ldbl.c +++ b/sysdeps/ieee754/ldbl-96/mpn2ldbl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-96/printf_fphex.c b/sysdeps/ieee754/ldbl-96/printf_fphex.c index 715c93b500..798c788485 100644 --- a/sysdeps/ieee754/ldbl-96/printf_fphex.c +++ b/sysdeps/ieee754/ldbl-96/printf_fphex.c @@ -1,5 +1,5 @@ /* Print floating point number in hexadecimal notation according to ISO C99. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-96/s_cbrtl.c b/sysdeps/ieee754/ldbl-96/s_cbrtl.c index e6b2f2540e..49a6891642 100644 --- a/sysdeps/ieee754/ldbl-96/s_cbrtl.c +++ b/sysdeps/ieee754/ldbl-96/s_cbrtl.c @@ -1,5 +1,5 @@ /* Compute cubic root of double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Dirk Alboth and Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-96/s_fma.c b/sysdeps/ieee754/ldbl-96/s_fma.c index 88b902fcff..fde2811040 100644 --- a/sysdeps/ieee754/ldbl-96/s_fma.c +++ b/sysdeps/ieee754/ldbl-96/s_fma.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2010. diff --git a/sysdeps/ieee754/ldbl-96/s_fmal.c b/sysdeps/ieee754/ldbl-96/s_fmal.c index a1cc0fd1f9..0564321354 100644 --- a/sysdeps/ieee754/ldbl-96/s_fmal.c +++ b/sysdeps/ieee754/ldbl-96/s_fmal.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2010. diff --git a/sysdeps/ieee754/ldbl-96/s_issignalingl.c b/sysdeps/ieee754/ldbl-96/s_issignalingl.c index 107aff1516..bbb98735f5 100644 --- a/sysdeps/ieee754/ldbl-96/s_issignalingl.c +++ b/sysdeps/ieee754/ldbl-96/s_issignalingl.c @@ -1,5 +1,5 @@ /* Test for signaling NaN. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-96/s_llrintl.c b/sysdeps/ieee754/ldbl-96/s_llrintl.c index 678ecd48b3..0102f18242 100644 --- a/sysdeps/ieee754/ldbl-96/s_llrintl.c +++ b/sysdeps/ieee754/ldbl-96/s_llrintl.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-96/s_llroundl.c b/sysdeps/ieee754/ldbl-96/s_llroundl.c index 6074b962bf..1559540a7a 100644 --- a/sysdeps/ieee754/ldbl-96/s_llroundl.c +++ b/sysdeps/ieee754/ldbl-96/s_llroundl.c @@ -1,5 +1,5 @@ /* Round long double value to long long int. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-96/s_lrintl.c b/sysdeps/ieee754/ldbl-96/s_lrintl.c index de18396737..a668934468 100644 --- a/sysdeps/ieee754/ldbl-96/s_lrintl.c +++ b/sysdeps/ieee754/ldbl-96/s_lrintl.c @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-96/s_lroundl.c b/sysdeps/ieee754/ldbl-96/s_lroundl.c index 790d5b763a..a5c08d6391 100644 --- a/sysdeps/ieee754/ldbl-96/s_lroundl.c +++ b/sysdeps/ieee754/ldbl-96/s_lroundl.c @@ -1,5 +1,5 @@ /* Round long double value to long int. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-96/s_remquol.c b/sysdeps/ieee754/ldbl-96/s_remquol.c index c546821767..866935c6e7 100644 --- a/sysdeps/ieee754/ldbl-96/s_remquol.c +++ b/sysdeps/ieee754/ldbl-96/s_remquol.c @@ -1,5 +1,5 @@ /* Compute remainder and a congruent to the quotient. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-96/s_roundl.c b/sysdeps/ieee754/ldbl-96/s_roundl.c index 9e88bdda6d..e16e9c6f65 100644 --- a/sysdeps/ieee754/ldbl-96/s_roundl.c +++ b/sysdeps/ieee754/ldbl-96/s_roundl.c @@ -1,5 +1,5 @@ /* Round long double to integer away from zero. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-96/s_signbitl.c b/sysdeps/ieee754/ldbl-96/s_signbitl.c index bc2ac303ff..8256d9ddb0 100644 --- a/sysdeps/ieee754/ldbl-96/s_signbitl.c +++ b/sysdeps/ieee754/ldbl-96/s_signbitl.c @@ -1,5 +1,5 @@ /* Return nonzero value if number is negative. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-96/s_sincosl.c b/sysdeps/ieee754/ldbl-96/s_sincosl.c index 5a470ad3b3..af8f899c24 100644 --- a/sysdeps/ieee754/ldbl-96/s_sincosl.c +++ b/sysdeps/ieee754/ldbl-96/s_sincosl.c @@ -1,5 +1,5 @@ /* Compute sine and cosine of argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/ieee754/ldbl-96/strtold_l.c b/sysdeps/ieee754/ldbl-96/strtold_l.c index dccf98c461..82c33e52d6 100644 --- a/sysdeps/ieee754/ldbl-96/strtold_l.c +++ b/sysdeps/ieee754/ldbl-96/strtold_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-96/t_sincosl.c b/sysdeps/ieee754/ldbl-96/t_sincosl.c index 02a15009ab..da8fcfa112 100644 --- a/sysdeps/ieee754/ldbl-96/t_sincosl.c +++ b/sysdeps/ieee754/ldbl-96/t_sincosl.c @@ -1,5 +1,5 @@ /* Extended-precision floating point sine and cosine tables. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on quad-precision tables by Jakub Jelinek diff --git a/sysdeps/ieee754/ldbl-96/w_expl.c b/sysdeps/ieee754/ldbl-96/w_expl.c index 8e8dd1864c..af221184d1 100644 --- a/sysdeps/ieee754/ldbl-96/w_expl.c +++ b/sysdeps/ieee754/ldbl-96/w_expl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/ieee754/ldbl-96/x2y2m1.c b/sysdeps/ieee754/ldbl-96/x2y2m1.c index f5185b27d7..6ae2a63cbe 100644 --- a/sysdeps/ieee754/ldbl-96/x2y2m1.c +++ b/sysdeps/ieee754/ldbl-96/x2y2m1.c @@ -1,5 +1,5 @@ /* Compute x^2 + y^2 - 1, without large cancellation error. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-96/x2y2m1l.c b/sysdeps/ieee754/ldbl-96/x2y2m1l.c index 7bf9e297b7..575bcd812d 100644 --- a/sysdeps/ieee754/ldbl-96/x2y2m1l.c +++ b/sysdeps/ieee754/ldbl-96/x2y2m1l.c @@ -1,5 +1,5 @@ /* Compute x^2 + y^2 - 1, without large cancellation error. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-compat.c b/sysdeps/ieee754/ldbl-opt/nldbl-compat.c index dc0b8a1242..a8e6ca0dcd 100644 --- a/sysdeps/ieee754/ldbl-opt/nldbl-compat.c +++ b/sysdeps/ieee754/ldbl-opt/nldbl-compat.c @@ -1,5 +1,5 @@ /* *printf* family compatibility routines for IEEE double as long double - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-compat.h b/sysdeps/ieee754/ldbl-opt/nldbl-compat.h index c1af92f422..c49417a816 100644 --- a/sysdeps/ieee754/ldbl-opt/nldbl-compat.h +++ b/sysdeps/ieee754/ldbl-opt/nldbl-compat.h @@ -1,5 +1,5 @@ /* Prototypes for compatibility double == long double entry points. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/sysdeps/init_array/elf-init.c b/sysdeps/init_array/elf-init.c index c6467aac87..a0f819b0e7 100644 --- a/sysdeps/init_array/elf-init.c +++ b/sysdeps/init_array/elf-init.c @@ -1,5 +1,5 @@ /* Startup support for ELF initializers/finalizers in the main executable. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/init_array/gmon-start.c b/sysdeps/init_array/gmon-start.c index 6f2d6dc8b9..9c33ce782d 100644 --- a/sysdeps/init_array/gmon-start.c +++ b/sysdeps/init_array/gmon-start.c @@ -1,5 +1,5 @@ /* gmon startup hook using .preinit_array. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/Makefile b/sysdeps/mach/Makefile index 2baea3e628..634ba80084 100644 --- a/sysdeps/mach/Makefile +++ b/sysdeps/mach/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1993-2013 Free Software Foundation, Inc. +# Copyright (C) 1993-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/_strerror.c b/sysdeps/mach/_strerror.c index fe60b4c1a5..e263510565 100644 --- a/sysdeps/mach/_strerror.c +++ b/sysdeps/mach/_strerror.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/adjtime.c b/sysdeps/mach/adjtime.c index 4c6a8eb93e..112b4a742b 100644 --- a/sysdeps/mach/adjtime.c +++ b/sysdeps/mach/adjtime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/bits/libc-lock.h b/sysdeps/mach/bits/libc-lock.h index 8d48aaa27d..40b7f2bcd3 100644 --- a/sysdeps/mach/bits/libc-lock.h +++ b/sysdeps/mach/bits/libc-lock.h @@ -1,5 +1,5 @@ /* libc-internal interface for mutex locks. Mach cthreads version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/getloadavg.c b/sysdeps/mach/getloadavg.c index 0716b96d2e..48652d3e58 100644 --- a/sysdeps/mach/getloadavg.c +++ b/sysdeps/mach/getloadavg.c @@ -1,5 +1,5 @@ /* Get system load averages. Mach version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/getpagesize.c b/sysdeps/mach/getpagesize.c index 8bf49c9fc0..e785966484 100644 --- a/sysdeps/mach/getpagesize.c +++ b/sysdeps/mach/getpagesize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/getsysstats.c b/sysdeps/mach/getsysstats.c index 075511308c..a5086c6476 100644 --- a/sysdeps/mach/getsysstats.c +++ b/sysdeps/mach/getsysstats.c @@ -1,5 +1,5 @@ /* System dependent pieces of sysconf; Mach version - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/gettimeofday.c b/sysdeps/mach/gettimeofday.c index 2e9699bdd8..0a62fd758c 100644 --- a/sysdeps/mach/gettimeofday.c +++ b/sysdeps/mach/gettimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/Makefile b/sysdeps/mach/hurd/Makefile index 7ff9a925c3..fe028316ae 100644 --- a/sysdeps/mach/hurd/Makefile +++ b/sysdeps/mach/hurd/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1993-2013 Free Software Foundation, Inc. +# Copyright (C) 1993-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/_exit.c b/sysdeps/mach/hurd/_exit.c index 5b75b580f9..3f7e8ae391 100644 --- a/sysdeps/mach/hurd/_exit.c +++ b/sysdeps/mach/hurd/_exit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/accept.c b/sysdeps/mach/hurd/accept.c index 9973e7ce95..4a65db0abe 100644 --- a/sysdeps/mach/hurd/accept.c +++ b/sysdeps/mach/hurd/accept.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/mach/hurd/accept4.c b/sysdeps/mach/hurd/accept4.c index 21e8df5c40..142eafc780 100644 --- a/sysdeps/mach/hurd/accept4.c +++ b/sysdeps/mach/hurd/accept4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/mach/hurd/access.c b/sysdeps/mach/hurd/access.c index 8ac3fa5ac0..3a54df7580 100644 --- a/sysdeps/mach/hurd/access.c +++ b/sysdeps/mach/hurd/access.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/adjtime.c b/sysdeps/mach/hurd/adjtime.c index 69f75528dc..4ff4dc1e5d 100644 --- a/sysdeps/mach/hurd/adjtime.c +++ b/sysdeps/mach/hurd/adjtime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bind.c b/sysdeps/mach/hurd/bind.c index 1704e94140..17ef22a7d0 100644 --- a/sysdeps/mach/hurd/bind.c +++ b/sysdeps/mach/hurd/bind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bits/fcntl.h b/sysdeps/mach/hurd/bits/fcntl.h index 9d598a1bf2..135aba3bc9 100644 --- a/sysdeps/mach/hurd/bits/fcntl.h +++ b/sysdeps/mach/hurd/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for GNU. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bits/ioctls.h b/sysdeps/mach/hurd/bits/ioctls.h index fe3ca08264..e5203ad7e9 100644 --- a/sysdeps/mach/hurd/bits/ioctls.h +++ b/sysdeps/mach/hurd/bits/ioctls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bits/libc-lock.h b/sysdeps/mach/hurd/bits/libc-lock.h index 4ffb311036..28c69fa0b4 100644 --- a/sysdeps/mach/hurd/bits/libc-lock.h +++ b/sysdeps/mach/hurd/bits/libc-lock.h @@ -1,5 +1,5 @@ /* libc-internal interface for mutex locks. Hurd version using Mach cthreads. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bits/libc-tsd.h b/sysdeps/mach/hurd/bits/libc-tsd.h index d2480edf33..e2ea911a2c 100644 --- a/sysdeps/mach/hurd/bits/libc-tsd.h +++ b/sysdeps/mach/hurd/bits/libc-tsd.h @@ -1,5 +1,5 @@ /* libc-internal interface for thread-specific data. Hurd version. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bits/local_lim.h b/sysdeps/mach/hurd/bits/local_lim.h index 922ec90114..f7cc86c003 100644 --- a/sysdeps/mach/hurd/bits/local_lim.h +++ b/sysdeps/mach/hurd/bits/local_lim.h @@ -1,5 +1,5 @@ /* Minimum guaranteed maximum values for system limits. Hurd version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bits/param.h b/sysdeps/mach/hurd/bits/param.h index 50b4fb0247..dac789cce6 100644 --- a/sysdeps/mach/hurd/bits/param.h +++ b/sysdeps/mach/hurd/bits/param.h @@ -1,5 +1,5 @@ /* Old-style Unix parameters and limits. Hurd version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bits/posix_opt.h b/sysdeps/mach/hurd/bits/posix_opt.h index 940e3768a0..a897cb1640 100644 --- a/sysdeps/mach/hurd/bits/posix_opt.h +++ b/sysdeps/mach/hurd/bits/posix_opt.h @@ -1,5 +1,5 @@ /* Define POSIX options for GNU/Hurd. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bits/socket.h b/sysdeps/mach/hurd/bits/socket.h index 931cc07896..e5f783b7cc 100644 --- a/sysdeps/mach/hurd/bits/socket.h +++ b/sysdeps/mach/hurd/bits/socket.h @@ -1,5 +1,5 @@ /* System-specific socket constants and types. Hurd version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/mach/hurd/bits/stat.h b/sysdeps/mach/hurd/bits/stat.h index be9defd385..e6bec34660 100644 --- a/sysdeps/mach/hurd/bits/stat.h +++ b/sysdeps/mach/hurd/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bits/statfs.h b/sysdeps/mach/hurd/bits/statfs.h index 205c7d617a..ef15f9133e 100644 --- a/sysdeps/mach/hurd/bits/statfs.h +++ b/sysdeps/mach/hurd/bits/statfs.h @@ -1,5 +1,5 @@ /* Definition of `struct statfs', information about a filesystem. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bits/statvfs.h b/sysdeps/mach/hurd/bits/statvfs.h index 68bd058b4d..857c511212 100644 --- a/sysdeps/mach/hurd/bits/statvfs.h +++ b/sysdeps/mach/hurd/bits/statvfs.h @@ -1,5 +1,5 @@ /* Definition of `struct statvfs', information about a filesystem. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/bits/typesizes.h b/sysdeps/mach/hurd/bits/typesizes.h index 4a64aea89a..808c3bdf84 100644 --- a/sysdeps/mach/hurd/bits/typesizes.h +++ b/sysdeps/mach/hurd/bits/typesizes.h @@ -1,5 +1,5 @@ /* bits/typesizes.h -- underlying types for *_t. Hurd version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/brk.c b/sysdeps/mach/hurd/brk.c index 39dd0394b6..d97f7418db 100644 --- a/sysdeps/mach/hurd/brk.c +++ b/sysdeps/mach/hurd/brk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/chdir.c b/sysdeps/mach/hurd/chdir.c index 07657a3e9a..c00a0fbbd1 100644 --- a/sysdeps/mach/hurd/chdir.c +++ b/sysdeps/mach/hurd/chdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/check_fds.c b/sysdeps/mach/hurd/check_fds.c index cf20643676..a35f192f4d 100644 --- a/sysdeps/mach/hurd/check_fds.c +++ b/sysdeps/mach/hurd/check_fds.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/chflags.c b/sysdeps/mach/hurd/chflags.c index 0f4614c8be..938f81d0d3 100644 --- a/sysdeps/mach/hurd/chflags.c +++ b/sysdeps/mach/hurd/chflags.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/chmod.c b/sysdeps/mach/hurd/chmod.c index 9e65aece43..d969b8a158 100644 --- a/sysdeps/mach/hurd/chmod.c +++ b/sysdeps/mach/hurd/chmod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/chown.c b/sysdeps/mach/hurd/chown.c index c1f519a834..8c5b67d420 100644 --- a/sysdeps/mach/hurd/chown.c +++ b/sysdeps/mach/hurd/chown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/chroot.c b/sysdeps/mach/hurd/chroot.c index 9bc32a7115..08bb701d7e 100644 --- a/sysdeps/mach/hurd/chroot.c +++ b/sysdeps/mach/hurd/chroot.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/clock.c b/sysdeps/mach/hurd/clock.c index 61a66bee58..49a1845d9d 100644 --- a/sysdeps/mach/hurd/clock.c +++ b/sysdeps/mach/hurd/clock.c @@ -1,5 +1,5 @@ /* Return the CPU time used by the program so far. Hurd version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/close.c b/sysdeps/mach/hurd/close.c index 2f5a491988..ca4ac9d11e 100644 --- a/sysdeps/mach/hurd/close.c +++ b/sysdeps/mach/hurd/close.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/closedir.c b/sysdeps/mach/hurd/closedir.c index 7da7429cb6..9ae1a2e3ec 100644 --- a/sysdeps/mach/hurd/closedir.c +++ b/sysdeps/mach/hurd/closedir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/connect.c b/sysdeps/mach/hurd/connect.c index 60856aec3f..24dd616e3b 100644 --- a/sysdeps/mach/hurd/connect.c +++ b/sysdeps/mach/hurd/connect.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/cthreads.c b/sysdeps/mach/hurd/cthreads.c index 5b5ed51feb..d4c8dd2d1a 100644 --- a/sysdeps/mach/hurd/cthreads.c +++ b/sysdeps/mach/hurd/cthreads.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/device-nrs.h b/sysdeps/mach/hurd/device-nrs.h index 82b58d86fc..27dd9951c9 100644 --- a/sysdeps/mach/hurd/device-nrs.h +++ b/sysdeps/mach/hurd/device-nrs.h @@ -1,5 +1,5 @@ /* Device numbers of devices used in the implementation. Hurd version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/dirfd.c b/sysdeps/mach/hurd/dirfd.c index 91206d4e56..b3a66fa042 100644 --- a/sysdeps/mach/hurd/dirfd.c +++ b/sysdeps/mach/hurd/dirfd.c @@ -1,5 +1,5 @@ /* dirfd -- Return the file descriptor used by a DIR stream. Hurd version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/dirstream.h b/sysdeps/mach/hurd/dirstream.h index db53b71390..a5b2d1fd10 100644 --- a/sysdeps/mach/hurd/dirstream.h +++ b/sysdeps/mach/hurd/dirstream.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/dl-execstack.c b/sysdeps/mach/hurd/dl-execstack.c index f5aff331ed..9069efb9cd 100644 --- a/sysdeps/mach/hurd/dl-execstack.c +++ b/sysdeps/mach/hurd/dl-execstack.c @@ -1,5 +1,5 @@ /* Stack executability handling for GNU dynamic linker. Hurd version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c index 1788ede94e..7f79d1a415 100644 --- a/sysdeps/mach/hurd/dl-sysdep.c +++ b/sysdeps/mach/hurd/dl-sysdep.c @@ -1,5 +1,5 @@ /* Operating system support for run-time dynamic linker. Hurd version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/dl-sysdep.h b/sysdeps/mach/hurd/dl-sysdep.h index 0e7cac4ab0..e7e209625b 100644 --- a/sysdeps/mach/hurd/dl-sysdep.h +++ b/sysdeps/mach/hurd/dl-sysdep.h @@ -1,5 +1,5 @@ /* System-specific settings for dynamic linker code. Hurd version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/dup2.c b/sysdeps/mach/hurd/dup2.c index a7af1277ac..2774896831 100644 --- a/sysdeps/mach/hurd/dup2.c +++ b/sysdeps/mach/hurd/dup2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/mach/hurd/dup3.c b/sysdeps/mach/hurd/dup3.c index 415fa2ad17..3f9dd10248 100644 --- a/sysdeps/mach/hurd/dup3.c +++ b/sysdeps/mach/hurd/dup3.c @@ -1,5 +1,5 @@ /* Duplicate a file descriptor to a given number, with flags. Hurd version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/mach/hurd/eloop-threshold.h b/sysdeps/mach/hurd/eloop-threshold.h index 8d207bd412..bb923ea19e 100644 --- a/sysdeps/mach/hurd/eloop-threshold.h +++ b/sysdeps/mach/hurd/eloop-threshold.h @@ -1,5 +1,5 @@ /* Threshold at which to diagnose ELOOP. Hurd version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/enbl-secure.c b/sysdeps/mach/hurd/enbl-secure.c index 583fd59bcb..e3f8f01d3f 100644 --- a/sysdeps/mach/hurd/enbl-secure.c +++ b/sysdeps/mach/hurd/enbl-secure.c @@ -1,5 +1,5 @@ /* Define and initialize the `__libc_enable_secure' flag. Hurd version. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/errlist.c b/sysdeps/mach/hurd/errlist.c index 1416e34a9a..f9193ff843 100644 --- a/sysdeps/mach/hurd/errlist.c +++ b/sysdeps/mach/hurd/errlist.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/errno-loc.c b/sysdeps/mach/hurd/errno-loc.c index 73e5e79ab9..7b7380bc00 100644 --- a/sysdeps/mach/hurd/errno-loc.c +++ b/sysdeps/mach/hurd/errno-loc.c @@ -1,5 +1,5 @@ /* __errno_location -- helper function for locating per-thread errno value - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/errnos.awk b/sysdeps/mach/hurd/errnos.awk index 2434daab22..e6306d6269 100644 --- a/sysdeps/mach/hurd/errnos.awk +++ b/sysdeps/mach/hurd/errnos.awk @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/euidaccess.c b/sysdeps/mach/hurd/euidaccess.c index ad722cdfa5..5b96a3c6a7 100644 --- a/sysdeps/mach/hurd/euidaccess.c +++ b/sysdeps/mach/hurd/euidaccess.c @@ -1,5 +1,5 @@ /* Test for access to FILE using effective UID and GID. Hurd version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/execve.c b/sysdeps/mach/hurd/execve.c index 650a9b9658..ffdaa8a183 100644 --- a/sysdeps/mach/hurd/execve.c +++ b/sysdeps/mach/hurd/execve.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/faccessat.c b/sysdeps/mach/hurd/faccessat.c index bf88b37f9d..91bec43c06 100644 --- a/sysdeps/mach/hurd/faccessat.c +++ b/sysdeps/mach/hurd/faccessat.c @@ -1,5 +1,5 @@ /* Test for access to file, relative to open directory. Hurd version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fchdir.c b/sysdeps/mach/hurd/fchdir.c index bd1f5b3d32..8f165373b8 100644 --- a/sysdeps/mach/hurd/fchdir.c +++ b/sysdeps/mach/hurd/fchdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fchflags.c b/sysdeps/mach/hurd/fchflags.c index 582151b885..6d01b1a35b 100644 --- a/sysdeps/mach/hurd/fchflags.c +++ b/sysdeps/mach/hurd/fchflags.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fchmod.c b/sysdeps/mach/hurd/fchmod.c index 94835d35d7..32dc0ac69f 100644 --- a/sysdeps/mach/hurd/fchmod.c +++ b/sysdeps/mach/hurd/fchmod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fchmodat.c b/sysdeps/mach/hurd/fchmodat.c index ac4cd326a0..90bdd7e782 100644 --- a/sysdeps/mach/hurd/fchmodat.c +++ b/sysdeps/mach/hurd/fchmodat.c @@ -1,5 +1,5 @@ /* Change the protections of file relative to open directory. Hurd version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fchown.c b/sysdeps/mach/hurd/fchown.c index cbb5b92d3e..116491612e 100644 --- a/sysdeps/mach/hurd/fchown.c +++ b/sysdeps/mach/hurd/fchown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fchownat.c b/sysdeps/mach/hurd/fchownat.c index 46a38681da..b0b82ce18f 100644 --- a/sysdeps/mach/hurd/fchownat.c +++ b/sysdeps/mach/hurd/fchownat.c @@ -1,5 +1,5 @@ /* Change owner and group of a file relative to open directory. Hurd version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fcntl.c b/sysdeps/mach/hurd/fcntl.c index 70180fa9c6..813f3370ed 100644 --- a/sysdeps/mach/hurd/fcntl.c +++ b/sysdeps/mach/hurd/fcntl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fdatasync.c b/sysdeps/mach/hurd/fdatasync.c index a7804e3ffd..374c9ab494 100644 --- a/sysdeps/mach/hurd/fdatasync.c +++ b/sysdeps/mach/hurd/fdatasync.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fdopendir.c b/sysdeps/mach/hurd/fdopendir.c index f8c623ec60..3879294d3d 100644 --- a/sysdeps/mach/hurd/fdopendir.c +++ b/sysdeps/mach/hurd/fdopendir.c @@ -1,5 +1,5 @@ /* Open a directory stream from a file descriptor. Hurd version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fexecve.c b/sysdeps/mach/hurd/fexecve.c index 10c923b3c6..d9f59c26a5 100644 --- a/sysdeps/mach/hurd/fexecve.c +++ b/sysdeps/mach/hurd/fexecve.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fgetxattr.c b/sysdeps/mach/hurd/fgetxattr.c index 0cc5c62d30..eb3272f8f7 100644 --- a/sysdeps/mach/hurd/fgetxattr.c +++ b/sysdeps/mach/hurd/fgetxattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/flistxattr.c b/sysdeps/mach/hurd/flistxattr.c index ab17e8dc74..4ef6fce57d 100644 --- a/sysdeps/mach/hurd/flistxattr.c +++ b/sysdeps/mach/hurd/flistxattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/flock.c b/sysdeps/mach/hurd/flock.c index 88cd8b2310..b3b8a79087 100644 --- a/sysdeps/mach/hurd/flock.c +++ b/sysdeps/mach/hurd/flock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fork.c b/sysdeps/mach/hurd/fork.c index 321421fbbc..60c34c7620 100644 --- a/sysdeps/mach/hurd/fork.c +++ b/sysdeps/mach/hurd/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fpathconf.c b/sysdeps/mach/hurd/fpathconf.c index 49bfd5e723..6e9d579fa4 100644 --- a/sysdeps/mach/hurd/fpathconf.c +++ b/sysdeps/mach/hurd/fpathconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fremovexattr.c b/sysdeps/mach/hurd/fremovexattr.c index a8ff411406..5dbcef4466 100644 --- a/sysdeps/mach/hurd/fremovexattr.c +++ b/sysdeps/mach/hurd/fremovexattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fsetxattr.c b/sysdeps/mach/hurd/fsetxattr.c index 3eb995aa59..7f793232f1 100644 --- a/sysdeps/mach/hurd/fsetxattr.c +++ b/sysdeps/mach/hurd/fsetxattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fstatfs.c b/sysdeps/mach/hurd/fstatfs.c index e4295ec026..c202610a10 100644 --- a/sysdeps/mach/hurd/fstatfs.c +++ b/sysdeps/mach/hurd/fstatfs.c @@ -1,5 +1,5 @@ /* fstatfs -- Return information about the filesystem on which FD resides. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fstatfs64.c b/sysdeps/mach/hurd/fstatfs64.c index cb7bc9cfc1..dcfeb13dce 100644 --- a/sysdeps/mach/hurd/fstatfs64.c +++ b/sysdeps/mach/hurd/fstatfs64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fstatvfs.c b/sysdeps/mach/hurd/fstatvfs.c index 42c29090df..405b085279 100644 --- a/sysdeps/mach/hurd/fstatvfs.c +++ b/sysdeps/mach/hurd/fstatvfs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fstatvfs64.c b/sysdeps/mach/hurd/fstatvfs64.c index e5313175b3..d9a27a1cb6 100644 --- a/sysdeps/mach/hurd/fstatvfs64.c +++ b/sysdeps/mach/hurd/fstatvfs64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fsync.c b/sysdeps/mach/hurd/fsync.c index 8b4913cf53..ef31f55272 100644 --- a/sysdeps/mach/hurd/fsync.c +++ b/sysdeps/mach/hurd/fsync.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/ftruncate.c b/sysdeps/mach/hurd/ftruncate.c index f1a21fb126..78018f7e47 100644 --- a/sysdeps/mach/hurd/ftruncate.c +++ b/sysdeps/mach/hurd/ftruncate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/futimes.c b/sysdeps/mach/hurd/futimes.c index 5fc0474ab5..c325d44556 100644 --- a/sysdeps/mach/hurd/futimes.c +++ b/sysdeps/mach/hurd/futimes.c @@ -1,5 +1,5 @@ /* futimes -- change access and modification times of open file. Hurd version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fxstat.c b/sysdeps/mach/hurd/fxstat.c index bb2d7b8df2..e4c32379f6 100644 --- a/sysdeps/mach/hurd/fxstat.c +++ b/sysdeps/mach/hurd/fxstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fxstat64.c b/sysdeps/mach/hurd/fxstat64.c index ba89a136b8..e96b0b408f 100644 --- a/sysdeps/mach/hurd/fxstat64.c +++ b/sysdeps/mach/hurd/fxstat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fxstatat.c b/sysdeps/mach/hurd/fxstatat.c index f26d395fea..627905cc02 100644 --- a/sysdeps/mach/hurd/fxstatat.c +++ b/sysdeps/mach/hurd/fxstatat.c @@ -1,5 +1,5 @@ /* Get information about file named relative to open directory. Hurd version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/fxstatat64.c b/sysdeps/mach/hurd/fxstatat64.c index 710c612e4d..61b0f8b6d9 100644 --- a/sysdeps/mach/hurd/fxstatat64.c +++ b/sysdeps/mach/hurd/fxstatat64.c @@ -1,5 +1,5 @@ /* Get information about file named relative to open directory. Hurd version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getclktck.c b/sysdeps/mach/hurd/getclktck.c index 2eea58df6a..b4911a68bf 100644 --- a/sysdeps/mach/hurd/getclktck.c +++ b/sysdeps/mach/hurd/getclktck.c @@ -1,5 +1,5 @@ /* Return run-time value of CLK_TCK for Hurd. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getcwd.c b/sysdeps/mach/hurd/getcwd.c index 10822d2a78..d1ac7aef2c 100644 --- a/sysdeps/mach/hurd/getcwd.c +++ b/sysdeps/mach/hurd/getcwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getdomain.c b/sysdeps/mach/hurd/getdomain.c index 2e67efe2aa..33cb49d580 100644 --- a/sysdeps/mach/hurd/getdomain.c +++ b/sysdeps/mach/hurd/getdomain.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getdtsz.c b/sysdeps/mach/hurd/getdtsz.c index db5104c6b4..297c4a6cb1 100644 --- a/sysdeps/mach/hurd/getdtsz.c +++ b/sysdeps/mach/hurd/getdtsz.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getegid.c b/sysdeps/mach/hurd/getegid.c index dac104d006..98149ef992 100644 --- a/sysdeps/mach/hurd/getegid.c +++ b/sysdeps/mach/hurd/getegid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/geteuid.c b/sysdeps/mach/hurd/geteuid.c index 32e59c2b1b..da9c08d8ac 100644 --- a/sysdeps/mach/hurd/geteuid.c +++ b/sysdeps/mach/hurd/geteuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getgid.c b/sysdeps/mach/hurd/getgid.c index 3c6397d2f4..fd73f3d232 100644 --- a/sysdeps/mach/hurd/getgid.c +++ b/sysdeps/mach/hurd/getgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getgroups.c b/sysdeps/mach/hurd/getgroups.c index 3193192d77..a2eaaf2d96 100644 --- a/sysdeps/mach/hurd/getgroups.c +++ b/sysdeps/mach/hurd/getgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/gethostid.c b/sysdeps/mach/hurd/gethostid.c index 4fc3016977..4e107f2510 100644 --- a/sysdeps/mach/hurd/gethostid.c +++ b/sysdeps/mach/hurd/gethostid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/gethostname.c b/sysdeps/mach/hurd/gethostname.c index b469a40795..227ed13631 100644 --- a/sysdeps/mach/hurd/gethostname.c +++ b/sysdeps/mach/hurd/gethostname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getitimer.c b/sysdeps/mach/hurd/getitimer.c index 91a20e925a..3ddb73ae60 100644 --- a/sysdeps/mach/hurd/getitimer.c +++ b/sysdeps/mach/hurd/getitimer.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getlogin.c b/sysdeps/mach/hurd/getlogin.c index ce638afaf8..faa2481ad0 100644 --- a/sysdeps/mach/hurd/getlogin.c +++ b/sysdeps/mach/hurd/getlogin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getlogin_r.c b/sysdeps/mach/hurd/getlogin_r.c index 3af2bd8480..6c89bd8b11 100644 --- a/sysdeps/mach/hurd/getlogin_r.c +++ b/sysdeps/mach/hurd/getlogin_r.c @@ -1,5 +1,5 @@ /* Reentrant function to return the current login name. Hurd version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getpeername.c b/sysdeps/mach/hurd/getpeername.c index 982005f733..e54f6839ed 100644 --- a/sysdeps/mach/hurd/getpeername.c +++ b/sysdeps/mach/hurd/getpeername.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getpgid.c b/sysdeps/mach/hurd/getpgid.c index 6d80bed9e8..ecb487c093 100644 --- a/sysdeps/mach/hurd/getpgid.c +++ b/sysdeps/mach/hurd/getpgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getpid.c b/sysdeps/mach/hurd/getpid.c index 0c595f7df7..0e7ed8eedf 100644 --- a/sysdeps/mach/hurd/getpid.c +++ b/sysdeps/mach/hurd/getpid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getppid.c b/sysdeps/mach/hurd/getppid.c index 9e35645a26..1447a6522f 100644 --- a/sysdeps/mach/hurd/getppid.c +++ b/sysdeps/mach/hurd/getppid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getpriority.c b/sysdeps/mach/hurd/getpriority.c index 323cc78b31..fab3f8ec75 100644 --- a/sysdeps/mach/hurd/getpriority.c +++ b/sysdeps/mach/hurd/getpriority.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getresgid.c b/sysdeps/mach/hurd/getresgid.c index f62e54c884..994d4be4fc 100644 --- a/sysdeps/mach/hurd/getresgid.c +++ b/sysdeps/mach/hurd/getresgid.c @@ -1,5 +1,5 @@ /* getresgid -- fetch real group ID, effective group ID, and saved-set group ID - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getresuid.c b/sysdeps/mach/hurd/getresuid.c index a180ab5392..1034ab7232 100644 --- a/sysdeps/mach/hurd/getresuid.c +++ b/sysdeps/mach/hurd/getresuid.c @@ -1,5 +1,5 @@ /* getresuid -- fetch real user ID, effective user ID, and saved-set user ID - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getrlimit.c b/sysdeps/mach/hurd/getrlimit.c index 74060f394e..0dc75185d9 100644 --- a/sysdeps/mach/hurd/getrlimit.c +++ b/sysdeps/mach/hurd/getrlimit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getrusage.c b/sysdeps/mach/hurd/getrusage.c index c656fca11a..c2d5087697 100644 --- a/sysdeps/mach/hurd/getrusage.c +++ b/sysdeps/mach/hurd/getrusage.c @@ -1,5 +1,5 @@ /* getrusage -- Get resource usage information about processes. Hurd version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getsid.c b/sysdeps/mach/hurd/getsid.c index e041121110..0b096ce9a1 100644 --- a/sysdeps/mach/hurd/getsid.c +++ b/sysdeps/mach/hurd/getsid.c @@ -1,5 +1,5 @@ /* getsid -- Return session ID of a process. Hurd version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getsockname.c b/sysdeps/mach/hurd/getsockname.c index 4e6c517931..24ed0dd8a4 100644 --- a/sysdeps/mach/hurd/getsockname.c +++ b/sysdeps/mach/hurd/getsockname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getsockopt.c b/sysdeps/mach/hurd/getsockopt.c index 5d66b4255f..bf8dc4b7b4 100644 --- a/sysdeps/mach/hurd/getsockopt.c +++ b/sysdeps/mach/hurd/getsockopt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getuid.c b/sysdeps/mach/hurd/getuid.c index 6d9a707ca3..57f2976739 100644 --- a/sysdeps/mach/hurd/getuid.c +++ b/sysdeps/mach/hurd/getuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/getxattr.c b/sysdeps/mach/hurd/getxattr.c index 38ce92223f..5ade5d3f07 100644 --- a/sysdeps/mach/hurd/getxattr.c +++ b/sysdeps/mach/hurd/getxattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/group_member.c b/sysdeps/mach/hurd/group_member.c index 50fbf0e312..e12e9df373 100644 --- a/sysdeps/mach/hurd/group_member.c +++ b/sysdeps/mach/hurd/group_member.c @@ -1,5 +1,5 @@ /* `group_member' -- test if process is in a given group. Hurd version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/____longjmp_chk.S b/sysdeps/mach/hurd/i386/____longjmp_chk.S index 541a6f7723..666465e9e9 100644 --- a/sysdeps/mach/hurd/i386/____longjmp_chk.S +++ b/sysdeps/mach/hurd/i386/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/bits/sigcontext.h b/sysdeps/mach/hurd/i386/bits/sigcontext.h index 60ed2826df..c51a94ef1a 100644 --- a/sysdeps/mach/hurd/i386/bits/sigcontext.h +++ b/sysdeps/mach/hurd/i386/bits/sigcontext.h @@ -1,5 +1,5 @@ /* Machine-dependent signal context structure for GNU Hurd. i386 version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/exc2signal.c b/sysdeps/mach/hurd/i386/exc2signal.c index ee58ece177..b67acff08d 100644 --- a/sysdeps/mach/hurd/i386/exc2signal.c +++ b/sysdeps/mach/hurd/i386/exc2signal.c @@ -1,5 +1,5 @@ /* Translate Mach exception codes into signal numbers. i386 version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/init-first.c b/sysdeps/mach/hurd/i386/init-first.c index 8fb613b550..fc355ed6c3 100644 --- a/sysdeps/mach/hurd/i386/init-first.c +++ b/sysdeps/mach/hurd/i386/init-first.c @@ -1,5 +1,5 @@ /* Initialization code run first thing by the ELF startup code. For i386/Hurd. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/intr-msg.h b/sysdeps/mach/hurd/i386/intr-msg.h index 480d425136..452c3ed725 100644 --- a/sysdeps/mach/hurd/i386/intr-msg.h +++ b/sysdeps/mach/hurd/i386/intr-msg.h @@ -1,5 +1,5 @@ /* Machine-dependent details of interruptible RPC messaging. i386 version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/ioperm.c b/sysdeps/mach/hurd/i386/ioperm.c index a391f82abb..abd0051c6c 100644 --- a/sysdeps/mach/hurd/i386/ioperm.c +++ b/sysdeps/mach/hurd/i386/ioperm.c @@ -1,5 +1,5 @@ /* Access to hardware i/o ports. Hurd/x86 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/longjmp-ts.c b/sysdeps/mach/hurd/i386/longjmp-ts.c index 238a6fcac2..f78aa772f0 100644 --- a/sysdeps/mach/hurd/i386/longjmp-ts.c +++ b/sysdeps/mach/hurd/i386/longjmp-ts.c @@ -1,5 +1,5 @@ /* Perform a `longjmp' on a Mach thread_state. i386 version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/sigcontextinfo.h b/sysdeps/mach/hurd/i386/sigcontextinfo.h index 52a31650bd..27b548e73f 100644 --- a/sysdeps/mach/hurd/i386/sigcontextinfo.h +++ b/sysdeps/mach/hurd/i386/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/sigreturn.c b/sysdeps/mach/hurd/i386/sigreturn.c index 92727b5424..6dba161d7c 100644 --- a/sysdeps/mach/hurd/i386/sigreturn.c +++ b/sysdeps/mach/hurd/i386/sigreturn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/static-start.S b/sysdeps/mach/hurd/i386/static-start.S index cfc36cbcda..22bb84c219 100644 --- a/sysdeps/mach/hurd/i386/static-start.S +++ b/sysdeps/mach/hurd/i386/static-start.S @@ -1,5 +1,5 @@ /* Startup code for statically linked Hurd/i386 binaries. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/sys/io.h b/sysdeps/mach/hurd/i386/sys/io.h index 24b886b847..6ad2d94ded 100644 --- a/sysdeps/mach/hurd/i386/sys/io.h +++ b/sysdeps/mach/hurd/i386/sys/io.h @@ -1,5 +1,5 @@ /* Access to hardware i/o ports. GNU/x86 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/tls.h b/sysdeps/mach/hurd/i386/tls.h index da8c16aa00..3f84300206 100644 --- a/sysdeps/mach/hurd/i386/tls.h +++ b/sysdeps/mach/hurd/i386/tls.h @@ -1,5 +1,5 @@ /* Definitions for thread-local data handling. Hurd/i386 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/i386/trampoline.c b/sysdeps/mach/hurd/i386/trampoline.c index e06977aaac..d4a839304b 100644 --- a/sysdeps/mach/hurd/i386/trampoline.c +++ b/sysdeps/mach/hurd/i386/trampoline.c @@ -1,5 +1,5 @@ /* Set thread_state for sighandler, and sigcontext to recover. i386 version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/if_index.c b/sysdeps/mach/hurd/if_index.c index 713f731785..9d0ca62fa1 100644 --- a/sysdeps/mach/hurd/if_index.c +++ b/sysdeps/mach/hurd/if_index.c @@ -1,5 +1,5 @@ /* Find network interface names and index numbers. Hurd version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/ifreq.c b/sysdeps/mach/hurd/ifreq.c index ed6d05e753..10a3a3754a 100644 --- a/sysdeps/mach/hurd/ifreq.c +++ b/sysdeps/mach/hurd/ifreq.c @@ -1,5 +1,5 @@ /* Fetch the host's network interface list. Hurd version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/ifreq.h b/sysdeps/mach/hurd/ifreq.h index ea1ccff818..b7c9a6dbff 100644 --- a/sysdeps/mach/hurd/ifreq.h +++ b/sysdeps/mach/hurd/ifreq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger . diff --git a/sysdeps/mach/hurd/ioctl.c b/sysdeps/mach/hurd/ioctl.c index 1e134311be..c860348a99 100644 --- a/sysdeps/mach/hurd/ioctl.c +++ b/sysdeps/mach/hurd/ioctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/isatty.c b/sysdeps/mach/hurd/isatty.c index 494737e940..724bc0896d 100644 --- a/sysdeps/mach/hurd/isatty.c +++ b/sysdeps/mach/hurd/isatty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/jmp-unwind.c b/sysdeps/mach/hurd/jmp-unwind.c index bdc24b9a69..4df4edbf71 100644 --- a/sysdeps/mach/hurd/jmp-unwind.c +++ b/sysdeps/mach/hurd/jmp-unwind.c @@ -1,5 +1,5 @@ /* _longjmp_unwind -- Clean up stack frames unwound by longjmp. Hurd version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/kernel-features.h b/sysdeps/mach/hurd/kernel-features.h index 29d73c4977..fa4a1d8247 100644 --- a/sysdeps/mach/hurd/kernel-features.h +++ b/sysdeps/mach/hurd/kernel-features.h @@ -1,5 +1,5 @@ /* Set flags signalling availability of certain operating system features. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/kill.c b/sysdeps/mach/hurd/kill.c index b113608cf3..999be3a6a5 100644 --- a/sysdeps/mach/hurd/kill.c +++ b/sysdeps/mach/hurd/kill.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/lchmod.c b/sysdeps/mach/hurd/lchmod.c index 3b1c073a13..c4bedc9cd3 100644 --- a/sysdeps/mach/hurd/lchmod.c +++ b/sysdeps/mach/hurd/lchmod.c @@ -1,5 +1,5 @@ /* lchmod -- Change the protections of a file or symbolic link. Hurd version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/lchown.c b/sysdeps/mach/hurd/lchown.c index 9f123e1855..c62c0481b2 100644 --- a/sysdeps/mach/hurd/lchown.c +++ b/sysdeps/mach/hurd/lchown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/lgetxattr.c b/sysdeps/mach/hurd/lgetxattr.c index dc649db5c4..b2989fbdbd 100644 --- a/sysdeps/mach/hurd/lgetxattr.c +++ b/sysdeps/mach/hurd/lgetxattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/link.c b/sysdeps/mach/hurd/link.c index 0fe38dc6c5..d1d4da85e9 100644 --- a/sysdeps/mach/hurd/link.c +++ b/sysdeps/mach/hurd/link.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/linkat.c b/sysdeps/mach/hurd/linkat.c index f80ea01b19..2aef15f82b 100644 --- a/sysdeps/mach/hurd/linkat.c +++ b/sysdeps/mach/hurd/linkat.c @@ -1,5 +1,5 @@ /* Make a link between file names relative to open directories. Hurd version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/listen.c b/sysdeps/mach/hurd/listen.c index 1fa6b17a9f..4fffc71fbb 100644 --- a/sysdeps/mach/hurd/listen.c +++ b/sysdeps/mach/hurd/listen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/listxattr.c b/sysdeps/mach/hurd/listxattr.c index 317b14b617..f8d914f38b 100644 --- a/sysdeps/mach/hurd/listxattr.c +++ b/sysdeps/mach/hurd/listxattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/llistxattr.c b/sysdeps/mach/hurd/llistxattr.c index ada0dc7d56..2ee28dc9c1 100644 --- a/sysdeps/mach/hurd/llistxattr.c +++ b/sysdeps/mach/hurd/llistxattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/lremovexattr.c b/sysdeps/mach/hurd/lremovexattr.c index f0ac46e919..4c95e5da5b 100644 --- a/sysdeps/mach/hurd/lremovexattr.c +++ b/sysdeps/mach/hurd/lremovexattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/lseek.c b/sysdeps/mach/hurd/lseek.c index 5de2e3cd41..10c84ba1d5 100644 --- a/sysdeps/mach/hurd/lseek.c +++ b/sysdeps/mach/hurd/lseek.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/lseek64.c b/sysdeps/mach/hurd/lseek64.c index 69abaf34b4..a2ef76b724 100644 --- a/sysdeps/mach/hurd/lseek64.c +++ b/sysdeps/mach/hurd/lseek64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/lsetxattr.c b/sysdeps/mach/hurd/lsetxattr.c index be7ebb99af..472c716c2c 100644 --- a/sysdeps/mach/hurd/lsetxattr.c +++ b/sysdeps/mach/hurd/lsetxattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/lutimes.c b/sysdeps/mach/hurd/lutimes.c index 02848b0322..260842d230 100644 --- a/sysdeps/mach/hurd/lutimes.c +++ b/sysdeps/mach/hurd/lutimes.c @@ -1,5 +1,5 @@ /* lutimes -- change access and modification times of a symlink. Hurd version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/lxstat.c b/sysdeps/mach/hurd/lxstat.c index dd07a6a60b..f971517602 100644 --- a/sysdeps/mach/hurd/lxstat.c +++ b/sysdeps/mach/hurd/lxstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/lxstat64.c b/sysdeps/mach/hurd/lxstat64.c index 76a0238d7a..4fc809dd3c 100644 --- a/sysdeps/mach/hurd/lxstat64.c +++ b/sysdeps/mach/hurd/lxstat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/malloc-machine.h b/sysdeps/mach/hurd/malloc-machine.h index 07c19efe92..cd866429a7 100644 --- a/sysdeps/mach/hurd/malloc-machine.h +++ b/sysdeps/mach/hurd/malloc-machine.h @@ -1,6 +1,6 @@ /* Basic platform-independent macro definitions for mutexes, thread-specific data and parameters for malloc. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/mig-reply.c b/sysdeps/mach/hurd/mig-reply.c index f0b5172e6f..540b7bd511 100644 --- a/sysdeps/mach/hurd/mig-reply.c +++ b/sysdeps/mach/hurd/mig-reply.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/mkdir.c b/sysdeps/mach/hurd/mkdir.c index d3d778c70b..a8cb835ab6 100644 --- a/sysdeps/mach/hurd/mkdir.c +++ b/sysdeps/mach/hurd/mkdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/mkdirat.c b/sysdeps/mach/hurd/mkdirat.c index b93c0f8331..de4f5331d7 100644 --- a/sysdeps/mach/hurd/mkdirat.c +++ b/sysdeps/mach/hurd/mkdirat.c @@ -1,5 +1,5 @@ /* Create a directory named relative to another open directory. Hurd version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/mlock.c b/sysdeps/mach/hurd/mlock.c index a8c53416c7..14c311c061 100644 --- a/sysdeps/mach/hurd/mlock.c +++ b/sysdeps/mach/hurd/mlock.c @@ -1,5 +1,5 @@ /* mlock -- guarantee pages are resident in memory. Mach/Hurd version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/mmap.c b/sysdeps/mach/hurd/mmap.c index 6ee314603b..5407ed9b65 100644 --- a/sysdeps/mach/hurd/mmap.c +++ b/sysdeps/mach/hurd/mmap.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/munlock.c b/sysdeps/mach/hurd/munlock.c index 4269465881..c03af90cb8 100644 --- a/sysdeps/mach/hurd/munlock.c +++ b/sysdeps/mach/hurd/munlock.c @@ -1,5 +1,5 @@ /* munlock -- undo the effects of prior mlock calls. Mach/Hurd version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/net/ethernet.h b/sysdeps/mach/hurd/net/ethernet.h index 82d060f772..3b2b473980 100644 --- a/sysdeps/mach/hurd/net/ethernet.h +++ b/sysdeps/mach/hurd/net/ethernet.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/net/if_arp.h b/sysdeps/mach/hurd/net/if_arp.h index 9b7b201d62..6ac89d756c 100644 --- a/sysdeps/mach/hurd/net/if_arp.h +++ b/sysdeps/mach/hurd/net/if_arp.h @@ -1,5 +1,5 @@ /* Definitions for Address Resolution Protocol. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/mach/hurd/net/if_ether.h b/sysdeps/mach/hurd/net/if_ether.h index 4c82adf568..270993ceb2 100644 --- a/sysdeps/mach/hurd/net/if_ether.h +++ b/sysdeps/mach/hurd/net/if_ether.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/net/route.h b/sysdeps/mach/hurd/net/route.h index cce6e95d55..d18a68afff 100644 --- a/sysdeps/mach/hurd/net/route.h +++ b/sysdeps/mach/hurd/net/route.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc.. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc.. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/open.c b/sysdeps/mach/hurd/open.c index 49dd287c00..7d9b2de70c 100644 --- a/sysdeps/mach/hurd/open.c +++ b/sysdeps/mach/hurd/open.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/openat.c b/sysdeps/mach/hurd/openat.c index e568acc875..318cb229ef 100644 --- a/sysdeps/mach/hurd/openat.c +++ b/sysdeps/mach/hurd/openat.c @@ -1,5 +1,5 @@ /* openat -- Open a file named relative to an open directory. Hurd version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/opendir.c b/sysdeps/mach/hurd/opendir.c index 483f59c9c8..570f0856cc 100644 --- a/sysdeps/mach/hurd/opendir.c +++ b/sysdeps/mach/hurd/opendir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/pathconf.c b/sysdeps/mach/hurd/pathconf.c index b972336c8a..ef08941dc1 100644 --- a/sysdeps/mach/hurd/pathconf.c +++ b/sysdeps/mach/hurd/pathconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/pipe.c b/sysdeps/mach/hurd/pipe.c index 5f916487fc..8bc446e7f2 100644 --- a/sysdeps/mach/hurd/pipe.c +++ b/sysdeps/mach/hurd/pipe.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/poll.c b/sysdeps/mach/hurd/poll.c index d02a962765..9b743b9794 100644 --- a/sysdeps/mach/hurd/poll.c +++ b/sysdeps/mach/hurd/poll.c @@ -1,5 +1,5 @@ /* poll file descriptors. Hurd version. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/ppoll.c b/sysdeps/mach/hurd/ppoll.c index 0906f7e77e..80a513bf14 100644 --- a/sysdeps/mach/hurd/ppoll.c +++ b/sysdeps/mach/hurd/ppoll.c @@ -1,5 +1,5 @@ /* poll file descriptors. Hurd version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/pread.c b/sysdeps/mach/hurd/pread.c index 724ac10515..c359e2a173 100644 --- a/sysdeps/mach/hurd/pread.c +++ b/sysdeps/mach/hurd/pread.c @@ -1,6 +1,6 @@ /* Read block from given position in file without changing file pointer. Hurd version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/pread64.c b/sysdeps/mach/hurd/pread64.c index 9593c37569..55ba5ebbc7 100644 --- a/sysdeps/mach/hurd/pread64.c +++ b/sysdeps/mach/hurd/pread64.c @@ -1,6 +1,6 @@ /* Read block from given position in file without changing file pointer. Hurd version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/profil.c b/sysdeps/mach/hurd/profil.c index 2ed24992b5..7ea7272926 100644 --- a/sysdeps/mach/hurd/profil.c +++ b/sysdeps/mach/hurd/profil.c @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Mach/Hurd version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/pselect.c b/sysdeps/mach/hurd/pselect.c index 034d604cb1..2d87f00bce 100644 --- a/sysdeps/mach/hurd/pselect.c +++ b/sysdeps/mach/hurd/pselect.c @@ -1,5 +1,5 @@ /* pselect for Hurd. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/ptrace.c b/sysdeps/mach/hurd/ptrace.c index ad86d33dc4..09fea9c94d 100644 --- a/sysdeps/mach/hurd/ptrace.c +++ b/sysdeps/mach/hurd/ptrace.c @@ -1,5 +1,5 @@ /* Process tracing interface `ptrace' for GNU Hurd. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/ptsname.c b/sysdeps/mach/hurd/ptsname.c index a9eaa1c2b3..bc39cef573 100644 --- a/sysdeps/mach/hurd/ptsname.c +++ b/sysdeps/mach/hurd/ptsname.c @@ -1,5 +1,5 @@ /* ptsname -- return the name of a pty slave given an FD to the pty master - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/pwrite.c b/sysdeps/mach/hurd/pwrite.c index 5ce94e2c65..5c66d37ab6 100644 --- a/sysdeps/mach/hurd/pwrite.c +++ b/sysdeps/mach/hurd/pwrite.c @@ -1,6 +1,6 @@ /* Write block at given position in file without changing file pointer. Hurd version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/pwrite64.c b/sysdeps/mach/hurd/pwrite64.c index 82a4ccb6b8..3061b736f5 100644 --- a/sysdeps/mach/hurd/pwrite64.c +++ b/sysdeps/mach/hurd/pwrite64.c @@ -1,6 +1,6 @@ /* Write block to given position in file without changing file pointer. Hurd version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/read.c b/sysdeps/mach/hurd/read.c index bfdb817b6d..8dc47bfa29 100644 --- a/sysdeps/mach/hurd/read.c +++ b/sysdeps/mach/hurd/read.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/readdir.c b/sysdeps/mach/hurd/readdir.c index dbf8491b65..7146882bc1 100644 --- a/sysdeps/mach/hurd/readdir.c +++ b/sysdeps/mach/hurd/readdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/readdir64.c b/sysdeps/mach/hurd/readdir64.c index 505601a464..6208ed42bb 100644 --- a/sysdeps/mach/hurd/readdir64.c +++ b/sysdeps/mach/hurd/readdir64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/readdir64_r.c b/sysdeps/mach/hurd/readdir64_r.c index 05fcfd7c8c..b1a948193b 100644 --- a/sysdeps/mach/hurd/readdir64_r.c +++ b/sysdeps/mach/hurd/readdir64_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/readdir_r.c b/sysdeps/mach/hurd/readdir_r.c index dee1836763..c7e5a85328 100644 --- a/sysdeps/mach/hurd/readdir_r.c +++ b/sysdeps/mach/hurd/readdir_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/readlink.c b/sysdeps/mach/hurd/readlink.c index 4588338c78..1d6fe18abd 100644 --- a/sysdeps/mach/hurd/readlink.c +++ b/sysdeps/mach/hurd/readlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/readlinkat.c b/sysdeps/mach/hurd/readlinkat.c index 7b52ef66d1..52167007f3 100644 --- a/sysdeps/mach/hurd/readlinkat.c +++ b/sysdeps/mach/hurd/readlinkat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/reboot.c b/sysdeps/mach/hurd/reboot.c index 60d96eaad2..83187d46e0 100644 --- a/sysdeps/mach/hurd/reboot.c +++ b/sysdeps/mach/hurd/reboot.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/recv.c b/sysdeps/mach/hurd/recv.c index 9a79c8c9ab..1a98ea824f 100644 --- a/sysdeps/mach/hurd/recv.c +++ b/sysdeps/mach/hurd/recv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/recvfrom.c b/sysdeps/mach/hurd/recvfrom.c index ea85db99f0..4e1a3eb8c7 100644 --- a/sysdeps/mach/hurd/recvfrom.c +++ b/sysdeps/mach/hurd/recvfrom.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/recvmsg.c b/sysdeps/mach/hurd/recvmsg.c index 5d7b1eedf3..ae45478e12 100644 --- a/sysdeps/mach/hurd/recvmsg.c +++ b/sysdeps/mach/hurd/recvmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/removexattr.c b/sysdeps/mach/hurd/removexattr.c index be951c9c95..e114a5a711 100644 --- a/sysdeps/mach/hurd/removexattr.c +++ b/sysdeps/mach/hurd/removexattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/rename.c b/sysdeps/mach/hurd/rename.c index c30173fc8c..59fd535814 100644 --- a/sysdeps/mach/hurd/rename.c +++ b/sysdeps/mach/hurd/rename.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/renameat.c b/sysdeps/mach/hurd/renameat.c index 93d56a2778..31c838cb61 100644 --- a/sysdeps/mach/hurd/renameat.c +++ b/sysdeps/mach/hurd/renameat.c @@ -1,5 +1,5 @@ /* Rename a file using relative source and destination names. Hurd version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/revoke.c b/sysdeps/mach/hurd/revoke.c index d225078bee..b95da7c5bb 100644 --- a/sysdeps/mach/hurd/revoke.c +++ b/sysdeps/mach/hurd/revoke.c @@ -1,5 +1,5 @@ /* Revoke the access of all descriptors currently open on a file. Hurd version - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/rewinddir.c b/sysdeps/mach/hurd/rewinddir.c index ef24b4d84b..bccd54909b 100644 --- a/sysdeps/mach/hurd/rewinddir.c +++ b/sysdeps/mach/hurd/rewinddir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/rmdir.c b/sysdeps/mach/hurd/rmdir.c index d1710579bd..8ce8afb355 100644 --- a/sysdeps/mach/hurd/rmdir.c +++ b/sysdeps/mach/hurd/rmdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sbrk.c b/sysdeps/mach/hurd/sbrk.c index b3245b0345..35a94c4108 100644 --- a/sysdeps/mach/hurd/sbrk.c +++ b/sysdeps/mach/hurd/sbrk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/seekdir.c b/sysdeps/mach/hurd/seekdir.c index 6efdf22cdf..82614b2fb7 100644 --- a/sysdeps/mach/hurd/seekdir.c +++ b/sysdeps/mach/hurd/seekdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/select.c b/sysdeps/mach/hurd/select.c index 1ee35ac635..dca0a2546f 100644 --- a/sysdeps/mach/hurd/select.c +++ b/sysdeps/mach/hurd/select.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/send.c b/sysdeps/mach/hurd/send.c index 5bcf5203b8..07f1b63485 100644 --- a/sysdeps/mach/hurd/send.c +++ b/sysdeps/mach/hurd/send.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sendfile.c b/sysdeps/mach/hurd/sendfile.c index b7abc8f69b..0b89acdd55 100644 --- a/sysdeps/mach/hurd/sendfile.c +++ b/sysdeps/mach/hurd/sendfile.c @@ -1,5 +1,5 @@ /* sendfile -- copy data directly from one file descriptor to another - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sendfile64.c b/sysdeps/mach/hurd/sendfile64.c index d22514310c..7928956fdb 100644 --- a/sysdeps/mach/hurd/sendfile64.c +++ b/sysdeps/mach/hurd/sendfile64.c @@ -1,5 +1,5 @@ /* sendfile -- copy data directly from one file descriptor to another - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sendmsg.c b/sysdeps/mach/hurd/sendmsg.c index 5a93c63b8f..2ef6a0fa09 100644 --- a/sysdeps/mach/hurd/sendmsg.c +++ b/sysdeps/mach/hurd/sendmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sendto.c b/sysdeps/mach/hurd/sendto.c index 72c1d6baf3..477b4aaa5d 100644 --- a/sysdeps/mach/hurd/sendto.c +++ b/sysdeps/mach/hurd/sendto.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setdomain.c b/sysdeps/mach/hurd/setdomain.c index 5696e23937..76bcc0d472 100644 --- a/sysdeps/mach/hurd/setdomain.c +++ b/sysdeps/mach/hurd/setdomain.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setegid.c b/sysdeps/mach/hurd/setegid.c index 6445782bf4..ddbf832f8c 100644 --- a/sysdeps/mach/hurd/setegid.c +++ b/sysdeps/mach/hurd/setegid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/seteuid.c b/sysdeps/mach/hurd/seteuid.c index 4c7e3f0754..af27c5cfca 100644 --- a/sysdeps/mach/hurd/seteuid.c +++ b/sysdeps/mach/hurd/seteuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setgid.c b/sysdeps/mach/hurd/setgid.c index 916c21d1c9..80b722da83 100644 --- a/sysdeps/mach/hurd/setgid.c +++ b/sysdeps/mach/hurd/setgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setgroups.c b/sysdeps/mach/hurd/setgroups.c index 463bf70b53..732c6b5333 100644 --- a/sysdeps/mach/hurd/setgroups.c +++ b/sysdeps/mach/hurd/setgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sethostid.c b/sysdeps/mach/hurd/sethostid.c index 4d9702a12c..f21082e628 100644 --- a/sysdeps/mach/hurd/sethostid.c +++ b/sysdeps/mach/hurd/sethostid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sethostname.c b/sysdeps/mach/hurd/sethostname.c index 61fc39f803..8c17cba6af 100644 --- a/sysdeps/mach/hurd/sethostname.c +++ b/sysdeps/mach/hurd/sethostname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setitimer.c b/sysdeps/mach/hurd/setitimer.c index 1d3e01a3e7..5459b56420 100644 --- a/sysdeps/mach/hurd/setitimer.c +++ b/sysdeps/mach/hurd/setitimer.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setlogin.c b/sysdeps/mach/hurd/setlogin.c index c22f5d74dd..1cb38129d1 100644 --- a/sysdeps/mach/hurd/setlogin.c +++ b/sysdeps/mach/hurd/setlogin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setpgid.c b/sysdeps/mach/hurd/setpgid.c index 88b9ffbae2..6662d3df5e 100644 --- a/sysdeps/mach/hurd/setpgid.c +++ b/sysdeps/mach/hurd/setpgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setpriority.c b/sysdeps/mach/hurd/setpriority.c index c2a007d1a6..f3e92f4eb6 100644 --- a/sysdeps/mach/hurd/setpriority.c +++ b/sysdeps/mach/hurd/setpriority.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setregid.c b/sysdeps/mach/hurd/setregid.c index 802e8023df..0bf6f40d07 100644 --- a/sysdeps/mach/hurd/setregid.c +++ b/sysdeps/mach/hurd/setregid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setresgid.c b/sysdeps/mach/hurd/setresgid.c index 6812975e79..4be7fbfaf9 100644 --- a/sysdeps/mach/hurd/setresgid.c +++ b/sysdeps/mach/hurd/setresgid.c @@ -1,5 +1,5 @@ /* setresgid -- set real group ID, effective group ID, and saved-set group ID - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setresuid.c b/sysdeps/mach/hurd/setresuid.c index 52fff9e8c6..aa9cc0fa72 100644 --- a/sysdeps/mach/hurd/setresuid.c +++ b/sysdeps/mach/hurd/setresuid.c @@ -1,5 +1,5 @@ /* setresuid -- set real user ID, effective user ID, and saved-set user ID - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setreuid.c b/sysdeps/mach/hurd/setreuid.c index 1cc7ee0aa3..9ce47747f1 100644 --- a/sysdeps/mach/hurd/setreuid.c +++ b/sysdeps/mach/hurd/setreuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setrlimit.c b/sysdeps/mach/hurd/setrlimit.c index 834acb990d..158fa42079 100644 --- a/sysdeps/mach/hurd/setrlimit.c +++ b/sysdeps/mach/hurd/setrlimit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setsid.c b/sysdeps/mach/hurd/setsid.c index bce1935195..36ec3d866e 100644 --- a/sysdeps/mach/hurd/setsid.c +++ b/sysdeps/mach/hurd/setsid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setsockopt.c b/sysdeps/mach/hurd/setsockopt.c index fb3068ce08..32a50d0c73 100644 --- a/sysdeps/mach/hurd/setsockopt.c +++ b/sysdeps/mach/hurd/setsockopt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/settimeofday.c b/sysdeps/mach/hurd/settimeofday.c index 831ec92925..274fb52d4c 100644 --- a/sysdeps/mach/hurd/settimeofday.c +++ b/sysdeps/mach/hurd/settimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setuid.c b/sysdeps/mach/hurd/setuid.c index 51c992e1e7..2753057f9e 100644 --- a/sysdeps/mach/hurd/setuid.c +++ b/sysdeps/mach/hurd/setuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/setxattr.c b/sysdeps/mach/hurd/setxattr.c index 582b2c7089..eb876d9495 100644 --- a/sysdeps/mach/hurd/setxattr.c +++ b/sysdeps/mach/hurd/setxattr.c @@ -1,5 +1,5 @@ /* Access to extended attributes on files. Hurd version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/shutdown.c b/sysdeps/mach/hurd/shutdown.c index 555c308fed..a75d123d34 100644 --- a/sysdeps/mach/hurd/shutdown.c +++ b/sysdeps/mach/hurd/shutdown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sigaction.c b/sysdeps/mach/hurd/sigaction.c index a1e2971322..a0620de2bd 100644 --- a/sysdeps/mach/hurd/sigaction.c +++ b/sysdeps/mach/hurd/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/mach/hurd/sigaltstack.c b/sysdeps/mach/hurd/sigaltstack.c index 823881a69e..2f069e1c61 100644 --- a/sysdeps/mach/hurd/sigaltstack.c +++ b/sysdeps/mach/hurd/sigaltstack.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/siglist.h b/sysdeps/mach/hurd/siglist.h index 4135cfdea9..578a725377 100644 --- a/sysdeps/mach/hurd/siglist.h +++ b/sysdeps/mach/hurd/siglist.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sigpending.c b/sysdeps/mach/hurd/sigpending.c index ea58ec4e35..5f2600f562 100644 --- a/sysdeps/mach/hurd/sigpending.c +++ b/sysdeps/mach/hurd/sigpending.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sigprocmask.c b/sysdeps/mach/hurd/sigprocmask.c index fe36ed0f36..b3c13425af 100644 --- a/sysdeps/mach/hurd/sigprocmask.c +++ b/sysdeps/mach/hurd/sigprocmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sigstack.c b/sysdeps/mach/hurd/sigstack.c index 2c9cdde941..12d077db52 100644 --- a/sysdeps/mach/hurd/sigstack.c +++ b/sysdeps/mach/hurd/sigstack.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sigsuspend.c b/sysdeps/mach/hurd/sigsuspend.c index 272028943e..60f235e1ee 100644 --- a/sysdeps/mach/hurd/sigsuspend.c +++ b/sysdeps/mach/hurd/sigsuspend.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/mach/hurd/sigwait.c b/sysdeps/mach/hurd/sigwait.c index 5298f7a5e0..89193e6dfd 100644 --- a/sysdeps/mach/hurd/sigwait.c +++ b/sysdeps/mach/hurd/sigwait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/socket.c b/sysdeps/mach/hurd/socket.c index 791768618f..173a2f3f66 100644 --- a/sysdeps/mach/hurd/socket.c +++ b/sysdeps/mach/hurd/socket.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/socketpair.c b/sysdeps/mach/hurd/socketpair.c index 47f50d294f..b128a9bc64 100644 --- a/sysdeps/mach/hurd/socketpair.c +++ b/sysdeps/mach/hurd/socketpair.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/spawni.c b/sysdeps/mach/hurd/spawni.c index 867579de55..a685a1f013 100644 --- a/sysdeps/mach/hurd/spawni.c +++ b/sysdeps/mach/hurd/spawni.c @@ -1,5 +1,5 @@ /* spawn a new process running an executable. Hurd version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/statfs.c b/sysdeps/mach/hurd/statfs.c index 7b534517d9..50c7d6b0e0 100644 --- a/sysdeps/mach/hurd/statfs.c +++ b/sysdeps/mach/hurd/statfs.c @@ -1,5 +1,5 @@ /* statfs -- Return information about the filesystem on which FILE resides. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/statfs64.c b/sysdeps/mach/hurd/statfs64.c index 72ec5fb2e2..1b7e37644e 100644 --- a/sysdeps/mach/hurd/statfs64.c +++ b/sysdeps/mach/hurd/statfs64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/statfsconv.c b/sysdeps/mach/hurd/statfsconv.c index 1c588a85d1..2e990040f1 100644 --- a/sysdeps/mach/hurd/statfsconv.c +++ b/sysdeps/mach/hurd/statfsconv.c @@ -1,5 +1,5 @@ /* Convert between `struct statfs' format, and `struct statfs64' format. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/statvfs.c b/sysdeps/mach/hurd/statvfs.c index 01a09fdc07..6dfe1e6a9b 100644 --- a/sysdeps/mach/hurd/statvfs.c +++ b/sysdeps/mach/hurd/statvfs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/statvfs64.c b/sysdeps/mach/hurd/statvfs64.c index e6dac608c3..1e9fe9c2a8 100644 --- a/sysdeps/mach/hurd/statvfs64.c +++ b/sysdeps/mach/hurd/statvfs64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/symlink.c b/sysdeps/mach/hurd/symlink.c index 4ddc49eebd..25bb2044b4 100644 --- a/sysdeps/mach/hurd/symlink.c +++ b/sysdeps/mach/hurd/symlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/symlinkat.c b/sysdeps/mach/hurd/symlinkat.c index a36ab5890b..077d5be786 100644 --- a/sysdeps/mach/hurd/symlinkat.c +++ b/sysdeps/mach/hurd/symlinkat.c @@ -1,5 +1,5 @@ /* Create a symbolic link named relative to an open directory. Hurd version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sync.c b/sysdeps/mach/hurd/sync.c index 775182edab..e6b4a903b6 100644 --- a/sysdeps/mach/hurd/sync.c +++ b/sysdeps/mach/hurd/sync.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/syncfs.c b/sysdeps/mach/hurd/syncfs.c index 7cc09fa9df..9763082ae8 100644 --- a/sysdeps/mach/hurd/syncfs.c +++ b/sysdeps/mach/hurd/syncfs.c @@ -1,6 +1,6 @@ /* Make all changes done to all files on the file system associated with FD actually appear on disk. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/sysconf.c b/sysdeps/mach/hurd/sysconf.c index 65d61fccf6..19b1e54c91 100644 --- a/sysdeps/mach/hurd/sysconf.c +++ b/sysdeps/mach/hurd/sysconf.c @@ -1,5 +1,5 @@ /* Return values of system parameters. Hurd version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/telldir.c b/sysdeps/mach/hurd/telldir.c index 3801a19cbf..34673115c5 100644 --- a/sysdeps/mach/hurd/telldir.c +++ b/sysdeps/mach/hurd/telldir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/times.c b/sysdeps/mach/hurd/times.c index 9e13a75f5e..acf89b0221 100644 --- a/sysdeps/mach/hurd/times.c +++ b/sysdeps/mach/hurd/times.c @@ -1,5 +1,5 @@ /* Return CPU and real time used by process and its children. Hurd version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/tls.h b/sysdeps/mach/hurd/tls.h index afdcfee3aa..dbe73f5035 100644 --- a/sysdeps/mach/hurd/tls.h +++ b/sysdeps/mach/hurd/tls.h @@ -1,5 +1,5 @@ /* Definitions for thread-local data handling. Hurd version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/tmpfile.c b/sysdeps/mach/hurd/tmpfile.c index a09048ebf2..1ac2cf6036 100644 --- a/sysdeps/mach/hurd/tmpfile.c +++ b/sysdeps/mach/hurd/tmpfile.c @@ -1,5 +1,5 @@ /* Open a stdio stream on an anonymous temporary file. Hurd version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/truncate.c b/sysdeps/mach/hurd/truncate.c index a97a56bd9a..efd9680571 100644 --- a/sysdeps/mach/hurd/truncate.c +++ b/sysdeps/mach/hurd/truncate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/ttyname.c b/sysdeps/mach/hurd/ttyname.c index 28ba340720..d0f6d9f59c 100644 --- a/sysdeps/mach/hurd/ttyname.c +++ b/sysdeps/mach/hurd/ttyname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/ttyname_r.c b/sysdeps/mach/hurd/ttyname_r.c index ea8bf06cc4..b27d4e1d15 100644 --- a/sysdeps/mach/hurd/ttyname_r.c +++ b/sysdeps/mach/hurd/ttyname_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/umask.c b/sysdeps/mach/hurd/umask.c index e46a6f5ff6..bfd50f919c 100644 --- a/sysdeps/mach/hurd/umask.c +++ b/sysdeps/mach/hurd/umask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/uname.c b/sysdeps/mach/hurd/uname.c index 25323b675b..a58e7a5b0a 100644 --- a/sysdeps/mach/hurd/uname.c +++ b/sysdeps/mach/hurd/uname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/unlink.c b/sysdeps/mach/hurd/unlink.c index f27f3105bd..a23a60e6ec 100644 --- a/sysdeps/mach/hurd/unlink.c +++ b/sysdeps/mach/hurd/unlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/unlinkat.c b/sysdeps/mach/hurd/unlinkat.c index f4f637956c..31cc477b39 100644 --- a/sysdeps/mach/hurd/unlinkat.c +++ b/sysdeps/mach/hurd/unlinkat.c @@ -1,5 +1,5 @@ /* unlinkat -- Remove a name relative to an open directory. Hurd version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/utimes.c b/sysdeps/mach/hurd/utimes.c index ba5979adfc..6739b7904f 100644 --- a/sysdeps/mach/hurd/utimes.c +++ b/sysdeps/mach/hurd/utimes.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/wait4.c b/sysdeps/mach/hurd/wait4.c index 6fd28ccfa9..209d2d2772 100644 --- a/sysdeps/mach/hurd/wait4.c +++ b/sysdeps/mach/hurd/wait4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/write.c b/sysdeps/mach/hurd/write.c index 22874e3954..8b84989220 100644 --- a/sysdeps/mach/hurd/write.c +++ b/sysdeps/mach/hurd/write.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/xmknod.c b/sysdeps/mach/hurd/xmknod.c index f43a426881..a24979c58e 100644 --- a/sysdeps/mach/hurd/xmknod.c +++ b/sysdeps/mach/hurd/xmknod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/xmknodat.c b/sysdeps/mach/hurd/xmknodat.c index 490a23ca27..fca8eded0c 100644 --- a/sysdeps/mach/hurd/xmknodat.c +++ b/sysdeps/mach/hurd/xmknodat.c @@ -1,5 +1,5 @@ /* Create a device file relative to an open directory. Hurd version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/xstat.c b/sysdeps/mach/hurd/xstat.c index a93050e700..40e2f3e8d3 100644 --- a/sysdeps/mach/hurd/xstat.c +++ b/sysdeps/mach/hurd/xstat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/xstat64.c b/sysdeps/mach/hurd/xstat64.c index 806ea982b6..f7bbc8726b 100644 --- a/sysdeps/mach/hurd/xstat64.c +++ b/sysdeps/mach/hurd/xstat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/hurd/xstatconv.c b/sysdeps/mach/hurd/xstatconv.c index f71b6ee69a..4b35805b2a 100644 --- a/sysdeps/mach/hurd/xstatconv.c +++ b/sysdeps/mach/hurd/xstatconv.c @@ -1,5 +1,5 @@ /* Convert between `struct stat' format, and `struct stat64' format. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/i386/machine-lock.h b/sysdeps/mach/i386/machine-lock.h index 9b25c8ce7e..408c2b39cf 100644 --- a/sysdeps/mach/i386/machine-lock.h +++ b/sysdeps/mach/i386/machine-lock.h @@ -1,5 +1,5 @@ /* Machine-specific definition for spin locks. i386 version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/i386/machine-sp.h b/sysdeps/mach/i386/machine-sp.h index 36b70680c4..020509c73e 100644 --- a/sysdeps/mach/i386/machine-sp.h +++ b/sysdeps/mach/i386/machine-sp.h @@ -1,5 +1,5 @@ /* Machine-specific function to return the stack pointer. i386 version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/i386/syscall.S b/sysdeps/mach/i386/syscall.S index da90379079..0c75262d80 100644 --- a/sysdeps/mach/i386/syscall.S +++ b/sysdeps/mach/i386/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/i386/sysdep.h b/sysdeps/mach/i386/sysdep.h index 001fe98f5b..63d960dfa0 100644 --- a/sysdeps/mach/i386/sysdep.h +++ b/sysdeps/mach/i386/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/mach/i386/thread_state.h b/sysdeps/mach/i386/thread_state.h index 49828f5301..207256658e 100644 --- a/sysdeps/mach/i386/thread_state.h +++ b/sysdeps/mach/i386/thread_state.h @@ -1,5 +1,5 @@ /* Mach thread state definitions for machine-independent code. i386 version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/mprotect.c b/sysdeps/mach/mprotect.c index c31a9af24d..449bdb9c1f 100644 --- a/sysdeps/mach/mprotect.c +++ b/sysdeps/mach/mprotect.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/msync.c b/sysdeps/mach/msync.c index 271eaa5291..4e12a5fafc 100644 --- a/sysdeps/mach/msync.c +++ b/sysdeps/mach/msync.c @@ -1,5 +1,5 @@ /* msync -- Synchronize mapped memory to external storage. Mach version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/munmap.c b/sysdeps/mach/munmap.c index 57d99f9c37..f8c416f76f 100644 --- a/sysdeps/mach/munmap.c +++ b/sysdeps/mach/munmap.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/nanosleep.c b/sysdeps/mach/nanosleep.c index 7efd952b78..5e53e21319 100644 --- a/sysdeps/mach/nanosleep.c +++ b/sysdeps/mach/nanosleep.c @@ -1,5 +1,5 @@ /* nanosleep -- sleep for a period specified with a struct timespec - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/pagecopy.h b/sysdeps/mach/pagecopy.h index 0a9f39d1bb..36c3697605 100644 --- a/sysdeps/mach/pagecopy.h +++ b/sysdeps/mach/pagecopy.h @@ -1,5 +1,5 @@ /* Macros for copying by pages; used in memcpy, memmove. Mach version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/readonly-area.c b/sysdeps/mach/readonly-area.c index 01ebd9a4a9..51319729af 100644 --- a/sysdeps/mach/readonly-area.c +++ b/sysdeps/mach/readonly-area.c @@ -1,5 +1,5 @@ /* Test if a memory region is wholly unwritable. Mach version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/sched_yield.c b/sysdeps/mach/sched_yield.c index d5d20a1096..d73c57ceab 100644 --- a/sysdeps/mach/sched_yield.c +++ b/sysdeps/mach/sched_yield.c @@ -1,5 +1,5 @@ /* sched_yield -- yield the processor. Mach version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/sleep.c b/sysdeps/mach/sleep.c index a43280cef8..6496b7c833 100644 --- a/sysdeps/mach/sleep.c +++ b/sysdeps/mach/sleep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/strerror_l.c b/sysdeps/mach/strerror_l.c index 22729d71f6..61d5e71ccd 100644 --- a/sysdeps/mach/strerror_l.c +++ b/sysdeps/mach/strerror_l.c @@ -1,5 +1,5 @@ /* strerror_l - Get errno description string in given locale. Mach version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/sysdep.h b/sysdeps/mach/sysdep.h index 69faaf63b5..ae2adcc374 100644 --- a/sysdeps/mach/sysdep.h +++ b/sysdeps/mach/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/thread_state.h b/sysdeps/mach/thread_state.h index 64d440c612..28f9b2b12f 100644 --- a/sysdeps/mach/thread_state.h +++ b/sysdeps/mach/thread_state.h @@ -1,5 +1,5 @@ /* Generic definitions for dealing with Mach thread states. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/usleep.c b/sysdeps/mach/usleep.c index 7eb7334edb..3d14f1c0bb 100644 --- a/sysdeps/mach/usleep.c +++ b/sysdeps/mach/usleep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/mach/xpg-strerror.c b/sysdeps/mach/xpg-strerror.c index 6eb6a0b000..a896bfb37b 100644 --- a/sysdeps/mach/xpg-strerror.c +++ b/sysdeps/mach/xpg-strerror.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/alarm.c b/sysdeps/posix/alarm.c index 5a36c83988..c68ae51d4a 100644 --- a/sysdeps/posix/alarm.c +++ b/sysdeps/posix/alarm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/clock.c b/sysdeps/posix/clock.c index 98fe3b8ba8..d91b56a705 100644 --- a/sysdeps/posix/clock.c +++ b/sysdeps/posix/clock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/clock_getres.c b/sysdeps/posix/clock_getres.c index 5d898e4d04..27f264bb16 100644 --- a/sysdeps/posix/clock_getres.c +++ b/sysdeps/posix/clock_getres.c @@ -1,5 +1,5 @@ /* clock_getres -- Get the resolution of a POSIX clockid_t. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/closedir.c b/sysdeps/posix/closedir.c index f3d6fc2b21..24ba1a5c42 100644 --- a/sysdeps/posix/closedir.c +++ b/sysdeps/posix/closedir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/ctermid.c b/sysdeps/posix/ctermid.c index f7b0e5cd3c..0ef9a3fe23 100644 --- a/sysdeps/posix/ctermid.c +++ b/sysdeps/posix/ctermid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/cuserid.c b/sysdeps/posix/cuserid.c index 183791bcab..57ddca4ef3 100644 --- a/sysdeps/posix/cuserid.c +++ b/sysdeps/posix/cuserid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/dirfd.c b/sysdeps/posix/dirfd.c index e80fff0f78..5af57146fd 100644 --- a/sysdeps/posix/dirfd.c +++ b/sysdeps/posix/dirfd.c @@ -1,5 +1,5 @@ /* Return the file descriptor used by a DIR stream. Unix version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/dirstream.h b/sysdeps/posix/dirstream.h index be20895051..dadc30e8dd 100644 --- a/sysdeps/posix/dirstream.h +++ b/sysdeps/posix/dirstream.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/dup.c b/sysdeps/posix/dup.c index 1fc55afc6b..fd989a072d 100644 --- a/sysdeps/posix/dup.c +++ b/sysdeps/posix/dup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/dup2.c b/sysdeps/posix/dup2.c index 4d164a025a..db7ad8e75e 100644 --- a/sysdeps/posix/dup2.c +++ b/sysdeps/posix/dup2.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/euidaccess.c b/sysdeps/posix/euidaccess.c index 04e7c96254..1cdf22b286 100644 --- a/sysdeps/posix/euidaccess.c +++ b/sysdeps/posix/euidaccess.c @@ -1,5 +1,5 @@ /* Check if effective user id can access file - Copyright (C) 1990-2013 Free Software Foundation, Inc. + Copyright (C) 1990-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/fdopendir.c b/sysdeps/posix/fdopendir.c index 4e0c39d46f..d8c6ec0513 100644 --- a/sysdeps/posix/fdopendir.c +++ b/sysdeps/posix/fdopendir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/flock.c b/sysdeps/posix/flock.c index eb18f8cd25..72616c39b1 100644 --- a/sysdeps/posix/flock.c +++ b/sysdeps/posix/flock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/fpathconf.c b/sysdeps/posix/fpathconf.c index db62d672b4..2797fede74 100644 --- a/sysdeps/posix/fpathconf.c +++ b/sysdeps/posix/fpathconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/gai_strerror.c b/sysdeps/posix/gai_strerror.c index 9b8cf02cc3..1ebb42c8c1 100644 --- a/sysdeps/posix/gai_strerror.c +++ b/sysdeps/posix/gai_strerror.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell , 1997. diff --git a/sysdeps/posix/getcwd.c b/sysdeps/posix/getcwd.c index 0b5e32fb82..61924d5748 100644 --- a/sysdeps/posix/getcwd.c +++ b/sysdeps/posix/getcwd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/getdtsz.c b/sysdeps/posix/getdtsz.c index 509394fd95..96e6991216 100644 --- a/sysdeps/posix/getdtsz.c +++ b/sysdeps/posix/getdtsz.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/gethostname.c b/sysdeps/posix/gethostname.c index 62e1b0fb08..5393e92be7 100644 --- a/sysdeps/posix/gethostname.c +++ b/sysdeps/posix/gethostname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/getpagesize.c b/sysdeps/posix/getpagesize.c index 5d25dec808..31eae75799 100644 --- a/sysdeps/posix/getpagesize.c +++ b/sysdeps/posix/getpagesize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@cygnus.com). diff --git a/sysdeps/posix/gettimeofday.c b/sysdeps/posix/gettimeofday.c index 176b557e51..529cdf773d 100644 --- a/sysdeps/posix/gettimeofday.c +++ b/sysdeps/posix/gettimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/isatty.c b/sysdeps/posix/isatty.c index 020af0c8df..781ce29fdc 100644 --- a/sysdeps/posix/isatty.c +++ b/sysdeps/posix/isatty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/isfdtype.c b/sysdeps/posix/isfdtype.c index f31a08ea31..5328e6de15 100644 --- a/sysdeps/posix/isfdtype.c +++ b/sysdeps/posix/isfdtype.c @@ -1,5 +1,5 @@ /* Determine whether descriptor has given property. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/killpg.c b/sysdeps/posix/killpg.c index 640c9995c4..4c275a4c2e 100644 --- a/sysdeps/posix/killpg.c +++ b/sysdeps/posix/killpg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/libc_fatal.c b/sysdeps/posix/libc_fatal.c index 5071df15b4..74e40ee4d2 100644 --- a/sysdeps/posix/libc_fatal.c +++ b/sysdeps/posix/libc_fatal.c @@ -1,5 +1,5 @@ /* Catastrophic failure reports. Generic POSIX.1 version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/mkfifo.c b/sysdeps/posix/mkfifo.c index 3dc106a029..cdb2f5d967 100644 --- a/sysdeps/posix/mkfifo.c +++ b/sysdeps/posix/mkfifo.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/mkfifoat.c b/sysdeps/posix/mkfifoat.c index a44ceaf1f4..ab269e9535 100644 --- a/sysdeps/posix/mkfifoat.c +++ b/sysdeps/posix/mkfifoat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/nice.c b/sysdeps/posix/nice.c index 3366dab384..087b22cced 100644 --- a/sysdeps/posix/nice.c +++ b/sysdeps/posix/nice.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/open64.c b/sysdeps/posix/open64.c index e0c55b00fb..64d192af97 100644 --- a/sysdeps/posix/open64.c +++ b/sysdeps/posix/open64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/opendir.c b/sysdeps/posix/opendir.c index fc05b0f9d7..e366701bd4 100644 --- a/sysdeps/posix/opendir.c +++ b/sysdeps/posix/opendir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/pathconf.c b/sysdeps/posix/pathconf.c index 2607d3ede8..8aa55e0856 100644 --- a/sysdeps/posix/pathconf.c +++ b/sysdeps/posix/pathconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/pause.c b/sysdeps/posix/pause.c index fb2103b25e..6d3bfc5c46 100644 --- a/sysdeps/posix/pause.c +++ b/sysdeps/posix/pause.c @@ -1,5 +1,5 @@ /* pause -- suspend the process until a signal arrives. POSIX.1 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/posix_fallocate.c b/sysdeps/posix/posix_fallocate.c index 99aaf01bbc..fc5f8833ea 100644 --- a/sysdeps/posix/posix_fallocate.c +++ b/sysdeps/posix/posix_fallocate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/posix_fallocate64.c b/sysdeps/posix/posix_fallocate64.c index 71fd7def18..729e84cddf 100644 --- a/sysdeps/posix/posix_fallocate64.c +++ b/sysdeps/posix/posix_fallocate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/pread.c b/sysdeps/posix/pread.c index ec62947f52..7f5cfa12ef 100644 --- a/sysdeps/posix/pread.c +++ b/sysdeps/posix/pread.c @@ -1,6 +1,6 @@ /* Read block from given position in file without changing file pointer. POSIX version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/posix/pread64.c b/sysdeps/posix/pread64.c index 3c28c51372..36b53f7b32 100644 --- a/sysdeps/posix/pread64.c +++ b/sysdeps/posix/pread64.c @@ -1,6 +1,6 @@ /* Read block from given position in file without changing file pointer. POSIX version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/posix/preadv.c b/sysdeps/posix/preadv.c index 374a9aba24..b1fd060b30 100644 --- a/sysdeps/posix/preadv.c +++ b/sysdeps/posix/preadv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/profil.c b/sysdeps/posix/profil.c index 86d36a9599..696c7a6cad 100644 --- a/sysdeps/posix/profil.c +++ b/sysdeps/posix/profil.c @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Mostly POSIX.1 version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/pwrite.c b/sysdeps/posix/pwrite.c index 776ecb544f..4a9fe1071c 100644 --- a/sysdeps/posix/pwrite.c +++ b/sysdeps/posix/pwrite.c @@ -1,6 +1,6 @@ /* Write block to given position in file without changing file pointer. POSIX version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/posix/pwrite64.c b/sysdeps/posix/pwrite64.c index 22243501cb..18c4e55983 100644 --- a/sysdeps/posix/pwrite64.c +++ b/sysdeps/posix/pwrite64.c @@ -1,6 +1,6 @@ /* Write block to given position in file without changing file pointer. POSIX version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/posix/pwritev.c b/sysdeps/posix/pwritev.c index 40dcd90dbf..97b7523137 100644 --- a/sysdeps/posix/pwritev.c +++ b/sysdeps/posix/pwritev.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/raise.c b/sysdeps/posix/raise.c index 50288ea081..f2424f9c4a 100644 --- a/sysdeps/posix/raise.c +++ b/sysdeps/posix/raise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/readdir.c b/sysdeps/posix/readdir.c index 55b32eb461..7bb956a916 100644 --- a/sysdeps/posix/readdir.c +++ b/sysdeps/posix/readdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/readdir_r.c b/sysdeps/posix/readdir_r.c index 8ed5c3fc91..ee88c9b46d 100644 --- a/sysdeps/posix/readdir_r.c +++ b/sysdeps/posix/readdir_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/readv.c b/sysdeps/posix/readv.c index a74a490c30..b7a8e1e7c2 100644 --- a/sysdeps/posix/readv.c +++ b/sysdeps/posix/readv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/remove.c b/sysdeps/posix/remove.c index 87ffb1a5b9..dc7f78d86f 100644 --- a/sysdeps/posix/remove.c +++ b/sysdeps/posix/remove.c @@ -1,5 +1,5 @@ /* ANSI C `remove' function to delete a file or directory. POSIX.1 version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/rename.c b/sysdeps/posix/rename.c index bd4b5d2ede..a50fc387be 100644 --- a/sysdeps/posix/rename.c +++ b/sysdeps/posix/rename.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/rewinddir.c b/sysdeps/posix/rewinddir.c index d4991ad43a..5a4a7154ab 100644 --- a/sysdeps/posix/rewinddir.c +++ b/sysdeps/posix/rewinddir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/seekdir.c b/sysdeps/posix/seekdir.c index dfd8b995b1..a143f69895 100644 --- a/sysdeps/posix/seekdir.c +++ b/sysdeps/posix/seekdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/shm_open.c b/sysdeps/posix/shm_open.c index cefb7a3814..456b3d8b8f 100644 --- a/sysdeps/posix/shm_open.c +++ b/sysdeps/posix/shm_open.c @@ -1,5 +1,5 @@ /* shm_open -- open a POSIX shared memory object. Generic POSIX file version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/shm_unlink.c b/sysdeps/posix/shm_unlink.c index 75a87f49f3..dc94e1692b 100644 --- a/sysdeps/posix/shm_unlink.c +++ b/sysdeps/posix/shm_unlink.c @@ -1,5 +1,5 @@ /* shm_unlink -- remove a POSIX shared memory object. Generic POSIX version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/sigblock.c b/sysdeps/posix/sigblock.c index cb55c56cae..5d0086223f 100644 --- a/sysdeps/posix/sigblock.c +++ b/sysdeps/posix/sigblock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/sigignore.c b/sysdeps/posix/sigignore.c index 84e3d4f2c1..4e232cc40f 100644 --- a/sysdeps/posix/sigignore.c +++ b/sysdeps/posix/sigignore.c @@ -1,5 +1,5 @@ /* Set the disposition of SIG to SIG_IGN. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/posix/sigintr.c b/sysdeps/posix/sigintr.c index 8695868bb2..200836438e 100644 --- a/sysdeps/posix/sigintr.c +++ b/sysdeps/posix/sigintr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/signal.c b/sysdeps/posix/signal.c index bb57316a15..934fffb50b 100644 --- a/sysdeps/posix/signal.c +++ b/sysdeps/posix/signal.c @@ -1,5 +1,5 @@ /* BSD-like signal function. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/sigpause.c b/sysdeps/posix/sigpause.c index 2d95927209..3dcf86c43c 100644 --- a/sysdeps/posix/sigpause.c +++ b/sysdeps/posix/sigpause.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/sigset.c b/sysdeps/posix/sigset.c index addbf75de9..8542e28c21 100644 --- a/sysdeps/posix/sigset.c +++ b/sysdeps/posix/sigset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/sigsetmask.c b/sysdeps/posix/sigsetmask.c index ff92da89f6..a36e75fb0e 100644 --- a/sysdeps/posix/sigsetmask.c +++ b/sysdeps/posix/sigsetmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/sigsuspend.c b/sysdeps/posix/sigsuspend.c index 81110f7058..3e0374c7a7 100644 --- a/sysdeps/posix/sigsuspend.c +++ b/sysdeps/posix/sigsuspend.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/sigvec.c b/sysdeps/posix/sigvec.c index e3a453eaa1..83ba75546f 100644 --- a/sysdeps/posix/sigvec.c +++ b/sysdeps/posix/sigvec.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/sigwait.c b/sysdeps/posix/sigwait.c index b0ea14dbc7..313eb18250 100644 --- a/sysdeps/posix/sigwait.c +++ b/sysdeps/posix/sigwait.c @@ -1,5 +1,5 @@ /* Implementation of sigwait function from POSIX.1c. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/posix/sleep.c b/sysdeps/posix/sleep.c index 8805978272..4a72c275b3 100644 --- a/sysdeps/posix/sleep.c +++ b/sysdeps/posix/sleep.c @@ -1,5 +1,5 @@ /* Sleep for a given number of seconds. POSIX.1 version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/spawni.c b/sysdeps/posix/spawni.c index f92b44f806..58c9e5d597 100644 --- a/sysdeps/posix/spawni.c +++ b/sysdeps/posix/spawni.c @@ -1,5 +1,5 @@ /* Guts of POSIX spawn interface. Generic POSIX.1 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/sprofil.c b/sysdeps/posix/sprofil.c index 1447a4f266..0e19d16c23 100644 --- a/sysdeps/posix/sprofil.c +++ b/sysdeps/posix/sprofil.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by David Mosberger-Tang . This file is part of the GNU C Library. diff --git a/sysdeps/posix/sysconf.c b/sysdeps/posix/sysconf.c index d8c3466c1c..26136bd9c9 100644 --- a/sysdeps/posix/sysconf.c +++ b/sysdeps/posix/sysconf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/system.c b/sysdeps/posix/system.c index 4ba9cff4d4..de71e6b661 100644 --- a/sysdeps/posix/system.c +++ b/sysdeps/posix/system.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/sysv_signal.c b/sysdeps/posix/sysv_signal.c index cc5ed909fd..d2c9f1b81d 100644 --- a/sysdeps/posix/sysv_signal.c +++ b/sysdeps/posix/sysv_signal.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/telldir.c b/sysdeps/posix/telldir.c index 4d674e0bde..ed978545fe 100644 --- a/sysdeps/posix/telldir.c +++ b/sysdeps/posix/telldir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/tempname.c b/sysdeps/posix/tempname.c index c49a42e20e..1f86549df3 100644 --- a/sysdeps/posix/tempname.c +++ b/sysdeps/posix/tempname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/time.c b/sysdeps/posix/time.c index 54b90357df..016c16ec82 100644 --- a/sysdeps/posix/time.c +++ b/sysdeps/posix/time.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/timespec_get.c b/sysdeps/posix/timespec_get.c index a578e8b986..05b24f30ae 100644 --- a/sysdeps/posix/timespec_get.c +++ b/sysdeps/posix/timespec_get.c @@ -1,5 +1,5 @@ /* timespec_get -- C11 interface to sample a clock. Generic POSIX.1 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/truncate.c b/sysdeps/posix/truncate.c index 7ef1400eb5..2473fbb8c9 100644 --- a/sysdeps/posix/truncate.c +++ b/sysdeps/posix/truncate.c @@ -1,5 +1,5 @@ /* Truncate a file given by name. Generic POSIX.1 version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/ttyname.c b/sysdeps/posix/ttyname.c index e252cf4a2f..17ed3af867 100644 --- a/sysdeps/posix/ttyname.c +++ b/sysdeps/posix/ttyname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/ttyname_r.c b/sysdeps/posix/ttyname_r.c index 239f3846d4..ffae375e36 100644 --- a/sysdeps/posix/ttyname_r.c +++ b/sysdeps/posix/ttyname_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/ulimit.c b/sysdeps/posix/ulimit.c index f5ee6bfc9b..c9269ec874 100644 --- a/sysdeps/posix/ulimit.c +++ b/sysdeps/posix/ulimit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/utime.c b/sysdeps/posix/utime.c index 89fbd97955..a3140114a2 100644 --- a/sysdeps/posix/utime.c +++ b/sysdeps/posix/utime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/utimes.c b/sysdeps/posix/utimes.c index 7213a6288e..cdfecfa397 100644 --- a/sysdeps/posix/utimes.c +++ b/sysdeps/posix/utimes.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/wait.c b/sysdeps/posix/wait.c index 7cb39f6351..0a4965272f 100644 --- a/sysdeps/posix/wait.c +++ b/sysdeps/posix/wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/wait3.c b/sysdeps/posix/wait3.c index 5d3f7fbfd6..f87b4f14ab 100644 --- a/sysdeps/posix/wait3.c +++ b/sysdeps/posix/wait3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/posix/waitid.c b/sysdeps/posix/waitid.c index 534431c254..a1f8cc8c4c 100644 --- a/sysdeps/posix/waitid.c +++ b/sysdeps/posix/waitid.c @@ -1,5 +1,5 @@ /* Pseudo implementation of waitid. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1997. diff --git a/sysdeps/posix/writev.c b/sysdeps/posix/writev.c index 514bd0bc3c..ef0058e25e 100644 --- a/sysdeps/posix/writev.c +++ b/sysdeps/posix/writev.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/bits/atomic.h b/sysdeps/powerpc/bits/atomic.h index 548dbc8f7a..2ffba48d55 100644 --- a/sysdeps/powerpc/bits/atomic.h +++ b/sysdeps/powerpc/bits/atomic.h @@ -1,5 +1,5 @@ /* Atomic operations. PowerPC Common version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/sysdeps/powerpc/bits/endian.h b/sysdeps/powerpc/bits/endian.h index 9a92f8ed07..060dc73491 100644 --- a/sysdeps/powerpc/bits/endian.h +++ b/sysdeps/powerpc/bits/endian.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/bits/fenv.h b/sysdeps/powerpc/bits/fenv.h index 86bf94e8fd..f72e1cc8bf 100644 --- a/sysdeps/powerpc/bits/fenv.h +++ b/sysdeps/powerpc/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/bits/fenvinline.h b/sysdeps/powerpc/bits/fenvinline.h index 0720795d54..00336f3b0d 100644 --- a/sysdeps/powerpc/bits/fenvinline.h +++ b/sysdeps/powerpc/bits/fenvinline.h @@ -1,5 +1,5 @@ /* Inline floating-point environment handling functions for powerpc. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/bits/hwcap.h b/sysdeps/powerpc/bits/hwcap.h index 0c02fc68e8..1af8c82c90 100644 --- a/sysdeps/powerpc/bits/hwcap.h +++ b/sysdeps/powerpc/bits/hwcap.h @@ -1,5 +1,5 @@ /* Defines for bits in AT_HWCAP and AT_HWCAP2. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/bits/link.h b/sysdeps/powerpc/bits/link.h index 2f1da8be4f..c8f876b510 100644 --- a/sysdeps/powerpc/bits/link.h +++ b/sysdeps/powerpc/bits/link.h @@ -1,5 +1,5 @@ /* Machine-specific declarations for dynamic linker interface. PowerPC version - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/bits/mathdef.h b/sysdeps/powerpc/bits/mathdef.h index b3c21fee6e..48e9b3c6ee 100644 --- a/sysdeps/powerpc/bits/mathdef.h +++ b/sysdeps/powerpc/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/bits/mathinline.h b/sysdeps/powerpc/bits/mathinline.h index cef5b29b14..426ed7803a 100644 --- a/sysdeps/powerpc/bits/mathinline.h +++ b/sysdeps/powerpc/bits/mathinline.h @@ -1,5 +1,5 @@ /* Inline math functions for powerpc. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/bits/setjmp.h b/sysdeps/powerpc/bits/setjmp.h index cb41e87c2c..2fee5075c1 100644 --- a/sysdeps/powerpc/bits/setjmp.h +++ b/sysdeps/powerpc/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/dl-procinfo.c b/sysdeps/powerpc/dl-procinfo.c index 2984af197c..fe2c4b52cd 100644 --- a/sysdeps/powerpc/dl-procinfo.c +++ b/sysdeps/powerpc/dl-procinfo.c @@ -1,5 +1,5 @@ /* Data for processor capability information. PowerPC version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/dl-procinfo.h b/sysdeps/powerpc/dl-procinfo.h index e7eeed9d28..0333831664 100644 --- a/sysdeps/powerpc/dl-procinfo.h +++ b/sysdeps/powerpc/dl-procinfo.h @@ -1,5 +1,5 @@ /* Processor capability information handling macros. PowerPC version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/dl-tls.h b/sysdeps/powerpc/dl-tls.h index f26e798655..f7cf6f96eb 100644 --- a/sysdeps/powerpc/dl-tls.h +++ b/sysdeps/powerpc/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. PowerPC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/ffs.c b/sysdeps/powerpc/ffs.c index deba0cdd09..6fa52ae9d3 100644 --- a/sysdeps/powerpc/ffs.c +++ b/sysdeps/powerpc/ffs.c @@ -1,6 +1,6 @@ /* Find first set bit in a word, counted from least significant end. For PowerPC. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/sysdeps/powerpc/fpu/e_hypot.c b/sysdeps/powerpc/fpu/e_hypot.c index 8cf5b02d92..b64d326e21 100644 --- a/sysdeps/powerpc/fpu/e_hypot.c +++ b/sysdeps/powerpc/fpu/e_hypot.c @@ -1,5 +1,5 @@ /* Pythagorean addition using doubles - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/fpu/e_hypotf.c b/sysdeps/powerpc/fpu/e_hypotf.c index 5fc91ee4c6..b76131af28 100644 --- a/sysdeps/powerpc/fpu/e_hypotf.c +++ b/sysdeps/powerpc/fpu/e_hypotf.c @@ -1,5 +1,5 @@ /* Pythagorean addition using floats - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/fpu/e_rem_pio2f.c b/sysdeps/powerpc/fpu/e_rem_pio2f.c index 3d4694b457..dc9d0e42a6 100644 --- a/sysdeps/powerpc/fpu/e_rem_pio2f.c +++ b/sysdeps/powerpc/fpu/e_rem_pio2f.c @@ -1,5 +1,5 @@ /* e_rem_pio2f.c -- float version of e_rem_pio2.c - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/fpu/e_sqrt.c b/sysdeps/powerpc/fpu/e_sqrt.c index 2d50fb525e..0368e57e92 100644 --- a/sysdeps/powerpc/fpu/e_sqrt.c +++ b/sysdeps/powerpc/fpu/e_sqrt.c @@ -1,5 +1,5 @@ /* Double-precision floating point square root. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/e_sqrtf.c b/sysdeps/powerpc/fpu/e_sqrtf.c index 91d2d37d7b..fcc74aeb19 100644 --- a/sysdeps/powerpc/fpu/e_sqrtf.c +++ b/sysdeps/powerpc/fpu/e_sqrtf.c @@ -1,5 +1,5 @@ /* Single-precision floating point square root. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fclrexcpt.c b/sysdeps/powerpc/fpu/fclrexcpt.c index 7f66e21ce2..cda2810120 100644 --- a/sysdeps/powerpc/fpu/fclrexcpt.c +++ b/sysdeps/powerpc/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fe_mask.c b/sysdeps/powerpc/fpu/fe_mask.c index a313b06e8f..546752beac 100644 --- a/sysdeps/powerpc/fpu/fe_mask.c +++ b/sysdeps/powerpc/fpu/fe_mask.c @@ -1,5 +1,5 @@ /* Procedure definition for FE_MASK_ENV. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fe_nomask.c b/sysdeps/powerpc/fpu/fe_nomask.c index f54c0760d5..96db4d30b5 100644 --- a/sysdeps/powerpc/fpu/fe_nomask.c +++ b/sysdeps/powerpc/fpu/fe_nomask.c @@ -1,5 +1,5 @@ /* Procedure definition for FE_NOMASK_ENV. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fedisblxcpt.c b/sysdeps/powerpc/fpu/fedisblxcpt.c index f2c45a60c6..5883e09263 100644 --- a/sysdeps/powerpc/fpu/fedisblxcpt.c +++ b/sysdeps/powerpc/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating , 2000. diff --git a/sysdeps/powerpc/fpu/feenablxcpt.c b/sysdeps/powerpc/fpu/feenablxcpt.c index 35e977e1e0..8ad0f97ac7 100644 --- a/sysdeps/powerpc/fpu/feenablxcpt.c +++ b/sysdeps/powerpc/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating , 2000. diff --git a/sysdeps/powerpc/fpu/fegetenv.c b/sysdeps/powerpc/fpu/fegetenv.c index a512a91a4e..3e552bc9c5 100644 --- a/sysdeps/powerpc/fpu/fegetenv.c +++ b/sysdeps/powerpc/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fegetexcept.c b/sysdeps/powerpc/fpu/fegetexcept.c index 23d47a27e9..ef9ae100f3 100644 --- a/sysdeps/powerpc/fpu/fegetexcept.c +++ b/sysdeps/powerpc/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating , 2000. diff --git a/sysdeps/powerpc/fpu/fegetround.c b/sysdeps/powerpc/fpu/fegetround.c index 078911f4a3..e7ed52dbb1 100644 --- a/sysdeps/powerpc/fpu/fegetround.c +++ b/sysdeps/powerpc/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/feholdexcpt.c b/sysdeps/powerpc/fpu/feholdexcpt.c index 0ecf0f7bc5..1375a2f5ad 100644 --- a/sysdeps/powerpc/fpu/feholdexcpt.c +++ b/sysdeps/powerpc/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fenv_const.c b/sysdeps/powerpc/fpu/fenv_const.c index 47761ebeca..2404f77da0 100644 --- a/sysdeps/powerpc/fpu/fenv_const.c +++ b/sysdeps/powerpc/fpu/fenv_const.c @@ -1,5 +1,5 @@ /* Constants for fenv_bits.h. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fenv_libc.h b/sysdeps/powerpc/fpu/fenv_libc.h index 74d633d942..28e4d1f7c9 100644 --- a/sysdeps/powerpc/fpu/fenv_libc.h +++ b/sysdeps/powerpc/fpu/fenv_libc.h @@ -1,5 +1,5 @@ /* Internal libc stuff for floating point environment routines. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fenv_private.h b/sysdeps/powerpc/fpu/fenv_private.h index bc78c3ffb0..327dbb3218 100644 --- a/sysdeps/powerpc/fpu/fenv_private.h +++ b/sysdeps/powerpc/fpu/fenv_private.h @@ -1,5 +1,5 @@ /* Private floating point rounding and exceptions handling. PowerPC version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fesetenv.c b/sysdeps/powerpc/fpu/fesetenv.c index 5de6ff5f71..fa99ddbd40 100644 --- a/sysdeps/powerpc/fpu/fesetenv.c +++ b/sysdeps/powerpc/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fesetround.c b/sysdeps/powerpc/fpu/fesetround.c index 970f12c4fc..4d7f12b318 100644 --- a/sysdeps/powerpc/fpu/fesetround.c +++ b/sysdeps/powerpc/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/powerpc/fpu/feupdateenv.c b/sysdeps/powerpc/fpu/feupdateenv.c index 262e2135a6..0100e8b98a 100644 --- a/sysdeps/powerpc/fpu/feupdateenv.c +++ b/sysdeps/powerpc/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/powerpc/fpu/fgetexcptflg.c b/sysdeps/powerpc/fpu/fgetexcptflg.c index 1395bede0c..70887926e8 100644 --- a/sysdeps/powerpc/fpu/fgetexcptflg.c +++ b/sysdeps/powerpc/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fraiseexcpt.c b/sysdeps/powerpc/fpu/fraiseexcpt.c index 6193071bd4..8fb6dfee27 100644 --- a/sysdeps/powerpc/fpu/fraiseexcpt.c +++ b/sysdeps/powerpc/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/fsetexcptflg.c b/sysdeps/powerpc/fpu/fsetexcptflg.c index 0d309c8d5f..95193c1010 100644 --- a/sysdeps/powerpc/fpu/fsetexcptflg.c +++ b/sysdeps/powerpc/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/ftestexcept.c b/sysdeps/powerpc/fpu/ftestexcept.c index 86eea0fb08..6bba543600 100644 --- a/sysdeps/powerpc/fpu/ftestexcept.c +++ b/sysdeps/powerpc/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/k_cosf.c b/sysdeps/powerpc/fpu/k_cosf.c index f6ec25524a..0e29bceb6c 100644 --- a/sysdeps/powerpc/fpu/k_cosf.c +++ b/sysdeps/powerpc/fpu/k_cosf.c @@ -1,5 +1,5 @@ /* k_cosf.c -- float version of k_cos.c - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/fpu/k_rem_pio2f.c b/sysdeps/powerpc/fpu/k_rem_pio2f.c index 568e10670c..812a3e9890 100644 --- a/sysdeps/powerpc/fpu/k_rem_pio2f.c +++ b/sysdeps/powerpc/fpu/k_rem_pio2f.c @@ -1,5 +1,5 @@ /* k_rem_pio2f.c -- float version of e_rem_pio2.c - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/fpu/k_sinf.c b/sysdeps/powerpc/fpu/k_sinf.c index bb8c679b73..7b7ad13440 100644 --- a/sysdeps/powerpc/fpu/k_sinf.c +++ b/sysdeps/powerpc/fpu/k_sinf.c @@ -1,5 +1,5 @@ /* k_sinf.c -- float version of k_sin.c - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/fpu/math_private.h b/sysdeps/powerpc/fpu/math_private.h index c8833d694f..dde153d37a 100644 --- a/sysdeps/powerpc/fpu/math_private.h +++ b/sysdeps/powerpc/fpu/math_private.h @@ -1,5 +1,5 @@ /* Private inline math functions for powerpc. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_cosf.c b/sysdeps/powerpc/fpu/s_cosf.c index d785e7ee4c..43d1f1c7aa 100644 --- a/sysdeps/powerpc/fpu/s_cosf.c +++ b/sysdeps/powerpc/fpu/s_cosf.c @@ -1,5 +1,5 @@ /* s_cosf.c -- float version of s_cos.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/fpu/s_fabs.S b/sysdeps/powerpc/fpu/s_fabs.S index 66d3ff3353..0b4a1db995 100644 --- a/sysdeps/powerpc/fpu/s_fabs.S +++ b/sysdeps/powerpc/fpu/s_fabs.S @@ -1,5 +1,5 @@ /* Floating-point absolute value. PowerPC version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_fdim.c b/sysdeps/powerpc/fpu/s_fdim.c index f77bb193b0..9a27fb1f70 100644 --- a/sysdeps/powerpc/fpu/s_fdim.c +++ b/sysdeps/powerpc/fpu/s_fdim.c @@ -1,5 +1,5 @@ /* Return positive difference between arguments. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_fdimf.c b/sysdeps/powerpc/fpu/s_fdimf.c index 9471003567..a37e72f150 100644 --- a/sysdeps/powerpc/fpu/s_fdimf.c +++ b/sysdeps/powerpc/fpu/s_fdimf.c @@ -1,5 +1,5 @@ /* Return positive difference between arguments. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_float_bitwise.h b/sysdeps/powerpc/fpu/s_float_bitwise.h index c0a4e56be0..7aae8def91 100644 --- a/sysdeps/powerpc/fpu/s_float_bitwise.h +++ b/sysdeps/powerpc/fpu/s_float_bitwise.h @@ -1,5 +1,5 @@ /* Bitwise manipulation over float. Function prototypes. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/fpu/s_fma.S b/sysdeps/powerpc/fpu/s_fma.S index 81383d7bb3..b3c436da87 100644 --- a/sysdeps/powerpc/fpu/s_fma.S +++ b/sysdeps/powerpc/fpu/s_fma.S @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. PowerPC version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_fmaf.S b/sysdeps/powerpc/fpu/s_fmaf.S index e0464fa34c..367dc1d23f 100644 --- a/sysdeps/powerpc/fpu/s_fmaf.S +++ b/sysdeps/powerpc/fpu/s_fmaf.S @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. PowerPC version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_fmax.S b/sysdeps/powerpc/fpu/s_fmax.S index ec656d616f..670427db9c 100644 --- a/sysdeps/powerpc/fpu/s_fmax.S +++ b/sysdeps/powerpc/fpu/s_fmax.S @@ -1,5 +1,5 @@ /* Floating-point maximum. PowerPC version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_fmin.S b/sysdeps/powerpc/fpu/s_fmin.S index e139c6c8f3..17a959d73f 100644 --- a/sysdeps/powerpc/fpu/s_fmin.S +++ b/sysdeps/powerpc/fpu/s_fmin.S @@ -1,5 +1,5 @@ /* Floating-point minimum. PowerPC version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_isnan.c b/sysdeps/powerpc/fpu/s_isnan.c index 472b6d03ef..04c6d5a139 100644 --- a/sysdeps/powerpc/fpu/s_isnan.c +++ b/sysdeps/powerpc/fpu/s_isnan.c @@ -1,5 +1,5 @@ /* Return 1 if argument is a NaN, else 0. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_llround.c b/sysdeps/powerpc/fpu/s_llround.c index 995d0a724a..b0c6cb7c18 100644 --- a/sysdeps/powerpc/fpu/s_llround.c +++ b/sysdeps/powerpc/fpu/s_llround.c @@ -1,5 +1,5 @@ /* Round double value to long long int. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_llroundf.c b/sysdeps/powerpc/fpu/s_llroundf.c index 0935de6624..81b957ac2e 100644 --- a/sysdeps/powerpc/fpu/s_llroundf.c +++ b/sysdeps/powerpc/fpu/s_llroundf.c @@ -1,5 +1,5 @@ /* Round float value to long long int. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_rint.c b/sysdeps/powerpc/fpu/s_rint.c index f0024c9b30..d41b9abf2a 100644 --- a/sysdeps/powerpc/fpu/s_rint.c +++ b/sysdeps/powerpc/fpu/s_rint.c @@ -1,5 +1,5 @@ /* Round a 64-bit floating point value to the nearest integer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_rintf.c b/sysdeps/powerpc/fpu/s_rintf.c index 4a32a4343a..2c385fe0b7 100644 --- a/sysdeps/powerpc/fpu/s_rintf.c +++ b/sysdeps/powerpc/fpu/s_rintf.c @@ -1,5 +1,5 @@ /* Round a 32-bit floating point value to the nearest integer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/fpu/s_sinf.c b/sysdeps/powerpc/fpu/s_sinf.c index efb4e00a98..89780fdfa7 100644 --- a/sysdeps/powerpc/fpu/s_sinf.c +++ b/sysdeps/powerpc/fpu/s_sinf.c @@ -1,5 +1,5 @@ /* s_sinf.c -- float version of s_sin.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/fpu/tst-setcontext-fpscr.c b/sysdeps/powerpc/fpu/tst-setcontext-fpscr.c index cc9b320bfd..1ef1667392 100644 --- a/sysdeps/powerpc/fpu/tst-setcontext-fpscr.c +++ b/sysdeps/powerpc/fpu/tst-setcontext-fpscr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ryan S. Arnold Sean Curry diff --git a/sysdeps/powerpc/fpu_control.h b/sysdeps/powerpc/fpu_control.h index e82e7913cb..6b4a071e79 100644 --- a/sysdeps/powerpc/fpu_control.h +++ b/sysdeps/powerpc/fpu_control.h @@ -1,5 +1,5 @@ /* FPU control word definitions. PowerPC version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/gccframe.h b/sysdeps/powerpc/gccframe.h index 0a1a060430..743a5329c2 100644 --- a/sysdeps/powerpc/gccframe.h +++ b/sysdeps/powerpc/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. powerpc version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/jmpbuf-offsets.h b/sysdeps/powerpc/jmpbuf-offsets.h index f2116bd703..d5bd469c2f 100644 --- a/sysdeps/powerpc/jmpbuf-offsets.h +++ b/sysdeps/powerpc/jmpbuf-offsets.h @@ -1,5 +1,5 @@ /* Private macros for accessing __jmp_buf contents. PowerPC version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/jmpbuf-unwind.h b/sysdeps/powerpc/jmpbuf-unwind.h index e7249b7d87..70ad88d58c 100644 --- a/sysdeps/powerpc/jmpbuf-unwind.h +++ b/sysdeps/powerpc/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/sysdeps/powerpc/ldsodefs.h b/sysdeps/powerpc/ldsodefs.h index 435821c246..fc337e1a35 100644 --- a/sysdeps/powerpc/ldsodefs.h +++ b/sysdeps/powerpc/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/longjmp.c b/sysdeps/powerpc/longjmp.c index 189fc03aba..b883cdd798 100644 --- a/sysdeps/powerpc/longjmp.c +++ b/sysdeps/powerpc/longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/machine-gmon.h b/sysdeps/powerpc/machine-gmon.h index 00987b8f04..e1a3b4536a 100644 --- a/sysdeps/powerpc/machine-gmon.h +++ b/sysdeps/powerpc/machine-gmon.h @@ -1,5 +1,5 @@ /* PowerPC-specific implementation of profiling support. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/math-tests.h b/sysdeps/powerpc/math-tests.h index d87dc9a7f6..c289c526e4 100644 --- a/sysdeps/powerpc/math-tests.h +++ b/sysdeps/powerpc/math-tests.h @@ -1,5 +1,5 @@ /* Configuration for math tests. PowerPC version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/memmove.c b/sysdeps/powerpc/memmove.c index befe9e76fa..3859da8615 100644 --- a/sysdeps/powerpc/memmove.c +++ b/sysdeps/powerpc/memmove.c @@ -1,6 +1,6 @@ /* Copy memory to memory until the specified number of bytes has been copied. Overlap is handled correctly. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/sysdeps/powerpc/memusage.h b/sysdeps/powerpc/memusage.h index 1da49c404c..c073c018e5 100644 --- a/sysdeps/powerpc/memusage.h +++ b/sysdeps/powerpc/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/nofpu/atomic-feclearexcept.c b/sysdeps/powerpc/nofpu/atomic-feclearexcept.c index c2b2ee9386..780024c78d 100644 --- a/sysdeps/powerpc/nofpu/atomic-feclearexcept.c +++ b/sysdeps/powerpc/nofpu/atomic-feclearexcept.c @@ -1,5 +1,5 @@ /* Clear floating-point exceptions for atomic compound assignment. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/nofpu/atomic-feholdexcept.c b/sysdeps/powerpc/nofpu/atomic-feholdexcept.c index 07b11d0557..aeb00ee7f1 100644 --- a/sysdeps/powerpc/nofpu/atomic-feholdexcept.c +++ b/sysdeps/powerpc/nofpu/atomic-feholdexcept.c @@ -1,6 +1,6 @@ /* Store current floating-point environment and clear exceptions for atomic compound assignment. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/nofpu/atomic-feupdateenv.c b/sysdeps/powerpc/nofpu/atomic-feupdateenv.c index 9334e1192c..700b7cb874 100644 --- a/sysdeps/powerpc/nofpu/atomic-feupdateenv.c +++ b/sysdeps/powerpc/nofpu/atomic-feupdateenv.c @@ -1,6 +1,6 @@ /* Install given floating-point environment and raise exceptions for atomic compound assignment. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/nofpu/fclrexcpt.c b/sysdeps/powerpc/nofpu/fclrexcpt.c index da0b61a894..e58552d111 100644 --- a/sysdeps/powerpc/nofpu/fclrexcpt.c +++ b/sysdeps/powerpc/nofpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear floating-point exceptions (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/fedisblxcpt.c b/sysdeps/powerpc/nofpu/fedisblxcpt.c index 00490fd6ed..4e0f39adf0 100644 --- a/sysdeps/powerpc/nofpu/fedisblxcpt.c +++ b/sysdeps/powerpc/nofpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable exceptions (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/feenablxcpt.c b/sysdeps/powerpc/nofpu/feenablxcpt.c index 09eb823b8b..bdf075d63f 100644 --- a/sysdeps/powerpc/nofpu/feenablxcpt.c +++ b/sysdeps/powerpc/nofpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable exceptions (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/fegetenv.c b/sysdeps/powerpc/nofpu/fegetenv.c index 351e5526c7..8501a05b69 100644 --- a/sysdeps/powerpc/nofpu/fegetenv.c +++ b/sysdeps/powerpc/nofpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002, 2010. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/fegetexcept.c b/sysdeps/powerpc/nofpu/fegetexcept.c index d907555fb6..ab1d087f07 100644 --- a/sysdeps/powerpc/nofpu/fegetexcept.c +++ b/sysdeps/powerpc/nofpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get floating-point exceptions (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/fegetround.c b/sysdeps/powerpc/nofpu/fegetround.c index 2c7bdbe5f6..d746bcfc40 100644 --- a/sysdeps/powerpc/nofpu/fegetround.c +++ b/sysdeps/powerpc/nofpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding mode (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/feholdexcpt.c b/sysdeps/powerpc/nofpu/feholdexcpt.c index ba6a53accb..310b5f4294 100644 --- a/sysdeps/powerpc/nofpu/feholdexcpt.c +++ b/sysdeps/powerpc/nofpu/feholdexcpt.c @@ -1,6 +1,6 @@ /* Store current floating-point environment and clear exceptions (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/fenv_const.c b/sysdeps/powerpc/nofpu/fenv_const.c index 291b1accc7..6dc9e6f4f2 100644 --- a/sysdeps/powerpc/nofpu/fenv_const.c +++ b/sysdeps/powerpc/nofpu/fenv_const.c @@ -1,5 +1,5 @@ /* Constants for fenv_bits.h (soft float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/fenv_libc.h b/sysdeps/powerpc/nofpu/fenv_libc.h index a0b6b910cd..dce1524e3f 100644 --- a/sysdeps/powerpc/nofpu/fenv_libc.h +++ b/sysdeps/powerpc/nofpu/fenv_libc.h @@ -1,5 +1,5 @@ /* Internal libc stuff for floating point environment routines. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/nofpu/fesetenv.c b/sysdeps/powerpc/nofpu/fesetenv.c index fa84169836..4ace3d097a 100644 --- a/sysdeps/powerpc/nofpu/fesetenv.c +++ b/sysdeps/powerpc/nofpu/fesetenv.c @@ -1,5 +1,5 @@ /* Set floating point environment (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/fesetround.c b/sysdeps/powerpc/nofpu/fesetround.c index ab0d52f237..aae7cc69ac 100644 --- a/sysdeps/powerpc/nofpu/fesetround.c +++ b/sysdeps/powerpc/nofpu/fesetround.c @@ -1,5 +1,5 @@ /* Set rounding mode (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/feupdateenv.c b/sysdeps/powerpc/nofpu/feupdateenv.c index 8a26cb86d1..000c4d1829 100644 --- a/sysdeps/powerpc/nofpu/feupdateenv.c +++ b/sysdeps/powerpc/nofpu/feupdateenv.c @@ -1,6 +1,6 @@ /* Install given floating-point environment and raise exceptions (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/fgetexcptflg.c b/sysdeps/powerpc/nofpu/fgetexcptflg.c index b7fd90d71e..2e03e26341 100644 --- a/sysdeps/powerpc/nofpu/fgetexcptflg.c +++ b/sysdeps/powerpc/nofpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/flt-rounds.c b/sysdeps/powerpc/nofpu/flt-rounds.c index ad2bf941d1..5edd6ebca9 100644 --- a/sysdeps/powerpc/nofpu/flt-rounds.c +++ b/sysdeps/powerpc/nofpu/flt-rounds.c @@ -1,5 +1,5 @@ /* Return current rounding mode as correct value for FLT_ROUNDS. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/nofpu/fraiseexcpt.c b/sysdeps/powerpc/nofpu/fraiseexcpt.c index 215a70b4bf..097502e41b 100644 --- a/sysdeps/powerpc/nofpu/fraiseexcpt.c +++ b/sysdeps/powerpc/nofpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/fsetexcptflg.c b/sysdeps/powerpc/nofpu/fsetexcptflg.c index ee2aa81a4e..b440719fb8 100644 --- a/sysdeps/powerpc/nofpu/fsetexcptflg.c +++ b/sysdeps/powerpc/nofpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/ftestexcept.c b/sysdeps/powerpc/nofpu/ftestexcept.c index 42e861da33..d9f244e762 100644 --- a/sysdeps/powerpc/nofpu/ftestexcept.c +++ b/sysdeps/powerpc/nofpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test floating-point exceptions (soft-float edition). - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/get-rounding-mode.h b/sysdeps/powerpc/nofpu/get-rounding-mode.h index 6d327f57c7..2199d372b7 100644 --- a/sysdeps/powerpc/nofpu/get-rounding-mode.h +++ b/sysdeps/powerpc/nofpu/get-rounding-mode.h @@ -1,6 +1,6 @@ /* Determine floating-point rounding mode within libc. PowerPC soft-float version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/nofpu/sim-full.c b/sysdeps/powerpc/nofpu/sim-full.c index fb09d1bc9d..59e79c9109 100644 --- a/sysdeps/powerpc/nofpu/sim-full.c +++ b/sysdeps/powerpc/nofpu/sim-full.c @@ -1,5 +1,5 @@ /* Software floating-point exception handling emulation. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/nofpu/soft-supp.h b/sysdeps/powerpc/nofpu/soft-supp.h index 0a0614aa6a..9e59cf077b 100644 --- a/sysdeps/powerpc/nofpu/soft-supp.h +++ b/sysdeps/powerpc/nofpu/soft-supp.h @@ -1,5 +1,5 @@ /* Internal support stuff for complete soft float. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Aldy Hernandez , 2002. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/novmx-longjmp.c b/sysdeps/powerpc/novmx-longjmp.c index b2c0e4cf5f..a71a479afc 100644 --- a/sysdeps/powerpc/novmx-longjmp.c +++ b/sysdeps/powerpc/novmx-longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/novmx-sigjmp.c b/sysdeps/powerpc/novmx-sigjmp.c index a55beec865..c651f4231f 100644 --- a/sysdeps/powerpc/novmx-sigjmp.c +++ b/sysdeps/powerpc/novmx-sigjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/novmxsetjmp.h b/sysdeps/powerpc/novmxsetjmp.h index 1deb7b03c6..a0ee88a69b 100644 --- a/sysdeps/powerpc/novmxsetjmp.h +++ b/sysdeps/powerpc/novmxsetjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/power4/fpu/mpa-arch.h b/sysdeps/powerpc/power4/fpu/mpa-arch.h index 43175bbcdf..a52e38fe1a 100644 --- a/sysdeps/powerpc/power4/fpu/mpa-arch.h +++ b/sysdeps/powerpc/power4/fpu/mpa-arch.h @@ -1,5 +1,5 @@ /* Overridable constants and operations. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/powerpc/power4/fpu/mpa.c b/sysdeps/powerpc/power4/fpu/mpa.c index 9d4d644cf9..d741de63dd 100644 --- a/sysdeps/powerpc/power4/fpu/mpa.c +++ b/sysdeps/powerpc/power4/fpu/mpa.c @@ -2,7 +2,7 @@ /* * IBM Accurate Mathematical Library * written by International Business Machines Corp. - * Copyright (C) 2001-2013 Free Software Foundation, Inc. + * Copyright (C) 2001-2014 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by diff --git a/sysdeps/powerpc/power4/wordcopy.c b/sysdeps/powerpc/power4/wordcopy.c index f4ba3555ab..263b44455c 100644 --- a/sysdeps/powerpc/power4/wordcopy.c +++ b/sysdeps/powerpc/power4/wordcopy.c @@ -1,5 +1,5 @@ /* _memcopy.c -- subroutines for memory copy functions. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/sysdeps/powerpc/power5+/fpu/s_modf.c b/sysdeps/powerpc/power5+/fpu/s_modf.c index b45bf66169..eb469f7647 100644 --- a/sysdeps/powerpc/power5+/fpu/s_modf.c +++ b/sysdeps/powerpc/power5+/fpu/s_modf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/power5+/fpu/s_modff.c b/sysdeps/powerpc/power5+/fpu/s_modff.c index 55759cde05..e4fe857d29 100644 --- a/sysdeps/powerpc/power5+/fpu/s_modff.c +++ b/sysdeps/powerpc/power5+/fpu/s_modff.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/power6/wcschr.c b/sysdeps/powerpc/power6/wcschr.c index e58b623bd6..7045677b51 100644 --- a/sysdeps/powerpc/power6/wcschr.c +++ b/sysdeps/powerpc/power6/wcschr.c @@ -1,5 +1,5 @@ /* wcschr.c - Wide Character Search for POWER6+. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/power6/wcscpy.c b/sysdeps/powerpc/power6/wcscpy.c index c70c6c6d3f..417ec72ac9 100644 --- a/sysdeps/powerpc/power6/wcscpy.c +++ b/sysdeps/powerpc/power6/wcscpy.c @@ -1,5 +1,5 @@ /* wcscpy.c - Wide Character Copy for POWER6+. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/power6/wcsrchr.c b/sysdeps/powerpc/power6/wcsrchr.c index 5602be35e9..278d98dfd5 100644 --- a/sysdeps/powerpc/power6/wcsrchr.c +++ b/sysdeps/powerpc/power6/wcsrchr.c @@ -1,5 +1,5 @@ /* wcsrchr.c - Wide Character Reverse Search for POWER6+. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/power6/wordcopy.c b/sysdeps/powerpc/power6/wordcopy.c index 19a18bc929..c32e6ddc72 100644 --- a/sysdeps/powerpc/power6/wordcopy.c +++ b/sysdeps/powerpc/power6/wordcopy.c @@ -1,5 +1,5 @@ /* _memcopy.c -- subroutines for memory copy functions. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). Updated for POWER6 by Steven Munroe (sjmunroe@us.ibm.com). diff --git a/sysdeps/powerpc/power7/fpu/s_logb.c b/sysdeps/powerpc/power7/fpu/s_logb.c index da2e6b9e49..8e324d7b14 100644 --- a/sysdeps/powerpc/power7/fpu/s_logb.c +++ b/sysdeps/powerpc/power7/fpu/s_logb.c @@ -1,5 +1,5 @@ /* logb(). PowerPC/POWER7 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/power7/fpu/s_logbf.c b/sysdeps/powerpc/power7/fpu/s_logbf.c index 05726f2f7f..bf68c0e199 100644 --- a/sysdeps/powerpc/power7/fpu/s_logbf.c +++ b/sysdeps/powerpc/power7/fpu/s_logbf.c @@ -1,5 +1,5 @@ /* logbf(). PowerPC/POWER7 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/power7/fpu/s_logbl.c b/sysdeps/powerpc/power7/fpu/s_logbl.c index f5b90d9942..251e99d556 100644 --- a/sysdeps/powerpc/power7/fpu/s_logbl.c +++ b/sysdeps/powerpc/power7/fpu/s_logbl.c @@ -1,5 +1,5 @@ /* logbl(). PowerPC/POWER7 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/405/memcmp.S b/sysdeps/powerpc/powerpc32/405/memcmp.S index 2849461cd7..bc4f93fe1e 100644 --- a/sysdeps/powerpc/powerpc32/405/memcmp.S +++ b/sysdeps/powerpc/powerpc32/405/memcmp.S @@ -1,5 +1,5 @@ /* Optimized memcmp implementation for PowerPC476. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/405/memcpy.S b/sysdeps/powerpc/powerpc32/405/memcpy.S index b01d539209..a63244dd3b 100644 --- a/sysdeps/powerpc/powerpc32/405/memcpy.S +++ b/sysdeps/powerpc/powerpc32/405/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC476. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/405/memset.S b/sysdeps/powerpc/powerpc32/405/memset.S index b73dba8873..758c840690 100644 --- a/sysdeps/powerpc/powerpc32/405/memset.S +++ b/sysdeps/powerpc/powerpc32/405/memset.S @@ -1,5 +1,5 @@ /* Optimized memset for PowerPC405,440,464 (32-byte cacheline). - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/405/strcmp.S b/sysdeps/powerpc/powerpc32/405/strcmp.S index c0b21907be..9bffa5022f 100644 --- a/sysdeps/powerpc/powerpc32/405/strcmp.S +++ b/sysdeps/powerpc/powerpc32/405/strcmp.S @@ -1,5 +1,5 @@ /* Optimized strcmp implementation for PowerPC476. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/405/strcpy.S b/sysdeps/powerpc/powerpc32/405/strcpy.S index d7c84569d9..bee0e3ec51 100644 --- a/sysdeps/powerpc/powerpc32/405/strcpy.S +++ b/sysdeps/powerpc/powerpc32/405/strcpy.S @@ -1,5 +1,5 @@ /* Optimized strcpy implementation for PowerPC476. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/405/strlen.S b/sysdeps/powerpc/powerpc32/405/strlen.S index 77d22ea673..a9aa994d01 100644 --- a/sysdeps/powerpc/powerpc32/405/strlen.S +++ b/sysdeps/powerpc/powerpc32/405/strlen.S @@ -1,5 +1,5 @@ /* Optimized strlen implementation for PowerPC476. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/405/strncmp.S b/sysdeps/powerpc/powerpc32/405/strncmp.S index 3e2ba5f855..2c59f956af 100644 --- a/sysdeps/powerpc/powerpc32/405/strncmp.S +++ b/sysdeps/powerpc/powerpc32/405/strncmp.S @@ -1,5 +1,5 @@ /* Optimized strncmp implementation for PowerPC476. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/476/memset.S b/sysdeps/powerpc/powerpc32/476/memset.S index 48c21d6209..5388f7f84b 100644 --- a/sysdeps/powerpc/powerpc32/476/memset.S +++ b/sysdeps/powerpc/powerpc32/476/memset.S @@ -1,5 +1,5 @@ /* Optimized memset for PowerPC476 (128-byte cacheline). - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/__longjmp-common.S b/sysdeps/powerpc/powerpc32/__longjmp-common.S index 97c966db4a..01b892c781 100644 --- a/sysdeps/powerpc/powerpc32/__longjmp-common.S +++ b/sysdeps/powerpc/powerpc32/__longjmp-common.S @@ -1,5 +1,5 @@ /* longjmp for PowerPC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/__longjmp.S b/sysdeps/powerpc/powerpc32/__longjmp.S index 8456cb5930..3371176112 100644 --- a/sysdeps/powerpc/powerpc32/__longjmp.S +++ b/sysdeps/powerpc/powerpc32/__longjmp.S @@ -1,5 +1,5 @@ /* AltiVec/VMX (new) version of __longjmp for PowerPC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/a2/memcpy.S b/sysdeps/powerpc/powerpc32/a2/memcpy.S index f2f63b1802..70557614b3 100644 --- a/sysdeps/powerpc/powerpc32/a2/memcpy.S +++ b/sysdeps/powerpc/powerpc32/a2/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC A2. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Michael Brutman . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/add_n.S b/sysdeps/powerpc/powerpc32/add_n.S index 7ce77e04d8..0544e62726 100644 --- a/sysdeps/powerpc/powerpc32/add_n.S +++ b/sysdeps/powerpc/powerpc32/add_n.S @@ -1,5 +1,5 @@ /* Add two limb vectors of equal, non-zero length for PowerPC. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/addmul_1.S b/sysdeps/powerpc/powerpc32/addmul_1.S index 88a01a154e..74bfdefdfd 100644 --- a/sysdeps/powerpc/powerpc32/addmul_1.S +++ b/sysdeps/powerpc/powerpc32/addmul_1.S @@ -1,5 +1,5 @@ /* Multiply a limb vector by a single limb, for PowerPC. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/backtrace.c b/sysdeps/powerpc/powerpc32/backtrace.c index 8d413e620f..b794a48b56 100644 --- a/sysdeps/powerpc/powerpc32/backtrace.c +++ b/sysdeps/powerpc/powerpc32/backtrace.c @@ -1,5 +1,5 @@ /* Return backtrace of current program state. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/bits/atomic.h b/sysdeps/powerpc/powerpc32/bits/atomic.h index a09e4d441c..7613bdc485 100644 --- a/sysdeps/powerpc/powerpc32/bits/atomic.h +++ b/sysdeps/powerpc/powerpc32/bits/atomic.h @@ -1,5 +1,5 @@ /* Atomic operations. PowerPC32 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/sysdeps/powerpc/powerpc32/bsd-_setjmp.S b/sysdeps/powerpc/powerpc32/bsd-_setjmp.S index ad2b5ffdb0..71b6c71b5d 100644 --- a/sysdeps/powerpc/powerpc32/bsd-_setjmp.S +++ b/sysdeps/powerpc/powerpc32/bsd-_setjmp.S @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. PowerPC32/64 version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/bsd-setjmp.S b/sysdeps/powerpc/powerpc32/bsd-setjmp.S index 5e1e860d85..299d9ec7da 100644 --- a/sysdeps/powerpc/powerpc32/bsd-setjmp.S +++ b/sysdeps/powerpc/powerpc32/bsd-setjmp.S @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. PowerPC32/64 version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/bzero.S b/sysdeps/powerpc/powerpc32/bzero.S index b5699243f4..31f3c4046d 100644 --- a/sysdeps/powerpc/powerpc32/bzero.S +++ b/sysdeps/powerpc/powerpc32/bzero.S @@ -1,5 +1,5 @@ /* Optimized bzero `implementation' for PowerPC. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/cell/memcpy.S b/sysdeps/powerpc/powerpc32/cell/memcpy.S index 24a0f12487..26b44578a8 100644 --- a/sysdeps/powerpc/powerpc32/cell/memcpy.S +++ b/sysdeps/powerpc/powerpc32/cell/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for CELL BE PowerPC. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/crti.S b/sysdeps/powerpc/powerpc32/crti.S index a49f3076a0..8411bd8025 100644 --- a/sysdeps/powerpc/powerpc32/crti.S +++ b/sysdeps/powerpc/powerpc32/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for PowerPC. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/crtn.S b/sysdeps/powerpc/powerpc32/crtn.S index 312b9313a4..7c7af8a7d3 100644 --- a/sysdeps/powerpc/powerpc32/crtn.S +++ b/sysdeps/powerpc/powerpc32/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for PowerPC. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/dl-irel.h b/sysdeps/powerpc/powerpc32/dl-irel.h index fcc1608f59..16b786b72f 100644 --- a/sysdeps/powerpc/powerpc32/dl-irel.h +++ b/sysdeps/powerpc/powerpc32/dl-irel.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF indirect relocation inline functions. PowerPC version. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/dl-machine.c b/sysdeps/powerpc/powerpc32/dl-machine.c index aba3618561..4b77966e77 100644 --- a/sysdeps/powerpc/powerpc32/dl-machine.c +++ b/sysdeps/powerpc/powerpc32/dl-machine.c @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation functions. PowerPC version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/dl-machine.h b/sysdeps/powerpc/powerpc32/dl-machine.h index 597afd7819..96d08c5d36 100644 --- a/sysdeps/powerpc/powerpc32/dl-machine.h +++ b/sysdeps/powerpc/powerpc32/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. PowerPC version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/dl-start.S b/sysdeps/powerpc/powerpc32/dl-start.S index fa9c9bc4ae..b2078d4225 100644 --- a/sysdeps/powerpc/powerpc32/dl-start.S +++ b/sysdeps/powerpc/powerpc32/dl-start.S @@ -1,5 +1,5 @@ /* Machine-dependent ELF startup code. PowerPC version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/dl-trampoline.S b/sysdeps/powerpc/powerpc32/dl-trampoline.S index 2357fbd562..3a3da7b416 100644 --- a/sysdeps/powerpc/powerpc32/dl-trampoline.S +++ b/sysdeps/powerpc/powerpc32/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. PPC32 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c b/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c index 9005119f78..f5d3ff4ed4 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c @@ -1,6 +1,6 @@ /* Clear floating-point exceptions for atomic compound assignment. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c b/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c index afd225e2cf..4ad22f24c5 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c @@ -1,6 +1,6 @@ /* Store current floating-point environment and clear exceptions for atomic compound assignment. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c b/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c index 9ae6b45087..5d545de9f6 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c @@ -1,6 +1,6 @@ /* Install given floating-point environment and raise exceptions for atomic compound assignment. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c index 92a7dd1e09..a40358b589 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c index 43a5706264..118429ad24 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c @@ -1,5 +1,5 @@ /* Note a change to floating-point exceptions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c index 7cc963c019..ffa75f2fff 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c b/sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c index 133dde7b31..19f48c0571 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c index bfcbca2ad3..2ae06b8f7b 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c index 9c7afc74f4..3b579ef199 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get floating-point exceptions. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c index 1e894e7523..48f32a97f0 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c b/sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c index bd05ebd3c7..d04829395d 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c @@ -1,6 +1,6 @@ /* Store current floating-point environment and clear exceptions. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c index 3a85f18106..59896151d1 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c @@ -1,5 +1,5 @@ /* Constant floating-point environments for e500. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h b/sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h index a69d061982..d8225e7064 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h @@ -1,5 +1,5 @@ /* Internal libc stuff for floating point environment routines. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c index 411e6be8df..d0bb565152 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. e500 version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c index 805008e0c1..4c13f041fa 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c b/sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c index 505c923639..ee010b2c0d 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c @@ -1,6 +1,6 @@ /* Install given floating-point environment and raise exceptions. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c index c094a04cbd..92bcf9c493 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c @@ -1,5 +1,5 @@ /* Convert floating-point exceptions from prctl form. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c index 3ec939d18b..571e1084a3 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c @@ -1,5 +1,5 @@ /* Convert floating-point exceptions from SPEFSCR form. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c index b9c51b1255..f5fa16d181 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c @@ -1,5 +1,5 @@ /* Convert floating-point exceptions to prctl form. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c index 570934d153..c2e7bee3da 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c @@ -1,5 +1,5 @@ /* Convert floating-point exceptions to SPEFSCR form. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c index b01cadeff9..8201890404 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c b/sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c index 49e6eeb614..2207fb654f 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c @@ -1,6 +1,6 @@ /* Return current rounding mode as correct value for FLT_ROUNDS. e500 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c index 22b2bdadbf..14b5152508 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c @@ -1,5 +1,5 @@ /* Raise given exceptions. e500 version for use from soft-fp. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Aldy Hernandez , 2004. diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c index 0eca9ffff9..70fe68396c 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c b/sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c index 43f2d19d17..12a1a515e6 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. e500 version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c b/sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c index f4f547d5f6..c800b6e2d9 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S b/sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S index 823f748ba0..3c38a4a3be 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S @@ -1,5 +1,5 @@ /* Floating-point absolute value. e500 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c b/sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c index 4394ddc7cb..07cf5078f0 100644 --- a/sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c +++ b/sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c @@ -1,5 +1,5 @@ /* Raise given exceptions, given the SPEFSCR bits for those exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S b/sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S index 13611541c2..088e389b0e 100644 --- a/sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S +++ b/sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S @@ -1,5 +1,5 @@ /* longjmp for PowerPC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/__longjmp.S b/sysdeps/powerpc/powerpc32/fpu/__longjmp.S index cbd42be5cb..08bdd54f75 100644 --- a/sysdeps/powerpc/powerpc32/fpu/__longjmp.S +++ b/sysdeps/powerpc/powerpc32/fpu/__longjmp.S @@ -1,5 +1,5 @@ /* AltiVec/VMX (new) version of __longjmp for PowerPC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/fprrest.S b/sysdeps/powerpc/powerpc32/fpu/fprrest.S index 04bb880df6..60f2653258 100644 --- a/sysdeps/powerpc/powerpc32/fpu/fprrest.S +++ b/sysdeps/powerpc/powerpc32/fpu/fprrest.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/fprsave.S b/sysdeps/powerpc/powerpc32/fpu/fprsave.S index 3400ca3ff3..00ed2d29a4 100644 --- a/sysdeps/powerpc/powerpc32/fpu/fprsave.S +++ b/sysdeps/powerpc/powerpc32/fpu/fprsave.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_ceil.S b/sysdeps/powerpc/powerpc32/fpu/s_ceil.S index 637db9eb86..4c1d815602 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_ceil.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_ceil.S @@ -1,5 +1,5 @@ /* ceil function. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_ceilf.S b/sysdeps/powerpc/powerpc32/fpu/s_ceilf.S index 3662e0b79f..44799626a7 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_ceilf.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_ceilf.S @@ -1,5 +1,5 @@ /* float ceil function. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_copysign.S b/sysdeps/powerpc/powerpc32/fpu/s_copysign.S index 1da24f492e..0d172d732f 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_copysign.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_copysign.S @@ -1,5 +1,5 @@ /* Copy a sign bit between floating-point values. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_copysignl.S b/sysdeps/powerpc/powerpc32/fpu/s_copysignl.S index 2ad6de273d..ecfeafcf7f 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_copysignl.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_copysignl.S @@ -1,6 +1,6 @@ /* Copy a sign bit between floating-point values. IBM extended format long double version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_fabsl.S b/sysdeps/powerpc/powerpc32/fpu/s_fabsl.S index 669411e9ea..3f86a08f5a 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_fabsl.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_fabsl.S @@ -1,6 +1,6 @@ /* Copy a sign bit between floating-point values. IBM extended format long double version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_floor.S b/sysdeps/powerpc/powerpc32/fpu/s_floor.S index 168bb17b79..b2ff745f20 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_floor.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_floor.S @@ -1,5 +1,5 @@ /* Floor function. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_floorf.S b/sysdeps/powerpc/powerpc32/fpu/s_floorf.S index 4d6e90c9b9..79fe124aae 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_floorf.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_floorf.S @@ -1,5 +1,5 @@ /* float Floor function. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_isnan.S b/sysdeps/powerpc/powerpc32/fpu/s_isnan.S index 024252a5ca..d82a3c64e8 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_isnan.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC32 version. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_llrint.c b/sysdeps/powerpc/powerpc32/fpu/s_llrint.c index fb954505b2..f9d9907f8e 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_llrint.c +++ b/sysdeps/powerpc/powerpc32/fpu/s_llrint.c @@ -1,5 +1,5 @@ /* Round a double value to a long long in the current rounding mode. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_llrintf.c b/sysdeps/powerpc/powerpc32/fpu/s_llrintf.c index 8b7efbcf55..394962d365 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_llrintf.c +++ b/sysdeps/powerpc/powerpc32/fpu/s_llrintf.c @@ -1,5 +1,5 @@ /* Round a float value to a long long in the current rounding mode. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_lrint.S b/sysdeps/powerpc/powerpc32/fpu/s_lrint.S index 249fda501f..cb9e5d4715 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_lrint.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_lrint.S @@ -1,5 +1,5 @@ /* Round double to long int. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_lround.S b/sysdeps/powerpc/powerpc32/fpu/s_lround.S index 6309f864b7..1003e3819d 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_lround.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_lround.S @@ -1,5 +1,5 @@ /* lround function. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S b/sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S index c9cd766b94..2734738d4d 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S @@ -1,5 +1,5 @@ /* Round to int floating-point values. PowerPC32 version. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S b/sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S index cf806b3159..11bdc77370 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S @@ -1,5 +1,5 @@ /* Round to int floating-point values. PowerPC32 version. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/powerpc32/fpu/s_rint.S b/sysdeps/powerpc/powerpc32/fpu/s_rint.S index f04055f461..ad5b68491e 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_rint.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_rint.S @@ -1,5 +1,5 @@ /* Round to int floating-point values. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_rintf.S b/sysdeps/powerpc/powerpc32/fpu/s_rintf.S index e0301af2e7..1596986693 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_rintf.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_rintf.S @@ -1,5 +1,5 @@ /* Round float to int floating-point values. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_round.S b/sysdeps/powerpc/powerpc32/fpu/s_round.S index 73a100422b..0947ff6f73 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_round.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_round.S @@ -1,5 +1,5 @@ /* round function. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_roundf.S b/sysdeps/powerpc/powerpc32/fpu/s_roundf.S index 8cff1563a0..629bf25780 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_roundf.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_roundf.S @@ -1,5 +1,5 @@ /* roundf function. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_trunc.S b/sysdeps/powerpc/powerpc32/fpu/s_trunc.S index 0f9e3600d4..39b15b3ea2 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_trunc.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_trunc.S @@ -1,5 +1,5 @@ /* trunc function. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/s_truncf.S b/sysdeps/powerpc/powerpc32/fpu/s_truncf.S index effbede6d2..1f2e02154c 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_truncf.S +++ b/sysdeps/powerpc/powerpc32/fpu/s_truncf.S @@ -1,5 +1,5 @@ /* truncf function. PowerPC32 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/setjmp-common.S b/sysdeps/powerpc/powerpc32/fpu/setjmp-common.S index 08efd64920..926a1b1215 100644 --- a/sysdeps/powerpc/powerpc32/fpu/setjmp-common.S +++ b/sysdeps/powerpc/powerpc32/fpu/setjmp-common.S @@ -1,5 +1,5 @@ /* setjmp for PowerPC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/fpu/setjmp.S b/sysdeps/powerpc/powerpc32/fpu/setjmp.S index 566aa34d0f..333f707dad 100644 --- a/sysdeps/powerpc/powerpc32/fpu/setjmp.S +++ b/sysdeps/powerpc/powerpc32/fpu/setjmp.S @@ -1,5 +1,5 @@ /* non altivec (old) version of setjmp for PowerPC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/gprrest0.S b/sysdeps/powerpc/powerpc32/gprrest0.S index f053f8e9f4..00d908fa35 100644 --- a/sysdeps/powerpc/powerpc32/gprrest0.S +++ b/sysdeps/powerpc/powerpc32/gprrest0.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/gprrest1.S b/sysdeps/powerpc/powerpc32/gprrest1.S index 70b167c25c..968fc6fdb0 100644 --- a/sysdeps/powerpc/powerpc32/gprrest1.S +++ b/sysdeps/powerpc/powerpc32/gprrest1.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/gprsave0.S b/sysdeps/powerpc/powerpc32/gprsave0.S index faed843117..abc1dab788 100644 --- a/sysdeps/powerpc/powerpc32/gprsave0.S +++ b/sysdeps/powerpc/powerpc32/gprsave0.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/gprsave1.S b/sysdeps/powerpc/powerpc32/gprsave1.S index f52c7c0f90..4f12f459af 100644 --- a/sysdeps/powerpc/powerpc32/gprsave1.S +++ b/sysdeps/powerpc/powerpc32/gprsave1.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/hp-timing.h b/sysdeps/powerpc/powerpc32/hp-timing.h index bf925fbbee..9ff52eb1f0 100644 --- a/sysdeps/powerpc/powerpc32/hp-timing.h +++ b/sysdeps/powerpc/powerpc32/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. Linux/PPC32 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/libgcc-compat.S b/sysdeps/powerpc/powerpc32/libgcc-compat.S index 4ea870a667..b9a000c699 100644 --- a/sysdeps/powerpc/powerpc32/libgcc-compat.S +++ b/sysdeps/powerpc/powerpc32/libgcc-compat.S @@ -1,5 +1,5 @@ /* pre-.hidden libgcc compatibility - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/lshift.S b/sysdeps/powerpc/powerpc32/lshift.S index 9ee58e6a55..afa4d5ea87 100644 --- a/sysdeps/powerpc/powerpc32/lshift.S +++ b/sysdeps/powerpc/powerpc32/lshift.S @@ -1,5 +1,5 @@ /* Shift a limb left, low level routine. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/memset.S b/sysdeps/powerpc/powerpc32/memset.S index c49bd039f8..841ee2dc12 100644 --- a/sysdeps/powerpc/powerpc32/memset.S +++ b/sysdeps/powerpc/powerpc32/memset.S @@ -1,5 +1,5 @@ /* Optimized memset implementation for PowerPC. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/mul_1.S b/sysdeps/powerpc/powerpc32/mul_1.S index 0b474d4911..2e6b735f50 100644 --- a/sysdeps/powerpc/powerpc32/mul_1.S +++ b/sysdeps/powerpc/powerpc32/mul_1.S @@ -1,5 +1,5 @@ /* Multiply a limb vector by a limb, for PowerPC. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c index 91a42a2dbd..967b923970 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c @@ -1,5 +1,5 @@ /* __ieee_hypot() POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c index 35ae97d7cb..9e7a651eea 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c @@ -1,5 +1,5 @@ /* __ieee_hypot() PowerPC32 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c index c179ca2b8b..78c5d6f54a 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c @@ -1,5 +1,5 @@ /* Multiple versions of ieee754_hypot. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c index 64cba4ef0d..d1da9f252a 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c @@ -1,5 +1,5 @@ /* __ieee754_hypot POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c index 9a5232204f..76bd9a8fef 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c @@ -1,5 +1,5 @@ /* __ieee_hypot() PowerPC32 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c index d5c61cd814..6df1194ca9 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c @@ -1,5 +1,5 @@ /* Multiple versions of ieee754_hypotf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S index 213e31c6a1..b9e38d2c14 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S @@ -1,5 +1,5 @@ /* ceil function. PowerPC32/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S index d5c9d428dd..94c7f504c5 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S @@ -1,5 +1,5 @@ /* ceil function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c index a4e31d1f2f..24ea03ae08 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c @@ -1,5 +1,5 @@ /* Multiple versions of ceil. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S index 7ea5e97390..5c87d7ff86 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S @@ -1,5 +1,5 @@ /* ceilf function. PowerPC32/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S index da0a50401a..8a28bc61ab 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S @@ -1,5 +1,5 @@ /* ceilf function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c index e8f66f95bb..5efd6b68f3 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c @@ -1,5 +1,5 @@ /* Multiple versions of ceilf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S index 42550477af..4374facadb 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S @@ -1,5 +1,5 @@ /* copysign(). PowerPC32/POWER6 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S index a0090105c6..5125dbc910 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S @@ -1,5 +1,5 @@ /* copysign(). PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c index a4b5239fad..52df99d442 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c @@ -1,5 +1,5 @@ /* Multiple versions of copysign. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c index 7c5ef4fecc..31b586c70a 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c @@ -1,5 +1,5 @@ /* Multiple versions of copysignf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S index afa93d26a0..02e67c89a5 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S @@ -1,5 +1,5 @@ /* finite(). PowerPC32/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c index 133391eb2b..113979e228 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c @@ -1,5 +1,5 @@ /* finite(). PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c index 85a63414c4..c56e7ca994 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c @@ -1,5 +1,5 @@ /* Multiple versions of finite. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c index a413999966..c0e38ce745 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c @@ -1,5 +1,5 @@ /* finitef(). PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c index a3f15965d6..6babf4efa0 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c @@ -1,5 +1,5 @@ /* Multiple versions of finitef. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S index ffb5277a15..d816a8022c 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S @@ -1,5 +1,5 @@ /* floor function. PowerPC32/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S index bfc6c0b0e0..556f56c0da 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S @@ -1,5 +1,5 @@ /* floor function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c index c56e067bf7..817a748842 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c @@ -1,5 +1,5 @@ /* Multiple versions of floor. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S index 4df6f89b33..0727159454 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S @@ -1,5 +1,5 @@ /* floorf function. PowerPC32/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S index 5ea62ccbf8..4618352c8e 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S @@ -1,5 +1,5 @@ /* floorf function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c index df73148f53..50494c2275 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c @@ -1,5 +1,5 @@ /* Multiple versions of floorf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S index 07c20552d5..3c904ab61f 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S @@ -1,5 +1,5 @@ /* isinf(). PowerPC32/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c index abd3a875ad..c897486991 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c @@ -1,5 +1,5 @@ /* isinf(). PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c index afbae8669d..2f72c34a94 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c @@ -1,5 +1,5 @@ /* Multiple versions of isinf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c index 09786c48ef..855c8025de 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c @@ -1,5 +1,5 @@ /* isinff(). PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c index bb56f4353c..fbf3d07c4f 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c @@ -1,5 +1,5 @@ /* Multiple versions of isinf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S index 206b3ce126..d17d6867c8 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC32/POWER5 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S index 0c87918512..e10588a9eb 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC32/POWER6 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S index b82ab7f25a..994859ed56 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC32/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S index db13213e69..8b4fcb71c6 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c index a45091f772..8f3666b101 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c @@ -1,5 +1,5 @@ /* Multiple versions of isnan. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power5.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power5.S index 2483f9e0da..ef09ebb143 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power5.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power5.S @@ -1,5 +1,5 @@ /* isnanf(). PowerPC32/POWER5 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S index 20d8a0a89c..d9578f4d66 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S @@ -1,5 +1,5 @@ /* isnanf(). PowerPC32/POWER6 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c index c59b5c9820..3029b5b022 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c @@ -1,5 +1,5 @@ /* Multiple versions of isnanf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S index f4d971607f..a113c82286 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S @@ -1,5 +1,5 @@ /* Round double to long int. PowerPC32/Power6. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S index 6f288ca9d1..c094fc98ae 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S @@ -1,5 +1,5 @@ /* llrint function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c index c00d15f18a..9c84f8c3cb 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c @@ -1,5 +1,5 @@ /* Multiple versions of llrint. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S index 15da786b86..60ae082e51 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S @@ -1,5 +1,5 @@ /* Round float to long int. PowerPC32/POWER6 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S index 47ce488f8f..74954f648f 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S @@ -1,5 +1,5 @@ /* llrintf function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c index f9b38a55c0..6b86680d07 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c @@ -1,5 +1,5 @@ /* Multiple versions of llrintf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S index 45e0288608..2fd2bbdaed 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S @@ -1,5 +1,5 @@ /* lround function. PowerPC32/POWER5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S index 9d6167ab1d..447ed90491 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S @@ -1,5 +1,5 @@ /* lround function. PowerPC32/POWER6 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S index bd6d7d6a02..de3b5a3ce3 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S @@ -1,5 +1,5 @@ /* llround function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c index 043bebe34e..53af4daaa7 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c @@ -1,5 +1,5 @@ /* Multiple versions of llround. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c index 49fa0fff1b..700cf32ca2 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c @@ -1,5 +1,5 @@ /* Multiple versions of llroundf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c index 666c76d285..328056646f 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c @@ -1,5 +1,5 @@ /* logb(). PowerPC32/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c index 9190ec9f8c..c9969d4148 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c @@ -1,5 +1,5 @@ /* logb(). PowerPC32/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c index c8eaf93e7c..40b6565a3b 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c @@ -1,5 +1,5 @@ /* Multiple versions of logb. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c index f454c75799..6531af07c3 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c @@ -1,5 +1,5 @@ /* logbf(). PowerPC32/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c index 7d51041375..f296865b2f 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c @@ -1,5 +1,5 @@ /* logbf(). PowerPC32 default implementation. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c index cf66af4367..3dfe4b500a 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c @@ -1,5 +1,5 @@ /* Multiple versions of logbf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-power7.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-power7.c index b5adcd232a..7c5ad47759 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-power7.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-power7.c @@ -1,5 +1,5 @@ /* logbl(). PowerPC32/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c index 705de9f4e5..63a44e1727 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c @@ -1,5 +1,5 @@ /* logbl(). PowerPC32/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c index acc6700083..3451b7b3d5 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c @@ -1,5 +1,5 @@ /* Multiple versions of logbl. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S index 232e8f7642..29c1104e0e 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S @@ -1,5 +1,5 @@ /* Round double to long int. POWER6x PowerPC32 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S index bdece6feb4..1de78739df 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S @@ -1,5 +1,5 @@ /* Round double to long int. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c index 03cf83edbd..8bee532dfd 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c @@ -1,5 +1,5 @@ /* Multiple versions of lrint. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c index 204b8fbbf1..f1585b03bd 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c @@ -1,5 +1,5 @@ /* Multiple versions of lrintf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S index a5e1d1ac27..fcffeb325e 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S @@ -1,5 +1,5 @@ /* lround function. POWER5+, PowerPC32 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6x.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6x.S index 302521c883..05f9200868 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6x.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6x.S @@ -1,5 +1,5 @@ /* lround function. POWER6x, PowerPC32 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S index 8124cd7731..13096e2302 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S @@ -1,5 +1,5 @@ /* lround function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c index f21a7e84e9..9e69ac8713 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c @@ -1,5 +1,5 @@ /* Multiple versions of lround. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c index 3080637c58..967911cea4 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c @@ -1,5 +1,5 @@ /* Multiple versions of lroundf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c index ec0b42cc72..d7ad0b7cc0 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c @@ -1,5 +1,5 @@ /* PowerPC/POWER5+ implementation for modf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c index 666bf662ef..1b9c6a3a92 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c @@ -1,5 +1,5 @@ /* PowerPC32 default implementation for modf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c index 3f980837a8..596b32c9ba 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c @@ -1,5 +1,5 @@ /* Multiple versions of modf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c index e729a389bb..4021b52619 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c @@ -1,5 +1,5 @@ /* PowerPC/POWER5+ implementation for modff. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c index 08476b45c3..986f2d590f 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c @@ -1,5 +1,5 @@ /* PowerPC32 default implementation for modff. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c index 0e591ba2e8..4429658f17 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c @@ -1,5 +1,5 @@ /* Multiple versions of modff. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S index e165bbdb31..c5362c3303 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S @@ -1,5 +1,5 @@ /* round function. PowerPC32/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S index 889318a2a2..db18cf5fb3 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S @@ -1,5 +1,5 @@ /* round function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c index c21dfaf190..1a9d046ef9 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c @@ -1,5 +1,5 @@ /* Multiple versions of round. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S index 6cd21698fd..4b3e392854 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S @@ -1,5 +1,5 @@ /* roundf function. PowerPC32/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S index 9787c5cc68..f8805c0900 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S @@ -1,5 +1,5 @@ /* roundf function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c index 94e66e15a1..2087c33bf4 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c @@ -1,5 +1,5 @@ /* Multiple versions of roundf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S index 1969e9e650..2b570204f4 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S @@ -1,5 +1,5 @@ /* trunc function. PowerPC32/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S index 541b4edbae..113640646c 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S @@ -1,5 +1,5 @@ /* trunc function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c index 1fdef37bd3..3e1278d479 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c @@ -1,5 +1,5 @@ /* Multiple versions of trunc. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S index 211f88ed61..5ae5a2a4cc 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S @@ -1,5 +1,5 @@ /* truncf function. PowerPC32/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S index a83f41303b..5747bc6e06 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S @@ -1,5 +1,5 @@ /* truncf function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c index 779a614126..bf5781838f 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c @@ -1,5 +1,5 @@ /* Multiple versions of truncf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S index 1c0e8c86c0..4d1cb44651 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S @@ -1,5 +1,5 @@ /* sqrt function. PowerPC32/POWER5 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S index 81be92940d..7586c22d63 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S @@ -1,5 +1,5 @@ /* sqrt function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c index 36a2007e83..b8b6d6f53d 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c @@ -1,5 +1,5 @@ /* Multiple versions of sqrt. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S index e65aab4f02..edcd34e73a 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S @@ -1,5 +1,5 @@ /* sqrtf function. PowerPC32/POWER5 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S index 647fecc194..63d63552d3 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S @@ -1,5 +1,5 @@ /* sqrtf function. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c index 90a05f4251..82d0f405be 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c +++ b/sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c @@ -1,5 +1,5 @@ /* Multiple versions of sqrtf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S b/sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S index e7a88feb4b..ef9c17793c 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S @@ -1,5 +1,5 @@ /* Round double to long int. PowerPC32 on PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S b/sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S index da24ad38d3..7c49059dca 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S @@ -1,5 +1,5 @@ /* Round float to long int. PowerPC32 on PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S b/sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S index 7246ca4d14..9f45fe562d 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S @@ -1,5 +1,5 @@ /* llround function. PowerPC32 on PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S b/sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S index 3648e4a69f..33eef3ffb5 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S @@ -1,5 +1,5 @@ /* sqrt function. PowerPC32 version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S b/sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S index 153843c7cd..5143117f90 100644 --- a/sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S +++ b/sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S @@ -1,5 +1,5 @@ /* sqrtf function. PowerPC32 version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/hp-timing.c b/sysdeps/powerpc/powerpc32/power4/hp-timing.c index 5073adb0e5..fcf5e45a2c 100644 --- a/sysdeps/powerpc/powerpc32/power4/hp-timing.c +++ b/sysdeps/powerpc/powerpc32/power4/hp-timing.c @@ -1,6 +1,6 @@ /* Support for high precision, low overhead timing functions. powerpc64 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/powerpc/powerpc32/power4/hp-timing.h b/sysdeps/powerpc/powerpc32/power4/hp-timing.h index 4e42374eae..f1e3bebe66 100644 --- a/sysdeps/powerpc/powerpc32/power4/hp-timing.h +++ b/sysdeps/powerpc/powerpc32/power4/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. powerpc64 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/powerpc/powerpc32/power4/memcmp.S b/sysdeps/powerpc/powerpc32/power4/memcmp.S index 35e162667d..f531052caa 100644 --- a/sysdeps/powerpc/powerpc32/power4/memcmp.S +++ b/sysdeps/powerpc/powerpc32/power4/memcmp.S @@ -1,5 +1,5 @@ /* Optimized strcmp implementation for PowerPC32. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/memcopy.h b/sysdeps/powerpc/powerpc32/power4/memcopy.h index 2c9cca366f..d3752dcc1c 100644 --- a/sysdeps/powerpc/powerpc32/power4/memcopy.h +++ b/sysdeps/powerpc/powerpc32/power4/memcopy.h @@ -1,5 +1,5 @@ /* memcopy.h -- definitions for memory copy functions. Generic C version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/sysdeps/powerpc/powerpc32/power4/memcpy.S b/sysdeps/powerpc/powerpc32/power4/memcpy.S index 338d3cce30..3493d429b5 100644 --- a/sysdeps/powerpc/powerpc32/power4/memcpy.S +++ b/sysdeps/powerpc/powerpc32/power4/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC32 on PowerPC64. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/memset.S b/sysdeps/powerpc/powerpc32/power4/memset.S index 4fd9d8cb4a..88110e3c42 100644 --- a/sysdeps/powerpc/powerpc32/power4/memset.S +++ b/sysdeps/powerpc/powerpc32/power4/memset.S @@ -1,5 +1,5 @@ /* Optimized memset implementation for PowerPC64. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S b/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S index 49d5666cdd..83c1d19f83 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S @@ -1,5 +1,5 @@ /* Optimized bzero implementation for PowerPC32/POWER6. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S index f2c7e423d9..a335ae0f67 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S @@ -1,5 +1,5 @@ /* Optimized bzero implementation for PowerPC32/POWER7. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S b/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S index 7d0541c794..7a7cca99ed 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S @@ -1,5 +1,5 @@ /* Optimized bzero implementation for PowerPC32/PPC32. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c b/sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c index 0dee2013bb..2a6298a33d 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c @@ -1,5 +1,5 @@ /* Multiple versions of bzero. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c b/sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c index 18034b677b..8ba6a80275 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c @@ -1,5 +1,5 @@ /* Enumerate available IFUNC implementations of a function. PowerPC32 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h b/sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h index 490c0b4e7a..51a34f2588 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h @@ -1,5 +1,5 @@ /* This file is part of the GNU C Library. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S index a8a077d076..a08c37d699 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S @@ -1,5 +1,5 @@ /* Optimized memchr implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c b/sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c index 8f11ea815f..43c5652cb2 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c @@ -1,5 +1,5 @@ /* PowerPC32 default implementation of memchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c b/sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c index a4237f3967..ca0f714385 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c @@ -1,5 +1,5 @@ /* Multiple versions of memchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S index 464d5e8809..2df4da58bb 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S @@ -1,5 +1,5 @@ /* Optimized memcmp implementation for POWER7/PowerPC32. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S index bb92264765..3b473a354a 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S @@ -1,5 +1,5 @@ /* Default memcmp implementation for PowerPC32. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c b/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c index 60df42400e..79fec67d66 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c @@ -1,5 +1,5 @@ /* Multiple versions of memcmp. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S index d5970ad962..a2fea68051 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC A2. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S index 9177d25c63..e2a53f7421 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for CELL BE PowerPC. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S index a5b243cbda..e48735571d 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC32 on POWER6. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S index 3605116e26..18de19b0f1 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC32/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S index 8fe1121ab1..e525c2f6a3 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S @@ -1,5 +1,5 @@ /* Default memcpy implementation for PowerPC32. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c index d9c36ad8d4..f263a38687 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c @@ -1,5 +1,5 @@ /* Multiple versions of memcpy. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S index 355726b512..e4204830a2 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S @@ -1,5 +1,5 @@ /* Optimized mempcpy implementation for POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c b/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c index b5bc5713d7..8dc77e988d 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c @@ -1,5 +1,5 @@ /* PowerPC32 default implementation of mempcpy. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c b/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c index 7100eb513a..38fbcc33f5 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c @@ -1,5 +1,5 @@ /* Multiple versions of mempcpy. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S index cb2916c5c5..3862e892a1 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S @@ -1,5 +1,5 @@ /* Optimized memrchr implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c b/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c index 88e5ce6b4d..c30e7d6963 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c @@ -1,5 +1,5 @@ /* PowerPC32 default implementation of memrchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c b/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c index cc362bac28..610a9570c9 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c @@ -1,5 +1,5 @@ /* Multiple versions of memrchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S index 524f8ff867..165d40e8fa 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S @@ -1,5 +1,5 @@ /* Optimized 32-bit memset implementation for POWER6. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S index c564c8ec21..0658a3b32f 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S @@ -1,5 +1,5 @@ /* Optimized memset implementation for PowerPC32/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S b/sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S index e2cb19a5e0..a907eb1e18 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S @@ -1,5 +1,5 @@ /* Default memset implementation for PowerPC32. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/memset.c b/sysdeps/powerpc/powerpc32/power4/multiarch/memset.c index c8c4e8acf6..e4e798254a 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/memset.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/memset.c @@ -1,5 +1,5 @@ /* Multiple versions of memset. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S index ff9bb284f6..d3057c2ea3 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S @@ -1,5 +1,5 @@ /* Optimized rawrawmemchr implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c b/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c index 0eef47696d..2e8abaa9f5 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c @@ -1,5 +1,5 @@ /* PowerPC32 default implementation of rawmemchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c b/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c index c083490f3f..3f53cd5725 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c @@ -1,5 +1,5 @@ /* Multiple versions of rawmemchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S b/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S index 44d9c96348..9d3829b611 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S @@ -1,5 +1,5 @@ /* Loader memcmp implementation for PowerPC32. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S b/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S index ef1bfed2df..31f1f83786 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S b/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S index d75786c57f..89883645c9 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c b/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c index 11a72038dc..9137dd14a3 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S index a177e62909..930564ceea 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S @@ -1,5 +1,5 @@ /* Optimized strcasecmp implementation for PowerPC32. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c index 8aef486264..6d1edf981b 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c @@ -1,5 +1,5 @@ /* Multiple versions of strcasecmp. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S index 696d2dc196..46733f5440 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S @@ -1,5 +1,5 @@ /* Default strcasecmp implementation for PowerPC32. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c index 65944c6dbf..6359bf4eb9 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c @@ -1,5 +1,5 @@ /* Multiple versions of strcasecmp. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S index 066b71161f..5f977a517d 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S @@ -1,5 +1,5 @@ /* Optimized strchr implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S b/sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S index a71b46a7a4..5acae90439 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S @@ -1,5 +1,5 @@ /* PowerPC32 default implementation of strchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strchr.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strchr.c index 8a7dc74833..74a9d54bb9 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strchr.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strchr.c @@ -1,5 +1,5 @@ /* Multiple versions of strchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-power7.S index 8f94ca8542..777abdca7c 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-power7.S @@ -1,5 +1,5 @@ /* Optimized strchrnul implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c index a5aaff054c..950643a6cf 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c @@ -1,5 +1,5 @@ /* PowerPC32 default implementation of strchrnul. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c index 95138580d8..dab1cbf9ed 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c @@ -1,5 +1,5 @@ /* Multiple versions of strchrnul. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S index cde958aa1a..6255b675c0 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S @@ -1,5 +1,5 @@ /* Optimized strlen implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S b/sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S index a94d93cfad..3ee9f93e23 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S @@ -1,5 +1,5 @@ /* Default strlen implementation for PowerPC32. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c index efbc0abe6f..1b61ba00a0 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c @@ -1,5 +1,5 @@ /* Multiple versions of strlen. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c index 4aaa63815e..30f92a501c 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c @@ -1,5 +1,5 @@ /* Optimized strcasecmp_l implememtation for POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c index 1bac8495be..a2227d80bd 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c @@ -1,5 +1,5 @@ /* Multiple versions of strncasecmp. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c index f96c5abf2b..371eebca74 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c @@ -1,5 +1,5 @@ /* Optimized strcasecmp_l implememtation for POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c index 11a64bdbe1..9fe3aa0914 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c @@ -1,5 +1,5 @@ /* Multiple versions of strncasecmp_l. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S index c9240e55be..b587814ac4 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S @@ -1,5 +1,5 @@ /* Optimized strcmp implementation for POWER7/PowerPC32. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S b/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S index bd573bbfa9..9a857c7f35 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c index 5dea0769f7..a329f77b84 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c @@ -1,5 +1,5 @@ /* Multiple versions of strncmp. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-power7.S b/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-power7.S index 7b09e7d003..a2eea4a782 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-power7.S +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-power7.S @@ -1,5 +1,5 @@ /* Optimized strnlen implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c index 43d8276cd4..676d8378bd 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c @@ -1,5 +1,5 @@ /* Default strnlen implementation for PowerPC32. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c index b2ec1aa96a..62d4918e41 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c @@ -1,5 +1,5 @@ /* Multiple versions of strnlen. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c index 7d1f45ab60..7c648d8980 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c @@ -1,5 +1,5 @@ /* wcschr.c - Wide Character Search for powerpc32/power6. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c index 9e6c99c7fd..e561ced617 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c @@ -1,5 +1,5 @@ /* wcschr.c - Wide Character Search for powerpc32/power7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c index 477341e005..a42f70c3b3 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c index 51fbefea2b..216d2bc61c 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c @@ -1,5 +1,5 @@ /* Multiple versions of wcschr - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c index 51d0a0a137..6c86baa33d 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c index 1eae9e98dd..dad0e708a9 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c index 8601d43acd..c135835599 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c index 252fb6cbb3..251660a617 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c @@ -1,5 +1,5 @@ /* Multiple versions of wcscpy - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c index 68fe4775be..bd77eb365d 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c index 3422816689..829a434c47 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c index b33eadacd8..9c7fe2da74 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c index cd0b87e935..42e2d8eb93 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c @@ -1,5 +1,5 @@ /* Multiple versions of wcsrchr - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c index b8edd10eaa..c5c6eb76eb 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c index e7999c35ba..841d1a2e2d 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c index 9898e622da..ccd24ad731 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c b/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c index 78233dce66..889be2555f 100644 --- a/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c @@ -1,5 +1,5 @@ /* Multiple versions of wordcopy functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power4/strncmp.S b/sysdeps/powerpc/powerpc32/power4/strncmp.S index 89b961e78d..348c129e0a 100644 --- a/sysdeps/powerpc/powerpc32/power4/strncmp.S +++ b/sysdeps/powerpc/powerpc32/power4/strncmp.S @@ -1,5 +1,5 @@ /* Optimized strcmp implementation for PowerPC32. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S b/sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S index 0469831ee2..6195e37aa3 100644 --- a/sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S +++ b/sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S @@ -1,5 +1,5 @@ /* ceil function. PowerPC32/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S b/sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S index 43f74a1794..d22a800537 100644 --- a/sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S +++ b/sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S @@ -1,5 +1,5 @@ /* ceilf function. PowerPC32/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S b/sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S index 215c67cfb7..bed5bfea7e 100644 --- a/sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S +++ b/sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S @@ -1,5 +1,5 @@ /* floor function. PowerPC32/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S b/sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S index eb228da10d..b85582f464 100644 --- a/sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S +++ b/sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S @@ -1,5 +1,5 @@ /* floorf function. PowerPC32/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S b/sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S index 49c8a08661..3e4a714844 100644 --- a/sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S +++ b/sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S @@ -1,5 +1,5 @@ /* lround function. POWER5+, PowerPC32 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S b/sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S index 780dd9ca41..38b849a847 100644 --- a/sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S +++ b/sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S @@ -1,5 +1,5 @@ /* lround function. POWER5+, PowerPC32 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S b/sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S index 3cc72d39cf..093a01a3e6 100644 --- a/sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S +++ b/sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S @@ -1,5 +1,5 @@ /* round function. PowerPC32/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S b/sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S index 8bd2d0a501..c7e95a410c 100644 --- a/sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S +++ b/sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S @@ -1,5 +1,5 @@ /* roundf function. PowerPC32/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S b/sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S index 2d4ec5a060..a8f4f97cd8 100644 --- a/sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S +++ b/sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S @@ -1,5 +1,5 @@ /* trunc function. PowerPC32/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S b/sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S index 0ca5b5c505..01bf4c8517 100644 --- a/sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S +++ b/sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S @@ -1,5 +1,5 @@ /* truncf function. PowerPC32/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S b/sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S index 5f7ba43a2a..99879a89de 100644 --- a/sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S +++ b/sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC32 version. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5/fpu/s_isnanf.S b/sysdeps/powerpc/powerpc32/power5/fpu/s_isnanf.S index 0373f0156c..f2a340b3f6 100644 --- a/sysdeps/powerpc/powerpc32/power5/fpu/s_isnanf.S +++ b/sysdeps/powerpc/powerpc32/power5/fpu/s_isnanf.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC32 version. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S b/sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S index ed11d5aec4..e1698968f7 100644 --- a/sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S +++ b/sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S @@ -1,5 +1,5 @@ /* sqrt function. PowerPC32 version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S b/sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S index 2049172881..c73fdb6ce2 100644 --- a/sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S +++ b/sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S @@ -1,5 +1,5 @@ /* sqrtf function. PowerPC32 version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S b/sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S index 1b8d73af03..d767dcbf46 100644 --- a/sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S +++ b/sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S @@ -1,5 +1,5 @@ /* copysign(). PowerPC32/POWER6 version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S b/sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S index 3ea18589c8..563e70aa89 100644 --- a/sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S +++ b/sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC32 version. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S b/sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S index 483f0f9c0f..3deaab2eb6 100644 --- a/sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S +++ b/sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S @@ -1,5 +1,5 @@ /* isnanf(). PowerPC32 version. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S b/sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S index c0660cf6ec..993033864a 100644 --- a/sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S +++ b/sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S @@ -1,5 +1,5 @@ /* Round double to long int. PowerPC32 on PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S b/sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S index ce298905c1..976be8daf5 100644 --- a/sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S +++ b/sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S @@ -1,5 +1,5 @@ /* Round float to long int. PowerPC32 on PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S b/sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S index abb0840d18..72cd426ad1 100644 --- a/sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S +++ b/sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S @@ -1,5 +1,5 @@ /* lround function. POWER5+, PowerPC32 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power6/memcpy.S b/sysdeps/powerpc/powerpc32/power6/memcpy.S index f58114a0c5..e35ab1ee36 100644 --- a/sysdeps/powerpc/powerpc32/power6/memcpy.S +++ b/sysdeps/powerpc/powerpc32/power6/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC32 on POWER6. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power6/memset.S b/sysdeps/powerpc/powerpc32/power6/memset.S index a4b002a960..4b18fa7912 100644 --- a/sysdeps/powerpc/powerpc32/power6/memset.S +++ b/sysdeps/powerpc/powerpc32/power6/memset.S @@ -1,5 +1,5 @@ /* Optimized 32-bit memset implementation for POWER6. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S b/sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S index d0cc159312..ea6c65cdb9 100644 --- a/sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S +++ b/sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S @@ -1,5 +1,5 @@ /* Round double to long int. POWER6x PowerPC32 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S b/sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S index 0a04051ff2..6b4fd9399f 100644 --- a/sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S +++ b/sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S @@ -1,5 +1,5 @@ /* lround function. POWER6x, PowerPC32 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S b/sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S index 095c15547a..20e266b304 100644 --- a/sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S +++ b/sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S @@ -1,5 +1,5 @@ /* finite(). PowerPC32/POWER7 version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S b/sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S index 0101c8fa17..47d608a9c2 100644 --- a/sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S +++ b/sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S @@ -1,5 +1,5 @@ /* isinf(). PowerPC32/POWER7 version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S b/sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S index 0ad1dcf1f7..9cb82840a5 100644 --- a/sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S +++ b/sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC32/POWER7 version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/memchr.S b/sysdeps/powerpc/powerpc32/power7/memchr.S index 85754f3f17..1d6a0d6f96 100644 --- a/sysdeps/powerpc/powerpc32/power7/memchr.S +++ b/sysdeps/powerpc/powerpc32/power7/memchr.S @@ -1,5 +1,5 @@ /* Optimized memchr implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/memcmp.S b/sysdeps/powerpc/powerpc32/power7/memcmp.S index f160ddebf6..507b4e0007 100644 --- a/sysdeps/powerpc/powerpc32/power7/memcmp.S +++ b/sysdeps/powerpc/powerpc32/power7/memcmp.S @@ -1,5 +1,5 @@ /* Optimized memcmp implementation for POWER7/PowerPC32. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power7/memcpy.S b/sysdeps/powerpc/powerpc32/power7/memcpy.S index acf3c10198..52c2a6bcf4 100644 --- a/sysdeps/powerpc/powerpc32/power7/memcpy.S +++ b/sysdeps/powerpc/powerpc32/power7/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC32/POWER7. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/mempcpy.S b/sysdeps/powerpc/powerpc32/power7/mempcpy.S index 4610ec5b56..f7444a045b 100644 --- a/sysdeps/powerpc/powerpc32/power7/mempcpy.S +++ b/sysdeps/powerpc/powerpc32/power7/mempcpy.S @@ -1,5 +1,5 @@ /* Optimized mempcpy implementation for POWER7. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/memrchr.S b/sysdeps/powerpc/powerpc32/power7/memrchr.S index 9601aa7997..ebfd540883 100644 --- a/sysdeps/powerpc/powerpc32/power7/memrchr.S +++ b/sysdeps/powerpc/powerpc32/power7/memrchr.S @@ -1,5 +1,5 @@ /* Optimized memrchr implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/memset.S b/sysdeps/powerpc/powerpc32/power7/memset.S index aadda2558f..ae18761167 100644 --- a/sysdeps/powerpc/powerpc32/power7/memset.S +++ b/sysdeps/powerpc/powerpc32/power7/memset.S @@ -1,5 +1,5 @@ /* Optimized memset implementation for PowerPC32/POWER7. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/rawmemchr.S b/sysdeps/powerpc/powerpc32/power7/rawmemchr.S index c2d8c4b7be..dec4db02f3 100644 --- a/sysdeps/powerpc/powerpc32/power7/rawmemchr.S +++ b/sysdeps/powerpc/powerpc32/power7/rawmemchr.S @@ -1,5 +1,5 @@ /* Optimized rawmemchr implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/strcasecmp.S b/sysdeps/powerpc/powerpc32/power7/strcasecmp.S index 7f0046c34d..36b01139bf 100644 --- a/sysdeps/powerpc/powerpc32/power7/strcasecmp.S +++ b/sysdeps/powerpc/powerpc32/power7/strcasecmp.S @@ -1,5 +1,5 @@ /* Optimized strcasecmp implementation for PowerPC32. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power7/strchr.S b/sysdeps/powerpc/powerpc32/power7/strchr.S index b662659671..f7ecb72d67 100644 --- a/sysdeps/powerpc/powerpc32/power7/strchr.S +++ b/sysdeps/powerpc/powerpc32/power7/strchr.S @@ -1,5 +1,5 @@ /* Optimized strchr implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/strchrnul.S b/sysdeps/powerpc/powerpc32/power7/strchrnul.S index f5d24d4340..ece8237453 100644 --- a/sysdeps/powerpc/powerpc32/power7/strchrnul.S +++ b/sysdeps/powerpc/powerpc32/power7/strchrnul.S @@ -1,5 +1,5 @@ /* Optimized strchrnul implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/strlen.S b/sysdeps/powerpc/powerpc32/power7/strlen.S index b08d6c028c..0d2d6b54f0 100644 --- a/sysdeps/powerpc/powerpc32/power7/strlen.S +++ b/sysdeps/powerpc/powerpc32/power7/strlen.S @@ -1,5 +1,5 @@ /* Optimized strlen implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/power7/strncmp.S b/sysdeps/powerpc/powerpc32/power7/strncmp.S index 10c9d251b0..32896e9561 100644 --- a/sysdeps/powerpc/powerpc32/power7/strncmp.S +++ b/sysdeps/powerpc/powerpc32/power7/strncmp.S @@ -1,5 +1,5 @@ /* Optimized strcmp implementation for POWER7/PowerPC32. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/power7/strnlen.S b/sysdeps/powerpc/powerpc32/power7/strnlen.S index eb52afd1a7..71e2aa87bd 100644 --- a/sysdeps/powerpc/powerpc32/power7/strnlen.S +++ b/sysdeps/powerpc/powerpc32/power7/strnlen.S @@ -1,5 +1,5 @@ /* Optimized strnlen implementation for PowerPC32/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc32/ppc-mcount.S b/sysdeps/powerpc/powerpc32/ppc-mcount.S index 2cabc7344b..d8b72ff5bd 100644 --- a/sysdeps/powerpc/powerpc32/ppc-mcount.S +++ b/sysdeps/powerpc/powerpc32/ppc-mcount.S @@ -1,5 +1,5 @@ /* PowerPC-specific implementation of profiling support. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/register-dump.h b/sysdeps/powerpc/powerpc32/register-dump.h index 92179c7841..d43b1a341a 100644 --- a/sysdeps/powerpc/powerpc32/register-dump.h +++ b/sysdeps/powerpc/powerpc32/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/rshift.S b/sysdeps/powerpc/powerpc32/rshift.S index 9cc63aa969..175c2cdff3 100644 --- a/sysdeps/powerpc/powerpc32/rshift.S +++ b/sysdeps/powerpc/powerpc32/rshift.S @@ -1,5 +1,5 @@ /* Shift a limb right, low level routine. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/setjmp-common.S b/sysdeps/powerpc/powerpc32/setjmp-common.S index 0c77029abe..dcdd336fc2 100644 --- a/sysdeps/powerpc/powerpc32/setjmp-common.S +++ b/sysdeps/powerpc/powerpc32/setjmp-common.S @@ -1,5 +1,5 @@ /* setjmp for PowerPC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/setjmp.S b/sysdeps/powerpc/powerpc32/setjmp.S index 467d9c9ecf..9b587e0477 100644 --- a/sysdeps/powerpc/powerpc32/setjmp.S +++ b/sysdeps/powerpc/powerpc32/setjmp.S @@ -1,5 +1,5 @@ /* non altivec (old) version of setjmp for PowerPC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/start.S b/sysdeps/powerpc/powerpc32/start.S index f04446bbba..ce3328fb2e 100644 --- a/sysdeps/powerpc/powerpc32/start.S +++ b/sysdeps/powerpc/powerpc32/start.S @@ -1,5 +1,5 @@ /* Startup code for programs linked with GNU libc. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/stpcpy.S b/sysdeps/powerpc/powerpc32/stpcpy.S index 7e106e0e6c..e90a4012f5 100644 --- a/sysdeps/powerpc/powerpc32/stpcpy.S +++ b/sysdeps/powerpc/powerpc32/stpcpy.S @@ -1,5 +1,5 @@ /* Optimized stpcpy implementation for PowerPC. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/strchr.S b/sysdeps/powerpc/powerpc32/strchr.S index 6050565770..cef024e45e 100644 --- a/sysdeps/powerpc/powerpc32/strchr.S +++ b/sysdeps/powerpc/powerpc32/strchr.S @@ -1,5 +1,5 @@ /* Optimized strchr implementation for PowerPC. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/strcmp.S b/sysdeps/powerpc/powerpc32/strcmp.S index 91d60c9053..09b5cea52f 100644 --- a/sysdeps/powerpc/powerpc32/strcmp.S +++ b/sysdeps/powerpc/powerpc32/strcmp.S @@ -1,5 +1,5 @@ /* Optimized strcmp implementation for PowerPC. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/strcpy.S b/sysdeps/powerpc/powerpc32/strcpy.S index e938cc42a7..3afbff4581 100644 --- a/sysdeps/powerpc/powerpc32/strcpy.S +++ b/sysdeps/powerpc/powerpc32/strcpy.S @@ -1,5 +1,5 @@ /* Optimized strcpy implementation for PowerPC. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/strlen.S b/sysdeps/powerpc/powerpc32/strlen.S index a7153ed7a2..a24b89adf6 100644 --- a/sysdeps/powerpc/powerpc32/strlen.S +++ b/sysdeps/powerpc/powerpc32/strlen.S @@ -1,5 +1,5 @@ /* Optimized strlen implementation for PowerPC. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/strncmp.S b/sysdeps/powerpc/powerpc32/strncmp.S index e36a160a80..0299bfb731 100644 --- a/sysdeps/powerpc/powerpc32/strncmp.S +++ b/sysdeps/powerpc/powerpc32/strncmp.S @@ -1,5 +1,5 @@ /* Optimized strcmp implementation for PowerPC32. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/sub_n.S b/sysdeps/powerpc/powerpc32/sub_n.S index 94d3d3e945..3c0519bb6e 100644 --- a/sysdeps/powerpc/powerpc32/sub_n.S +++ b/sysdeps/powerpc/powerpc32/sub_n.S @@ -1,5 +1,5 @@ /* Subtract two limb vectors of equal, non-zero length for PowerPC. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/submul_1.S b/sysdeps/powerpc/powerpc32/submul_1.S index d820318c31..08f45fecb5 100644 --- a/sysdeps/powerpc/powerpc32/submul_1.S +++ b/sysdeps/powerpc/powerpc32/submul_1.S @@ -1,5 +1,5 @@ /* Multiply a limb vector by a single limb, for PowerPC. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/sysdep.h b/sysdeps/powerpc/powerpc32/sysdep.h index 78f54f91c4..c8a56aadbf 100644 --- a/sysdeps/powerpc/powerpc32/sysdep.h +++ b/sysdeps/powerpc/powerpc32/sysdep.h @@ -1,5 +1,5 @@ /* Assembly macros for 32-bit PowerPC. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc32/tst-audit.h b/sysdeps/powerpc/powerpc32/tst-audit.h index 24444a8473..5bd18e0e69 100644 --- a/sysdeps/powerpc/powerpc32/tst-audit.h +++ b/sysdeps/powerpc/powerpc32/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. PowerPC32 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/__longjmp-common.S b/sysdeps/powerpc/powerpc64/__longjmp-common.S index 3c792b495e..9452a3cb5b 100644 --- a/sysdeps/powerpc/powerpc64/__longjmp-common.S +++ b/sysdeps/powerpc/powerpc64/__longjmp-common.S @@ -1,5 +1,5 @@ /* longjmp for PowerPC64. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/__longjmp.S b/sysdeps/powerpc/powerpc64/__longjmp.S index db4dd59bca..0f446817bf 100644 --- a/sysdeps/powerpc/powerpc64/__longjmp.S +++ b/sysdeps/powerpc/powerpc64/__longjmp.S @@ -1,5 +1,5 @@ /* AltiVec/VMX (new) version of __longjmp for PowerPC64. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/a2/memcpy.S b/sysdeps/powerpc/powerpc64/a2/memcpy.S index 84c82bb768..056f0d595a 100644 --- a/sysdeps/powerpc/powerpc64/a2/memcpy.S +++ b/sysdeps/powerpc/powerpc64/a2/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC A2. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Michael Brutman . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/addmul_1.S b/sysdeps/powerpc/powerpc64/addmul_1.S index f256506304..87ff0245bf 100644 --- a/sysdeps/powerpc/powerpc64/addmul_1.S +++ b/sysdeps/powerpc/powerpc64/addmul_1.S @@ -1,6 +1,6 @@ /* PowerPC64 __mpn_addmul_1 -- Multiply a limb vector with a limb and add the result to a second limb vector. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/backtrace.c b/sysdeps/powerpc/powerpc64/backtrace.c index 9b9a9f19da..d24187043d 100644 --- a/sysdeps/powerpc/powerpc64/backtrace.c +++ b/sysdeps/powerpc/powerpc64/backtrace.c @@ -1,5 +1,5 @@ /* Return backtrace of current program state. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/bits/atomic.h b/sysdeps/powerpc/powerpc64/bits/atomic.h index 84a144758c..527fe7c133 100644 --- a/sysdeps/powerpc/powerpc64/bits/atomic.h +++ b/sysdeps/powerpc/powerpc64/bits/atomic.h @@ -1,5 +1,5 @@ /* Atomic operations. PowerPC64 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras , 2003. diff --git a/sysdeps/powerpc/powerpc64/bzero.S b/sysdeps/powerpc/powerpc64/bzero.S index c70a244eed..819b877b5b 100644 --- a/sysdeps/powerpc/powerpc64/bzero.S +++ b/sysdeps/powerpc/powerpc64/bzero.S @@ -1,5 +1,5 @@ /* Optimized bzero `implementation' for PowerPC64. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/cell/memcpy.S b/sysdeps/powerpc/powerpc64/cell/memcpy.S index 104900ea5f..f194e5cfa4 100644 --- a/sysdeps/powerpc/powerpc64/cell/memcpy.S +++ b/sysdeps/powerpc/powerpc64/cell/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for CELL BE PowerPC. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/crti.S b/sysdeps/powerpc/powerpc64/crti.S index 6e1ece8d66..40f22f2de3 100644 --- a/sysdeps/powerpc/powerpc64/crti.S +++ b/sysdeps/powerpc/powerpc64/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for PowerPC64. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/crtn.S b/sysdeps/powerpc/powerpc64/crtn.S index cdd3b0f340..6af1d9e449 100644 --- a/sysdeps/powerpc/powerpc64/crtn.S +++ b/sysdeps/powerpc/powerpc64/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for PowerPC64. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/dl-dtprocnum.h b/sysdeps/powerpc/powerpc64/dl-dtprocnum.h index d070daecc2..bebb617628 100644 --- a/sysdeps/powerpc/powerpc64/dl-dtprocnum.h +++ b/sysdeps/powerpc/powerpc64/dl-dtprocnum.h @@ -1,5 +1,5 @@ /* Configuration of lookup functions. PowerPC64 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/dl-irel.h b/sysdeps/powerpc/powerpc64/dl-irel.h index a500aa6f4c..8f834ce63b 100644 --- a/sysdeps/powerpc/powerpc64/dl-irel.h +++ b/sysdeps/powerpc/powerpc64/dl-irel.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF indirect relocation inline functions. PowerPC64 version. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/dl-machine.c b/sysdeps/powerpc/powerpc64/dl-machine.c index dd657d9b16..2ec102f8d1 100644 --- a/sysdeps/powerpc/powerpc64/dl-machine.c +++ b/sysdeps/powerpc/powerpc64/dl-machine.c @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation functions. PowerPC64 version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/dl-machine.h b/sysdeps/powerpc/powerpc64/dl-machine.h index 36f3916999..dd44df5fa6 100644 --- a/sysdeps/powerpc/powerpc64/dl-machine.h +++ b/sysdeps/powerpc/powerpc64/dl-machine.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF dynamic relocation inline functions. PowerPC64 version. - Copyright 1995-2013 Free Software Foundation, Inc. + Copyright 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/dl-trampoline.S b/sysdeps/powerpc/powerpc64/dl-trampoline.S index 69ce523e90..4519af48e2 100644 --- a/sysdeps/powerpc/powerpc64/dl-trampoline.S +++ b/sysdeps/powerpc/powerpc64/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. PPC64 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/entry.h b/sysdeps/powerpc/powerpc64/entry.h index e9f9bba0a1..76ead1dd3b 100644 --- a/sysdeps/powerpc/powerpc64/entry.h +++ b/sysdeps/powerpc/powerpc64/entry.h @@ -1,5 +1,5 @@ /* Finding the entry point and start of text. PowerPC64 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/ffsll.c b/sysdeps/powerpc/powerpc64/ffsll.c index 6e14170bb4..3b7dfc285b 100644 --- a/sysdeps/powerpc/powerpc64/ffsll.c +++ b/sysdeps/powerpc/powerpc64/ffsll.c @@ -1,6 +1,6 @@ /* Find first set bit in a word, counted from least significant end. For PowerPC. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). diff --git a/sysdeps/powerpc/powerpc64/fpu/e_sqrt.c b/sysdeps/powerpc/powerpc64/fpu/e_sqrt.c index 3cc0619c22..08d5f69ad2 100644 --- a/sysdeps/powerpc/powerpc64/fpu/e_sqrt.c +++ b/sysdeps/powerpc/powerpc64/fpu/e_sqrt.c @@ -1,5 +1,5 @@ /* Double-precision floating point square root. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c b/sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c index 27d8b7cec9..598e7cb270 100644 --- a/sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c +++ b/sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c @@ -1,5 +1,5 @@ /* Single-precision floating point square root. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c index 526130223b..3c418d3fd9 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c @@ -1,5 +1,5 @@ /* Multiple versions of ieee754_hypot. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c index 7380c3d395..b153753415 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c @@ -1,5 +1,5 @@ /* __ieee_hypot() POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c index 9b0c1b0d22..c418ae7a8d 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c @@ -1,5 +1,5 @@ /* __ieee_hypot() PowerPC64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c index faaf55032a..941b293c7f 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c @@ -1,5 +1,5 @@ /* Multiple versions of ieee754_hypot. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c index 9ee841ba3d..2d67ee9ebd 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c @@ -1,5 +1,5 @@ /* __ieee_hypotf() POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c index 734cfe2836..8335e19772 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c @@ -1,5 +1,5 @@ /* __ieee_hypot() PowerPC64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S index cbfe96e614..cc1316f8eb 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S @@ -1,5 +1,5 @@ /* ceil function. PowerPC64/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S index 4539c17c1f..52e5a563df 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S @@ -1,5 +1,5 @@ /* ceil function. PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c index 587c0dc000..f53df5ba6a 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c @@ -1,5 +1,5 @@ /* Multiple versions of ceil. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S index 7790843f90..21261e2ac9 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S @@ -1,5 +1,5 @@ /* ceilf function. PowerPC64/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S index e9036224ad..8cd869bb29 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S @@ -1,5 +1,5 @@ /* ceilf function. PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c index a65174580b..d95199017f 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c @@ -1,5 +1,5 @@ /* Multiple versions of ceilf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S index 595d318a43..4fa34a6f8c 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S @@ -1,5 +1,5 @@ /* copysign(). PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S index 022ea06320..a5cdfc28de 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S @@ -1,5 +1,5 @@ /* copysign(). PowerPC64 default version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c index ee7ce0a886..f3e6b3a620 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c @@ -1,5 +1,5 @@ /* Multiple versions of copysign. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c index 89c3c069a0..55cc27249c 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c @@ -1,5 +1,5 @@ /* Multiple versions of copysignf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S index 67f4f46429..ac2244b86e 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC64/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.c index b5848fa53f..1922e2bfa5 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.c @@ -1,5 +1,5 @@ /* finite(). PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c index 66cc437423..f79a93eab5 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c @@ -1,5 +1,5 @@ /* Multiple versions of finite. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c index 1f2f8acff5..63dd00391f 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c @@ -1,5 +1,5 @@ /* finitef(). PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c index 25fe1a8705..a7243b51aa 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c @@ -1,5 +1,5 @@ /* Multiple versions of finitef. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S index fc329ca021..a1550e9bf0 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S @@ -1,5 +1,5 @@ /* floor function. PowerPC64/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S index 50db6d8571..b5c232cc9c 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S @@ -1,5 +1,5 @@ /* floor function. PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c index 12a1baee86..f43976a13f 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c @@ -1,5 +1,5 @@ /* Multiple versions of floor. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S index 1824bc13f5..d371708adb 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S @@ -1,5 +1,5 @@ /* floorf function. PowerPC64/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S index 7c8b99cfed..dc81dea633 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S @@ -1,5 +1,5 @@ /* floorf function. PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c index c7b753f8b0..08fc95e566 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c @@ -1,5 +1,5 @@ /* Multiple versions of floorf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S index e4e9430b00..80a682a3f8 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S @@ -1,5 +1,5 @@ /* isinf(). PowerPC64/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.c index d1691286a5..28c56024b7 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.c @@ -1,5 +1,5 @@ /* isinf(). PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c index 994f9773c4..1ee230b316 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c @@ -1,5 +1,5 @@ /* Multiple versions of isinf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c index 65a28924d6..c2559d7d37 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c @@ -1,5 +1,5 @@ /* isinff(). PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c index 44961f29ec..1336feb015 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c @@ -1,5 +1,5 @@ /* Multiple versions of isinf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S index 757e580fb3..145e24bce2 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC64/POWER5 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S index e0d8010276..4576eb3eb7 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC64/POWER6 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S index 84ce8e5548..c2a45e3050 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC64/POWER6X version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S index f3f5a67fef..05b9fbce12 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC64/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S index 5ce6f52cf5..cf01d649b3 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c index 70353df91a..0de833e73a 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c @@ -1,5 +1,5 @@ /* Multiple versions of isnan. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c index 3e80b69b6c..b237455949 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c @@ -1,5 +1,5 @@ /* Multiple versions of isnan. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S index 36b1546292..8cd39c61b3 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S @@ -1,5 +1,5 @@ /* Round double to long int. PowerPC64/POWER6X default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S index 22fbe60592..754d28f747 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S @@ -1,5 +1,5 @@ /* Round double to long int. PowerPC32 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c index dfc6ddfbdb..5818b53c09 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c @@ -1,5 +1,5 @@ /* Multiple versions of llrint. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S index 01d86e700c..ba0b65c47f 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S @@ -1,5 +1,5 @@ /* llround(). PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S index 22fa2cd767..bd1c22a1a3 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S @@ -1,5 +1,5 @@ /* llround(). PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S index 38f1eed3d3..2316da2894 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S @@ -1,5 +1,5 @@ /* llround(). PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c index 3559ce4934..a4d1bf3a2a 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c @@ -1,5 +1,5 @@ /* Multiple versions of llround. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c index 6a50eb43ce..049f2c1bfe 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c @@ -1,5 +1,5 @@ /* logb(). PowerPC64/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c index 6e42fcb03b..41d1d9bf20 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c @@ -1,5 +1,5 @@ /* logb(). PowerPC32/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c index e14bfa2ca3..e14efa7743 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c @@ -1,5 +1,5 @@ /* Multiple versions of logb. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c index cfd2902563..5e4e4fcbf7 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c @@ -1,5 +1,5 @@ /* logb(). PowerPC64/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c index 8a699d1059..08674a6cac 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c @@ -1,5 +1,5 @@ /* logbf(). PowerPC64 default implementation. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c index a300125dc2..01f9ecb175 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c @@ -1,5 +1,5 @@ /* Multiple versions of logbf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c index 4fe43638aa..258d5023c0 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c @@ -1,5 +1,5 @@ /* logb(). PowerPC64/POWER7 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c index 8bb0f18308..47d41539b9 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c @@ -1,5 +1,5 @@ /* logbl(). PowerPC64/POWER7 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c index 21af5711f2..cb0b0c589b 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c @@ -1,5 +1,5 @@ /* Multiple versions of logbl. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c index 04ec0eb686..bda99208eb 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c @@ -1,5 +1,5 @@ /* PowerPC/POWER5+ implementation for modf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c index 30216872cd..90e7599466 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c @@ -1,5 +1,5 @@ /* PowerPC64 default implementation for modf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c index 931d0c375a..f416fa979a 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c @@ -1,5 +1,5 @@ /* Multiple versions of modf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c index b3d7a0ad60..70a536dcbe 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c @@ -1,5 +1,5 @@ /* PowerPC/POWER5+ implementation for modff. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c index 3a98d0958f..89d8f638cd 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c @@ -1,5 +1,5 @@ /* PowerPC64 default implementation for modff. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c index 0629339b39..137b7aa3c5 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c @@ -1,5 +1,5 @@ /* Multiple versions of modff. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S index e30568db49..c2afb4f86b 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S @@ -1,5 +1,5 @@ /* round function. PowerPC64/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S index ed208ddec6..76c96b6562 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S @@ -1,5 +1,5 @@ /* round function. PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c index cfeac1f661..58184119f9 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c @@ -1,5 +1,5 @@ /* Multiple versions of round. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S index 8c1684ca64..8fbef39030 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S @@ -1,5 +1,5 @@ /* roundf function. PowerPC64/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S index a9d7981232..bc51fdd902 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S @@ -1,5 +1,5 @@ /* roundf function. PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c index 6377354365..34c5bc7ee0 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c @@ -1,5 +1,5 @@ /* Multiple versions of roundf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S index 27519649f8..ed22bcbb7d 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S @@ -1,5 +1,5 @@ /* trunc function. PowerPC64/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S index 5282609a8f..75b531a1ee 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S @@ -1,5 +1,5 @@ /* trunc function. PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c index a42687ce43..4dc22a69d8 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c @@ -1,5 +1,5 @@ /* Multiple versions of trunc. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S index bb1008fa10..44d858ebcb 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S @@ -1,5 +1,5 @@ /* truncf function. PowerPC64/power5+ version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S index 6358c61860..236797d83d 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S @@ -1,5 +1,5 @@ /* truncf function. PowerPC64 default version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c index 4602583606..0eef89f3c5 100644 --- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c +++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c @@ -1,5 +1,5 @@ /* Multiple versions of truncf. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_ceil.S b/sysdeps/powerpc/powerpc64/fpu/s_ceil.S index bbb8ce46aa..9d8a962aa1 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_ceil.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_ceil.S @@ -1,5 +1,5 @@ /* ceil function. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_ceilf.S b/sysdeps/powerpc/powerpc64/fpu/s_ceilf.S index 45f71d7ac5..582d213f91 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_ceilf.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_ceilf.S @@ -1,5 +1,5 @@ /* float ceil function. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_ceill.S b/sysdeps/powerpc/powerpc64/fpu/s_ceill.S index 3ef7b9f174..42a73affcd 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_ceill.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_ceill.S @@ -1,5 +1,5 @@ /* s_ceill.S IBM extended format long double version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_copysign.S b/sysdeps/powerpc/powerpc64/fpu/s_copysign.S index 7b752b5b5f..51681aa2a8 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_copysign.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_copysign.S @@ -1,5 +1,5 @@ /* Copy a sign bit between floating-point values. PowerPC64 version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_copysignl.S b/sysdeps/powerpc/powerpc64/fpu/s_copysignl.S index 0c24a0593f..39e180a5ed 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_copysignl.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_copysignl.S @@ -1,6 +1,6 @@ /* Copy a sign bit between floating-point values. IBM extended format long double version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_fabsl.S b/sysdeps/powerpc/powerpc64/fpu/s_fabsl.S index 669411e9ea..3f86a08f5a 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_fabsl.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_fabsl.S @@ -1,6 +1,6 @@ /* Copy a sign bit between floating-point values. IBM extended format long double version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_floor.S b/sysdeps/powerpc/powerpc64/fpu/s_floor.S index 44bd83233b..4dcac00746 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_floor.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_floor.S @@ -1,5 +1,5 @@ /* Floor function. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_floorf.S b/sysdeps/powerpc/powerpc64/fpu/s_floorf.S index e85b820b21..6cc062e148 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_floorf.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_floorf.S @@ -1,5 +1,5 @@ /* float Floor function. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_isnan.S b/sysdeps/powerpc/powerpc64/fpu/s_isnan.S index 95eb81eef4..629dae6841 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_isnan.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC64 version. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_llrint.S b/sysdeps/powerpc/powerpc64/fpu/s_llrint.S index 7019347b52..9731a7b341 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_llrint.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_llrint.S @@ -1,5 +1,5 @@ /* Round double to long int. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_llrintf.S b/sysdeps/powerpc/powerpc64/fpu/s_llrintf.S index 467396722f..e9833bd9ed 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_llrintf.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_llrintf.S @@ -1,5 +1,5 @@ /* Round double to long int. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_llround.S b/sysdeps/powerpc/powerpc64/fpu/s_llround.S index 54b8341b4e..d13d85f83f 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_llround.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_llround.S @@ -1,5 +1,5 @@ /* llround function. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_llroundf.S b/sysdeps/powerpc/powerpc64/fpu/s_llroundf.S index 25c61f2459..643d1e19eb 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_llroundf.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_llroundf.S @@ -1,5 +1,5 @@ /* llroundf function. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S b/sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S index 976a0842cb..838699343c 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S @@ -1,5 +1,5 @@ /* Round to int floating-point values. PowerPC64 version. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S b/sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S index b1a2b8cd65..6a1d58a365 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S @@ -1,5 +1,5 @@ /* Round to int floating-point values. PowerPC64 version. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Adhemerval Zanella , 2011 diff --git a/sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S b/sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S index b235d9b99c..acd95da82c 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S @@ -1,6 +1,6 @@ /* nearbyint long double. IBM extended format long double version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_rint.S b/sysdeps/powerpc/powerpc64/fpu/s_rint.S index 57e3759bf0..c0fb2b5cf9 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_rint.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_rint.S @@ -1,5 +1,5 @@ /* Round to int floating-point values. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_rintf.S b/sysdeps/powerpc/powerpc64/fpu/s_rintf.S index 1887717420..772cdccab8 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_rintf.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_rintf.S @@ -1,5 +1,5 @@ /* Round float to int floating-point values. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_round.S b/sysdeps/powerpc/powerpc64/fpu/s_round.S index 3c7437a8f4..a3c76a4287 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_round.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_round.S @@ -1,5 +1,5 @@ /* round function. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_roundf.S b/sysdeps/powerpc/powerpc64/fpu/s_roundf.S index 4f2c851631..c78310e8a7 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_roundf.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_roundf.S @@ -1,5 +1,5 @@ /* roundf function. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_roundl.S b/sysdeps/powerpc/powerpc64/fpu/s_roundl.S index 547b72150d..5362da8653 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_roundl.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_roundl.S @@ -1,6 +1,6 @@ /* long double round function. IBM extended format long double version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_trunc.S b/sysdeps/powerpc/powerpc64/fpu/s_trunc.S index f123873666..b83de12a70 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_trunc.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_trunc.S @@ -1,5 +1,5 @@ /* trunc function. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_truncf.S b/sysdeps/powerpc/powerpc64/fpu/s_truncf.S index b8fd050319..bf8dced9ba 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_truncf.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_truncf.S @@ -1,5 +1,5 @@ /* truncf function. PowerPC64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/fpu/s_truncl.S b/sysdeps/powerpc/powerpc64/fpu/s_truncl.S index 06fd7dbe4d..e5a3008beb 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_truncl.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_truncl.S @@ -1,6 +1,6 @@ /* long double trunc function. IBM extended format long double version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/hp-timing.c b/sysdeps/powerpc/powerpc64/hp-timing.c index 5073adb0e5..fcf5e45a2c 100644 --- a/sysdeps/powerpc/powerpc64/hp-timing.c +++ b/sysdeps/powerpc/powerpc64/hp-timing.c @@ -1,6 +1,6 @@ /* Support for high precision, low overhead timing functions. powerpc64 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/powerpc/powerpc64/hp-timing.h b/sysdeps/powerpc/powerpc64/hp-timing.h index e73ad5a664..f1efa121d7 100644 --- a/sysdeps/powerpc/powerpc64/hp-timing.h +++ b/sysdeps/powerpc/powerpc64/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. powerpc64 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/powerpc/powerpc64/lshift.S b/sysdeps/powerpc/powerpc64/lshift.S index a997451c45..e1bc68c09a 100644 --- a/sysdeps/powerpc/powerpc64/lshift.S +++ b/sysdeps/powerpc/powerpc64/lshift.S @@ -1,5 +1,5 @@ /* PowerPC64 mpn_lshift -- rp[] = up[] << cnt - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/memcpy.S b/sysdeps/powerpc/powerpc64/memcpy.S index 5fc7401c99..dccbcfd011 100644 --- a/sysdeps/powerpc/powerpc64/memcpy.S +++ b/sysdeps/powerpc/powerpc64/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC64. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/memset.S b/sysdeps/powerpc/powerpc64/memset.S index 22c7d4e29d..1df4b49e2f 100644 --- a/sysdeps/powerpc/powerpc64/memset.S +++ b/sysdeps/powerpc/powerpc64/memset.S @@ -1,5 +1,5 @@ /* Optimized memset implementation for PowerPC64. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/mul_1.S b/sysdeps/powerpc/powerpc64/mul_1.S index 68a1646462..b05e34a19a 100644 --- a/sysdeps/powerpc/powerpc64/mul_1.S +++ b/sysdeps/powerpc/powerpc64/mul_1.S @@ -1,6 +1,6 @@ /* PowerPC64 __mpn_mul_1 -- Multiply a limb vector with a limb and store the result in a second limb vector. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S b/sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S index cf58fc5d7b..72b75acff7 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S +++ b/sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S @@ -1,5 +1,5 @@ /* Optimized bzero implementation for PowerPC64/POWER4. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S b/sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S index ee3b919c7e..d0917c5e66 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S +++ b/sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S @@ -1,5 +1,5 @@ /* Optimized bzero implementation for PowerPC64/POWER6. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S b/sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S index 7abc6db849..0ec285a9bd 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S @@ -1,5 +1,5 @@ /* Optimized bzero implementation for PowerPC64/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/bzero.c b/sysdeps/powerpc/powerpc64/multiarch/bzero.c index d7b3aaa877..ed83541fa5 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/bzero.c +++ b/sysdeps/powerpc/powerpc64/multiarch/bzero.c @@ -1,5 +1,5 @@ /* Multiple versions of bzero. PowerPC64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c b/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c index 33fc29e7f0..6bbdd4ebba 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c +++ b/sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c @@ -1,5 +1,5 @@ /* Enumerate available IFUNC implementations of a function. PowerPC64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/init-arch.h b/sysdeps/powerpc/powerpc64/multiarch/init-arch.h index b7d238cc08..c39d4ba3fd 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/init-arch.h +++ b/sysdeps/powerpc/powerpc64/multiarch/init-arch.h @@ -1,5 +1,5 @@ /* This file is part of the GNU C Library. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S b/sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S index 094e2cfdab..4a8d459dea 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S @@ -1,5 +1,5 @@ /* Optimized memchr implementation for PowerPC64/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c index 8ec14c6a68..9e2a711b56 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c @@ -1,5 +1,5 @@ /* PowerPC64 default implementation of memchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memchr.c b/sysdeps/powerpc/powerpc64/multiarch/memchr.c index a4237f3967..ca0f714385 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memchr.c +++ b/sysdeps/powerpc/powerpc64/multiarch/memchr.c @@ -1,5 +1,5 @@ /* Multiple versions of memchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S b/sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S index d98857d06b..9903276c44 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S @@ -1,5 +1,5 @@ /* Optimized memcmp implementation for PowerPC64/POWER4. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S b/sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S index 9e027d47dc..ee31ca6918 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S @@ -1,5 +1,5 @@ /* Optimized memcmp implementation for PowerPC64/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c index 685e530bc6..1a39d4aed0 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcmp.c b/sysdeps/powerpc/powerpc64/multiarch/memcmp.c index b63c8e13fb..af90f0ab98 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcmp.c +++ b/sysdeps/powerpc/powerpc64/multiarch/memcmp.c @@ -1,5 +1,5 @@ /* Multiple versions of memcmp. PowerPC64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S b/sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S index 79796739b5..decbcffdcb 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC A2. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S b/sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S index 7b3c102400..c3c2f7f3c7 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC/CELL. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S b/sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S index 295a1f204a..02ba9b1d1d 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC64/POWER4. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S b/sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S index 35fe8875c3..58e811347c 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC/POWER6. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S b/sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S index aa725d2f26..1170c5031c 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S b/sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S index c8b70a0590..a09d7603a6 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S @@ -1,5 +1,5 @@ /* Default memcpy implementation for PowerPC64. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memcpy.c b/sysdeps/powerpc/powerpc64/multiarch/memcpy.c index b580ef7e5c..6a916301e1 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memcpy.c +++ b/sysdeps/powerpc/powerpc64/multiarch/memcpy.c @@ -1,5 +1,5 @@ /* Multiple versions of memcpy. PowerPC64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S b/sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S index 6d7f002d68..8d4b7a77cf 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S @@ -1,5 +1,5 @@ /* Optimized mempcpy implementation for PowerPC/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c index 40f6c42432..78260bbed2 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c @@ -1,5 +1,5 @@ /* PowerPC64 default implementation of mempcpy. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/mempcpy.c b/sysdeps/powerpc/powerpc64/multiarch/mempcpy.c index 7100eb513a..38fbcc33f5 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/mempcpy.c +++ b/sysdeps/powerpc/powerpc64/multiarch/mempcpy.c @@ -1,5 +1,5 @@ /* Multiple versions of mempcpy. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S b/sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S index a6f825c0f1..c363215a85 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S @@ -1,5 +1,5 @@ /* Optimized memrchr implementation for PowerPC64/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c index 8c291e6cfb..c2ee4be87e 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c @@ -1,5 +1,5 @@ /* PowerPC64 default implementation of memrchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memrchr.c b/sysdeps/powerpc/powerpc64/multiarch/memrchr.c index cc362bac28..610a9570c9 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memrchr.c +++ b/sysdeps/powerpc/powerpc64/multiarch/memrchr.c @@ -1,5 +1,5 @@ /* Multiple versions of memrchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memset-power4.S b/sysdeps/powerpc/powerpc64/multiarch/memset-power4.S index aac7fb1295..968dc24bd3 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memset-power4.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memset-power4.S @@ -1,5 +1,5 @@ /* Optimized memset implementation for PowerPC64/POWER4. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memset-power6.S b/sysdeps/powerpc/powerpc64/multiarch/memset-power6.S index 3144c699d5..65519b91f1 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memset-power6.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memset-power6.S @@ -1,5 +1,5 @@ /* Optimized memset implementation for PowerPC64/POWER6. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memset-power7.S b/sysdeps/powerpc/powerpc64/multiarch/memset-power7.S index ecfa963bd7..86765e74ab 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memset-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memset-power7.S @@ -1,5 +1,5 @@ /* Optimized memset implementation for PowerPC64/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S b/sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S index 95b98f8834..5b234d9ecb 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S +++ b/sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S @@ -1,5 +1,5 @@ /* Default memset/bzero implementation for PowerPC64. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/memset.c b/sysdeps/powerpc/powerpc64/multiarch/memset.c index 226799e64d..829d12759a 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memset.c +++ b/sysdeps/powerpc/powerpc64/multiarch/memset.c @@ -1,5 +1,5 @@ /* Multiple versions of memset. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S b/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S index d3ab4f1512..9f7533a6bd 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S @@ -1,5 +1,5 @@ /* Optimized rawmemchr implementation for PowerPC64/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c index c69b213b45..0f2f202f80 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c @@ -1,5 +1,5 @@ /* PowerPC64 default implementation of rawmemchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c b/sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c index c083490f3f..3f53cd5725 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c +++ b/sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c @@ -1,5 +1,5 @@ /* Multiple versions of rawmemchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c b/sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c index c74a770528..8eac85b828 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c +++ b/sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S b/sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S index 93f0eb49ee..5c62657a17 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S +++ b/sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.S b/sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.S index 1b75dd18e9..ad4eb967e1 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.S @@ -1,5 +1,5 @@ /* Optimized stpcpy implementation for POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.S b/sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.S index 874d8aa8f3..d80c82fb11 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.S +++ b/sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.S @@ -1,5 +1,5 @@ /* Default stpcpy implementation for PowerPC64. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/stpcpy.c b/sysdeps/powerpc/powerpc64/multiarch/stpcpy.c index 4df555f204..c7118d5880 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/stpcpy.c +++ b/sysdeps/powerpc/powerpc64/multiarch/stpcpy.c @@ -1,5 +1,5 @@ /* Multiple versions of stpcpy. PowerPC64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S index 20d072219b..0492bafb44 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S @@ -1,5 +1,5 @@ /* Optimized strcasecmp implementation foOWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c index 21d80d3254..7f02a25207 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c @@ -1,5 +1,5 @@ /* Multiple versions of strcasecmp. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S index 3bf2ba6207..a65949f2bf 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S @@ -1,5 +1,5 @@ /* Optimized strcasecmp_l implementation for POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c index 975dcef17c..a3374c3286 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c @@ -1,5 +1,5 @@ /* Multiple versions of strcasecmp_l. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S index b1cf338e47..a3473a6207 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S @@ -1,5 +1,5 @@ /* Optimized strchr implementation for POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S b/sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S index 814ed87d01..607668a2f4 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S @@ -1,5 +1,5 @@ /* PowerPC64 default implementation of strchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strchr.c b/sysdeps/powerpc/powerpc64/multiarch/strchr.c index 8a7dc74833..74a9d54bb9 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strchr.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strchr.c @@ -1,5 +1,5 @@ /* Multiple versions of strchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S index 9454b0ca29..95ead0add6 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S @@ -1,5 +1,5 @@ /* Optimized strchrnul implementation for POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c index 7172ddf04a..a76b335604 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c @@ -1,5 +1,5 @@ /* PowerPC64 default implementation of strchrnul. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strchrnul.c b/sysdeps/powerpc/powerpc64/multiarch/strchrnul.c index 95138580d8..dab1cbf9ed 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strchrnul.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strchrnul.c @@ -1,5 +1,5 @@ /* Multiple versions of strchrnul. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.S index 127422f439..c21b04b0d0 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.S @@ -1,5 +1,5 @@ /* Optimized strcpy implementation for POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.S b/sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.S index 255fc3f1fb..33a8b1c92e 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.S @@ -1,5 +1,5 @@ /* Default strcpy implementation for PowerPC64. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcpy.c b/sysdeps/powerpc/powerpc64/multiarch/strcpy.c index 8d555c9417..1b6e9e0665 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strcpy.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strcpy.c @@ -1,5 +1,5 @@ /* Multiple versions of strcpy. PowerPC64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S index 1027d7d076..c47c9d625f 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S @@ -1,5 +1,5 @@ /* Optimized strlen implementation for POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S b/sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S index a78460efbd..efcc212d7f 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S @@ -1,5 +1,5 @@ /* Default strlen implementation for PowerPC64. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strlen.c b/sysdeps/powerpc/powerpc64/multiarch/strlen.c index 21b9294707..6574696443 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strlen.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strlen.c @@ -1,5 +1,5 @@ /* Multiple versions of strlen. PowerPC64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c b/sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c index de6ac409e9..9c5dbab399 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncase.c b/sysdeps/powerpc/powerpc64/multiarch/strncase.c index 7fea0e3cf9..05eba7c364 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strncase.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strncase.c @@ -1,5 +1,5 @@ /* Multiple versions of strncasecmp - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c b/sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c index 10a49fc9ec..8c8cd8da15 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncase_l.c b/sysdeps/powerpc/powerpc64/multiarch/strncase_l.c index 4f3fb91909..4014269ba9 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strncase_l.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strncase_l.c @@ -1,5 +1,5 @@ /* Multiple versions of strncasecmp_l - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S b/sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S index ec786fd6b9..da32b0b302 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S index 3293728370..65ee0cd88b 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S b/sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S index fff07df4fa..14a2bec648 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strncmp.c b/sysdeps/powerpc/powerpc64/multiarch/strncmp.c index 09db0be3bb..9829d69395 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strncmp.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strncmp.c @@ -1,5 +1,5 @@ /* Multiple versions of strncmp. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S index 69a3683a0b..30e29cda7e 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S @@ -1,5 +1,5 @@ /* Optimized strnlen version for POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c index bc4d8ae3cb..9d239941be 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/strnlen.c b/sysdeps/powerpc/powerpc64/multiarch/strnlen.c index 00806779c2..392603117f 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strnlen.c +++ b/sysdeps/powerpc/powerpc64/multiarch/strnlen.c @@ -1,5 +1,5 @@ /* Multiple versions of strnlen. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c b/sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c index b03004e81b..21d965ade4 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c @@ -1,5 +1,5 @@ /* wcschr.c - Wide Character Search for powerpc64/power6. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c b/sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c index fa0a696c7e..340721907e 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c @@ -1,5 +1,5 @@ /* wcschr.c - Wide Character Search for powerpc64/power7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c index b155dc929b..3f1f3685da 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcschr.c b/sysdeps/powerpc/powerpc64/multiarch/wcschr.c index 51fbefea2b..216d2bc61c 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcschr.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcschr.c @@ -1,5 +1,5 @@ /* Multiple versions of wcschr - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c b/sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c index 10cf9c7ee2..9f4bc41c3b 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c @@ -1,5 +1,5 @@ /* wcscpy.c - Wide Character Search for powerpc64/power6. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c b/sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c index cac2e3550f..0f37ad42a4 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c @@ -1,5 +1,5 @@ /* wcscpy.c - Wide Character Search for powerpc64/power7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c index a2d0f233ee..4559569a4e 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcscpy.c b/sysdeps/powerpc/powerpc64/multiarch/wcscpy.c index 27715b3174..f04298a7a2 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcscpy.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcscpy.c @@ -1,5 +1,5 @@ /* Multiple versions of wcscpy. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c b/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c index d1b29b1fb2..da6f27b69d 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c @@ -1,5 +1,5 @@ /* wcsrchr.c - Wide Character Search for powerpc64/power6. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c b/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c index a2717bc49a..60f07a8e07 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c @@ -1,5 +1,5 @@ /* wcsrchr.c - Wide Character Search for powerpc64/power7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c index 3e698a56b4..1fff5107bc 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c b/sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c index 01470c9a5b..3d0ab422e9 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c @@ -1,5 +1,5 @@ /* Multiple versions of wcsrchr. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c b/sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c index 671d6d9564..2a65b52e8c 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c @@ -1,5 +1,5 @@ /* wordcopy routines for powerpc64/power6. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c b/sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c index fb690503c7..e804f88ca8 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c @@ -1,5 +1,5 @@ /* wordcopy routines for powerpc64/power7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c index c5830a63f1..0584277b86 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/multiarch/wordcopy.c b/sysdeps/powerpc/powerpc64/multiarch/wordcopy.c index 78233dce66..889be2555f 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wordcopy.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wordcopy.c @@ -1,5 +1,5 @@ /* Multiple versions of wordcopy functions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power4/memcmp.S b/sysdeps/powerpc/powerpc64/power4/memcmp.S index 80d67c9aaa..0809b77ce2 100644 --- a/sysdeps/powerpc/powerpc64/power4/memcmp.S +++ b/sysdeps/powerpc/powerpc64/power4/memcmp.S @@ -1,5 +1,5 @@ /* Optimized memcmp implementation for PowerPC64. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power4/memcpy.S b/sysdeps/powerpc/powerpc64/power4/memcpy.S index f9a7260dcb..cb908ce9d5 100644 --- a/sysdeps/powerpc/powerpc64/power4/memcpy.S +++ b/sysdeps/powerpc/powerpc64/power4/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC64. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power4/memset.S b/sysdeps/powerpc/powerpc64/power4/memset.S index 9d6fef569a..3a1e9dc76a 100644 --- a/sysdeps/powerpc/powerpc64/power4/memset.S +++ b/sysdeps/powerpc/powerpc64/power4/memset.S @@ -1,5 +1,5 @@ /* Optimized memset implementation for PowerPC64. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power4/strncmp.S b/sysdeps/powerpc/powerpc64/power4/strncmp.S index 5d136cfa21..7e2ca0a611 100644 --- a/sysdeps/powerpc/powerpc64/power4/strncmp.S +++ b/sysdeps/powerpc/powerpc64/power4/strncmp.S @@ -1,5 +1,5 @@ /* Optimized strcmp implementation for PowerPC64. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S b/sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S index efb7c7fb4a..0e80f13d72 100644 --- a/sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S +++ b/sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S @@ -1,5 +1,5 @@ /* ceil function. PowerPC64/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S b/sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S index 985a130a17..7449a74eb0 100644 --- a/sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S +++ b/sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S @@ -1,5 +1,5 @@ /* ceilf function. PowerPC64/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S b/sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S index 4e09d401b4..afc85366e1 100644 --- a/sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S +++ b/sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S @@ -1,5 +1,5 @@ /* floor function. PowerPC64/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S b/sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S index ae6ab628b4..28731b0ffd 100644 --- a/sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S +++ b/sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S @@ -1,5 +1,5 @@ /* floorf function. PowerPC64/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S b/sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S index 28df006425..1fce5c472a 100644 --- a/sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S +++ b/sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S @@ -1,5 +1,5 @@ /* llround function. POWER5+, PowerPC64 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S b/sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S index 8fa7b629db..863c0f8cdf 100644 --- a/sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S +++ b/sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S @@ -1,5 +1,5 @@ /* round function. PowerPC64/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S b/sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S index 74abfc7d41..22f72c9427 100644 --- a/sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S +++ b/sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S @@ -1,5 +1,5 @@ /* roundf function. PowerPC64/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S b/sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S index f5803aadc7..90f92485fd 100644 --- a/sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S +++ b/sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S @@ -1,5 +1,5 @@ /* trunc function. PowerPC64/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S b/sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S index aaaf97580c..11205c34b6 100644 --- a/sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S +++ b/sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S @@ -1,5 +1,5 @@ /* truncf function. PowerPC64/power5+ version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S b/sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S index 8319d6e176..4ce6cf9006 100644 --- a/sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S +++ b/sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC64 version. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S b/sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S index b37dadb338..e1ea089c09 100644 --- a/sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S +++ b/sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S @@ -1,5 +1,5 @@ /* copysign(). PowerPC64/POWER6 version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S b/sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S index d4515d69d2..8a149b21b7 100644 --- a/sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S +++ b/sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC64 version. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power6/memcpy.S b/sysdeps/powerpc/powerpc64/power6/memcpy.S index e3f3d8a303..0b99734933 100644 --- a/sysdeps/powerpc/powerpc64/power6/memcpy.S +++ b/sysdeps/powerpc/powerpc64/power6/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC64. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power6/memset.S b/sysdeps/powerpc/powerpc64/power6/memset.S index 15a83b74fa..b5115a7989 100644 --- a/sysdeps/powerpc/powerpc64/power6/memset.S +++ b/sysdeps/powerpc/powerpc64/power6/memset.S @@ -1,5 +1,5 @@ /* Optimized 64-bit memset implementation for POWER6. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S b/sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S index d29fe9e3cd..3172fe3364 100644 --- a/sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S +++ b/sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC64 version. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S b/sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S index 67d51ada6d..3a917900c3 100644 --- a/sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S +++ b/sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S @@ -1,5 +1,5 @@ /* Round double to long int. POWER6x PowerPC64 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S b/sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S index 45aaceaa3e..cc0d943492 100644 --- a/sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S +++ b/sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S @@ -1,5 +1,5 @@ /* llround function. POWER6x PowerPC64 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power7/add_n.S b/sysdeps/powerpc/powerpc64/power7/add_n.S index d90e4fce0d..6df442ccec 100644 --- a/sysdeps/powerpc/powerpc64/power7/add_n.S +++ b/sysdeps/powerpc/powerpc64/power7/add_n.S @@ -1,6 +1,6 @@ /* PowerPC64 mpn_lshift -- mpn_add_n/mpn_sub_n -- mpn addition and subtraction. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S b/sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S index ebec0e0bad..765d68914a 100644 --- a/sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S +++ b/sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S @@ -1,5 +1,5 @@ /* finite(). PowerPC64/POWER7 version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S b/sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S index 8d088db5af..e102d4b448 100644 --- a/sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S +++ b/sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S @@ -1,5 +1,5 @@ /* isinf(). PowerPC64/POWER7 version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S b/sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S index 3380bf9015..eabee712ea 100644 --- a/sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S +++ b/sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* isnan(). PowerPC64/POWER7 version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/memchr.S b/sysdeps/powerpc/powerpc64/power7/memchr.S index 421d6d4660..f502ad022b 100644 --- a/sysdeps/powerpc/powerpc64/power7/memchr.S +++ b/sysdeps/powerpc/powerpc64/power7/memchr.S @@ -1,5 +1,5 @@ /* Optimized memchr implementation for PowerPC64/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/memcmp.S b/sysdeps/powerpc/powerpc64/power7/memcmp.S index 6851cdc75b..09bff696ff 100644 --- a/sysdeps/powerpc/powerpc64/power7/memcmp.S +++ b/sysdeps/powerpc/powerpc64/power7/memcmp.S @@ -1,5 +1,5 @@ /* Optimized memcmp implementation for POWER7/PowerPC64. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power7/memcpy.S b/sysdeps/powerpc/powerpc64/power7/memcpy.S index e8df75f593..bbfd381b1b 100644 --- a/sysdeps/powerpc/powerpc64/power7/memcpy.S +++ b/sysdeps/powerpc/powerpc64/power7/memcpy.S @@ -1,5 +1,5 @@ /* Optimized memcpy implementation for PowerPC64/POWER7. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/mempcpy.S b/sysdeps/powerpc/powerpc64/power7/mempcpy.S index b93ab7da52..a7239eeac1 100644 --- a/sysdeps/powerpc/powerpc64/power7/mempcpy.S +++ b/sysdeps/powerpc/powerpc64/power7/mempcpy.S @@ -1,5 +1,5 @@ /* Optimized mempcpy implementation for POWER7. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/memrchr.S b/sysdeps/powerpc/powerpc64/power7/memrchr.S index 683bfed7d8..40e436f853 100644 --- a/sysdeps/powerpc/powerpc64/power7/memrchr.S +++ b/sysdeps/powerpc/powerpc64/power7/memrchr.S @@ -1,5 +1,5 @@ /* Optimized memrchr implementation for PowerPC64/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/memset.S b/sysdeps/powerpc/powerpc64/power7/memset.S index 03a45c23c7..6b8999dc1f 100644 --- a/sysdeps/powerpc/powerpc64/power7/memset.S +++ b/sysdeps/powerpc/powerpc64/power7/memset.S @@ -1,5 +1,5 @@ /* Optimized memset implementation for PowerPC64/POWER7. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/rawmemchr.S b/sysdeps/powerpc/powerpc64/power7/rawmemchr.S index 547aed771f..56a19bd885 100644 --- a/sysdeps/powerpc/powerpc64/power7/rawmemchr.S +++ b/sysdeps/powerpc/powerpc64/power7/rawmemchr.S @@ -1,5 +1,5 @@ /* Optimized rawmemchr implementation for PowerPC64/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/stpcpy.S b/sysdeps/powerpc/powerpc64/power7/stpcpy.S index 727dd06e74..baf6e98826 100644 --- a/sysdeps/powerpc/powerpc64/power7/stpcpy.S +++ b/sysdeps/powerpc/powerpc64/power7/stpcpy.S @@ -1,5 +1,5 @@ /* Optimized stpcpy implementation for PowerPC64/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power7/strcasecmp.S b/sysdeps/powerpc/powerpc64/power7/strcasecmp.S index 37785ea423..417c7e56af 100644 --- a/sysdeps/powerpc/powerpc64/power7/strcasecmp.S +++ b/sysdeps/powerpc/powerpc64/power7/strcasecmp.S @@ -1,5 +1,5 @@ /* Optimized strcasecmp implementation for PowerPC64. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power7/strchr.S b/sysdeps/powerpc/powerpc64/power7/strchr.S index 4679a158f1..1c0a556c04 100644 --- a/sysdeps/powerpc/powerpc64/power7/strchr.S +++ b/sysdeps/powerpc/powerpc64/power7/strchr.S @@ -1,5 +1,5 @@ /* Optimized strchr implementation for PowerPC64/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/strchrnul.S b/sysdeps/powerpc/powerpc64/power7/strchrnul.S index df457525e2..586c76950a 100644 --- a/sysdeps/powerpc/powerpc64/power7/strchrnul.S +++ b/sysdeps/powerpc/powerpc64/power7/strchrnul.S @@ -1,5 +1,5 @@ /* Optimized strchrnul implementation for PowerPC64/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/strcpy.S b/sysdeps/powerpc/powerpc64/power7/strcpy.S index 5c341a1483..ce71982eaf 100644 --- a/sysdeps/powerpc/powerpc64/power7/strcpy.S +++ b/sysdeps/powerpc/powerpc64/power7/strcpy.S @@ -1,5 +1,5 @@ /* Optimized strcpy/stpcpy implementation for PowerPC64/POWER7. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power7/strlen.S b/sysdeps/powerpc/powerpc64/power7/strlen.S index 807ef1082e..d023e85938 100644 --- a/sysdeps/powerpc/powerpc64/power7/strlen.S +++ b/sysdeps/powerpc/powerpc64/power7/strlen.S @@ -1,5 +1,5 @@ /* Optimized strlen implementation for PowerPC64/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/strncmp.S b/sysdeps/powerpc/powerpc64/power7/strncmp.S index e618b010bf..35cc244f36 100644 --- a/sysdeps/powerpc/powerpc64/power7/strncmp.S +++ b/sysdeps/powerpc/powerpc64/power7/strncmp.S @@ -1,5 +1,5 @@ /* Optimized strcmp implementation for POWER7/PowerPC64. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/power7/strnlen.S b/sysdeps/powerpc/powerpc64/power7/strnlen.S index 51591069df..7993dae69e 100644 --- a/sysdeps/powerpc/powerpc64/power7/strnlen.S +++ b/sysdeps/powerpc/powerpc64/power7/strnlen.S @@ -1,5 +1,5 @@ /* Optimized strnlen implementation for PowerPC64/POWER7 using cmpb insn. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Luis Machado . This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/powerpc64/power7/sub_n.S b/sysdeps/powerpc/powerpc64/power7/sub_n.S index 6afb81cf50..d6539aa067 100644 --- a/sysdeps/powerpc/powerpc64/power7/sub_n.S +++ b/sysdeps/powerpc/powerpc64/power7/sub_n.S @@ -1,6 +1,6 @@ /* PowerPC64 mpn_lshift -- mpn_add_n/mpn_sub_n -- mpn addition and subtraction. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/ppc-mcount.S b/sysdeps/powerpc/powerpc64/ppc-mcount.S index 9824a55f5f..28f54d3c91 100644 --- a/sysdeps/powerpc/powerpc64/ppc-mcount.S +++ b/sysdeps/powerpc/powerpc64/ppc-mcount.S @@ -1,5 +1,5 @@ /* PowerPC64-specific implementation of profiling support. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/register-dump.h b/sysdeps/powerpc/powerpc64/register-dump.h index c4502a7538..dbebf55797 100644 --- a/sysdeps/powerpc/powerpc64/register-dump.h +++ b/sysdeps/powerpc/powerpc64/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/setjmp-common.S b/sysdeps/powerpc/powerpc64/setjmp-common.S index 6ab44d63ed..c0c77136a1 100644 --- a/sysdeps/powerpc/powerpc64/setjmp-common.S +++ b/sysdeps/powerpc/powerpc64/setjmp-common.S @@ -1,5 +1,5 @@ /* setjmp for PowerPC64. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/setjmp.S b/sysdeps/powerpc/powerpc64/setjmp.S index 5c6baf52df..c15908c126 100644 --- a/sysdeps/powerpc/powerpc64/setjmp.S +++ b/sysdeps/powerpc/powerpc64/setjmp.S @@ -1,5 +1,5 @@ /* AltiVec (new) version of setjmp for PowerPC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/start.S b/sysdeps/powerpc/powerpc64/start.S index 09ab464cbc..15e29d9fb0 100644 --- a/sysdeps/powerpc/powerpc64/start.S +++ b/sysdeps/powerpc/powerpc64/start.S @@ -1,5 +1,5 @@ /* Startup code for programs linked with GNU libc. PowerPC64 version. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/stpcpy.S b/sysdeps/powerpc/powerpc64/stpcpy.S index 09aa3be6b5..6a25744b89 100644 --- a/sysdeps/powerpc/powerpc64/stpcpy.S +++ b/sysdeps/powerpc/powerpc64/stpcpy.S @@ -1,5 +1,5 @@ /* Optimized stpcpy implementation for PowerPC64. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/strchr.S b/sysdeps/powerpc/powerpc64/strchr.S index da707ae587..3a16ee1c66 100644 --- a/sysdeps/powerpc/powerpc64/strchr.S +++ b/sysdeps/powerpc/powerpc64/strchr.S @@ -1,5 +1,5 @@ /* Optimized strchr implementation for PowerPC64. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/strcmp.S b/sysdeps/powerpc/powerpc64/strcmp.S index 70854689d3..6cd587cd99 100644 --- a/sysdeps/powerpc/powerpc64/strcmp.S +++ b/sysdeps/powerpc/powerpc64/strcmp.S @@ -1,5 +1,5 @@ /* Optimized strcmp implementation for PowerPC64. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/strcpy.S b/sysdeps/powerpc/powerpc64/strcpy.S index 793325d7be..42b39a105a 100644 --- a/sysdeps/powerpc/powerpc64/strcpy.S +++ b/sysdeps/powerpc/powerpc64/strcpy.S @@ -1,5 +1,5 @@ /* Optimized strcpy implementation for PowerPC64. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/strlen.S b/sysdeps/powerpc/powerpc64/strlen.S index 4ed1ba3ad1..2b1537c91e 100644 --- a/sysdeps/powerpc/powerpc64/strlen.S +++ b/sysdeps/powerpc/powerpc64/strlen.S @@ -1,5 +1,5 @@ /* Optimized strlen implementation for PowerPC64. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/strncmp.S b/sysdeps/powerpc/powerpc64/strncmp.S index 8f842c4b26..b3f12a8292 100644 --- a/sysdeps/powerpc/powerpc64/strncmp.S +++ b/sysdeps/powerpc/powerpc64/strncmp.S @@ -1,5 +1,5 @@ /* Optimized strcmp implementation for PowerPC64. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/submul_1.S b/sysdeps/powerpc/powerpc64/submul_1.S index 145b1d403c..8fac8e51e7 100644 --- a/sysdeps/powerpc/powerpc64/submul_1.S +++ b/sysdeps/powerpc/powerpc64/submul_1.S @@ -1,6 +1,6 @@ /* PowerPC64 __mpn_addmul_1 -- Multiply a limb vector with a limb and subtract the result to a second limb vector. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/sysdep.h b/sysdeps/powerpc/powerpc64/sysdep.h index 112e4187c5..b28fb9d8aa 100644 --- a/sysdeps/powerpc/powerpc64/sysdep.h +++ b/sysdeps/powerpc/powerpc64/sysdep.h @@ -1,5 +1,5 @@ /* Assembly macros for 64-bit PowerPC. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/powerpc64/tst-audit.h b/sysdeps/powerpc/powerpc64/tst-audit.h index 0fbe1fec52..c551cd5b90 100644 --- a/sysdeps/powerpc/powerpc64/tst-audit.h +++ b/sysdeps/powerpc/powerpc64/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. PowerPC64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/powerpc/sched_cpucount.c b/sysdeps/powerpc/sched_cpucount.c index f378a6484a..1d3bf5ebce 100644 --- a/sysdeps/powerpc/sched_cpucount.c +++ b/sysdeps/powerpc/sched_cpucount.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/sigjmp.c b/sysdeps/powerpc/sigjmp.c index 60601aac03..68cfb41e1c 100644 --- a/sysdeps/powerpc/sigjmp.c +++ b/sysdeps/powerpc/sigjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/stackinfo.h b/sysdeps/powerpc/stackinfo.h index 853a8442cf..cfb759f33e 100644 --- a/sysdeps/powerpc/stackinfo.h +++ b/sysdeps/powerpc/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/strcat.c b/sysdeps/powerpc/strcat.c index a1bc6bd4ac..06ceca70f9 100644 --- a/sysdeps/powerpc/strcat.c +++ b/sysdeps/powerpc/strcat.c @@ -1,5 +1,5 @@ /* strcat version that uses fast strcpy/strlen. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/sys/platform/ppc.h b/sysdeps/powerpc/sys/platform/ppc.h index 81f3bf9bff..86958b0dc9 100644 --- a/sysdeps/powerpc/sys/platform/ppc.h +++ b/sysdeps/powerpc/sys/platform/ppc.h @@ -1,5 +1,5 @@ /* Facilities specific to the PowerPC architecture - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/sysdep.h b/sysdeps/powerpc/sysdep.h index bc2cb6681a..541b657db2 100644 --- a/sysdeps/powerpc/sysdep.h +++ b/sysdeps/powerpc/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/test-arith.c b/sysdeps/powerpc/test-arith.c index a67958fd83..bb2042ace2 100644 --- a/sysdeps/powerpc/test-arith.c +++ b/sysdeps/powerpc/test-arith.c @@ -1,5 +1,5 @@ /* Test floating-point arithmetic operations. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/test-gettimebase.c b/sysdeps/powerpc/test-gettimebase.c index 3ce55c7f0f..63c84bfe20 100644 --- a/sysdeps/powerpc/test-gettimebase.c +++ b/sysdeps/powerpc/test-gettimebase.c @@ -1,5 +1,5 @@ /* Check __ppc_get_timebase() for architecture changes - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/powerpc/tst-stack-align.h b/sysdeps/powerpc/tst-stack-align.h index 9eeb1aacf0..98724ffa5f 100644 --- a/sysdeps/powerpc/tst-stack-align.h +++ b/sysdeps/powerpc/tst-stack-align.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/pthread/aio_cancel.c b/sysdeps/pthread/aio_cancel.c index 86fbcf6e89..c1d27681d1 100644 --- a/sysdeps/pthread/aio_cancel.c +++ b/sysdeps/pthread/aio_cancel.c @@ -1,5 +1,5 @@ /* Cancel requests associated with given file descriptor. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/pthread/aio_fsync.c b/sysdeps/pthread/aio_fsync.c index 1e5a2584fb..3b7e289742 100644 --- a/sysdeps/pthread/aio_fsync.c +++ b/sysdeps/pthread/aio_fsync.c @@ -1,5 +1,5 @@ /* Synchronize I/O in given file descriptor. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/pthread/aio_misc.c b/sysdeps/pthread/aio_misc.c index 79153c8b78..5ebceeee40 100644 --- a/sysdeps/pthread/aio_misc.c +++ b/sysdeps/pthread/aio_misc.c @@ -1,5 +1,5 @@ /* Handle general operations. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/pthread/aio_misc.h b/sysdeps/pthread/aio_misc.h index cea1a08bee..3dd99eab11 100644 --- a/sysdeps/pthread/aio_misc.h +++ b/sysdeps/pthread/aio_misc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/pthread/aio_notify.c b/sysdeps/pthread/aio_notify.c index deedd2df63..302f1a785b 100644 --- a/sysdeps/pthread/aio_notify.c +++ b/sysdeps/pthread/aio_notify.c @@ -1,5 +1,5 @@ /* Notify initiator of AIO request. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/pthread/aio_read.c b/sysdeps/pthread/aio_read.c index ac4b3b9ddd..a8054af4ac 100644 --- a/sysdeps/pthread/aio_read.c +++ b/sysdeps/pthread/aio_read.c @@ -1,5 +1,5 @@ /* Asynchronous read. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/pthread/aio_read64.c b/sysdeps/pthread/aio_read64.c index 8df4e1aae2..cb9116a8e3 100644 --- a/sysdeps/pthread/aio_read64.c +++ b/sysdeps/pthread/aio_read64.c @@ -1,5 +1,5 @@ /* Asynchronous read, 64bit offset version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/pthread/aio_suspend.c b/sysdeps/pthread/aio_suspend.c index 137c973636..b8f8a5b22a 100644 --- a/sysdeps/pthread/aio_suspend.c +++ b/sysdeps/pthread/aio_suspend.c @@ -1,5 +1,5 @@ /* Suspend until termination of a requests. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/pthread/aio_write.c b/sysdeps/pthread/aio_write.c index eac411197d..3c2ac74ac2 100644 --- a/sysdeps/pthread/aio_write.c +++ b/sysdeps/pthread/aio_write.c @@ -1,5 +1,5 @@ /* Asynchronous write. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/pthread/aio_write64.c b/sysdeps/pthread/aio_write64.c index e02148591e..8dd62e1e54 100644 --- a/sysdeps/pthread/aio_write64.c +++ b/sysdeps/pthread/aio_write64.c @@ -1,5 +1,5 @@ /* Asynchronous write, 64bit offset version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/pthread/lio_listio.c b/sysdeps/pthread/lio_listio.c index a4495192ac..568c59203f 100644 --- a/sysdeps/pthread/lio_listio.c +++ b/sysdeps/pthread/lio_listio.c @@ -1,5 +1,5 @@ /* Enqueue and list of read or write requests. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/pthread/lio_listio64.c b/sysdeps/pthread/lio_listio64.c index 155cda0920..dfd20ab997 100644 --- a/sysdeps/pthread/lio_listio64.c +++ b/sysdeps/pthread/lio_listio64.c @@ -1,5 +1,5 @@ /* Enqueue and list of read or write requests, 64bit offset version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/s390/asm-syntax.h b/sysdeps/s390/asm-syntax.h index 1d0e899478..d0b3b20633 100644 --- a/sysdeps/s390/asm-syntax.h +++ b/sysdeps/s390/asm-syntax.h @@ -1,5 +1,5 @@ /* Definitions for S/390 syntax variations. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Its master source is NOT part of the C library, however. The master source lives in the GNU MP Library. diff --git a/sysdeps/s390/bits/atomic.h b/sysdeps/s390/bits/atomic.h index d7edee47e4..6824165779 100644 --- a/sysdeps/s390/bits/atomic.h +++ b/sysdeps/s390/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/sysdeps/s390/bits/byteswap-16.h b/sysdeps/s390/bits/byteswap-16.h index a6b2fa1165..a2d77d74fd 100644 --- a/sysdeps/s390/bits/byteswap-16.h +++ b/sysdeps/s390/bits/byteswap-16.h @@ -1,5 +1,5 @@ /* Macros to swap the order of bytes in 16-bit integer values. s390 version - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/bits/byteswap.h b/sysdeps/s390/bits/byteswap.h index 5d289120fc..ad4785c463 100644 --- a/sysdeps/s390/bits/byteswap.h +++ b/sysdeps/s390/bits/byteswap.h @@ -1,5 +1,5 @@ /* Macros to swap the order of bytes in integer values. s390 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/bits/link.h b/sysdeps/s390/bits/link.h index 0ea59ac215..a5ab5468e3 100644 --- a/sysdeps/s390/bits/link.h +++ b/sysdeps/s390/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/bits/mathdef.h b/sysdeps/s390/bits/mathdef.h index e2eda5fb9c..5c3f15adb7 100644 --- a/sysdeps/s390/bits/mathdef.h +++ b/sysdeps/s390/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/bits/setjmp.h b/sysdeps/s390/bits/setjmp.h index e929c161a8..0071a9dce5 100644 --- a/sysdeps/s390/bits/setjmp.h +++ b/sysdeps/s390/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/bits/string.h b/sysdeps/s390/bits/string.h index b6f7e215c1..3a00800e4e 100644 --- a/sysdeps/s390/bits/string.h +++ b/sysdeps/s390/bits/string.h @@ -1,5 +1,5 @@ /* Optimized, inlined string functions. S/390 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/bits/xtitypes.h b/sysdeps/s390/bits/xtitypes.h index dfdf5c4623..42e678d902 100644 --- a/sysdeps/s390/bits/xtitypes.h +++ b/sysdeps/s390/bits/xtitypes.h @@ -1,5 +1,5 @@ /* bits/xtitypes.h -- Define some types used by . S390/S390x - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/dl-irel.h b/sysdeps/s390/dl-irel.h index 32a9f3fdba..82d5e4c4a1 100644 --- a/sysdeps/s390/dl-irel.h +++ b/sysdeps/s390/dl-irel.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF indirect relocation inline functions. Version for S/390 32 and 64 bit. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/dl-procinfo.c b/sysdeps/s390/dl-procinfo.c index cd148ba1ce..89f8ebe1f9 100644 --- a/sysdeps/s390/dl-procinfo.c +++ b/sysdeps/s390/dl-procinfo.c @@ -1,5 +1,5 @@ /* Data for s390 version of processor capability information. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2006. diff --git a/sysdeps/s390/dl-procinfo.h b/sysdeps/s390/dl-procinfo.h index 65f037b8c0..65322db6a4 100644 --- a/sysdeps/s390/dl-procinfo.h +++ b/sysdeps/s390/dl-procinfo.h @@ -1,5 +1,5 @@ /* s390 version of processor capability information handling macros. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2006. diff --git a/sysdeps/s390/dl-tls.h b/sysdeps/s390/dl-tls.h index 52192a26d8..acf282e65c 100644 --- a/sysdeps/s390/dl-tls.h +++ b/sysdeps/s390/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. s390 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/ffs.c b/sysdeps/s390/ffs.c index 2dbb7430e2..7debcc502c 100644 --- a/sysdeps/s390/ffs.c +++ b/sysdeps/s390/ffs.c @@ -1,6 +1,6 @@ /* ffs -- find first set bit in a word, counted from least significant end. S/390 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/fpu/bits/fenv.h b/sysdeps/s390/fpu/bits/fenv.h index c7fe521ab7..8dc3d5f81f 100644 --- a/sysdeps/s390/fpu/bits/fenv.h +++ b/sysdeps/s390/fpu/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow . diff --git a/sysdeps/s390/fpu/bits/mathinline.h b/sysdeps/s390/fpu/bits/mathinline.h index 66c12f92ab..a9c3e438e0 100644 --- a/sysdeps/s390/fpu/bits/mathinline.h +++ b/sysdeps/s390/fpu/bits/mathinline.h @@ -1,5 +1,5 @@ /* Inline math functions for s390. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/fpu/e_sqrt.c b/sysdeps/s390/fpu/e_sqrt.c index 45d16f3af3..12840301b9 100644 --- a/sysdeps/s390/fpu/e_sqrt.c +++ b/sysdeps/s390/fpu/e_sqrt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky . This file is part of the GNU C Library. diff --git a/sysdeps/s390/fpu/e_sqrtf.c b/sysdeps/s390/fpu/e_sqrtf.c index c0048eabe9..19b5ba1703 100644 --- a/sysdeps/s390/fpu/e_sqrtf.c +++ b/sysdeps/s390/fpu/e_sqrtf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky . This file is part of the GNU C Library. diff --git a/sysdeps/s390/fpu/e_sqrtl.c b/sysdeps/s390/fpu/e_sqrtl.c index 17a79f2e38..fba406ad27 100644 --- a/sysdeps/s390/fpu/e_sqrtl.c +++ b/sysdeps/s390/fpu/e_sqrtl.c @@ -1,5 +1,5 @@ /* Square root. S/390 FPU version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky . This file is part of the GNU C Library. diff --git a/sysdeps/s390/fpu/fclrexcpt.c b/sysdeps/s390/fpu/fclrexcpt.c index 4acc47eaa0..dbb8ddf970 100644 --- a/sysdeps/s390/fpu/fclrexcpt.c +++ b/sysdeps/s390/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/fpu/fedisblxcpt.c b/sysdeps/s390/fpu/fedisblxcpt.c index a052e3ed32..ddfb17c685 100644 --- a/sysdeps/s390/fpu/fedisblxcpt.c +++ b/sysdeps/s390/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/feenablxcpt.c b/sysdeps/s390/fpu/feenablxcpt.c index f017e895ec..273ccb6edb 100644 --- a/sysdeps/s390/fpu/feenablxcpt.c +++ b/sysdeps/s390/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/fegetenv.c b/sysdeps/s390/fpu/fegetenv.c index 86abca46d8..7e68ceb30b 100644 --- a/sysdeps/s390/fpu/fegetenv.c +++ b/sysdeps/s390/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/fegetexcept.c b/sysdeps/s390/fpu/fegetexcept.c index a6c1e923b0..abb76d81a7 100644 --- a/sysdeps/s390/fpu/fegetexcept.c +++ b/sysdeps/s390/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get enabled floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/fegetround.c b/sysdeps/s390/fpu/fegetround.c index 94482f6318..d3f9ab7236 100644 --- a/sysdeps/s390/fpu/fegetround.c +++ b/sysdeps/s390/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/feholdexcpt.c b/sysdeps/s390/fpu/feholdexcpt.c index 72c0c203a4..607afd13d9 100644 --- a/sysdeps/s390/fpu/feholdexcpt.c +++ b/sysdeps/s390/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/fenv_libc.h b/sysdeps/s390/fpu/fenv_libc.h index dd5724d761..f62f1bbd43 100644 --- a/sysdeps/s390/fpu/fenv_libc.h +++ b/sysdeps/s390/fpu/fenv_libc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/fesetenv.c b/sysdeps/s390/fpu/fesetenv.c index 2cf24bb33e..b0100b94b4 100644 --- a/sysdeps/s390/fpu/fesetenv.c +++ b/sysdeps/s390/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/fesetround.c b/sysdeps/s390/fpu/fesetround.c index 0a0fe09b0d..9108c03aef 100644 --- a/sysdeps/s390/fpu/fesetround.c +++ b/sysdeps/s390/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/feupdateenv.c b/sysdeps/s390/fpu/feupdateenv.c index b69c3536cc..710893a7b8 100644 --- a/sysdeps/s390/fpu/feupdateenv.c +++ b/sysdeps/s390/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/fgetexcptflg.c b/sysdeps/s390/fpu/fgetexcptflg.c index a80b137920..5730aad3dd 100644 --- a/sysdeps/s390/fpu/fgetexcptflg.c +++ b/sysdeps/s390/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/fpu_control.h b/sysdeps/s390/fpu/fpu_control.h index bbf87b0ab7..5bfd053068 100644 --- a/sysdeps/s390/fpu/fpu_control.h +++ b/sysdeps/s390/fpu/fpu_control.h @@ -1,5 +1,5 @@ /* FPU control word definitions. Stub version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com) and Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/fpu/fraiseexcpt.c b/sysdeps/s390/fpu/fraiseexcpt.c index 513bc7b51e..d99f939acb 100644 --- a/sysdeps/s390/fpu/fraiseexcpt.c +++ b/sysdeps/s390/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com) and Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/s390/fpu/fsetexcptflg.c b/sysdeps/s390/fpu/fsetexcptflg.c index 0f6ba7ed24..318d0f0bc3 100644 --- a/sysdeps/s390/fpu/fsetexcptflg.c +++ b/sysdeps/s390/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/ftestexcept.c b/sysdeps/s390/fpu/ftestexcept.c index 5415711539..6fee61a7db 100644 --- a/sysdeps/s390/fpu/ftestexcept.c +++ b/sysdeps/s390/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). diff --git a/sysdeps/s390/fpu/get-rounding-mode.h b/sysdeps/s390/fpu/get-rounding-mode.h index d1f77ec1d3..5875111d1d 100644 --- a/sysdeps/s390/fpu/get-rounding-mode.h +++ b/sysdeps/s390/fpu/get-rounding-mode.h @@ -1,5 +1,5 @@ /* Determine floating-point rounding mode within libc. S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/fpu/s_fma.c b/sysdeps/s390/fpu/s_fma.c index aa50e4e91d..e5df46a595 100644 --- a/sysdeps/s390/fpu/s_fma.c +++ b/sysdeps/s390/fpu/s_fma.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. S/390 version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2010. diff --git a/sysdeps/s390/fpu/s_fmaf.c b/sysdeps/s390/fpu/s_fmaf.c index 5485ba6b92..c984ed5907 100644 --- a/sysdeps/s390/fpu/s_fmaf.c +++ b/sysdeps/s390/fpu/s_fmaf.c @@ -1,5 +1,5 @@ /* Compute x * y + z as ternary operation. S/390 version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2010. diff --git a/sysdeps/s390/gccframe.h b/sysdeps/s390/gccframe.h index b3dd396a31..5db47af1bc 100644 --- a/sysdeps/s390/gccframe.h +++ b/sysdeps/s390/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. s390 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/gmp-mparam.h b/sysdeps/s390/gmp-mparam.h index 68b2fff7c5..2497c3f513 100644 --- a/sysdeps/s390/gmp-mparam.h +++ b/sysdeps/s390/gmp-mparam.h @@ -1,5 +1,5 @@ /* gmp-mparam.h -- Compiler/machine parameter header file. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU MP Library. diff --git a/sysdeps/s390/jmpbuf-offsets.h b/sysdeps/s390/jmpbuf-offsets.h index ec84b68335..15d82bf6db 100644 --- a/sysdeps/s390/jmpbuf-offsets.h +++ b/sysdeps/s390/jmpbuf-offsets.h @@ -1,5 +1,5 @@ /* Private macros for accessing __jmp_buf contents. S/390 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/jmpbuf-unwind.h b/sysdeps/s390/jmpbuf-unwind.h index 971b9b4d0c..a025fffc68 100644 --- a/sysdeps/s390/jmpbuf-unwind.h +++ b/sysdeps/s390/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/sysdeps/s390/ldsodefs.h b/sysdeps/s390/ldsodefs.h index c3c20d975a..5bcfdd8577 100644 --- a/sysdeps/s390/ldsodefs.h +++ b/sysdeps/s390/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/libc-tls.c b/sysdeps/s390/libc-tls.c index ad7b1902b7..98ff9bfedc 100644 --- a/sysdeps/s390/libc-tls.c +++ b/sysdeps/s390/libc-tls.c @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. S390 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/machine-gmon.h b/sysdeps/s390/machine-gmon.h index ce80f805a6..10fbb6d1bb 100644 --- a/sysdeps/s390/machine-gmon.h +++ b/sysdeps/s390/machine-gmon.h @@ -1,5 +1,5 @@ /* s390-specific implementation of profiling support. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/memusage.h b/sysdeps/s390/memusage.h index 2c37fd6957..8e0fc1c828 100644 --- a/sysdeps/s390/memusage.h +++ b/sysdeps/s390/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/__longjmp.c b/sysdeps/s390/s390-32/__longjmp.c index e4686f5dfb..5d46e21923 100644 --- a/sysdeps/s390/s390-32/__longjmp.c +++ b/sysdeps/s390/s390-32/__longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/s390/s390-32/add_n.S b/sysdeps/s390/s390-32/add_n.S index 521d045845..66847177a6 100644 --- a/sysdeps/s390/s390-32/add_n.S +++ b/sysdeps/s390/s390-32/add_n.S @@ -1,6 +1,6 @@ /* Add two limb vectors of the same length > 0 and store sum in a third limb vector. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU MP Library. diff --git a/sysdeps/s390/s390-32/addmul_1.S b/sysdeps/s390/s390-32/addmul_1.S index b1782f43c0..92ff4a3424 100644 --- a/sysdeps/s390/s390-32/addmul_1.S +++ b/sysdeps/s390/s390-32/addmul_1.S @@ -1,6 +1,6 @@ /* S390 __mpn_addmul_1 -- Multiply a limb vector with a limb and add the result to a second limb vector. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU MP Library. diff --git a/sysdeps/s390/s390-32/backtrace.c b/sysdeps/s390/s390-32/backtrace.c index 042efb4493..3ade10c85b 100644 --- a/sysdeps/s390/s390-32/backtrace.c +++ b/sysdeps/s390/s390-32/backtrace.c @@ -1,5 +1,5 @@ /* Return backtrace of current program state. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky . This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-32/bcopy.S b/sysdeps/s390/s390-32/bcopy.S index f841e825c1..d4403dc4d8 100644 --- a/sysdeps/s390/s390-32/bcopy.S +++ b/sysdeps/s390/s390-32/bcopy.S @@ -1,6 +1,6 @@ /* bcopy -- copy a block from source to destination. S/390 version. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/bzero.S b/sysdeps/s390/s390-32/bzero.S index 26143f17b4..7be59e21f3 100644 --- a/sysdeps/s390/s390-32/bzero.S +++ b/sysdeps/s390/s390-32/bzero.S @@ -1,6 +1,6 @@ /* bzero -- set a block of memory to zero. IBM S390 version This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/crti.S b/sysdeps/s390/s390-32/crti.S index ad1ac2011b..3d448308b3 100644 --- a/sysdeps/s390/s390-32/crti.S +++ b/sysdeps/s390/s390-32/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for S/390. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/crtn.S b/sysdeps/s390/s390-32/crtn.S index eb3d4e80fa..c363c919cf 100644 --- a/sysdeps/s390/s390-32/crtn.S +++ b/sysdeps/s390/s390-32/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for S/390. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/dl-machine.h b/sysdeps/s390/s390-32/dl-machine.h index aa8f1a5f14..100101ebe9 100644 --- a/sysdeps/s390/s390-32/dl-machine.h +++ b/sysdeps/s390/s390-32/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. S390 Version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Carl Pederson & Martin Schwidefsky. This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-32/dl-trampoline.S b/sysdeps/s390/s390-32/dl-trampoline.S index 1ae43cbbc5..d3a8548259 100644 --- a/sysdeps/s390/s390-32/dl-trampoline.S +++ b/sysdeps/s390/s390-32/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. s390 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/memchr.S b/sysdeps/s390/s390-32/memchr.S index d293972f5d..d11a853db8 100644 --- a/sysdeps/s390/s390-32/memchr.S +++ b/sysdeps/s390/s390-32/memchr.S @@ -1,5 +1,5 @@ /* Search a character in a block of memory. For IBM S390 - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/s390/s390-32/memcmp.S b/sysdeps/s390/s390-32/memcmp.S index edcc225728..0c85906528 100644 --- a/sysdeps/s390/s390-32/memcmp.S +++ b/sysdeps/s390/s390-32/memcmp.S @@ -1,5 +1,5 @@ /* memcmp - compare two memory blocks. 32 bit S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/memcpy.S b/sysdeps/s390/s390-32/memcpy.S index b36f6d61f0..b516a0946f 100644 --- a/sysdeps/s390/s390-32/memcpy.S +++ b/sysdeps/s390/s390-32/memcpy.S @@ -1,5 +1,5 @@ /* memcpy - copy a block from source to destination. S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/memset.S b/sysdeps/s390/s390-32/memset.S index 4bdb93c024..63481a264c 100644 --- a/sysdeps/s390/s390-32/memset.S +++ b/sysdeps/s390/s390-32/memset.S @@ -1,5 +1,5 @@ /* Set a block of memory to some byte value. For IBM S390 - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/mul_1.S b/sysdeps/s390/s390-32/mul_1.S index 2bae78ec33..c9df239973 100644 --- a/sysdeps/s390/s390-32/mul_1.S +++ b/sysdeps/s390/s390-32/mul_1.S @@ -1,6 +1,6 @@ /* __mpn_mul_1 -- Multiply a limb vector with a limb and store the result in a second limb vector. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU MP Library. diff --git a/sysdeps/s390/s390-32/multiarch/ifunc-resolve.c b/sysdeps/s390/s390-32/multiarch/ifunc-resolve.c index d57a907dff..2ccfc9c105 100644 --- a/sysdeps/s390/s390-32/multiarch/ifunc-resolve.c +++ b/sysdeps/s390/s390-32/multiarch/ifunc-resolve.c @@ -1,6 +1,6 @@ /* IFUNC resolver function for CPU specific functions. 32 bit S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/multiarch/memcmp.S b/sysdeps/s390/s390-32/multiarch/memcmp.S index d45c6f530d..f298baa2ac 100644 --- a/sysdeps/s390/s390-32/multiarch/memcmp.S +++ b/sysdeps/s390/s390-32/multiarch/memcmp.S @@ -1,5 +1,5 @@ /* CPU specific memcmp implementations. 32 bit S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/multiarch/memcpy.S b/sysdeps/s390/s390-32/multiarch/memcpy.S index 6e452e31b0..78ed7379cd 100644 --- a/sysdeps/s390/s390-32/multiarch/memcpy.S +++ b/sysdeps/s390/s390-32/multiarch/memcpy.S @@ -1,5 +1,5 @@ /* CPU specific memcpy implementations. 32 bit S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/multiarch/memset.S b/sysdeps/s390/s390-32/multiarch/memset.S index f6b8c12194..99d7df0dd2 100644 --- a/sysdeps/s390/s390-32/multiarch/memset.S +++ b/sysdeps/s390/s390-32/multiarch/memset.S @@ -1,5 +1,5 @@ /* Set a block of memory to some byte value. 32 bit S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/s390-mcount.S b/sysdeps/s390/s390-32/s390-mcount.S index ba9326082d..17668709ca 100644 --- a/sysdeps/s390/s390-32/s390-mcount.S +++ b/sysdeps/s390/s390-32/s390-mcount.S @@ -1,5 +1,5 @@ /* S/390-specific implemetation of profiling support. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com) diff --git a/sysdeps/s390/s390-32/setjmp.S b/sysdeps/s390/s390-32/setjmp.S index 3183a4410c..b8a0296b02 100644 --- a/sysdeps/s390/s390-32/setjmp.S +++ b/sysdeps/s390/s390-32/setjmp.S @@ -1,5 +1,5 @@ /* setjmp for s390, ELF version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-32/start.S b/sysdeps/s390/s390-32/start.S index 9930c83bfc..6d0f819c67 100644 --- a/sysdeps/s390/s390-32/start.S +++ b/sysdeps/s390/s390-32/start.S @@ -1,5 +1,5 @@ /* Startup code compliant to the ELF s390 ABI. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-32/strcmp.S b/sysdeps/s390/s390-32/strcmp.S index 3209ca6b9f..7a95032f4c 100644 --- a/sysdeps/s390/s390-32/strcmp.S +++ b/sysdeps/s390/s390-32/strcmp.S @@ -1,6 +1,6 @@ /* strcmp - compare two string. S/390 version. This file is part of the GNU C Library. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/strcpy.S b/sysdeps/s390/s390-32/strcpy.S index 425634b6b4..da6fa538e7 100644 --- a/sysdeps/s390/s390-32/strcpy.S +++ b/sysdeps/s390/s390-32/strcpy.S @@ -1,6 +1,6 @@ /* strcpy - copy a string from source to destination. For IBM S390 This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/strncpy.S b/sysdeps/s390/s390-32/strncpy.S index f8c5803042..5157bc783c 100644 --- a/sysdeps/s390/s390-32/strncpy.S +++ b/sysdeps/s390/s390-32/strncpy.S @@ -1,7 +1,7 @@ /* strncpy - copy at most n characters from a string from source to destination. For IBM S390 This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-32/sub_n.S b/sysdeps/s390/s390-32/sub_n.S index 039fd869c3..e0fbef7dc9 100644 --- a/sysdeps/s390/s390-32/sub_n.S +++ b/sysdeps/s390/s390-32/sub_n.S @@ -1,6 +1,6 @@ /* __mpn_sub_n -- Add two limb vectors of the same length > 0 and store sum in a third limb vector. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU MP Library. diff --git a/sysdeps/s390/s390-32/sysdep.h b/sysdeps/s390/s390-32/sysdep.h index aa438bd9d3..67a43da7b3 100644 --- a/sysdeps/s390/s390-32/sysdep.h +++ b/sysdeps/s390/s390-32/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for s390. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-32/tst-audit.h b/sysdeps/s390/s390-32/tst-audit.h index 5e6a5d8611..122984eeb6 100644 --- a/sysdeps/s390/s390-32/tst-audit.h +++ b/sysdeps/s390/s390-32/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. S/390 32-bit version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/__longjmp.c b/sysdeps/s390/s390-64/__longjmp.c index 2682406fde..168ebf562b 100644 --- a/sysdeps/s390/s390-64/__longjmp.c +++ b/sysdeps/s390/s390-64/__longjmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/s390/s390-64/add_n.S b/sysdeps/s390/s390-64/add_n.S index 6aecf6f4c8..6bbd61db9a 100644 --- a/sysdeps/s390/s390-64/add_n.S +++ b/sysdeps/s390/s390-64/add_n.S @@ -1,6 +1,6 @@ /* Add two limb vectors of the same length > 0 and store sum in a third limb vector. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU MP Library. diff --git a/sysdeps/s390/s390-64/backtrace.c b/sysdeps/s390/s390-64/backtrace.c index 60f32712a1..39a15e0f0f 100644 --- a/sysdeps/s390/s390-64/backtrace.c +++ b/sysdeps/s390/s390-64/backtrace.c @@ -1,5 +1,5 @@ /* Return backtrace of current program state. 64 bit S/390 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky . This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/bcopy.S b/sysdeps/s390/s390-64/bcopy.S index 1d8268698d..fdfbfdfb0b 100644 --- a/sysdeps/s390/s390-64/bcopy.S +++ b/sysdeps/s390/s390-64/bcopy.S @@ -1,6 +1,6 @@ /* bcopy -- copy a block from source to destination. 64 bit S/390 version. This file is part of the GNU C Library. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-64/bzero.S b/sysdeps/s390/s390-64/bzero.S index b0837aa5e9..4d0527aee9 100644 --- a/sysdeps/s390/s390-64/bzero.S +++ b/sysdeps/s390/s390-64/bzero.S @@ -1,6 +1,6 @@ /* bzero -- set a block of memory to zero. 64 bit S/390 version. This file is part of the GNU C Library. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-64/crti.S b/sysdeps/s390/s390-64/crti.S index adcc0ceccc..c13c18bbf6 100644 --- a/sysdeps/s390/s390-64/crti.S +++ b/sysdeps/s390/s390-64/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for 64 bit S/390. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/crtn.S b/sysdeps/s390/s390-64/crtn.S index c8ca5b294c..399d3ceff8 100644 --- a/sysdeps/s390/s390-64/crtn.S +++ b/sysdeps/s390/s390-64/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for 64 bit S/390. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/dl-machine.h b/sysdeps/s390/s390-64/dl-machine.h index 32f7a2cb2f..e919223c6a 100644 --- a/sysdeps/s390/s390-64/dl-machine.h +++ b/sysdeps/s390/s390-64/dl-machine.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF dynamic relocation inline functions. 64 bit S/390 Version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/dl-trampoline.S b/sysdeps/s390/s390-64/dl-trampoline.S index 29d374f868..87c6d50ced 100644 --- a/sysdeps/s390/s390-64/dl-trampoline.S +++ b/sysdeps/s390/s390-64/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. s390x version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-64/iso-8859-1_cp037_z900.c b/sysdeps/s390/s390-64/iso-8859-1_cp037_z900.c index 7839269ee1..1c0bf29ad7 100644 --- a/sysdeps/s390/s390-64/iso-8859-1_cp037_z900.c +++ b/sysdeps/s390/s390-64/iso-8859-1_cp037_z900.c @@ -2,7 +2,7 @@ This module uses the Z900 variant of the Translate One To One instruction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. Author: Andreas Krebbel Based on the work by Ulrich Drepper , 1997. diff --git a/sysdeps/s390/s390-64/memchr.S b/sysdeps/s390/s390-64/memchr.S index b7a56ea567..ebda569829 100644 --- a/sysdeps/s390/s390-64/memchr.S +++ b/sysdeps/s390/s390-64/memchr.S @@ -1,5 +1,5 @@ /* Search a character in a block of memory. 64 bit S/390 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/memcmp.S b/sysdeps/s390/s390-64/memcmp.S index ffc1cb9d69..51b247526a 100644 --- a/sysdeps/s390/s390-64/memcmp.S +++ b/sysdeps/s390/s390-64/memcmp.S @@ -1,5 +1,5 @@ /* memcmp - compare two memory blocks. 64 bit S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-64/memcpy.S b/sysdeps/s390/s390-64/memcpy.S index 2de94df320..a7e2a744a3 100644 --- a/sysdeps/s390/s390-64/memcpy.S +++ b/sysdeps/s390/s390-64/memcpy.S @@ -1,5 +1,5 @@ /* memcpy - copy a block from source to destination. 64 bit S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-64/memset.S b/sysdeps/s390/s390-64/memset.S index 232fa9a44b..791b81d433 100644 --- a/sysdeps/s390/s390-64/memset.S +++ b/sysdeps/s390/s390-64/memset.S @@ -1,5 +1,5 @@ /* Set a block of memory to some byte value. 64 bit S/390 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/multiarch/ifunc-resolve.c b/sysdeps/s390/s390-64/multiarch/ifunc-resolve.c index 14d9c13ebf..f8c69ffbb8 100644 --- a/sysdeps/s390/s390-64/multiarch/ifunc-resolve.c +++ b/sysdeps/s390/s390-64/multiarch/ifunc-resolve.c @@ -1,6 +1,6 @@ /* IFUNC resolver function for CPU specific functions. 64 bit S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-64/multiarch/memcmp.S b/sysdeps/s390/s390-64/multiarch/memcmp.S index 0c1251dc8b..c31d7c446c 100644 --- a/sysdeps/s390/s390-64/multiarch/memcmp.S +++ b/sysdeps/s390/s390-64/multiarch/memcmp.S @@ -1,5 +1,5 @@ /* CPU specific memcmp implementations. 64 bit S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-64/multiarch/memcpy.S b/sysdeps/s390/s390-64/multiarch/memcpy.S index 438611d294..6590f43f27 100644 --- a/sysdeps/s390/s390-64/multiarch/memcpy.S +++ b/sysdeps/s390/s390-64/multiarch/memcpy.S @@ -1,5 +1,5 @@ /* CPU specific memcpy implementations. 64 bit S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-64/multiarch/memset.S b/sysdeps/s390/s390-64/multiarch/memset.S index b69da16a3a..3b962696dd 100644 --- a/sysdeps/s390/s390-64/multiarch/memset.S +++ b/sysdeps/s390/s390-64/multiarch/memset.S @@ -1,5 +1,5 @@ /* Set a block of memory to some byte value. 64 bit S/390 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-64/s390x-mcount.S b/sysdeps/s390/s390-64/s390x-mcount.S index 66ec9e6f1c..a4364bd256 100644 --- a/sysdeps/s390/s390-64/s390x-mcount.S +++ b/sysdeps/s390/s390-64/s390x-mcount.S @@ -1,5 +1,5 @@ /* 64 bit S/390-specific implemetation of profiling support. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com) This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/setjmp.S b/sysdeps/s390/s390-64/setjmp.S index 6269dbf52e..5462dab277 100644 --- a/sysdeps/s390/s390-64/setjmp.S +++ b/sysdeps/s390/s390-64/setjmp.S @@ -1,5 +1,5 @@ /* setjmp for 64 bit S/390, ELF version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/start.S b/sysdeps/s390/s390-64/start.S index 56c228fd48..5dcdbc4160 100644 --- a/sysdeps/s390/s390-64/start.S +++ b/sysdeps/s390/s390-64/start.S @@ -1,5 +1,5 @@ /* Startup code compliant to the 64 bit S/390 ELF ABI. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/strcmp.S b/sysdeps/s390/s390-64/strcmp.S index cd3c539688..7e7380649e 100644 --- a/sysdeps/s390/s390-64/strcmp.S +++ b/sysdeps/s390/s390-64/strcmp.S @@ -1,6 +1,6 @@ /* strcmp - compare two string. 64 bit S/390 version. This file is part of the GNU C Library. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/s390/s390-64/strcpy.S b/sysdeps/s390/s390-64/strcpy.S index 03afe76790..72c2de2d5d 100644 --- a/sysdeps/s390/s390-64/strcpy.S +++ b/sysdeps/s390/s390-64/strcpy.S @@ -1,5 +1,5 @@ /* strcpy - copy a string from source to destination. 64 bit S/390 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/strncpy.S b/sysdeps/s390/s390-64/strncpy.S index 7db2bb1bf7..9d2dc861fe 100644 --- a/sysdeps/s390/s390-64/strncpy.S +++ b/sysdeps/s390/s390-64/strncpy.S @@ -1,6 +1,6 @@ /* strncpy - copy at most n characters from a string from source to destination. 64 bit S/390 version - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/sub_n.S b/sysdeps/s390/s390-64/sub_n.S index 9f1f6701fb..65223d0050 100644 --- a/sysdeps/s390/s390-64/sub_n.S +++ b/sysdeps/s390/s390-64/sub_n.S @@ -1,6 +1,6 @@ /* __mpn_sub_n -- Add two limb vectors of the same length > 0 and store sum in a third limb vector. 64 bit S/390 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU MP Library. diff --git a/sysdeps/s390/s390-64/sysdep.h b/sysdeps/s390/s390-64/sysdep.h index 57827f39e2..0d45ceff1e 100644 --- a/sysdeps/s390/s390-64/sysdep.h +++ b/sysdeps/s390/s390-64/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for 64 bit S/390. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/tst-audit.h b/sysdeps/s390/s390-64/tst-audit.h index 417105d3ab..05edc7d5b7 100644 --- a/sysdeps/s390/s390-64/tst-audit.h +++ b/sysdeps/s390/s390-64/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. S/390 64-bit version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/s390/s390-64/utf16-utf32-z9.c b/sysdeps/s390/s390-64/utf16-utf32-z9.c index 0df436b03a..f7d9e07957 100644 --- a/sysdeps/s390/s390-64/utf16-utf32-z9.c +++ b/sysdeps/s390/s390-64/utf16-utf32-z9.c @@ -2,7 +2,7 @@ This module uses the Z9-109 variants of the Convert Unicode instructions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. Author: Andreas Krebbel Based on the work by Ulrich Drepper , 1997. diff --git a/sysdeps/s390/s390-64/utf8-utf16-z9.c b/sysdeps/s390/s390-64/utf8-utf16-z9.c index 1f959d9234..863677455c 100644 --- a/sysdeps/s390/s390-64/utf8-utf16-z9.c +++ b/sysdeps/s390/s390-64/utf8-utf16-z9.c @@ -2,7 +2,7 @@ This module uses the Z9-109 variants of the Convert Unicode instructions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. Author: Andreas Krebbel Based on the work by Ulrich Drepper , 1997. diff --git a/sysdeps/s390/s390-64/utf8-utf32-z9.c b/sysdeps/s390/s390-64/utf8-utf32-z9.c index 462d1c5696..5120837037 100644 --- a/sysdeps/s390/s390-64/utf8-utf32-z9.c +++ b/sysdeps/s390/s390-64/utf8-utf32-z9.c @@ -2,7 +2,7 @@ This module uses the Z9-109 variants of the Convert Unicode instructions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. Author: Andreas Krebbel Based on the work by Ulrich Drepper , 1997. diff --git a/sysdeps/s390/stackinfo.h b/sysdeps/s390/stackinfo.h index 83a92cf4ab..7e10f2825c 100644 --- a/sysdeps/s390/stackinfo.h +++ b/sysdeps/s390/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/____longjmp_chk.S b/sysdeps/sh/____longjmp_chk.S index dc377ddc0b..788ae80ef2 100644 --- a/sysdeps/sh/____longjmp_chk.S +++ b/sysdeps/sh/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/_mcount.S b/sysdeps/sh/_mcount.S index 5ce69ede03..6da92420d8 100644 --- a/sysdeps/sh/_mcount.S +++ b/sysdeps/sh/_mcount.S @@ -1,5 +1,5 @@ /* Machine-specific calling sequence for `mcount' profiling function. SuperH - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by NIIBE Yutaka This file is part of the GNU C Library. diff --git a/sysdeps/sh/bits/fenv.h b/sysdeps/sh/bits/fenv.h index 3171ab6977..e386dd482d 100644 --- a/sysdeps/sh/bits/fenv.h +++ b/sysdeps/sh/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/bits/huge_val.h b/sysdeps/sh/bits/huge_val.h index 24c2693df7..63684f4c11 100644 --- a/sysdeps/sh/bits/huge_val.h +++ b/sysdeps/sh/bits/huge_val.h @@ -1,7 +1,7 @@ /* `HUGE_VAL' constants for IEEE 754 machines (where it is infinity). Used by and functions for overflow. SH version. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/bits/link.h b/sysdeps/sh/bits/link.h index fed635e538..bc4d9a344b 100644 --- a/sysdeps/sh/bits/link.h +++ b/sysdeps/sh/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/bits/setjmp.h b/sysdeps/sh/bits/setjmp.h index a63f8f600e..9881b4571e 100644 --- a/sysdeps/sh/bits/setjmp.h +++ b/sysdeps/sh/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/bsd-_setjmp.S b/sysdeps/sh/bsd-_setjmp.S index 6a39ed777a..a5e104c8ef 100644 --- a/sysdeps/sh/bsd-_setjmp.S +++ b/sysdeps/sh/bsd-_setjmp.S @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. SH version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/bsd-setjmp.S b/sysdeps/sh/bsd-setjmp.S index c396cccc49..df60d30f5a 100644 --- a/sysdeps/sh/bsd-setjmp.S +++ b/sysdeps/sh/bsd-setjmp.S @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. SH version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/crti.S b/sysdeps/sh/crti.S index 7a929ddc31..8c48a43292 100644 --- a/sysdeps/sh/crti.S +++ b/sysdeps/sh/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for SH. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/crtn.S b/sysdeps/sh/crtn.S index e67b1511c6..6744e34d8c 100644 --- a/sysdeps/sh/crtn.S +++ b/sysdeps/sh/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for SH. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/dl-machine.h b/sysdeps/sh/dl-machine.h index da7b9c1a06..5e5fd6cc79 100644 --- a/sysdeps/sh/dl-machine.h +++ b/sysdeps/sh/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. SH version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/dl-tls.h b/sysdeps/sh/dl-tls.h index ce114b025e..8de96ecd1b 100644 --- a/sysdeps/sh/dl-tls.h +++ b/sysdeps/sh/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. SH version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/dl-trampoline.S b/sysdeps/sh/dl-trampoline.S index c0d2fbaf6b..9401710d9a 100644 --- a/sysdeps/sh/dl-trampoline.S +++ b/sysdeps/sh/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. SH version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/gccframe.h b/sysdeps/sh/gccframe.h index 1bc3abfe39..81fce29309 100644 --- a/sysdeps/sh/gccframe.h +++ b/sysdeps/sh/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. sh version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/gmp-mparam.h b/sysdeps/sh/gmp-mparam.h index b0628642af..cdc160593c 100644 --- a/sysdeps/sh/gmp-mparam.h +++ b/sysdeps/sh/gmp-mparam.h @@ -1,6 +1,6 @@ /* gmp-mparam.h -- Compiler/machine parameter header file. -Copyright (C) 1991-2013 Free Software Foundation, Inc. +Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/sysdeps/sh/jmpbuf-offsets.h b/sysdeps/sh/jmpbuf-offsets.h index b77589bdbe..71870ac9e6 100644 --- a/sysdeps/sh/jmpbuf-offsets.h +++ b/sysdeps/sh/jmpbuf-offsets.h @@ -1,5 +1,5 @@ /* Private macros for accessing __jmp_buf contents. SH version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/jmpbuf-unwind.h b/sysdeps/sh/jmpbuf-unwind.h index aff84f1364..99adec3950 100644 --- a/sysdeps/sh/jmpbuf-unwind.h +++ b/sysdeps/sh/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/sysdeps/sh/ldsodefs.h b/sysdeps/sh/ldsodefs.h index 85533ed44c..fee6650558 100644 --- a/sysdeps/sh/ldsodefs.h +++ b/sysdeps/sh/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/libc-tls.c b/sysdeps/sh/libc-tls.c index 7150b25107..254b346cf0 100644 --- a/sysdeps/sh/libc-tls.c +++ b/sysdeps/sh/libc-tls.c @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. SH version. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/machine-gmon.h b/sysdeps/sh/machine-gmon.h index f54b19f4de..614d4a2012 100644 --- a/sysdeps/sh/machine-gmon.h +++ b/sysdeps/sh/machine-gmon.h @@ -1,5 +1,5 @@ /* Machine-dependent definitions for profiling support. SH version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/memcpy.S b/sysdeps/sh/memcpy.S index 45d2d286cb..4d29841232 100644 --- a/sysdeps/sh/memcpy.S +++ b/sysdeps/sh/memcpy.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kazumoto Kojima Optimized by Toshiyasu Morita diff --git a/sysdeps/sh/memset.S b/sysdeps/sh/memset.S index e61238c2bf..ff6c94588b 100644 --- a/sysdeps/sh/memset.S +++ b/sysdeps/sh/memset.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kazumoto Kojima Optimized by Toshiyasu Morita diff --git a/sysdeps/sh/memusage.h b/sysdeps/sh/memusage.h index 0280b13370..4478bc7ff5 100644 --- a/sysdeps/sh/memusage.h +++ b/sysdeps/sh/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh3/__longjmp.S b/sysdeps/sh/sh3/__longjmp.S index 98c1ed5142..0ed0bda756 100644 --- a/sysdeps/sh/sh3/__longjmp.S +++ b/sysdeps/sh/sh3/__longjmp.S @@ -1,5 +1,5 @@ /* longjmp for SH. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh3/setjmp.S b/sysdeps/sh/sh3/setjmp.S index 13745fd7ed..e123e4288b 100644 --- a/sysdeps/sh/sh3/setjmp.S +++ b/sysdeps/sh/sh3/setjmp.S @@ -1,5 +1,5 @@ /* setjmp for SH3. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh4/__longjmp.S b/sysdeps/sh/sh4/__longjmp.S index d2e193764b..6900d6fb25 100644 --- a/sysdeps/sh/sh4/__longjmp.S +++ b/sysdeps/sh/sh4/__longjmp.S @@ -1,5 +1,5 @@ /* longjmp for SH. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh4/bits/mathdef.h b/sysdeps/sh/sh4/bits/mathdef.h index 1ed8154137..1c60bde889 100644 --- a/sysdeps/sh/sh4/bits/mathdef.h +++ b/sysdeps/sh/sh4/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh4/fpu/fclrexcpt.c b/sysdeps/sh/sh4/fpu/fclrexcpt.c index 8525bcd238..f3bce6d21d 100644 --- a/sysdeps/sh/sh4/fpu/fclrexcpt.c +++ b/sysdeps/sh/sh4/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/sysdeps/sh/sh4/fpu/fedisblxcpt.c b/sysdeps/sh/sh4/fpu/fedisblxcpt.c index 8e458f5d23..3eccf94e87 100644 --- a/sysdeps/sh/sh4/fpu/fedisblxcpt.c +++ b/sysdeps/sh/sh4/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Nobuhiro Iwamatsu , 2012. diff --git a/sysdeps/sh/sh4/fpu/feenablxcpt.c b/sysdeps/sh/sh4/fpu/feenablxcpt.c index 3c90f3677e..cd248d7e3b 100644 --- a/sysdeps/sh/sh4/fpu/feenablxcpt.c +++ b/sysdeps/sh/sh4/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Nobuhiro Iwamatsu , 2012. diff --git a/sysdeps/sh/sh4/fpu/fegetenv.c b/sysdeps/sh/sh4/fpu/fegetenv.c index 358f74eba4..2dc26967f0 100644 --- a/sysdeps/sh/sh4/fpu/fegetenv.c +++ b/sysdeps/sh/sh4/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh4/fpu/fegetexcept.c b/sysdeps/sh/sh4/fpu/fegetexcept.c index 568003da6f..b2ea919026 100644 --- a/sysdeps/sh/sh4/fpu/fegetexcept.c +++ b/sysdeps/sh/sh4/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get enabled floating-point exceptions. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Nobuhiro Iwamatsu , 2012. diff --git a/sysdeps/sh/sh4/fpu/fegetround.c b/sysdeps/sh/sh4/fpu/fegetround.c index 0523321b2d..1aaca4d1ba 100644 --- a/sysdeps/sh/sh4/fpu/fegetround.c +++ b/sysdeps/sh/sh4/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/sysdeps/sh/sh4/fpu/feholdexcpt.c b/sysdeps/sh/sh4/fpu/feholdexcpt.c index b111d76b96..e418e7867c 100644 --- a/sysdeps/sh/sh4/fpu/feholdexcpt.c +++ b/sysdeps/sh/sh4/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh4/fpu/fesetenv.c b/sysdeps/sh/sh4/fpu/fesetenv.c index 5eba73921c..8b1a79c101 100644 --- a/sysdeps/sh/sh4/fpu/fesetenv.c +++ b/sysdeps/sh/sh4/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh4/fpu/fesetround.c b/sysdeps/sh/sh4/fpu/fesetround.c index 2d98a316ee..890aa0e387 100644 --- a/sysdeps/sh/sh4/fpu/fesetround.c +++ b/sysdeps/sh/sh4/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/sysdeps/sh/sh4/fpu/feupdateenv.c b/sysdeps/sh/sh4/fpu/feupdateenv.c index 8044df53f0..f06d80a883 100644 --- a/sysdeps/sh/sh4/fpu/feupdateenv.c +++ b/sysdeps/sh/sh4/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Nobuhiro Iwamatsu , 2012. diff --git a/sysdeps/sh/sh4/fpu/fgetexcptflg.c b/sysdeps/sh/sh4/fpu/fgetexcptflg.c index 6a2a0c0e67..9d004b23de 100644 --- a/sysdeps/sh/sh4/fpu/fgetexcptflg.c +++ b/sysdeps/sh/sh4/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh4/fpu/fpu_control.h b/sysdeps/sh/sh4/fpu/fpu_control.h index 684a768a88..ab1e97b17b 100644 --- a/sysdeps/sh/sh4/fpu/fpu_control.h +++ b/sysdeps/sh/sh4/fpu/fpu_control.h @@ -1,5 +1,5 @@ /* FPU control word definitions. SH version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh4/fpu/fraiseexcpt.c b/sysdeps/sh/sh4/fpu/fraiseexcpt.c index 9c3ea7c464..944da33a8c 100644 --- a/sysdeps/sh/sh4/fpu/fraiseexcpt.c +++ b/sysdeps/sh/sh4/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Nobuhiro Iwamatsu , 2012. diff --git a/sysdeps/sh/sh4/fpu/fsetexcptflg.c b/sysdeps/sh/sh4/fpu/fsetexcptflg.c index 7a408bb70e..0f2fc69d1c 100644 --- a/sysdeps/sh/sh4/fpu/fsetexcptflg.c +++ b/sysdeps/sh/sh4/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh4/fpu/ftestexcept.c b/sysdeps/sh/sh4/fpu/ftestexcept.c index bcc0140864..9a99aad2ff 100644 --- a/sysdeps/sh/sh4/fpu/ftestexcept.c +++ b/sysdeps/sh/sh4/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sh4/setjmp.S b/sysdeps/sh/sh4/setjmp.S index 6cfca1d522..d5ac02e3bd 100644 --- a/sysdeps/sh/sh4/setjmp.S +++ b/sysdeps/sh/sh4/setjmp.S @@ -1,5 +1,5 @@ /* setjmp for SH4. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sotruss-lib.c b/sysdeps/sh/sotruss-lib.c index 4d7533e825..a33a32dd06 100644 --- a/sysdeps/sh/sotruss-lib.c +++ b/sysdeps/sh/sotruss-lib.c @@ -1,5 +1,5 @@ /* Override generic sotruss-lib.c to define actual functions for SH. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/sh/stackinfo.h b/sysdeps/sh/stackinfo.h index 2dca373ca6..71e60f4ea1 100644 --- a/sysdeps/sh/stackinfo.h +++ b/sysdeps/sh/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/start.S b/sysdeps/sh/start.S index d7c2c1c9aa..2c88da82a1 100644 --- a/sysdeps/sh/start.S +++ b/sysdeps/sh/start.S @@ -1,5 +1,5 @@ /* Startup code for SH & ELF. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/strlen.S b/sysdeps/sh/strlen.S index 97ef06c50d..ffc47abca5 100644 --- a/sysdeps/sh/strlen.S +++ b/sysdeps/sh/strlen.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Kazumoto Kojima diff --git a/sysdeps/sh/sys/ucontext.h b/sysdeps/sh/sys/ucontext.h index f7746d1621..2e072c0b60 100644 --- a/sysdeps/sh/sys/ucontext.h +++ b/sysdeps/sh/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/sysdep.h b/sysdeps/sh/sysdep.h index c437aaf771..df62d0db98 100644 --- a/sysdeps/sh/sysdep.h +++ b/sysdeps/sh/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for SH. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sh/tst-audit.h b/sysdeps/sh/tst-audit.h index 254733dab3..15da2768fb 100644 --- a/sysdeps/sh/tst-audit.h +++ b/sysdeps/sh/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. SH version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/sparc/backtrace.c b/sysdeps/sparc/backtrace.c index 48f3cf6c13..b6eed2cd3d 100644 --- a/sysdeps/sparc/backtrace.c +++ b/sysdeps/sparc/backtrace.c @@ -1,5 +1,5 @@ /* Return backtrace of current program state. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller diff --git a/sysdeps/sparc/bits/huge_vall.h b/sysdeps/sparc/bits/huge_vall.h index 17b8fcd08a..f3e54c5290 100644 --- a/sysdeps/sparc/bits/huge_vall.h +++ b/sysdeps/sparc/bits/huge_vall.h @@ -1,6 +1,6 @@ /* `HUGE_VALL' constant for IEEE 754 machines (where it is infinity). Used by and functions for overflow. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/bits/hwcap.h b/sysdeps/sparc/bits/hwcap.h index c77cb9893b..cf7c3db6c0 100644 --- a/sysdeps/sparc/bits/hwcap.h +++ b/sysdeps/sparc/bits/hwcap.h @@ -1,5 +1,5 @@ /* Defines for bits in AT_HWCAP. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/bits/link.h b/sysdeps/sparc/bits/link.h index ffca19df8f..0464a5a4e2 100644 --- a/sysdeps/sparc/bits/link.h +++ b/sysdeps/sparc/bits/link.h @@ -1,5 +1,5 @@ /* Machine-specific audit interfaces for dynamic linker. SPARC version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/bits/mathdef.h b/sysdeps/sparc/bits/mathdef.h index 2c54336d48..6542207ae6 100644 --- a/sysdeps/sparc/bits/mathdef.h +++ b/sysdeps/sparc/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/bits/string.h b/sysdeps/sparc/bits/string.h index cdf418816a..94572e82cf 100644 --- a/sysdeps/sparc/bits/string.h +++ b/sysdeps/sparc/bits/string.h @@ -1,5 +1,5 @@ /* Optimized, inlined string functions. SPARC version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/crti.S b/sysdeps/sparc/crti.S index 0449371102..642740cedf 100644 --- a/sysdeps/sparc/crti.S +++ b/sysdeps/sparc/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for sparc. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/crtn.S b/sysdeps/sparc/crtn.S index c02ea035a0..14feeb4a7b 100644 --- a/sysdeps/sparc/crtn.S +++ b/sysdeps/sparc/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for sparc. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/dl-dtprocnum.h b/sysdeps/sparc/dl-dtprocnum.h index f253d4beaa..21f70f031e 100644 --- a/sysdeps/sparc/dl-dtprocnum.h +++ b/sysdeps/sparc/dl-dtprocnum.h @@ -1,5 +1,5 @@ /* Configuration of lookup functions. SPARC version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/dl-procinfo.c b/sysdeps/sparc/dl-procinfo.c index a70bb42ece..4c563356b8 100644 --- a/sysdeps/sparc/dl-procinfo.c +++ b/sysdeps/sparc/dl-procinfo.c @@ -1,5 +1,5 @@ /* Data for Linux/sparc version of processor capability information. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2002. diff --git a/sysdeps/sparc/dl-procinfo.h b/sysdeps/sparc/dl-procinfo.h index 71b279acdd..cd8f6378ef 100644 --- a/sysdeps/sparc/dl-procinfo.h +++ b/sysdeps/sparc/dl-procinfo.h @@ -1,5 +1,5 @@ /* Linux/sparc version of processor capability information handling macros. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 1999. diff --git a/sysdeps/sparc/dl-sysdep.h b/sysdeps/sparc/dl-sysdep.h index 051ced2b39..4a9fcbb02f 100644 --- a/sysdeps/sparc/dl-sysdep.h +++ b/sysdeps/sparc/dl-sysdep.h @@ -1,5 +1,5 @@ /* System-specific settings for dynamic linker code. SPARC version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/dl-tls.h b/sysdeps/sparc/dl-tls.h index 09d146177a..89df1a5c53 100644 --- a/sysdeps/sparc/dl-tls.h +++ b/sysdeps/sparc/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. SPARC version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/bits/fenv.h b/sysdeps/sparc/fpu/bits/fenv.h index 5ca1ece25b..6bc56a6c24 100644 --- a/sysdeps/sparc/fpu/bits/fenv.h +++ b/sysdeps/sparc/fpu/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/bits/mathinline.h b/sysdeps/sparc/fpu/bits/mathinline.h index 698ddaf5f7..64cba95d4a 100644 --- a/sysdeps/sparc/fpu/bits/mathinline.h +++ b/sysdeps/sparc/fpu/bits/mathinline.h @@ -1,5 +1,5 @@ /* Inline math functions for SPARC. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/sysdeps/sparc/fpu/fclrexcpt.c b/sysdeps/sparc/fpu/fclrexcpt.c index 684ea00b46..2676aaa790 100644 --- a/sysdeps/sparc/fpu/fclrexcpt.c +++ b/sysdeps/sparc/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/fedisblxcpt.c b/sysdeps/sparc/fpu/fedisblxcpt.c index e3f94008ce..7650fa2dc7 100644 --- a/sysdeps/sparc/fpu/fedisblxcpt.c +++ b/sysdeps/sparc/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2000. diff --git a/sysdeps/sparc/fpu/feenablxcpt.c b/sysdeps/sparc/fpu/feenablxcpt.c index 94c2740eff..2361ab1610 100644 --- a/sysdeps/sparc/fpu/feenablxcpt.c +++ b/sysdeps/sparc/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2000. diff --git a/sysdeps/sparc/fpu/fegetenv.c b/sysdeps/sparc/fpu/fegetenv.c index 631b5be075..55600d5bec 100644 --- a/sysdeps/sparc/fpu/fegetenv.c +++ b/sysdeps/sparc/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/fegetexcept.c b/sysdeps/sparc/fpu/fegetexcept.c index 0e1e660b6a..fa83c2b31f 100644 --- a/sysdeps/sparc/fpu/fegetexcept.c +++ b/sysdeps/sparc/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get enabled floating-point exceptions. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2000. diff --git a/sysdeps/sparc/fpu/fegetround.c b/sysdeps/sparc/fpu/fegetround.c index c2d5f5af03..654a347011 100644 --- a/sysdeps/sparc/fpu/fegetround.c +++ b/sysdeps/sparc/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/feholdexcpt.c b/sysdeps/sparc/fpu/feholdexcpt.c index fb811732f1..fd8573ffea 100644 --- a/sysdeps/sparc/fpu/feholdexcpt.c +++ b/sysdeps/sparc/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/fesetenv.c b/sysdeps/sparc/fpu/fesetenv.c index 6ad1459ca2..1424d58332 100644 --- a/sysdeps/sparc/fpu/fesetenv.c +++ b/sysdeps/sparc/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/fesetround.c b/sysdeps/sparc/fpu/fesetround.c index e11b1d67a8..da63b80873 100644 --- a/sysdeps/sparc/fpu/fesetround.c +++ b/sysdeps/sparc/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/feupdateenv.c b/sysdeps/sparc/fpu/feupdateenv.c index a47d0bfea1..79cb1db9fe 100644 --- a/sysdeps/sparc/fpu/feupdateenv.c +++ b/sysdeps/sparc/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/fgetexcptflg.c b/sysdeps/sparc/fpu/fgetexcptflg.c index 30fc76a2e7..21eda916a6 100644 --- a/sysdeps/sparc/fpu/fgetexcptflg.c +++ b/sysdeps/sparc/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/fpu_control.h b/sysdeps/sparc/fpu/fpu_control.h index a2bfec8ff9..293adbdcd8 100644 --- a/sysdeps/sparc/fpu/fpu_control.h +++ b/sysdeps/sparc/fpu/fpu_control.h @@ -1,5 +1,5 @@ /* FPU control word bits. SPARC version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza diff --git a/sysdeps/sparc/fpu/fraiseexcpt.c b/sysdeps/sparc/fpu/fraiseexcpt.c index 050e105d8c..e1c63dd895 100644 --- a/sysdeps/sparc/fpu/fraiseexcpt.c +++ b/sysdeps/sparc/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/fsetexcptflg.c b/sysdeps/sparc/fpu/fsetexcptflg.c index 090e890e03..917e089814 100644 --- a/sysdeps/sparc/fpu/fsetexcptflg.c +++ b/sysdeps/sparc/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/fpu/ftestexcept.c b/sysdeps/sparc/fpu/ftestexcept.c index 59fea44cb6..3bccaf71e7 100644 --- a/sysdeps/sparc/fpu/ftestexcept.c +++ b/sysdeps/sparc/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/gccframe.h b/sysdeps/sparc/gccframe.h index e7b40e3b74..9050e12d8e 100644 --- a/sysdeps/sparc/gccframe.h +++ b/sysdeps/sparc/gccframe.h @@ -1,5 +1,5 @@ /* Definition of object in frame unwind info. sparc version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/ldsodefs.h b/sysdeps/sparc/ldsodefs.h index bcee8c0a17..ef8613a8fd 100644 --- a/sysdeps/sparc/ldsodefs.h +++ b/sysdeps/sparc/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/machine-gmon.h b/sysdeps/sparc/machine-gmon.h index 3b06c7379f..7d60653c25 100644 --- a/sysdeps/sparc/machine-gmon.h +++ b/sysdeps/sparc/machine-gmon.h @@ -1,5 +1,5 @@ /* sparc-specific implementation of profiling support. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2008 diff --git a/sysdeps/sparc/memusage.h b/sysdeps/sparc/memusage.h index e3a86279d7..01fc5c6c0a 100644 --- a/sysdeps/sparc/memusage.h +++ b/sysdeps/sparc/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc-ifunc.h b/sysdeps/sparc/sparc-ifunc.h index f68161fc5f..39bfba9bed 100644 --- a/sysdeps/sparc/sparc-ifunc.h +++ b/sysdeps/sparc/sparc-ifunc.h @@ -1,5 +1,5 @@ /* This file is part of the GNU C Library. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/sysdeps/sparc/sparc-mcount.S b/sysdeps/sparc/sparc-mcount.S index da71556179..2781623c26 100644 --- a/sysdeps/sparc/sparc-mcount.S +++ b/sysdeps/sparc/sparc-mcount.S @@ -1,5 +1,5 @@ /* sparc-specific implemetation of profiling support. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2008. diff --git a/sysdeps/sparc/sparc32/Makefile b/sysdeps/sparc/sparc32/Makefile index a959b30925..59edf2b616 100644 --- a/sysdeps/sparc/sparc32/Makefile +++ b/sysdeps/sparc/sparc32/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/__longjmp.S b/sysdeps/sparc/sparc32/__longjmp.S index 82bf6a22ca..c8d6328063 100644 --- a/sysdeps/sparc/sparc32/__longjmp.S +++ b/sysdeps/sparc/sparc32/__longjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/add_n.S b/sysdeps/sparc/sparc32/add_n.S index 5a2c2c8325..63291cc301 100644 --- a/sysdeps/sparc/sparc32/add_n.S +++ b/sysdeps/sparc/sparc32/add_n.S @@ -1,7 +1,7 @@ ! SPARC __mpn_add_n -- Add two limb vectors of the same length > 0 and store ! sum in a third limb vector. ! -! Copyright (C) 1995-2013 Free Software Foundation, Inc. +! Copyright (C) 1995-2014 Free Software Foundation, Inc. ! ! This file is part of the GNU MP Library. ! diff --git a/sysdeps/sparc/sparc32/addmul_1.S b/sysdeps/sparc/sparc32/addmul_1.S index ac932b8c90..66630efb6b 100644 --- a/sysdeps/sparc/sparc32/addmul_1.S +++ b/sysdeps/sparc/sparc32/addmul_1.S @@ -1,7 +1,7 @@ ! SPARC __mpn_addmul_1 -- Multiply a limb vector with a limb and add ! the result to a second limb vector. ! -! Copyright (C) 1992-2013 Free Software Foundation, Inc. +! Copyright (C) 1992-2014 Free Software Foundation, Inc. ! ! This file is part of the GNU MP Library. ! diff --git a/sysdeps/sparc/sparc32/alloca.S b/sysdeps/sparc/sparc32/alloca.S index 051edc7379..2536d97422 100644 --- a/sysdeps/sparc/sparc32/alloca.S +++ b/sysdeps/sparc/sparc32/alloca.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/bits/atomic.h b/sysdeps/sparc/sparc32/bits/atomic.h index 128d08cfed..39c2b37655 100644 --- a/sysdeps/sparc/sparc32/bits/atomic.h +++ b/sysdeps/sparc/sparc32/bits/atomic.h @@ -1,5 +1,5 @@ /* Atomic operations. sparc32 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/sysdeps/sparc/sparc32/bits/setjmp.h b/sysdeps/sparc/sparc32/bits/setjmp.h index b45a93fa0b..1608199f3a 100644 --- a/sysdeps/sparc/sparc32/bits/setjmp.h +++ b/sysdeps/sparc/sparc32/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/dl-irel.h b/sysdeps/sparc/sparc32/dl-irel.h index 4b2b6a6a24..03441ec4a5 100644 --- a/sysdeps/sparc/sparc32/dl-irel.h +++ b/sysdeps/sparc/sparc32/dl-irel.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF indirect relocation inline functions. SPARC 32-bit version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/dl-machine.h b/sysdeps/sparc/sparc32/dl-machine.h index 30f9246785..91b125dd7a 100644 --- a/sysdeps/sparc/sparc32/dl-machine.h +++ b/sysdeps/sparc/sparc32/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. SPARC version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/dl-plt.h b/sysdeps/sparc/sparc32/dl-plt.h index deb809e786..4466f41382 100644 --- a/sysdeps/sparc/sparc32/dl-plt.h +++ b/sysdeps/sparc/sparc32/dl-plt.h @@ -1,5 +1,5 @@ /* PLT fixups. Sparc 32-bit version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/dl-trampoline.S b/sysdeps/sparc/sparc32/dl-trampoline.S index 2599cd7ca4..2aa2bf1c83 100644 --- a/sysdeps/sparc/sparc32/dl-trampoline.S +++ b/sysdeps/sparc/sparc32/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. Sparc 32-bit version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/e_sqrt.c b/sysdeps/sparc/sparc32/e_sqrt.c index f040817627..c13f6fd9e5 100644 --- a/sysdeps/sparc/sparc32/e_sqrt.c +++ b/sysdeps/sparc/sparc32/e_sqrt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/fpu/s_copysign.S b/sysdeps/sparc/sparc32/fpu/s_copysign.S index 9fc8230ba1..e371bdd770 100644 --- a/sysdeps/sparc/sparc32/fpu/s_copysign.S +++ b/sysdeps/sparc/sparc32/fpu/s_copysign.S @@ -1,5 +1,5 @@ /* copysign function, sparc32 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/fpu/s_copysignf.S b/sysdeps/sparc/sparc32/fpu/s_copysignf.S index 701c6fe502..dbf7897b53 100644 --- a/sysdeps/sparc/sparc32/fpu/s_copysignf.S +++ b/sysdeps/sparc/sparc32/fpu/s_copysignf.S @@ -1,5 +1,5 @@ /* float copysign function, sparc32 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/fpu/s_fabs.S b/sysdeps/sparc/sparc32/fpu/s_fabs.S index 1ed9232ae3..28331120f6 100644 --- a/sysdeps/sparc/sparc32/fpu/s_fabs.S +++ b/sysdeps/sparc/sparc32/fpu/s_fabs.S @@ -1,5 +1,5 @@ /* Float absolute value, sparc32 version. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/fpu/s_fabsf.S b/sysdeps/sparc/sparc32/fpu/s_fabsf.S index 653cb95cfd..a8b6fcff27 100644 --- a/sysdeps/sparc/sparc32/fpu/s_fabsf.S +++ b/sysdeps/sparc/sparc32/fpu/s_fabsf.S @@ -1,5 +1,5 @@ /* Float absolute value, sparc32 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/sysdeps/sparc/sparc32/fpu/s_fdim.S b/sysdeps/sparc/sparc32/fpu/s_fdim.S index 22f69ce519..04a410ea61 100644 --- a/sysdeps/sparc/sparc32/fpu/s_fdim.S +++ b/sysdeps/sparc/sparc32/fpu/s_fdim.S @@ -1,5 +1,5 @@ /* Compute positive difference, sparc 32-bit. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller . diff --git a/sysdeps/sparc/sparc32/fpu/s_fdimf.S b/sysdeps/sparc/sparc32/fpu/s_fdimf.S index 570fdc30be..a29ed84bae 100644 --- a/sysdeps/sparc/sparc32/fpu/s_fdimf.S +++ b/sysdeps/sparc/sparc32/fpu/s_fdimf.S @@ -1,5 +1,5 @@ /* Compute positive difference, sparc 32-bit. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller . diff --git a/sysdeps/sparc/sparc32/fpu/s_signbit.S b/sysdeps/sparc/sparc32/fpu/s_signbit.S index 10b5231487..94403c0c94 100644 --- a/sysdeps/sparc/sparc32/fpu/s_signbit.S +++ b/sysdeps/sparc/sparc32/fpu/s_signbit.S @@ -1,5 +1,5 @@ /* signbit(). sparc32 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/fpu/s_signbitl.S b/sysdeps/sparc/sparc32/fpu/s_signbitl.S index d79f7efe0e..64813f1913 100644 --- a/sysdeps/sparc/sparc32/fpu/s_signbitl.S +++ b/sysdeps/sparc/sparc32/fpu/s_signbitl.S @@ -1,5 +1,5 @@ /* signbitl(). sparc32 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/fpu/w_sqrt.S b/sysdeps/sparc/sparc32/fpu/w_sqrt.S index 867cdd8e08..786308a57b 100644 --- a/sysdeps/sparc/sparc32/fpu/w_sqrt.S +++ b/sysdeps/sparc/sparc32/fpu/w_sqrt.S @@ -1,5 +1,5 @@ /* sqrt function. sparc32 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/fpu/w_sqrtf.S b/sysdeps/sparc/sparc32/fpu/w_sqrtf.S index 07d045ebad..e8930a55c5 100644 --- a/sysdeps/sparc/sparc32/fpu/w_sqrtf.S +++ b/sysdeps/sparc/sparc32/fpu/w_sqrtf.S @@ -1,5 +1,5 @@ /* sqrtf function. sparc32 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/ieee754.h b/sysdeps/sparc/sparc32/ieee754.h index 2324f0b300..d77b83592f 100644 --- a/sysdeps/sparc/sparc32/ieee754.h +++ b/sysdeps/sparc/sparc32/ieee754.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/jmpbuf-offsets.h b/sysdeps/sparc/sparc32/jmpbuf-offsets.h index ae26edf39b..14c45551c7 100644 --- a/sysdeps/sparc/sparc32/jmpbuf-offsets.h +++ b/sysdeps/sparc/sparc32/jmpbuf-offsets.h @@ -1,5 +1,5 @@ /* Private macros for accessing __jmp_buf contents. SPARC version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/jmpbuf-unwind.h b/sysdeps/sparc/sparc32/jmpbuf-unwind.h index 493de59353..3ec444a62f 100644 --- a/sysdeps/sparc/sparc32/jmpbuf-unwind.h +++ b/sysdeps/sparc/sparc32/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/sysdeps/sparc/sparc32/lshift.S b/sysdeps/sparc/sparc32/lshift.S index 9ed4a3ef6f..be319b1a17 100644 --- a/sysdeps/sparc/sparc32/lshift.S +++ b/sysdeps/sparc/sparc32/lshift.S @@ -1,6 +1,6 @@ ! Sparc __mpn_lshift -- ! -! Copyright (C) 1995-2013 Free Software Foundation, Inc. +! Copyright (C) 1995-2014 Free Software Foundation, Inc. ! ! This file is part of the GNU MP Library. ! diff --git a/sysdeps/sparc/sparc32/memchr.S b/sysdeps/sparc/sparc32/memchr.S index 7ea7825381..088e538d77 100644 --- a/sysdeps/sparc/sparc32/memchr.S +++ b/sysdeps/sparc/sparc32/memchr.S @@ -1,7 +1,7 @@ /* memchr (str, ch, n) -- Return pointer to first occurrence of CH in STR less than N. For SPARC v7. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek and David S. Miller . diff --git a/sysdeps/sparc/sparc32/memcpy.S b/sysdeps/sparc/sparc32/memcpy.S index d8fbd2e185..643add8900 100644 --- a/sysdeps/sparc/sparc32/memcpy.S +++ b/sysdeps/sparc/sparc32/memcpy.S @@ -1,6 +1,6 @@ /* Copy SIZE bytes from SRC to DEST. For SPARC v7. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , Eddie C. Dost and diff --git a/sysdeps/sparc/sparc32/memset.S b/sysdeps/sparc/sparc32/memset.S index 7ceb0c657b..9120a1c657 100644 --- a/sysdeps/sparc/sparc32/memset.S +++ b/sysdeps/sparc/sparc32/memset.S @@ -1,6 +1,6 @@ /* Set a block of memory to some byte value. For SPARC v7. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller and Jakub Jelinek . diff --git a/sysdeps/sparc/sparc32/mul_1.S b/sysdeps/sparc/sparc32/mul_1.S index 965c2f5844..08431ef496 100644 --- a/sysdeps/sparc/sparc32/mul_1.S +++ b/sysdeps/sparc/sparc32/mul_1.S @@ -1,7 +1,7 @@ ! SPARC __mpn_mul_1 -- Multiply a limb vector with a limb and store ! the result in a second limb vector. ! -! Copyright (C) 1992-2013 Free Software Foundation, Inc. +! Copyright (C) 1992-2014 Free Software Foundation, Inc. ! ! This file is part of the GNU MP Library. ! diff --git a/sysdeps/sparc/sparc32/rshift.S b/sysdeps/sparc/sparc32/rshift.S index 0ac5b4e70c..3cc1e72f71 100644 --- a/sysdeps/sparc/sparc32/rshift.S +++ b/sysdeps/sparc/sparc32/rshift.S @@ -1,6 +1,6 @@ ! sparc __mpn_rshift -- ! -! Copyright (C) 1995-2013 Free Software Foundation, Inc. +! Copyright (C) 1995-2014 Free Software Foundation, Inc. ! ! This file is part of the GNU MP Library. ! diff --git a/sysdeps/sparc/sparc32/setjmp.S b/sysdeps/sparc/sparc32/setjmp.S index 2af94a2295..64dccdecb5 100644 --- a/sysdeps/sparc/sparc32/setjmp.S +++ b/sysdeps/sparc/sparc32/setjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/soft-fp/Makefile b/sysdeps/sparc/sparc32/soft-fp/Makefile index ab4263d019..38d14e714b 100644 --- a/sysdeps/sparc/sparc32/soft-fp/Makefile +++ b/sysdeps/sparc/sparc32/soft-fp/Makefile @@ -1,6 +1,6 @@ # Software floating-point emulation. # Makefile for SPARC v8 long double utility functions (_Q_*). -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Jakub Jelinek (jj@ultra.linux.cz). # diff --git a/sysdeps/sparc/sparc32/soft-fp/q_add.c b/sysdeps/sparc/sparc32/soft-fp/q_add.c index 467024a90b..ec8c1c2e9c 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_add.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_add.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a + b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_cmp.c b/sysdeps/sparc/sparc32/soft-fp/q_cmp.c index c6fbabd515..837b3dd091 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_cmp.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_cmp.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Compare a and b, return float condition code. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_cmpe.c b/sysdeps/sparc/sparc32/soft-fp/q_cmpe.c index 2aeb1b0de4..d4ac7bd67c 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_cmpe.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_cmpe.c @@ -1,7 +1,7 @@ /* Software floating-point emulation. Compare a and b, return float condition code. Signal exception (unless masked) if unordered. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_div.c b/sysdeps/sparc/sparc32/soft-fp/q_div.c index 644f8502a9..39105d1975 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_div.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_div.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a / b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_dtoq.c b/sysdeps/sparc/sparc32/soft-fp/q_dtoq.c index 668f1ea5aa..8f20594029 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_dtoq.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_dtoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (long double)(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_feq.c b/sysdeps/sparc/sparc32/soft-fp/q_feq.c index d1cc05e012..61a8ff1b18 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_feq.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_feq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if a == b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_fge.c b/sysdeps/sparc/sparc32/soft-fp/q_fge.c index c143a04c28..7fca34926a 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_fge.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_fge.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if a >= b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_fgt.c b/sysdeps/sparc/sparc32/soft-fp/q_fgt.c index b144c114d6..f5b2acf4c4 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_fgt.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_fgt.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if a > b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_fle.c b/sysdeps/sparc/sparc32/soft-fp/q_fle.c index ce3261fd29..c108fb9e3f 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_fle.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_fle.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if a <= b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_flt.c b/sysdeps/sparc/sparc32/soft-fp/q_flt.c index abafbf53ab..56d140e6e9 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_flt.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_flt.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if a < b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_fne.c b/sysdeps/sparc/sparc32/soft-fp/q_fne.c index 0e8d89be57..78c2d6f971 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_fne.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_fne.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if a != b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_itoq.c b/sysdeps/sparc/sparc32/soft-fp/q_itoq.c index 8193030f81..3640506973 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_itoq.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_itoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (long double)(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_lltoq.c b/sysdeps/sparc/sparc32/soft-fp/q_lltoq.c index 95bdbc4a1d..52b2712161 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_lltoq.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_lltoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (long double)a - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_mul.c b/sysdeps/sparc/sparc32/soft-fp/q_mul.c index 925be900b1..e4845ab1f3 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_mul.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_mul.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return a * b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_neg.c b/sysdeps/sparc/sparc32/soft-fp/q_neg.c index 5e2449c916..b5049cd6df 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_neg.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_neg.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return !a - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_qtod.c b/sysdeps/sparc/sparc32/soft-fp/q_qtod.c index c5c44acb81..41527e7275 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_qtod.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_qtod.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (double)a - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_qtoi.c b/sysdeps/sparc/sparc32/soft-fp/q_qtoi.c index 0a0d69799a..4f116cbc8c 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_qtoi.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_qtoi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (int)a - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_qtoll.c b/sysdeps/sparc/sparc32/soft-fp/q_qtoll.c index 02c380d103..77530964f6 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_qtoll.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_qtoll.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (long long)a - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_qtos.c b/sysdeps/sparc/sparc32/soft-fp/q_qtos.c index c90e545a6d..c8c2fd89c1 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_qtos.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_qtos.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (float)a - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_qtou.c b/sysdeps/sparc/sparc32/soft-fp/q_qtou.c index cf6c9e39f7..7b75902996 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_qtou.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_qtou.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (unsigned int)a - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_qtoull.c b/sysdeps/sparc/sparc32/soft-fp/q_qtoull.c index b115fcab49..4980de8ccf 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_qtoull.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_qtoull.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (unsigned long long)a - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_sqrt.c b/sysdeps/sparc/sparc32/soft-fp/q_sqrt.c index 26ecee6557..3b411ff9ac 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_sqrt.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_sqrt.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return sqrtl(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_stoq.c b/sysdeps/sparc/sparc32/soft-fp/q_stoq.c index 27ddd370ae..bf6c5cd046 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_stoq.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_stoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. c = (long double)(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_sub.c b/sysdeps/sparc/sparc32/soft-fp/q_sub.c index 0e27ab12f0..f186ead4d4 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_sub.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_sub.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. c = a - b - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c b/sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c index e57fa77cbb..7512557f9a 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (long double)(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_util.c b/sysdeps/sparc/sparc32/soft-fp/q_util.c index 814aa0ebcc..eb9b6259bb 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_util.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_util.c @@ -1,7 +1,7 @@ /* Software floating-point emulation. Helper routine for _Q_* routines. Simulate exceptions using double arithmetics. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/q_utoq.c b/sysdeps/sparc/sparc32/soft-fp/q_utoq.c index dd5824b837..0fb645c5de 100644 --- a/sysdeps/sparc/sparc32/soft-fp/q_utoq.c +++ b/sysdeps/sparc/sparc32/soft-fp/q_utoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. c = (long double)(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc32/soft-fp/sfp-machine.h b/sysdeps/sparc/sparc32/soft-fp/sfp-machine.h index 35bd2ccc4a..025b3ab196 100644 --- a/sysdeps/sparc/sparc32/soft-fp/sfp-machine.h +++ b/sysdeps/sparc/sparc32/soft-fp/sfp-machine.h @@ -1,6 +1,6 @@ /* Machine-dependent software floating-point definitions. Sparc userland (_Q_*) version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz) and diff --git a/sysdeps/sparc/sparc32/sparcv8/addmul_1.S b/sysdeps/sparc/sparc32/sparcv8/addmul_1.S index 0e26cac9cc..bb81915397 100644 --- a/sysdeps/sparc/sparc32/sparcv8/addmul_1.S +++ b/sysdeps/sparc/sparc32/sparcv8/addmul_1.S @@ -1,7 +1,7 @@ ! SPARC v8 __mpn_addmul_1 -- Multiply a limb vector with a limb and ! add the result to a second limb vector. -! Copyright (C) 1992-2013 Free Software Foundation, Inc. +! Copyright (C) 1992-2014 Free Software Foundation, Inc. ! This file is part of the GNU MP Library. diff --git a/sysdeps/sparc/sparc32/sparcv8/mul_1.S b/sysdeps/sparc/sparc32/sparcv8/mul_1.S index cf9469be80..4532eb1789 100644 --- a/sysdeps/sparc/sparc32/sparcv8/mul_1.S +++ b/sysdeps/sparc/sparc32/sparcv8/mul_1.S @@ -1,7 +1,7 @@ ! SPARC v8 __mpn_mul_1 -- Multiply a limb vector with a single limb and ! store the product in a second limb vector. -! Copyright (C) 1992-2013 Free Software Foundation, Inc. +! Copyright (C) 1992-2014 Free Software Foundation, Inc. ! This file is part of the GNU MP Library. diff --git a/sysdeps/sparc/sparc32/sparcv8/submul_1.S b/sysdeps/sparc/sparc32/sparcv8/submul_1.S index 9ac708ad44..7f3b0492d8 100644 --- a/sysdeps/sparc/sparc32/sparcv8/submul_1.S +++ b/sysdeps/sparc/sparc32/sparcv8/submul_1.S @@ -1,7 +1,7 @@ ! SPARC v8 __mpn_submul_1 -- Multiply a limb vector with a limb and ! subtract the result from a second limb vector. -! Copyright (C) 1992-2013 Free Software Foundation, Inc. +! Copyright (C) 1992-2014 Free Software Foundation, Inc. ! This file is part of the GNU MP Library. diff --git a/sysdeps/sparc/sparc32/sparcv9/addmul_1.S b/sysdeps/sparc/sparc32/sparcv9/addmul_1.S index 7ba81d8a6c..a96a9a2db7 100644 --- a/sysdeps/sparc/sparc32/sparcv9/addmul_1.S +++ b/sysdeps/sparc/sparc32/sparcv9/addmul_1.S @@ -1,7 +1,7 @@ ! SPARC v9 32-bit __mpn_addmul_1 -- Multiply a limb vector with a limb ! and add the result to a second limb vector. ! -! Copyright (C) 2013 Free Software Foundation, Inc. +! Copyright (C) 2013-2014 Free Software Foundation, Inc. ! This file is part of the GNU C Library. ! Contributed by David S. Miller ! diff --git a/sysdeps/sparc/sparc32/sparcv9/bits/atomic.h b/sysdeps/sparc/sparc32/sparcv9/bits/atomic.h index 937d7a149f..4835019202 100644 --- a/sysdeps/sparc/sparc32/sparcv9/bits/atomic.h +++ b/sysdeps/sparc/sparc32/sparcv9/bits/atomic.h @@ -1,5 +1,5 @@ /* Atomic operations. sparcv9 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S index 94388003dc..98b5f59bf6 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S @@ -1,5 +1,5 @@ /* ceil function, sparc32 v9 vis2 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S index aebff5caeb..7759736e3f 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S @@ -1,5 +1,5 @@ /* ceil function, sparc32 v9 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S index bc516765fc..f51a083c99 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S @@ -1,5 +1,5 @@ /* Float ceil function, sparc32 v9 vis2 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S index 0a6768ca1b..46023a1218 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S @@ -1,5 +1,5 @@ /* Float ceil function, sparc32 v9 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S index 6eda8ee2c9..ac6843cfb7 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S @@ -1,5 +1,5 @@ /* copysign function, sparc32 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S index a9c27a91db..e738c83499 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S @@ -1,5 +1,5 @@ /* float copysign function, sparc32 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S index 540b629034..7a32b6962d 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S @@ -1,5 +1,5 @@ /* Float absolute value, sparc32+v9 vis3 version. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S index 4f47e7e024..a5ec9299df 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S @@ -1,5 +1,5 @@ /* Float absolute value, sparc32 vis3 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2006. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S index 5e011a121e..3a90730ab5 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S @@ -1,5 +1,5 @@ /* Compute positive difference, sparc 32-bit+v9+vis3. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller . diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S index c6d5712974..04ba613f2d 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S @@ -1,5 +1,5 @@ /* Compute positive difference, sparc 32-bit+v9+vis3. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller . diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S index 3b5e8fd7cf..7b3f954132 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S @@ -1,5 +1,5 @@ /* floor function, sparc32 v9 vis2 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S index 41fdfac3b3..20b41a7841 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S @@ -1,5 +1,5 @@ /* floor function, sparc32 v9 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S index 4f731212e5..6040164dc2 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S @@ -1,5 +1,5 @@ /* Float floor function, sparc32 v9 vis2 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S index fe2d2da208..66fa964f25 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S @@ -1,5 +1,5 @@ /* Float floor function, sparc32 v9 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S index 272ac8ee3d..a168f25f6f 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S @@ -1,5 +1,5 @@ /* fma function, sparc32 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S index 0e046f8877..e356723600 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S @@ -1,5 +1,5 @@ /* fmaf function, sparc32 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S index 75db2e3e20..7dc6b3113e 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S @@ -1,5 +1,5 @@ /* fmax function, sparc32 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S index 6a2f86e253..0488c5bebd 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S @@ -1,5 +1,5 @@ /* fmaxf function, sparc32 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S index 95034f257e..719a82617d 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S @@ -1,5 +1,5 @@ /* fmin function, sparc32 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S index cb6ebed774..9f8d1c5e83 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S @@ -1,5 +1,5 @@ /* fminf function, sparc32 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S index ee16cff48d..09140b8701 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S @@ -1,5 +1,5 @@ /* llrint(), sparc32 v9 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S index 470de49852..2f6c5719fd 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S @@ -1,5 +1,5 @@ /* llrintf(), sparc32 v9 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S index b509500ed4..07548c3a1f 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S @@ -1,7 +1,7 @@ /* Round float to int floating-point values without generating an inexact exception, sparc32 v9 vis3 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S index 336126deef..c69df92c35 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S @@ -1,7 +1,7 @@ /* Round float to int floating-point values without generating an inexact exception, sparc32 v9 vis3 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S index 2e54907bb5..f6e431c923 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S @@ -1,5 +1,5 @@ /* Round float to int floating-point values, sparc32 v9 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S index a14751dcfc..ec79df65aa 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S @@ -1,5 +1,5 @@ /* Round float to int floating-point values, sparc32 v9 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S index 72ec2826e7..d66e847afb 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S @@ -1,7 +1,7 @@ /* Truncate argument to nearest integral value not larger than the argument, sparc32 v9 vis3 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S index 60445dfaa5..c4f0c7a12e 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S @@ -1,7 +1,7 @@ /* Truncate argument to nearest integral value not larger than the argument, sparc32 v9 vis3 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S index dd21b55d7e..6fe920f68a 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S @@ -1,5 +1,5 @@ /* sqrt function. sparc32 v9 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S index 114a95f667..f0affc44e9 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S @@ -1,5 +1,5 @@ /* sqrtf function. sparc32 v9 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S index 032a6a3e13..6eafb51681 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S @@ -1,5 +1,5 @@ /* ceil function, sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S index 44d56f8b49..9673664493 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S @@ -1,5 +1,5 @@ /* Float ceil function, sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S index 254ea352a2..a3b44804ed 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S @@ -1,5 +1,5 @@ /* Float absolute value, sparc32+v9 version. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S index 6f26ab7af2..51535d9331 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S @@ -1,5 +1,5 @@ /* Compute positive difference, sparc 32-bit+v9. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller . diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S index fc55867cd6..fab345c62a 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S @@ -1,5 +1,5 @@ /* Compute positive difference, sparc 32-bit+v9. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller . diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S index 8ecdd9c489..f3dd4e4d46 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S @@ -1,5 +1,5 @@ /* floor function, sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S index b1cab56c4d..f9922781c2 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S @@ -1,5 +1,5 @@ /* Float floor function, sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S index e2f9a9a32c..1928c78012 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S @@ -1,5 +1,5 @@ /* fmax function, sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S index b2848703c0..8325b09e40 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S @@ -1,5 +1,5 @@ /* fmaxf function, sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S index bd6d9c13fb..17b89aac23 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S @@ -1,5 +1,5 @@ /* fmin function, sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S index 20081ff923..5830ce4ef4 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S @@ -1,5 +1,5 @@ /* fminf function, sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S index 4cca49236d..f2e40b1249 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* isnan(). sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S index 01b0dc1f6c..fda7efc429 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S @@ -1,5 +1,5 @@ /* llrint(), sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S index 44bb2a7ea9..66e153e960 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S @@ -1,5 +1,5 @@ /* llrintf(), sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S index 29412c564f..0336660cdc 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S @@ -1,5 +1,5 @@ /* lrint(), sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S index ac167b3024..3b48cc4359 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S @@ -1,5 +1,5 @@ /* lrintf(), sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S index ee6a575e19..4904878aca 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S @@ -1,7 +1,7 @@ /* Round float to int floating-point values without generating an inexact exception, sparc32 v9 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S index 4225b54497..aec04a0218 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S @@ -1,7 +1,7 @@ /* Round float to int floating-point values without generating an inexact exception, sparc32 v9 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S index 27da9d5c7d..e7db7989ca 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S @@ -1,5 +1,5 @@ /* Round float to int floating-point values, sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S index f6fb64b48a..008ac26f6b 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S @@ -1,5 +1,5 @@ /* Round float to int floating-point values, sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S index c451d1d995..5cb70ee743 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S @@ -1,7 +1,7 @@ /* Truncate argument to nearest integral value not larger than the argument, sparc32 v9 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S b/sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S index 4e6e25b263..8f34d182c8 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S @@ -1,7 +1,7 @@ /* Truncate argument to nearest integral value not larger than the argument, sparc32 v9 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S b/sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S index 45e36e795d..abfd5df765 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S @@ -1,5 +1,5 @@ /* sqrt function. sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S b/sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S index d0f01633e9..cc38b5777d 100644 --- a/sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S +++ b/sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S @@ -1,5 +1,5 @@ /* sqrtf function. sparc32 v9 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc32/sparcv9/hp-timing.c b/sysdeps/sparc/sparc32/sparcv9/hp-timing.c index 643656115d..2224099940 100644 --- a/sysdeps/sparc/sparc32/sparcv9/hp-timing.c +++ b/sysdeps/sparc/sparc32/sparcv9/hp-timing.c @@ -1,5 +1,5 @@ /* Support for high precision, low overhead timing functions. sparcv9 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2001. diff --git a/sysdeps/sparc/sparc32/sparcv9/hp-timing.h b/sysdeps/sparc/sparc32/sparcv9/hp-timing.h index ce3dd7cdec..fd7e76ecae 100644 --- a/sysdeps/sparc/sparc32/sparcv9/hp-timing.h +++ b/sysdeps/sparc/sparc32/sparcv9/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. sparcv9 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2001. diff --git a/sysdeps/sparc/sparc32/sparcv9/mul_1.S b/sysdeps/sparc/sparc32/sparcv9/mul_1.S index e9a537196e..992d61b052 100644 --- a/sysdeps/sparc/sparc32/sparcv9/mul_1.S +++ b/sysdeps/sparc/sparc32/sparcv9/mul_1.S @@ -1,7 +1,7 @@ ! SPARC v9 32-bit __mpn_mul_1 -- Multiply a limb vector with a single ! limb and store the product in a second limb vector. ! -! Copyright (C) 2013 Free Software Foundation, Inc. +! Copyright (C) 2013-2014 Free Software Foundation, Inc. ! This file is part of the GNU C Library. ! Contributed by David S. Miller ! diff --git a/sysdeps/sparc/sparc32/sparcv9/submul_1.S b/sysdeps/sparc/sparc32/sparcv9/submul_1.S index 8985e2a4cb..afd9a3b24c 100644 --- a/sysdeps/sparc/sparc32/sparcv9/submul_1.S +++ b/sysdeps/sparc/sparc32/sparcv9/submul_1.S @@ -1,7 +1,7 @@ ! SPARC v9 32-bit __mpn_submul_1 -- Multiply a limb vector with a limb ! and subtract the result from a second limb vector. ! -! Copyright (C) 2013 Free Software Foundation, Inc. +! Copyright (C) 2013-2014 Free Software Foundation, Inc. ! This file is part of the GNU C Library. ! Contributed by David S. Miller ! diff --git a/sysdeps/sparc/sparc32/start.S b/sysdeps/sparc/sparc32/start.S index 2fc3567ab2..5c5490c8d6 100644 --- a/sysdeps/sparc/sparc32/start.S +++ b/sysdeps/sparc/sparc32/start.S @@ -1,5 +1,5 @@ /* Startup code for elf32-sparc - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997. diff --git a/sysdeps/sparc/sparc32/stpcpy.S b/sysdeps/sparc/sparc32/stpcpy.S index f9d16cf925..c7e649d507 100644 --- a/sysdeps/sparc/sparc32/stpcpy.S +++ b/sysdeps/sparc/sparc32/stpcpy.S @@ -1,6 +1,6 @@ /* Copy SRC to DEST returning the address of the terminating '\0' in DEST. For SPARC v7. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/sysdeps/sparc/sparc32/strcat.S b/sysdeps/sparc/sparc32/strcat.S index d1ffe42564..aef7a908c6 100644 --- a/sysdeps/sparc/sparc32/strcat.S +++ b/sysdeps/sparc/sparc32/strcat.S @@ -1,6 +1,6 @@ /* strcat (dest, src) -- Append SRC on the end of DEST. For SPARC v7. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/sysdeps/sparc/sparc32/strchr.S b/sysdeps/sparc/sparc32/strchr.S index f80e77b899..a8467f9d82 100644 --- a/sysdeps/sparc/sparc32/strchr.S +++ b/sysdeps/sparc/sparc32/strchr.S @@ -1,6 +1,6 @@ /* strchr (str, ch) -- Return pointer to first occurrence of CH in STR. For SPARC v7. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek and David S. Miller . diff --git a/sysdeps/sparc/sparc32/strcmp.S b/sysdeps/sparc/sparc32/strcmp.S index 20dd6a9deb..8373f45aba 100644 --- a/sysdeps/sparc/sparc32/strcmp.S +++ b/sysdeps/sparc/sparc32/strcmp.S @@ -1,6 +1,6 @@ /* Compare two strings for differences. For SPARC v7. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/sysdeps/sparc/sparc32/strcpy.S b/sysdeps/sparc/sparc32/strcpy.S index c1640a3047..3cd2395fba 100644 --- a/sysdeps/sparc/sparc32/strcpy.S +++ b/sysdeps/sparc/sparc32/strcpy.S @@ -1,6 +1,6 @@ /* Copy SRC to DEST returning DEST. For SPARC v7. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/sysdeps/sparc/sparc32/strlen.S b/sysdeps/sparc/sparc32/strlen.S index 36f4cf46a2..75a246072f 100644 --- a/sysdeps/sparc/sparc32/strlen.S +++ b/sysdeps/sparc/sparc32/strlen.S @@ -1,6 +1,6 @@ /* Determine the length of a string. For SPARC v7. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek and David S. Miller . diff --git a/sysdeps/sparc/sparc32/sub_n.S b/sysdeps/sparc/sparc32/sub_n.S index ccfc133a77..c9895368b7 100644 --- a/sysdeps/sparc/sparc32/sub_n.S +++ b/sysdeps/sparc/sparc32/sub_n.S @@ -1,7 +1,7 @@ ! SPARC __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and ! store difference in a third limb vector. ! -! Copyright (C) 1995-2013 Free Software Foundation, Inc. +! Copyright (C) 1995-2014 Free Software Foundation, Inc. ! ! This file is part of the GNU MP Library. ! diff --git a/sysdeps/sparc/sparc32/submul_1.S b/sysdeps/sparc/sparc32/submul_1.S index a856251a2d..24812a9269 100644 --- a/sysdeps/sparc/sparc32/submul_1.S +++ b/sysdeps/sparc/sparc32/submul_1.S @@ -1,7 +1,7 @@ ! SPARC __mpn_submul_1 -- Multiply a limb vector with a limb and subtract ! the result from a second limb vector. ! -! Copyright (C) 1992-2013 Free Software Foundation, Inc. +! Copyright (C) 1992-2014 Free Software Foundation, Inc. ! ! This file is part of the GNU MP Library. ! diff --git a/sysdeps/sparc/sparc32/tst-audit.h b/sysdeps/sparc/sparc32/tst-audit.h index b35044fc74..e95838326d 100644 --- a/sysdeps/sparc/sparc32/tst-audit.h +++ b/sysdeps/sparc/sparc32/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. SPARC32 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/sparc/sparc64/add_n.S b/sysdeps/sparc/sparc64/add_n.S index ce0fcb875e..2207777fd4 100644 --- a/sysdeps/sparc/sparc64/add_n.S +++ b/sysdeps/sparc/sparc64/add_n.S @@ -1,7 +1,7 @@ /* SPARC v9 __mpn_add_n -- Add two limb vectors of the same length > 0 and store sum in a third limb vector. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/sysdeps/sparc/sparc64/addmul_1.S b/sysdeps/sparc/sparc64/addmul_1.S index 88bf87c55b..b74b41da8e 100644 --- a/sysdeps/sparc/sparc64/addmul_1.S +++ b/sysdeps/sparc/sparc64/addmul_1.S @@ -1,7 +1,7 @@ /* SPARC v9 __mpn_addmul_1 -- Multiply a limb vector with a single limb and add the product to a second limb vector. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/sysdeps/sparc/sparc64/align-cpy.S b/sysdeps/sparc/sparc64/align-cpy.S index 3f603f8714..b893fb2e20 100644 --- a/sysdeps/sparc/sparc64/align-cpy.S +++ b/sysdeps/sparc/sparc64/align-cpy.S @@ -1,6 +1,6 @@ /* Aligned copy routines specified by Sparc V9 ABI. For 64-bit sparc. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@davemloft.net) diff --git a/sysdeps/sparc/sparc64/bits/atomic.h b/sysdeps/sparc/sparc64/bits/atomic.h index 96611de42f..ad9dae1d0f 100644 --- a/sysdeps/sparc/sparc64/bits/atomic.h +++ b/sysdeps/sparc/sparc64/bits/atomic.h @@ -1,5 +1,5 @@ /* Atomic operations. sparc64 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/sysdeps/sparc/sparc64/dl-irel.h b/sysdeps/sparc/sparc64/dl-irel.h index 691666733f..85b36cd066 100644 --- a/sysdeps/sparc/sparc64/dl-irel.h +++ b/sysdeps/sparc/sparc64/dl-irel.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF indirect relocation inline functions. SPARC 64-bit version. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/dl-machine.h b/sysdeps/sparc/sparc64/dl-machine.h index 3bce5d182f..b285402257 100644 --- a/sysdeps/sparc/sparc64/dl-machine.h +++ b/sysdeps/sparc/sparc64/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. Sparc64 version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/dl-plt.h b/sysdeps/sparc/sparc64/dl-plt.h index 10d111e33e..be1927b303 100644 --- a/sysdeps/sparc/sparc64/dl-plt.h +++ b/sysdeps/sparc/sparc64/dl-plt.h @@ -1,5 +1,5 @@ /* PLT fixups. Sparc 64-bit version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/dl-trampoline.S b/sysdeps/sparc/sparc64/dl-trampoline.S index c4b53d22d6..c57b0faace 100644 --- a/sysdeps/sparc/sparc64/dl-trampoline.S +++ b/sysdeps/sparc/sparc64/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. Sparc 64-bit version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/e_sqrtl.c b/sysdeps/sparc/sparc64/fpu/e_sqrtl.c index 3aa6fead2c..5d6cf0396c 100644 --- a/sysdeps/sparc/sparc64/fpu/e_sqrtl.c +++ b/sysdeps/sparc/sparc64/fpu/e_sqrtl.c @@ -1,5 +1,5 @@ /* Long double square root, sparc64 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2000. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S index 50d96a6efb..cb9904d57b 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S @@ -1,5 +1,5 @@ /* ceil function, sparc64 vis2 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S index 6acff09998..a3e4850d2b 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S @@ -1,5 +1,5 @@ /* ceil function, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S index cd5937b38d..676d54a7cd 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S @@ -1,5 +1,5 @@ /* Float ceil function, sparc64 vis2 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S index b3ec3484db..6a81bead3b 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S @@ -1,5 +1,5 @@ /* Float ceil function, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S index a05c02f310..23b70707f2 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S @@ -1,5 +1,5 @@ /* finite(). sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S index ba1fad3324..f22ad38183 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S @@ -1,5 +1,5 @@ /* finitef(). sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S index 5479ceddfe..9bfefb3ef8 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S @@ -1,5 +1,5 @@ /* floor function, sparc64 vis2 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S index c2ffe9f411..57c4f3b438 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S @@ -1,5 +1,5 @@ /* floor function, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S index 935fa853d8..d968561df2 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S @@ -1,5 +1,5 @@ /* Float floor function, sparc64 vis2 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S index 225e17ec05..e21fc678e8 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S @@ -1,5 +1,5 @@ /* Float floor function, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S index 477ad89a17..f53777a874 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S @@ -1,5 +1,5 @@ /* fma function, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S index b370f8d50f..bd4bfb224b 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S @@ -1,5 +1,5 @@ /* fmaf function, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_fmax-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_fmax-vis3.S index af124f14b6..b96f377c13 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_fmax-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_fmax-vis3.S @@ -1,5 +1,5 @@ /* fmax function, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S index a5cdcb698d..cc45638169 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S @@ -1,5 +1,5 @@ /* fmaxf function, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S index e7955c5143..c86469006f 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S @@ -1,5 +1,5 @@ /* fmin function, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S index 15196bc2b8..faa04cfa0a 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S @@ -1,5 +1,5 @@ /* fminf function, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S index 577f9c3f2f..33c6ae69e4 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S @@ -1,5 +1,5 @@ /* isinf(). sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S index aafa4c3b53..0442795af2 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S @@ -1,5 +1,5 @@ /* isinff(). sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S index 19224203e7..6aaaa045fd 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S @@ -1,5 +1,5 @@ /* isnan(). sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S index fd35f28bb1..aeec8602ad 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S @@ -1,5 +1,5 @@ /* isnanf(). sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S index e4adc88315..f785bb1fff 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S @@ -1,5 +1,5 @@ /* lrint(), sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S index c7858fd09f..62520afdb5 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S @@ -1,5 +1,5 @@ /* lrintf(), sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S index f2071d66c3..045688f455 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S @@ -1,7 +1,7 @@ /* Round float to int floating-point values without generating an inexact exception, sparc64 vis3 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S index b08928f6f3..ef0bd7afff 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S @@ -1,7 +1,7 @@ /* Round float to int floating-point values without generating an inexact exception, sparc64 vis3 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S index ad924c1b16..437204e06c 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S @@ -1,5 +1,5 @@ /* Round float to int floating-point values, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S index 28bd131e40..d033c23b86 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S @@ -1,5 +1,5 @@ /* Round float to int floating-point values, sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S index 3c42bca29e..b39b62a639 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S @@ -1,5 +1,5 @@ /* signbit(). sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S index 7c89ffe5a6..14a1adbf24 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S @@ -1,5 +1,5 @@ /* signbitf(). sparc64 vis3 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S index 34ff42da83..dd42bacdf7 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S @@ -1,7 +1,7 @@ /* Truncate argument to nearest integral value not larger than the argument, sparc64 vis3 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S b/sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S index e566b6ba82..c86a740887 100644 --- a/sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S +++ b/sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S @@ -1,7 +1,7 @@ /* Truncate argument to nearest integral value not larger than the argument, sparc64 vis3 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc64/fpu/s_ceil.S b/sysdeps/sparc/sparc64/fpu/s_ceil.S index a63fedcf51..ab17b00752 100644 --- a/sysdeps/sparc/sparc64/fpu/s_ceil.S +++ b/sysdeps/sparc/sparc64/fpu/s_ceil.S @@ -1,5 +1,5 @@ /* ceil function, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_ceilf.S b/sysdeps/sparc/sparc64/fpu/s_ceilf.S index 5a4a9f0f41..21d89b35f8 100644 --- a/sysdeps/sparc/sparc64/fpu/s_ceilf.S +++ b/sysdeps/sparc/sparc64/fpu/s_ceilf.S @@ -1,5 +1,5 @@ /* Float ceil function, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_copysign.S b/sysdeps/sparc/sparc64/fpu/s_copysign.S index c2a74247f9..8192416ecf 100644 --- a/sysdeps/sparc/sparc64/fpu/s_copysign.S +++ b/sysdeps/sparc/sparc64/fpu/s_copysign.S @@ -1,5 +1,5 @@ /* copysign function, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_copysignf.S b/sysdeps/sparc/sparc64/fpu/s_copysignf.S index 0ee3bc6052..c79c33c985 100644 --- a/sysdeps/sparc/sparc64/fpu/s_copysignf.S +++ b/sysdeps/sparc/sparc64/fpu/s_copysignf.S @@ -1,5 +1,5 @@ /* float copysign function, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_fdim.S b/sysdeps/sparc/sparc64/fpu/s_fdim.S index a1c53dfb14..99025bd139 100644 --- a/sysdeps/sparc/sparc64/fpu/s_fdim.S +++ b/sysdeps/sparc/sparc64/fpu/s_fdim.S @@ -1,5 +1,5 @@ /* Compute positive difference, sparc 64-bit. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller . diff --git a/sysdeps/sparc/sparc64/fpu/s_fdimf.S b/sysdeps/sparc/sparc64/fpu/s_fdimf.S index 61782a5f30..f29251aace 100644 --- a/sysdeps/sparc/sparc64/fpu/s_fdimf.S +++ b/sysdeps/sparc/sparc64/fpu/s_fdimf.S @@ -1,5 +1,5 @@ /* Compute positive difference, sparc 64-bit. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller . diff --git a/sysdeps/sparc/sparc64/fpu/s_finite.S b/sysdeps/sparc/sparc64/fpu/s_finite.S index e59d8fe825..a6038008f5 100644 --- a/sysdeps/sparc/sparc64/fpu/s_finite.S +++ b/sysdeps/sparc/sparc64/fpu/s_finite.S @@ -1,5 +1,5 @@ /* finite(). sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/s_finitef.S b/sysdeps/sparc/sparc64/fpu/s_finitef.S index 023566502c..0674100f1b 100644 --- a/sysdeps/sparc/sparc64/fpu/s_finitef.S +++ b/sysdeps/sparc/sparc64/fpu/s_finitef.S @@ -1,5 +1,5 @@ /* finitef(). sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/s_floor.S b/sysdeps/sparc/sparc64/fpu/s_floor.S index 4ad8b6d871..2a1fb52a16 100644 --- a/sysdeps/sparc/sparc64/fpu/s_floor.S +++ b/sysdeps/sparc/sparc64/fpu/s_floor.S @@ -1,5 +1,5 @@ /* floor function, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_floorf.S b/sysdeps/sparc/sparc64/fpu/s_floorf.S index 5cc1333245..1c737ecbbb 100644 --- a/sysdeps/sparc/sparc64/fpu/s_floorf.S +++ b/sysdeps/sparc/sparc64/fpu/s_floorf.S @@ -1,5 +1,5 @@ /* Float floor function, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_fmax.S b/sysdeps/sparc/sparc64/fpu/s_fmax.S index 04d469eb5f..d9a1c71318 100644 --- a/sysdeps/sparc/sparc64/fpu/s_fmax.S +++ b/sysdeps/sparc/sparc64/fpu/s_fmax.S @@ -1,5 +1,5 @@ /* fmax function, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_fmaxf.S b/sysdeps/sparc/sparc64/fpu/s_fmaxf.S index 1ab7caaf65..df8ad85000 100644 --- a/sysdeps/sparc/sparc64/fpu/s_fmaxf.S +++ b/sysdeps/sparc/sparc64/fpu/s_fmaxf.S @@ -1,5 +1,5 @@ /* fmaxf function, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_fmin.S b/sysdeps/sparc/sparc64/fpu/s_fmin.S index 75b949203e..30fdbee992 100644 --- a/sysdeps/sparc/sparc64/fpu/s_fmin.S +++ b/sysdeps/sparc/sparc64/fpu/s_fmin.S @@ -1,5 +1,5 @@ /* fmin function, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_fminf.S b/sysdeps/sparc/sparc64/fpu/s_fminf.S index 7783b046ba..1231eb0df0 100644 --- a/sysdeps/sparc/sparc64/fpu/s_fminf.S +++ b/sysdeps/sparc/sparc64/fpu/s_fminf.S @@ -1,5 +1,5 @@ /* fminf function, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_isinf.S b/sysdeps/sparc/sparc64/fpu/s_isinf.S index 8314357bab..2e7da54078 100644 --- a/sysdeps/sparc/sparc64/fpu/s_isinf.S +++ b/sysdeps/sparc/sparc64/fpu/s_isinf.S @@ -1,5 +1,5 @@ /* isinf(). sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/s_isinff.S b/sysdeps/sparc/sparc64/fpu/s_isinff.S index 557009120a..cfe451c92c 100644 --- a/sysdeps/sparc/sparc64/fpu/s_isinff.S +++ b/sysdeps/sparc/sparc64/fpu/s_isinff.S @@ -1,5 +1,5 @@ /* isinff(). sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/s_isnan.S b/sysdeps/sparc/sparc64/fpu/s_isnan.S index 08edd0a1b3..9fedc43c1d 100644 --- a/sysdeps/sparc/sparc64/fpu/s_isnan.S +++ b/sysdeps/sparc/sparc64/fpu/s_isnan.S @@ -1,5 +1,5 @@ /* isnan(). sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/s_isnanf.S b/sysdeps/sparc/sparc64/fpu/s_isnanf.S index 26faba9104..6870a2c3b2 100644 --- a/sysdeps/sparc/sparc64/fpu/s_isnanf.S +++ b/sysdeps/sparc/sparc64/fpu/s_isnanf.S @@ -1,5 +1,5 @@ /* isnanf(). sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/s_lrint.S b/sysdeps/sparc/sparc64/fpu/s_lrint.S index 665d9efc17..4154f51528 100644 --- a/sysdeps/sparc/sparc64/fpu/s_lrint.S +++ b/sysdeps/sparc/sparc64/fpu/s_lrint.S @@ -1,5 +1,5 @@ /* lrint(), sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_lrintf.S b/sysdeps/sparc/sparc64/fpu/s_lrintf.S index 8ad3252ca4..3a9e8db67d 100644 --- a/sysdeps/sparc/sparc64/fpu/s_lrintf.S +++ b/sysdeps/sparc/sparc64/fpu/s_lrintf.S @@ -1,5 +1,5 @@ /* lrintf(), sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_nearbyint.S b/sysdeps/sparc/sparc64/fpu/s_nearbyint.S index 963e4bc7b4..3b8e102a8f 100644 --- a/sysdeps/sparc/sparc64/fpu/s_nearbyint.S +++ b/sysdeps/sparc/sparc64/fpu/s_nearbyint.S @@ -1,7 +1,7 @@ /* Round float to int floating-point values without generating an inexact exception, sparc64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc64/fpu/s_nearbyintf.S b/sysdeps/sparc/sparc64/fpu/s_nearbyintf.S index 4ff29058eb..34d4a5a5ac 100644 --- a/sysdeps/sparc/sparc64/fpu/s_nearbyintf.S +++ b/sysdeps/sparc/sparc64/fpu/s_nearbyintf.S @@ -1,7 +1,7 @@ /* Round float to int floating-point values without generating an inexact exception, sparc64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc64/fpu/s_rint.S b/sysdeps/sparc/sparc64/fpu/s_rint.S index 4416544a4b..4a2279881d 100644 --- a/sysdeps/sparc/sparc64/fpu/s_rint.S +++ b/sysdeps/sparc/sparc64/fpu/s_rint.S @@ -1,5 +1,5 @@ /* Round float to int floating-point values, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_rintf.S b/sysdeps/sparc/sparc64/fpu/s_rintf.S index 18db948ff0..18a0df490e 100644 --- a/sysdeps/sparc/sparc64/fpu/s_rintf.S +++ b/sysdeps/sparc/sparc64/fpu/s_rintf.S @@ -1,5 +1,5 @@ /* Round float to int floating-point values, sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2012. diff --git a/sysdeps/sparc/sparc64/fpu/s_signbit.S b/sysdeps/sparc/sparc64/fpu/s_signbit.S index cb69e83184..efc20006c0 100644 --- a/sysdeps/sparc/sparc64/fpu/s_signbit.S +++ b/sysdeps/sparc/sparc64/fpu/s_signbit.S @@ -1,5 +1,5 @@ /* signbit(). sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/s_signbitf.S b/sysdeps/sparc/sparc64/fpu/s_signbitf.S index d288affb46..9679db3246 100644 --- a/sysdeps/sparc/sparc64/fpu/s_signbitf.S +++ b/sysdeps/sparc/sparc64/fpu/s_signbitf.S @@ -1,5 +1,5 @@ /* signbitf(). sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/s_trunc.S b/sysdeps/sparc/sparc64/fpu/s_trunc.S index 13d47eb97b..1ec473124a 100644 --- a/sysdeps/sparc/sparc64/fpu/s_trunc.S +++ b/sysdeps/sparc/sparc64/fpu/s_trunc.S @@ -1,7 +1,7 @@ /* Truncate argument to nearest integral value not larger than the argument, sparc64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc64/fpu/s_truncf.S b/sysdeps/sparc/sparc64/fpu/s_truncf.S index e25a1f595e..062e07a2c5 100644 --- a/sysdeps/sparc/sparc64/fpu/s_truncf.S +++ b/sysdeps/sparc/sparc64/fpu/s_truncf.S @@ -1,7 +1,7 @@ /* Truncate argument to nearest integral value not larger than the argument, sparc64 version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2013. diff --git a/sysdeps/sparc/sparc64/fpu/w_sqrt.S b/sysdeps/sparc/sparc64/fpu/w_sqrt.S index 5103318c70..4c7b259758 100644 --- a/sysdeps/sparc/sparc64/fpu/w_sqrt.S +++ b/sysdeps/sparc/sparc64/fpu/w_sqrt.S @@ -1,5 +1,5 @@ /* sqrt function. sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/fpu/w_sqrtf.S b/sysdeps/sparc/sparc64/fpu/w_sqrtf.S index 28491e8110..c14a21261d 100644 --- a/sysdeps/sparc/sparc64/fpu/w_sqrtf.S +++ b/sysdeps/sparc/sparc64/fpu/w_sqrtf.S @@ -1,5 +1,5 @@ /* sqrtf function. sparc64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/hp-timing.c b/sysdeps/sparc/sparc64/hp-timing.c index bce3e57c6c..0a425eddb4 100644 --- a/sysdeps/sparc/sparc64/hp-timing.c +++ b/sysdeps/sparc/sparc64/hp-timing.c @@ -1,5 +1,5 @@ /* Support for high precision, low overhead timing functions. sparc64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2001. diff --git a/sysdeps/sparc/sparc64/hp-timing.h b/sysdeps/sparc/sparc64/hp-timing.h index af77dc9fb9..fa08cc85a1 100644 --- a/sysdeps/sparc/sparc64/hp-timing.h +++ b/sysdeps/sparc/sparc64/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. sparc64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2001. diff --git a/sysdeps/sparc/sparc64/jmpbuf-unwind.h b/sysdeps/sparc/sparc64/jmpbuf-unwind.h index 09d26926e1..663533375f 100644 --- a/sysdeps/sparc/sparc64/jmpbuf-unwind.h +++ b/sysdeps/sparc/sparc64/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2005. diff --git a/sysdeps/sparc/sparc64/lshift.S b/sysdeps/sparc/sparc64/lshift.S index fe0ba5baf0..710d103040 100644 --- a/sysdeps/sparc/sparc64/lshift.S +++ b/sysdeps/sparc/sparc64/lshift.S @@ -1,6 +1,6 @@ /* SPARC v9 __mpn_lshift -- - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/sysdeps/sparc/sparc64/memchr.S b/sysdeps/sparc/sparc64/memchr.S index 0cd2573a07..7c756228ad 100644 --- a/sysdeps/sparc/sparc64/memchr.S +++ b/sysdeps/sparc/sparc64/memchr.S @@ -1,7 +1,7 @@ /* memchr (str, ch, n) -- Return pointer to first occurrence of CH in STR less than N. For SPARC v9. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jan Vondrak and Jakub Jelinek . diff --git a/sysdeps/sparc/sparc64/memcmp.S b/sysdeps/sparc/sparc64/memcmp.S index 3837f4ff18..20ae4e1f0c 100644 --- a/sysdeps/sparc/sparc64/memcmp.S +++ b/sysdeps/sparc/sparc64/memcmp.S @@ -1,6 +1,6 @@ /* Compare two memory blocks for differences in the first COUNT bytes. For SPARC v9. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jan Vondrak and Jakub Jelinek . diff --git a/sysdeps/sparc/sparc64/memcpy.S b/sysdeps/sparc/sparc64/memcpy.S index 3d8ffccfba..97e4b024c6 100644 --- a/sysdeps/sparc/sparc64/memcpy.S +++ b/sysdeps/sparc/sparc64/memcpy.S @@ -1,6 +1,6 @@ /* Copy SIZE bytes from SRC to DEST. For UltraSPARC. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@caip.rutgers.edu) and Jakub Jelinek (jakub@redhat.com). diff --git a/sysdeps/sparc/sparc64/memset.S b/sysdeps/sparc/sparc64/memset.S index fccb411ff6..8b74576ca9 100644 --- a/sysdeps/sparc/sparc64/memset.S +++ b/sysdeps/sparc/sparc64/memset.S @@ -1,6 +1,6 @@ /* Set a block of memory to some byte value. For UltraSPARC. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@caip.rutgers.edu) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/mul_1.S b/sysdeps/sparc/sparc64/mul_1.S index 00167b3d62..1a2bd3f8b6 100644 --- a/sysdeps/sparc/sparc64/mul_1.S +++ b/sysdeps/sparc/sparc64/mul_1.S @@ -1,7 +1,7 @@ /* SPARC v9 __mpn_mul_1 -- Multiply a limb vector with a single limb and store the product in a second limb vector. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/sysdeps/sparc/sparc64/multiarch/add_n-vis3.S b/sysdeps/sparc/sparc64/multiarch/add_n-vis3.S index 185f311690..2fe54dfa46 100644 --- a/sysdeps/sparc/sparc64/multiarch/add_n-vis3.S +++ b/sysdeps/sparc/sparc64/multiarch/add_n-vis3.S @@ -1,7 +1,7 @@ ! SPARC v9 64-bit VIS3 __mpn_add_n -- Add two limb vectors of the same length > 0 and ! store sum in a third limb vector. ! -! Copyright (C) 2013 Free Software Foundation, Inc. +! Copyright (C) 2013-2014 Free Software Foundation, Inc. ! This file is part of the GNU C Library. ! Contributed by David S. Miller ! diff --git a/sysdeps/sparc/sparc64/multiarch/add_n.S b/sysdeps/sparc/sparc64/multiarch/add_n.S index 22c6e583d0..4305353105 100644 --- a/sysdeps/sparc/sparc64/multiarch/add_n.S +++ b/sysdeps/sparc/sparc64/multiarch/add_n.S @@ -1,6 +1,6 @@ /* Multiple versions of add_n - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. Contributed by David S. Miller (davem@davemloft.net) This file is part of the GNU C Library. diff --git a/sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S b/sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S index f955b27c00..87c6eb8aaa 100644 --- a/sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S +++ b/sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S @@ -1,7 +1,7 @@ ! SPARC v9 64-bit VIS3 __mpn_addmul_1 -- Multiply a limb vector with a ! limb and add the result to a second limb vector. ! -! Copyright (C) 2013 Free Software Foundation, Inc. +! Copyright (C) 2013-2014 Free Software Foundation, Inc. ! This file is part of the GNU C Library. ! Contributed by David S. Miller ! diff --git a/sysdeps/sparc/sparc64/multiarch/addmul_1.S b/sysdeps/sparc/sparc64/multiarch/addmul_1.S index a65c934d9b..4f1db31aed 100644 --- a/sysdeps/sparc/sparc64/multiarch/addmul_1.S +++ b/sysdeps/sparc/sparc64/multiarch/addmul_1.S @@ -1,6 +1,6 @@ /* Multiple versions of addmul_1 - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. Contributed by David S. Miller (davem@davemloft.net) This file is part of the GNU C Library. diff --git a/sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c b/sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c index 2f7a4a9366..cb6a519518 100644 --- a/sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c +++ b/sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c @@ -1,5 +1,5 @@ /* Enumerate available IFUNC implementations of a function. sparc version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sparc64/multiarch/md5-crop.S b/sysdeps/sparc/sparc64/multiarch/md5-crop.S index f448cbd300..78f564f95a 100644 --- a/sysdeps/sparc/sparc64/multiarch/md5-crop.S +++ b/sysdeps/sparc/sparc64/multiarch/md5-crop.S @@ -1,5 +1,5 @@ /* MD5 using sparc crypto opcodes. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@davemloft.net) diff --git a/sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S b/sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S index 238059f4b9..4b7b22d030 100644 --- a/sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S +++ b/sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S @@ -1,5 +1,5 @@ /* Copy SIZE bytes from SRC to DEST. For SUN4V Niagara. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@davemloft.net) diff --git a/sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S b/sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S index 594405051f..b43a9e3e53 100644 --- a/sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S +++ b/sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S @@ -1,5 +1,5 @@ /* Copy SIZE bytes from SRC to DEST. For SUN4V Niagara-2. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@davemloft.net) diff --git a/sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S b/sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S index c91ceb4f49..63e0d8333e 100644 --- a/sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S +++ b/sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S @@ -1,5 +1,5 @@ /* Copy SIZE bytes from SRC to DEST. For SUN4V Niagara-4. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@davemloft.net) diff --git a/sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S b/sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S index ac9d470b76..ffb36468de 100644 --- a/sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S +++ b/sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S @@ -1,6 +1,6 @@ /* Copy SIZE bytes from SRC to DEST. For UltraSPARC-III. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@redhat.com) diff --git a/sysdeps/sparc/sparc64/multiarch/memcpy.S b/sysdeps/sparc/sparc64/multiarch/memcpy.S index 2cb060a9f9..62977a4d3c 100644 --- a/sysdeps/sparc/sparc64/multiarch/memcpy.S +++ b/sysdeps/sparc/sparc64/multiarch/memcpy.S @@ -1,6 +1,6 @@ /* Multiple versions of memcpy All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by David S. Miller (davem@davemloft.net) This file is part of the GNU C Library. diff --git a/sysdeps/sparc/sparc64/multiarch/memset-niagara1.S b/sysdeps/sparc/sparc64/multiarch/memset-niagara1.S index 70a6e451db..ed53522c14 100644 --- a/sysdeps/sparc/sparc64/multiarch/memset-niagara1.S +++ b/sysdeps/sparc/sparc64/multiarch/memset-niagara1.S @@ -1,5 +1,5 @@ /* Set a block of memory to some byte value. For SUN4V Niagara. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@davemloft.net) diff --git a/sysdeps/sparc/sparc64/multiarch/memset-niagara4.S b/sysdeps/sparc/sparc64/multiarch/memset-niagara4.S index 5a461dc2a9..c090c50e9d 100644 --- a/sysdeps/sparc/sparc64/multiarch/memset-niagara4.S +++ b/sysdeps/sparc/sparc64/multiarch/memset-niagara4.S @@ -1,5 +1,5 @@ /* Set a block of memory to some byte value. For SUN4V Niagara-4. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@davemloft.net) diff --git a/sysdeps/sparc/sparc64/multiarch/memset.S b/sysdeps/sparc/sparc64/multiarch/memset.S index f19e5682be..96c75e0d06 100644 --- a/sysdeps/sparc/sparc64/multiarch/memset.S +++ b/sysdeps/sparc/sparc64/multiarch/memset.S @@ -1,6 +1,6 @@ /* Multiple versions of memset and bzero All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by David S. Miller (davem@davemloft.net) This file is part of the GNU C Library. diff --git a/sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S b/sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S index 61fbe27a43..0510e6182a 100644 --- a/sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S +++ b/sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S @@ -1,7 +1,7 @@ ! SPARC v9 64-bit VIS3 __mpn_mul_1 -- Multiply a limb vector with a single ! limb and store the product in a second limb vector. ! -! Copyright (C) 2013 Free Software Foundation, Inc. +! Copyright (C) 2013-2014 Free Software Foundation, Inc. ! This file is part of the GNU C Library. ! Contributed by David S. Miller ! diff --git a/sysdeps/sparc/sparc64/multiarch/mul_1.S b/sysdeps/sparc/sparc64/multiarch/mul_1.S index 811754ed8b..d65774b2e8 100644 --- a/sysdeps/sparc/sparc64/multiarch/mul_1.S +++ b/sysdeps/sparc/sparc64/multiarch/mul_1.S @@ -1,6 +1,6 @@ /* Multiple versions of mul_1 - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. Contributed by David S. Miller (davem@davemloft.net) This file is part of the GNU C Library. diff --git a/sysdeps/sparc/sparc64/multiarch/sha256-crop.S b/sysdeps/sparc/sparc64/multiarch/sha256-crop.S index f6ccace4b2..ef8218e943 100644 --- a/sysdeps/sparc/sparc64/multiarch/sha256-crop.S +++ b/sysdeps/sparc/sparc64/multiarch/sha256-crop.S @@ -1,5 +1,5 @@ /* SHA256 using sparc crypto opcodes. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@davemloft.net) diff --git a/sysdeps/sparc/sparc64/multiarch/sha512-crop.S b/sysdeps/sparc/sparc64/multiarch/sha512-crop.S index d8a8b3ca44..ff49f752c2 100644 --- a/sysdeps/sparc/sparc64/multiarch/sha512-crop.S +++ b/sysdeps/sparc/sparc64/multiarch/sha512-crop.S @@ -1,5 +1,5 @@ /* SHA512 using sparc crypto opcodes. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller (davem@davemloft.net) diff --git a/sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S b/sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S index 4e9a786d32..7514ce26f2 100644 --- a/sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S +++ b/sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S @@ -1,7 +1,7 @@ ! SPARC v9 64-bit VIS3 __mpn_sub_n -- Subtract two limb vectors of the same length > 0 ! and store difference in a third limb vector. ! -! Copyright (C) 2013 Free Software Foundation, Inc. +! Copyright (C) 2013-2014 Free Software Foundation, Inc. ! This file is part of the GNU C Library. ! Contributed by David S. Miller ! diff --git a/sysdeps/sparc/sparc64/multiarch/sub_n.S b/sysdeps/sparc/sparc64/multiarch/sub_n.S index 39637905f3..a23474c1a5 100644 --- a/sysdeps/sparc/sparc64/multiarch/sub_n.S +++ b/sysdeps/sparc/sparc64/multiarch/sub_n.S @@ -1,6 +1,6 @@ /* Multiple versions of sub_n - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. Contributed by David S. Miller (davem@davemloft.net) This file is part of the GNU C Library. diff --git a/sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S b/sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S index 8f10f918aa..cd7c050158 100644 --- a/sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S +++ b/sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S @@ -1,7 +1,7 @@ ! SPARC v9 64-bit VIS3 __mpn_submul_1 -- Multiply a limb vector with a ! limb and subtract the result from a second limb vector. ! -! Copyright (C) 2013 Free Software Foundation, Inc. +! Copyright (C) 2013-2014 Free Software Foundation, Inc. ! This file is part of the GNU C Library. ! Contributed by David S. Miller ! diff --git a/sysdeps/sparc/sparc64/multiarch/submul_1.S b/sysdeps/sparc/sparc64/multiarch/submul_1.S index 6c4c3a36cf..a1b7c0125b 100644 --- a/sysdeps/sparc/sparc64/multiarch/submul_1.S +++ b/sysdeps/sparc/sparc64/multiarch/submul_1.S @@ -1,6 +1,6 @@ /* Multiple versions of submul_1 - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. Contributed by David S. Miller (davem@davemloft.net) This file is part of the GNU C Library. diff --git a/sysdeps/sparc/sparc64/rawmemchr.S b/sysdeps/sparc/sparc64/rawmemchr.S index cc36c58353..0d106c0095 100644 --- a/sysdeps/sparc/sparc64/rawmemchr.S +++ b/sysdeps/sparc/sparc64/rawmemchr.S @@ -1,6 +1,6 @@ /* rawmemchr (str, ch) -- Return pointer to first occurrence of CH in STR. For SPARC v9. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . This version is developed using the same algorithm as the fast C diff --git a/sysdeps/sparc/sparc64/rshift.S b/sysdeps/sparc/sparc64/rshift.S index 26929c7113..d1d5a1daa7 100644 --- a/sysdeps/sparc/sparc64/rshift.S +++ b/sysdeps/sparc/sparc64/rshift.S @@ -1,6 +1,6 @@ /* SPARC v9 __mpn_rshift -- - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/sysdeps/sparc/sparc64/soft-fp/Makefile b/sysdeps/sparc/sparc64/soft-fp/Makefile index a289a65483..e30aec8872 100644 --- a/sysdeps/sparc/sparc64/soft-fp/Makefile +++ b/sysdeps/sparc/sparc64/soft-fp/Makefile @@ -1,7 +1,7 @@ # Software floating-point emulation. # Makefile for SPARC v9 ABI mandated long double utility # functions (_Qp_*). -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Jakub Jelinek (jj@ultra.linux.cz). # diff --git a/sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c b/sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c index 5a27d8976e..d37d5500cf 100644 --- a/sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c +++ b/sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. ilogbl(x, exp) - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_add.c b/sysdeps/sparc/sparc64/soft-fp/qp_add.c index 2420a44e29..fc955fb08b 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_add.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_add.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. (*c) = (*a) + (*b) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_cmp.c b/sysdeps/sparc/sparc64/soft-fp/qp_cmp.c index bc613f0918..1929a082c2 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_cmp.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_cmp.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Compare (*a) and (*b), return float condition code. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c b/sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c index 11d7e948d0..ee25b5e8b1 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c @@ -1,7 +1,7 @@ /* Software floating-point emulation. Compare (*a) and (*b), return float condition code. Signal exception (unless masked) if unordered. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_div.c b/sysdeps/sparc/sparc64/soft-fp/qp_div.c index d5faf29e24..a300a9324b 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_div.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_div.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. (*c) = (*a) / (*b) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c b/sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c index a771d709aa..bee6dfce83 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. (*c) = (long double)(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_feq.c b/sysdeps/sparc/sparc64/soft-fp/qp_feq.c index faf52efae7..36eef5aa8a 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_feq.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_feq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if (*a) == (*b) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_fge.c b/sysdeps/sparc/sparc64/soft-fp/qp_fge.c index d4cd9cb755..3f0c16b416 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_fge.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_fge.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if (*a) >= (*b) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_fgt.c b/sysdeps/sparc/sparc64/soft-fp/qp_fgt.c index f28f0dca78..2b915be37d 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_fgt.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_fgt.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if (*a) > (*b) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_fle.c b/sysdeps/sparc/sparc64/soft-fp/qp_fle.c index 55306fefc6..74f80f4131 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_fle.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_fle.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if (*a) <= (*b) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_flt.c b/sysdeps/sparc/sparc64/soft-fp/qp_flt.c index 4da562b008..a4c8e05a0a 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_flt.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_flt.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if (*a) < (*b) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_fne.c b/sysdeps/sparc/sparc64/soft-fp/qp_fne.c index 6535d0e2ce..828c394f29 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_fne.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_fne.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 if (*a) != (*b) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_itoq.c b/sysdeps/sparc/sparc64/soft-fp/qp_itoq.c index 9bb7068a61..72ac975806 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_itoq.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_itoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. (*c) = (long double)(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_mul.c b/sysdeps/sparc/sparc64/soft-fp/qp_mul.c index ad84b89c82..930fd2f6cf 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_mul.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_mul.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. (*c) = (*a) * (*b) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_neg.S b/sysdeps/sparc/sparc64/soft-fp/qp_neg.S index 8c3eeb097e..8c621d297d 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_neg.S +++ b/sysdeps/sparc/sparc64/soft-fp/qp_neg.S @@ -1,6 +1,6 @@ /* Quad floating-point emulation. (*c) = !(*a) - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_qtod.c b/sysdeps/sparc/sparc64/soft-fp/qp_qtod.c index ae30369caa..9b23ef0210 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_qtod.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_qtod.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (double)(*a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c b/sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c index 028ee93116..dbc9af297f 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (int)(*a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_qtos.c b/sysdeps/sparc/sparc64/soft-fp/qp_qtos.c index df884dbb70..4a26ea8f01 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_qtos.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_qtos.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (float)(*a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c b/sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c index f0abe07b32..d811011f39 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (unsigned int)(*a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c b/sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c index 347c250e6c..0c079b376a 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (unsigned long)(*a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_qtox.c b/sysdeps/sparc/sparc64/soft-fp/qp_qtox.c index 595cb0698b..18588973da 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_qtox.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_qtox.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return (long)(*a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_sqrt.c b/sysdeps/sparc/sparc64/soft-fp/qp_sqrt.c index d111aef471..aabc588179 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_sqrt.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_sqrt.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. (*c) = sqrtl(*a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_stoq.c b/sysdeps/sparc/sparc64/soft-fp/qp_stoq.c index ff0ba98597..779c1d194e 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_stoq.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_stoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. (*c) = (long double)(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_sub.c b/sysdeps/sparc/sparc64/soft-fp/qp_sub.c index 958a1665a4..dcdaeba989 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_sub.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_sub.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. (*c) = (*a) - (*b) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c b/sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c index 773820d287..4146e9a944 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. (*c) = (long double)(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_util.c b/sysdeps/sparc/sparc64/soft-fp/qp_util.c index a05359c1ab..2934357565 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_util.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_util.c @@ -1,7 +1,7 @@ /* Software floating-point emulation. Helper routine for _Qp_* routines. Simulate exceptions using double arithmetics. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c b/sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c index a0c29e1c0e..472b312ffc 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. (*c) = (long double)(a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c b/sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c index 53cdce78bf..26725b1b59 100644 --- a/sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c +++ b/sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. (*c) = (long double)(*a) - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/s_frexpl.c b/sysdeps/sparc/sparc64/soft-fp/s_frexpl.c index c34fb13367..46637fb770 100644 --- a/sysdeps/sparc/sparc64/soft-fp/s_frexpl.c +++ b/sysdeps/sparc/sparc64/soft-fp/s_frexpl.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. frexpl(x, exp) - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c b/sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c index 0988e61fbc..e07ff62249 100644 --- a/sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c +++ b/sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. scalblnl(x, exp) - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/s_scalbnl.c b/sysdeps/sparc/sparc64/soft-fp/s_scalbnl.c index fad21886c4..a2de3804e3 100644 --- a/sysdeps/sparc/sparc64/soft-fp/s_scalbnl.c +++ b/sysdeps/sparc/sparc64/soft-fp/s_scalbnl.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. scalbnl(x, exp) - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek (jj@ultra.linux.cz). diff --git a/sysdeps/sparc/sparc64/soft-fp/sfp-machine.h b/sysdeps/sparc/sparc64/soft-fp/sfp-machine.h index f64a4be76c..9a0384b1d8 100644 --- a/sysdeps/sparc/sparc64/soft-fp/sfp-machine.h +++ b/sysdeps/sparc/sparc64/soft-fp/sfp-machine.h @@ -1,6 +1,6 @@ /* Machine-dependent software floating-point definitions. Sparc64 userland (_Q_* and _Qp_*) version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com), Jakub Jelinek (jj@ultra.linux.cz) and diff --git a/sysdeps/sparc/sparc64/start.S b/sysdeps/sparc/sparc64/start.S index 8ea4116245..8c21233271 100644 --- a/sysdeps/sparc/sparc64/start.S +++ b/sysdeps/sparc/sparc64/start.S @@ -1,5 +1,5 @@ /* Startup code for elf64-sparc - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997. diff --git a/sysdeps/sparc/sparc64/stpcpy.S b/sysdeps/sparc/sparc64/stpcpy.S index cf8dcf8bf1..bd90d8aeed 100644 --- a/sysdeps/sparc/sparc64/stpcpy.S +++ b/sysdeps/sparc/sparc64/stpcpy.S @@ -1,6 +1,6 @@ /* Copy SRC to DEST returning the address of the terminating '\0' in DEST. For SPARC v9. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jan Vondrak and Jakub Jelinek . diff --git a/sysdeps/sparc/sparc64/stpncpy.S b/sysdeps/sparc/sparc64/stpncpy.S index e01ad4eedc..5bc0871c11 100644 --- a/sysdeps/sparc/sparc64/stpncpy.S +++ b/sysdeps/sparc/sparc64/stpncpy.S @@ -2,7 +2,7 @@ SRC to DEST, returning the address of the terminating '\0' in DEST, if any, or else DEST + N. For SPARC v9. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek and Jan Vondrak . diff --git a/sysdeps/sparc/sparc64/strcat.S b/sysdeps/sparc/sparc64/strcat.S index ed2a31c958..d1098a261f 100644 --- a/sysdeps/sparc/sparc64/strcat.S +++ b/sysdeps/sparc/sparc64/strcat.S @@ -1,6 +1,6 @@ /* strcat (dest, src) -- Append SRC on the end of DEST. For SPARC v9. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek and Jan Vondrak . diff --git a/sysdeps/sparc/sparc64/strchr.S b/sysdeps/sparc/sparc64/strchr.S index 9a9c779d19..8da6d99456 100644 --- a/sysdeps/sparc/sparc64/strchr.S +++ b/sysdeps/sparc/sparc64/strchr.S @@ -1,6 +1,6 @@ /* strchr (str, ch) -- Return pointer to first occurrence of CH in STR. For SPARC v9. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jan Vondrak and Jakub Jelinek . diff --git a/sysdeps/sparc/sparc64/strcmp.S b/sysdeps/sparc/sparc64/strcmp.S index a36992e437..8925396ec6 100644 --- a/sysdeps/sparc/sparc64/strcmp.S +++ b/sysdeps/sparc/sparc64/strcmp.S @@ -1,6 +1,6 @@ /* Compare two strings for differences. For SPARC v9. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller diff --git a/sysdeps/sparc/sparc64/strcpy.S b/sysdeps/sparc/sparc64/strcpy.S index 94e9ff8cdb..f4a14ae9cd 100644 --- a/sysdeps/sparc/sparc64/strcpy.S +++ b/sysdeps/sparc/sparc64/strcpy.S @@ -1,6 +1,6 @@ /* Copy SRC to DEST returning DEST. For SPARC v9. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jan Vondrak and Jakub Jelinek . diff --git a/sysdeps/sparc/sparc64/strcspn.S b/sysdeps/sparc/sparc64/strcspn.S index 1027b3eb55..8594b67113 100644 --- a/sysdeps/sparc/sparc64/strcspn.S +++ b/sysdeps/sparc/sparc64/strcspn.S @@ -1,7 +1,7 @@ /* strcspn (str, ss) -- Return the length of the initial segment of STR which contains no characters from SS. For SPARC v9. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/sparc/sparc64/strlen.S b/sysdeps/sparc/sparc64/strlen.S index e270170357..ddb4f9c485 100644 --- a/sysdeps/sparc/sparc64/strlen.S +++ b/sysdeps/sparc/sparc64/strlen.S @@ -1,5 +1,5 @@ /* Determine the length of a string. For SPARC v9. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jan Vondrak , Jakub Jelinek , and diff --git a/sysdeps/sparc/sparc64/strncmp.S b/sysdeps/sparc/sparc64/strncmp.S index 22673ecb7a..76a36698f6 100644 --- a/sysdeps/sparc/sparc64/strncmp.S +++ b/sysdeps/sparc/sparc64/strncmp.S @@ -2,7 +2,7 @@ equal to or greater than zero if S1 is lexicographically less than, equal to or greater than S2. For SPARC v9. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jan Vondrak and Jakub Jelinek . diff --git a/sysdeps/sparc/sparc64/strncpy.S b/sysdeps/sparc/sparc64/strncpy.S index 74fd275882..da408b9a6f 100644 --- a/sysdeps/sparc/sparc64/strncpy.S +++ b/sysdeps/sparc/sparc64/strncpy.S @@ -2,7 +2,7 @@ null-terminated string from SRC to DST. If SRC does not cover all of COUNT, the balance is zeroed. For SPARC v9. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jan Vondrak and Jakub Jelinek . diff --git a/sysdeps/sparc/sparc64/strpbrk.S b/sysdeps/sparc/sparc64/strpbrk.S index 30930a87a6..0724b6e4f2 100644 --- a/sysdeps/sparc/sparc64/strpbrk.S +++ b/sysdeps/sparc/sparc64/strpbrk.S @@ -1,7 +1,7 @@ /* strpbrk (s, accept) -- Find the first occurrence in S of any character in ACCEPT. For SPARC v9. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/sparc/sparc64/strspn.S b/sysdeps/sparc/sparc64/strspn.S index 8e3b6d0c20..90420853a6 100644 --- a/sysdeps/sparc/sparc64/strspn.S +++ b/sysdeps/sparc/sparc64/strspn.S @@ -1,7 +1,7 @@ /* strspn (str, ss) -- Return the length of the maximum initial segment of S which contains only characters in ACCEPT. For SPARC v9. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek diff --git a/sysdeps/sparc/sparc64/sub_n.S b/sysdeps/sparc/sparc64/sub_n.S index 1328a29894..2ddfddb476 100644 --- a/sysdeps/sparc/sparc64/sub_n.S +++ b/sysdeps/sparc/sparc64/sub_n.S @@ -1,7 +1,7 @@ /* SPARC v9 __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and store difference in a third limb vector. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/sysdeps/sparc/sparc64/submul_1.S b/sysdeps/sparc/sparc64/submul_1.S index 373bd6ce56..c67816d4e4 100644 --- a/sysdeps/sparc/sparc64/submul_1.S +++ b/sysdeps/sparc/sparc64/submul_1.S @@ -1,7 +1,7 @@ /* SPARC v9 __mpn_submul_1 -- Multiply a limb vector with a single limb and subtract the product from a second limb vector. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/sysdeps/sparc/sparc64/tst-audit.h b/sysdeps/sparc/sparc64/tst-audit.h index 36f8e14583..c15d193623 100644 --- a/sysdeps/sparc/sparc64/tst-audit.h +++ b/sysdeps/sparc/sparc64/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. SPARC64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/sparc/stackinfo.h b/sysdeps/sparc/stackinfo.h index 25ad600e56..ff6cd8accd 100644 --- a/sysdeps/sparc/stackinfo.h +++ b/sysdeps/sparc/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/sparc/sysdep.h b/sysdeps/sparc/sysdep.h index 5ea240a4e0..1404cc1b6c 100644 --- a/sysdeps/sparc/sysdep.h +++ b/sysdeps/sparc/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/Makefile b/sysdeps/unix/Makefile index e6adb9dffa..0e535b63f9 100644 --- a/sysdeps/unix/Makefile +++ b/sysdeps/unix/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/bits/signum.h b/sysdeps/unix/bsd/bits/signum.h index d77a9da161..598a4fe4d0 100644 --- a/sysdeps/unix/bsd/bits/signum.h +++ b/sysdeps/unix/bsd/bits/signum.h @@ -1,5 +1,5 @@ /* Signal number definitions. BSD version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/bits/sockaddr.h b/sysdeps/unix/bsd/bits/sockaddr.h index c2a1c9c2e4..ab84c1b38b 100644 --- a/sysdeps/unix/bsd/bits/sockaddr.h +++ b/sysdeps/unix/bsd/bits/sockaddr.h @@ -1,5 +1,5 @@ /* Definition of `struct sockaddr_*' common members. 4.4 BSD version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/ftime.c b/sysdeps/unix/bsd/ftime.c index 9d47bedcea..41bf657052 100644 --- a/sysdeps/unix/bsd/ftime.c +++ b/sysdeps/unix/bsd/ftime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/getpt.c b/sysdeps/unix/bsd/getpt.c index 5a170353d7..05a3658196 100644 --- a/sysdeps/unix/bsd/getpt.c +++ b/sysdeps/unix/bsd/getpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/sysdeps/unix/bsd/gtty.c b/sysdeps/unix/bsd/gtty.c index 4c15ea1ebd..e107770bad 100644 --- a/sysdeps/unix/bsd/gtty.c +++ b/sysdeps/unix/bsd/gtty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/stty.c b/sysdeps/unix/bsd/stty.c index dc27d5d741..7b1c0e5f52 100644 --- a/sysdeps/unix/bsd/stty.c +++ b/sysdeps/unix/bsd/stty.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/tcdrain.c b/sysdeps/unix/bsd/tcdrain.c index bc63a2485a..d5520a8e20 100644 --- a/sysdeps/unix/bsd/tcdrain.c +++ b/sysdeps/unix/bsd/tcdrain.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/tcflow.c b/sysdeps/unix/bsd/tcflow.c index 820d179c17..f94b3d05c6 100644 --- a/sysdeps/unix/bsd/tcflow.c +++ b/sysdeps/unix/bsd/tcflow.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/tcflush.c b/sysdeps/unix/bsd/tcflush.c index 7ba263b6c3..2d2bb0e0eb 100644 --- a/sysdeps/unix/bsd/tcflush.c +++ b/sysdeps/unix/bsd/tcflush.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/tcgetattr.c b/sysdeps/unix/bsd/tcgetattr.c index e5402cddd0..85c9790eca 100644 --- a/sysdeps/unix/bsd/tcgetattr.c +++ b/sysdeps/unix/bsd/tcgetattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/tcgetpgrp.c b/sysdeps/unix/bsd/tcgetpgrp.c index 8e83f48fed..d59a7e1e1d 100644 --- a/sysdeps/unix/bsd/tcgetpgrp.c +++ b/sysdeps/unix/bsd/tcgetpgrp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/tcsendbrk.c b/sysdeps/unix/bsd/tcsendbrk.c index 4f96cb0fc7..20f363e9a3 100644 --- a/sysdeps/unix/bsd/tcsendbrk.c +++ b/sysdeps/unix/bsd/tcsendbrk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/tcsetattr.c b/sysdeps/unix/bsd/tcsetattr.c index bd58771549..4f2c1eddc5 100644 --- a/sysdeps/unix/bsd/tcsetattr.c +++ b/sysdeps/unix/bsd/tcsetattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/tcsetpgrp.c b/sysdeps/unix/bsd/tcsetpgrp.c index a8dd9f43b7..5d6720653f 100644 --- a/sysdeps/unix/bsd/tcsetpgrp.c +++ b/sysdeps/unix/bsd/tcsetpgrp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/ualarm.c b/sysdeps/unix/bsd/ualarm.c index f58061deff..ea486d5b1e 100644 --- a/sysdeps/unix/bsd/ualarm.c +++ b/sysdeps/unix/bsd/ualarm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/unlockpt.c b/sysdeps/unix/bsd/unlockpt.c index 8b1f825443..548f0ddc9a 100644 --- a/sysdeps/unix/bsd/unlockpt.c +++ b/sysdeps/unix/bsd/unlockpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/sysdeps/unix/bsd/wait.c b/sysdeps/unix/bsd/wait.c index c561c60a81..ad56a57bd0 100644 --- a/sysdeps/unix/bsd/wait.c +++ b/sysdeps/unix/bsd/wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/wait3.c b/sysdeps/unix/bsd/wait3.c index 4af9b4b916..aad97a26a5 100644 --- a/sysdeps/unix/bsd/wait3.c +++ b/sysdeps/unix/bsd/wait3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/bsd/waitpid.c b/sysdeps/unix/bsd/waitpid.c index f25110ba79..321d97975f 100644 --- a/sysdeps/unix/bsd/waitpid.c +++ b/sysdeps/unix/bsd/waitpid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/clock_gettime.c b/sysdeps/unix/clock_gettime.c index d46057a6c7..4a1e5b61c6 100644 --- a/sysdeps/unix/clock_gettime.c +++ b/sysdeps/unix/clock_gettime.c @@ -1,5 +1,5 @@ /* clock_gettime -- Get the current time from a POSIX clockid_t. Unix version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/clock_nanosleep.c b/sysdeps/unix/clock_nanosleep.c index 00793242f6..e99a568e56 100644 --- a/sysdeps/unix/clock_nanosleep.c +++ b/sysdeps/unix/clock_nanosleep.c @@ -1,5 +1,5 @@ /* High-resolution sleep with the specified clock. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/clock_settime.c b/sysdeps/unix/clock_settime.c index 6605e9ead9..f3c67ef8c9 100644 --- a/sysdeps/unix/clock_settime.c +++ b/sysdeps/unix/clock_settime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/get_child_max.c b/sysdeps/unix/get_child_max.c index 0fc100a138..3ee5f3156e 100644 --- a/sysdeps/unix/get_child_max.c +++ b/sysdeps/unix/get_child_max.c @@ -1,5 +1,5 @@ /* Get POSIX {CHILD_MAX} run-time limit value. Unix version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/getlogin.c b/sysdeps/unix/getlogin.c index 5b8daef568..9088b5ebc0 100644 --- a/sysdeps/unix/getlogin.c +++ b/sysdeps/unix/getlogin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/getlogin_r.c b/sysdeps/unix/getlogin_r.c index 003c5df562..66f4a7653f 100644 --- a/sysdeps/unix/getlogin_r.c +++ b/sysdeps/unix/getlogin_r.c @@ -1,5 +1,5 @@ /* Reentrant function to return the current login name. Unix version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/getpagesize.c b/sysdeps/unix/getpagesize.c index 18b2503d1e..a66b1e511a 100644 --- a/sysdeps/unix/getpagesize.c +++ b/sysdeps/unix/getpagesize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/grantpt.c b/sysdeps/unix/grantpt.c index 431be855a3..602dfb623a 100644 --- a/sysdeps/unix/grantpt.c +++ b/sysdeps/unix/grantpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/sysdeps/unix/i386/sysdep.S b/sysdeps/unix/i386/sysdep.S index 24e0b1df4d..bfe0d00c1e 100644 --- a/sysdeps/unix/i386/sysdep.S +++ b/sysdeps/unix/i386/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/i386/sysdep.h b/sysdeps/unix/i386/sysdep.h index cac53b35b7..d4f3532547 100644 --- a/sysdeps/unix/i386/sysdep.h +++ b/sysdeps/unix/i386/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/ifreq.c b/sysdeps/unix/ifreq.c index 2db6d0c300..41ea74fdc3 100644 --- a/sysdeps/unix/ifreq.c +++ b/sysdeps/unix/ifreq.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger . diff --git a/sysdeps/unix/powerpc/sysdep.h b/sysdeps/unix/powerpc/sysdep.h index 72eb67d83c..1646a8fc38 100644 --- a/sysdeps/unix/powerpc/sysdep.h +++ b/sysdeps/unix/powerpc/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sh/sysdep.S b/sysdeps/unix/sh/sysdep.S index fd2bcd11bf..5c8c217c21 100644 --- a/sysdeps/unix/sh/sysdep.S +++ b/sysdeps/unix/sh/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sh/sysdep.h b/sysdeps/unix/sh/sysdep.h index 60ebce893b..85302749fc 100644 --- a/sysdeps/unix/sh/sysdep.h +++ b/sysdeps/unix/sh/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sockatmark.c b/sysdeps/unix/sockatmark.c index 0c2256dac1..cf553c44a2 100644 --- a/sysdeps/unix/sockatmark.c +++ b/sysdeps/unix/sockatmark.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/stime.c b/sysdeps/unix/stime.c index ab9bf6159c..4cb02cf02d 100644 --- a/sysdeps/unix/stime.c +++ b/sysdeps/unix/stime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/syscall-template.S b/sysdeps/unix/syscall-template.S index 43d332e871..a67b427f79 100644 --- a/sysdeps/unix/syscall-template.S +++ b/sysdeps/unix/syscall-template.S @@ -1,5 +1,5 @@ /* Assembly code template for system call stubs. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/syscall.S b/sysdeps/unix/syscall.S index f0553c3811..33298adedb 100644 --- a/sysdeps/unix/syscall.S +++ b/sysdeps/unix/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysdep.h b/sysdeps/unix/sysdep.h index 6b1aec1f38..7310820887 100644 --- a/sysdeps/unix/sysdep.h +++ b/sysdeps/unix/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/_exit.c b/sysdeps/unix/sysv/linux/_exit.c index 2022fde0d8..2468228512 100644 --- a/sysdeps/unix/sysv/linux/_exit.c +++ b/sysdeps/unix/sysv/linux/_exit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/accept4.c b/sysdeps/unix/sysv/linux/accept4.c index b20f297278..0e2113434a 100644 --- a/sysdeps/unix/sysv/linux/accept4.c +++ b/sysdeps/unix/sysv/linux/accept4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2008. diff --git a/sysdeps/unix/sysv/linux/adjtime.c b/sysdeps/unix/sysv/linux/adjtime.c index 9052aaf56a..45d4680645 100644 --- a/sysdeps/unix/sysv/linux/adjtime.c +++ b/sysdeps/unix/sysv/linux/adjtime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/aio_sigqueue.c b/sysdeps/unix/sysv/linux/aio_sigqueue.c index 9af05e86af..7bb1e8ea95 100644 --- a/sysdeps/unix/sysv/linux/aio_sigqueue.c +++ b/sysdeps/unix/sysv/linux/aio_sigqueue.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/dirent.h b/sysdeps/unix/sysv/linux/bits/dirent.h index 486ce3c914..49390c9f63 100644 --- a/sysdeps/unix/sysv/linux/bits/dirent.h +++ b/sysdeps/unix/sysv/linux/bits/dirent.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/epoll.h b/sysdeps/unix/sysv/linux/bits/epoll.h index d8b82053e0..e3ebf8d5fe 100644 --- a/sysdeps/unix/sysv/linux/bits/epoll.h +++ b/sysdeps/unix/sysv/linux/bits/epoll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/errno.h b/sysdeps/unix/sysv/linux/bits/errno.h index 17b675ab35..e4995b8130 100644 --- a/sysdeps/unix/sysv/linux/bits/errno.h +++ b/sysdeps/unix/sysv/linux/bits/errno.h @@ -1,5 +1,5 @@ /* Error constants. Linux specific version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/eventfd.h b/sysdeps/unix/sysv/linux/bits/eventfd.h index ef49c617e0..aedcda0224 100644 --- a/sysdeps/unix/sysv/linux/bits/eventfd.h +++ b/sysdeps/unix/sysv/linux/bits/eventfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/fcntl-linux.h b/sysdeps/unix/sysv/linux/bits/fcntl-linux.h index 9b0421ee0c..cd4722b836 100644 --- a/sysdeps/unix/sysv/linux/bits/fcntl-linux.h +++ b/sysdeps/unix/sysv/linux/bits/fcntl-linux.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/in.h b/sysdeps/unix/sysv/linux/bits/in.h index d763ce9fc2..9d74066142 100644 --- a/sysdeps/unix/sysv/linux/bits/in.h +++ b/sysdeps/unix/sysv/linux/bits/in.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/inotify.h b/sysdeps/unix/sysv/linux/bits/inotify.h index ba5d6fa94f..1a99bff6e6 100644 --- a/sysdeps/unix/sysv/linux/bits/inotify.h +++ b/sysdeps/unix/sysv/linux/bits/inotify.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/ioctl-types.h b/sysdeps/unix/sysv/linux/bits/ioctl-types.h index 04b90ef5b1..5b520c5977 100644 --- a/sysdeps/unix/sysv/linux/bits/ioctl-types.h +++ b/sysdeps/unix/sysv/linux/bits/ioctl-types.h @@ -1,5 +1,5 @@ /* Structure types for pre-termios terminal ioctls. Linux version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/ioctls.h b/sysdeps/unix/sysv/linux/bits/ioctls.h index 1ff1e7767d..514caeba4a 100644 --- a/sysdeps/unix/sysv/linux/bits/ioctls.h +++ b/sysdeps/unix/sysv/linux/bits/ioctls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/ipc.h b/sysdeps/unix/sysv/linux/bits/ipc.h index 9460643e73..7a936876ae 100644 --- a/sysdeps/unix/sysv/linux/bits/ipc.h +++ b/sysdeps/unix/sysv/linux/bits/ipc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/local_lim.h b/sysdeps/unix/sysv/linux/bits/local_lim.h index efd4c418a5..518df191ce 100644 --- a/sysdeps/unix/sysv/linux/bits/local_lim.h +++ b/sysdeps/unix/sysv/linux/bits/local_lim.h @@ -1,5 +1,5 @@ /* Minimum guaranteed maximum values for system limits. Linux version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/mman-linux.h b/sysdeps/unix/sysv/linux/bits/mman-linux.h index 05d2d9237b..5473986015 100644 --- a/sysdeps/unix/sysv/linux/bits/mman-linux.h +++ b/sysdeps/unix/sysv/linux/bits/mman-linux.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux generic version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/mqueue.h b/sysdeps/unix/sysv/linux/bits/mqueue.h index 2545395f6b..2168ba546b 100644 --- a/sysdeps/unix/sysv/linux/bits/mqueue.h +++ b/sysdeps/unix/sysv/linux/bits/mqueue.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/msq.h b/sysdeps/unix/sysv/linux/bits/msq.h index 59fc2fdcc3..2f668f05d6 100644 --- a/sysdeps/unix/sysv/linux/bits/msq.h +++ b/sysdeps/unix/sysv/linux/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/param.h b/sysdeps/unix/sysv/linux/bits/param.h index 471dffc4cc..01598f52ae 100644 --- a/sysdeps/unix/sysv/linux/bits/param.h +++ b/sysdeps/unix/sysv/linux/bits/param.h @@ -1,5 +1,5 @@ /* Old-style Unix parameters and limits. Linux version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/poll.h b/sysdeps/unix/sysv/linux/bits/poll.h index fef979151d..e059c45968 100644 --- a/sysdeps/unix/sysv/linux/bits/poll.h +++ b/sysdeps/unix/sysv/linux/bits/poll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/posix_opt.h b/sysdeps/unix/sysv/linux/bits/posix_opt.h index 530443abe7..9617addc5d 100644 --- a/sysdeps/unix/sysv/linux/bits/posix_opt.h +++ b/sysdeps/unix/sysv/linux/bits/posix_opt.h @@ -1,5 +1,5 @@ /* Define POSIX options for Linux. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/resource.h b/sysdeps/unix/sysv/linux/bits/resource.h index 27207ce0ad..95c1702946 100644 --- a/sysdeps/unix/sysv/linux/bits/resource.h +++ b/sysdeps/unix/sysv/linux/bits/resource.h @@ -1,5 +1,5 @@ /* Bit values & structures for resource limits. Linux version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/sched.h b/sysdeps/unix/sysv/linux/bits/sched.h index e42dee8e62..555529d64c 100644 --- a/sysdeps/unix/sysv/linux/bits/sched.h +++ b/sysdeps/unix/sysv/linux/bits/sched.h @@ -1,6 +1,6 @@ /* Definitions of constants and data structure for POSIX 1003.1b-1993 scheduling interface. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/sem.h b/sysdeps/unix/sysv/linux/bits/sem.h index 26ea325a19..8a14e9a250 100644 --- a/sysdeps/unix/sysv/linux/bits/sem.h +++ b/sysdeps/unix/sysv/linux/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/shm.h b/sysdeps/unix/sysv/linux/bits/shm.h index 5390d66cfa..9a38ce565d 100644 --- a/sysdeps/unix/sysv/linux/bits/shm.h +++ b/sysdeps/unix/sysv/linux/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/sigaction.h b/sysdeps/unix/sysv/linux/bits/sigaction.h index 47a7dc13a7..7e97ff1506 100644 --- a/sysdeps/unix/sysv/linux/bits/sigaction.h +++ b/sysdeps/unix/sysv/linux/bits/sigaction.h @@ -1,5 +1,5 @@ /* The proper definitions for Linux's sigaction. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/sigcontext.h b/sysdeps/unix/sysv/linux/bits/sigcontext.h index 70f383e114..05999fdefc 100644 --- a/sysdeps/unix/sysv/linux/bits/sigcontext.h +++ b/sysdeps/unix/sysv/linux/bits/sigcontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/siginfo.h b/sysdeps/unix/sysv/linux/bits/siginfo.h index 160378457e..d71cc9dfd0 100644 --- a/sysdeps/unix/sysv/linux/bits/siginfo.h +++ b/sysdeps/unix/sysv/linux/bits/siginfo.h @@ -1,5 +1,5 @@ /* siginfo_t, sigevent and constants. Linux version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/signalfd.h b/sysdeps/unix/sysv/linux/bits/signalfd.h index babc6dc041..3ea5b4aba9 100644 --- a/sysdeps/unix/sysv/linux/bits/signalfd.h +++ b/sysdeps/unix/sysv/linux/bits/signalfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/signum.h b/sysdeps/unix/sysv/linux/bits/signum.h index 794fea6ecd..3305a4787f 100644 --- a/sysdeps/unix/sysv/linux/bits/signum.h +++ b/sysdeps/unix/sysv/linux/bits/signum.h @@ -1,5 +1,5 @@ /* Signal number definitions. Linux version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/sigset.h b/sysdeps/unix/sysv/linux/bits/sigset.h index b27da769ca..af4ae837f2 100644 --- a/sysdeps/unix/sysv/linux/bits/sigset.h +++ b/sysdeps/unix/sysv/linux/bits/sigset.h @@ -1,5 +1,5 @@ /* __sig_atomic_t, __sigset_t, and related definitions. Linux version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/sigstack.h b/sysdeps/unix/sysv/linux/bits/sigstack.h index b2065c1ceb..e143034ce2 100644 --- a/sysdeps/unix/sysv/linux/bits/sigstack.h +++ b/sysdeps/unix/sysv/linux/bits/sigstack.h @@ -1,5 +1,5 @@ /* sigstack, sigaltstack definitions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h index 9312849d03..7ea165b2bf 100644 --- a/sysdeps/unix/sysv/linux/bits/socket.h +++ b/sysdeps/unix/sysv/linux/bits/socket.h @@ -1,5 +1,5 @@ /* System-specific socket constants and types. Linux version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/socket_type.h b/sysdeps/unix/sysv/linux/bits/socket_type.h index 3288daaa3f..576e8aa60e 100644 --- a/sysdeps/unix/sysv/linux/bits/socket_type.h +++ b/sysdeps/unix/sysv/linux/bits/socket_type.h @@ -1,5 +1,5 @@ /* Define enum __socket_type for generic Linux. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/stat.h b/sysdeps/unix/sysv/linux/bits/stat.h index 65e2a5a30a..769f99a6d7 100644 --- a/sysdeps/unix/sysv/linux/bits/stat.h +++ b/sysdeps/unix/sysv/linux/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/statfs.h b/sysdeps/unix/sysv/linux/bits/statfs.h index aad8980fd5..a3aab96069 100644 --- a/sysdeps/unix/sysv/linux/bits/statfs.h +++ b/sysdeps/unix/sysv/linux/bits/statfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/statvfs.h b/sysdeps/unix/sysv/linux/bits/statvfs.h index 3466a5b133..dc9ddedee1 100644 --- a/sysdeps/unix/sysv/linux/bits/statvfs.h +++ b/sysdeps/unix/sysv/linux/bits/statvfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/sys_errlist.h b/sysdeps/unix/sysv/linux/bits/sys_errlist.h index f0c2242d81..47ba9ceba9 100644 --- a/sysdeps/unix/sysv/linux/bits/sys_errlist.h +++ b/sysdeps/unix/sysv/linux/bits/sys_errlist.h @@ -1,5 +1,5 @@ /* Declare sys_errlist and sys_nerr, or don't. Compatibility (do) version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/termios.h b/sysdeps/unix/sysv/linux/bits/termios.h index 171bae04ca..db283c8b25 100644 --- a/sysdeps/unix/sysv/linux/bits/termios.h +++ b/sysdeps/unix/sysv/linux/bits/termios.h @@ -1,5 +1,5 @@ /* termios type and macro definitions. Linux version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/time.h b/sysdeps/unix/sysv/linux/bits/time.h index 21dba71e82..10805475bf 100644 --- a/sysdeps/unix/sysv/linux/bits/time.h +++ b/sysdeps/unix/sysv/linux/bits/time.h @@ -1,5 +1,5 @@ /* System-dependent timing definitions. Linux version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/timerfd.h b/sysdeps/unix/sysv/linux/bits/timerfd.h index f98972428e..4957b59dc7 100644 --- a/sysdeps/unix/sysv/linux/bits/timerfd.h +++ b/sysdeps/unix/sysv/linux/bits/timerfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/timex.h b/sysdeps/unix/sysv/linux/bits/timex.h index e9ce8a80ea..ec5b42174f 100644 --- a/sysdeps/unix/sysv/linux/bits/timex.h +++ b/sysdeps/unix/sysv/linux/bits/timex.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/uio.h b/sysdeps/unix/sysv/linux/bits/uio.h index 9c16215299..1ffc0f607f 100644 --- a/sysdeps/unix/sysv/linux/bits/uio.h +++ b/sysdeps/unix/sysv/linux/bits/uio.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/utsname.h b/sysdeps/unix/sysv/linux/bits/utsname.h index f093af6d66..9e13f6a89b 100644 --- a/sysdeps/unix/sysv/linux/bits/utsname.h +++ b/sysdeps/unix/sysv/linux/bits/utsname.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/bits/waitflags.h b/sysdeps/unix/sysv/linux/bits/waitflags.h index 2be017d7ef..0f4e7b445b 100644 --- a/sysdeps/unix/sysv/linux/bits/waitflags.h +++ b/sysdeps/unix/sysv/linux/bits/waitflags.h @@ -1,5 +1,5 @@ /* Definitions of flag bits for `waitpid' et al. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/check_native.c b/sysdeps/unix/sysv/linux/check_native.c index 802fa6cfbe..68adeb8771 100644 --- a/sysdeps/unix/sysv/linux/check_native.c +++ b/sysdeps/unix/sysv/linux/check_native.c @@ -1,5 +1,5 @@ /* Determine whether interfaces use native transport. Linux version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/check_pf.c b/sysdeps/unix/sysv/linux/check_pf.c index 34c21461bb..dd333b4a94 100644 --- a/sysdeps/unix/sysv/linux/check_pf.c +++ b/sysdeps/unix/sysv/linux/check_pf.c @@ -1,5 +1,5 @@ /* Determine protocol families for which interfaces exist. Linux version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/clock.c b/sysdeps/unix/sysv/linux/clock.c index 16036bd139..e66e81baf7 100644 --- a/sysdeps/unix/sysv/linux/clock.c +++ b/sysdeps/unix/sysv/linux/clock.c @@ -1,5 +1,5 @@ /* Return the time used by the program so far (user time + system time). - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/clock_getcpuclockid.c b/sysdeps/unix/sysv/linux/clock_getcpuclockid.c index e234bdc609..b1e3db578c 100644 --- a/sysdeps/unix/sysv/linux/clock_getcpuclockid.c +++ b/sysdeps/unix/sysv/linux/clock_getcpuclockid.c @@ -1,5 +1,5 @@ /* clock_getcpuclockid -- Get a clockid_t for process CPU time. Linux version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/clock_getres.c b/sysdeps/unix/sysv/linux/clock_getres.c index 7941a5a8dd..e822b94d87 100644 --- a/sysdeps/unix/sysv/linux/clock_getres.c +++ b/sysdeps/unix/sysv/linux/clock_getres.c @@ -1,5 +1,5 @@ /* clock_getres -- Get the resolution of a POSIX clockid_t. Linux version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/clock_gettime.c b/sysdeps/unix/sysv/linux/clock_gettime.c index 77aa876d94..a3182628d6 100644 --- a/sysdeps/unix/sysv/linux/clock_gettime.c +++ b/sysdeps/unix/sysv/linux/clock_gettime.c @@ -1,5 +1,5 @@ /* clock_gettime -- Get current time from a POSIX clockid_t. Linux version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/clock_nanosleep.c b/sysdeps/unix/sysv/linux/clock_nanosleep.c index 2e496d28c6..0597c5e1fd 100644 --- a/sysdeps/unix/sysv/linux/clock_nanosleep.c +++ b/sysdeps/unix/sysv/linux/clock_nanosleep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/clock_settime.c b/sysdeps/unix/sysv/linux/clock_settime.c index c690ae220c..394c0a33ab 100644 --- a/sysdeps/unix/sysv/linux/clock_settime.c +++ b/sysdeps/unix/sysv/linux/clock_settime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/cmsg_nxthdr.c b/sysdeps/unix/sysv/linux/cmsg_nxthdr.c index 11289239dc..fffabe45be 100644 --- a/sysdeps/unix/sysv/linux/cmsg_nxthdr.c +++ b/sysdeps/unix/sysv/linux/cmsg_nxthdr.c @@ -1,5 +1,5 @@ /* Return point to next ancillary data entry in message header. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/device-nrs.h b/sysdeps/unix/sysv/linux/device-nrs.h index 2746c12241..a3dbd8cc9a 100644 --- a/sysdeps/unix/sysv/linux/device-nrs.h +++ b/sysdeps/unix/sysv/linux/device-nrs.h @@ -1,5 +1,5 @@ /* Device numbers of devices used in the implementation. Linux version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/dl-execstack.c b/sysdeps/unix/sysv/linux/dl-execstack.c index 6b2b3861d3..159fd96b52 100644 --- a/sysdeps/unix/sysv/linux/dl-execstack.c +++ b/sysdeps/unix/sysv/linux/dl-execstack.c @@ -1,5 +1,5 @@ /* Stack executability handling for GNU dynamic linker. Linux version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/dl-librecon.h b/sysdeps/unix/sysv/linux/dl-librecon.h index af4caab3d6..7ff36a2b14 100644 --- a/sysdeps/unix/sysv/linux/dl-librecon.h +++ b/sysdeps/unix/sysv/linux/dl-librecon.h @@ -1,5 +1,5 @@ /* Optional code to distinguish library flavours. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2001. diff --git a/sysdeps/unix/sysv/linux/dl-openat64.c b/sysdeps/unix/sysv/linux/dl-openat64.c index aa7496dea3..9d00b459a6 100644 --- a/sysdeps/unix/sysv/linux/dl-openat64.c +++ b/sysdeps/unix/sysv/linux/dl-openat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/sysdeps/unix/sysv/linux/dl-origin.c b/sysdeps/unix/sysv/linux/dl-origin.c index 36fb232e18..052b9ed110 100644 --- a/sysdeps/unix/sysv/linux/dl-origin.c +++ b/sysdeps/unix/sysv/linux/dl-origin.c @@ -1,5 +1,5 @@ /* Find path of executable. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/unix/sysv/linux/dl-osinfo.h b/sysdeps/unix/sysv/linux/dl-osinfo.h index 9dad8e6f89..6608e6adb3 100644 --- a/sysdeps/unix/sysv/linux/dl-osinfo.h +++ b/sysdeps/unix/sysv/linux/dl-osinfo.h @@ -1,5 +1,5 @@ /* Operating system specific code for generic dynamic loader functions. Linux. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/dl-sysdep.c b/sysdeps/unix/sysv/linux/dl-sysdep.c index 4b837acbc0..676c9b246f 100644 --- a/sysdeps/unix/sysv/linux/dl-sysdep.c +++ b/sysdeps/unix/sysv/linux/dl-sysdep.c @@ -1,5 +1,5 @@ /* Dynamic linker system dependencies for Linux. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/dl-sysdep.h b/sysdeps/unix/sysv/linux/dl-sysdep.h index 0fe1e1c3d0..8e39c83217 100644 --- a/sysdeps/unix/sysv/linux/dl-sysdep.h +++ b/sysdeps/unix/sysv/linux/dl-sysdep.h @@ -1,5 +1,5 @@ /* System-specific settings for dynamic linker code. Linux version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/dl-vdso.c b/sysdeps/unix/sysv/linux/dl-vdso.c index 0219711ed5..64e4bf75f8 100644 --- a/sysdeps/unix/sysv/linux/dl-vdso.c +++ b/sysdeps/unix/sysv/linux/dl-vdso.c @@ -1,5 +1,5 @@ /* ELF symbol resolve functions for VDSO objects. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/dl-vdso.h b/sysdeps/unix/sysv/linux/dl-vdso.h index c05f5bd4af..a71dc3b695 100644 --- a/sysdeps/unix/sysv/linux/dl-vdso.h +++ b/sysdeps/unix/sysv/linux/dl-vdso.h @@ -1,5 +1,5 @@ /* ELF symbol resolve functions for VDSO objects. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/dl-writev.h b/sysdeps/unix/sysv/linux/dl-writev.h index b682e0c4b6..f05c7a6399 100644 --- a/sysdeps/unix/sysv/linux/dl-writev.h +++ b/sysdeps/unix/sysv/linux/dl-writev.h @@ -1,5 +1,5 @@ /* Message-writing for the dynamic linker. Linux version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/epoll_pwait.c b/sysdeps/unix/sysv/linux/epoll_pwait.c index dad6c8eb25..7d98755929 100644 --- a/sysdeps/unix/sysv/linux/epoll_pwait.c +++ b/sysdeps/unix/sysv/linux/epoll_pwait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/errqueue.h b/sysdeps/unix/sysv/linux/errqueue.h index 103a18a833..495a680896 100644 --- a/sysdeps/unix/sysv/linux/errqueue.h +++ b/sysdeps/unix/sysv/linux/errqueue.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/eventfd.c b/sysdeps/unix/sysv/linux/eventfd.c index fa4b432d30..425c8112cd 100644 --- a/sysdeps/unix/sysv/linux/eventfd.c +++ b/sysdeps/unix/sysv/linux/eventfd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/eventfd_read.c b/sysdeps/unix/sysv/linux/eventfd_read.c index d3e0cf38cb..6e4cb875cd 100644 --- a/sysdeps/unix/sysv/linux/eventfd_read.c +++ b/sysdeps/unix/sysv/linux/eventfd_read.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/eventfd_write.c b/sysdeps/unix/sysv/linux/eventfd_write.c index 01808e905a..4f1f860324 100644 --- a/sysdeps/unix/sysv/linux/eventfd_write.c +++ b/sysdeps/unix/sysv/linux/eventfd_write.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/execve.c b/sysdeps/unix/sysv/linux/execve.c index 5ee5ecbe55..db96226f65 100644 --- a/sysdeps/unix/sysv/linux/execve.c +++ b/sysdeps/unix/sysv/linux/execve.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/exit-thread.S b/sysdeps/unix/sysv/linux/exit-thread.S index 17a41a83b6..741cea4c58 100644 --- a/sysdeps/unix/sysv/linux/exit-thread.S +++ b/sysdeps/unix/sysv/linux/exit-thread.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/faccessat.c b/sysdeps/unix/sysv/linux/faccessat.c index fcb2dc80ca..06abac278d 100644 --- a/sysdeps/unix/sysv/linux/faccessat.c +++ b/sysdeps/unix/sysv/linux/faccessat.c @@ -1,5 +1,5 @@ /* Test for access to file, relative to open directory. Linux version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fallocate.c b/sysdeps/unix/sysv/linux/fallocate.c index 3eee8876e0..206d3d9ec4 100644 --- a/sysdeps/unix/sysv/linux/fallocate.c +++ b/sysdeps/unix/sysv/linux/fallocate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fallocate64.c b/sysdeps/unix/sysv/linux/fallocate64.c index 44463758e6..e5380c7aba 100644 --- a/sysdeps/unix/sysv/linux/fallocate64.c +++ b/sysdeps/unix/sysv/linux/fallocate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fatal-prepare.h b/sysdeps/unix/sysv/linux/fatal-prepare.h index d445e77d81..7a02c258dd 100644 --- a/sysdeps/unix/sysv/linux/fatal-prepare.h +++ b/sysdeps/unix/sysv/linux/fatal-prepare.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fchmodat.c b/sysdeps/unix/sysv/linux/fchmodat.c index 1093cabe19..803988d88c 100644 --- a/sysdeps/unix/sysv/linux/fchmodat.c +++ b/sysdeps/unix/sysv/linux/fchmodat.c @@ -1,5 +1,5 @@ /* Change the protections of file relative to open directory. Linux version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fchownat.c b/sysdeps/unix/sysv/linux/fchownat.c index acb9c2520e..b0329cd2c2 100644 --- a/sysdeps/unix/sysv/linux/fchownat.c +++ b/sysdeps/unix/sysv/linux/fchownat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fcntl.c b/sysdeps/unix/sysv/linux/fcntl.c index 725609c769..1432a2cdb5 100644 --- a/sysdeps/unix/sysv/linux/fcntl.c +++ b/sysdeps/unix/sysv/linux/fcntl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fd_to_filename.h b/sysdeps/unix/sysv/linux/fd_to_filename.h index bdd0d65598..7e0ecde13d 100644 --- a/sysdeps/unix/sysv/linux/fd_to_filename.h +++ b/sysdeps/unix/sysv/linux/fd_to_filename.h @@ -1,5 +1,5 @@ /* Query filename corresponding to an open FD. Linux version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fexecve.c b/sysdeps/unix/sysv/linux/fexecve.c index 89daf0a517..e676befb92 100644 --- a/sysdeps/unix/sysv/linux/fexecve.c +++ b/sysdeps/unix/sysv/linux/fexecve.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fips-private.h b/sysdeps/unix/sysv/linux/fips-private.h index 271dca3e5f..49c062c921 100644 --- a/sysdeps/unix/sysv/linux/fips-private.h +++ b/sysdeps/unix/sysv/linux/fips-private.h @@ -1,5 +1,5 @@ /* FIPS compliance status test for GNU/Linux systems. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fpathconf.c b/sysdeps/unix/sysv/linux/fpathconf.c index e8c4dc972d..0f2d019094 100644 --- a/sysdeps/unix/sysv/linux/fpathconf.c +++ b/sysdeps/unix/sysv/linux/fpathconf.c @@ -1,5 +1,5 @@ /* Get file-specific information about descriptor FD. Linux version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fstatfs64.c b/sysdeps/unix/sysv/linux/fstatfs64.c index eccd6d44ae..c1fa47dc81 100644 --- a/sysdeps/unix/sysv/linux/fstatfs64.c +++ b/sysdeps/unix/sysv/linux/fstatfs64.c @@ -1,5 +1,5 @@ /* Return information about the filesystem on which FD resides. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fstatvfs.c b/sysdeps/unix/sysv/linux/fstatvfs.c index 8f08d145aa..da1f27e721 100644 --- a/sysdeps/unix/sysv/linux/fstatvfs.c +++ b/sysdeps/unix/sysv/linux/fstatvfs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/unix/sysv/linux/fstatvfs64.c b/sysdeps/unix/sysv/linux/fstatvfs64.c index 2dcef9437b..dd10c1ffec 100644 --- a/sysdeps/unix/sysv/linux/fstatvfs64.c +++ b/sysdeps/unix/sysv/linux/fstatvfs64.c @@ -1,5 +1,5 @@ /* Return information about the filesystem on which FD resides. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/ftruncate64.c b/sysdeps/unix/sysv/linux/ftruncate64.c index 6101a05db5..af4930ee68 100644 --- a/sysdeps/unix/sysv/linux/ftruncate64.c +++ b/sysdeps/unix/sysv/linux/ftruncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/futimens.c b/sysdeps/unix/sysv/linux/futimens.c index 35d25eb00f..3978662aab 100644 --- a/sysdeps/unix/sysv/linux/futimens.c +++ b/sysdeps/unix/sysv/linux/futimens.c @@ -1,5 +1,5 @@ /* Change access and modification times of open file. Linux version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/futimes.c b/sysdeps/unix/sysv/linux/futimes.c index d379502869..1b1f005073 100644 --- a/sysdeps/unix/sysv/linux/futimes.c +++ b/sysdeps/unix/sysv/linux/futimes.c @@ -1,5 +1,5 @@ /* futimes -- change access and modification times of open file. Linux version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/futimesat.c b/sysdeps/unix/sysv/linux/futimesat.c index 1b8a937738..ce7290e0f3 100644 --- a/sysdeps/unix/sysv/linux/futimesat.c +++ b/sysdeps/unix/sysv/linux/futimesat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fxstat.c b/sysdeps/unix/sysv/linux/fxstat.c index 3623fdf1c1..c489da25b2 100644 --- a/sysdeps/unix/sysv/linux/fxstat.c +++ b/sysdeps/unix/sysv/linux/fxstat.c @@ -1,5 +1,5 @@ /* fxstat using old-style Unix fstat system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fxstat64.c b/sysdeps/unix/sysv/linux/fxstat64.c index 3cb1c35037..d5eb65ed98 100644 --- a/sysdeps/unix/sysv/linux/fxstat64.c +++ b/sysdeps/unix/sysv/linux/fxstat64.c @@ -1,5 +1,5 @@ /* fxstat64 using Linux fstat64 system call. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fxstatat.c b/sysdeps/unix/sysv/linux/fxstatat.c index b8bd8a5c16..9acbf36a9b 100644 --- a/sysdeps/unix/sysv/linux/fxstatat.c +++ b/sysdeps/unix/sysv/linux/fxstatat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/fxstatat64.c b/sysdeps/unix/sysv/linux/fxstatat64.c index abd39ea906..b6195c877a 100644 --- a/sysdeps/unix/sysv/linux/fxstatat64.c +++ b/sysdeps/unix/sysv/linux/fxstatat64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/gai_sigqueue.c b/sysdeps/unix/sysv/linux/gai_sigqueue.c index 5c8cb44987..1785a6b12c 100644 --- a/sysdeps/unix/sysv/linux/gai_sigqueue.c +++ b/sysdeps/unix/sysv/linux/gai_sigqueue.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/getclktck.c b/sysdeps/unix/sysv/linux/getclktck.c index 47ec6c06db..4f7e25eb31 100644 --- a/sysdeps/unix/sysv/linux/getclktck.c +++ b/sysdeps/unix/sysv/linux/getclktck.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/getcwd.c b/sysdeps/unix/sysv/linux/getcwd.c index 212b6b7a21..ccf3bf25c6 100644 --- a/sysdeps/unix/sysv/linux/getcwd.c +++ b/sysdeps/unix/sysv/linux/getcwd.c @@ -1,5 +1,5 @@ /* Determine current working directory. Linux version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/getdents.c b/sysdeps/unix/sysv/linux/getdents.c index 2d588a6021..b708e499aa 100644 --- a/sysdeps/unix/sysv/linux/getdents.c +++ b/sysdeps/unix/sysv/linux/getdents.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/getdirentries.c b/sysdeps/unix/sysv/linux/getdirentries.c index 2301db83ce..8023ac0510 100644 --- a/sysdeps/unix/sysv/linux/getdirentries.c +++ b/sysdeps/unix/sysv/linux/getdirentries.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/getdtsz.c b/sysdeps/unix/sysv/linux/getdtsz.c index 0e7048db2c..d3584fd876 100644 --- a/sysdeps/unix/sysv/linux/getdtsz.c +++ b/sysdeps/unix/sysv/linux/getdtsz.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/gethostid.c b/sysdeps/unix/sysv/linux/gethostid.c index 6f551b7682..6de02fa157 100644 --- a/sysdeps/unix/sysv/linux/gethostid.c +++ b/sysdeps/unix/sysv/linux/gethostid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/getipv4sourcefilter.c b/sysdeps/unix/sysv/linux/getipv4sourcefilter.c index 99082483ba..9fd4b1ddcf 100644 --- a/sysdeps/unix/sysv/linux/getipv4sourcefilter.c +++ b/sysdeps/unix/sysv/linux/getipv4sourcefilter.c @@ -1,5 +1,5 @@ /* Get IPv4 source filter. Linux version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/sysdeps/unix/sysv/linux/getloadavg.c b/sysdeps/unix/sysv/linux/getloadavg.c index ce3e864b39..e57faa6837 100644 --- a/sysdeps/unix/sysv/linux/getloadavg.c +++ b/sysdeps/unix/sysv/linux/getloadavg.c @@ -1,5 +1,5 @@ /* Get system load averages. Linux (/proc/loadavg) version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/getlogin.c b/sysdeps/unix/sysv/linux/getlogin.c index 55cb6248e3..dca3e87aeb 100644 --- a/sysdeps/unix/sysv/linux/getlogin.c +++ b/sysdeps/unix/sysv/linux/getlogin.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/getlogin_r.c b/sysdeps/unix/sysv/linux/getlogin_r.c index 3e791d69bf..8a624beed2 100644 --- a/sysdeps/unix/sysv/linux/getlogin_r.c +++ b/sysdeps/unix/sysv/linux/getlogin_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/getpagesize.c b/sysdeps/unix/sysv/linux/getpagesize.c index e1454158c4..95050cca4d 100644 --- a/sysdeps/unix/sysv/linux/getpagesize.c +++ b/sysdeps/unix/sysv/linux/getpagesize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/getpriority.c b/sysdeps/unix/sysv/linux/getpriority.c index c187a15e87..cb58320342 100644 --- a/sysdeps/unix/sysv/linux/getpriority.c +++ b/sysdeps/unix/sysv/linux/getpriority.c @@ -1,5 +1,5 @@ /* getpriority for Linux. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/getpt.c b/sysdeps/unix/sysv/linux/getpt.c index a9f0ec0033..cea2fa6f3b 100644 --- a/sysdeps/unix/sysv/linux/getpt.c +++ b/sysdeps/unix/sysv/linux/getpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/sysdeps/unix/sysv/linux/getrlimit64.c b/sysdeps/unix/sysv/linux/getrlimit64.c index 6e01800586..d50359359e 100644 --- a/sysdeps/unix/sysv/linux/getrlimit64.c +++ b/sysdeps/unix/sysv/linux/getrlimit64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/getsourcefilter.c b/sysdeps/unix/sysv/linux/getsourcefilter.c index 682f424899..037baf590b 100644 --- a/sysdeps/unix/sysv/linux/getsourcefilter.c +++ b/sysdeps/unix/sysv/linux/getsourcefilter.c @@ -1,5 +1,5 @@ /* Get source filter. Linux version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/sysdeps/unix/sysv/linux/getsysstats.c b/sysdeps/unix/sysv/linux/getsysstats.c index 88f28c9e19..b6a6fe3e2f 100644 --- a/sysdeps/unix/sysv/linux/getsysstats.c +++ b/sysdeps/unix/sysv/linux/getsysstats.c @@ -1,5 +1,5 @@ /* Determine various system internal values, Linux version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/unix/sysv/linux/i386/____longjmp_chk.S b/sysdeps/unix/sysv/linux/i386/____longjmp_chk.S index da75289aaf..4020de7641 100644 --- a/sysdeps/unix/sysv/linux/i386/____longjmp_chk.S +++ b/sysdeps/unix/sysv/linux/i386/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/_exit.S b/sysdeps/unix/sysv/linux/i386/_exit.S index 5fd9ea6dab..894f9a7801 100644 --- a/sysdeps/unix/sysv/linux/i386/_exit.S +++ b/sysdeps/unix/sysv/linux/i386/_exit.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/accept4.S b/sysdeps/unix/sysv/linux/i386/accept4.S index e8c82c7e5b..cdce27b57f 100644 --- a/sysdeps/unix/sysv/linux/i386/accept4.S +++ b/sysdeps/unix/sysv/linux/i386/accept4.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/alphasort64.c b/sysdeps/unix/sysv/linux/i386/alphasort64.c index 6aa671e85c..4c62dc0e80 100644 --- a/sysdeps/unix/sysv/linux/i386/alphasort64.c +++ b/sysdeps/unix/sysv/linux/i386/alphasort64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/brk.c b/sysdeps/unix/sysv/linux/i386/brk.c index 880542a61b..c78ebebb37 100644 --- a/sysdeps/unix/sysv/linux/i386/brk.c +++ b/sysdeps/unix/sysv/linux/i386/brk.c @@ -1,5 +1,5 @@ /* brk system call for Linux/i386. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/call_pselect6.S b/sysdeps/unix/sysv/linux/i386/call_pselect6.S index 85b7100f04..e343262edb 100644 --- a/sysdeps/unix/sysv/linux/i386/call_pselect6.S +++ b/sysdeps/unix/sysv/linux/i386/call_pselect6.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2006. diff --git a/sysdeps/unix/sysv/linux/i386/call_sync_file_range.S b/sysdeps/unix/sysv/linux/i386/call_sync_file_range.S index 6ca68a8bd8..ff1c56743c 100644 --- a/sysdeps/unix/sysv/linux/i386/call_sync_file_range.S +++ b/sysdeps/unix/sysv/linux/i386/call_sync_file_range.S @@ -1,5 +1,5 @@ /* Selective file content synch'ing. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/chown.c b/sysdeps/unix/sysv/linux/i386/chown.c index 5fa640285c..4f63b2cc9e 100644 --- a/sysdeps/unix/sysv/linux/i386/chown.c +++ b/sysdeps/unix/sysv/linux/i386/chown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/clone.S b/sysdeps/unix/sysv/linux/i386/clone.S index dbd65d8da6..c8dd2e4a37 100644 --- a/sysdeps/unix/sysv/linux/i386/clone.S +++ b/sysdeps/unix/sysv/linux/i386/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@tamu.edu) diff --git a/sysdeps/unix/sysv/linux/i386/dl-librecon.h b/sysdeps/unix/sysv/linux/i386/dl-librecon.h index fe26e2669e..95e32acae2 100644 --- a/sysdeps/unix/sysv/linux/i386/dl-librecon.h +++ b/sysdeps/unix/sysv/linux/i386/dl-librecon.h @@ -1,5 +1,5 @@ /* Optional code to distinguish library flavours. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/unix/sysv/linux/i386/dl-procinfo.h b/sysdeps/unix/sysv/linux/i386/dl-procinfo.h index 10f1c00b7b..ecfef09ecd 100644 --- a/sysdeps/unix/sysv/linux/i386/dl-procinfo.h +++ b/sysdeps/unix/sysv/linux/i386/dl-procinfo.h @@ -1,5 +1,5 @@ /* Linux/i386 version of processor capability information handling macros. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/unix/sysv/linux/i386/epoll_pwait.S b/sysdeps/unix/sysv/linux/i386/epoll_pwait.S index d958fbfbc0..457d84e3e6 100644 --- a/sysdeps/unix/sysv/linux/i386/epoll_pwait.S +++ b/sysdeps/unix/sysv/linux/i386/epoll_pwait.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/fallocate.c b/sysdeps/unix/sysv/linux/i386/fallocate.c index aaaa6a688a..00fc6f3b76 100644 --- a/sysdeps/unix/sysv/linux/i386/fallocate.c +++ b/sysdeps/unix/sysv/linux/i386/fallocate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/fallocate64.c b/sysdeps/unix/sysv/linux/i386/fallocate64.c index c3ba3b0bd5..14c304877d 100644 --- a/sysdeps/unix/sysv/linux/i386/fallocate64.c +++ b/sysdeps/unix/sysv/linux/i386/fallocate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/fchown.c b/sysdeps/unix/sysv/linux/i386/fchown.c index 6d390f1ae1..7fbfd930c6 100644 --- a/sysdeps/unix/sysv/linux/i386/fchown.c +++ b/sysdeps/unix/sysv/linux/i386/fchown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/fchownat.c b/sysdeps/unix/sysv/linux/i386/fchownat.c index 4a8288b378..7726bb6f72 100644 --- a/sysdeps/unix/sysv/linux/i386/fchownat.c +++ b/sysdeps/unix/sysv/linux/i386/fchownat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/fcntl.c b/sysdeps/unix/sysv/linux/i386/fcntl.c index f927f149b8..c76878c155 100644 --- a/sysdeps/unix/sysv/linux/i386/fcntl.c +++ b/sysdeps/unix/sysv/linux/i386/fcntl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/fxstat.c b/sysdeps/unix/sysv/linux/i386/fxstat.c index 4f34a4cefe..0eaaf25c0c 100644 --- a/sysdeps/unix/sysv/linux/i386/fxstat.c +++ b/sysdeps/unix/sysv/linux/i386/fxstat.c @@ -1,5 +1,5 @@ /* fxstat using old-style Unix fstat system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/fxstatat.c b/sysdeps/unix/sysv/linux/i386/fxstatat.c index 7ecbbe0891..4180947dca 100644 --- a/sysdeps/unix/sysv/linux/i386/fxstatat.c +++ b/sysdeps/unix/sysv/linux/i386/fxstatat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/get_clockfreq.c b/sysdeps/unix/sysv/linux/i386/get_clockfreq.c index 18241b283c..9555c26580 100644 --- a/sysdeps/unix/sysv/linux/i386/get_clockfreq.c +++ b/sysdeps/unix/sysv/linux/i386/get_clockfreq.c @@ -1,5 +1,5 @@ /* Get frequency of the system processor. i386/Linux version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/getcontext.S b/sysdeps/unix/sysv/linux/i386/getcontext.S index 690fe41167..35ecf449cb 100644 --- a/sysdeps/unix/sysv/linux/i386/getcontext.S +++ b/sysdeps/unix/sysv/linux/i386/getcontext.S @@ -1,5 +1,5 @@ /* Save current context. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/sysdeps/unix/sysv/linux/i386/getdents64.c b/sysdeps/unix/sysv/linux/i386/getdents64.c index 636d421576..b5254de094 100644 --- a/sysdeps/unix/sysv/linux/i386/getdents64.c +++ b/sysdeps/unix/sysv/linux/i386/getdents64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/getegid.c b/sysdeps/unix/sysv/linux/i386/getegid.c index 81361432c2..ec56bfbcf9 100644 --- a/sysdeps/unix/sysv/linux/i386/getegid.c +++ b/sysdeps/unix/sysv/linux/i386/getegid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/geteuid.c b/sysdeps/unix/sysv/linux/i386/geteuid.c index 380f271c6c..c4e794ab23 100644 --- a/sysdeps/unix/sysv/linux/i386/geteuid.c +++ b/sysdeps/unix/sysv/linux/i386/geteuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/getgid.c b/sysdeps/unix/sysv/linux/i386/getgid.c index 856bf0c8c9..6ef073bb1a 100644 --- a/sysdeps/unix/sysv/linux/i386/getgid.c +++ b/sysdeps/unix/sysv/linux/i386/getgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/getgroups.c b/sysdeps/unix/sysv/linux/i386/getgroups.c index 7d85f8f39b..556fffacda 100644 --- a/sysdeps/unix/sysv/linux/i386/getgroups.c +++ b/sysdeps/unix/sysv/linux/i386/getgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/getmsg.c b/sysdeps/unix/sysv/linux/i386/getmsg.c index cffb1b051f..83414707ad 100644 --- a/sysdeps/unix/sysv/linux/i386/getmsg.c +++ b/sysdeps/unix/sysv/linux/i386/getmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/getresgid.c b/sysdeps/unix/sysv/linux/i386/getresgid.c index bdc3b82b69..f1fca1e755 100644 --- a/sysdeps/unix/sysv/linux/i386/getresgid.c +++ b/sysdeps/unix/sysv/linux/i386/getresgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/getresuid.c b/sysdeps/unix/sysv/linux/i386/getresuid.c index 49b3302840..fff076c0ba 100644 --- a/sysdeps/unix/sysv/linux/i386/getresuid.c +++ b/sysdeps/unix/sysv/linux/i386/getresuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/getrlimit64.c b/sysdeps/unix/sysv/linux/i386/getrlimit64.c index 89e52a83af..2adf55c237 100644 --- a/sysdeps/unix/sysv/linux/i386/getrlimit64.c +++ b/sysdeps/unix/sysv/linux/i386/getrlimit64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/getuid.c b/sysdeps/unix/sysv/linux/i386/getuid.c index 4f398e140b..60e24cc50d 100644 --- a/sysdeps/unix/sysv/linux/i386/getuid.c +++ b/sysdeps/unix/sysv/linux/i386/getuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/lchown.c b/sysdeps/unix/sysv/linux/i386/lchown.c index 0b7073c14a..cfa7e97a2e 100644 --- a/sysdeps/unix/sysv/linux/i386/lchown.c +++ b/sysdeps/unix/sysv/linux/i386/lchown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/ldconfig.h b/sysdeps/unix/sysv/linux/i386/ldconfig.h index cedda87ae8..4b95c86de5 100644 --- a/sysdeps/unix/sysv/linux/i386/ldconfig.h +++ b/sysdeps/unix/sysv/linux/i386/ldconfig.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/lockf64.c b/sysdeps/unix/sysv/linux/i386/lockf64.c index a68d77c05c..63d733933b 100644 --- a/sysdeps/unix/sysv/linux/i386/lockf64.c +++ b/sysdeps/unix/sysv/linux/i386/lockf64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/lxstat.c b/sysdeps/unix/sysv/linux/i386/lxstat.c index 8e595b1b58..61bcb0c4e5 100644 --- a/sysdeps/unix/sysv/linux/i386/lxstat.c +++ b/sysdeps/unix/sysv/linux/i386/lxstat.c @@ -1,5 +1,5 @@ /* lxstat using old-style Unix lstat system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/makecontext.S b/sysdeps/unix/sysv/linux/i386/makecontext.S index c36fedc903..1328cfb928 100644 --- a/sysdeps/unix/sysv/linux/i386/makecontext.S +++ b/sysdeps/unix/sysv/linux/i386/makecontext.S @@ -1,5 +1,5 @@ /* Create new context. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/sysdeps/unix/sysv/linux/i386/mmap.S b/sysdeps/unix/sysv/linux/i386/mmap.S index 0addf65e44..923c51b5b7 100644 --- a/sysdeps/unix/sysv/linux/i386/mmap.S +++ b/sysdeps/unix/sysv/linux/i386/mmap.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/mmap64.S b/sysdeps/unix/sysv/linux/i386/mmap64.S index 31a0f67827..c6fef0c079 100644 --- a/sysdeps/unix/sysv/linux/i386/mmap64.S +++ b/sysdeps/unix/sysv/linux/i386/mmap64.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/msgctl.c b/sysdeps/unix/sysv/linux/i386/msgctl.c index e0af4e3e93..3bf7fa2df3 100644 --- a/sysdeps/unix/sysv/linux/i386/msgctl.c +++ b/sysdeps/unix/sysv/linux/i386/msgctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/i386/olddirent.h b/sysdeps/unix/sysv/linux/i386/olddirent.h index 3df7352dc5..d869133247 100644 --- a/sysdeps/unix/sysv/linux/i386/olddirent.h +++ b/sysdeps/unix/sysv/linux/i386/olddirent.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/oldgetrlimit64.c b/sysdeps/unix/sysv/linux/i386/oldgetrlimit64.c index 13f0130aa3..0d6df2e2ba 100644 --- a/sysdeps/unix/sysv/linux/i386/oldgetrlimit64.c +++ b/sysdeps/unix/sysv/linux/i386/oldgetrlimit64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/posix_fadvise64.S b/sysdeps/unix/sysv/linux/i386/posix_fadvise64.S index 6c42c610f7..642229951a 100644 --- a/sysdeps/unix/sysv/linux/i386/posix_fadvise64.S +++ b/sysdeps/unix/sysv/linux/i386/posix_fadvise64.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/posix_fallocate.c b/sysdeps/unix/sysv/linux/i386/posix_fallocate.c index 2bba876319..bcadf8ddfb 100644 --- a/sysdeps/unix/sysv/linux/i386/posix_fallocate.c +++ b/sysdeps/unix/sysv/linux/i386/posix_fallocate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/posix_fallocate64.c b/sysdeps/unix/sysv/linux/i386/posix_fallocate64.c index 6bec1d52ad..4fa61e8110 100644 --- a/sysdeps/unix/sysv/linux/i386/posix_fallocate64.c +++ b/sysdeps/unix/sysv/linux/i386/posix_fallocate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/profil-counter.h b/sysdeps/unix/sysv/linux/i386/profil-counter.h index b2b29eff65..0bd60cbce2 100644 --- a/sysdeps/unix/sysv/linux/i386/profil-counter.h +++ b/sysdeps/unix/sysv/linux/i386/profil-counter.h @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Linux/i386 version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/putmsg.c b/sysdeps/unix/sysv/linux/i386/putmsg.c index 0484c7a78a..e26b4125ee 100644 --- a/sysdeps/unix/sysv/linux/i386/putmsg.c +++ b/sysdeps/unix/sysv/linux/i386/putmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/readdir64.c b/sysdeps/unix/sysv/linux/i386/readdir64.c index 220062d888..fbfbde2dd4 100644 --- a/sysdeps/unix/sysv/linux/i386/readdir64.c +++ b/sysdeps/unix/sysv/linux/i386/readdir64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/readdir64_r.c b/sysdeps/unix/sysv/linux/i386/readdir64_r.c index a7d114ee90..f2bf132cf3 100644 --- a/sysdeps/unix/sysv/linux/i386/readdir64_r.c +++ b/sysdeps/unix/sysv/linux/i386/readdir64_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/readelflib.c b/sysdeps/unix/sysv/linux/i386/readelflib.c index 7a6aeff797..0417ef1417 100644 --- a/sysdeps/unix/sysv/linux/i386/readelflib.c +++ b/sysdeps/unix/sysv/linux/i386/readelflib.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999 and Jakub Jelinek , 2000. diff --git a/sysdeps/unix/sysv/linux/i386/register-dump.h b/sysdeps/unix/sysv/linux/i386/register-dump.h index 5e380558ac..c36ba2264f 100644 --- a/sysdeps/unix/sysv/linux/i386/register-dump.h +++ b/sysdeps/unix/sysv/linux/i386/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/unix/sysv/linux/i386/scandir64.c b/sysdeps/unix/sysv/linux/i386/scandir64.c index e43e177b23..90abe32a2b 100644 --- a/sysdeps/unix/sysv/linux/i386/scandir64.c +++ b/sysdeps/unix/sysv/linux/i386/scandir64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/semctl.c b/sysdeps/unix/sysv/linux/i386/semctl.c index 67e75a1c74..64909ee32b 100644 --- a/sysdeps/unix/sysv/linux/i386/semctl.c +++ b/sysdeps/unix/sysv/linux/i386/semctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/i386/semtimedop.S b/sysdeps/unix/sysv/linux/i386/semtimedop.S index 35eb4a8725..7989546ab0 100644 --- a/sysdeps/unix/sysv/linux/i386/semtimedop.S +++ b/sysdeps/unix/sysv/linux/i386/semtimedop.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/sysdeps/unix/sysv/linux/i386/setcontext.S b/sysdeps/unix/sysv/linux/i386/setcontext.S index 93cd11e5c2..efca080539 100644 --- a/sysdeps/unix/sysv/linux/i386/setcontext.S +++ b/sysdeps/unix/sysv/linux/i386/setcontext.S @@ -1,5 +1,5 @@ /* Install given context. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/sysdeps/unix/sysv/linux/i386/setegid.c b/sysdeps/unix/sysv/linux/i386/setegid.c index 5d3a103b82..2df9454768 100644 --- a/sysdeps/unix/sysv/linux/i386/setegid.c +++ b/sysdeps/unix/sysv/linux/i386/setegid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/seteuid.c b/sysdeps/unix/sysv/linux/i386/seteuid.c index 6f9c3fb903..deee3df282 100644 --- a/sysdeps/unix/sysv/linux/i386/seteuid.c +++ b/sysdeps/unix/sysv/linux/i386/seteuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/setfsgid.c b/sysdeps/unix/sysv/linux/i386/setfsgid.c index 5859a5173b..880f7544af 100644 --- a/sysdeps/unix/sysv/linux/i386/setfsgid.c +++ b/sysdeps/unix/sysv/linux/i386/setfsgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/setfsuid.c b/sysdeps/unix/sysv/linux/i386/setfsuid.c index 979ab50860..1fd330cd0c 100644 --- a/sysdeps/unix/sysv/linux/i386/setfsuid.c +++ b/sysdeps/unix/sysv/linux/i386/setfsuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/setgid.c b/sysdeps/unix/sysv/linux/i386/setgid.c index 53389d8b55..091a424885 100644 --- a/sysdeps/unix/sysv/linux/i386/setgid.c +++ b/sysdeps/unix/sysv/linux/i386/setgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/setgroups.c b/sysdeps/unix/sysv/linux/i386/setgroups.c index 701ce6ee7b..10c0d10d54 100644 --- a/sysdeps/unix/sysv/linux/i386/setgroups.c +++ b/sysdeps/unix/sysv/linux/i386/setgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/setregid.c b/sysdeps/unix/sysv/linux/i386/setregid.c index c770a090a0..5041563aeb 100644 --- a/sysdeps/unix/sysv/linux/i386/setregid.c +++ b/sysdeps/unix/sysv/linux/i386/setregid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/setresgid.c b/sysdeps/unix/sysv/linux/i386/setresgid.c index e4e53063bf..e06444650c 100644 --- a/sysdeps/unix/sysv/linux/i386/setresgid.c +++ b/sysdeps/unix/sysv/linux/i386/setresgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/setresuid.c b/sysdeps/unix/sysv/linux/i386/setresuid.c index fb328965e8..7f018cbe99 100644 --- a/sysdeps/unix/sysv/linux/i386/setresuid.c +++ b/sysdeps/unix/sysv/linux/i386/setresuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/setreuid.c b/sysdeps/unix/sysv/linux/i386/setreuid.c index ffb8b48611..a0d7bc9251 100644 --- a/sysdeps/unix/sysv/linux/i386/setreuid.c +++ b/sysdeps/unix/sysv/linux/i386/setreuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/setrlimit.c b/sysdeps/unix/sysv/linux/i386/setrlimit.c index 0fe31e19df..2868d90759 100644 --- a/sysdeps/unix/sysv/linux/i386/setrlimit.c +++ b/sysdeps/unix/sysv/linux/i386/setrlimit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/setuid.c b/sysdeps/unix/sysv/linux/i386/setuid.c index af6feb14dc..2a20f858e6 100644 --- a/sysdeps/unix/sysv/linux/i386/setuid.c +++ b/sysdeps/unix/sysv/linux/i386/setuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/shmctl.c b/sysdeps/unix/sysv/linux/i386/shmctl.c index 8459dff321..1a426b187d 100644 --- a/sysdeps/unix/sysv/linux/i386/shmctl.c +++ b/sysdeps/unix/sysv/linux/i386/shmctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/i386/sigaction.c b/sysdeps/unix/sysv/linux/i386/sigaction.c index d2bac9122a..a901bc6bce 100644 --- a/sysdeps/unix/sysv/linux/i386/sigaction.c +++ b/sysdeps/unix/sysv/linux/i386/sigaction.c @@ -1,5 +1,5 @@ /* POSIX.1 `sigaction' call for Linux/i386. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/sigcontextinfo.h b/sysdeps/unix/sysv/linux/i386/sigcontextinfo.h index 67827ffebe..68975061bc 100644 --- a/sysdeps/unix/sysv/linux/i386/sigcontextinfo.h +++ b/sysdeps/unix/sysv/linux/i386/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/unix/sysv/linux/i386/socket.S b/sysdeps/unix/sysv/linux/i386/socket.S index e4f6a0e84c..ddce975aec 100644 --- a/sysdeps/unix/sysv/linux/i386/socket.S +++ b/sysdeps/unix/sysv/linux/i386/socket.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/swapcontext.S b/sysdeps/unix/sysv/linux/i386/swapcontext.S index 9ba8e1bab8..5c832c9d1e 100644 --- a/sysdeps/unix/sysv/linux/i386/swapcontext.S +++ b/sysdeps/unix/sysv/linux/i386/swapcontext.S @@ -1,5 +1,5 @@ /* Save current context and install the given one. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. diff --git a/sysdeps/unix/sysv/linux/i386/sync_file_range.c b/sysdeps/unix/sysv/linux/i386/sync_file_range.c index 387ba26607..a9daf13554 100644 --- a/sysdeps/unix/sysv/linux/i386/sync_file_range.c +++ b/sysdeps/unix/sysv/linux/i386/sync_file_range.c @@ -1,5 +1,5 @@ /* Selective file content synch'ing. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/syscall.S b/sysdeps/unix/sysv/linux/i386/syscall.S index 55ecb4e952..b57321a68a 100644 --- a/sysdeps/unix/sysv/linux/i386/syscall.S +++ b/sysdeps/unix/sysv/linux/i386/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/sysconf.c b/sysdeps/unix/sysv/linux/i386/sysconf.c index 9896099c3b..0e50284ebb 100644 --- a/sysdeps/unix/sysv/linux/i386/sysconf.c +++ b/sysdeps/unix/sysv/linux/i386/sysconf.c @@ -1,5 +1,5 @@ /* Get file-specific information about a file. Linux version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/sysdep.S b/sysdeps/unix/sysv/linux/i386/sysdep.S index 0506297e56..0dbe12908b 100644 --- a/sysdeps/unix/sysv/linux/i386/sysdep.S +++ b/sysdeps/unix/sysv/linux/i386/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/sysdep.h b/sysdeps/unix/sysv/linux/i386/sysdep.h index 684fe27d69..01888e9ce4 100644 --- a/sysdeps/unix/sysv/linux/i386/sysdep.h +++ b/sysdeps/unix/sysv/linux/i386/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, , August 1995. diff --git a/sysdeps/unix/sysv/linux/i386/versionsort64.c b/sysdeps/unix/sysv/linux/i386/versionsort64.c index dadd368ffc..d632f70926 100644 --- a/sysdeps/unix/sysv/linux/i386/versionsort64.c +++ b/sysdeps/unix/sysv/linux/i386/versionsort64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/i386/vfork.S b/sysdeps/unix/sysv/linux/i386/vfork.S index 6f9cd48c54..d6e0ecfcad 100644 --- a/sysdeps/unix/sysv/linux/i386/vfork.S +++ b/sysdeps/unix/sysv/linux/i386/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab . diff --git a/sysdeps/unix/sysv/linux/i386/xstat.c b/sysdeps/unix/sysv/linux/i386/xstat.c index e2abe8bb95..593282d74b 100644 --- a/sysdeps/unix/sysv/linux/i386/xstat.c +++ b/sysdeps/unix/sysv/linux/i386/xstat.c @@ -1,5 +1,5 @@ /* xstat using old-style Unix stat system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/if_index.c b/sysdeps/unix/sysv/linux/if_index.c index c08bc34348..f8948a4176 100644 --- a/sysdeps/unix/sysv/linux/if_index.c +++ b/sysdeps/unix/sysv/linux/if_index.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/ifaddrs.c b/sysdeps/unix/sysv/linux/ifaddrs.c index 89fda156a2..7b8867100f 100644 --- a/sysdeps/unix/sysv/linux/ifaddrs.c +++ b/sysdeps/unix/sysv/linux/ifaddrs.c @@ -1,5 +1,5 @@ /* getifaddrs -- get names and addresses of all network interfaces - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/ifreq.c b/sysdeps/unix/sysv/linux/ifreq.c index 4a55e8fcc1..58f51913a8 100644 --- a/sysdeps/unix/sysv/linux/ifreq.c +++ b/sysdeps/unix/sysv/linux/ifreq.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger . diff --git a/sysdeps/unix/sysv/linux/internal_statvfs.c b/sysdeps/unix/sysv/linux/internal_statvfs.c index 45a66b83d5..2424c138ac 100644 --- a/sysdeps/unix/sysv/linux/internal_statvfs.c +++ b/sysdeps/unix/sysv/linux/internal_statvfs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/unix/sysv/linux/ipc_priv.h b/sysdeps/unix/sysv/linux/ipc_priv.h index b752f0102c..c5e2a859a9 100644 --- a/sysdeps/unix/sysv/linux/ipc_priv.h +++ b/sysdeps/unix/sysv/linux/ipc_priv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/kernel-features.h b/sysdeps/unix/sysv/linux/kernel-features.h index ccd4c5918b..372353528e 100644 --- a/sysdeps/unix/sysv/linux/kernel-features.h +++ b/sysdeps/unix/sysv/linux/kernel-features.h @@ -1,6 +1,6 @@ /* Set flags signalling availability of kernel features based on given kernel version number. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/kernel_termios.h b/sysdeps/unix/sysv/linux/kernel_termios.h index d04e867122..f8e2e9ecc6 100644 --- a/sysdeps/unix/sysv/linux/kernel_termios.h +++ b/sysdeps/unix/sysv/linux/kernel_termios.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/lddlibc4.c b/sysdeps/unix/sysv/linux/lddlibc4.c index 80ae6f0557..07210e8007 100644 --- a/sysdeps/unix/sysv/linux/lddlibc4.c +++ b/sysdeps/unix/sysv/linux/lddlibc4.c @@ -1,5 +1,5 @@ /* Stub for ldd script to print Linux libc4 dependencies. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/unix/sysv/linux/ldsodefs.h b/sysdeps/unix/sysv/linux/ldsodefs.h index ef4866727c..a6bc5a9d31 100644 --- a/sysdeps/unix/sysv/linux/ldsodefs.h +++ b/sysdeps/unix/sysv/linux/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/libc_fatal.c b/sysdeps/unix/sysv/linux/libc_fatal.c index 4e5663da83..3d33e7a57e 100644 --- a/sysdeps/unix/sysv/linux/libc_fatal.c +++ b/sysdeps/unix/sysv/linux/libc_fatal.c @@ -1,5 +1,5 @@ /* Catastrophic failure reports. Linux version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/linkat.c b/sysdeps/unix/sysv/linux/linkat.c index f10f8e17d0..ad09be64b3 100644 --- a/sysdeps/unix/sysv/linux/linkat.c +++ b/sysdeps/unix/sysv/linux/linkat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/linux_fsinfo.h b/sysdeps/unix/sysv/linux/linux_fsinfo.h index 2312b4702a..1547ba86a7 100644 --- a/sysdeps/unix/sysv/linux/linux_fsinfo.h +++ b/sysdeps/unix/sysv/linux/linux_fsinfo.h @@ -1,5 +1,5 @@ /* Constants from kernel header for various FSes. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/llseek.c b/sysdeps/unix/sysv/linux/llseek.c index a15be30249..dbf55dfa0c 100644 --- a/sysdeps/unix/sysv/linux/llseek.c +++ b/sysdeps/unix/sysv/linux/llseek.c @@ -1,5 +1,5 @@ /* Long-long seek operation. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/lutimes.c b/sysdeps/unix/sysv/linux/lutimes.c index 83f0403306..6a4a62a0e4 100644 --- a/sysdeps/unix/sysv/linux/lutimes.c +++ b/sysdeps/unix/sysv/linux/lutimes.c @@ -1,6 +1,6 @@ /* Change access and/or modification date of file. Do not follow symbolic links. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/lxstat.c b/sysdeps/unix/sysv/linux/lxstat.c index 3a838918e0..1638f98b74 100644 --- a/sysdeps/unix/sysv/linux/lxstat.c +++ b/sysdeps/unix/sysv/linux/lxstat.c @@ -1,5 +1,5 @@ /* lxstat using old-style Unix lstat system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/lxstat64.c b/sysdeps/unix/sysv/linux/lxstat64.c index de889966fe..18067b7f39 100644 --- a/sysdeps/unix/sysv/linux/lxstat64.c +++ b/sysdeps/unix/sysv/linux/lxstat64.c @@ -1,5 +1,5 @@ /* lxstat64 using Linux lstat64 system call. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/makedev.c b/sysdeps/unix/sysv/linux/makedev.c index 307340f904..4b6a700f67 100644 --- a/sysdeps/unix/sysv/linux/makedev.c +++ b/sysdeps/unix/sysv/linux/makedev.c @@ -1,5 +1,5 @@ /* Definitions of functions to access `dev_t' values. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/malloc-sysdep.h b/sysdeps/unix/sysv/linux/malloc-sysdep.h index 737ca0e653..aa923b9c8d 100644 --- a/sysdeps/unix/sysv/linux/malloc-sysdep.h +++ b/sysdeps/unix/sysv/linux/malloc-sysdep.h @@ -1,5 +1,5 @@ /* System-specific malloc support functions. Linux version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/mkdirat.c b/sysdeps/unix/sysv/linux/mkdirat.c index b4a089e67b..72d69c58f3 100644 --- a/sysdeps/unix/sysv/linux/mkdirat.c +++ b/sysdeps/unix/sysv/linux/mkdirat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/mmap64.c b/sysdeps/unix/sysv/linux/mmap64.c index 7d367ca83c..aa02eaa5f8 100644 --- a/sysdeps/unix/sysv/linux/mmap64.c +++ b/sysdeps/unix/sysv/linux/mmap64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 1999. diff --git a/sysdeps/unix/sysv/linux/mq_close.c b/sysdeps/unix/sysv/linux/mq_close.c index 0f5b07fd8c..c5fad80769 100644 --- a/sysdeps/unix/sysv/linux/mq_close.c +++ b/sysdeps/unix/sysv/linux/mq_close.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/mq_getattr.c b/sysdeps/unix/sysv/linux/mq_getattr.c index 1a309bfbc1..352b290629 100644 --- a/sysdeps/unix/sysv/linux/mq_getattr.c +++ b/sysdeps/unix/sysv/linux/mq_getattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/mq_notify.c b/sysdeps/unix/sysv/linux/mq_notify.c index 34801da29d..a61839f507 100644 --- a/sysdeps/unix/sysv/linux/mq_notify.c +++ b/sysdeps/unix/sysv/linux/mq_notify.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/mq_open.c b/sysdeps/unix/sysv/linux/mq_open.c index 8401d68ab6..38194ac90e 100644 --- a/sysdeps/unix/sysv/linux/mq_open.c +++ b/sysdeps/unix/sysv/linux/mq_open.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/mq_receive.c b/sysdeps/unix/sysv/linux/mq_receive.c index 8a13f4f916..d37a38361d 100644 --- a/sysdeps/unix/sysv/linux/mq_receive.c +++ b/sysdeps/unix/sysv/linux/mq_receive.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/mq_send.c b/sysdeps/unix/sysv/linux/mq_send.c index 7354b2a2d0..18b1d5b730 100644 --- a/sysdeps/unix/sysv/linux/mq_send.c +++ b/sysdeps/unix/sysv/linux/mq_send.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/mq_unlink.c b/sysdeps/unix/sysv/linux/mq_unlink.c index 1a1909f7b2..e16e4184fd 100644 --- a/sysdeps/unix/sysv/linux/mq_unlink.c +++ b/sysdeps/unix/sysv/linux/mq_unlink.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/msgctl.c b/sysdeps/unix/sysv/linux/msgctl.c index 0bbaf086cc..317d18f7cd 100644 --- a/sysdeps/unix/sysv/linux/msgctl.c +++ b/sysdeps/unix/sysv/linux/msgctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/msgget.c b/sysdeps/unix/sysv/linux/msgget.c index baa825319c..80f415bcb8 100644 --- a/sysdeps/unix/sysv/linux/msgget.c +++ b/sysdeps/unix/sysv/linux/msgget.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/msgrcv.c b/sysdeps/unix/sysv/linux/msgrcv.c index 7ec9b253bc..c62367e3bc 100644 --- a/sysdeps/unix/sysv/linux/msgrcv.c +++ b/sysdeps/unix/sysv/linux/msgrcv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/msgsnd.c b/sysdeps/unix/sysv/linux/msgsnd.c index 556159b327..cd397b1928 100644 --- a/sysdeps/unix/sysv/linux/msgsnd.c +++ b/sysdeps/unix/sysv/linux/msgsnd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/net/ethernet.h b/sysdeps/unix/sysv/linux/net/ethernet.h index bf36e844f5..585751cea1 100644 --- a/sysdeps/unix/sysv/linux/net/ethernet.h +++ b/sysdeps/unix/sysv/linux/net/ethernet.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/net/if_arp.h b/sysdeps/unix/sysv/linux/net/if_arp.h index b51f2614eb..bd2bb31279 100644 --- a/sysdeps/unix/sysv/linux/net/if_arp.h +++ b/sysdeps/unix/sysv/linux/net/if_arp.h @@ -1,5 +1,5 @@ /* Definitions for Address Resolution Protocol. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/net/if_packet.h b/sysdeps/unix/sysv/linux/net/if_packet.h index 822df43fa8..1a79c529bc 100644 --- a/sysdeps/unix/sysv/linux/net/if_packet.h +++ b/sysdeps/unix/sysv/linux/net/if_packet.h @@ -1,5 +1,5 @@ /* Definitions for use with Linux SOCK_PACKET sockets. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/net/if_shaper.h b/sysdeps/unix/sysv/linux/net/if_shaper.h index 9f0fb5411d..06026bf5af 100644 --- a/sysdeps/unix/sysv/linux/net/if_shaper.h +++ b/sysdeps/unix/sysv/linux/net/if_shaper.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/net/if_slip.h b/sysdeps/unix/sysv/linux/net/if_slip.h index e579c82a91..663f04f868 100644 --- a/sysdeps/unix/sysv/linux/net/if_slip.h +++ b/sysdeps/unix/sysv/linux/net/if_slip.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/net/route.h b/sysdeps/unix/sysv/linux/net/route.h index 8ab33e54c8..fcb3660182 100644 --- a/sysdeps/unix/sysv/linux/net/route.h +++ b/sysdeps/unix/sysv/linux/net/route.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netash/ash.h b/sysdeps/unix/sysv/linux/netash/ash.h index 0139cd905d..e7efff8f4d 100644 --- a/sysdeps/unix/sysv/linux/netash/ash.h +++ b/sysdeps/unix/sysv/linux/netash/ash.h @@ -1,5 +1,5 @@ /* Definitions for use with Linux AF_ASH sockets. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netatalk/at.h b/sysdeps/unix/sysv/linux/netatalk/at.h index 50cb0d9fd4..cf9ed2c7c5 100644 --- a/sysdeps/unix/sysv/linux/netatalk/at.h +++ b/sysdeps/unix/sysv/linux/netatalk/at.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netax25/ax25.h b/sysdeps/unix/sysv/linux/netax25/ax25.h index 0203589475..e2181f18ec 100644 --- a/sysdeps/unix/sysv/linux/netax25/ax25.h +++ b/sysdeps/unix/sysv/linux/netax25/ax25.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/neteconet/ec.h b/sysdeps/unix/sysv/linux/neteconet/ec.h index bc2db99f3c..5ab2448072 100644 --- a/sysdeps/unix/sysv/linux/neteconet/ec.h +++ b/sysdeps/unix/sysv/linux/neteconet/ec.h @@ -1,5 +1,5 @@ /* Definitions for use with Linux AF_ECONET sockets. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netinet/if_ether.h b/sysdeps/unix/sysv/linux/netinet/if_ether.h index 2c5e5f0e24..51f7f67b85 100644 --- a/sysdeps/unix/sysv/linux/netinet/if_ether.h +++ b/sysdeps/unix/sysv/linux/netinet/if_ether.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netinet/if_fddi.h b/sysdeps/unix/sysv/linux/netinet/if_fddi.h index fed06e5c33..67bdf02748 100644 --- a/sysdeps/unix/sysv/linux/netinet/if_fddi.h +++ b/sysdeps/unix/sysv/linux/netinet/if_fddi.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netinet/if_tr.h b/sysdeps/unix/sysv/linux/netinet/if_tr.h index b1f8a6072c..068d725472 100644 --- a/sysdeps/unix/sysv/linux/netinet/if_tr.h +++ b/sysdeps/unix/sysv/linux/netinet/if_tr.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netipx/ipx.h b/sysdeps/unix/sysv/linux/netipx/ipx.h index 35984cf5a2..2754083d72 100644 --- a/sysdeps/unix/sysv/linux/netipx/ipx.h +++ b/sysdeps/unix/sysv/linux/netipx/ipx.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netiucv/iucv.h b/sysdeps/unix/sysv/linux/netiucv/iucv.h index 74317fe0f3..bb2a4eac38 100644 --- a/sysdeps/unix/sysv/linux/netiucv/iucv.h +++ b/sysdeps/unix/sysv/linux/netiucv/iucv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netlinkaccess.h b/sysdeps/unix/sysv/linux/netlinkaccess.h index e0da57a0c5..29170167ac 100644 --- a/sysdeps/unix/sysv/linux/netlinkaccess.h +++ b/sysdeps/unix/sysv/linux/netlinkaccess.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netpacket/packet.h b/sysdeps/unix/sysv/linux/netpacket/packet.h index 813288fa41..3b0d7a74a3 100644 --- a/sysdeps/unix/sysv/linux/netpacket/packet.h +++ b/sysdeps/unix/sysv/linux/netpacket/packet.h @@ -1,5 +1,5 @@ /* Definitions for use with Linux AF_PACKET sockets. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netrom/netrom.h b/sysdeps/unix/sysv/linux/netrom/netrom.h index a60314364b..b02c599e2b 100644 --- a/sysdeps/unix/sysv/linux/netrom/netrom.h +++ b/sysdeps/unix/sysv/linux/netrom/netrom.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/netrose/rose.h b/sysdeps/unix/sysv/linux/netrose/rose.h index 472762fcc6..45c3b9d6c7 100644 --- a/sysdeps/unix/sysv/linux/netrose/rose.h +++ b/sysdeps/unix/sysv/linux/netrose/rose.h @@ -1,5 +1,5 @@ /* Definitions for Rose packet radio address family. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/not-cancel.h b/sysdeps/unix/sysv/linux/not-cancel.h index 7b8ce72ec3..d23eeba8a1 100644 --- a/sysdeps/unix/sysv/linux/not-cancel.h +++ b/sysdeps/unix/sysv/linux/not-cancel.h @@ -1,5 +1,5 @@ /* Uncancelable versions of cancelable interfaces. Linux version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/sysdeps/unix/sysv/linux/nscd_setup_thread.c b/sysdeps/unix/sysv/linux/nscd_setup_thread.c index 60af366952..36c568f201 100644 --- a/sysdeps/unix/sysv/linux/nscd_setup_thread.c +++ b/sysdeps/unix/sysv/linux/nscd_setup_thread.c @@ -1,5 +1,5 @@ /* Setup of nscd worker threads. Linux verison. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/sysdeps/unix/sysv/linux/ntp_gettime.c b/sysdeps/unix/sysv/linux/ntp_gettime.c index e941d2162d..1b91292092 100644 --- a/sysdeps/unix/sysv/linux/ntp_gettime.c +++ b/sysdeps/unix/sysv/linux/ntp_gettime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/ntp_gettimex.c b/sysdeps/unix/sysv/linux/ntp_gettimex.c index 4f3522743a..bfb72b1ee4 100644 --- a/sysdeps/unix/sysv/linux/ntp_gettimex.c +++ b/sysdeps/unix/sysv/linux/ntp_gettimex.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/open64.c b/sysdeps/unix/sysv/linux/open64.c index 701851dd11..0d63806d04 100644 --- a/sysdeps/unix/sysv/linux/open64.c +++ b/sysdeps/unix/sysv/linux/open64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/openat.c b/sysdeps/unix/sysv/linux/openat.c index 6e838dfd0c..9bb8acec1f 100644 --- a/sysdeps/unix/sysv/linux/openat.c +++ b/sysdeps/unix/sysv/linux/openat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/opendir.c b/sysdeps/unix/sysv/linux/opendir.c index 88283407a2..3138b4a9ea 100644 --- a/sysdeps/unix/sysv/linux/opendir.c +++ b/sysdeps/unix/sysv/linux/opendir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/opensock.c b/sysdeps/unix/sysv/linux/opensock.c index da4b86ef18..bcf7f5fc40 100644 --- a/sysdeps/unix/sysv/linux/opensock.c +++ b/sysdeps/unix/sysv/linux/opensock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/pathconf.c b/sysdeps/unix/sysv/linux/pathconf.c index 723d234538..578b73654f 100644 --- a/sysdeps/unix/sysv/linux/pathconf.c +++ b/sysdeps/unix/sysv/linux/pathconf.c @@ -1,5 +1,5 @@ /* Get file-specific information about a file. Linux version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/pathconf.h b/sysdeps/unix/sysv/linux/pathconf.h index 56071f8b64..d1724540e4 100644 --- a/sysdeps/unix/sysv/linux/pathconf.h +++ b/sysdeps/unix/sysv/linux/pathconf.h @@ -1,5 +1,5 @@ /* Common parts of Linux implementation of pathconf and fpathconf. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/posix_fadvise.c b/sysdeps/unix/sysv/linux/posix_fadvise.c index c45fe35bc5..d257960c6f 100644 --- a/sysdeps/unix/sysv/linux/posix_fadvise.c +++ b/sysdeps/unix/sysv/linux/posix_fadvise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/posix_fadvise64.c b/sysdeps/unix/sysv/linux/posix_fadvise64.c index da1b51e806..93a34d0f63 100644 --- a/sysdeps/unix/sysv/linux/posix_fadvise64.c +++ b/sysdeps/unix/sysv/linux/posix_fadvise64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/posix_fallocate.c b/sysdeps/unix/sysv/linux/posix_fallocate.c index f6c96f9fdf..477f9f8574 100644 --- a/sysdeps/unix/sysv/linux/posix_fallocate.c +++ b/sysdeps/unix/sysv/linux/posix_fallocate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/posix_fallocate64.c b/sysdeps/unix/sysv/linux/posix_fallocate64.c index 5fd90d70fd..73983aed5b 100644 --- a/sysdeps/unix/sysv/linux/posix_fallocate64.c +++ b/sysdeps/unix/sysv/linux/posix_fallocate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/posix_madvise.c b/sysdeps/unix/sysv/linux/posix_madvise.c index c95102df18..44cdd8721b 100644 --- a/sysdeps/unix/sysv/linux/posix_madvise.c +++ b/sysdeps/unix/sysv/linux/posix_madvise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/environments.h b/sysdeps/unix/sysv/linux/powerpc/bits/environments.h index 0fe1e3f5fd..475ce8b4dc 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/environments.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/environments.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h b/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h index 6eb77991dd..2523ed15b2 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux/PowerPC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/ipc.h b/sysdeps/unix/sysv/linux/powerpc/bits/ipc.h index 889bbcdb4a..c9c2e2a06b 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/ipc.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/ipc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h b/sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h index 31dd15ecc4..e90829db27 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h @@ -1,5 +1,5 @@ /* Resolve function pointers to VDSO functions. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/mman.h b/sysdeps/unix/sysv/linux/powerpc/bits/mman.h index 3f72c03351..a2a0fafee7 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/mman.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/PowerPC version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/msq.h b/sysdeps/unix/sysv/linux/powerpc/bits/msq.h index b22fa72e84..da686c85dc 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/msq.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/ppc.h b/sysdeps/unix/sysv/linux/powerpc/bits/ppc.h index c562021d37..e9e8a9b2cf 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/ppc.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/ppc.h @@ -1,5 +1,5 @@ /* Facilities specific to the PowerPC architecture on Linux - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/sem.h b/sysdeps/unix/sysv/linux/powerpc/bits/sem.h index 56f47f118f..783135dc25 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/sem.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/shm.h b/sysdeps/unix/sysv/linux/powerpc/bits/shm.h index a343335bd0..df94d7697d 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/shm.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h b/sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h index 33be9e8dbb..92790def19 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h @@ -1,5 +1,5 @@ /* sigstack, sigaltstack definitions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/stat.h b/sysdeps/unix/sysv/linux/powerpc/bits/stat.h index 252aae9eac..1325594e2d 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/stat.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/termios.h b/sysdeps/unix/sysv/linux/powerpc/bits/termios.h index 4d94a8d72e..d5dbdaa579 100644 --- a/sysdeps/unix/sysv/linux/powerpc/bits/termios.h +++ b/sysdeps/unix/sysv/linux/powerpc/bits/termios.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/chown.c b/sysdeps/unix/sysv/linux/powerpc/chown.c index 6028dba0d1..cabca011bd 100644 --- a/sysdeps/unix/sysv/linux/powerpc/chown.c +++ b/sysdeps/unix/sysv/linux/powerpc/chown.c @@ -1,5 +1,5 @@ /* chown() compatibility. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/dl-static.c b/sysdeps/unix/sysv/linux/powerpc/dl-static.c index 8289c61159..4d31a56dd6 100644 --- a/sysdeps/unix/sysv/linux/powerpc/dl-static.c +++ b/sysdeps/unix/sysv/linux/powerpc/dl-static.c @@ -1,5 +1,5 @@ /* Variable initialization. PowerPC version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c b/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c index 12433c732c..354c4e0a49 100644 --- a/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c +++ b/sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c @@ -1,5 +1,5 @@ /* Operating system support for run-time dynamic linker. Linux/PPC version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/fchownat.c b/sysdeps/unix/sysv/linux/powerpc/fchownat.c index 88f535f4af..61e0a4dc56 100644 --- a/sysdeps/unix/sysv/linux/powerpc/fchownat.c +++ b/sysdeps/unix/sysv/linux/powerpc/fchownat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c b/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c index 5e88b83b5c..0a6aa81fb0 100644 --- a/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c +++ b/sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c @@ -1,5 +1,5 @@ /* Get frequency of the system processor. powerpc/Linux version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c b/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c index 266e6c9031..94f05858f9 100644 --- a/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c +++ b/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c @@ -1,5 +1,5 @@ /* Get the frequency of the time base. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c b/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c index 48c3f84d86..29a5e08ad6 100644 --- a/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c +++ b/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/init-first.c b/sysdeps/unix/sysv/linux/powerpc/init-first.c index 061715f875..4cc3e8cc2e 100644 --- a/sysdeps/unix/sysv/linux/powerpc/init-first.c +++ b/sysdeps/unix/sysv/linux/powerpc/init-first.c @@ -1,5 +1,5 @@ /* Initialization code run first thing by the ELF startup code. Linux/PowerPC. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/ioctl.c b/sysdeps/unix/sysv/linux/powerpc/ioctl.c index 587dc58d33..165bbc7ed7 100644 --- a/sysdeps/unix/sysv/linux/powerpc/ioctl.c +++ b/sysdeps/unix/sysv/linux/powerpc/ioctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/ipc_priv.h b/sysdeps/unix/sysv/linux/powerpc/ipc_priv.h index 8cd2f8d673..a569310196 100644 --- a/sysdeps/unix/sysv/linux/powerpc/ipc_priv.h +++ b/sysdeps/unix/sysv/linux/powerpc/ipc_priv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/kernel_termios.h b/sysdeps/unix/sysv/linux/powerpc/kernel_termios.h index 47fed39225..ea029991cc 100644 --- a/sysdeps/unix/sysv/linux/powerpc/kernel_termios.h +++ b/sysdeps/unix/sysv/linux/powerpc/kernel_termios.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/lchown.S b/sysdeps/unix/sysv/linux/powerpc/lchown.S index 2ca5266386..17857486a4 100644 --- a/sysdeps/unix/sysv/linux/powerpc/lchown.S +++ b/sysdeps/unix/sysv/linux/powerpc/lchown.S @@ -1,5 +1,5 @@ /* lchown system call. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/ldconfig.h b/sysdeps/unix/sysv/linux/powerpc/ldconfig.h index 92ea723620..2c0eca20a2 100644 --- a/sysdeps/unix/sysv/linux/powerpc/ldconfig.h +++ b/sysdeps/unix/sysv/linux/powerpc/ldconfig.h @@ -1,5 +1,5 @@ /* ldconfig default paths and libraries. Linux/PowerPC version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/ldsodefs.h b/sysdeps/unix/sysv/linux/powerpc/ldsodefs.h index fcedf32c73..f2d0e6ae30 100644 --- a/sysdeps/unix/sysv/linux/powerpc/ldsodefs.h +++ b/sysdeps/unix/sysv/linux/powerpc/ldsodefs.h @@ -1,6 +1,6 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. PowerPC version. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/libc-start.c b/sysdeps/unix/sysv/linux/powerpc/libc-start.c index c0799016c0..acd9f82240 100644 --- a/sysdeps/unix/sysv/linux/powerpc/libc-start.c +++ b/sysdeps/unix/sysv/linux/powerpc/libc-start.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S index 6e88b615d7..09673f75ff 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S index eb27f42cda..74ac9f6b45 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S @@ -1,5 +1,5 @@ /* brk system call for Linux/ppc. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S index 81af264161..bb1510dff1 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S @@ -1,5 +1,5 @@ /* Wrapper around clone system call. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c index cca74060fc..7f65eaf407 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c @@ -1,5 +1,5 @@ /* Procedure definition for FE_MASK_ENV for Linux/ppc. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c index 49b73d20a0..6f20b0597c 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c @@ -1,5 +1,5 @@ /* Procedure definition for FE_NOMASK_ENV for Linux/ppc. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c index 05fc13b933..cb2324d994 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S index 082d302e8a..f50d492d99 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S @@ -1,5 +1,5 @@ /* Save current context, powerpc32 common. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S index a852e0d9e9..cab1fda878 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S @@ -1,5 +1,5 @@ /* Save current context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h b/sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h index b816da9297..04edf836b9 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h @@ -1,5 +1,5 @@ /* Definition of `struct stat' used in the kernel. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S index 70e3c97626..afad726e28 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S @@ -1,5 +1,5 @@ /* Set up a context to call a function. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/context-e500.h b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/context-e500.h index 9eb1a95615..4cc9a81dc1 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/context-e500.h +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/context-e500.h @@ -1,5 +1,5 @@ /* getcontext/setcontext/makecontext support for e500 high parts of registers. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/getcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/getcontext.S index 8bc3c7a43e..0039b90e7e 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/getcontext.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/getcontext.S @@ -1,5 +1,5 @@ /* Save current context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/setcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/setcontext.S index 5f8653ffbb..3e17585b6b 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/setcontext.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/setcontext.S @@ -1,5 +1,5 @@ /* Jump to a new context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/swapcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/swapcontext.S index de6d56f960..1a9d312b7e 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/swapcontext.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/swapcontext.S @@ -1,5 +1,5 @@ /* Save current context and jump to a new context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise.c index 7071e5646c..98a76c4328 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c index 417f2be0f5..bff8c96a23 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c index 619db32618..35ac9c2159 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c index 75407b3165..399419b83c 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c index e71c91b261..77d39cfcec 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c index 7094e93d3c..02e9919323 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S index 6525cf7429..96a2067360 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S @@ -1,5 +1,5 @@ /* Jump to a new context powerpc32 common. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S index b97b993cfa..ce0096772a 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S @@ -1,5 +1,5 @@ /* Jump to a new context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S index 0c027b3a76..226148419d 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/socket.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S index caa5b8932b..8544c28232 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S @@ -1,5 +1,5 @@ /* Save current context and jump to a new context. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S index 7ee4ef15f1..007fab7562 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S @@ -1,5 +1,5 @@ /* Save current context and jump to a new context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h b/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h index 250f4fc8c9..8feafb8082 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c index c018cecdbc..1d96e1de1b 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S b/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S index f2d4aa3042..7a1e8422ad 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S index ae576d62c3..dc9c8540ff 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S index 33cdf25225..30f66a83ad 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S @@ -1,5 +1,5 @@ /* brk system call for Linux. PowerPC64 version. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S index 37d9d24fb9..d8fefdd3b4 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S @@ -1,5 +1,5 @@ /* Wrapper around clone system call. PowerPC64 version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/dl-cache.h b/sysdeps/unix/sysv/linux/powerpc/powerpc64/dl-cache.h index dcde5a0de7..06571464a4 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/dl-cache.h +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/dl-cache.h @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c index bedad10cf0..a9252d7d35 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c index 1d579bfcca..35fc58421a 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c @@ -1,5 +1,5 @@ /* Procedure definition for FE_MASK_ENV for Linux/ppc64. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c index 8532518ec2..c6c156ce78 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c @@ -1,5 +1,5 @@ /* Procedure definition for FE_NOMASK_ENV for Linux/ppc64. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S index c236ab4b4e..85ae1c8666 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S @@ -1,5 +1,5 @@ /* Save current context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/kernel_stat.h b/sysdeps/unix/sysv/linux/powerpc/powerpc64/kernel_stat.h index 98ea73e705..df98736860 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/kernel_stat.h +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/kernel_stat.h @@ -1,5 +1,5 @@ /* Definition of `struct stat' used in the kernel. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h b/sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h index d043968a03..491db8f719 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S index b6d82bdd19..e22f5a6955 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S @@ -1,5 +1,5 @@ /* Create new context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c index 70f1d6c580..4824010bf7 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c index a11f6e31f4..2f915805dc 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c index 0ccb0a98a3..cc62a50ea3 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c index 6a8acb4512..a8543977f2 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S index 5ec19ba561..0cb84dcbaf 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S @@ -1,5 +1,5 @@ /* Switch to context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S index aba2d80902..2a253e18c5 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S index d7f63426b3..1d92eb456a 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S @@ -1,5 +1,5 @@ /* Save current context and install the given one. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c index 8d35ec8e4e..ed68705aa7 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c @@ -1,5 +1,5 @@ /* Selective file content synch'ing. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h b/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h index 6ebab742c5..9c456101ab 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S index aed2246213..ebffc4c5af 100644 --- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/readelflib.c b/sysdeps/unix/sysv/linux/powerpc/readelflib.c index c8b6f2a6a8..3e96332b4d 100644 --- a/sysdeps/unix/sysv/linux/powerpc/readelflib.c +++ b/sysdeps/unix/sysv/linux/powerpc/readelflib.c @@ -1,5 +1,5 @@ /* Special checks on libraries for ldconfig. Linux/PowerPC version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c b/sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c index 617e6f121f..7d7897ed77 100644 --- a/sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c +++ b/sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2013 Free Software Foundation, Inc. +/* Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h b/sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h index dd3e16dc73..3aeac1f943 100644 --- a/sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h +++ b/sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h b/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h index b046897f66..e6bba78709 100644 --- a/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/powerpc/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h b/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h index 2104a2d9bd..d798b5a27b 100644 --- a/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h @@ -1,5 +1,5 @@ /* `ptrace' debugger support interface. Linux version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h b/sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h index 11f48b5b85..3b3151ed89 100644 --- a/sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/sys/user.h b/sysdeps/unix/sysv/linux/powerpc/sys/user.h index 4552d85ff7..8c6d905752 100644 --- a/sysdeps/unix/sysv/linux/powerpc/sys/user.h +++ b/sysdeps/unix/sysv/linux/powerpc/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/syscall.S b/sysdeps/unix/sysv/linux/powerpc/syscall.S index 8a2fe321fd..346e962240 100644 --- a/sysdeps/unix/sysv/linux/powerpc/syscall.S +++ b/sysdeps/unix/sysv/linux/powerpc/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/sysdep.c b/sysdeps/unix/sysv/linux/powerpc/sysdep.c index 2e020840e5..0c11d2b4de 100644 --- a/sysdeps/unix/sysv/linux/powerpc/sysdep.c +++ b/sysdeps/unix/sysv/linux/powerpc/sysdep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c b/sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c index 344496b7ea..af765bc635 100644 --- a/sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c +++ b/sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c @@ -1,5 +1,5 @@ /* Check __ppc_get_timebase_freq() for architecture changes - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/powerpc/time.c b/sysdeps/unix/sysv/linux/powerpc/time.c index 2d77ecec9b..089d0b69ec 100644 --- a/sysdeps/unix/sysv/linux/powerpc/time.c +++ b/sysdeps/unix/sysv/linux/powerpc/time.c @@ -1,5 +1,5 @@ /* time system call for Linux/PowerPC. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/ppoll.c b/sysdeps/unix/sysv/linux/ppoll.c index 11ad9d544d..4fceed135a 100644 --- a/sysdeps/unix/sysv/linux/ppoll.c +++ b/sysdeps/unix/sysv/linux/ppoll.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2006. diff --git a/sysdeps/unix/sysv/linux/pread.c b/sysdeps/unix/sysv/linux/pread.c index 1494879ab9..81de1951be 100644 --- a/sysdeps/unix/sysv/linux/pread.c +++ b/sysdeps/unix/sysv/linux/pread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/pread64.c b/sysdeps/unix/sysv/linux/pread64.c index be829ce3f6..0bb2ec2f20 100644 --- a/sysdeps/unix/sysv/linux/pread64.c +++ b/sysdeps/unix/sysv/linux/pread64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/preadv.c b/sysdeps/unix/sysv/linux/preadv.c index e92af92eb9..af30443e7d 100644 --- a/sysdeps/unix/sysv/linux/preadv.c +++ b/sysdeps/unix/sysv/linux/preadv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/prlimit.c b/sysdeps/unix/sysv/linux/prlimit.c index 5314587eb9..701b560ae3 100644 --- a/sysdeps/unix/sysv/linux/prlimit.c +++ b/sysdeps/unix/sysv/linux/prlimit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/prof-freq.c b/sysdeps/unix/sysv/linux/prof-freq.c index b188494726..bc8ddcdd91 100644 --- a/sysdeps/unix/sysv/linux/prof-freq.c +++ b/sysdeps/unix/sysv/linux/prof-freq.c @@ -1,5 +1,5 @@ /* Determine realtime clock frequency. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/pselect.c b/sysdeps/unix/sysv/linux/pselect.c index dbed8a25c7..b4e77c16aa 100644 --- a/sysdeps/unix/sysv/linux/pselect.c +++ b/sysdeps/unix/sysv/linux/pselect.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2006. diff --git a/sysdeps/unix/sysv/linux/ptrace.c b/sysdeps/unix/sysv/linux/ptrace.c index 3a6ca6c0e4..da4d75715b 100644 --- a/sysdeps/unix/sysv/linux/ptrace.c +++ b/sysdeps/unix/sysv/linux/ptrace.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/ptsname.c b/sysdeps/unix/sysv/linux/ptsname.c index 70f1f34bef..ed39f8f520 100644 --- a/sysdeps/unix/sysv/linux/ptsname.c +++ b/sysdeps/unix/sysv/linux/ptsname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/sysdeps/unix/sysv/linux/pwrite.c b/sysdeps/unix/sysv/linux/pwrite.c index 5a31d17ed4..c4bcff79b3 100644 --- a/sysdeps/unix/sysv/linux/pwrite.c +++ b/sysdeps/unix/sysv/linux/pwrite.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/pwrite64.c b/sysdeps/unix/sysv/linux/pwrite64.c index fb46e4ba53..c1e1d47d1b 100644 --- a/sysdeps/unix/sysv/linux/pwrite64.c +++ b/sysdeps/unix/sysv/linux/pwrite64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/pwritev.c b/sysdeps/unix/sysv/linux/pwritev.c index 8dcd21675e..b5b8faced5 100644 --- a/sysdeps/unix/sysv/linux/pwritev.c +++ b/sysdeps/unix/sysv/linux/pwritev.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/readahead.c b/sysdeps/unix/sysv/linux/readahead.c index ff84199e95..4f809d3abc 100644 --- a/sysdeps/unix/sysv/linux/readahead.c +++ b/sysdeps/unix/sysv/linux/readahead.c @@ -1,5 +1,5 @@ /* Provide kernel hint to read ahead. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/readlinkat.c b/sysdeps/unix/sysv/linux/readlinkat.c index d08a1339ad..8fbbd414ac 100644 --- a/sysdeps/unix/sysv/linux/readlinkat.c +++ b/sysdeps/unix/sysv/linux/readlinkat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/readonly-area.c b/sysdeps/unix/sysv/linux/readonly-area.c index fc92f96dc7..8508a30834 100644 --- a/sysdeps/unix/sysv/linux/readonly-area.c +++ b/sysdeps/unix/sysv/linux/readonly-area.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/readv.c b/sysdeps/unix/sysv/linux/readv.c index 8bdb97a0b1..48eae46b81 100644 --- a/sysdeps/unix/sysv/linux/readv.c +++ b/sysdeps/unix/sysv/linux/readv.c @@ -1,5 +1,5 @@ /* readv supports all Linux kernels >= 2.0. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/reboot.c b/sysdeps/unix/sysv/linux/reboot.c index a4c4aa68b2..b583a3de9a 100644 --- a/sysdeps/unix/sysv/linux/reboot.c +++ b/sysdeps/unix/sysv/linux/reboot.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/recvmmsg.c b/sysdeps/unix/sysv/linux/recvmmsg.c index 1a0badc4fc..bcb9a6cf5c 100644 --- a/sysdeps/unix/sysv/linux/recvmmsg.c +++ b/sysdeps/unix/sysv/linux/recvmmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab , 2010. diff --git a/sysdeps/unix/sysv/linux/renameat.c b/sysdeps/unix/sysv/linux/renameat.c index cba7615e54..8addae2d57 100644 --- a/sysdeps/unix/sysv/linux/renameat.c +++ b/sysdeps/unix/sysv/linux/renameat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/elfclass.h b/sysdeps/unix/sysv/linux/s390/bits/elfclass.h index 9d8a7df902..049f784a8f 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/elfclass.h +++ b/sysdeps/unix/sysv/linux/s390/bits/elfclass.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/bits/environments.h b/sysdeps/unix/sysv/linux/s390/bits/environments.h index 8ecf99c683..bad32f4d3f 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/environments.h +++ b/sysdeps/unix/sysv/linux/s390/bits/environments.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/fcntl.h b/sysdeps/unix/sysv/linux/s390/bits/fcntl.h index 2892afb26d..a495d5b449 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/s390/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/hwcap.h b/sysdeps/unix/sysv/linux/s390/bits/hwcap.h index 56cb806145..f4659fcc11 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/hwcap.h +++ b/sysdeps/unix/sysv/linux/s390/bits/hwcap.h @@ -1,5 +1,5 @@ /* Defines for bits in AT_HWCAP. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/ipc.h b/sysdeps/unix/sysv/linux/s390/bits/ipc.h index 1493af7967..db71f48862 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/ipc.h +++ b/sysdeps/unix/sysv/linux/s390/bits/ipc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/libc-vdso.h b/sysdeps/unix/sysv/linux/s390/bits/libc-vdso.h index d6daedb323..ce455dee3e 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/libc-vdso.h +++ b/sysdeps/unix/sysv/linux/s390/bits/libc-vdso.h @@ -1,5 +1,5 @@ /* Resolve function pointers to VDSO functions. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/mman.h b/sysdeps/unix/sysv/linux/s390/bits/mman.h index b788fa50d0..2547ca89ae 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/mman.h +++ b/sysdeps/unix/sysv/linux/s390/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/s390 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/msq.h b/sysdeps/unix/sysv/linux/s390/bits/msq.h index e2a7e03710..5e5f5ed9f2 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/msq.h +++ b/sysdeps/unix/sysv/linux/s390/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/sem.h b/sysdeps/unix/sysv/linux/s390/bits/sem.h index 7bfc477e27..1a648ad6a6 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/sem.h +++ b/sysdeps/unix/sysv/linux/s390/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/shm.h b/sysdeps/unix/sysv/linux/s390/bits/shm.h index 358e617a7d..ba5abd27e0 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/shm.h +++ b/sysdeps/unix/sysv/linux/s390/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/sigaction.h b/sysdeps/unix/sysv/linux/s390/bits/sigaction.h index a6f1cd8ce5..8d5ec4d898 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/sigaction.h +++ b/sysdeps/unix/sysv/linux/s390/bits/sigaction.h @@ -1,5 +1,5 @@ /* Definitions for 31 & 64 bit S/390 sigaction. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/siginfo.h b/sysdeps/unix/sysv/linux/s390/bits/siginfo.h index 19c94e77bc..e85ab0686d 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/siginfo.h +++ b/sysdeps/unix/sysv/linux/s390/bits/siginfo.h @@ -1,5 +1,5 @@ /* siginfo_t, sigevent and constants. S/390 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/stat.h b/sysdeps/unix/sysv/linux/s390/bits/stat.h index 51be598ebb..61ce38c12f 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/stat.h +++ b/sysdeps/unix/sysv/linux/s390/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/statfs.h b/sysdeps/unix/sysv/linux/s390/bits/statfs.h index 91dde15339..8c7c375602 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/statfs.h +++ b/sysdeps/unix/sysv/linux/s390/bits/statfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/typesizes.h b/sysdeps/unix/sysv/linux/s390/bits/typesizes.h index f3ed48f6bb..c34052f261 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/typesizes.h +++ b/sysdeps/unix/sysv/linux/s390/bits/typesizes.h @@ -1,5 +1,5 @@ /* bits/typesizes.h -- underlying types for *_t. Linux/s390 version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/utmp.h b/sysdeps/unix/sysv/linux/s390/bits/utmp.h index 96c1c99ffc..5a40a4142a 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/utmp.h +++ b/sysdeps/unix/sysv/linux/s390/bits/utmp.h @@ -1,5 +1,5 @@ /* The `struct utmp' type, describing entries in the utmp file. GNU version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/bits/utmpx.h b/sysdeps/unix/sysv/linux/s390/bits/utmpx.h index cb6067b93a..4f8cc8e401 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/utmpx.h +++ b/sysdeps/unix/sysv/linux/s390/bits/utmpx.h @@ -1,5 +1,5 @@ /* Structures and definitions for the user accounting database. GNU version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/brk.c b/sysdeps/unix/sysv/linux/s390/brk.c index 768e5efd26..b4fd999412 100644 --- a/sysdeps/unix/sysv/linux/s390/brk.c +++ b/sysdeps/unix/sysv/linux/s390/brk.c @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/dl-procinfo.h b/sysdeps/unix/sysv/linux/s390/dl-procinfo.h index 331230443a..60c51e4258 100644 --- a/sysdeps/unix/sysv/linux/s390/dl-procinfo.h +++ b/sysdeps/unix/sysv/linux/s390/dl-procinfo.h @@ -1,5 +1,5 @@ /* Linux/s390 version of processor capability information handling macros. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2006. diff --git a/sysdeps/unix/sysv/linux/s390/gettimeofday.c b/sysdeps/unix/sysv/linux/s390/gettimeofday.c index 22df7282a3..6dd8e4e227 100644 --- a/sysdeps/unix/sysv/linux/s390/gettimeofday.c +++ b/sysdeps/unix/sysv/linux/s390/gettimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/init-first.c b/sysdeps/unix/sysv/linux/s390/init-first.c index 44535bbd4e..8a68f32df2 100644 --- a/sysdeps/unix/sysv/linux/s390/init-first.c +++ b/sysdeps/unix/sysv/linux/s390/init-first.c @@ -1,5 +1,5 @@ /* Initialization code run first thing by the ELF startup code. Linux/s390. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/ldconfig.h b/sysdeps/unix/sysv/linux/s390/ldconfig.h index 1f24b8d3b0..df71e8e2a3 100644 --- a/sysdeps/unix/sysv/linux/s390/ldconfig.h +++ b/sysdeps/unix/sysv/linux/s390/ldconfig.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/readelflib.c b/sysdeps/unix/sysv/linux/s390/readelflib.c index fc48edd1f9..edb67bf14f 100644 --- a/sysdeps/unix/sysv/linux/s390/readelflib.c +++ b/sysdeps/unix/sysv/linux/s390/readelflib.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c b/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c index 606c2b50b9..e74f335768 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S b/sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S index 2a22834108..83cf0d8ffa 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/chown.c b/sysdeps/unix/sysv/linux/s390/s390-32/chown.c index 7fbd28a255..1fee84af1f 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/chown.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/chown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/clone.S b/sysdeps/unix/sysv/linux/s390/s390-32/clone.S index dc7835dfd8..f26c22936a 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/clone.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S b/sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S index 6923f0eb11..ce2d99430b 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getutent.c b/sysdeps/unix/sysv/linux/s390/s390-32/getutent.c index b7042d3c7b..89641c9ae2 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getutent.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getutent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c b/sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c index e1afcc0bff..db24515051 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getutid.c b/sysdeps/unix/sysv/linux/s390/s390-32/getutid.c index 32f1f25981..263ecd46f9 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getutid.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getutid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c b/sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c index 2f787ae616..df8c7de0e5 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getutline.c b/sysdeps/unix/sysv/linux/s390/s390-32/getutline.c index b785176557..273eb6de2d 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getutline.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getutline.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c b/sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c index 6066b94efa..385bfb9158 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getutmp.c b/sysdeps/unix/sysv/linux/s390/s390-32/getutmp.c index 8d715dee6a..e6273328e1 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getutmp.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getutmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getutxent.c b/sysdeps/unix/sysv/linux/s390/s390-32/getutxent.c index f9b7f6d5f4..f1c2c00a09 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getutxent.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getutxent.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getutxid.c b/sysdeps/unix/sysv/linux/s390/s390-32/getutxid.c index 3dfca4f6c0..0181ed9195 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getutxid.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getutxid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getutxline.c b/sysdeps/unix/sysv/linux/s390/s390-32/getutxline.c index e31c93b2d7..f401c92113 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getutxline.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getutxline.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/lchown.c b/sysdeps/unix/sysv/linux/s390/s390-32/lchown.c index 0b7073c14a..cfa7e97a2e 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/lchown.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/lchown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/login.c b/sysdeps/unix/sysv/linux/s390/s390-32/login.c index 83bf5120e7..487ac45668 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/login.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/login.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/login32.c b/sysdeps/unix/sysv/linux/s390/s390-32/login32.c index 1ee6401cd3..0007f9cd1f 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/login32.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/login32.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c b/sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c index d7a6994a8e..220706c755 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/mmap.S b/sysdeps/unix/sysv/linux/s390/s390-32/mmap.S index 8f6ac641b2..8844d4272e 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/mmap.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/mmap.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S b/sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S index fd543be971..e747beb59c 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c b/sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c index 08032bddab..ffcb454f8f 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h b/sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h index 78a86d820b..7f279072b4 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h +++ b/sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Linux/s390 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/pututxline.c b/sysdeps/unix/sysv/linux/s390/s390-32/pututxline.c index 8d9c9e0670..9b27396057 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/pututxline.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/pututxline.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h b/sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h index 41e6ba5731..fc58e0b7b0 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h +++ b/sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S b/sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S index 03d200880b..3008f8e4af 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/socket.S b/sysdeps/unix/sysv/linux/s390/s390-32/socket.S index 6c9111574a..f3ebb5a55f 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/socket.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/socket.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S b/sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S index b022f2ca74..6c40c994ef 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/syscall.S b/sysdeps/unix/sysv/linux/s390/s390-32/syscall.S index 7037119ab1..c901cc2df8 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/syscall.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S b/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S index 66eb6053d6..de3f8a4e84 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h b/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h index 18a7ad4b57..fa7c8c50e5 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h +++ b/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c b/sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c index f79fbcc990..3345483ce0 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/updwtmpx.c b/sysdeps/unix/sysv/linux/s390/s390-32/updwtmpx.c index 75869e5bdb..5afb8468a0 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/updwtmpx.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/updwtmpx.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/utmp-compat.h b/sysdeps/unix/sysv/linux/s390/s390-32/utmp-compat.h index 53a778d087..655cdfd892 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/utmp-compat.h +++ b/sysdeps/unix/sysv/linux/s390/s390-32/utmp-compat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h b/sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h index 90324ebfad..ad4f937b8d 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h +++ b/sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/utmp32.c b/sysdeps/unix/sysv/linux/s390/s390-32/utmp32.c index 37e0950578..510765bc3a 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/utmp32.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/utmp32.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h b/sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h index ae7f04d0b9..3eb23f90e4 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h +++ b/sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h @@ -1,5 +1,5 @@ /* The `struct utmp' type, describing entries in the utmp file. GNU version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/utmpx-convert.h b/sysdeps/unix/sysv/linux/s390/s390-32/utmpx-convert.h index 0a96f79ac9..4dae6c2142 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/utmpx-convert.h +++ b/sysdeps/unix/sysv/linux/s390/s390-32/utmpx-convert.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.c b/sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.c index fc134f378b..df67a7776d 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Andreas Krebbel . This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h b/sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h index 9e4f33d485..d9fbf4e915 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h +++ b/sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h @@ -1,5 +1,5 @@ /* The `struct utmp' type, describing entries in the utmp file. GNU version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c b/sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c index d04d6e5d00..a3b1375a0d 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c +++ b/sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S b/sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S index 13744fd58e..71ecbab08e 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S +++ b/sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/clone.S b/sysdeps/unix/sysv/linux/s390/s390-64/clone.S index c90b9bdbf4..ee501b5252 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/clone.S +++ b/sysdeps/unix/sysv/linux/s390/s390-64/clone.S @@ -1,5 +1,5 @@ /* Wrapper around clone system call. 64 bit S/390 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/dl-cache.h b/sysdeps/unix/sysv/linux/s390/s390-64/dl-cache.h index 7e3fd198e7..302dab37e3 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/dl-cache.h +++ b/sysdeps/unix/sysv/linux/s390/s390-64/dl-cache.h @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S b/sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S index 7c406cb237..db271c5dc5 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S +++ b/sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/kernel_stat.h b/sysdeps/unix/sysv/linux/s390/s390-64/kernel_stat.h index 603bfcb44a..a34bea5881 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/kernel_stat.h +++ b/sysdeps/unix/sysv/linux/s390/s390-64/kernel_stat.h @@ -1,5 +1,5 @@ /* Definition of `struct stat' used in the kernel. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c b/sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c index c925a5cb4f..6623744b9e 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c +++ b/sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/mmap.S b/sysdeps/unix/sysv/linux/s390/s390-64/mmap.S index 2d2ef0c604..de4b711da8 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/mmap.S +++ b/sysdeps/unix/sysv/linux/s390/s390-64/mmap.S @@ -1,5 +1,5 @@ /* Wrapper around mmap system call. 64 bit S/390 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h b/sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h index fb57859879..b5d243193d 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h +++ b/sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Linux/s390 version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h b/sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h index 3067c4c374..4621863ff0 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h +++ b/sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. 64 bit S/390 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S b/sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S index f9ce7b6d33..83df5ce461 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S +++ b/sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c b/sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c index d5ce03ce9e..e9a984b5af 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c +++ b/sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/sigpending.c b/sysdeps/unix/sysv/linux/s390/s390-64/sigpending.c index cffb92a3a7..c9536303d6 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/sigpending.c +++ b/sysdeps/unix/sysv/linux/s390/s390-64/sigpending.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/sigprocmask.c b/sysdeps/unix/sysv/linux/s390/s390-64/sigprocmask.c index bd802739ea..4ef5f06c54 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/sigprocmask.c +++ b/sysdeps/unix/sysv/linux/s390/s390-64/sigprocmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/socket.S b/sysdeps/unix/sysv/linux/s390/s390-64/socket.S index e3fb8b9bec..788599a106 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/socket.S +++ b/sysdeps/unix/sysv/linux/s390/s390-64/socket.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S b/sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S index a626660744..ec92898964 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S +++ b/sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/syscall.S b/sysdeps/unix/sysv/linux/s390/s390-64/syscall.S index f204d25412..390f974316 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/syscall.S +++ b/sysdeps/unix/sysv/linux/s390/s390-64/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S b/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S index 0d6af0bd38..0fbfe9c9e0 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S +++ b/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h b/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h index 3eea5c9f68..020cd9ad45 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h +++ b/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for 64 bit S/390. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/semtimedop.c b/sysdeps/unix/sysv/linux/s390/semtimedop.c index ad674192cc..9fe17c41fd 100644 --- a/sysdeps/unix/sysv/linux/s390/semtimedop.c +++ b/sysdeps/unix/sysv/linux/s390/semtimedop.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Martin Schwidefsky , 2003. diff --git a/sysdeps/unix/sysv/linux/s390/sigcontextinfo.h b/sysdeps/unix/sysv/linux/s390/sigcontextinfo.h index 71d22e060b..8e3f125b38 100644 --- a/sysdeps/unix/sysv/linux/s390/sigcontextinfo.h +++ b/sysdeps/unix/sysv/linux/s390/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/sys/elf.h b/sysdeps/unix/sysv/linux/s390/sys/elf.h index 62225eb2f2..a67c63bdc9 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/elf.h +++ b/sysdeps/unix/sysv/linux/s390/sys/elf.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/sys/procfs.h b/sysdeps/unix/sysv/linux/s390/sys/procfs.h index c27c660a94..6167ef9119 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/s390/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/sys/ptrace.h b/sysdeps/unix/sysv/linux/s390/sys/ptrace.h index e7f7b22cc8..d86188e5f3 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/s390/sys/ptrace.h @@ -1,5 +1,5 @@ /* `ptrace' debugger support interface. Linux version. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h index eca262543f..d528cb189d 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). This file is part of the GNU C Library. diff --git a/sysdeps/unix/sysv/linux/s390/sys/user.h b/sysdeps/unix/sysv/linux/s390/sys/user.h index 5cdfaed087..ccf652eca4 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/user.h +++ b/sysdeps/unix/sysv/linux/s390/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/s390/system.c b/sysdeps/unix/sysv/linux/s390/system.c index 1ff22a0bdd..f30e92cb6e 100644 --- a/sysdeps/unix/sysv/linux/s390/system.c +++ b/sysdeps/unix/sysv/linux/s390/system.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sched_getaffinity.c b/sysdeps/unix/sysv/linux/sched_getaffinity.c index c1d99fdf35..8e04ca0345 100644 --- a/sysdeps/unix/sysv/linux/sched_getaffinity.c +++ b/sysdeps/unix/sysv/linux/sched_getaffinity.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sched_getcpu.c b/sysdeps/unix/sysv/linux/sched_getcpu.c index abab9489b8..6c63fa9ef8 100644 --- a/sysdeps/unix/sysv/linux/sched_getcpu.c +++ b/sysdeps/unix/sysv/linux/sched_getcpu.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sched_setaffinity.c b/sysdeps/unix/sysv/linux/sched_setaffinity.c index be12757c24..77345338ef 100644 --- a/sysdeps/unix/sysv/linux/sched_setaffinity.c +++ b/sysdeps/unix/sysv/linux/sched_setaffinity.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/scsi/scsi.h b/sysdeps/unix/sysv/linux/scsi/scsi.h index 5230282140..23ffa228d7 100644 --- a/sysdeps/unix/sysv/linux/scsi/scsi.h +++ b/sysdeps/unix/sysv/linux/scsi/scsi.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h b/sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h index d151580eb1..0ef79e5ebc 100644 --- a/sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h +++ b/sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/scsi/sg.h b/sysdeps/unix/sysv/linux/scsi/sg.h index 68f57f29fa..a69cb867f3 100644 --- a/sysdeps/unix/sysv/linux/scsi/sg.h +++ b/sysdeps/unix/sysv/linux/scsi/sg.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/semctl.c b/sysdeps/unix/sysv/linux/semctl.c index b28861d429..b20fb39c30 100644 --- a/sysdeps/unix/sysv/linux/semctl.c +++ b/sysdeps/unix/sysv/linux/semctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/semget.c b/sysdeps/unix/sysv/linux/semget.c index 19454cf7bd..57d561dae6 100644 --- a/sysdeps/unix/sysv/linux/semget.c +++ b/sysdeps/unix/sysv/linux/semget.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/semop.c b/sysdeps/unix/sysv/linux/semop.c index cbe42ac62d..58f0c074d7 100644 --- a/sysdeps/unix/sysv/linux/semop.c +++ b/sysdeps/unix/sysv/linux/semop.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/semtimedop.c b/sysdeps/unix/sysv/linux/semtimedop.c index 3da3554700..12d2357f5e 100644 --- a/sysdeps/unix/sysv/linux/semtimedop.c +++ b/sysdeps/unix/sysv/linux/semtimedop.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/sendmmsg.c b/sysdeps/unix/sysv/linux/sendmmsg.c index 616d7f27a8..598ff40d75 100644 --- a/sysdeps/unix/sysv/linux/sendmmsg.c +++ b/sysdeps/unix/sysv/linux/sendmmsg.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/unix/sysv/linux/setegid.c b/sysdeps/unix/sysv/linux/setegid.c index 4d14e53a19..e6d60d7d03 100644 --- a/sysdeps/unix/sysv/linux/setegid.c +++ b/sysdeps/unix/sysv/linux/setegid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/seteuid.c b/sysdeps/unix/sysv/linux/seteuid.c index 60442d548d..498ebeccb1 100644 --- a/sysdeps/unix/sysv/linux/seteuid.c +++ b/sysdeps/unix/sysv/linux/seteuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/setgid.c b/sysdeps/unix/sysv/linux/setgid.c index 0339b2645b..4bf5d5e8d2 100644 --- a/sysdeps/unix/sysv/linux/setgid.c +++ b/sysdeps/unix/sysv/linux/setgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/setgroups.c b/sysdeps/unix/sysv/linux/setgroups.c index bfb15887ae..f2f0143f65 100644 --- a/sysdeps/unix/sysv/linux/setgroups.c +++ b/sysdeps/unix/sysv/linux/setgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/setipv4sourcefilter.c b/sysdeps/unix/sysv/linux/setipv4sourcefilter.c index a9b4d3b4b7..29e2670b23 100644 --- a/sysdeps/unix/sysv/linux/setipv4sourcefilter.c +++ b/sysdeps/unix/sysv/linux/setipv4sourcefilter.c @@ -1,5 +1,5 @@ /* Set IPv4 source filter. Linux version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/sysdeps/unix/sysv/linux/setregid.c b/sysdeps/unix/sysv/linux/setregid.c index 805feca397..f189d52d86 100644 --- a/sysdeps/unix/sysv/linux/setregid.c +++ b/sysdeps/unix/sysv/linux/setregid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/setresgid.c b/sysdeps/unix/sysv/linux/setresgid.c index 7b74e63a2c..6e0d0ccff9 100644 --- a/sysdeps/unix/sysv/linux/setresgid.c +++ b/sysdeps/unix/sysv/linux/setresgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/setresuid.c b/sysdeps/unix/sysv/linux/setresuid.c index 53c2f77af6..47a5476aa7 100644 --- a/sysdeps/unix/sysv/linux/setresuid.c +++ b/sysdeps/unix/sysv/linux/setresuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/setreuid.c b/sysdeps/unix/sysv/linux/setreuid.c index ebe628f353..5377ccc21c 100644 --- a/sysdeps/unix/sysv/linux/setreuid.c +++ b/sysdeps/unix/sysv/linux/setreuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/setrlimit64.c b/sysdeps/unix/sysv/linux/setrlimit64.c index bc0b87b4c4..9cb7e8f282 100644 --- a/sysdeps/unix/sysv/linux/setrlimit64.c +++ b/sysdeps/unix/sysv/linux/setrlimit64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/setsourcefilter.c b/sysdeps/unix/sysv/linux/setsourcefilter.c index f50f293cf0..219077c044 100644 --- a/sysdeps/unix/sysv/linux/setsourcefilter.c +++ b/sysdeps/unix/sysv/linux/setsourcefilter.c @@ -1,5 +1,5 @@ /* Set source filter. Linux version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/sysdeps/unix/sysv/linux/setuid.c b/sysdeps/unix/sysv/linux/setuid.c index 28f8dcaa97..4b9ee56db7 100644 --- a/sysdeps/unix/sysv/linux/setuid.c +++ b/sysdeps/unix/sysv/linux/setuid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/____longjmp_chk.S b/sysdeps/unix/sysv/linux/sh/____longjmp_chk.S index 4495fe2d1b..b276466f53 100644 --- a/sysdeps/unix/sysv/linux/sh/____longjmp_chk.S +++ b/sysdeps/unix/sysv/linux/sh/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/bits/atomic.h b/sysdeps/unix/sysv/linux/sh/bits/atomic.h index 63188b9aa0..e819412007 100644 --- a/sysdeps/unix/sysv/linux/sh/bits/atomic.h +++ b/sysdeps/unix/sysv/linux/sh/bits/atomic.h @@ -1,5 +1,5 @@ /* Atomic operations used inside libc. Linux/SH version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/bits/fcntl.h b/sysdeps/unix/sysv/linux/sh/bits/fcntl.h index 68286d3d73..6441593356 100644 --- a/sysdeps/unix/sysv/linux/sh/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/sh/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux/SH. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/bits/mman.h b/sysdeps/unix/sysv/linux/sh/bits/mman.h index 396a9b918f..39d2a4b46a 100644 --- a/sysdeps/unix/sysv/linux/sh/bits/mman.h +++ b/sysdeps/unix/sysv/linux/sh/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/SH version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/bits/shm.h b/sysdeps/unix/sysv/linux/sh/bits/shm.h index d35160927c..5fa0870431 100644 --- a/sysdeps/unix/sysv/linux/sh/bits/shm.h +++ b/sysdeps/unix/sysv/linux/sh/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/brk.c b/sysdeps/unix/sysv/linux/sh/brk.c index d9097d391c..0c6f1e8f55 100644 --- a/sysdeps/unix/sysv/linux/sh/brk.c +++ b/sysdeps/unix/sysv/linux/sh/brk.c @@ -1,5 +1,5 @@ /* brk system call for Linux/SH. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/chown.c b/sysdeps/unix/sysv/linux/sh/chown.c index 853d48af8d..27be894a5b 100644 --- a/sysdeps/unix/sysv/linux/sh/chown.c +++ b/sysdeps/unix/sysv/linux/sh/chown.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/clone.S b/sysdeps/unix/sysv/linux/sh/clone.S index 1a8fb4e352..b7d6101d16 100644 --- a/sysdeps/unix/sysv/linux/sh/clone.S +++ b/sysdeps/unix/sysv/linux/sh/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/makecontext.S b/sysdeps/unix/sysv/linux/sh/makecontext.S index c549a8fabf..6221913871 100644 --- a/sysdeps/unix/sysv/linux/sh/makecontext.S +++ b/sysdeps/unix/sysv/linux/sh/makecontext.S @@ -1,5 +1,5 @@ /* Create new context. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/pipe.S b/sysdeps/unix/sysv/linux/sh/pipe.S index cca6784323..23d8d592e7 100644 --- a/sysdeps/unix/sysv/linux/sh/pipe.S +++ b/sysdeps/unix/sysv/linux/sh/pipe.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/pread.c b/sysdeps/unix/sysv/linux/sh/pread.c index ae338dc218..a2a37b11f3 100644 --- a/sysdeps/unix/sysv/linux/sh/pread.c +++ b/sysdeps/unix/sysv/linux/sh/pread.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/sh/pread64.c b/sysdeps/unix/sysv/linux/sh/pread64.c index 2a46d7034c..5fd50c2e0e 100644 --- a/sysdeps/unix/sysv/linux/sh/pread64.c +++ b/sysdeps/unix/sysv/linux/sh/pread64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/sh/profil-counter.h b/sysdeps/unix/sysv/linux/sh/profil-counter.h index 4962b0616f..d7707c0cc8 100644 --- a/sysdeps/unix/sysv/linux/sh/profil-counter.h +++ b/sysdeps/unix/sysv/linux/sh/profil-counter.h @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Linux/SH version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/pwrite.c b/sysdeps/unix/sysv/linux/sh/pwrite.c index 4b20e518cd..887b36bc58 100644 --- a/sysdeps/unix/sysv/linux/sh/pwrite.c +++ b/sysdeps/unix/sysv/linux/sh/pwrite.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/sh/pwrite64.c b/sysdeps/unix/sysv/linux/sh/pwrite64.c index 5639b3c419..bd557789f6 100644 --- a/sysdeps/unix/sysv/linux/sh/pwrite64.c +++ b/sysdeps/unix/sysv/linux/sh/pwrite64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ralf Baechle , 1998. diff --git a/sysdeps/unix/sysv/linux/sh/sh3/getcontext.S b/sysdeps/unix/sysv/linux/sh/sh3/getcontext.S index 50b99fb386..c9085c311e 100644 --- a/sysdeps/unix/sysv/linux/sh/sh3/getcontext.S +++ b/sysdeps/unix/sysv/linux/sh/sh3/getcontext.S @@ -1,5 +1,5 @@ /* Save current context. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sh3/register-dump.h b/sysdeps/unix/sysv/linux/sh/sh3/register-dump.h index 5277b605d0..0d98d68dba 100644 --- a/sysdeps/unix/sysv/linux/sh/sh3/register-dump.h +++ b/sysdeps/unix/sysv/linux/sh/sh3/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sh3/setcontext.S b/sysdeps/unix/sysv/linux/sh/sh3/setcontext.S index 1bd8041a85..2f3c5eb885 100644 --- a/sysdeps/unix/sysv/linux/sh/sh3/setcontext.S +++ b/sysdeps/unix/sysv/linux/sh/sh3/setcontext.S @@ -1,5 +1,5 @@ /* Install given context. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S b/sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S index e42fd35ab6..06955d35bd 100644 --- a/sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S +++ b/sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S @@ -1,5 +1,5 @@ /* Save current context and install the given one. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h b/sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h index 7b89433366..fe06b074ee 100644 --- a/sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sh4/getcontext.S b/sysdeps/unix/sysv/linux/sh/sh4/getcontext.S index 94cbfc3413..12a355e43f 100644 --- a/sysdeps/unix/sysv/linux/sh/sh4/getcontext.S +++ b/sysdeps/unix/sysv/linux/sh/sh4/getcontext.S @@ -1,5 +1,5 @@ /* Save current context. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h b/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h index 8141778048..a77df8cc5a 100644 --- a/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h +++ b/sysdeps/unix/sysv/linux/sh/sh4/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S b/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S index d3a543f4f9..1cb50c7af8 100644 --- a/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S +++ b/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S @@ -1,5 +1,5 @@ /* Install given context. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S b/sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S index 985c1a6965..1b641b06ee 100644 --- a/sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S +++ b/sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S @@ -1,5 +1,5 @@ /* Save current context and install the given one. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h b/sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h index 26d12532e3..799b2775ef 100644 --- a/sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sigcontextinfo.h b/sysdeps/unix/sysv/linux/sh/sigcontextinfo.h index 7a83e5074e..a6088056ca 100644 --- a/sysdeps/unix/sysv/linux/sh/sigcontextinfo.h +++ b/sysdeps/unix/sysv/linux/sh/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell , 1999. diff --git a/sysdeps/unix/sysv/linux/sh/socket.S b/sysdeps/unix/sysv/linux/sh/socket.S index fc16ea4200..d5875aa293 100644 --- a/sysdeps/unix/sysv/linux/sh/socket.S +++ b/sysdeps/unix/sysv/linux/sh/socket.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sys/procfs.h b/sysdeps/unix/sysv/linux/sh/sys/procfs.h index b31dba99ba..da61af4b0d 100644 --- a/sysdeps/unix/sysv/linux/sh/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/sh/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sys/user.h b/sysdeps/unix/sysv/linux/sh/sys/user.h index d4f01141b2..8938796468 100644 --- a/sysdeps/unix/sysv/linux/sh/sys/user.h +++ b/sysdeps/unix/sysv/linux/sh/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/syscall.S b/sysdeps/unix/sysv/linux/sh/syscall.S index 9c714257bb..f93f59fd33 100644 --- a/sysdeps/unix/sysv/linux/sh/syscall.S +++ b/sysdeps/unix/sysv/linux/sh/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sysdep.S b/sysdeps/unix/sysv/linux/sh/sysdep.S index fcfce8a2aa..9a300ffac1 100644 --- a/sysdeps/unix/sysv/linux/sh/sysdep.S +++ b/sysdeps/unix/sysv/linux/sh/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sh/sysdep.h b/sysdeps/unix/sysv/linux/sh/sysdep.h index 6fb5f91c84..41b2eea7a2 100644 --- a/sysdeps/unix/sysv/linux/sh/sysdep.h +++ b/sysdeps/unix/sysv/linux/sh/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, , August 1995. Changed by Kaz Kojima, . diff --git a/sysdeps/unix/sysv/linux/sh/vfork.S b/sysdeps/unix/sysv/linux/sh/vfork.S index 8099fec49d..436e4fb491 100644 --- a/sysdeps/unix/sysv/linux/sh/vfork.S +++ b/sysdeps/unix/sysv/linux/sh/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/shm_open.c b/sysdeps/unix/sysv/linux/shm_open.c index 7bb28744c1..5f23515b9c 100644 --- a/sysdeps/unix/sysv/linux/shm_open.c +++ b/sysdeps/unix/sysv/linux/shm_open.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/shmat.c b/sysdeps/unix/sysv/linux/shmat.c index bac1b290ac..c0b6056868 100644 --- a/sysdeps/unix/sysv/linux/shmat.c +++ b/sysdeps/unix/sysv/linux/shmat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/shmctl.c b/sysdeps/unix/sysv/linux/shmctl.c index 34806fbb6b..f7b273c177 100644 --- a/sysdeps/unix/sysv/linux/shmctl.c +++ b/sysdeps/unix/sysv/linux/shmctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/shmdt.c b/sysdeps/unix/sysv/linux/shmdt.c index 260526bb7f..0bfd1bb97f 100644 --- a/sysdeps/unix/sysv/linux/shmdt.c +++ b/sysdeps/unix/sysv/linux/shmdt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/shmget.c b/sysdeps/unix/sysv/linux/shmget.c index e958db9fab..c254257ad6 100644 --- a/sysdeps/unix/sysv/linux/shmget.c +++ b/sysdeps/unix/sysv/linux/shmget.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/sigaction.c b/sysdeps/unix/sysv/linux/sigaction.c index 336975c51d..043d16486c 100644 --- a/sysdeps/unix/sysv/linux/sigaction.c +++ b/sysdeps/unix/sysv/linux/sigaction.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/siglist.h b/sysdeps/unix/sysv/linux/siglist.h index f9d55a4c18..7a78f08626 100644 --- a/sysdeps/unix/sysv/linux/siglist.h +++ b/sysdeps/unix/sysv/linux/siglist.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/signalfd.c b/sysdeps/unix/sysv/linux/signalfd.c index 3b6e3f622d..f3f91a61a0 100644 --- a/sysdeps/unix/sysv/linux/signalfd.c +++ b/sysdeps/unix/sysv/linux/signalfd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sigpending.c b/sysdeps/unix/sysv/linux/sigpending.c index 56f581ea4f..cffe0a6969 100644 --- a/sysdeps/unix/sysv/linux/sigpending.c +++ b/sysdeps/unix/sysv/linux/sigpending.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sigprocmask.c b/sysdeps/unix/sysv/linux/sigprocmask.c index 1af03c3cd2..fe0a150bce 100644 --- a/sysdeps/unix/sysv/linux/sigprocmask.c +++ b/sysdeps/unix/sysv/linux/sigprocmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sigqueue.c b/sysdeps/unix/sysv/linux/sigqueue.c index 37d61c8a1a..40a2ee288c 100644 --- a/sysdeps/unix/sysv/linux/sigqueue.c +++ b/sysdeps/unix/sysv/linux/sigqueue.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sigset-cvt-mask.h b/sysdeps/unix/sysv/linux/sigset-cvt-mask.h index 258f95f6cd..78d8dc2cf4 100644 --- a/sysdeps/unix/sysv/linux/sigset-cvt-mask.h +++ b/sysdeps/unix/sysv/linux/sigset-cvt-mask.h @@ -1,6 +1,6 @@ /* Convert between lowlevel sigmask and libc representation of sigset_t. Linux version. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Joe Keane . diff --git a/sysdeps/unix/sysv/linux/sigstack.c b/sysdeps/unix/sysv/linux/sigstack.c index db163e17b5..e4b100feb0 100644 --- a/sysdeps/unix/sysv/linux/sigstack.c +++ b/sysdeps/unix/sysv/linux/sigstack.c @@ -1,5 +1,5 @@ /* Emulate sigstack function using sigaltstack. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/unix/sysv/linux/sigsuspend.c b/sysdeps/unix/sysv/linux/sigsuspend.c index 992a422da3..becdcc4eec 100644 --- a/sysdeps/unix/sysv/linux/sigsuspend.c +++ b/sysdeps/unix/sysv/linux/sigsuspend.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sigtimedwait.c b/sysdeps/unix/sysv/linux/sigtimedwait.c index 20fe3550d8..5491b480ea 100644 --- a/sysdeps/unix/sysv/linux/sigtimedwait.c +++ b/sysdeps/unix/sysv/linux/sigtimedwait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sigwait.c b/sysdeps/unix/sysv/linux/sigwait.c index 9ea21d0776..26528227e6 100644 --- a/sysdeps/unix/sysv/linux/sigwait.c +++ b/sysdeps/unix/sysv/linux/sigwait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sigwaitinfo.c b/sysdeps/unix/sysv/linux/sigwaitinfo.c index 50fa72bf4b..9218afc551 100644 --- a/sysdeps/unix/sysv/linux/sigwaitinfo.c +++ b/sysdeps/unix/sysv/linux/sigwaitinfo.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sizes.h b/sysdeps/unix/sysv/linux/sizes.h index 609967683d..fecf35d871 100644 --- a/sysdeps/unix/sysv/linux/sizes.h +++ b/sysdeps/unix/sysv/linux/sizes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sleep.c b/sysdeps/unix/sysv/linux/sleep.c index 7d0ac93e78..46b731e0a7 100644 --- a/sysdeps/unix/sysv/linux/sleep.c +++ b/sysdeps/unix/sysv/linux/sleep.c @@ -1,5 +1,5 @@ /* Implementation of the POSIX sleep function using nanosleep. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/unix/sysv/linux/socketcall.h b/sysdeps/unix/sysv/linux/socketcall.h index d156717209..7c2404a490 100644 --- a/sysdeps/unix/sysv/linux/socketcall.h +++ b/sysdeps/unix/sysv/linux/socketcall.h @@ -1,5 +1,5 @@ /* ID for functions called via socketcall system call. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/environments.h b/sysdeps/unix/sysv/linux/sparc/bits/environments.h index 0fe1e3f5fd..475ce8b4dc 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/environments.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/environments.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/epoll.h b/sysdeps/unix/sysv/linux/sparc/bits/epoll.h index d984723653..fee8f32c1e 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/epoll.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/epoll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/errno.h b/sysdeps/unix/sysv/linux/sparc/bits/errno.h index ef6eeaf166..e87874c3d7 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/errno.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/errno.h @@ -1,5 +1,5 @@ /* Error constants. Linux/Sparc specific version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/eventfd.h b/sysdeps/unix/sysv/linux/sparc/bits/eventfd.h index b0234d1a20..c81ddff7b0 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/eventfd.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/eventfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h b/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h index 7efdf68146..cb3b817208 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux/SPARC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/inotify.h b/sysdeps/unix/sysv/linux/sparc/bits/inotify.h index ef0070fe57..b08b6b6470 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/inotify.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/inotify.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/ioctls.h b/sysdeps/unix/sysv/linux/sparc/bits/ioctls.h index f183f85717..7300ece036 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/ioctls.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/ioctls.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/ipc.h b/sysdeps/unix/sysv/linux/sparc/bits/ipc.h index 885c1f77a8..8f2acae8fc 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/ipc.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/ipc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/mman.h b/sysdeps/unix/sysv/linux/sparc/bits/mman.h index ad0389ca3f..b8a7e9bcb6 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/mman.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/SPARC version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/msq.h b/sysdeps/unix/sysv/linux/sparc/bits/msq.h index cdeda0f586..7d7da0fb18 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/msq.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/poll.h b/sysdeps/unix/sysv/linux/sparc/bits/poll.h index 56237dfe4a..7dc7d99800 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/poll.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/poll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/resource.h b/sysdeps/unix/sysv/linux/sparc/bits/resource.h index 14c2b70ad3..aa201fe148 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/resource.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/resource.h @@ -1,5 +1,5 @@ /* Bit values & structures for resource limits. Linux/SPARC version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/sem.h b/sysdeps/unix/sysv/linux/sparc/bits/sem.h index 558e5aa2b0..40c50fca20 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/sem.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/setjmp.h b/sysdeps/unix/sysv/linux/sparc/bits/setjmp.h index 465aa6ba8f..cb1a934cb0 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/setjmp.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/shm.h b/sysdeps/unix/sysv/linux/sparc/bits/shm.h index 4518cf00ec..38504b39c3 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/shm.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h b/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h index 1e3521d0af..5d8bf142e1 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/sigaction.h @@ -1,5 +1,5 @@ /* The proper definitions for Linux/SPARC sigaction. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/sigcontext.h b/sysdeps/unix/sysv/linux/sparc/bits/sigcontext.h index c748ce54d1..bbdf6b1e63 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/sigcontext.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/sigcontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h b/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h index 88fa1dfd5e..69e606eb6f 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h @@ -1,5 +1,5 @@ /* siginfo_t, sigevent and constants. Linux/SPARC version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/signalfd.h b/sysdeps/unix/sysv/linux/sparc/bits/signalfd.h index bc24c572b3..6e4829bbc9 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/signalfd.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/signalfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/signum.h b/sysdeps/unix/sysv/linux/sparc/bits/signum.h index c059062a3e..5e7f08c774 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/signum.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/signum.h @@ -1,5 +1,5 @@ /* Signal number definitions. Linux/SPARC version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/sigstack.h b/sysdeps/unix/sysv/linux/sparc/bits/sigstack.h index 33be9e8dbb..92790def19 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/sigstack.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/sigstack.h @@ -1,5 +1,5 @@ /* sigstack, sigaltstack definitions. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/socket_type.h b/sysdeps/unix/sysv/linux/sparc/bits/socket_type.h index a8f36148f3..5867eb8eb9 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/socket_type.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/socket_type.h @@ -1,5 +1,5 @@ /* Define enum __socket_type for Linux/SPARC. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/stat.h b/sysdeps/unix/sysv/linux/sparc/bits/stat.h index b87fd584df..69cb511100 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/stat.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/termios.h b/sysdeps/unix/sysv/linux/sparc/bits/termios.h index 32ae4ed045..0109cdd10d 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/termios.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/termios.h @@ -1,5 +1,5 @@ /* termios type and macro definitions. Linux/SPARC version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/timerfd.h b/sysdeps/unix/sysv/linux/sparc/bits/timerfd.h index ba7131fb01..6f34fc4a29 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/timerfd.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/timerfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/bits/typesizes.h b/sysdeps/unix/sysv/linux/sparc/bits/typesizes.h index d6a964372b..3bcc19ce70 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/typesizes.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/typesizes.h @@ -1,5 +1,5 @@ /* bits/typesizes.h -- underlying types for *_t. Linux/SPARC version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/dl-cache.h b/sysdeps/unix/sysv/linux/sparc/dl-cache.h index e81880f85e..a797f2b045 100644 --- a/sysdeps/unix/sysv/linux/sparc/dl-cache.h +++ b/sysdeps/unix/sysv/linux/sparc/dl-cache.h @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/fork.S b/sysdeps/unix/sysv/linux/sparc/fork.S index 65e3b2d635..f3a83e6351 100644 --- a/sysdeps/unix/sysv/linux/sparc/fork.S +++ b/sysdeps/unix/sysv/linux/sparc/fork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza , 1997. diff --git a/sysdeps/unix/sysv/linux/sparc/getshmlba.c b/sysdeps/unix/sysv/linux/sparc/getshmlba.c index 5affa4ba0b..0a30a19bc5 100644 --- a/sysdeps/unix/sysv/linux/sparc/getshmlba.c +++ b/sysdeps/unix/sysv/linux/sparc/getshmlba.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/getsysstats.c b/sysdeps/unix/sysv/linux/sparc/getsysstats.c index 8ecf1836ca..8ec0a92bbf 100644 --- a/sysdeps/unix/sysv/linux/sparc/getsysstats.c +++ b/sysdeps/unix/sysv/linux/sparc/getsysstats.c @@ -1,5 +1,5 @@ /* Determine various system internal values, Linux/Sparc version. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab and Jakub Jelinek diff --git a/sysdeps/unix/sysv/linux/sparc/kernel_termios.h b/sysdeps/unix/sysv/linux/sparc/kernel_termios.h index 08e39300b0..ec6dd84320 100644 --- a/sysdeps/unix/sysv/linux/sparc/kernel_termios.h +++ b/sysdeps/unix/sysv/linux/sparc/kernel_termios.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/readelflib.c b/sysdeps/unix/sysv/linux/sparc/readelflib.c index 61de1b4f35..1f584acf75 100644 --- a/sysdeps/unix/sysv/linux/sparc/readelflib.c +++ b/sysdeps/unix/sysv/linux/sparc/readelflib.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999 and Jakub Jelinek , 1999. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S b/sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S index 66c0cf0080..a20d0cf7fd 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/brk.c b/sysdeps/unix/sysv/linux/sparc/sparc32/brk.c index 2c96faa870..40152d5ae0 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/brk.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/brk.c @@ -1,5 +1,5 @@ /* brk system call for Linux/SPARC. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza (miguel@nuclecu.unam.mx) diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S b/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S index 20f99fe150..e007d5debc 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@tamu.edu). diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/getcontext.S b/sysdeps/unix/sysv/linux/sparc/sparc32/getcontext.S index e0a4cd4764..b7fef42b2d 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/getcontext.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/getcontext.S @@ -1,5 +1,5 @@ /* Save current context. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2008. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c b/sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c index 5e64efa6af..41a235599b 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c @@ -1,5 +1,5 @@ /* Create new context. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2008. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/pipe.S b/sysdeps/unix/sysv/linux/sparc/sparc32/pipe.S index 41fd6ee004..8bc121fc1f 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/pipe.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/pipe.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza , 1997. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/profil-counter.h b/sysdeps/unix/sysv/linux/sparc/sparc32/profil-counter.h index e8be937e1b..31b4ddf7ac 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/profil-counter.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/profil-counter.h @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Linux/SPARC version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h b/sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h index 2d88305161..a82f5ce147 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 1999. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c b/sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c index 1a4bbac8f1..be80697867 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c @@ -1,5 +1,5 @@ /* Semctl for architectures where word sized unions are passed indirectly - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S b/sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S index f780801485..1e80d72c35 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S @@ -1,5 +1,5 @@ /* Install given context. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2008. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c b/sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c index c3adc2d1ca..5e8cf69800 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c @@ -1,5 +1,5 @@ /* POSIX.1 sigaction call for Linux/SPARC. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza , 1997. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h b/sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h index 0cf908ccda..ff7eb42eda 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 1999. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/socket.S b/sysdeps/unix/sysv/linux/sparc/sparc32/socket.S index 8bb3e1242d..00c6d27881 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/socket.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/socket.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza , 1997. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/swapcontext.S b/sysdeps/unix/sysv/linux/sparc/sparc32/swapcontext.S index fa855c6708..95cc41125c 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/swapcontext.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/swapcontext.S @@ -1,5 +1,5 @@ /* Save current context and install the given one. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David S. Miller , 2008. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/syscall.S b/sysdeps/unix/sysv/linux/sparc/sparc32/syscall.S index 5f2cb5644e..6fed9ceee3 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/syscall.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h b/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h index 5f42c8c282..8b0d0807f4 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza , January 1997. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S b/sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S index de3389b4dc..5885d84770 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2009-2013 Free Software Foundation, Inc. +/* Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S b/sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S index 42b4e37aff..48e72fa823 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/brk.S b/sysdeps/unix/sysv/linux/sparc/sparc64/brk.S index e9b98088f6..567163f907 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/brk.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/brk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S b/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S index 6555fdf702..57d75d2d26 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@tamu.edu). diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/dl-cache.h b/sysdeps/unix/sysv/linux/sparc/sparc64/dl-cache.h index b99d23c171..7409e0db88 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/dl-cache.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/dl-cache.h @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c b/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c index 2beff60b34..99ee15cfba 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c @@ -1,5 +1,5 @@ /* Get frequency of the system processor. sparc64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/getcontext.S b/sysdeps/unix/sysv/linux/sparc/sparc64/getcontext.S index 04ac4a0b14..7913b5673c 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/getcontext.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/getcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@tamu.edu). diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S b/sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S index 8bb7d7d100..ab8c83788f 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@tamu.edu). diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c b/sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c index 1f09f7fcc7..958b6cd0c2 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c b/sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c index d55511e105..766087ea9d 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c b/sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c index 625eeb27cf..36c947f7b0 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/pipe.S b/sysdeps/unix/sysv/linux/sparc/sparc64/pipe.S index 50cccf95e6..01967d6de4 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/pipe.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/pipe.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza , 1997. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/profil-counter.h b/sysdeps/unix/sysv/linux/sparc/sparc64/profil-counter.h index b0199936d7..38f7270ac2 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/profil-counter.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/profil-counter.h @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Linux/Sparc64 version. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h b/sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h index 24e9794930..3d44d636a9 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 1999. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c b/sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c index 9ada8e847c..fa541bfb80 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/setcontext.S b/sysdeps/unix/sysv/linux/sparc/sparc64/setcontext.S index 3a44b6b403..b68e8288bd 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/setcontext.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/setcontext.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@tamu.edu). diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/setjmp.S b/sysdeps/unix/sysv/linux/sparc/sparc64/setjmp.S index 82967dd1f6..b0448b4cfb 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/setjmp.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/setjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@tamu.edu). diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c b/sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c index 7c4af74768..b844f38ecf 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c b/sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c index d5e708777d..665e658cf9 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c @@ -1,5 +1,5 @@ /* POSIX.1 sigaction call for Linux/SPARC64. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza and Jakub Jelinek . diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h b/sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h index 5065fbf871..6e505b596b 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 1999. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c b/sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c index 57d172d610..6e16bf90e6 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c b/sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c index c7a30606fa..66065650be 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/sizes.h b/sysdeps/unix/sysv/linux/sparc/sparc64/sizes.h index ccfc8c0f8c..966996e9be 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/sizes.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/sizes.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/socket.S b/sysdeps/unix/sysv/linux/sparc/sparc64/socket.S index 62370c172f..d262e36883 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/socket.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/socket.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Miguel de Icaza , 1997. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/swapcontext.c b/sysdeps/unix/sysv/linux/sparc/sparc64/swapcontext.c index ad49472b67..14b1061ce6 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/swapcontext.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/swapcontext.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S b/sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S index 99f158820f..a9eeac4e73 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h b/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h index 63151ad0f0..53df66e21b 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson , 1997. diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/ucontext_i.h b/sysdeps/unix/sysv/linux/sparc/sparc64/ucontext_i.h index 6e0db03521..ee20237079 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/ucontext_i.h +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/ucontext_i.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/wordexp.c b/sysdeps/unix/sysv/linux/sparc/sparc64/wordexp.c index f91fc9efc3..aed2c9e529 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/wordexp.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/wordexp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c b/sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c index f41d8252ce..87cc988aa2 100644 --- a/sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c +++ b/sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c @@ -1,5 +1,5 @@ /* Convert between the kernel's `struct stat' format, and libc's. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sys/procfs.h b/sysdeps/unix/sysv/linux/sparc/sys/procfs.h index db7ef22abe..6fdf12bd73 100644 --- a/sysdeps/unix/sysv/linux/sparc/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/sparc/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sys/ptrace.h b/sysdeps/unix/sysv/linux/sparc/sys/ptrace.h index 7543fa7c6a..2395c310a1 100644 --- a/sysdeps/unix/sysv/linux/sparc/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/sparc/sys/ptrace.h @@ -1,5 +1,5 @@ /* `ptrace' debugger support interface. Linux/SPARC version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sys/ucontext.h b/sysdeps/unix/sysv/linux/sparc/sys/ucontext.h index 1a3d4b54a7..d9f1c0f1da 100644 --- a/sysdeps/unix/sysv/linux/sparc/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/sparc/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sys/user.h b/sysdeps/unix/sysv/linux/sparc/sys/user.h index fe28567116..054c1f1320 100644 --- a/sysdeps/unix/sysv/linux/sparc/sys/user.h +++ b/sysdeps/unix/sysv/linux/sparc/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/sysdep.h b/sysdeps/unix/sysv/linux/sparc/sysdep.h index 125c921b6d..8cfc9c562b 100644 --- a/sysdeps/unix/sysv/linux/sparc/sysdep.h +++ b/sysdeps/unix/sysv/linux/sparc/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2000. diff --git a/sysdeps/unix/sysv/linux/sparc/system.c b/sysdeps/unix/sysv/linux/sparc/system.c index 988c52e870..c86e712120 100644 --- a/sysdeps/unix/sysv/linux/sparc/system.c +++ b/sysdeps/unix/sysv/linux/sparc/system.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sparc/vfork.S b/sysdeps/unix/sysv/linux/sparc/vfork.S index d1c8b50a7e..09c073e8f7 100644 --- a/sysdeps/unix/sysv/linux/sparc/vfork.S +++ b/sysdeps/unix/sysv/linux/sparc/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 1999. diff --git a/sysdeps/unix/sysv/linux/speed.c b/sysdeps/unix/sysv/linux/speed.c index bed5d537ba..62674e132d 100644 --- a/sysdeps/unix/sysv/linux/speed.c +++ b/sysdeps/unix/sysv/linux/speed.c @@ -1,5 +1,5 @@ /* `struct termios' speed frobnication functions. Linux version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/statfs64.c b/sysdeps/unix/sysv/linux/statfs64.c index eb3ea7650a..13a69853af 100644 --- a/sysdeps/unix/sysv/linux/statfs64.c +++ b/sysdeps/unix/sysv/linux/statfs64.c @@ -1,5 +1,5 @@ /* Return information about the filesystem on which FILE resides. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/statvfs.c b/sysdeps/unix/sysv/linux/statvfs.c index 5d91d85794..8a3df97c76 100644 --- a/sysdeps/unix/sysv/linux/statvfs.c +++ b/sysdeps/unix/sysv/linux/statvfs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/unix/sysv/linux/statvfs64.c b/sysdeps/unix/sysv/linux/statvfs64.c index 42c10892de..e33e923a05 100644 --- a/sysdeps/unix/sysv/linux/statvfs64.c +++ b/sysdeps/unix/sysv/linux/statvfs64.c @@ -1,5 +1,5 @@ /* Return information about the filesystem on which FILE resides. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/symlinkat.c b/sysdeps/unix/sysv/linux/symlinkat.c index 8ac58959c0..ae9bb359ad 100644 --- a/sysdeps/unix/sysv/linux/symlinkat.c +++ b/sysdeps/unix/sysv/linux/symlinkat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sync_file_range.c b/sysdeps/unix/sysv/linux/sync_file_range.c index a984a0d5fc..1068465831 100644 --- a/sysdeps/unix/sysv/linux/sync_file_range.c +++ b/sysdeps/unix/sysv/linux/sync_file_range.c @@ -1,5 +1,5 @@ /* Selective file content synch'ing. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/acct.h b/sysdeps/unix/sysv/linux/sys/acct.h index f4a23667d4..cda48efde6 100644 --- a/sysdeps/unix/sysv/linux/sys/acct.h +++ b/sysdeps/unix/sysv/linux/sys/acct.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/epoll.h b/sysdeps/unix/sysv/linux/sys/epoll.h index 6e984d9a90..2d67fa3f96 100644 --- a/sysdeps/unix/sysv/linux/sys/epoll.h +++ b/sysdeps/unix/sysv/linux/sys/epoll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/eventfd.h b/sysdeps/unix/sysv/linux/sys/eventfd.h index 91b265b2c4..7f977ed257 100644 --- a/sysdeps/unix/sysv/linux/sys/eventfd.h +++ b/sysdeps/unix/sysv/linux/sys/eventfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/fanotify.h b/sysdeps/unix/sysv/linux/sys/fanotify.h index 9b62bf5806..480e912c8f 100644 --- a/sysdeps/unix/sysv/linux/sys/fanotify.h +++ b/sysdeps/unix/sysv/linux/sys/fanotify.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2010-2013 Free Software Foundation, Inc. +/* Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/fsuid.h b/sysdeps/unix/sysv/linux/sys/fsuid.h index 7590313b19..ad7865594c 100644 --- a/sysdeps/unix/sysv/linux/sys/fsuid.h +++ b/sysdeps/unix/sysv/linux/sys/fsuid.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/inotify.h b/sysdeps/unix/sysv/linux/sys/inotify.h index 2fc1223e44..05651fa7eb 100644 --- a/sysdeps/unix/sysv/linux/sys/inotify.h +++ b/sysdeps/unix/sysv/linux/sys/inotify.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/kd.h b/sysdeps/unix/sysv/linux/sys/kd.h index 395c241840..c695d045f9 100644 --- a/sysdeps/unix/sysv/linux/sys/kd.h +++ b/sysdeps/unix/sysv/linux/sys/kd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/kdaemon.h b/sysdeps/unix/sysv/linux/sys/kdaemon.h index 8de1b783b3..5f61c83031 100644 --- a/sysdeps/unix/sysv/linux/sys/kdaemon.h +++ b/sysdeps/unix/sysv/linux/sys/kdaemon.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/klog.h b/sysdeps/unix/sysv/linux/sys/klog.h index 7c20298789..46004e48bc 100644 --- a/sysdeps/unix/sysv/linux/sys/klog.h +++ b/sysdeps/unix/sysv/linux/sys/klog.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/mount.h b/sysdeps/unix/sysv/linux/sys/mount.h index 6e4b6eaba7..49ef6047fe 100644 --- a/sysdeps/unix/sysv/linux/sys/mount.h +++ b/sysdeps/unix/sysv/linux/sys/mount.h @@ -1,5 +1,5 @@ /* Header file for mounting/unmount Linux filesystems. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/pci.h b/sysdeps/unix/sysv/linux/sys/pci.h index bdd6da6399..a4fb58ecc4 100644 --- a/sysdeps/unix/sysv/linux/sys/pci.h +++ b/sysdeps/unix/sysv/linux/sys/pci.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/personality.h b/sysdeps/unix/sysv/linux/sys/personality.h index bab1217adb..9d2227f294 100644 --- a/sysdeps/unix/sysv/linux/sys/personality.h +++ b/sysdeps/unix/sysv/linux/sys/personality.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/prctl.h b/sysdeps/unix/sysv/linux/sys/prctl.h index 86a4fd1493..8af0b6daf4 100644 --- a/sysdeps/unix/sysv/linux/sys/prctl.h +++ b/sysdeps/unix/sysv/linux/sys/prctl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/procfs.h b/sysdeps/unix/sysv/linux/sys/procfs.h index 61eac4514d..4e53fc8d96 100644 --- a/sysdeps/unix/sysv/linux/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/ptrace.h b/sysdeps/unix/sysv/linux/sys/ptrace.h index 8aa4c087ea..ddcefba638 100644 --- a/sysdeps/unix/sysv/linux/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/sys/ptrace.h @@ -1,5 +1,5 @@ /* `ptrace' debugger support interface. Linux version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/raw.h b/sysdeps/unix/sysv/linux/sys/raw.h index 43d3de354e..a5661c4917 100644 --- a/sysdeps/unix/sysv/linux/sys/raw.h +++ b/sysdeps/unix/sysv/linux/sys/raw.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/reboot.h b/sysdeps/unix/sysv/linux/sys/reboot.h index fb0f89a43f..48dd362f96 100644 --- a/sysdeps/unix/sysv/linux/sys/reboot.h +++ b/sysdeps/unix/sysv/linux/sys/reboot.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/signalfd.h b/sysdeps/unix/sysv/linux/sys/signalfd.h index 3bb51bfe82..d4d75bfa98 100644 --- a/sysdeps/unix/sysv/linux/sys/signalfd.h +++ b/sysdeps/unix/sysv/linux/sys/signalfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/swap.h b/sysdeps/unix/sysv/linux/sys/swap.h index 76858ebd5e..db634a2530 100644 --- a/sysdeps/unix/sysv/linux/sys/swap.h +++ b/sysdeps/unix/sysv/linux/sys/swap.h @@ -1,5 +1,5 @@ /* Calls to enable and disable swapping on specified locations. Linux version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/syscall.h b/sysdeps/unix/sysv/linux/sys/syscall.h index b62e550fc4..141e8c0f5b 100644 --- a/sysdeps/unix/sysv/linux/sys/syscall.h +++ b/sysdeps/unix/sysv/linux/sys/syscall.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/sysctl.h b/sysdeps/unix/sysv/linux/sys/sysctl.h index 42f5415f2e..b86929917d 100644 --- a/sysdeps/unix/sysv/linux/sys/sysctl.h +++ b/sysdeps/unix/sysv/linux/sys/sysctl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/sysinfo.h b/sysdeps/unix/sysv/linux/sys/sysinfo.h index d8799d8dfd..1f3de3ca67 100644 --- a/sysdeps/unix/sysv/linux/sys/sysinfo.h +++ b/sysdeps/unix/sysv/linux/sys/sysinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/sysmacros.h b/sysdeps/unix/sysv/linux/sys/sysmacros.h index a1f1b2697d..b3c202f344 100644 --- a/sysdeps/unix/sysv/linux/sys/sysmacros.h +++ b/sysdeps/unix/sysv/linux/sys/sysmacros.h @@ -1,5 +1,5 @@ /* Definitions of macros to access `dev_t' values. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/timerfd.h b/sysdeps/unix/sysv/linux/sys/timerfd.h index ccdf78c60a..c28f311500 100644 --- a/sysdeps/unix/sysv/linux/sys/timerfd.h +++ b/sysdeps/unix/sysv/linux/sys/timerfd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sys/timex.h b/sysdeps/unix/sysv/linux/sys/timex.h index 9fea624c92..b75a27daae 100644 --- a/sysdeps/unix/sysv/linux/sys/timex.h +++ b/sysdeps/unix/sysv/linux/sys/timex.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sysconf.c b/sysdeps/unix/sysv/linux/sysconf.c index 200a87cc58..e3e2fbaaa4 100644 --- a/sysdeps/unix/sysv/linux/sysconf.c +++ b/sysdeps/unix/sysv/linux/sysconf.c @@ -1,5 +1,5 @@ /* Get file-specific information about a file. Linux version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/sysctl.c b/sysdeps/unix/sysv/linux/sysctl.c index 4ff1bf3787..d7ff7a3cbd 100644 --- a/sysdeps/unix/sysv/linux/sysctl.c +++ b/sysdeps/unix/sysv/linux/sysctl.c @@ -1,5 +1,5 @@ /* Read or write system information. Linux version. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/system.c b/sysdeps/unix/sysv/linux/system.c index 9d35ec280c..da0bda7c72 100644 --- a/sysdeps/unix/sysv/linux/system.c +++ b/sysdeps/unix/sysv/linux/system.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/tcdrain.c b/sysdeps/unix/sysv/linux/tcdrain.c index 42bba884ac..5f3328392a 100644 --- a/sysdeps/unix/sysv/linux/tcdrain.c +++ b/sysdeps/unix/sysv/linux/tcdrain.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/tcflow.c b/sysdeps/unix/sysv/linux/tcflow.c index c2ee95c4f6..85ad51feeb 100644 --- a/sysdeps/unix/sysv/linux/tcflow.c +++ b/sysdeps/unix/sysv/linux/tcflow.c @@ -1,5 +1,5 @@ /* tcflow -- Suspend or restart transmission on termios file descriptor. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/tcflush.c b/sysdeps/unix/sysv/linux/tcflush.c index fe4cf5b502..609eca0ea2 100644 --- a/sysdeps/unix/sysv/linux/tcflush.c +++ b/sysdeps/unix/sysv/linux/tcflush.c @@ -1,5 +1,5 @@ /* tcflush -- Flush pending data on termios file descriptor. Linux version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/tcgetattr.c b/sysdeps/unix/sysv/linux/tcgetattr.c index 0ca8fd97db..a739100e37 100644 --- a/sysdeps/unix/sysv/linux/tcgetattr.c +++ b/sysdeps/unix/sysv/linux/tcgetattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/tcsendbrk.c b/sysdeps/unix/sysv/linux/tcsendbrk.c index a90016ab18..3b8d8343be 100644 --- a/sysdeps/unix/sysv/linux/tcsendbrk.c +++ b/sysdeps/unix/sysv/linux/tcsendbrk.c @@ -1,5 +1,5 @@ /* Send break to terminal. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/tcsetattr.c b/sysdeps/unix/sysv/linux/tcsetattr.c index 708b6546cc..4b0bcf7f4f 100644 --- a/sysdeps/unix/sysv/linux/tcsetattr.c +++ b/sysdeps/unix/sysv/linux/tcsetattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/testrtsig.h b/sysdeps/unix/sysv/linux/testrtsig.h index e84af9d1a4..73f7e553f3 100644 --- a/sysdeps/unix/sysv/linux/testrtsig.h +++ b/sysdeps/unix/sysv/linux/testrtsig.h @@ -1,5 +1,5 @@ /* Test whether RT signals are really available. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/time.c b/sysdeps/unix/sysv/linux/time.c index d447d3caa1..d366241a5d 100644 --- a/sysdeps/unix/sysv/linux/time.c +++ b/sysdeps/unix/sysv/linux/time.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/times.c b/sysdeps/unix/sysv/linux/times.c index 2a5caf2cd1..acfd03175b 100644 --- a/sysdeps/unix/sysv/linux/times.c +++ b/sysdeps/unix/sysv/linux/times.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2013 Free Software Foundation, Inc. +/* Copyright (C) 2008-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/timespec_get.c b/sysdeps/unix/sysv/linux/timespec_get.c index 2c8b97e31e..c4a86926e7 100644 --- a/sysdeps/unix/sysv/linux/timespec_get.c +++ b/sysdeps/unix/sysv/linux/timespec_get.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/truncate64.c b/sysdeps/unix/sysv/linux/truncate64.c index 8c9e8488be..aaa190d94d 100644 --- a/sysdeps/unix/sysv/linux/truncate64.c +++ b/sysdeps/unix/sysv/linux/truncate64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/tst-clone.c b/sysdeps/unix/sysv/linux/tst-clone.c index 6c94398f61..33384fd2ab 100644 --- a/sysdeps/unix/sysv/linux/tst-clone.c +++ b/sysdeps/unix/sysv/linux/tst-clone.c @@ -1,5 +1,5 @@ /* Test for proper error/errno handling in clone. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/tst-fanotify.c b/sysdeps/unix/sysv/linux/tst-fanotify.c index 7b27545978..43d3bb2691 100644 --- a/sysdeps/unix/sysv/linux/tst-fanotify.c +++ b/sysdeps/unix/sysv/linux/tst-fanotify.c @@ -1,5 +1,5 @@ /* Basic fanotify test. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/ttyname.c b/sysdeps/unix/sysv/linux/ttyname.c index daf2b323eb..8d808ce373 100644 --- a/sysdeps/unix/sysv/linux/ttyname.c +++ b/sysdeps/unix/sysv/linux/ttyname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/ttyname_r.c b/sysdeps/unix/sysv/linux/ttyname_r.c index d91dcc1da1..a03d012f8d 100644 --- a/sysdeps/unix/sysv/linux/ttyname_r.c +++ b/sysdeps/unix/sysv/linux/ttyname_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/unlinkat.c b/sysdeps/unix/sysv/linux/unlinkat.c index cb9d8d10e2..0925d85800 100644 --- a/sysdeps/unix/sysv/linux/unlinkat.c +++ b/sysdeps/unix/sysv/linux/unlinkat.c @@ -1,5 +1,5 @@ /* unlinkat -- Remove a link by relative name. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/unlockpt.c b/sysdeps/unix/sysv/linux/unlockpt.c index af1e71adf9..b8dc2a1eb6 100644 --- a/sysdeps/unix/sysv/linux/unlockpt.c +++ b/sysdeps/unix/sysv/linux/unlockpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg , 1998. diff --git a/sysdeps/unix/sysv/linux/updwtmp.c b/sysdeps/unix/sysv/linux/updwtmp.c index d791b88764..3f1b676d92 100644 --- a/sysdeps/unix/sysv/linux/updwtmp.c +++ b/sysdeps/unix/sysv/linux/updwtmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/sysdeps/unix/sysv/linux/usleep.c b/sysdeps/unix/sysv/linux/usleep.c index 1f4ea0a917..592a627dd3 100644 --- a/sysdeps/unix/sysv/linux/usleep.c +++ b/sysdeps/unix/sysv/linux/usleep.c @@ -1,5 +1,5 @@ /* Implementation of the BSD usleep function using nanosleep. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/unix/sysv/linux/ustat.c b/sysdeps/unix/sysv/linux/ustat.c index 499ed7eaf3..229c7665ef 100644 --- a/sysdeps/unix/sysv/linux/ustat.c +++ b/sysdeps/unix/sysv/linux/ustat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/unix/sysv/linux/utimensat.c b/sysdeps/unix/sysv/linux/utimensat.c index 79e602b737..7ce34a0bfe 100644 --- a/sysdeps/unix/sysv/linux/utimensat.c +++ b/sysdeps/unix/sysv/linux/utimensat.c @@ -1,5 +1,5 @@ /* Change access and modification times of open file. Linux version. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/utimes.c b/sysdeps/unix/sysv/linux/utimes.c index e786794c36..2bcebeb698 100644 --- a/sysdeps/unix/sysv/linux/utimes.c +++ b/sysdeps/unix/sysv/linux/utimes.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/utmp_file.c b/sysdeps/unix/sysv/linux/utmp_file.c index b967c73c65..61b617b29d 100644 --- a/sysdeps/unix/sysv/linux/utmp_file.c +++ b/sysdeps/unix/sysv/linux/utmp_file.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1998. diff --git a/sysdeps/unix/sysv/linux/wait.c b/sysdeps/unix/sysv/linux/wait.c index 7518a9a0e3..905c233bc2 100644 --- a/sysdeps/unix/sysv/linux/wait.c +++ b/sysdeps/unix/sysv/linux/wait.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/waitid.c b/sysdeps/unix/sysv/linux/waitid.c index ab2f145cdf..e1dc8b8f8b 100644 --- a/sysdeps/unix/sysv/linux/waitid.c +++ b/sysdeps/unix/sysv/linux/waitid.c @@ -1,5 +1,5 @@ /* Linux implementation of waitid. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/waitpid.c b/sysdeps/unix/sysv/linux/waitpid.c index c3d9637e54..c0a86826fb 100644 --- a/sysdeps/unix/sysv/linux/waitpid.c +++ b/sysdeps/unix/sysv/linux/waitpid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/wordsize-64/fallocate.c b/sysdeps/unix/sysv/linux/wordsize-64/fallocate.c index fc6c780e65..d75ad119ea 100644 --- a/sysdeps/unix/sysv/linux/wordsize-64/fallocate.c +++ b/sysdeps/unix/sysv/linux/wordsize-64/fallocate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c b/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c index d6023e2a23..e5e5a0b486 100644 --- a/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c +++ b/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c @@ -1,5 +1,5 @@ /* fxstat using old-style Unix fstat system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c b/sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c index 73a2e871c9..29f0e540d1 100644 --- a/sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c +++ b/sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c b/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c index 62b6c89ba5..094bdad896 100644 --- a/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c +++ b/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c @@ -1,5 +1,5 @@ /* lxstat using old-style Unix lstat system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/wordsize-64/posix_fadvise.c b/sysdeps/unix/sysv/linux/wordsize-64/posix_fadvise.c index c23f09255e..690be08561 100644 --- a/sysdeps/unix/sysv/linux/wordsize-64/posix_fadvise.c +++ b/sysdeps/unix/sysv/linux/wordsize-64/posix_fadvise.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c b/sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c index abf3021d12..8f3b521ed7 100644 --- a/sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c +++ b/sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/wordsize-64/preadv.c b/sysdeps/unix/sysv/linux/wordsize-64/preadv.c index 71e49fe7bd..9ddd71e356 100644 --- a/sysdeps/unix/sysv/linux/wordsize-64/preadv.c +++ b/sysdeps/unix/sysv/linux/wordsize-64/preadv.c @@ -1,5 +1,5 @@ /* 64-bit preadv. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/wordsize-64/pwritev.c b/sysdeps/unix/sysv/linux/wordsize-64/pwritev.c index a3dd54885f..9035a20577 100644 --- a/sysdeps/unix/sysv/linux/wordsize-64/pwritev.c +++ b/sysdeps/unix/sysv/linux/wordsize-64/pwritev.c @@ -1,5 +1,5 @@ /* 64-bit pwritev. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/wordsize-64/xstat.c b/sysdeps/unix/sysv/linux/wordsize-64/xstat.c index 1fa2280c2d..f89177a157 100644 --- a/sysdeps/unix/sysv/linux/wordsize-64/xstat.c +++ b/sysdeps/unix/sysv/linux/wordsize-64/xstat.c @@ -1,5 +1,5 @@ /* xstat using old-style Unix stat system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/writev.c b/sysdeps/unix/sysv/linux/writev.c index e53c0d345a..06c4c9c192 100644 --- a/sysdeps/unix/sysv/linux/writev.c +++ b/sysdeps/unix/sysv/linux/writev.c @@ -1,5 +1,5 @@ /* writev supports all Linux kernels >= 2.0. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/environments.h b/sysdeps/unix/sysv/linux/x86/bits/environments.h index 27b37b30e7..df40aefd9c 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/environments.h +++ b/sysdeps/unix/sysv/linux/x86/bits/environments.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/epoll.h b/sysdeps/unix/sysv/linux/x86/bits/epoll.h index de908bcb12..58ae8e97e2 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/epoll.h +++ b/sysdeps/unix/sysv/linux/x86/bits/epoll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/fcntl.h b/sysdeps/unix/sysv/linux/x86/bits/fcntl.h index 6964f91e38..783cb82c59 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/x86/bits/fcntl.h @@ -1,5 +1,5 @@ /* O_*, F_*, FD_* bit values for Linux/x86. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/ipctypes.h b/sysdeps/unix/sysv/linux/x86/bits/ipctypes.h index 0b3b9e4388..6a09392149 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/ipctypes.h +++ b/sysdeps/unix/sysv/linux/x86/bits/ipctypes.h @@ -1,5 +1,5 @@ /* bits/ipctypes.h -- Define some types used by SysV IPC/MSG/SHM. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/mman.h b/sysdeps/unix/sysv/linux/x86/bits/mman.h index a2fa808796..79e73d55bc 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/mman.h +++ b/sysdeps/unix/sysv/linux/x86/bits/mman.h @@ -1,5 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/x86_64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/msq.h b/sysdeps/unix/sysv/linux/x86/bits/msq.h index f078bbeeeb..590494f691 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/msq.h +++ b/sysdeps/unix/sysv/linux/x86/bits/msq.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/sem.h b/sysdeps/unix/sysv/linux/x86/bits/sem.h index 2ec6bb5b8c..c45e9b93cf 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/sem.h +++ b/sysdeps/unix/sysv/linux/x86/bits/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/shm.h b/sysdeps/unix/sysv/linux/x86/bits/shm.h index 13b11bf230..c205e62927 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/shm.h +++ b/sysdeps/unix/sysv/linux/x86/bits/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/sigcontext.h b/sysdeps/unix/sysv/linux/x86/bits/sigcontext.h index f2dabfac34..e742cba7f6 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/sigcontext.h +++ b/sysdeps/unix/sysv/linux/x86/bits/sigcontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/siginfo.h b/sysdeps/unix/sysv/linux/x86/bits/siginfo.h index bfc6aa3b5f..44f293eb20 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/siginfo.h +++ b/sysdeps/unix/sysv/linux/x86/bits/siginfo.h @@ -1,5 +1,5 @@ /* siginfo_t, sigevent and constants. Linux x86-64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/stat.h b/sysdeps/unix/sysv/linux/x86/bits/stat.h index efda6731a0..6fcb869cf9 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/stat.h +++ b/sysdeps/unix/sysv/linux/x86/bits/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/sysctl.h b/sysdeps/unix/sysv/linux/x86/bits/sysctl.h index d0b378f235..65146e4e48 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/sysctl.h +++ b/sysdeps/unix/sysv/linux/x86/bits/sysctl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/bits/typesizes.h b/sysdeps/unix/sysv/linux/x86/bits/typesizes.h index e4fd0293e7..2e0984c8e1 100644 --- a/sysdeps/unix/sysv/linux/x86/bits/typesizes.h +++ b/sysdeps/unix/sysv/linux/x86/bits/typesizes.h @@ -1,5 +1,5 @@ /* bits/typesizes.h -- underlying types for *_t. Linux/x86-64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/sys/debugreg.h b/sysdeps/unix/sysv/linux/x86/sys/debugreg.h index 8c342b0126..939d7f363f 100644 --- a/sysdeps/unix/sysv/linux/x86/sys/debugreg.h +++ b/sysdeps/unix/sysv/linux/x86/sys/debugreg.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/sys/elf.h b/sysdeps/unix/sysv/linux/x86/sys/elf.h index c2d71611f8..d7b62dc205 100644 --- a/sysdeps/unix/sysv/linux/x86/sys/elf.h +++ b/sysdeps/unix/sysv/linux/x86/sys/elf.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/sys/io.h b/sysdeps/unix/sysv/linux/x86/sys/io.h index a8df27d135..e30d37fe21 100644 --- a/sysdeps/unix/sysv/linux/x86/sys/io.h +++ b/sysdeps/unix/sysv/linux/x86/sys/io.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/sys/perm.h b/sysdeps/unix/sysv/linux/x86/sys/perm.h index b1bf808ed3..39ebda3144 100644 --- a/sysdeps/unix/sysv/linux/x86/sys/perm.h +++ b/sysdeps/unix/sysv/linux/x86/sys/perm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/sys/procfs.h b/sysdeps/unix/sysv/linux/x86/sys/procfs.h index ec318ad937..62c9d8c2ee 100644 --- a/sysdeps/unix/sysv/linux/x86/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/x86/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/sys/reg.h b/sysdeps/unix/sysv/linux/x86/sys/reg.h index 93e7d572c0..9871196287 100644 --- a/sysdeps/unix/sysv/linux/x86/sys/reg.h +++ b/sysdeps/unix/sysv/linux/x86/sys/reg.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/sys/ucontext.h b/sysdeps/unix/sysv/linux/x86/sys/ucontext.h index 40a80d59bb..8665cf8111 100644 --- a/sysdeps/unix/sysv/linux/x86/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/x86/sys/ucontext.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/sys/user.h b/sysdeps/unix/sysv/linux/x86/sys/user.h index 02d3db7889..5531c85440 100644 --- a/sysdeps/unix/sysv/linux/x86/sys/user.h +++ b/sysdeps/unix/sysv/linux/x86/sys/user.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86/sys/vm86.h b/sysdeps/unix/sysv/linux/x86/sys/vm86.h index cf94eea238..c645e2c763 100644 --- a/sysdeps/unix/sysv/linux/x86/sys/vm86.h +++ b/sysdeps/unix/sysv/linux/x86/sys/vm86.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S b/sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S index 09fb0f7063..49f0384ba8 100644 --- a/sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S +++ b/sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/__start_context.S b/sysdeps/unix/sysv/linux/x86_64/__start_context.S index 240f0dcded..7d6280dd27 100644 --- a/sysdeps/unix/sysv/linux/x86_64/__start_context.S +++ b/sysdeps/unix/sysv/linux/x86_64/__start_context.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h b/sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h index c4629143b2..f291924900 100644 --- a/sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h +++ b/sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h @@ -1,5 +1,5 @@ /* Resolve function pointers to VDSO functions. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/brk.c b/sysdeps/unix/sysv/linux/x86_64/brk.c index 6f5730cb08..bddc8141c7 100644 --- a/sysdeps/unix/sysv/linux/x86_64/brk.c +++ b/sysdeps/unix/sysv/linux/x86_64/brk.c @@ -1,5 +1,5 @@ /* brk system call for Linux/x86_64. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/clone.S b/sysdeps/unix/sysv/linux/x86_64/clone.S index 144eaf7520..0508730d83 100644 --- a/sysdeps/unix/sysv/linux/x86_64/clone.S +++ b/sysdeps/unix/sysv/linux/x86_64/clone.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/dl-cache.h b/sysdeps/unix/sysv/linux/x86_64/dl-cache.h index ee59b36e12..6d1633988a 100644 --- a/sysdeps/unix/sysv/linux/x86_64/dl-cache.h +++ b/sysdeps/unix/sysv/linux/x86_64/dl-cache.h @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/getcontext.S b/sysdeps/unix/sysv/linux/x86_64/getcontext.S index 470b8e9efc..140db030ed 100644 --- a/sysdeps/unix/sysv/linux/x86_64/getcontext.S +++ b/sysdeps/unix/sysv/linux/x86_64/getcontext.S @@ -1,5 +1,5 @@ /* Save current context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/unix/sysv/linux/x86_64/gettimeofday.c b/sysdeps/unix/sysv/linux/x86_64/gettimeofday.c index 556e0d5dcb..440ca7f82a 100644 --- a/sysdeps/unix/sysv/linux/x86_64/gettimeofday.c +++ b/sysdeps/unix/sysv/linux/x86_64/gettimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/init-first.c b/sysdeps/unix/sysv/linux/x86_64/init-first.c index 829df354f1..fb090dfed7 100644 --- a/sysdeps/unix/sysv/linux/x86_64/init-first.c +++ b/sysdeps/unix/sysv/linux/x86_64/init-first.c @@ -1,5 +1,5 @@ /* Initialization code run first thing by the ELF startup code. Linux/x86-64. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/kernel_stat.h b/sysdeps/unix/sysv/linux/x86_64/kernel_stat.h index 603bfcb44a..a34bea5881 100644 --- a/sysdeps/unix/sysv/linux/x86_64/kernel_stat.h +++ b/sysdeps/unix/sysv/linux/x86_64/kernel_stat.h @@ -1,5 +1,5 @@ /* Definition of `struct stat' used in the kernel. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/ldconfig.h b/sysdeps/unix/sysv/linux/x86_64/ldconfig.h index c996b4045c..c713f08b56 100644 --- a/sysdeps/unix/sysv/linux/x86_64/ldconfig.h +++ b/sysdeps/unix/sysv/linux/x86_64/ldconfig.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/makecontext.c b/sysdeps/unix/sysv/linux/x86_64/makecontext.c index b6d590fe44..01c2340672 100644 --- a/sysdeps/unix/sysv/linux/x86_64/makecontext.c +++ b/sysdeps/unix/sysv/linux/x86_64/makecontext.c @@ -1,5 +1,5 @@ /* Create new context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/unix/sysv/linux/x86_64/profil-counter.h b/sysdeps/unix/sysv/linux/x86_64/profil-counter.h index a30f52ee68..90c5667b53 100644 --- a/sysdeps/unix/sysv/linux/x86_64/profil-counter.h +++ b/sysdeps/unix/sysv/linux/x86_64/profil-counter.h @@ -1,5 +1,5 @@ /* Low-level statistical profiling support function. Linux/x86-64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/recv.c b/sysdeps/unix/sysv/linux/x86_64/recv.c index d23ff1f36b..53c238155d 100644 --- a/sysdeps/unix/sysv/linux/x86_64/recv.c +++ b/sysdeps/unix/sysv/linux/x86_64/recv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/register-dump.h b/sysdeps/unix/sysv/linux/x86_64/register-dump.h index c92c71f7f1..f17d4a0787 100644 --- a/sysdeps/unix/sysv/linux/x86_64/register-dump.h +++ b/sysdeps/unix/sysv/linux/x86_64/register-dump.h @@ -1,5 +1,5 @@ /* Dump registers. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S b/sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S index 12a6e7e147..0fd47f2ac0 100644 --- a/sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S +++ b/sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/send.c b/sysdeps/unix/sysv/linux/x86_64/send.c index 2f419297d9..36a1dfdd1c 100644 --- a/sysdeps/unix/sysv/linux/x86_64/send.c +++ b/sysdeps/unix/sysv/linux/x86_64/send.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/setcontext.S b/sysdeps/unix/sysv/linux/x86_64/setcontext.S index 7d527059ad..b726fa0451 100644 --- a/sysdeps/unix/sysv/linux/x86_64/setcontext.S +++ b/sysdeps/unix/sysv/linux/x86_64/setcontext.S @@ -1,5 +1,5 @@ /* Install given context. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/unix/sysv/linux/x86_64/sigaction.c b/sysdeps/unix/sysv/linux/x86_64/sigaction.c index 4b5d1e1a8b..ab2398580f 100644 --- a/sysdeps/unix/sysv/linux/x86_64/sigaction.c +++ b/sysdeps/unix/sysv/linux/x86_64/sigaction.c @@ -1,5 +1,5 @@ /* POSIX.1 `sigaction' call for Linux/x86-64. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h b/sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h index e094c722b2..e09ae47672 100644 --- a/sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h +++ b/sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/sigpending.c b/sysdeps/unix/sysv/linux/x86_64/sigpending.c index e68f77622c..eeab30062e 100644 --- a/sysdeps/unix/sysv/linux/x86_64/sigpending.c +++ b/sysdeps/unix/sysv/linux/x86_64/sigpending.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/sigprocmask.c b/sysdeps/unix/sysv/linux/x86_64/sigprocmask.c index 6d12326db2..00669b77ff 100644 --- a/sysdeps/unix/sysv/linux/x86_64/sigprocmask.c +++ b/sysdeps/unix/sysv/linux/x86_64/sigprocmask.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Jes Sorensen, , April 1999. diff --git a/sysdeps/unix/sysv/linux/x86_64/swapcontext.S b/sysdeps/unix/sysv/linux/x86_64/swapcontext.S index fb20ef253e..b3854fa5f1 100644 --- a/sysdeps/unix/sysv/linux/x86_64/swapcontext.S +++ b/sysdeps/unix/sysv/linux/x86_64/swapcontext.S @@ -1,5 +1,5 @@ /* Save current context and install the given one. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/unix/sysv/linux/x86_64/syscall.S b/sysdeps/unix/sysv/linux/x86_64/syscall.S index c5fd0aa438..92c2f5b3a3 100644 --- a/sysdeps/unix/sysv/linux/x86_64/syscall.S +++ b/sysdeps/unix/sysv/linux/x86_64/syscall.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/sysconf.c b/sysdeps/unix/sysv/linux/x86_64/sysconf.c index 1dc16fd0b2..2d3f696ca3 100644 --- a/sysdeps/unix/sysv/linux/x86_64/sysconf.c +++ b/sysdeps/unix/sysv/linux/x86_64/sysconf.c @@ -1,5 +1,5 @@ /* Get file-specific information about a file. Linux version. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/sysdep.S b/sysdeps/unix/sysv/linux/x86_64/sysdep.S index 9b24189eb3..7be46f0f2a 100644 --- a/sysdeps/unix/sysv/linux/x86_64/sysdep.S +++ b/sysdeps/unix/sysv/linux/x86_64/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/sysdep.h b/sysdeps/unix/sysv/linux/x86_64/sysdep.h index d68112a614..4a9a9d90bc 100644 --- a/sysdeps/unix/sysv/linux/x86_64/sysdep.h +++ b/sysdeps/unix/sysv/linux/x86_64/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/time.c b/sysdeps/unix/sysv/linux/x86_64/time.c index e96376fc70..79f1fab998 100644 --- a/sysdeps/unix/sysv/linux/x86_64/time.c +++ b/sysdeps/unix/sysv/linux/x86_64/time.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/umount.c b/sysdeps/unix/sysv/linux/x86_64/umount.c index 455cee1448..70080a7f17 100644 --- a/sysdeps/unix/sysv/linux/x86_64/umount.c +++ b/sysdeps/unix/sysv/linux/x86_64/umount.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by David Huggins-Daines , 2000. diff --git a/sysdeps/unix/sysv/linux/x86_64/vfork.S b/sysdeps/unix/sysv/linux/x86_64/vfork.S index d0cbf81b95..d3b450a48d 100644 --- a/sysdeps/unix/sysv/linux/x86_64/vfork.S +++ b/sysdeps/unix/sysv/linux/x86_64/vfork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c b/sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c index 32cb0aa074..14b91f0d9d 100644 --- a/sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c +++ b/sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c @@ -1,5 +1,5 @@ /* arch_prctl call for Linux/x32. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h b/sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h index 362ebd54c4..9ba78dfcbc 100644 --- a/sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h +++ b/sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h @@ -1,5 +1,5 @@ /* Support for reading /etc/ld.so.cache files written by Linux ldconfig. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c b/sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c index 4da0c0acec..c2c2a92a4d 100644 --- a/sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c +++ b/sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/init-first.c b/sysdeps/unix/sysv/linux/x86_64/x32/init-first.c index ff8894be87..5d64de3aaf 100644 --- a/sysdeps/unix/sysv/linux/x86_64/x32/init-first.c +++ b/sysdeps/unix/sysv/linux/x86_64/x32/init-first.c @@ -1,5 +1,5 @@ /* Initialization code run first thing by the ELF startup code. Linux/x32. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/lseek.S b/sysdeps/unix/sysv/linux/x86_64/x32/lseek.S index 1aa930abc6..9ec323a06c 100644 --- a/sysdeps/unix/sysv/linux/x86_64/x32/lseek.S +++ b/sysdeps/unix/sysv/linux/x86_64/x32/lseek.S @@ -1,5 +1,5 @@ /* The lseek system call with 64-bit offset. Linux/x32 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S b/sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S index 1f5e01578a..b91512e0d2 100644 --- a/sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S +++ b/sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h b/sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h index c0fb8b4f2e..26f505228a 100644 --- a/sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h +++ b/sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/xmknod.c b/sysdeps/unix/sysv/linux/xmknod.c index 154dc9a037..baeb2c3db9 100644 --- a/sysdeps/unix/sysv/linux/xmknod.c +++ b/sysdeps/unix/sysv/linux/xmknod.c @@ -1,5 +1,5 @@ /* xmknod call using old-style Unix mknod system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/xmknodat.c b/sysdeps/unix/sysv/linux/xmknodat.c index 8cb9021272..62e47e1eed 100644 --- a/sysdeps/unix/sysv/linux/xmknodat.c +++ b/sysdeps/unix/sysv/linux/xmknodat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005-2013 Free Software Foundation, Inc. +/* Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/xstat.c b/sysdeps/unix/sysv/linux/xstat.c index ac342cec75..3a60f2f5ef 100644 --- a/sysdeps/unix/sysv/linux/xstat.c +++ b/sysdeps/unix/sysv/linux/xstat.c @@ -1,5 +1,5 @@ /* xstat using old-style Unix stat system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/xstat64.c b/sysdeps/unix/sysv/linux/xstat64.c index 2377ac5030..81c9416daf 100644 --- a/sysdeps/unix/sysv/linux/xstat64.c +++ b/sysdeps/unix/sysv/linux/xstat64.c @@ -1,5 +1,5 @@ /* xstat64 using Linux stat64 system call. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/xstatconv.c b/sysdeps/unix/sysv/linux/xstatconv.c index 60e4e10797..44107a2477 100644 --- a/sysdeps/unix/sysv/linux/xstatconv.c +++ b/sysdeps/unix/sysv/linux/xstatconv.c @@ -1,5 +1,5 @@ /* Convert between the kernel's `struct stat' format, and libc's. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/sysv/linux/xstatconv.h b/sysdeps/unix/sysv/linux/xstatconv.h index 90938500cf..b8588b1e12 100644 --- a/sysdeps/unix/sysv/linux/xstatconv.h +++ b/sysdeps/unix/sysv/linux/xstatconv.h @@ -1,5 +1,5 @@ /* Convert between the kernel's `struct stat' format, and libc's. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/x86_64/sysdep.S b/sysdeps/unix/x86_64/sysdep.S index 4ac535e579..9f5eb3849c 100644 --- a/sysdeps/unix/x86_64/sysdep.S +++ b/sysdeps/unix/x86_64/sysdep.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/unix/x86_64/sysdep.h b/sysdeps/unix/x86_64/sysdep.h index 61bec8ee76..cd4344492d 100644 --- a/sysdeps/unix/x86_64/sysdep.h +++ b/sysdeps/unix/x86_64/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/wordsize-32/bits/wordsize.h b/sysdeps/wordsize-32/bits/wordsize.h index f68334cec9..27f39421c5 100644 --- a/sysdeps/wordsize-32/bits/wordsize.h +++ b/sysdeps/wordsize-32/bits/wordsize.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/wordsize-32/divdi3.c b/sysdeps/wordsize-32/divdi3.c index fa122aa5fd..20be81d27b 100644 --- a/sysdeps/wordsize-32/divdi3.c +++ b/sysdeps/wordsize-32/divdi3.c @@ -1,5 +1,5 @@ /* 64-bit multiplication and division - Copyright (C) 1989, 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1989, 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/wordsize-32/llabs.c b/sysdeps/wordsize-32/llabs.c index bf2dd67618..8058dccb10 100644 --- a/sysdeps/wordsize-32/llabs.c +++ b/sysdeps/wordsize-32/llabs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/wordsize-32/lldiv.c b/sysdeps/wordsize-32/lldiv.c index 345080e69e..30f8c79ccb 100644 --- a/sysdeps/wordsize-32/lldiv.c +++ b/sysdeps/wordsize-32/lldiv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/wordsize-32/strtoimax.c b/sysdeps/wordsize-32/strtoimax.c index 5306ebb8c8..260a033be4 100644 --- a/sysdeps/wordsize-32/strtoimax.c +++ b/sysdeps/wordsize-32/strtoimax.c @@ -1,5 +1,5 @@ /* Convert string to maximal integer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/wordsize-32/strtoumax.c b/sysdeps/wordsize-32/strtoumax.c index a7cff2eb79..86e37fab56 100644 --- a/sysdeps/wordsize-32/strtoumax.c +++ b/sysdeps/wordsize-32/strtoumax.c @@ -1,5 +1,5 @@ /* Convert string to maximal unsigned integer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/wordsize-32/symbol-hacks.h b/sysdeps/wordsize-32/symbol-hacks.h index 202a8070de..11e4701c50 100644 --- a/sysdeps/wordsize-32/symbol-hacks.h +++ b/sysdeps/wordsize-32/symbol-hacks.h @@ -1,5 +1,5 @@ /* Hacks needed for symbol manipulation. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/wordsize-32/wcstoimax.c b/sysdeps/wordsize-32/wcstoimax.c index 4308dad368..a87947233d 100644 --- a/sysdeps/wordsize-32/wcstoimax.c +++ b/sysdeps/wordsize-32/wcstoimax.c @@ -1,5 +1,5 @@ /* Convert wide-character string to maximal integer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/wordsize-32/wcstoumax.c b/sysdeps/wordsize-32/wcstoumax.c index 206ff6f865..fb2916b9e4 100644 --- a/sysdeps/wordsize-32/wcstoumax.c +++ b/sysdeps/wordsize-32/wcstoumax.c @@ -1,5 +1,5 @@ /* Convert wide-character string to maximal unsigned integer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/wordsize-64/bits/wordsize.h b/sysdeps/wordsize-64/bits/wordsize.h index cf5b86a36e..3ddbdd9265 100644 --- a/sysdeps/wordsize-64/bits/wordsize.h +++ b/sysdeps/wordsize-64/bits/wordsize.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/wordsize-64/labs.c b/sysdeps/wordsize-64/labs.c index 0a86b31c34..62c6ba78a2 100644 --- a/sysdeps/wordsize-64/labs.c +++ b/sysdeps/wordsize-64/labs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/wordsize-64/ldiv.c b/sysdeps/wordsize-64/ldiv.c index b6c91946a5..e29a004fb3 100644 --- a/sysdeps/wordsize-64/ldiv.c +++ b/sysdeps/wordsize-64/ldiv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/wordsize-64/strtoimax.c b/sysdeps/wordsize-64/strtoimax.c index 52f340cb8c..1b5d95c3ba 100644 --- a/sysdeps/wordsize-64/strtoimax.c +++ b/sysdeps/wordsize-64/strtoimax.c @@ -1,5 +1,5 @@ /* Convert string to maximal integer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/wordsize-64/strtoumax.c b/sysdeps/wordsize-64/strtoumax.c index b166a76187..cb1b862395 100644 --- a/sysdeps/wordsize-64/strtoumax.c +++ b/sysdeps/wordsize-64/strtoumax.c @@ -1,5 +1,5 @@ /* Convert string to maximal unsigned integer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/wordsize-64/tst-writev.c b/sysdeps/wordsize-64/tst-writev.c index 93d36fc545..939f3b36ee 100644 --- a/sysdeps/wordsize-64/tst-writev.c +++ b/sysdeps/wordsize-64/tst-writev.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ryan S. Arnold , 2011. diff --git a/sysdeps/wordsize-64/wcstoimax.c b/sysdeps/wordsize-64/wcstoimax.c index f247069e02..52dbd865ef 100644 --- a/sysdeps/wordsize-64/wcstoimax.c +++ b/sysdeps/wordsize-64/wcstoimax.c @@ -1,5 +1,5 @@ /* Convert wide-character string to maximal integer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/wordsize-64/wcstoumax.c b/sysdeps/wordsize-64/wcstoumax.c index e327dee2cb..45e23b312c 100644 --- a/sysdeps/wordsize-64/wcstoumax.c +++ b/sysdeps/wordsize-64/wcstoumax.c @@ -1,5 +1,5 @@ /* Convert wide-character string to maximal unsigned integer. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/x86/bits/byteswap-16.h b/sysdeps/x86/bits/byteswap-16.h index fbb8ccc949..f3a9c6b203 100644 --- a/sysdeps/x86/bits/byteswap-16.h +++ b/sysdeps/x86/bits/byteswap-16.h @@ -1,5 +1,5 @@ /* Macros to swap the order of bytes in 16-bit integer values. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/bits/byteswap.h b/sysdeps/x86/bits/byteswap.h index 6cb7b01c2b..933fe4bebd 100644 --- a/sysdeps/x86/bits/byteswap.h +++ b/sysdeps/x86/bits/byteswap.h @@ -1,5 +1,5 @@ /* Macros to swap the order of bytes in integer values. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/bits/huge_vall.h b/sysdeps/x86/bits/huge_vall.h index b118889c34..ec778100b0 100644 --- a/sysdeps/x86/bits/huge_vall.h +++ b/sysdeps/x86/bits/huge_vall.h @@ -1,6 +1,6 @@ /* `HUGE_VALL' constant for ix86 (where it is infinity). Used by and functions for overflow. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/bits/link.h b/sysdeps/x86/bits/link.h index 475b141588..4ebc5c1743 100644 --- a/sysdeps/x86/bits/link.h +++ b/sysdeps/x86/bits/link.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2004-2013 Free Software Foundation, Inc. +/* Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/bits/mathdef.h b/sysdeps/x86/bits/mathdef.h index e5b1ca5a1f..07c2d66b03 100644 --- a/sysdeps/x86/bits/mathdef.h +++ b/sysdeps/x86/bits/mathdef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/bits/select.h b/sysdeps/x86/bits/select.h index 8b87188eb8..6e9c4f1d87 100644 --- a/sysdeps/x86/bits/select.h +++ b/sysdeps/x86/bits/select.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/bits/setjmp.h b/sysdeps/x86/bits/setjmp.h index 7c666e20d7..a261eb7098 100644 --- a/sysdeps/x86/bits/setjmp.h +++ b/sysdeps/x86/bits/setjmp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/bits/string.h b/sysdeps/x86/bits/string.h index 24b64ec94d..a401a0d215 100644 --- a/sysdeps/x86/bits/string.h +++ b/sysdeps/x86/bits/string.h @@ -1,5 +1,5 @@ /* Optimized, inlined string functions. i486/x86-64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/bits/xtitypes.h b/sysdeps/x86/bits/xtitypes.h index 06e2fddcac..37aba9e749 100644 --- a/sysdeps/x86/bits/xtitypes.h +++ b/sysdeps/x86/bits/xtitypes.h @@ -1,5 +1,5 @@ /* bits/xtitypes.h -- Define some types used by . x86-64. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/fpu/bits/fenv.h b/sysdeps/x86/fpu/bits/fenv.h index 07cac2887c..d21b312980 100644 --- a/sysdeps/x86/fpu/bits/fenv.h +++ b/sysdeps/x86/fpu/bits/fenv.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/fpu/bits/mathinline.h b/sysdeps/x86/fpu/bits/mathinline.h index fed64149fc..acc82ca275 100644 --- a/sysdeps/x86/fpu/bits/mathinline.h +++ b/sysdeps/x86/fpu/bits/mathinline.h @@ -1,5 +1,5 @@ /* Inline math functions for i387 and SSE. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/fpu/powl_helper.c b/sysdeps/x86/fpu/powl_helper.c index 7560d7b1de..c9c92e1354 100644 --- a/sysdeps/x86/fpu/powl_helper.c +++ b/sysdeps/x86/fpu/powl_helper.c @@ -1,5 +1,5 @@ /* Implement powl for x86 using extra-precision log. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86/fpu_control.h b/sysdeps/x86/fpu_control.h index aee75cd9f9..2295f464e9 100644 --- a/sysdeps/x86/fpu_control.h +++ b/sysdeps/x86/fpu_control.h @@ -1,5 +1,5 @@ /* FPU control word bits. x86 version. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Olaf Flebbe. diff --git a/sysdeps/x86/tst-xmmymm.sh b/sysdeps/x86/tst-xmmymm.sh index 0883e40a01..69ddb587d4 100755 --- a/sysdeps/x86/tst-xmmymm.sh +++ b/sysdeps/x86/tst-xmmymm.sh @@ -1,6 +1,6 @@ #! /bin/bash # Make sure no code in ld.so uses xmm/ymm registers on x86-64. -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/__longjmp.S b/sysdeps/x86_64/__longjmp.S index be3b393271..fbac0d9152 100644 --- a/sysdeps/x86_64/__longjmp.S +++ b/sysdeps/x86_64/__longjmp.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/_mcount.S b/sysdeps/x86_64/_mcount.S index 63c1a4772d..65f6cf90a0 100644 --- a/sysdeps/x86_64/_mcount.S +++ b/sysdeps/x86_64/_mcount.S @@ -1,5 +1,5 @@ /* Machine-specific calling sequence for `mcount' profiling function. x86-64 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Contributed by Andreas Jaeger . This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/add_n.S b/sysdeps/x86_64/add_n.S index a9e831ba33..151382adf1 100644 --- a/sysdeps/x86_64/add_n.S +++ b/sysdeps/x86_64/add_n.S @@ -1,6 +1,6 @@ /* x86-64 __mpn_add_n -- Add two limb vectors of the same length > 0 and store sum in a third limb vector. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/x86_64/addmul_1.S b/sysdeps/x86_64/addmul_1.S index 25ef3f443a..fd432dcf9b 100644 --- a/sysdeps/x86_64/addmul_1.S +++ b/sysdeps/x86_64/addmul_1.S @@ -1,6 +1,6 @@ /* x86-64 __mpn_addmul_1 -- Multiply a limb vector with a limb and add the result to a second limb vector. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/x86_64/backtrace.c b/sysdeps/x86_64/backtrace.c index c09a591840..e940174b2a 100644 --- a/sysdeps/x86_64/backtrace.c +++ b/sysdeps/x86_64/backtrace.c @@ -1,5 +1,5 @@ /* Return backtrace of current program state. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/sysdeps/x86_64/bits/atomic.h b/sysdeps/x86_64/bits/atomic.h index 5181ffb2db..4d19ef0bb4 100644 --- a/sysdeps/x86_64/bits/atomic.h +++ b/sysdeps/x86_64/bits/atomic.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/sysdeps/x86_64/bsd-_setjmp.S b/sysdeps/x86_64/bsd-_setjmp.S index 4bb4978bf4..64f4895764 100644 --- a/sysdeps/x86_64/bsd-_setjmp.S +++ b/sysdeps/x86_64/bsd-_setjmp.S @@ -1,5 +1,5 @@ /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. x86-64 version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/bsd-setjmp.S b/sysdeps/x86_64/bsd-setjmp.S index 6a5cfe2f3b..d7ad037ab3 100644 --- a/sysdeps/x86_64/bsd-setjmp.S +++ b/sysdeps/x86_64/bsd-setjmp.S @@ -1,5 +1,5 @@ /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. x86-64 version. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/cacheinfo.c b/sysdeps/x86_64/cacheinfo.c index 9aed28f854..163af2acbc 100644 --- a/sysdeps/x86_64/cacheinfo.c +++ b/sysdeps/x86_64/cacheinfo.c @@ -1,5 +1,5 @@ /* x86_64 cache info. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/crti.S b/sysdeps/x86_64/crti.S index 78b45748fb..7835dc582e 100644 --- a/sysdeps/x86_64/crti.S +++ b/sysdeps/x86_64/crti.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for x86-64. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/crtn.S b/sysdeps/x86_64/crtn.S index 01f8579e7c..d488584d03 100644 --- a/sysdeps/x86_64/crtn.S +++ b/sysdeps/x86_64/crtn.S @@ -1,5 +1,5 @@ /* Special .init and .fini section support for x86-64. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/dl-irel.h b/sysdeps/x86_64/dl-irel.h index c9889277a6..1249fe823f 100644 --- a/sysdeps/x86_64/dl-irel.h +++ b/sysdeps/x86_64/dl-irel.h @@ -1,6 +1,6 @@ /* Machine-dependent ELF indirect relocation inline functions. x86-64 version. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/dl-lookupcfg.h b/sysdeps/x86_64/dl-lookupcfg.h index d4fa4104e0..3fea8b4ab1 100644 --- a/sysdeps/x86_64/dl-lookupcfg.h +++ b/sysdeps/x86_64/dl-lookupcfg.h @@ -1,5 +1,5 @@ /* Configuration of lookup functions. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/dl-machine.h b/sysdeps/x86_64/dl-machine.h index 116fed1b07..504c95f320 100644 --- a/sysdeps/x86_64/dl-machine.h +++ b/sysdeps/x86_64/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. x86-64 version. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger . diff --git a/sysdeps/x86_64/dl-tls.h b/sysdeps/x86_64/dl-tls.h index af861c0ad4..958a75d994 100644 --- a/sysdeps/x86_64/dl-tls.h +++ b/sysdeps/x86_64/dl-tls.h @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. x86-64 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/dl-tlsdesc.S b/sysdeps/x86_64/dl-tlsdesc.S index 34680450c2..92e18a54c2 100644 --- a/sysdeps/x86_64/dl-tlsdesc.S +++ b/sysdeps/x86_64/dl-tlsdesc.S @@ -1,5 +1,5 @@ /* Thread-local storage handling in the ELF dynamic linker. x86_64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/dl-tlsdesc.h b/sysdeps/x86_64/dl-tlsdesc.h index a6c0596219..1f983abbaa 100644 --- a/sysdeps/x86_64/dl-tlsdesc.h +++ b/sysdeps/x86_64/dl-tlsdesc.h @@ -1,6 +1,6 @@ /* Thread-local storage descriptor handling in the ELF dynamic linker. x86_64 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/dl-trampoline.S b/sysdeps/x86_64/dl-trampoline.S index a25e390a72..ae38677e13 100644 --- a/sysdeps/x86_64/dl-trampoline.S +++ b/sysdeps/x86_64/dl-trampoline.S @@ -1,5 +1,5 @@ /* PLT trampolines. x86-64 version. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/dl-trampoline.h b/sysdeps/x86_64/dl-trampoline.h index e01d72feee..5d1b75ff54 100644 --- a/sysdeps/x86_64/dl-trampoline.h +++ b/sysdeps/x86_64/dl-trampoline.h @@ -1,6 +1,6 @@ /* Partial PLT profile trampoline to save and restore x86-64 vector registers. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/ffs.c b/sysdeps/x86_64/ffs.c index 07ee7dd4ab..032e29a084 100644 --- a/sysdeps/x86_64/ffs.c +++ b/sysdeps/x86_64/ffs.c @@ -1,7 +1,7 @@ /* ffs -- find first set bit in a word, counted from least significant end. For AMD x86-64. This file is part of the GNU C Library. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper . The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/ffsll.c b/sysdeps/x86_64/ffsll.c index 5f128972be..0b630c456a 100644 --- a/sysdeps/x86_64/ffsll.c +++ b/sysdeps/x86_64/ffsll.c @@ -1,7 +1,7 @@ /* ffsll -- find first set bit in a word, counted from least significant end. For AMD x86-64. This file is part of the GNU C Library. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper . The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/e_expf.S b/sysdeps/x86_64/fpu/e_expf.S index 92456b96cb..ebf332f4eb 100644 --- a/sysdeps/x86_64/fpu/e_expf.S +++ b/sysdeps/x86_64/fpu/e_expf.S @@ -1,5 +1,5 @@ /* Optimized __ieee754_expf function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/fpu/e_powl.S b/sysdeps/x86_64/fpu/e_powl.S index 590223b60c..47f129f34d 100644 --- a/sysdeps/x86_64/fpu/e_powl.S +++ b/sysdeps/x86_64/fpu/e_powl.S @@ -1,5 +1,5 @@ /* ix87 specific implementation of pow function. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/sysdeps/x86_64/fpu/e_sqrt.c b/sysdeps/x86_64/fpu/e_sqrt.c index ade66c2aed..f988473217 100644 --- a/sysdeps/x86_64/fpu/e_sqrt.c +++ b/sysdeps/x86_64/fpu/e_sqrt.c @@ -1,5 +1,5 @@ /* Square root of floating point number. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/e_sqrtf.c b/sysdeps/x86_64/fpu/e_sqrtf.c index 587e3a637c..e928529a90 100644 --- a/sysdeps/x86_64/fpu/e_sqrtf.c +++ b/sysdeps/x86_64/fpu/e_sqrtf.c @@ -1,5 +1,5 @@ /* Square root of floating point number. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/fclrexcpt.c b/sysdeps/x86_64/fpu/fclrexcpt.c index 09b251f503..dc7802598f 100644 --- a/sysdeps/x86_64/fpu/fclrexcpt.c +++ b/sysdeps/x86_64/fpu/fclrexcpt.c @@ -1,5 +1,5 @@ /* Clear given exceptions in current floating-point environment. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/fedisblxcpt.c b/sysdeps/x86_64/fpu/fedisblxcpt.c index b6b622d342..8312ed8b80 100644 --- a/sysdeps/x86_64/fpu/fedisblxcpt.c +++ b/sysdeps/x86_64/fpu/fedisblxcpt.c @@ -1,5 +1,5 @@ /* Disable floating-point exceptions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2001. diff --git a/sysdeps/x86_64/fpu/feenablxcpt.c b/sysdeps/x86_64/fpu/feenablxcpt.c index 361256b418..1b29699981 100644 --- a/sysdeps/x86_64/fpu/feenablxcpt.c +++ b/sysdeps/x86_64/fpu/feenablxcpt.c @@ -1,5 +1,5 @@ /* Enable floating-point exceptions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2001. diff --git a/sysdeps/x86_64/fpu/fegetenv.c b/sysdeps/x86_64/fpu/fegetenv.c index 1c872481fc..364f917719 100644 --- a/sysdeps/x86_64/fpu/fegetenv.c +++ b/sysdeps/x86_64/fpu/fegetenv.c @@ -1,5 +1,5 @@ /* Store current floating-point environment. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/fegetexcept.c b/sysdeps/x86_64/fpu/fegetexcept.c index e4373627c7..d3a853ecf2 100644 --- a/sysdeps/x86_64/fpu/fegetexcept.c +++ b/sysdeps/x86_64/fpu/fegetexcept.c @@ -1,5 +1,5 @@ /* Get enabled floating-point exceptions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2001. diff --git a/sysdeps/x86_64/fpu/fegetround.c b/sysdeps/x86_64/fpu/fegetround.c index c7cd046f39..763aa22783 100644 --- a/sysdeps/x86_64/fpu/fegetround.c +++ b/sysdeps/x86_64/fpu/fegetround.c @@ -1,5 +1,5 @@ /* Return current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/x86_64/fpu/feholdexcpt.c b/sysdeps/x86_64/fpu/feholdexcpt.c index 1a1afb9065..bf78453c09 100644 --- a/sysdeps/x86_64/fpu/feholdexcpt.c +++ b/sysdeps/x86_64/fpu/feholdexcpt.c @@ -1,5 +1,5 @@ /* Store current floating-point environment and clear exceptions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/fesetenv.c b/sysdeps/x86_64/fpu/fesetenv.c index da42694118..9381079ef0 100644 --- a/sysdeps/x86_64/fpu/fesetenv.c +++ b/sysdeps/x86_64/fpu/fesetenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/fesetround.c b/sysdeps/x86_64/fpu/fesetround.c index 23de4c2383..ca28f3e9a8 100644 --- a/sysdeps/x86_64/fpu/fesetround.c +++ b/sysdeps/x86_64/fpu/fesetround.c @@ -1,5 +1,5 @@ /* Set current rounding direction. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/feupdateenv.c b/sysdeps/x86_64/fpu/feupdateenv.c index ccf0077124..9004ef2a9e 100644 --- a/sysdeps/x86_64/fpu/feupdateenv.c +++ b/sysdeps/x86_64/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/x86_64/fpu/fgetexcptflg.c b/sysdeps/x86_64/fpu/fgetexcptflg.c index 514f489952..c59489f3ce 100644 --- a/sysdeps/x86_64/fpu/fgetexcptflg.c +++ b/sysdeps/x86_64/fpu/fgetexcptflg.c @@ -1,5 +1,5 @@ /* Store current representation for exceptions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/fraiseexcpt.c b/sysdeps/x86_64/fpu/fraiseexcpt.c index e5f553adfd..5aeaf30040 100644 --- a/sysdeps/x86_64/fpu/fraiseexcpt.c +++ b/sysdeps/x86_64/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/fsetexcptflg.c b/sysdeps/x86_64/fpu/fsetexcptflg.c index 077593af54..8c58f91253 100644 --- a/sysdeps/x86_64/fpu/fsetexcptflg.c +++ b/sysdeps/x86_64/fpu/fsetexcptflg.c @@ -1,5 +1,5 @@ /* Set floating-point environment exception handling. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/ftestexcept.c b/sysdeps/x86_64/fpu/ftestexcept.c index 94800b9146..c3bec331be 100644 --- a/sysdeps/x86_64/fpu/ftestexcept.c +++ b/sysdeps/x86_64/fpu/ftestexcept.c @@ -1,5 +1,5 @@ /* Test exception in current environment. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/multiarch/s_ceil.S b/sysdeps/x86_64/fpu/multiarch/s_ceil.S index 48b33c762c..866c79684d 100644 --- a/sysdeps/x86_64/fpu/multiarch/s_ceil.S +++ b/sysdeps/x86_64/fpu/multiarch/s_ceil.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/x86_64/fpu/multiarch/s_ceilf.S b/sysdeps/x86_64/fpu/multiarch/s_ceilf.S index 729595d630..02d5e2b90c 100644 --- a/sysdeps/x86_64/fpu/multiarch/s_ceilf.S +++ b/sysdeps/x86_64/fpu/multiarch/s_ceilf.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/x86_64/fpu/multiarch/s_floor.S b/sysdeps/x86_64/fpu/multiarch/s_floor.S index 1eec2db0c4..02ece20bb2 100644 --- a/sysdeps/x86_64/fpu/multiarch/s_floor.S +++ b/sysdeps/x86_64/fpu/multiarch/s_floor.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/x86_64/fpu/multiarch/s_floorf.S b/sysdeps/x86_64/fpu/multiarch/s_floorf.S index ea36414a55..d485c5f330 100644 --- a/sysdeps/x86_64/fpu/multiarch/s_floorf.S +++ b/sysdeps/x86_64/fpu/multiarch/s_floorf.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/x86_64/fpu/multiarch/s_fma.c b/sysdeps/x86_64/fpu/multiarch/s_fma.c index 25a306f86a..507edc4aba 100644 --- a/sysdeps/x86_64/fpu/multiarch/s_fma.c +++ b/sysdeps/x86_64/fpu/multiarch/s_fma.c @@ -1,5 +1,5 @@ /* FMA version of fma. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/fpu/multiarch/s_fmaf.c b/sysdeps/x86_64/fpu/multiarch/s_fmaf.c index 063be692d1..e5fc5609cb 100644 --- a/sysdeps/x86_64/fpu/multiarch/s_fmaf.c +++ b/sysdeps/x86_64/fpu/multiarch/s_fmaf.c @@ -1,5 +1,5 @@ /* FMA version of fmaf. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/multiarch/s_nearbyint.S b/sysdeps/x86_64/fpu/multiarch/s_nearbyint.S index 91bfb54fb3..da9387151e 100644 --- a/sysdeps/x86_64/fpu/multiarch/s_nearbyint.S +++ b/sysdeps/x86_64/fpu/multiarch/s_nearbyint.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S b/sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S index 204efa230b..265b89f8ae 100644 --- a/sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S +++ b/sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/x86_64/fpu/multiarch/s_rint.S b/sysdeps/x86_64/fpu/multiarch/s_rint.S index 2904fe37d6..0dc4329d94 100644 --- a/sysdeps/x86_64/fpu/multiarch/s_rint.S +++ b/sysdeps/x86_64/fpu/multiarch/s_rint.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/x86_64/fpu/multiarch/s_rintf.S b/sysdeps/x86_64/fpu/multiarch/s_rintf.S index 3ce8fcca0f..e058eb2b99 100644 --- a/sysdeps/x86_64/fpu/multiarch/s_rintf.S +++ b/sysdeps/x86_64/fpu/multiarch/s_rintf.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/sysdeps/x86_64/fpu/printf_fphex.c b/sysdeps/x86_64/fpu/printf_fphex.c index be55f9cf6b..bcf62d67dd 100644 --- a/sysdeps/x86_64/fpu/printf_fphex.c +++ b/sysdeps/x86_64/fpu/printf_fphex.c @@ -1,5 +1,5 @@ /* Print floating point number in hexadecimal notation according to ISO C99. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/s_copysign.S b/sysdeps/x86_64/fpu/s_copysign.S index 01833de38e..e7f511ede6 100644 --- a/sysdeps/x86_64/fpu/s_copysign.S +++ b/sysdeps/x86_64/fpu/s_copysign.S @@ -1,5 +1,5 @@ /* copy sign, double version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/x86_64/fpu/s_copysignf.S b/sysdeps/x86_64/fpu/s_copysignf.S index ac6cb537f3..c6d23d6da8 100644 --- a/sysdeps/x86_64/fpu/s_copysignf.S +++ b/sysdeps/x86_64/fpu/s_copysignf.S @@ -1,5 +1,5 @@ /* copy sign, double version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/x86_64/fpu/s_cosf.S b/sysdeps/x86_64/fpu/s_cosf.S index dfbad895f0..81a9757a1b 100644 --- a/sysdeps/x86_64/fpu/s_cosf.S +++ b/sysdeps/x86_64/fpu/s_cosf.S @@ -1,5 +1,5 @@ /* Optimized cosf function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/s_fabs.c b/sysdeps/x86_64/fpu/s_fabs.c index ce070c90bb..c983cb275a 100644 --- a/sysdeps/x86_64/fpu/s_fabs.c +++ b/sysdeps/x86_64/fpu/s_fabs.c @@ -1,5 +1,5 @@ /* Absolute value of floating point number. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/s_fabsf.c b/sysdeps/x86_64/fpu/s_fabsf.c index dd9c796887..f985d09a5f 100644 --- a/sysdeps/x86_64/fpu/s_fabsf.c +++ b/sysdeps/x86_64/fpu/s_fabsf.c @@ -1,5 +1,5 @@ /* Absolute value of floating point number. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/s_fabsl.S b/sysdeps/x86_64/fpu/s_fabsl.S index dbc26de997..432c00ba34 100644 --- a/sysdeps/x86_64/fpu/s_fabsl.S +++ b/sysdeps/x86_64/fpu/s_fabsl.S @@ -1,5 +1,5 @@ /* Absolute value of floating point number. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/s_fdiml.S b/sysdeps/x86_64/fpu/s_fdiml.S index f77261a9e1..c9f85a4e2f 100644 --- a/sysdeps/x86_64/fpu/s_fdiml.S +++ b/sysdeps/x86_64/fpu/s_fdiml.S @@ -1,5 +1,5 @@ /* Compute positive difference. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/x86_64/fpu/s_fmax.S b/sysdeps/x86_64/fpu/s_fmax.S index 739369f54d..68f9bda315 100644 --- a/sysdeps/x86_64/fpu/s_fmax.S +++ b/sysdeps/x86_64/fpu/s_fmax.S @@ -1,5 +1,5 @@ /* Compute maximum of two numbers, regarding NaN as missing argument. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/x86_64/fpu/s_fmaxf.S b/sysdeps/x86_64/fpu/s_fmaxf.S index 95192dad7e..471131d84c 100644 --- a/sysdeps/x86_64/fpu/s_fmaxf.S +++ b/sysdeps/x86_64/fpu/s_fmaxf.S @@ -1,5 +1,5 @@ /* Compute maximum of two numbers, regarding NaN as missing argument. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/x86_64/fpu/s_fmaxl.S b/sysdeps/x86_64/fpu/s_fmaxl.S index b9cc71d9c4..f88b4235e1 100644 --- a/sysdeps/x86_64/fpu/s_fmaxl.S +++ b/sysdeps/x86_64/fpu/s_fmaxl.S @@ -1,5 +1,5 @@ /* Compute maximum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/x86_64/fpu/s_fmin.S b/sysdeps/x86_64/fpu/s_fmin.S index 22ec4b835b..a31873170a 100644 --- a/sysdeps/x86_64/fpu/s_fmin.S +++ b/sysdeps/x86_64/fpu/s_fmin.S @@ -1,5 +1,5 @@ /* Compute minimum of two numbers, regarding NaN as missing argument. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/x86_64/fpu/s_fminf.S b/sysdeps/x86_64/fpu/s_fminf.S index e8f4de5c33..9caf19a9b9 100644 --- a/sysdeps/x86_64/fpu/s_fminf.S +++ b/sysdeps/x86_64/fpu/s_fminf.S @@ -1,5 +1,5 @@ /* Compute minimum of two numbers, regarding NaN as missing argument. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/x86_64/fpu/s_fminl.S b/sysdeps/x86_64/fpu/s_fminl.S index 36dd272cee..e5dd039043 100644 --- a/sysdeps/x86_64/fpu/s_fminl.S +++ b/sysdeps/x86_64/fpu/s_fminl.S @@ -1,5 +1,5 @@ /* Compute minimum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/x86_64/fpu/s_llrint.S b/sysdeps/x86_64/fpu/s_llrint.S index 4de81a87cc..84c586846f 100644 --- a/sysdeps/x86_64/fpu/s_llrint.S +++ b/sysdeps/x86_64/fpu/s_llrint.S @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/x86_64/fpu/s_llrintf.S b/sysdeps/x86_64/fpu/s_llrintf.S index 2cce9adce0..47ea6a6518 100644 --- a/sysdeps/x86_64/fpu/s_llrintf.S +++ b/sysdeps/x86_64/fpu/s_llrintf.S @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/x86_64/fpu/s_llrintl.S b/sysdeps/x86_64/fpu/s_llrintl.S index 8c6f72ec7b..1576ecea07 100644 --- a/sysdeps/x86_64/fpu/s_llrintl.S +++ b/sysdeps/x86_64/fpu/s_llrintl.S @@ -1,6 +1,6 @@ /* Round argument to nearest integral value according to current rounding direction. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/s_signbit.S b/sysdeps/x86_64/fpu/s_signbit.S index ee3446ada0..1ed85b4dd0 100644 --- a/sysdeps/x86_64/fpu/s_signbit.S +++ b/sysdeps/x86_64/fpu/s_signbit.S @@ -1,5 +1,5 @@ /* Return nonzero value if number is negative. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2009. diff --git a/sysdeps/x86_64/fpu/s_signbitf.S b/sysdeps/x86_64/fpu/s_signbitf.S index 55913e4dee..bf29c7a6a4 100644 --- a/sysdeps/x86_64/fpu/s_signbitf.S +++ b/sysdeps/x86_64/fpu/s_signbitf.S @@ -1,5 +1,5 @@ /* Return nonzero value if number is negative. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2009. diff --git a/sysdeps/x86_64/fpu/s_sincosf.S b/sysdeps/x86_64/fpu/s_sincosf.S index 4485674e6a..b11184f111 100644 --- a/sysdeps/x86_64/fpu/s_sincosf.S +++ b/sysdeps/x86_64/fpu/s_sincosf.S @@ -1,5 +1,5 @@ /* Optimized sincosf function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/s_sinf.S b/sysdeps/x86_64/fpu/s_sinf.S index 6e9e3be89b..1529fb1f24 100644 --- a/sysdeps/x86_64/fpu/s_sinf.S +++ b/sysdeps/x86_64/fpu/s_sinf.S @@ -1,5 +1,5 @@ /* Optimized sinf function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/fpu/s_truncl.S b/sysdeps/x86_64/fpu/s_truncl.S index 3f5e1ef7a5..8eca6a67c8 100644 --- a/sysdeps/x86_64/fpu/s_truncl.S +++ b/sysdeps/x86_64/fpu/s_truncl.S @@ -1,5 +1,5 @@ /* Truncate long double value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/sysdeps/x86_64/hp-timing.h b/sysdeps/x86_64/hp-timing.h index 87dc0bb30a..d88206c6e3 100644 --- a/sysdeps/x86_64/hp-timing.h +++ b/sysdeps/x86_64/hp-timing.h @@ -1,5 +1,5 @@ /* High precision, low overhead timing functions. x86-64 version. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/htonl.S b/sysdeps/x86_64/htonl.S index 6629534b34..32836b5b1f 100644 --- a/sysdeps/x86_64/htonl.S +++ b/sysdeps/x86_64/htonl.S @@ -1,5 +1,5 @@ /* Change byte order in word. For AMD x86-64. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/jmpbuf-offsets.h b/sysdeps/x86_64/jmpbuf-offsets.h index 23b0240a6a..7e90d85db1 100644 --- a/sysdeps/x86_64/jmpbuf-offsets.h +++ b/sysdeps/x86_64/jmpbuf-offsets.h @@ -1,5 +1,5 @@ /* Private macros for accessing __jmp_buf contents. x86-64 version. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/jmpbuf-unwind.h b/sysdeps/x86_64/jmpbuf-unwind.h index 56afdfac56..757ab8df27 100644 --- a/sysdeps/x86_64/jmpbuf-unwind.h +++ b/sysdeps/x86_64/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/sysdeps/x86_64/ldsodefs.h b/sysdeps/x86_64/ldsodefs.h index faf1d0c947..f786ac83f0 100644 --- a/sysdeps/x86_64/ldsodefs.h +++ b/sysdeps/x86_64/ldsodefs.h @@ -1,5 +1,5 @@ /* Run-time dynamic linker data structures for loaded ELF shared objects. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/lshift.S b/sysdeps/x86_64/lshift.S index c5084f227a..127606a408 100644 --- a/sysdeps/x86_64/lshift.S +++ b/sysdeps/x86_64/lshift.S @@ -1,5 +1,5 @@ /* x86-64 __mpn_lshift -- - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/x86_64/machine-gmon.h b/sysdeps/x86_64/machine-gmon.h index db9a5a4e3e..7873680fb7 100644 --- a/sysdeps/x86_64/machine-gmon.h +++ b/sysdeps/x86_64/machine-gmon.h @@ -1,5 +1,5 @@ /* x86-64-specific implementation of profiling support. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/x86_64/memchr.S b/sysdeps/x86_64/memchr.S index 891ee70aef..1c122d5b04 100644 --- a/sysdeps/x86_64/memchr.S +++ b/sysdeps/x86_64/memchr.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/memcmp.S b/sysdeps/x86_64/memcmp.S index d5c072c7f4..1652540e00 100644 --- a/sysdeps/x86_64/memcmp.S +++ b/sysdeps/x86_64/memcmp.S @@ -1,5 +1,5 @@ /* memcmp with SSE2 - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/memcpy.S b/sysdeps/x86_64/memcpy.S index d6cd553a26..60f3c65183 100644 --- a/sysdeps/x86_64/memcpy.S +++ b/sysdeps/x86_64/memcpy.S @@ -1,7 +1,7 @@ /* Optimized memcpy for x86-64. - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. Contributed by Evandro Menezes , 2007. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/memcpy_chk.S b/sysdeps/x86_64/memcpy_chk.S index c6453c87e4..f5073817e0 100644 --- a/sysdeps/x86_64/memcpy_chk.S +++ b/sysdeps/x86_64/memcpy_chk.S @@ -1,5 +1,5 @@ /* Checking memcpy for x86-64. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/memmove.c b/sysdeps/x86_64/memmove.c index e15576190e..202f5b861e 100644 --- a/sysdeps/x86_64/memmove.c +++ b/sysdeps/x86_64/memmove.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/mempcpy_chk.S b/sysdeps/x86_64/mempcpy_chk.S index 484e584585..409074381e 100644 --- a/sysdeps/x86_64/mempcpy_chk.S +++ b/sysdeps/x86_64/mempcpy_chk.S @@ -1,5 +1,5 @@ /* Checking mempcpy for x86-64. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/memrchr.S b/sysdeps/x86_64/memrchr.S index 5a659feede..ff875f44ab 100644 --- a/sysdeps/x86_64/memrchr.S +++ b/sysdeps/x86_64/memrchr.S @@ -1,6 +1,6 @@ /* fast SSE2 memrchr with 64 byte loop and pmaxub instruction using - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/memset.S b/sysdeps/x86_64/memset.S index 9b1de89d98..db4fb842ef 100644 --- a/sysdeps/x86_64/memset.S +++ b/sysdeps/x86_64/memset.S @@ -1,6 +1,6 @@ /* memset/bzero -- set memory area to CH/0 Optimized version for x86-64. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/memset_chk.S b/sysdeps/x86_64/memset_chk.S index c17f22a87b..d57a72bf39 100644 --- a/sysdeps/x86_64/memset_chk.S +++ b/sysdeps/x86_64/memset_chk.S @@ -1,5 +1,5 @@ /* Checking memset for x86-64. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/memusage.h b/sysdeps/x86_64/memusage.h index 25cde7a2d7..6ab10040ed 100644 --- a/sysdeps/x86_64/memusage.h +++ b/sysdeps/x86_64/memusage.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/mul_1.S b/sysdeps/x86_64/mul_1.S index c8b71df908..25ad147150 100644 --- a/sysdeps/x86_64/mul_1.S +++ b/sysdeps/x86_64/mul_1.S @@ -1,6 +1,6 @@ /* AMD64 __mpn_mul_1 -- Multiply a limb vector with a limb and store the result in a second limb vector. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/x86_64/multiarch/ifunc-impl-list.c b/sysdeps/x86_64/multiarch/ifunc-impl-list.c index 3344889ce3..6da9be1420 100644 --- a/sysdeps/x86_64/multiarch/ifunc-impl-list.c +++ b/sysdeps/x86_64/multiarch/ifunc-impl-list.c @@ -1,5 +1,5 @@ /* Enumerate available IFUNC implementations of a function. x86-64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/init-arch.c b/sysdeps/x86_64/multiarch/init-arch.c index 55839610e2..db74d977f2 100644 --- a/sysdeps/x86_64/multiarch/init-arch.c +++ b/sysdeps/x86_64/multiarch/init-arch.c @@ -1,6 +1,6 @@ /* Initialize CPU feature data. This file is part of the GNU C Library. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper . The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/init-arch.h b/sysdeps/x86_64/multiarch/init-arch.h index 0cb5f5bc30..793707a4da 100644 --- a/sysdeps/x86_64/multiarch/init-arch.h +++ b/sysdeps/x86_64/multiarch/init-arch.h @@ -1,5 +1,5 @@ /* This file is part of the GNU C Library. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/sysdeps/x86_64/multiarch/memcmp-sse4.S b/sysdeps/x86_64/multiarch/memcmp-sse4.S index d7b147e5ce..e753d62bf4 100644 --- a/sysdeps/x86_64/multiarch/memcmp-sse4.S +++ b/sysdeps/x86_64/multiarch/memcmp-sse4.S @@ -1,5 +1,5 @@ /* memcmp with SSE4.1, wmemcmp with SSE4.1 - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/memcmp-ssse3.S b/sysdeps/x86_64/multiarch/memcmp-ssse3.S index e04f918dff..5f7572fbab 100644 --- a/sysdeps/x86_64/multiarch/memcmp-ssse3.S +++ b/sysdeps/x86_64/multiarch/memcmp-ssse3.S @@ -1,5 +1,5 @@ /* memcmp with SSSE3, wmemcmp with SSSE3 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/memcmp.S b/sysdeps/x86_64/multiarch/memcmp.S index da88af248a..627d8d05cf 100644 --- a/sysdeps/x86_64/multiarch/memcmp.S +++ b/sysdeps/x86_64/multiarch/memcmp.S @@ -1,6 +1,6 @@ /* Multiple versions of memcmp All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S b/sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S index df6578ebc9..07241b8e2b 100644 --- a/sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S +++ b/sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S @@ -1,5 +1,5 @@ /* memcpy with unaliged loads - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/memcpy-ssse3-back.S b/sysdeps/x86_64/multiarch/memcpy-ssse3-back.S index 0eb7d9b758..899ccbc34b 100644 --- a/sysdeps/x86_64/multiarch/memcpy-ssse3-back.S +++ b/sysdeps/x86_64/multiarch/memcpy-ssse3-back.S @@ -1,5 +1,5 @@ /* memcpy with SSSE3 and REP string - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/memcpy-ssse3.S b/sysdeps/x86_64/multiarch/memcpy-ssse3.S index 0cedab2447..0ad9a0008a 100644 --- a/sysdeps/x86_64/multiarch/memcpy-ssse3.S +++ b/sysdeps/x86_64/multiarch/memcpy-ssse3.S @@ -1,5 +1,5 @@ /* memcpy with SSSE3 - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/memcpy.S b/sysdeps/x86_64/multiarch/memcpy.S index a1e5031376..40ae926386 100644 --- a/sysdeps/x86_64/multiarch/memcpy.S +++ b/sysdeps/x86_64/multiarch/memcpy.S @@ -1,6 +1,6 @@ /* Multiple versions of memcpy All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/memcpy_chk.S b/sysdeps/x86_64/multiarch/memcpy_chk.S index ad01d8cd9f..3c0270fd23 100644 --- a/sysdeps/x86_64/multiarch/memcpy_chk.S +++ b/sysdeps/x86_64/multiarch/memcpy_chk.S @@ -1,6 +1,6 @@ /* Multiple versions of __memcpy_chk All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/memmove.c b/sysdeps/x86_64/multiarch/memmove.c index 8149c487d5..ba86e7bbb1 100644 --- a/sysdeps/x86_64/multiarch/memmove.c +++ b/sysdeps/x86_64/multiarch/memmove.c @@ -1,6 +1,6 @@ /* Multiple versions of memmove. All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/memmove_chk.c b/sysdeps/x86_64/multiarch/memmove_chk.c index 17ed460324..cb1acb6598 100644 --- a/sysdeps/x86_64/multiarch/memmove_chk.c +++ b/sysdeps/x86_64/multiarch/memmove_chk.c @@ -1,6 +1,6 @@ /* Multiple versions of __memmove_chk. All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/mempcpy.S b/sysdeps/x86_64/multiarch/mempcpy.S index b8b7fcd121..b9f04c2ec4 100644 --- a/sysdeps/x86_64/multiarch/mempcpy.S +++ b/sysdeps/x86_64/multiarch/mempcpy.S @@ -1,6 +1,6 @@ /* Multiple versions of mempcpy All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/mempcpy_chk.S b/sysdeps/x86_64/multiarch/mempcpy_chk.S index 3801db399b..c28473a669 100644 --- a/sysdeps/x86_64/multiarch/mempcpy_chk.S +++ b/sysdeps/x86_64/multiarch/mempcpy_chk.S @@ -1,6 +1,6 @@ /* Multiple versions of __mempcpy_chk All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/sched_cpucount.c b/sysdeps/x86_64/multiarch/sched_cpucount.c index cd127cdc69..68a043a169 100644 --- a/sysdeps/x86_64/multiarch/sched_cpucount.c +++ b/sysdeps/x86_64/multiarch/sched_cpucount.c @@ -1,6 +1,6 @@ /* Count bits in CPU set. x86-64 multi-arch version. This file is part of the GNU C Library. - Copyright (C) 2008-2013 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. Contributed by Ulrich Drepper . The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S b/sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S index 028c6d3d74..dc782f2c23 100644 --- a/sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S +++ b/sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S @@ -1,5 +1,5 @@ /* strcat with SSE2 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strcat-ssse3.S b/sysdeps/x86_64/multiarch/strcat-ssse3.S index 8101b91e59..fde7b90822 100644 --- a/sysdeps/x86_64/multiarch/strcat-ssse3.S +++ b/sysdeps/x86_64/multiarch/strcat-ssse3.S @@ -1,5 +1,5 @@ /* strcat with SSSE3 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strcat.S b/sysdeps/x86_64/multiarch/strcat.S index f94dc709be..d5c9d847d4 100644 --- a/sysdeps/x86_64/multiarch/strcat.S +++ b/sysdeps/x86_64/multiarch/strcat.S @@ -1,6 +1,6 @@ /* Multiple versions of strcat All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S b/sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S index 72da62f3d2..0b3f0961c3 100644 --- a/sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S +++ b/sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S @@ -1,5 +1,5 @@ /* strchr with SSE2 without bsf - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strchr.S b/sysdeps/x86_64/multiarch/strchr.S index 3f0b2c5f5a..63a35fa62f 100644 --- a/sysdeps/x86_64/multiarch/strchr.S +++ b/sysdeps/x86_64/multiarch/strchr.S @@ -1,5 +1,5 @@ /* Multiple versions of strchr - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S b/sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S index 4a8e57a243..b133ffc3ea 100644 --- a/sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S +++ b/sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S @@ -1,5 +1,5 @@ /* strcmp with unaligned loads - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/strcmp-sse42.S b/sysdeps/x86_64/multiarch/strcmp-sse42.S index c84f1c2b31..2d0758a656 100644 --- a/sysdeps/x86_64/multiarch/strcmp-sse42.S +++ b/sysdeps/x86_64/multiarch/strcmp-sse42.S @@ -1,5 +1,5 @@ /* strcmp with SSE4.2 - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strcmp.S b/sysdeps/x86_64/multiarch/strcmp.S index c5dcd1aa5e..f3e0ca1259 100644 --- a/sysdeps/x86_64/multiarch/strcmp.S +++ b/sysdeps/x86_64/multiarch/strcmp.S @@ -1,5 +1,5 @@ /* Multiple versions of strcmp - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S b/sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S index 7710173c68..be7513d480 100644 --- a/sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S +++ b/sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S @@ -1,5 +1,5 @@ /* strcpy with SSE2 and unaligned load - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strcpy-ssse3.S b/sysdeps/x86_64/multiarch/strcpy-ssse3.S index 42ee00bd5c..86569ff54a 100644 --- a/sysdeps/x86_64/multiarch/strcpy-ssse3.S +++ b/sysdeps/x86_64/multiarch/strcpy-ssse3.S @@ -1,5 +1,5 @@ /* strcpy with SSSE3 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strcpy.S b/sysdeps/x86_64/multiarch/strcpy.S index 919a411a9e..80ed98b30a 100644 --- a/sysdeps/x86_64/multiarch/strcpy.S +++ b/sysdeps/x86_64/multiarch/strcpy.S @@ -1,6 +1,6 @@ /* Multiple versions of strcpy All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strcspn-c.c b/sysdeps/x86_64/multiarch/strcspn-c.c index 9c0dcf0e8f..a9a6c8ae74 100644 --- a/sysdeps/x86_64/multiarch/strcspn-c.c +++ b/sysdeps/x86_64/multiarch/strcspn-c.c @@ -1,5 +1,5 @@ /* strcspn with SSE4.2 intrinsics - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strcspn.S b/sysdeps/x86_64/multiarch/strcspn.S index df9616510b..24f55e9579 100644 --- a/sysdeps/x86_64/multiarch/strcspn.S +++ b/sysdeps/x86_64/multiarch/strcspn.S @@ -1,6 +1,6 @@ /* Multiple versions of strcspn All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strspn-c.c b/sysdeps/x86_64/multiarch/strspn-c.c index 8128cb9769..8d19e5ca36 100644 --- a/sysdeps/x86_64/multiarch/strspn-c.c +++ b/sysdeps/x86_64/multiarch/strspn-c.c @@ -1,5 +1,5 @@ /* strspn with SSE4.2 intrinsics - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strspn.S b/sysdeps/x86_64/multiarch/strspn.S index 79fbf3c574..bf7308eade 100644 --- a/sysdeps/x86_64/multiarch/strspn.S +++ b/sysdeps/x86_64/multiarch/strspn.S @@ -1,6 +1,6 @@ /* Multiple versions of strspn All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S b/sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S index 99bae2cc83..5b8009c733 100644 --- a/sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S +++ b/sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S @@ -1,5 +1,5 @@ /* strstr with unaligned loads - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/strstr.c b/sysdeps/x86_64/multiarch/strstr.c index fbff3a8ec0..b41374d754 100644 --- a/sysdeps/x86_64/multiarch/strstr.c +++ b/sysdeps/x86_64/multiarch/strstr.c @@ -1,6 +1,6 @@ /* Multiple versions of strstr. All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/test-multiarch.c b/sysdeps/x86_64/multiarch/test-multiarch.c index 7ad7cca21e..0b144bc06d 100644 --- a/sysdeps/x86_64/multiarch/test-multiarch.c +++ b/sysdeps/x86_64/multiarch/test-multiarch.c @@ -1,6 +1,6 @@ /* Test CPU feature data. This file is part of the GNU C Library. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/sysdeps/x86_64/multiarch/varshift.c b/sysdeps/x86_64/multiarch/varshift.c index cdb0efb187..9761fb20c3 100644 --- a/sysdeps/x86_64/multiarch/varshift.c +++ b/sysdeps/x86_64/multiarch/varshift.c @@ -1,5 +1,5 @@ /* Helper for variable shifts of SSE registers. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/varshift.h b/sysdeps/x86_64/multiarch/varshift.h index 5b7e910eb2..4436a605bd 100644 --- a/sysdeps/x86_64/multiarch/varshift.h +++ b/sysdeps/x86_64/multiarch/varshift.h @@ -1,5 +1,5 @@ /* Helper for variable shifts of SSE registers. - Copyright (C) 2010-2013 Free Software Foundation, Inc. + Copyright (C) 2010-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/multiarch/wcscpy-ssse3.S b/sysdeps/x86_64/multiarch/wcscpy-ssse3.S index b7de092228..c79389ec3b 100644 --- a/sysdeps/x86_64/multiarch/wcscpy-ssse3.S +++ b/sysdeps/x86_64/multiarch/wcscpy-ssse3.S @@ -1,5 +1,5 @@ /* wcscpy with SSSE3 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/wcscpy.S b/sysdeps/x86_64/multiarch/wcscpy.S index e5ac97e558..f12ba27d60 100644 --- a/sysdeps/x86_64/multiarch/wcscpy.S +++ b/sysdeps/x86_64/multiarch/wcscpy.S @@ -1,6 +1,6 @@ /* Multiple versions of wcscpy All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/multiarch/wmemcmp.S b/sysdeps/x86_64/multiarch/wmemcmp.S index f7c8040527..37b9bbaeea 100644 --- a/sysdeps/x86_64/multiarch/wmemcmp.S +++ b/sysdeps/x86_64/multiarch/wmemcmp.S @@ -1,6 +1,6 @@ /* Multiple versions of wmemcmp All versions must be listed in ifunc-impl-list.c. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/rawmemchr.S b/sysdeps/x86_64/rawmemchr.S index f4d559155c..ed93d3f591 100644 --- a/sysdeps/x86_64/rawmemchr.S +++ b/sysdeps/x86_64/rawmemchr.S @@ -1,6 +1,6 @@ /* fast SSE2 memchr with 64 byte loop and pmaxub instruction using - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/rshift.S b/sysdeps/x86_64/rshift.S index af9de14076..1b53c8a298 100644 --- a/sysdeps/x86_64/rshift.S +++ b/sysdeps/x86_64/rshift.S @@ -1,5 +1,5 @@ /* x86-64 __mpn_rshift -- - Copyright (C) 2007-2013 Free Software Foundation, Inc. + Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/x86_64/rtld-memset.S b/sysdeps/x86_64/rtld-memset.S index 18b4903109..ea1e45ad80 100644 --- a/sysdeps/x86_64/rtld-memset.S +++ b/sysdeps/x86_64/rtld-memset.S @@ -1,6 +1,6 @@ /* memset implementation for the dynamic linker. This is separate from the libc implementation to avoid writing to SSE registers. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/rtld-strchr.S b/sysdeps/x86_64/rtld-strchr.S index 323da67429..984c868f1d 100644 --- a/sysdeps/x86_64/rtld-strchr.S +++ b/sysdeps/x86_64/rtld-strchr.S @@ -1,6 +1,6 @@ /* strchr (str, ch) -- Return pointer to first occurrence of CH in STR. For AMD x86-64. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/rtld-strlen.S b/sysdeps/x86_64/rtld-strlen.S index c459057d15..c57c90682e 100644 --- a/sysdeps/x86_64/rtld-strlen.S +++ b/sysdeps/x86_64/rtld-strlen.S @@ -1,5 +1,5 @@ /* strlen(str) -- determine the length of the string STR. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. Based on i486 version contributed by Ulrich Drepper . This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/sched_cpucount.c b/sysdeps/x86_64/sched_cpucount.c index 3f1aec001a..2423308c47 100644 --- a/sysdeps/x86_64/sched_cpucount.c +++ b/sysdeps/x86_64/sched_cpucount.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2013 Free Software Foundation, Inc. +/* Copyright (C) 2007-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/setjmp.S b/sysdeps/x86_64/setjmp.S index 71788d1e47..78a7e81202 100644 --- a/sysdeps/x86_64/setjmp.S +++ b/sysdeps/x86_64/setjmp.S @@ -1,5 +1,5 @@ /* setjmp for x86-64. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/stackinfo.h b/sysdeps/x86_64/stackinfo.h index c7f52b3b03..ea1e489f4e 100644 --- a/sysdeps/x86_64/stackinfo.h +++ b/sysdeps/x86_64/stackinfo.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2013 Free Software Foundation, Inc. +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/start.S b/sysdeps/x86_64/start.S index 7cbc157662..e3d4ff8e20 100644 --- a/sysdeps/x86_64/start.S +++ b/sysdeps/x86_64/start.S @@ -1,5 +1,5 @@ /* Startup code compliant to the ELF x86-64 ABI. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2001. diff --git a/sysdeps/x86_64/strcat.S b/sysdeps/x86_64/strcat.S index 8bea6fb5db..63b1d32a6b 100644 --- a/sysdeps/x86_64/strcat.S +++ b/sysdeps/x86_64/strcat.S @@ -1,6 +1,6 @@ /* strcat(dest, src) -- Append SRC on the end of DEST. Optimized for x86-64. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/x86_64/strchr.S b/sysdeps/x86_64/strchr.S index 7440500a67..7fdc04d420 100644 --- a/sysdeps/x86_64/strchr.S +++ b/sysdeps/x86_64/strchr.S @@ -1,6 +1,6 @@ /* strchr (str, ch) -- Return pointer to first occurrence of CH in STR. For AMD x86-64. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/strchrnul.S b/sysdeps/x86_64/strchrnul.S index bceeb61875..625c87eb30 100644 --- a/sysdeps/x86_64/strchrnul.S +++ b/sysdeps/x86_64/strchrnul.S @@ -1,7 +1,7 @@ /* strchrnul (str, ch) -- Return pointer to first occurrence of CH in STR or terminating NUL byte. For AMD x86-64. - Copyright (C) 2009-2013 Free Software Foundation, Inc. + Copyright (C) 2009-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/strcmp.S b/sysdeps/x86_64/strcmp.S index 76809373e8..fc45a620ac 100644 --- a/sysdeps/x86_64/strcmp.S +++ b/sysdeps/x86_64/strcmp.S @@ -1,5 +1,5 @@ /* Highly optimized version for x86-64. - Copyright (C) 1999-2013 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on i686 version contributed by Ulrich Drepper , 1999. diff --git a/sysdeps/x86_64/strcpy.S b/sysdeps/x86_64/strcpy.S index 612824700a..28f0400cc9 100644 --- a/sysdeps/x86_64/strcpy.S +++ b/sysdeps/x86_64/strcpy.S @@ -1,5 +1,5 @@ /* strcpy/stpcpy implementation for x86-64. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. diff --git a/sysdeps/x86_64/strcpy_chk.S b/sysdeps/x86_64/strcpy_chk.S index 7e171deefc..986339e6b4 100644 --- a/sysdeps/x86_64/strcpy_chk.S +++ b/sysdeps/x86_64/strcpy_chk.S @@ -1,5 +1,5 @@ /* strcpy/stpcpy checking implementation for x86-64. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2002. Adopted into checking version by Jakub Jelinek . diff --git a/sysdeps/x86_64/strcspn.S b/sysdeps/x86_64/strcspn.S index 65f8a9e96e..c83fe0aa51 100644 --- a/sysdeps/x86_64/strcspn.S +++ b/sysdeps/x86_64/strcspn.S @@ -1,7 +1,7 @@ /* strcspn (str, ss) -- Return the length of the initial segment of STR which contains no characters from SS. For AMD x86-64. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . Bug fixes by Alan Modra . diff --git a/sysdeps/x86_64/strlen.S b/sysdeps/x86_64/strlen.S index eeb1092218..9203dc0c39 100644 --- a/sysdeps/x86_64/strlen.S +++ b/sysdeps/x86_64/strlen.S @@ -1,5 +1,5 @@ /* SSE2 version of strlen. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/strrchr.S b/sysdeps/x86_64/strrchr.S index 2a07ff75ac..c07f1f9076 100644 --- a/sysdeps/x86_64/strrchr.S +++ b/sysdeps/x86_64/strrchr.S @@ -1,5 +1,5 @@ /* strrchr (str, ch) -- Return pointer to last occurrence of CH in STR. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/strspn.S b/sysdeps/x86_64/strspn.S index 2911da2aa5..b66576106c 100644 --- a/sysdeps/x86_64/strspn.S +++ b/sysdeps/x86_64/strspn.S @@ -1,7 +1,7 @@ /* strspn (str, ss) -- Return the length of the initial segment of STR which contains only characters from SS. For AMD x86-64. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper . Bug fixes by Alan Modra . diff --git a/sysdeps/x86_64/strtok.S b/sysdeps/x86_64/strtok.S index 5636d9a625..bb5ba2e28f 100644 --- a/sysdeps/x86_64/strtok.S +++ b/sysdeps/x86_64/strtok.S @@ -1,6 +1,6 @@ /* strtok (str, delim) -- Return next DELIM separated token from STR. For AMD x86-64. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Based on i686 version contributed by Ulrich Drepper , 1998. diff --git a/sysdeps/x86_64/sub_n.S b/sysdeps/x86_64/sub_n.S index 6e3cb7ab67..468125b56a 100644 --- a/sysdeps/x86_64/sub_n.S +++ b/sysdeps/x86_64/sub_n.S @@ -1,6 +1,6 @@ /* x86-64 __mpn_sub_n -- Add two limb vectors of the same length > 0 and store sum in a third limb vector. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/x86_64/submul_1.S b/sysdeps/x86_64/submul_1.S index 5c2d232b73..2e015beca3 100644 --- a/sysdeps/x86_64/submul_1.S +++ b/sysdeps/x86_64/submul_1.S @@ -1,6 +1,6 @@ /* x86-64 __mpn_submul_1 -- Multiply a limb vector with a limb and subtract the result from a second limb vector. - Copyright (C) 2003-2013 Free Software Foundation, Inc. + Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify diff --git a/sysdeps/x86_64/sysdep.h b/sysdeps/x86_64/sysdep.h index d0c5ca36fd..33268041f2 100644 --- a/sysdeps/x86_64/sysdep.h +++ b/sysdeps/x86_64/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for x86-64. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/tlsdesc.c b/sysdeps/x86_64/tlsdesc.c index 27c2b6b2de..0daa87f8fd 100644 --- a/sysdeps/x86_64/tlsdesc.c +++ b/sysdeps/x86_64/tlsdesc.c @@ -1,5 +1,5 @@ /* Manage TLS descriptors. x86_64 version. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/tst-audit.h b/sysdeps/x86_64/tst-audit.h index a59bfb88c4..43266573b1 100644 --- a/sysdeps/x86_64/tst-audit.h +++ b/sysdeps/x86_64/tst-audit.h @@ -1,6 +1,6 @@ /* Definitions for testing PLT entry/exit auditing. x86_64 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/tst-mallocalign1.c b/sysdeps/x86_64/tst-mallocalign1.c index 8652cc1fa5..6fac4ab4f3 100644 --- a/sysdeps/x86_64/tst-mallocalign1.c +++ b/sysdeps/x86_64/tst-mallocalign1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/tst-quad1.c b/sysdeps/x86_64/tst-quad1.c index 1934a463c8..23a6eca168 100644 --- a/sysdeps/x86_64/tst-quad1.c +++ b/sysdeps/x86_64/tst-quad1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/tst-quadmod1.S b/sysdeps/x86_64/tst-quadmod1.S index de4c275d6b..0f6a3b5d90 100644 --- a/sysdeps/x86_64/tst-quadmod1.S +++ b/sysdeps/x86_64/tst-quadmod1.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/tst-quadmod2.S b/sysdeps/x86_64/tst-quadmod2.S index f4ffc5d679..d1151384f0 100644 --- a/sysdeps/x86_64/tst-quadmod2.S +++ b/sysdeps/x86_64/tst-quadmod2.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2012-2013 Free Software Foundation, Inc. +/* Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/tst-stack-align.h b/sysdeps/x86_64/tst-stack-align.h index 2fe661aa67..633e98bf2e 100644 --- a/sysdeps/x86_64/tst-stack-align.h +++ b/sysdeps/x86_64/tst-stack-align.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/wcschr.S b/sysdeps/x86_64/wcschr.S index 3f098dc51c..faca759467 100644 --- a/sysdeps/x86_64/wcschr.S +++ b/sysdeps/x86_64/wcschr.S @@ -1,5 +1,5 @@ /* wcschr with SSSE3 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/wcscmp.S b/sysdeps/x86_64/wcscmp.S index d6b516bce1..0419b3f502 100644 --- a/sysdeps/x86_64/wcscmp.S +++ b/sysdeps/x86_64/wcscmp.S @@ -1,5 +1,5 @@ /* Optimized wcscmp for x86-64 with SSE2. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/wcslen.S b/sysdeps/x86_64/wcslen.S index 5927352437..366016cf63 100644 --- a/sysdeps/x86_64/wcslen.S +++ b/sysdeps/x86_64/wcslen.S @@ -1,5 +1,5 @@ /* Optimized wcslen for x86-64 with SSE2. - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/wcsrchr.S b/sysdeps/x86_64/wcsrchr.S index ea1e2e55da..f21559f351 100644 --- a/sysdeps/x86_64/wcsrchr.S +++ b/sysdeps/x86_64/wcsrchr.S @@ -1,5 +1,5 @@ /* wcsrchr with SSSE3 - Copyright (C) 2011-2013 Free Software Foundation, Inc. + Copyright (C) 2011-2014 Free Software Foundation, Inc. Contributed by Intel Corporation. This file is part of the GNU C Library. diff --git a/sysdeps/x86_64/x32/dl-machine.h b/sysdeps/x86_64/x32/dl-machine.h index 5582998142..3ee41cf4a4 100644 --- a/sysdeps/x86_64/x32/dl-machine.h +++ b/sysdeps/x86_64/x32/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. x32 version. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysdeps/x86_64/x32/gmp-mparam.h b/sysdeps/x86_64/x32/gmp-mparam.h index 55ca1e5de3..fbbdc656eb 100644 --- a/sysdeps/x86_64/x32/gmp-mparam.h +++ b/sysdeps/x86_64/x32/gmp-mparam.h @@ -1,6 +1,6 @@ /* gmp-mparam.h -- Compiler/machine parameter header file. -Copyright (C) 2012-2013 Free Software Foundation, Inc. +Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/sysdeps/x86_64/x32/sysdep.h b/sysdeps/x86_64/x32/sysdep.h index b73de06127..7461827c83 100644 --- a/sysdeps/x86_64/x32/sysdep.h +++ b/sysdeps/x86_64/x32/sysdep.h @@ -1,5 +1,5 @@ /* Assembler macros for x32. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysvipc/Makefile b/sysvipc/Makefile index cbbd5d8b81..dbf629aa92 100644 --- a/sysvipc/Makefile +++ b/sysvipc/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/sysvipc/ftok.c b/sysvipc/ftok.c index 2fd1978761..a0454f813a 100644 --- a/sysvipc/ftok.c +++ b/sysvipc/ftok.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/msgctl.c b/sysvipc/msgctl.c index ce14d665a4..40719c8da8 100644 --- a/sysvipc/msgctl.c +++ b/sysvipc/msgctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/msgget.c b/sysvipc/msgget.c index f3c597ebe3..f6073dab71 100644 --- a/sysvipc/msgget.c +++ b/sysvipc/msgget.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/msgrcv.c b/sysvipc/msgrcv.c index 937b71b319..a0d7b6ded7 100644 --- a/sysvipc/msgrcv.c +++ b/sysvipc/msgrcv.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/msgsnd.c b/sysvipc/msgsnd.c index e359ffe839..0b81b15232 100644 --- a/sysvipc/msgsnd.c +++ b/sysvipc/msgsnd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/semctl.c b/sysvipc/semctl.c index 8f52ff352b..5d0d560186 100644 --- a/sysvipc/semctl.c +++ b/sysvipc/semctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/semget.c b/sysvipc/semget.c index 348e56fb7e..efc1e2684b 100644 --- a/sysvipc/semget.c +++ b/sysvipc/semget.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/semop.c b/sysvipc/semop.c index 932c2f5e68..7c33c8f9b9 100644 --- a/sysvipc/semop.c +++ b/sysvipc/semop.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/semtimedop.c b/sysvipc/semtimedop.c index 5880874c3e..c12126fd90 100644 --- a/sysvipc/semtimedop.c +++ b/sysvipc/semtimedop.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/sysvipc/shmat.c b/sysvipc/shmat.c index a62d15c190..d64575570f 100644 --- a/sysvipc/shmat.c +++ b/sysvipc/shmat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/shmctl.c b/sysvipc/shmctl.c index 1cc3b88662..6d48069c8d 100644 --- a/sysvipc/shmctl.c +++ b/sysvipc/shmctl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/shmdt.c b/sysvipc/shmdt.c index a2b2b17574..8ca370e85d 100644 --- a/sysvipc/shmdt.c +++ b/sysvipc/shmdt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/shmget.c b/sysvipc/shmget.c index 84acdd4582..eed3613991 100644 --- a/sysvipc/shmget.c +++ b/sysvipc/shmget.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , August 1995. diff --git a/sysvipc/sys/ipc.h b/sysvipc/sys/ipc.h index 0a87aff91a..8d5d6ac5df 100644 --- a/sysvipc/sys/ipc.h +++ b/sysvipc/sys/ipc.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysvipc/sys/msg.h b/sysvipc/sys/msg.h index a0b38f0f9c..ce91240a59 100644 --- a/sysvipc/sys/msg.h +++ b/sysvipc/sys/msg.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysvipc/sys/sem.h b/sysvipc/sys/sem.h index bcbb0a3e7f..1f43a3a068 100644 --- a/sysvipc/sys/sem.h +++ b/sysvipc/sys/sem.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/sysvipc/sys/shm.h b/sysvipc/sys/shm.h index 0ba192bf5f..fa2a7a5dfd 100644 --- a/sysvipc/sys/shm.h +++ b/sysvipc/sys/shm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/Makefile b/termios/Makefile index 1bb5953a4d..446910dcdd 100644 --- a/termios/Makefile +++ b/termios/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/cfmakeraw.c b/termios/cfmakeraw.c index f34804cf6b..eaadd80b5e 100644 --- a/termios/cfmakeraw.c +++ b/termios/cfmakeraw.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/cfsetspeed.c b/termios/cfsetspeed.c index 4d7b082a3d..9ca7bc02c6 100644 --- a/termios/cfsetspeed.c +++ b/termios/cfsetspeed.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/speed.c b/termios/speed.c index 6f6692d005..ce1fc756f9 100644 --- a/termios/speed.c +++ b/termios/speed.c @@ -1,5 +1,5 @@ /* `struct termios' speed frobnication functions. 4.4 BSD/generic GNU version. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/tcdrain.c b/termios/tcdrain.c index ae9f278ba3..bf5fbb39ef 100644 --- a/termios/tcdrain.c +++ b/termios/tcdrain.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/tcflow.c b/termios/tcflow.c index ca4ed9ac08..0f1e655c4e 100644 --- a/termios/tcflow.c +++ b/termios/tcflow.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/tcflush.c b/termios/tcflush.c index 67c3b8da3e..a63d6180f9 100644 --- a/termios/tcflush.c +++ b/termios/tcflush.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/tcgetattr.c b/termios/tcgetattr.c index cc39cf7260..90049873df 100644 --- a/termios/tcgetattr.c +++ b/termios/tcgetattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/tcgetpgrp.c b/termios/tcgetpgrp.c index f25b67f3dc..a8e66c5a42 100644 --- a/termios/tcgetpgrp.c +++ b/termios/tcgetpgrp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/tcgetsid.c b/termios/tcgetsid.c index d10b610761..7eb96f4e13 100644 --- a/termios/tcgetsid.c +++ b/termios/tcgetsid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/tcsendbrk.c b/termios/tcsendbrk.c index 2e22526caf..90cf2e618a 100644 --- a/termios/tcsendbrk.c +++ b/termios/tcsendbrk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/tcsetattr.c b/termios/tcsetattr.c index c340d7c44d..93a2851e0f 100644 --- a/termios/tcsetattr.c +++ b/termios/tcsetattr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/tcsetpgrp.c b/termios/tcsetpgrp.c index d30e54d948..b6878f0b2a 100644 --- a/termios/tcsetpgrp.c +++ b/termios/tcsetpgrp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/termios/termios.h b/termios/termios.h index 3dc12b21ed..827ee23c0e 100644 --- a/termios/termios.h +++ b/termios/termios.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/test-skeleton.c b/test-skeleton.c index 013a838296..b08cfb596c 100644 --- a/test-skeleton.c +++ b/test-skeleton.c @@ -1,5 +1,5 @@ /* Skeleton for test programs. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/time/Makefile b/time/Makefile index 7f4a7fc6a8..227a4a0c44 100644 --- a/time/Makefile +++ b/time/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2013 Free Software Foundation, Inc. +# Copyright (C) 1991-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/time/adjtime.c b/time/adjtime.c index 10a83961b6..734a8002c7 100644 --- a/time/adjtime.c +++ b/time/adjtime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/alt_digit.c b/time/alt_digit.c index 7cd5119af0..bd13abdd9c 100644 --- a/time/alt_digit.c +++ b/time/alt_digit.c @@ -1,5 +1,5 @@ /* Helper functions used by strftime/strptime to handle alternate digits. - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/asctime.c b/time/asctime.c index b4bc78d86d..dfbafbff09 100644 --- a/time/asctime.c +++ b/time/asctime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/clock.c b/time/clock.c index acd624fd3e..dd09fb55e0 100644 --- a/time/clock.c +++ b/time/clock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/ctime.c b/time/ctime.c index 913d9b60cb..da5be5c379 100644 --- a/time/ctime.c +++ b/time/ctime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/ctime_r.c b/time/ctime_r.c index 41e9f19397..d1f9e6b6fe 100644 --- a/time/ctime_r.c +++ b/time/ctime_r.c @@ -1,5 +1,5 @@ /* Return in BUF representation of time T in form of asctime - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/time/difftime.c b/time/difftime.c index 007c9c08f7..056a27c401 100644 --- a/time/difftime.c +++ b/time/difftime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/dysize.c b/time/dysize.c index 05a988a3b1..5b15242ddc 100644 --- a/time/dysize.c +++ b/time/dysize.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/era.c b/time/era.c index d10af8b1a5..fd311c625f 100644 --- a/time/era.c +++ b/time/era.c @@ -1,5 +1,5 @@ /* Helper functions used by strftime/strptime to handle locale-specific "eras". - Copyright (C) 1995-2013 Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/ftime.c b/time/ftime.c index 304b6a8369..557f4c5195 100644 --- a/time/ftime.c +++ b/time/ftime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/getdate.c b/time/getdate.c index eadebc348b..4754d12d28 100644 --- a/time/getdate.c +++ b/time/getdate.c @@ -1,5 +1,5 @@ /* Convert a string representation of time to a time value. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Mark Kettenis , 1997. diff --git a/time/getitimer.c b/time/getitimer.c index a334304c9f..926a4857f6 100644 --- a/time/getitimer.c +++ b/time/getitimer.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/gettimeofday.c b/time/gettimeofday.c index e31453dcdf..a4d3cd87fa 100644 --- a/time/gettimeofday.c +++ b/time/gettimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/gmtime.c b/time/gmtime.c index 08e67d98e4..7c618917ff 100644 --- a/time/gmtime.c +++ b/time/gmtime.c @@ -1,5 +1,5 @@ /* Convert `time_t' to `struct tm' in UTC. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/lc-time-cleanup.c b/time/lc-time-cleanup.c index fc4350849c..8c5599bb20 100644 --- a/time/lc-time-cleanup.c +++ b/time/lc-time-cleanup.c @@ -1,5 +1,5 @@ /* Cleanup code for data structures kept by strftime/strptime helper functions. - Copyright (C) 2002-2013 Free Software Foundation, Inc. + Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/localtime.c b/time/localtime.c index 88487f078d..d6c5ef9a7e 100644 --- a/time/localtime.c +++ b/time/localtime.c @@ -1,5 +1,5 @@ /* Convert `time_t' to `struct tm' in local time zone. - Copyright (C) 1991-2013 Free Software Foundation, Inc. + Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/mktime.c b/time/mktime.c index e75132c2e4..963e4b985a 100644 --- a/time/mktime.c +++ b/time/mktime.c @@ -1,5 +1,5 @@ /* Convert a 'struct tm' to a time_t value. - Copyright (C) 1993-2013 Free Software Foundation, Inc. + Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Eggert . diff --git a/time/offtime.c b/time/offtime.c index 035f71c153..f5a270d85b 100644 --- a/time/offtime.c +++ b/time/offtime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/setitimer.c b/time/setitimer.c index 441352d286..4e7609f7b7 100644 --- a/time/setitimer.c +++ b/time/setitimer.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/settimeofday.c b/time/settimeofday.c index b9bee8bbd1..a523ab79fd 100644 --- a/time/settimeofday.c +++ b/time/settimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/stime.c b/time/stime.c index 907b86d2bc..f46c695b1a 100644 --- a/time/stime.c +++ b/time/stime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2013 Free Software Foundation, Inc. +/* Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/strftime.c b/time/strftime.c index 5c02045b05..8134d75de7 100644 --- a/time/strftime.c +++ b/time/strftime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/strftime_l.c b/time/strftime_l.c index cf7d1a7702..dfb7b4c483 100644 --- a/time/strftime_l.c +++ b/time/strftime_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/strptime.c b/time/strptime.c index aa6507c158..81cdbbdd30 100644 --- a/time/strptime.c +++ b/time/strptime.c @@ -1,5 +1,5 @@ /* Convert a string representation of time to a time value. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/time/strptime_l.c b/time/strptime_l.c index b9a8e144fe..8fe623d579 100644 --- a/time/strptime_l.c +++ b/time/strptime_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/sys/time.h b/time/sys/time.h index 52edf4174b..c01b23bc66 100644 --- a/time/sys/time.h +++ b/time/sys/time.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/sys/timeb.h b/time/sys/timeb.h index 59994e0b04..3c36f02871 100644 --- a/time/sys/timeb.h +++ b/time/sys/timeb.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1994-2013 Free Software Foundation, Inc. +/* Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/test_time.c b/time/test_time.c index 361763a9a0..57a2de922f 100644 --- a/time/test_time.c +++ b/time/test_time.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/time.c b/time/time.c index e6dd9d9b21..cacccf9ca2 100644 --- a/time/time.c +++ b/time/time.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/time.h b/time/time.h index ac20942599..9777dd9684 100644 --- a/time/time.h +++ b/time/time.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/timegm.c b/time/timegm.c index d5d8543b49..212bfa7327 100644 --- a/time/timegm.c +++ b/time/timegm.c @@ -1,6 +1,6 @@ /* Convert UTC calendar time to simple time. Like mktime but assumes UTC. - Copyright (C) 1994-2013 Free Software Foundation, Inc. + Copyright (C) 1994-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/timespec_get.c b/time/timespec_get.c index 1d72650d59..ece0ca0050 100644 --- a/time/timespec_get.c +++ b/time/timespec_get.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/tst-getdate.c b/time/tst-getdate.c index dc8ecf413a..fd879239c3 100644 --- a/time/tst-getdate.c +++ b/time/tst-getdate.c @@ -1,5 +1,5 @@ /* Test for getdate. - Copyright (C) 2000-2013 Free Software Foundation, Inc. + Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 2000. diff --git a/time/tst-strptime-whitespace.c b/time/tst-strptime-whitespace.c index d2ceca35d2..692794876d 100644 --- a/time/tst-strptime-whitespace.c +++ b/time/tst-strptime-whitespace.c @@ -1,6 +1,6 @@ /* Verify that strptime accepts arbitrary whitespace between tokens. - Copyright (C) 2013 Free Software Foundation, Inc. + Copyright (C) 2013-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/tst-strptime.c b/time/tst-strptime.c index 5c5fa7b805..42e99bd469 100644 --- a/time/tst-strptime.c +++ b/time/tst-strptime.c @@ -1,5 +1,5 @@ /* Test for strptime. - Copyright (C) 1998-2013 Free Software Foundation, Inc. + Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/time/tzfile.c b/time/tzfile.c index 3ea3051f4c..deef58ef34 100644 --- a/time/tzfile.c +++ b/time/tzfile.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/tzset.c b/time/tzset.c index fb2dccd55d..bfcd943436 100644 --- a/time/tzset.c +++ b/time/tzset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/wcsftime.c b/time/wcsftime.c index 9a1ab8a0e6..0ed3882f14 100644 --- a/time/wcsftime.c +++ b/time/wcsftime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/time/wcsftime_l.c b/time/wcsftime_l.c index 2200fc17eb..8185d91d38 100644 --- a/time/wcsftime_l.c +++ b/time/wcsftime_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/timezone/Makefile b/timezone/Makefile index ceb4c4581e..f5fb4241e0 100644 --- a/timezone/Makefile +++ b/timezone/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/timezone/tst-timezone.c b/timezone/tst-timezone.c index 309dd875e9..b5edfff5f8 100644 --- a/timezone/tst-timezone.c +++ b/timezone/tst-timezone.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1998. diff --git a/wcsmbs/Makefile b/wcsmbs/Makefile index 6ea2c09a94..c139b4fd30 100644 --- a/wcsmbs/Makefile +++ b/wcsmbs/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/bits/wchar-ldbl.h b/wcsmbs/bits/wchar-ldbl.h index 20d9db2e08..45453be10c 100644 --- a/wcsmbs/bits/wchar-ldbl.h +++ b/wcsmbs/bits/wchar-ldbl.h @@ -1,5 +1,5 @@ /* -mlong-double-64 compatibility mode for functions. - Copyright (C) 2006-2013 Free Software Foundation, Inc. + Copyright (C) 2006-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/bits/wchar2.h b/wcsmbs/bits/wchar2.h index abce71c74e..29ac6b31d5 100644 --- a/wcsmbs/bits/wchar2.h +++ b/wcsmbs/bits/wchar2.h @@ -1,5 +1,5 @@ /* Checking macros for wchar functions. - Copyright (C) 2005-2013 Free Software Foundation, Inc. + Copyright (C) 2005-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/btowc.c b/wcsmbs/btowc.c index 0b1c87b51c..289736ff92 100644 --- a/wcsmbs/btowc.c +++ b/wcsmbs/btowc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/c16rtomb.c b/wcsmbs/c16rtomb.c index 91b18b0d2e..ce255afd80 100644 --- a/wcsmbs/c16rtomb.c +++ b/wcsmbs/c16rtomb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/wcsmbs/isoc99_fwscanf.c b/wcsmbs/isoc99_fwscanf.c index 2bbd617c3b..b82f40bc1c 100644 --- a/wcsmbs/isoc99_fwscanf.c +++ b/wcsmbs/isoc99_fwscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/isoc99_swscanf.c b/wcsmbs/isoc99_swscanf.c index 09e63c5f51..d5e1d19746 100644 --- a/wcsmbs/isoc99_swscanf.c +++ b/wcsmbs/isoc99_swscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/isoc99_vfwscanf.c b/wcsmbs/isoc99_vfwscanf.c index c073bddddf..6c7851c3db 100644 --- a/wcsmbs/isoc99_vfwscanf.c +++ b/wcsmbs/isoc99_vfwscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/isoc99_vswscanf.c b/wcsmbs/isoc99_vswscanf.c index 4157133efd..108d05c947 100644 --- a/wcsmbs/isoc99_vswscanf.c +++ b/wcsmbs/isoc99_vswscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993-2013 Free Software Foundation, Inc. +/* Copyright (C) 1993-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/isoc99_vwscanf.c b/wcsmbs/isoc99_vwscanf.c index 762fe0f449..ae7f2afd25 100644 --- a/wcsmbs/isoc99_vwscanf.c +++ b/wcsmbs/isoc99_vwscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/isoc99_wscanf.c b/wcsmbs/isoc99_wscanf.c index fd5aacb259..898bd1727a 100644 --- a/wcsmbs/isoc99_wscanf.c +++ b/wcsmbs/isoc99_wscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/mbrlen.c b/wcsmbs/mbrlen.c index e6383aaf64..c484dc056c 100644 --- a/wcsmbs/mbrlen.c +++ b/wcsmbs/mbrlen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, diff --git a/wcsmbs/mbrtoc16.c b/wcsmbs/mbrtoc16.c index 24c7fed65d..9fa31bc568 100644 --- a/wcsmbs/mbrtoc16.c +++ b/wcsmbs/mbrtoc16.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2011. diff --git a/wcsmbs/mbrtowc.c b/wcsmbs/mbrtowc.c index 64764454da..6eeaa55be6 100644 --- a/wcsmbs/mbrtowc.c +++ b/wcsmbs/mbrtowc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/mbsinit.c b/wcsmbs/mbsinit.c index 559511b6eb..23f822d199 100644 --- a/wcsmbs/mbsinit.c +++ b/wcsmbs/mbsinit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/mbsnrtowcs.c b/wcsmbs/mbsnrtowcs.c index 4792bd4d15..f91e580e0d 100644 --- a/wcsmbs/mbsnrtowcs.c +++ b/wcsmbs/mbsnrtowcs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/mbsrtowcs.c b/wcsmbs/mbsrtowcs.c index 00eccc9e52..b8f0d582fb 100644 --- a/wcsmbs/mbsrtowcs.c +++ b/wcsmbs/mbsrtowcs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/mbsrtowcs_l.c b/wcsmbs/mbsrtowcs_l.c index 1469fca3c4..08ff3c9ced 100644 --- a/wcsmbs/mbsrtowcs_l.c +++ b/wcsmbs/mbsrtowcs_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2013 Free Software Foundation, Inc. +/* Copyright (C) 2002-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2002. diff --git a/wcsmbs/test-wcschr-ifunc.c b/wcsmbs/test-wcschr-ifunc.c index cd2055683d..cf10c95d5a 100644 --- a/wcsmbs/test-wcschr-ifunc.c +++ b/wcsmbs/test-wcschr-ifunc.c @@ -1,5 +1,5 @@ /* Test and measure IFUNC implementations of wcschr function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/test-wcscmp-ifunc.c b/wcsmbs/test-wcscmp-ifunc.c index 7105d60c71..94bfeadd53 100644 --- a/wcsmbs/test-wcscmp-ifunc.c +++ b/wcsmbs/test-wcscmp-ifunc.c @@ -1,5 +1,5 @@ /* Test and measure IFUNC implementations of wcscmp function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/test-wcscpy-ifunc.c b/wcsmbs/test-wcscpy-ifunc.c index 1611e63709..7478908f77 100644 --- a/wcsmbs/test-wcscpy-ifunc.c +++ b/wcsmbs/test-wcscpy-ifunc.c @@ -1,5 +1,5 @@ /* Test and measure IFUNC implementations of wcscpy function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/test-wcslen-ifunc.c b/wcsmbs/test-wcslen-ifunc.c index a7f569256a..974ea18ee2 100644 --- a/wcsmbs/test-wcslen-ifunc.c +++ b/wcsmbs/test-wcslen-ifunc.c @@ -1,5 +1,5 @@ /* Test and measure IFUNC implementations of wcslen function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/test-wcsrchr-ifunc.c b/wcsmbs/test-wcsrchr-ifunc.c index 8915bc348c..16e3eb5f95 100644 --- a/wcsmbs/test-wcsrchr-ifunc.c +++ b/wcsmbs/test-wcsrchr-ifunc.c @@ -1,5 +1,5 @@ /* Test and measure IFUNC implementations of wcsrchr function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/test-wmemcmp-ifunc.c b/wcsmbs/test-wmemcmp-ifunc.c index 13f57eb941..da1a71d496 100644 --- a/wcsmbs/test-wmemcmp-ifunc.c +++ b/wcsmbs/test-wmemcmp-ifunc.c @@ -1,5 +1,5 @@ /* Test and measure IFUNC implementations of wmemcmp function. - Copyright (C) 2012-2013 Free Software Foundation, Inc. + Copyright (C) 2012-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/tst-btowc.c b/wcsmbs/tst-btowc.c index ec27ee2ed7..d793622771 100644 --- a/wcsmbs/tst-btowc.c +++ b/wcsmbs/tst-btowc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/wcsmbs/tst-mbrtowc.c b/wcsmbs/tst-mbrtowc.c index 990635f1db..3e1eb728e8 100644 --- a/wcsmbs/tst-mbrtowc.c +++ b/wcsmbs/tst-mbrtowc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/wcsmbs/tst-mbsrtowcs.c b/wcsmbs/tst-mbsrtowcs.c index 9392751d0d..8d7e2cbeef 100644 --- a/wcsmbs/tst-mbsrtowcs.c +++ b/wcsmbs/tst-mbsrtowcs.c @@ -1,5 +1,5 @@ /* Test NUL handling of mbsrtowcs. - Copyright (C) 2004-2013 Free Software Foundation, Inc. + Copyright (C) 2004-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2004. diff --git a/wcsmbs/tst-wcpncpy.c b/wcsmbs/tst-wcpncpy.c index 06e552edf9..74765e755e 100644 --- a/wcsmbs/tst-wcpncpy.c +++ b/wcsmbs/tst-wcpncpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003-2013 Free Software Foundation, Inc. +/* Copyright (C) 2003-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2003. diff --git a/wcsmbs/tst-wcrtomb.c b/wcsmbs/tst-wcrtomb.c index 3090689d80..3f052f3b2d 100644 --- a/wcsmbs/tst-wcrtomb.c +++ b/wcsmbs/tst-wcrtomb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2000. diff --git a/wcsmbs/tst-wcsnlen.c b/wcsmbs/tst-wcsnlen.c index 580c954954..60e64ad657 100644 --- a/wcsmbs/tst-wcsnlen.c +++ b/wcsmbs/tst-wcsnlen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/wcsmbs/uchar.h b/wcsmbs/uchar.h index a1e4461ae3..c12d77ee2e 100644 --- a/wcsmbs/uchar.h +++ b/wcsmbs/uchar.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2013 Free Software Foundation, Inc. +/* Copyright (C) 2011-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h index e91558683e..29340fdaa2 100644 --- a/wcsmbs/wchar.h +++ b/wcsmbs/wchar.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/wcpcpy.c b/wcsmbs/wcpcpy.c index 6f952b45d7..7831a67acd 100644 --- a/wcsmbs/wcpcpy.c +++ b/wcsmbs/wcpcpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcpncpy.c b/wcsmbs/wcpncpy.c index 634d3350a0..e4c4009ff4 100644 --- a/wcsmbs/wcpncpy.c +++ b/wcsmbs/wcpncpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcrtomb.c b/wcsmbs/wcrtomb.c index 3be834831e..be93877ccc 100644 --- a/wcsmbs/wcrtomb.c +++ b/wcsmbs/wcrtomb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcscasecmp.c b/wcsmbs/wcscasecmp.c index b2d67cc550..3605b9423b 100644 --- a/wcsmbs/wcscasecmp.c +++ b/wcsmbs/wcscasecmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2013 Free Software Foundation, Inc. +/* Copyright (C) 1991-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/wcscasecmp_l.c b/wcsmbs/wcscasecmp_l.c index 376567323f..58c2b070a4 100644 --- a/wcsmbs/wcscasecmp_l.c +++ b/wcsmbs/wcscasecmp_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/wcsmbs/wcscat.c b/wcsmbs/wcscat.c index 7ab7969f57..401528fff4 100644 --- a/wcsmbs/wcscat.c +++ b/wcsmbs/wcscat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcschr.c b/wcsmbs/wcschr.c index 22872eead3..1a35b8044d 100644 --- a/wcsmbs/wcschr.c +++ b/wcsmbs/wcschr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/wcschrnul.c b/wcsmbs/wcschrnul.c index d6b1231113..9d88955842 100644 --- a/wcsmbs/wcschrnul.c +++ b/wcsmbs/wcschrnul.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/wcscmp.c b/wcsmbs/wcscmp.c index 3da86fcb50..91ae717c6a 100644 --- a/wcsmbs/wcscmp.c +++ b/wcsmbs/wcscmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcscoll.c b/wcsmbs/wcscoll.c index 99dcf91734..33194956cd 100644 --- a/wcsmbs/wcscoll.c +++ b/wcsmbs/wcscoll.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcscoll_l.c b/wcsmbs/wcscoll_l.c index c5b775544a..74e2e39eb8 100644 --- a/wcsmbs/wcscoll_l.c +++ b/wcsmbs/wcscoll_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcscpy.c b/wcsmbs/wcscpy.c index 50d9fef97a..8934695356 100644 --- a/wcsmbs/wcscpy.c +++ b/wcsmbs/wcscpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcscspn.c b/wcsmbs/wcscspn.c index a25da0f1e0..89bccf8168 100644 --- a/wcsmbs/wcscspn.c +++ b/wcsmbs/wcscspn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcsdup.c b/wcsmbs/wcsdup.c index a8d482eb36..bf7ffaefd9 100644 --- a/wcsmbs/wcsdup.c +++ b/wcsmbs/wcsdup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcslen.c b/wcsmbs/wcslen.c index 74553ca81e..41621a0e35 100644 --- a/wcsmbs/wcslen.c +++ b/wcsmbs/wcslen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcsmbsload.c b/wcsmbs/wcsmbsload.c index 52e65a0384..8267faf9c4 100644 --- a/wcsmbs/wcsmbsload.c +++ b/wcsmbs/wcsmbsload.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/wcsmbs/wcsmbsload.h b/wcsmbs/wcsmbsload.h index 2402776a38..a709428631 100644 --- a/wcsmbs/wcsmbsload.h +++ b/wcsmbs/wcsmbsload.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/wcsmbs/wcsncase.c b/wcsmbs/wcsncase.c index b01b02ecce..88b97e377a 100644 --- a/wcsmbs/wcsncase.c +++ b/wcsmbs/wcsncase.c @@ -1,6 +1,6 @@ /* Compare at most N wide characters of two strings without taking care for the case. - Copyright (C) 1992-2013 Free Software Foundation, Inc. + Copyright (C) 1992-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/wcsncase_l.c b/wcsmbs/wcsncase_l.c index 8e68d79359..31b0a88656 100644 --- a/wcsmbs/wcsncase_l.c +++ b/wcsmbs/wcsncase_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997-2013 Free Software Foundation, Inc. +/* Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/wcsmbs/wcsncat.c b/wcsmbs/wcsncat.c index 3450956cc0..27f565d750 100644 --- a/wcsmbs/wcsncat.c +++ b/wcsmbs/wcsncat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcsncmp.c b/wcsmbs/wcsncmp.c index 35ab2c95f8..5d412aa8e7 100644 --- a/wcsmbs/wcsncmp.c +++ b/wcsmbs/wcsncmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcsncpy.c b/wcsmbs/wcsncpy.c index a88f8fc1d4..e6abf7dbb0 100644 --- a/wcsmbs/wcsncpy.c +++ b/wcsmbs/wcsncpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcsnlen.c b/wcsmbs/wcsnlen.c index f5206a9ed4..81f588d51d 100644 --- a/wcsmbs/wcsnlen.c +++ b/wcsmbs/wcsnlen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-2013 Free Software Foundation, Inc. +/* Copyright (C) 1998-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. diff --git a/wcsmbs/wcsnrtombs.c b/wcsmbs/wcsnrtombs.c index 58aeec3ca8..6fe718dd26 100644 --- a/wcsmbs/wcsnrtombs.c +++ b/wcsmbs/wcsnrtombs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcspbrk.c b/wcsmbs/wcspbrk.c index 5a3438fac6..dd3c8e38a9 100644 --- a/wcsmbs/wcspbrk.c +++ b/wcsmbs/wcspbrk.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, diff --git a/wcsmbs/wcsrchr.c b/wcsmbs/wcsrchr.c index a8e7c5e73f..ebe3d5da9c 100644 --- a/wcsmbs/wcsrchr.c +++ b/wcsmbs/wcsrchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, diff --git a/wcsmbs/wcsrtombs.c b/wcsmbs/wcsrtombs.c index e0bdab57a4..24e249c6eb 100644 --- a/wcsmbs/wcsrtombs.c +++ b/wcsmbs/wcsrtombs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcsspn.c b/wcsmbs/wcsspn.c index 709b61b39c..94c0bfec6a 100644 --- a/wcsmbs/wcsspn.c +++ b/wcsmbs/wcsspn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcsstr.c b/wcsmbs/wcsstr.c index fe984d141a..4e9221a6ba 100644 --- a/wcsmbs/wcsstr.c +++ b/wcsmbs/wcsstr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wcsmbs/wcstod.c b/wcsmbs/wcstod.c index 6e214c8808..12e3dfef8b 100644 --- a/wcsmbs/wcstod.c +++ b/wcsmbs/wcstod.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcstod_l.c b/wcsmbs/wcstod_l.c index def0853d81..2f5a9159cf 100644 --- a/wcsmbs/wcstod_l.c +++ b/wcsmbs/wcstod_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/wcsmbs/wcstof.c b/wcsmbs/wcstof.c index 49cda65df6..0508ebf694 100644 --- a/wcsmbs/wcstof.c +++ b/wcsmbs/wcstof.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcstof_l.c b/wcsmbs/wcstof_l.c index 95f56f07d1..b90c9f1dc7 100644 --- a/wcsmbs/wcstof_l.c +++ b/wcsmbs/wcstof_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/wcsmbs/wcstok.c b/wcsmbs/wcstok.c index 171a97b725..21a1089132 100644 --- a/wcsmbs/wcstok.c +++ b/wcsmbs/wcstok.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-2013 Free Software Foundation, Inc. +/* Copyright (C) 1995-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. diff --git a/wcsmbs/wcstol.c b/wcsmbs/wcstol.c index 43e4d2979a..6d3a6f43a5 100644 --- a/wcsmbs/wcstol.c +++ b/wcsmbs/wcstol.c @@ -1,5 +1,5 @@ /* Function to parse a `long int' from text. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcstol_l.c b/wcsmbs/wcstol_l.c index f9fb119082..8b781b98b2 100644 --- a/wcsmbs/wcstol_l.c +++ b/wcsmbs/wcstol_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/wcsmbs/wcstold.c b/wcsmbs/wcstold.c index 6153e6d433..a5afefb18b 100644 --- a/wcsmbs/wcstold.c +++ b/wcsmbs/wcstold.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcstold_l.c b/wcsmbs/wcstold_l.c index 2d2fdafd98..c18264c1c1 100644 --- a/wcsmbs/wcstold_l.c +++ b/wcsmbs/wcstold_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/wcsmbs/wcstoll.c b/wcsmbs/wcstoll.c index 7d80779fa4..dcc5a38725 100644 --- a/wcsmbs/wcstoll.c +++ b/wcsmbs/wcstoll.c @@ -1,5 +1,5 @@ /* Function to parse a `long long int' from text. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcstoll_l.c b/wcsmbs/wcstoll_l.c index 6dee61b216..adaa90e5ed 100644 --- a/wcsmbs/wcstoll_l.c +++ b/wcsmbs/wcstoll_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/wcsmbs/wcstoul.c b/wcsmbs/wcstoul.c index c799479d4e..2f549c5e04 100644 --- a/wcsmbs/wcstoul.c +++ b/wcsmbs/wcstoul.c @@ -1,5 +1,5 @@ /* Function to parse an `unsigned long int' from text. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcstoul_l.c b/wcsmbs/wcstoul_l.c index 5fe3a6c9db..ec2de24c77 100644 --- a/wcsmbs/wcstoul_l.c +++ b/wcsmbs/wcstoul_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/wcsmbs/wcstoull.c b/wcsmbs/wcstoull.c index c6de524a4a..f03eeb64f7 100644 --- a/wcsmbs/wcstoull.c +++ b/wcsmbs/wcstoull.c @@ -1,5 +1,5 @@ /* Function to parse an `unsigned long long int' from text. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcstoull_l.c b/wcsmbs/wcstoull_l.c index c8d6198988..f19f56d7d6 100644 --- a/wcsmbs/wcstoull_l.c +++ b/wcsmbs/wcstoull_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. diff --git a/wcsmbs/wcswidth.c b/wcsmbs/wcswidth.c index 164ab076db..c5d2f21c0a 100644 --- a/wcsmbs/wcswidth.c +++ b/wcsmbs/wcswidth.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcsxfrm.c b/wcsmbs/wcsxfrm.c index 1fd2eec356..8a4a79fb8e 100644 --- a/wcsmbs/wcsxfrm.c +++ b/wcsmbs/wcsxfrm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcsxfrm_l.c b/wcsmbs/wcsxfrm_l.c index bb853703a6..f3f3f502d9 100644 --- a/wcsmbs/wcsxfrm_l.c +++ b/wcsmbs/wcsxfrm_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wctob.c b/wcsmbs/wctob.c index f494cdf871..24c33cec06 100644 --- a/wcsmbs/wctob.c +++ b/wcsmbs/wctob.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcwidth.c b/wcsmbs/wcwidth.c index 99cad54eb7..436bfecdbf 100644 --- a/wcsmbs/wcwidth.c +++ b/wcsmbs/wcwidth.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wcwidth.h b/wcsmbs/wcwidth.h index 2038990e04..22c499a630 100644 --- a/wcsmbs/wcwidth.h +++ b/wcsmbs/wcwidth.h @@ -1,5 +1,5 @@ /* Internal header containing implementation of wcwidth() function. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wmemchr.c b/wcsmbs/wmemchr.c index 237765a2f1..e1b3b762bb 100644 --- a/wcsmbs/wmemchr.c +++ b/wcsmbs/wmemchr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wmemcmp.c b/wcsmbs/wmemcmp.c index 37b84b5f38..620b815a14 100644 --- a/wcsmbs/wmemcmp.c +++ b/wcsmbs/wmemcmp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wmemcpy.c b/wcsmbs/wmemcpy.c index 90dcac1f74..e931fd9a1a 100644 --- a/wcsmbs/wmemcpy.c +++ b/wcsmbs/wmemcpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wcsmbs/wmemmove.c b/wcsmbs/wmemmove.c index c051bf5cb0..a817ada868 100644 --- a/wcsmbs/wmemmove.c +++ b/wcsmbs/wmemmove.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, diff --git a/wcsmbs/wmempcpy.c b/wcsmbs/wmempcpy.c index 99feaedfe8..f8af89d5af 100644 --- a/wcsmbs/wmempcpy.c +++ b/wcsmbs/wmempcpy.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1999. diff --git a/wcsmbs/wmemset.c b/wcsmbs/wmemset.c index fbec915e8a..c49954531e 100644 --- a/wcsmbs/wmemset.c +++ b/wcsmbs/wmemset.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wctype/Makefile b/wctype/Makefile index 9db59ce123..073cc0baee 100644 --- a/wctype/Makefile +++ b/wctype/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or diff --git a/wctype/iswctype.c b/wctype/iswctype.c index 4b77c83abf..1fa00138e9 100644 --- a/wctype/iswctype.c +++ b/wctype/iswctype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper, . diff --git a/wctype/iswctype_l.c b/wctype/iswctype_l.c index f764b1489a..ad814873c4 100644 --- a/wctype/iswctype_l.c +++ b/wctype/iswctype_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wctype/test_wcfuncs.c b/wctype/test_wcfuncs.c index a21a7f12ec..e958d7566f 100644 --- a/wctype/test_wcfuncs.c +++ b/wctype/test_wcfuncs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2013 Free Software Foundation, Inc. +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wctype/test_wctype.c b/wctype/test_wctype.c index 6f9fd0cec1..21926ac507 100644 --- a/wctype/test_wctype.c +++ b/wctype/test_wctype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wctype/towctrans.c b/wctype/towctrans.c index c5ea3e2c10..90102d9365 100644 --- a/wctype/towctrans.c +++ b/wctype/towctrans.c @@ -1,5 +1,5 @@ /* Map wide character using given mapping. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wctype/towctrans_l.c b/wctype/towctrans_l.c index fc6e4a84d3..90e6f06963 100644 --- a/wctype/towctrans_l.c +++ b/wctype/towctrans_l.c @@ -1,5 +1,5 @@ /* Map wide character using given mapping and locale. - Copyright (C) 1996-2013 Free Software Foundation, Inc. + Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wctype/wcfuncs.c b/wctype/wcfuncs.c index d825b788fe..e2f4e13adc 100644 --- a/wctype/wcfuncs.c +++ b/wctype/wcfuncs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wctype/wcfuncs_l.c b/wctype/wcfuncs_l.c index 61a1e1cc1b..8c0a611fea 100644 --- a/wctype/wcfuncs_l.c +++ b/wctype/wcfuncs_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wctype/wchar-lookup.h b/wctype/wchar-lookup.h index 472e240fa8..3f6b75889a 100644 --- a/wctype/wchar-lookup.h +++ b/wctype/wchar-lookup.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2000. diff --git a/wctype/wctrans.c b/wctype/wctrans.c index 8dbe71143f..4010eda085 100644 --- a/wctype/wctrans.c +++ b/wctype/wctrans.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wctype/wctrans_l.c b/wctype/wctrans_l.c index e232b10e33..e756223c94 100644 --- a/wctype/wctrans_l.c +++ b/wctype/wctrans_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wctype/wctype.c b/wctype/wctype.c index 2dfb00264a..1198d65868 100644 --- a/wctype/wctype.c +++ b/wctype/wctype.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. diff --git a/wctype/wctype.h b/wctype/wctype.h index 6eb68cf6e5..a307f05721 100644 --- a/wctype/wctype.h +++ b/wctype/wctype.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or diff --git a/wctype/wctype_l.c b/wctype/wctype_l.c index 3199f68a6e..f694f75386 100644 --- a/wctype/wctype_l.c +++ b/wctype/wctype_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-2013 Free Software Foundation, Inc. +/* Copyright (C) 1996-2014 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. -- cgit v1.2.3 From 97b9a0090e296f6c90fc81df1031fb119139d6d3 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Wed, 1 Jan 2014 14:34:38 +0000 Subject: Regenerate x86 / x86_64 ulps. --- ChangeLog | 5 + sysdeps/i386/fpu/libm-test-ulps | 3014 ++---------------------------------- sysdeps/x86_64/fpu/libm-test-ulps | 3077 +------------------------------------ 3 files changed, 161 insertions(+), 5935 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index c2c47d8fd9..7f4015758c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-01-01 Joseph Myers + + * sysdeps/i386/fpu/libm-test-ulps: Regenerated. + * sysdeps/x86_64/fpu/libm-test-ulps: Likewise. + 2014-01-01 Allan McRae * scripts/update-copyrights: Update configure input file suffix. diff --git a/sysdeps/i386/fpu/libm-test-ulps b/sysdeps/i386/fpu/libm-test-ulps index ae0a303d01..440be0d287 100644 --- a/sysdeps/i386/fpu/libm-test-ulps +++ b/sysdeps/i386/fpu/libm-test-ulps @@ -1,39 +1,11 @@ # Begin of automatic generation # acos -Test "acos (0.75)": -ildouble: 1 -ldouble: 1 Test "acos (0xcp-4)": ildouble: 1 ldouble: 1 # acos_downward -Test "acos_downward (-0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_downward (-0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "acos_downward (-1)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_downward (0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_downward (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "acos_downward (0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 @@ -56,31 +28,6 @@ ildouble: 1 ldouble: 1 # acos_towardzero -Test "acos_towardzero (-0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_towardzero (-0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "acos_towardzero (-1)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_towardzero (0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_towardzero (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "acos_towardzero (0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 @@ -98,21 +45,6 @@ ildouble: 1 ldouble: 1 # acos_upward -Test "acos_upward (-0)": -double: 1 -idouble: 1 -Test "acos_upward (-0.5)": -ildouble: 1 -ldouble: 1 -Test "acos_upward (-1)": -double: 1 -idouble: 1 -Test "acos_upward (0)": -double: 1 -idouble: 1 -Test "acos_upward (0.5)": -ildouble: 1 -ldouble: 1 Test "acos_upward (0xcp-4)": ildouble: 1 ldouble: 1 @@ -158,26 +90,8 @@ ldouble: 1 Test "asin_downward (-0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "asin_downward (-1.0)": -double: 1 -idouble: 1 -Test "asin_downward (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "asin_downward (1.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # asin_towardzero -Test "asin_towardzero (-0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "asin_towardzero (-0x2p-16384)": ildouble: 1 ldouble: 1 @@ -216,28 +130,8 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "asin_towardzero (-1.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "asin_towardzero (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "asin_towardzero (1.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # asin_upward -Test "asin_upward (-0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "asin_upward (-0x2p-16384)": ildouble: 1 ldouble: 1 @@ -281,11 +175,6 @@ ldouble: 1 Test "asin_upward (-0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "asin_upward (-1.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "asin_upward (0x2p-16384)": ildouble: 1 ldouble: 1 @@ -327,9 +216,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "asin_upward (1.0)": -double: 1 -idouble: 1 # asinh Test "asinh (0x1p+100)": @@ -350,9 +236,6 @@ ldouble: 1 Test "atanh (-0xcp-4)": ildouble: 2 ldouble: 1 -Test "atanh (0.75)": -ildouble: 2 -ldouble: 1 Test "atanh (0x4p-12)": ildouble: 1 Test "atanh (0x4p-4)": @@ -449,9 +332,7 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: cacos (-0.5 + 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Imaginary part of: cacos (-0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -475,9 +356,7 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: cacos (-0.5 - 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Imaginary part of: cacos (-0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -493,13 +372,9 @@ ldouble: 1 Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -512,12 +387,6 @@ ldouble: 1 Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffp0 + 0x1p-23 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffp0 - 0x1p-23 i)": -double: 1 -idouble: 1 Test "Imaginary part of: cacos (-0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 2 ldouble: 2 @@ -656,9 +525,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (-0x1p-23 - 0.5 i)": double: 1 float: 1 @@ -669,9 +535,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (-0x1p-52 + 0.5 i)": double: 1 float: 1 @@ -710,9 +573,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 + 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -724,9 +584,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 - 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -804,9 +661,7 @@ double: 1 idouble: 1 Test "Imaginary part of: cacos (0.5 + 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Real part of: cacos (0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -851,9 +706,7 @@ double: 1 idouble: 1 Test "Imaginary part of: cacos (0.5 - 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Real part of: cacos (0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -881,16 +734,12 @@ ldouble: 1 Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": ildouble: 1 ldouble: 1 Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -909,12 +758,6 @@ ldouble: 1 Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": -double: 1 -idouble: 1 Test "Real part of: cacos (0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 @@ -1049,9 +892,6 @@ idouble: 1 Test "Imaginary part of: cacos (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.fp16383 + 0x1.fp16383 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 @@ -1074,9 +914,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (0x1p-23 - 0.5 i)": double: 1 float: 1 @@ -1087,9 +924,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (0x1p-52 + 0.5 i)": double: 1 float: 1 @@ -1135,9 +969,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 + 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacos (1.0 + 0x1.fp-30 i)": double: 1 idouble: 1 @@ -1159,9 +990,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 - 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacos (1.0 - 0x1.fp-30 i)": double: 1 idouble: 1 @@ -1279,9 +1107,7 @@ ildouble: 1 ldouble: 1 Test "Real part of: cacosh (-0.5 + 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Real part of: cacosh (-0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -1305,9 +1131,7 @@ ildouble: 1 ldouble: 1 Test "Real part of: cacosh (-0.5 - 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Real part of: cacosh (-0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -1323,13 +1147,9 @@ ldouble: 1 Test "Real part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -1342,12 +1162,6 @@ ldouble: 1 Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x0.ffffffp0 + 0x1p-23 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (-0x0.ffffffp0 - 0x1p-23 i)": -double: 1 -idouble: 1 Test "Real part of: cacosh (-0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 2 ldouble: 2 @@ -1486,9 +1300,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (-0x1p-23 - 0.5 i)": double: 1 float: 1 @@ -1499,9 +1310,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (-0x1p-52 + 0.5 i)": double: 1 float: 1 @@ -1540,9 +1348,6 @@ ldouble: 1 Test "Imaginary part of: cacosh (-1.0 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-1.0 + 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -1554,9 +1359,6 @@ ldouble: 1 Test "Imaginary part of: cacosh (-1.0 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-1.0 - 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -1634,9 +1436,7 @@ double: 1 idouble: 1 Test "Real part of: cacosh (0.5 + 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Real part of: cacosh (0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -1681,9 +1481,7 @@ double: 1 idouble: 1 Test "Real part of: cacosh (0.5 - 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Real part of: cacosh (0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -1708,16 +1506,12 @@ ldouble: 1 Test "Real part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": ildouble: 1 ldouble: 1 Test "Real part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": ildouble: 1 ldouble: 1 @@ -1739,12 +1533,6 @@ ldouble: 1 Test "Imaginary part of: cacosh (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": -double: 1 -idouble: 1 Test "Real part of: cacosh (0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 2 ldouble: 2 @@ -1879,9 +1667,6 @@ idouble: 1 Test "Real part of: cacosh (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp16383 + 0x1.fp16383 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 @@ -1904,9 +1689,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (0x1p-23 - 0.5 i)": double: 1 float: 1 @@ -1917,9 +1699,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (0x1p-52 + 0.5 i)": double: 1 float: 1 @@ -1958,9 +1737,6 @@ ldouble: 1 Test "Imaginary part of: cacosh (1.0 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (1.0 + 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacosh (1.0 + 0x1.fp-10 i)": double: 1 float: 1 @@ -1982,9 +1758,6 @@ ldouble: 1 Test "Imaginary part of: cacosh (1.0 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (1.0 - 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacosh (1.0 - 0x1.fp-10 i)": double: 1 float: 1 @@ -2106,9 +1879,7 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: casin (-0.5 + 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Imaginary part of: casin (-0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -2138,9 +1909,7 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: casin (-0.5 - 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Imaginary part of: casin (-0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -2159,13 +1928,9 @@ ldouble: 1 Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -2178,12 +1943,6 @@ ldouble: 1 Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": -double: 1 -idouble: 1 Test "Imaginary part of: casin (-0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 2 ldouble: 2 @@ -2218,52 +1977,28 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-100 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casin (-0x1.fp-100 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casin (-0x1.fp-1000 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x1.fp-1000 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x1.fp-10000 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1.fp-10000 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1.fp-1025 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 Test "Imaginary part of: casin (-0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x1.fp-1025 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 @@ -2282,9 +2017,6 @@ ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 + 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-129 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 + 1.0 i)": double: 1 float: 1 @@ -2305,9 +2037,6 @@ ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-129 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 - 1.0 i)": double: 1 float: 1 @@ -2374,9 +2103,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casin (-0x1p-23 - 0.5 i)": double: 1 float: 1 @@ -2397,9 +2123,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1p-52 + 0.5 i)": double: 1 float: 1 @@ -2458,9 +2181,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 + 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -2474,9 +2194,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 - 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -2542,9 +2259,7 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: casin (0.5 + 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Imaginary part of: casin (0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -2574,9 +2289,7 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: casin (0.5 - 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Imaginary part of: casin (0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -2601,13 +2314,9 @@ ldouble: 1 Test "Imaginary part of: casin (0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -2620,12 +2329,6 @@ ldouble: 1 Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffp0 + 0x1p-23 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0x0.ffffffp0 - 0x1p-23 i)": -double: 1 -idouble: 1 Test "Imaginary part of: casin (0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 2 ldouble: 2 @@ -2660,52 +2363,28 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-100 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casin (0x1.fp-100 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casin (0x1.fp-1000 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1.fp-1000 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1.fp-10000 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x1.fp-10000 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x1.fp-1025 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 Test "Imaginary part of: casin (0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1.fp-1025 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 @@ -2724,9 +2403,6 @@ ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 + 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-129 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 + 1.0 i)": double: 1 float: 1 @@ -2747,9 +2423,6 @@ ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-129 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 - 1.0 i)": double: 1 float: 1 @@ -2790,9 +2463,6 @@ idouble: 1 Test "Imaginary part of: casin (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp16383 + 0x1.fp16383 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 @@ -2825,9 +2495,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casin (0x1p-23 - 0.5 i)": double: 1 float: 1 @@ -2848,9 +2515,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1p-52 + 0.5 i)": double: 1 float: 1 @@ -2909,9 +2573,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 + 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -2925,9 +2586,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 - 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -3118,9 +2776,6 @@ ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.000002p0 + 0x1p-23 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1p-23 i)": double: 1 float: 1 @@ -3135,20 +2790,11 @@ ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.000002p0 - 0x1p-23 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1p-23 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casinh (-0x1.fp-10 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1.fp-10 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 @@ -3208,15 +2854,10 @@ ildouble: 1 ldouble: 1 Test "Real part of: casinh (-0x1p-23 + 0.5 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Imaginary part of: casinh (-0x1p-23 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": -double: 1 -idouble: 1 Test "Real part of: casinh (-0x1p-23 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 @@ -3225,15 +2866,10 @@ ildouble: 1 ldouble: 1 Test "Real part of: casinh (-0x1p-23 - 0.5 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Imaginary part of: casinh (-0x1p-23 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": -double: 1 -idouble: 1 Test "Real part of: casinh (-0x1p-23 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 @@ -3245,8 +2881,6 @@ ldouble: 1 Test "Real part of: casinh (-0x1p-52 + 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-0x1p-52 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -3258,8 +2892,6 @@ ldouble: 1 Test "Real part of: casinh (-0x1p-52 - 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-0x1p-52 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -3303,32 +2935,17 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-1000 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-1000 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-10000 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-1025 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-30 i)": double: 1 float: 1 @@ -3367,32 +2984,17 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-1000 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-1000 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-10000 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-1025 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-30 i)": double: 1 float: 1 @@ -3583,9 +3185,6 @@ ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.000002p0 + 0x1p-23 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 + 0x1p-23 i)": double: 1 float: 1 @@ -3600,20 +3199,11 @@ ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.000002p0 - 0x1p-23 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 - 0x1p-23 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casinh (0x1.fp-10 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0x1.fp-10 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 @@ -3674,23 +3264,15 @@ idouble: 1 Test "Real part of: casinh (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1.fp16383 + 0x1.fp16383 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (0x1p-23 + 0.0 i)": ildouble: 1 ldouble: 1 Test "Real part of: casinh (0x1p-23 + 0.5 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Imaginary part of: casinh (0x1p-23 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": -double: 1 -idouble: 1 Test "Real part of: casinh (0x1p-23 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 @@ -3699,15 +3281,10 @@ ildouble: 1 ldouble: 1 Test "Real part of: casinh (0x1p-23 - 0.5 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 Test "Imaginary part of: casinh (0x1p-23 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": -double: 1 -idouble: 1 Test "Real part of: casinh (0x1p-23 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 @@ -3719,8 +3296,6 @@ ldouble: 1 Test "Real part of: casinh (0x1p-52 + 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (0x1p-52 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -3732,8 +3307,6 @@ ldouble: 1 Test "Real part of: casinh (0x1p-52 - 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (0x1p-52 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -3777,32 +3350,17 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-1000 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-1000 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-10000 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-1025 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-30 i)": double: 1 float: 1 @@ -3841,32 +3399,17 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-1000 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-1000 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-10000 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-1025 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-30 i)": double: 1 float: 1 @@ -3911,9 +3454,6 @@ ifloat: 1 Test "Imaginary part of: catan (-0x1.0000000000001p0 + 0x1p-27 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.0000000000001p0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-0x1.000002p0 - 0x1p-13 i)": double: 1 idouble: 1 @@ -3947,57 +3487,30 @@ ldouble: 1 Test "Imaginary part of: catan (-0x1p-1022 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-13 + 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (-0x1p-13 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-0x1p-16382 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 Test "Imaginary part of: catan (-0x1p-16382 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-27 - 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (-0x1p-27 - 0x1.0000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (-0x1p-27 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-0x1p-33 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-33 + 0x1.0000000000000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-0x1p-33 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-33 - 0x1.0000000000000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-0x1p-64 + 1.0 i)": ildouble: 1 ldouble: 1 Test "Imaginary part of: catan (-0x1p-64 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-1.0 + 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-1.0 + 0x1p-64 i)": ildouble: 1 ldouble: 1 Test "Imaginary part of: catan (-1.0 - 0x1p-13 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-1.0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-1.0 - 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4020,9 +3533,6 @@ ifloat: 1 Test "Imaginary part of: catan (0x1.0000000000001p0 + 0x1p-27 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.0000000000001p0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (0x1.000002p0 - 0x1p-13 i)": double: 1 idouble: 1 @@ -4056,68 +3566,35 @@ ldouble: 1 Test "Imaginary part of: catan (0x1p-1022 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-13 + 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (0x1p-13 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (0x1p-16382 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 Test "Imaginary part of: catan (0x1p-16382 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-27 - 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (0x1p-27 - 0x1.0000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (0x1p-27 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (0x1p-33 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-33 + 0x1.0000000000000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (0x1p-33 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-33 - 0x1.0000000000000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (0x1p-64 + 1.0 i)": ildouble: 1 ldouble: 1 Test "Imaginary part of: catan (0x1p-64 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (1.0 + 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (1.0 + 0x1p-64 i)": ildouble: 1 ldouble: 1 Test "Imaginary part of: catan (1.0 - 0x1p-13 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (1.0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (1.0 - 0x1p-64 i)": ildouble: 1 ldouble: 1 # catanh -Test "Real part of: catanh (-0x0.fffffffffffff8p0 + 0x1p-27 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x0.fffffffffffff8p0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (-0x0.ffffffffffffffffp0 + 0x1p-1022 i)": ildouble: 1 ldouble: 1 @@ -4136,18 +3613,6 @@ ldouble: 1 Test "Real part of: catanh (-0x0.ffffffffffffffffp0 - 0x1p-33 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1.0000000000000002p0 + 0x1p-33 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1.0000000000000002p0 - 0x1p-33 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1.0000000000001p0 + 0x1p-27 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1.0000000000001p0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (-0x1.fp1023 + 0x1.fp1023 i)": ildouble: 1 ldouble: 1 @@ -4172,18 +3637,6 @@ idouble: 1 Test "Real part of: catanh (-0x1p-13 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-27 + 0x1.0000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1p-27 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1p-27 - 0x1.0000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1p-27 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (-0x1p-64 + 1.0 i)": ildouble: 1 ldouble: 1 @@ -4196,9 +3649,6 @@ ldouble: 1 Test "Real part of: catanh (-1.0 + 0x1p-1020 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-1.0 + 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (-1.0 + 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4208,9 +3658,6 @@ ldouble: 1 Test "Real part of: catanh (-1.0 - 0x1p-1020 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-1.0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (-1.0 - 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4240,18 +3687,6 @@ ldouble: 1 Test "Real part of: catanh (0x0.ffffffffffffffffp0 - 0x1p-33 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x0.ffffffp0 + 0x1p-13 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (0x0.ffffffp0 - 0x1p-13 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (0x1.0000000000000002p0 + 0x1p-33 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (0x1.0000000000000002p0 - 0x1p-33 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (0x1.fp1023 + 0x1.fp1023 i)": ildouble: 1 ldouble: 1 @@ -4280,18 +3715,12 @@ idouble: 1 Test "Real part of: catanh (0x1p-27 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-27 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (0x1p-27 - 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 Test "Real part of: catanh (0x1p-27 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-27 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (0x1p-33 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 @@ -4310,9 +3739,6 @@ ldouble: 1 Test "Real part of: catanh (1.0 + 0x1p-1020 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (1.0 + 0x1p-13 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (1.0 + 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4322,9 +3748,6 @@ ldouble: 1 Test "Real part of: catanh (1.0 - 0x1p-1020 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (1.0 - 0x1p-13 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (1.0 - 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4348,12 +3771,6 @@ ldouble: 1 Test "cbrt (-0xf.fffffffffffffffp+16380)": ildouble: 1 ldouble: 1 -Test "cbrt (-27.0)": -ildouble: 1 -ldouble: 1 -Test "cbrt (0.75)": -ildouble: 1 -ldouble: 1 Test "cbrt (0x1.86ap+16)": double: 1 idouble: 1 @@ -4367,30 +3784,6 @@ ildouble: 1 ldouble: 1 # ccos -Test "Real part of: ccos (-0.75 + 710.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccos (-0.75 + 710.5 i)": -double: 1 -idouble: 1 -Test "Real part of: ccos (-0.75 + 89.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccos (-0.75 + 89.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: ccos (-0.75 - 710.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccos (-0.75 - 710.5 i)": -double: 1 -idouble: 1 -Test "Real part of: ccos (-0.75 - 89.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccos (-0.75 - 89.5 i)": -float: 1 -ifloat: 1 Test "Imaginary part of: ccos (-0x2p+0 - 0x3p+0 i)": float: 1 ifloat: 1 @@ -4418,46 +3811,6 @@ ifloat: 1 Test "Imaginary part of: ccos (-0xcp-4 - 0x5.98p+4 i)": float: 1 ifloat: 1 -Test "Imaginary part of: ccos (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: ccos (0.75 + 1.25 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (0.75 + 1.25 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: ccos (0.75 + 710.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccos (0.75 + 710.5 i)": -double: 1 -idouble: 1 -Test "Real part of: ccos (0.75 + 89.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccos (0.75 + 89.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: ccos (0.75 - 710.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccos (0.75 - 710.5 i)": -double: 1 -idouble: 1 -Test "Real part of: ccos (0.75 - 89.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccos (0.75 - 89.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccos (0x1p-1074 + 1440 i)": -double: 1 -idouble: 1 Test "Imaginary part of: ccos (0x4p-1076 + 0x5.ap+8 i)": double: 1 idouble: 1 @@ -4526,41 +3879,6 @@ ifloat: 1 Test "Imaginary part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": float: 1 ifloat: 1 -Test "Imaginary part of: ccosh (-2 - 3 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: ccosh (-710.5 + 0.75 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccosh (-710.5 + 0.75 i)": -double: 1 -idouble: 1 -Test "Real part of: ccosh (-710.5 - 0.75 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccosh (-710.5 - 0.75 i)": -double: 1 -idouble: 1 -Test "Real part of: ccosh (-89.5 + 0.75 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (-89.5 + 0.75 i)": -float: 1 -ifloat: 1 -Test "Real part of: ccosh (-89.5 - 0.75 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (-89.5 - 0.75 i)": -float: 1 -ifloat: 1 -Test "Real part of: ccosh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 Test "Imaginary part of: ccosh (0x1p-120 + 0x4p-16328 i)": ildouble: 1 ldouble: 1 @@ -4597,33 +3915,6 @@ ifloat: 1 Test "Imaginary part of: ccosh (0xcp-4 + 0x1.4p+0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: ccosh (1440 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Real part of: ccosh (710.5 + 0.75 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccosh (710.5 + 0.75 i)": -double: 1 -idouble: 1 -Test "Real part of: ccosh (710.5 - 0.75 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccosh (710.5 - 0.75 i)": -double: 1 -idouble: 1 -Test "Real part of: ccosh (89.5 + 0.75 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (89.5 + 0.75 i)": -float: 1 -ifloat: 1 -Test "Real part of: ccosh (89.5 - 0.75 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (89.5 - 0.75 i)": -float: 1 -ifloat: 1 # cexp Test "Imaginary part of: cexp (+0 + 0xf.ffffffffffff8p+1020 i)": @@ -4649,27 +3940,10 @@ ldouble: 1 Test "Imaginary part of: cexp (-0x5.fp+4 + 0xcp-4 i)": double: 1 idouble: 1 -Test "Real part of: cexp (-10000 + 0x1p16383 i)": +Test "Imaginary part of: cexp (0x2.c5c9p+12 + 0xcp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (-2.0 - 3.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cexp (-95 + 0.75 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cexp (-95 + 0.75 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cexp (0.75 + 1.25 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cexp (0x2.c5c9p+12 + 0xcp-4 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +Test "Real part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": double: 1 idouble: 1 ildouble: 1 @@ -4701,38 +3975,6 @@ idouble: 1 Test "Imaginary part of: cexp (0xcp-4 + 0x1.4p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (11356.5625 + 0.75 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cexp (1440 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (50 + 0x1p127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cexp (50 + 0x1p127 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cexp (709.8125 + 0.75 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cexp (709.8125 + 0.75 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (88.75 + 0.75 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cexp (88.75 + 0.75 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # clog Test "Real part of: clog (+0 + 0x8p-16444 i)": @@ -4762,12 +4004,6 @@ idouble: 1 Test "Real part of: clog (-0x1.0000000123456p+0 + 0x8p-152 i)": double: 1 idouble: 1 -Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 1 -idouble: 1 -Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 1 -idouble: 1 Test "Real part of: clog (-0x1.000002p+0 + +0 i)": float: 1 ifloat: 1 @@ -4789,33 +4025,9 @@ ldouble: 1 Test "Real part of: clog (-0x1.000002p+0 + 0x8p-152 i)": float: 1 ifloat: 1 -Test "Real part of: clog (-0x1.fp+127 + 0x1p-149 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (-0x1.fp+127 - 0x1p-149 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (-0x1.fp+16383 + 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (-0x1.fp+16383 - 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: clog (-0x1p+0 + 0x4.8d15ap-32 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1p-149 + 0x1.fp+127 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (-0x1p-149 - 0x1.fp+127 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (-0x1p-16445 + 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (-0x1p-16445 - 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: clog (-0x4p-1076 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 @@ -4870,12 +4082,6 @@ ldouble: 1 Test "Real part of: clog (-0xf.8p+16380 - 0x8p-16448 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x0.ffffffffffffffffp0 + 0x0.ffffffffffffffffp-15000 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x0.ffffffp0 + 0x0.ffffffp-100 i)": -float: 1 -ifloat: 1 Test "Real part of: clog (0x1.0000000000000012p+0 + +0 i)": ildouble: 1 ldouble: 1 @@ -4942,12 +4148,6 @@ ifloat: 1 Test "Real part of: clog (0x1.000566p+0 + 0x4.8dp-12 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.000566p0 + 0x1.234p-10 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.000566p0 + 0x1.234p-100 i)": -float: 1 -ifloat: 1 Test "Real part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c64p-4 i)": double: 1 idouble: 1 @@ -5056,45 +4256,12 @@ ldouble: 1 Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": double: 1 idouble: 1 -Test "Real part of: clog (0x1.fffffep+127 + 0x1.fffffep+127 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p+16383 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 - 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: clog (0x1p+0 + 0x4.8d1598p-12 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1p-1074 + 0x1p-1074 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1p-149 + 0x1.fp+127 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1p-149 + 0x1p-149 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1p-149 - 0x1.fp+127 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: clog (0x1p-16440 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-16445 + 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1p-16445 - 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": double: 1 idouble: 1 @@ -5148,9 +4315,6 @@ ldouble: 1 Test "Real part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x2dd46725bp-35 + 0x7783a1284p-35 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: clog (0x3.2cdb84p-4 + 0xf.ae888f0455f6p-4 i)": ildouble: 1 ldouble: 1 @@ -6020,9 +5184,6 @@ ifloat: 1 Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffp-104 i)": float: 1 ifloat: 1 -Test "Real part of: clog (1.0 + 0x1.234566p-10 i)": -float: 1 -ifloat: 1 # clog10 Test "Imaginary part of: clog10 (-0 + inf i)": @@ -6414,14 +5575,6 @@ ifloat: 1 Test "cos (0x1.921fb4p+0)": ildouble: 1 ldouble: 1 -Test "cos (M_PI_6l * 2.0)": -double: 1 -idouble: 1 -Test "cos (M_PI_6l * 4.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 # cos_downward Test "cos_downward (-0x2p-16384)": @@ -6648,37 +5801,6 @@ ldouble: 1 Test "cos_downward (0xf.fffffp+124)": double: 1 idouble: 1 -Test "cos_downward (1)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (10)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_downward (2)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (3)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (4)": -float: 1 -ifloat: 1 -Test "cos_downward (5)": -float: 1 -ifloat: 1 -Test "cos_downward (7)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_downward (8)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (9)": -float: 1 -ifloat: 1 # cos_tonearest Test "cos_tonearest (0x1.921fb4p+0)": @@ -6850,35 +5972,6 @@ idouble: 1 Test "cos_towardzero (0xf.fffffp+124)": double: 1 idouble: 1 -Test "cos_towardzero (1)": -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (10)": -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (2)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (3)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (5)": -float: 1 -ifloat: 1 -Test "cos_towardzero (7)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (8)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # cos_upward Test "cos_upward (-0x2p+64)": @@ -7023,34 +6116,6 @@ ldouble: 1 Test "cos_upward (0xf.fffffffffffffffp+16380)": ildouble: 2 ldouble: 2 -Test "cos_upward (1)": -float: 1 -ifloat: 1 -Test "cos_upward (2)": -float: 1 -ifloat: 1 -Test "cos_upward (3)": -float: 1 -ifloat: 1 -Test "cos_upward (4)": -ildouble: 1 -ldouble: 1 -Test "cos_upward (5)": -ildouble: 1 -ldouble: 1 -Test "cos_upward (6)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_upward (8)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_upward (9)": -ildouble: 1 -ldouble: 1 # cosh Test "cosh (-0x1p+0)": @@ -7091,23 +6156,18 @@ Test "cosh_downward (-0x2.c5d37700c6bbp+12)": ldouble: 2 Test "cosh_downward (-0x2.c5e3acd2922a6p+8)": ildouble: 1 -Test "cosh_downward (-0x2.c5e3bp+8)": -ildouble: 1 Test "cosh_downward (-0x2.c679d1f73f0fap+8)": ildouble: 2 Test "cosh_downward (-0x2.c679d1f73f0fb624p+8)": ildouble: 2 Test "cosh_downward (-0x2.c679d1f73f0fb628p+8)": ildouble: 2 -Test "cosh_downward (-0x2.c679d1f73f0fcp+8)": -ildouble: 1 Test "cosh_downward (-0x2.c679dp+8)": double: 1 ildouble: 1 Test "cosh_downward (-0x5.96a7ep+4)": double: 1 ildouble: 2 -ldouble: 1 Test "cosh_downward (0x1.6p+4)": ildouble: 1 ldouble: 2 @@ -7121,27 +6181,6 @@ Test "cosh_downward (0x2.c679dp+8)": double: 1 Test "cosh_downward (0x5.96a7ep+4)": double: 1 -ildouble: 1 -ldouble: 1 -Test "cosh_downward (22)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 2 -Test "cosh_downward (23)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cosh_downward (24)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # cosh_tonearest Test "cosh_tonearest (-0x1p+0)": @@ -7170,8 +6209,6 @@ Test "cosh_tonearest (0x2.c5d374p+12)": ldouble: 2 Test "cosh_tonearest (0x2.c5d37700c6bbp+12)": ldouble: 1 -Test "cosh_tonearest (22)": -ldouble: 1 # cosh_towardzero Test "cosh_towardzero (-0x1p+0)": @@ -7179,8 +6216,6 @@ ildouble: 1 ldouble: 1 Test "cosh_towardzero (-0x2.c5d374p+12)": ldouble: 1 -Test "cosh_towardzero (-0x2.c5d37700c6bb03a4p+12)": -ldouble: 3 Test "cosh_towardzero (-0x2.c5d37700c6bbp+12)": ldouble: 2 Test "cosh_towardzero (-0x2.c5e3acd2922a6p+8)": @@ -7197,56 +6232,28 @@ ildouble: 1 Test "cosh_towardzero (-0x5.96a7ep+4)": double: 1 ildouble: 2 -ldouble: 1 Test "cosh_towardzero (0x1.6p+4)": -ildouble: 1 -ldouble: 2 +ldouble: 1 Test "cosh_towardzero (0x1.8p+4)": ildouble: 1 ldouble: 1 Test "cosh_towardzero (0x2.c5d374p+12)": ldouble: 1 -Test "cosh_towardzero (0x2.c5d37700c6bb03a4p+12)": -ldouble: 3 Test "cosh_towardzero (0x2.c5d37700c6bbp+12)": ldouble: 2 Test "cosh_towardzero (0x2.c679dp+8)": double: 1 Test "cosh_towardzero (0x5.96a7ep+4)": double: 1 -ildouble: 1 -ldouble: 1 -Test "cosh_towardzero (22)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 2 -Test "cosh_towardzero (23)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cosh_towardzero (24)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # cosh_upward Test "cosh_upward (-0x2.c5d374p+12)": ldouble: 2 Test "cosh_upward (-0x2.c5d37700c6bb03a4p+12)": ldouble: 3 -Test "cosh_upward (-0x2.c5d37700c6bbp+12)": -ldouble: 3 Test "cosh_upward (-0x2.c5e3acd2922a6p+8)": double: 1 ildouble: 1 -ldouble: 1 Test "cosh_upward (-0x2.c5e3acp+8)": ildouble: 1 Test "cosh_upward (-0x2.c5e3bp+8)": @@ -7290,20 +6297,16 @@ Test "cosh_upward (0x1.6p+4)": ildouble: 1 ldouble: 1 Test "cosh_upward (0x1.7p+4)": -ildouble: 2 -ldouble: 1 +ildouble: 1 Test "cosh_upward (0x1.8p+4)": ildouble: 1 Test "cosh_upward (0x2.c5d374p+12)": ldouble: 2 Test "cosh_upward (0x2.c5d37700c6bb03a4p+12)": ldouble: 3 -Test "cosh_upward (0x2.c5d37700c6bbp+12)": -ldouble: 3 Test "cosh_upward (0x2.c5e3acd2922a6p+8)": double: 1 -ildouble: 2 -ldouble: 1 +ildouble: 1 Test "cosh_upward (0x2.c5e3acp+8)": ildouble: 1 Test "cosh_upward (0x2.c5e3bp+8)": @@ -7328,52 +6331,8 @@ Test "cosh_upward (0x5.96a7e8p+4)": ildouble: 1 Test "cosh_upward (0x5.96a7ep+4)": ildouble: 1 -Test "cosh_upward (22)": -ildouble: 2 -ldouble: 1 -Test "cosh_upward (23)": -ildouble: 2 -ldouble: 1 -Test "cosh_upward (24)": -double: 1 -idouble: 1 -ildouble: 1 # cpow -Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": -double: 1 -float: 3 -idouble: 1 -ifloat: 3 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 0.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": -double: 2 -float: 4 -idouble: 2 -ifloat: 4 -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": -double: 1 -idouble: 1 Test "Real part of: cpow (0x2p+0 + +0 i, 0xap+0 + +0 i)": ildouble: 1 ldouble: 1 @@ -7423,24 +6382,9 @@ float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": -double: 1 -float: 5 -idouble: 1 -ifloat: 5 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 - -# csin -Test "Real part of: csin (-0.75 + 710.5 i)": + +# csin +Test "Real part of: csin (-0.75 + 710.5 i)": double: 1 idouble: 1 Test "Imaginary part of: csin (-0.75 + 710.5 i)": @@ -7564,18 +6508,6 @@ float: 1 ifloat: 1 # csqrt -Test "Real part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: csqrt (-0x1.0000000000001p-1022 - 0x1.0000000000001p-1022 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: csqrt (-0x1.000002p-126 - 0x1.000002p-126 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: csqrt (-0x4.0000000000000008p-16384 - 0x4.0000000000000008p-16384 i)": ildouble: 1 ldouble: 1 @@ -7609,36 +6541,6 @@ ldouble: 1 Test "Real part of: csqrt (-0x8p-152 - 0x8p-152 i)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000001p-1022 + 0x1.0000000000001p-1022 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1.000002p-126 + 0x1.000002p-126 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fp+16383 + 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-1073 + 0x1p-1073 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-1074 + 0x1p-1074 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-147 + 0x1p-147 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-149 + 0x1p-149 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: csqrt (0x1p-16440 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -7750,19 +6652,6 @@ ldouble: 1 Test "Imaginary part of: ctan (-0x2p+0 - 0x3p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (-2 - 3 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan (-2 - 3 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan (0.75 + 1.25 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: ctan (0x1.921fb4p+0 + +0 i)": float: 1 ifloat: 1 @@ -7842,17 +6731,6 @@ double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "Real part of: ctan (0x1p1023 + 1 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan (0x1p1023 + 1 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: ctan (0x3.243f6cp-1 + 0 i)": -float: 1 -ifloat: 1 Test "Real part of: ctan (0x8p+1020 + 0x1p+0 i)": double: 1 idouble: 1 @@ -7870,14 +6748,6 @@ ldouble: 1 Test "Imaginary part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (1 + 45 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: ctan (1 + 47 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 # ctan_downward Test "Real part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": @@ -7915,9 +6785,6 @@ ldouble: 1 Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -7930,14 +6797,6 @@ ldouble: 1 Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + +0 i)": ildouble: 2 ldouble: 2 -Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": ildouble: 2 ldouble: 2 @@ -7992,16 +6851,6 @@ float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 1 -idouble: 1 -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -float: 2 -ifloat: 2 -ildouble: 4 -ldouble: 4 Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": ildouble: 2 ldouble: 2 @@ -8108,9 +6957,6 @@ ldouble: 1 Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-16448 i)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -8120,9 +6966,6 @@ ldouble: 1 Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -8148,14 +6991,6 @@ ldouble: 1 Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + +0 i)": float: 1 ifloat: 1 -Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -8250,14 +7085,6 @@ ldouble: 1 Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -8312,16 +7139,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -8447,12 +7264,6 @@ ldouble: 1 Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -8471,14 +7282,6 @@ ldouble: 1 Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": ildouble: 2 ldouble: 2 -Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -double: 1 -idouble: 1 -ildouble: 4 -ldouble: 4 Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": ildouble: 2 ldouble: 2 @@ -8519,16 +7322,6 @@ ldouble: 3 Test "Real part of: ctan_upward (0x1.921fb6p+0 + +0 i)": ildouble: 2 ldouble: 2 -Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": ildouble: 2 ldouble: 2 @@ -8693,26 +7486,6 @@ ldouble: 1 Test "Imaginary part of: ctanh (-0x2p+0 - 0x3p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctanh (-2 - 3 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (-2 - 3 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (0 + 0x3.243f6cp-1 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctanh (0 + M_PI_4l i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (0 + pi/4 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 Test "Real part of: ctanh (0x1p+0 + 0x8p+1020 i)": ildouble: 1 ldouble: 1 @@ -8803,22 +7576,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: ctanh (1 + 0x1p1023 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (1 + 0x1p1023 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (45 + 1 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (47 + 1 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 # ctanh_downward Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb4p+0 i)": @@ -8898,27 +7655,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": -float: 2 -ifloat: 2 -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 1 -idouble: 1 -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_downward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctanh_downward (0x2.dp+4 + 0x1p+0 i)": double: 1 idouble: 1 @@ -9071,20 +7807,6 @@ ldouble: 1 Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_tonearest (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -Test "Real part of: ctanh_tonearest (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctanh_tonearest (0x2.dp+4 + 0x1p+0 i)": ildouble: 1 ldouble: 1 @@ -9243,24 +7965,6 @@ ldouble: 1 Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": double: 1 idouble: 1 -Test "Real part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": double: 1 idouble: 1 @@ -9494,30 +8198,6 @@ idouble: 1 ifloat: 2 ildouble: 3 ldouble: 3 -Test "Real part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -double: 1 -idouble: 1 -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": -ildouble: 2 -ldouble: 2 Test "Real part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": double: 1 float: 1 @@ -9656,25 +8336,11 @@ ldouble: 1 Test "erf (0x1.4p+0)": double: 1 idouble: 1 -Test "erf (1.25)": -double: 1 -idouble: 1 # erfc Test "erfc (0x1.4p+0)": ildouble: 1 ldouble: 1 -Test "erfc (0x1.f7303cp+1)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "erfc (0x1.ffa002p+2)": -ildouble: 1 -ldouble: 1 -Test "erfc (0x1.ffffc8p+2)": -double: 1 -idouble: 1 Test "erfc (0x2p+0)": double: 1 idouble: 1 @@ -9708,22 +8374,8 @@ ldouble: 1 Test "erfc (0x7.ffff2p+0)": double: 1 idouble: 1 -Test "erfc (1.25)": -ildouble: 1 -ldouble: 1 -Test "erfc (2.0)": -double: 1 -idouble: 1 -Test "erfc (4.125)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 # exp10 -Test "exp10 (0.75)": -ildouble: 1 -ldouble: 1 Test "exp10 (0xcp-4)": ildouble: 1 ldouble: 1 @@ -9774,134 +8426,43 @@ ldouble: 1 Test "exp_downward (0x2.c5cp+8)": double: 1 idouble: 1 + +# exp_towardzero +Test "exp_towardzero (0x2.c5cp+8)": +double: 1 +idouble: 1 + +# exp_upward +Test "exp_upward (0x2.c679d1f73f0fb628p+8)": +ildouble: 1 +ldouble: 1 + +# expm1 +Test "expm1 (-0x1p-64)": +ildouble: 1 +ldouble: 1 +Test "expm1 (-0x2.dp+4)": ildouble: 1 ldouble: 1 -Test "exp_downward (0x2p+0)": +Test "expm1 (-0x4p-12)": ildouble: 1 ldouble: 1 -Test "exp_downward (0x3.e8p+8)": +Test "expm1 (0x1p+0)": ildouble: 1 ldouble: 1 -Test "exp_downward (1)": +Test "expm1 (0x2.c5c4p+12)": ildouble: 1 ldouble: 1 -Test "exp_downward (2)": + +# expm1_downward +Test "expm1_downward (-0x1p-100)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "exp_downward (3)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 - -# exp_towardzero -Test "exp_towardzero (-0x2.e870a4p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.e870a7e5e88c1f0cp+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.e870a7e5e88c1f1p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.e870a7e5e88c2p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.e870a7e5e88cp+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.e870a8p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.ebe224p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.ebe228p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (0x2.c5cp+8)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (0x2p+0)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (0x3.e8p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (1)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (2)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "exp_towardzero (3)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 - -# exp_upward -Test "exp_upward (-0x2.e870a7e5e88c1f0cp+8)": -ildouble: 1 -ldouble: 1 -Test "exp_upward (-0x2.e870a7e5e88cp+8)": -ildouble: 1 -ldouble: 1 -Test "exp_upward (0x2.c679d1f73f0fb628p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_upward (1)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -# expm1 -Test "expm1 (-0x1p-64)": -ildouble: 1 -ldouble: 1 -Test "expm1 (-0x2.dp+4)": -ildouble: 1 -ldouble: 1 -Test "expm1 (-0x4p-12)": -ildouble: 1 -ldouble: 1 -Test "expm1 (-45.0)": -ildouble: 1 -ldouble: 1 -Test "expm1 (0x1p+0)": -ildouble: 1 -ldouble: 1 -Test "expm1 (0x2.c5c4p+12)": -ildouble: 1 -ldouble: 1 -Test "expm1 (11356.25)": -ildouble: 1 -ldouble: 1 - -# expm1_downward -Test "expm1_downward (-0x1p-100)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "expm1_downward (-0x2.ep+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (-0x2.ep+4)": idouble: 1 ifloat: 1 ildouble: 1 @@ -10226,34 +8787,9 @@ ildouble: 1 ldouble: 1 # gamma -Test "gamma (-0.5)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "gamma (-0x1p-10)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "gamma (-0x1p-15)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "gamma (-0x1p-20)": double: 1 idouble: 1 -Test "gamma (-0x1p-30)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "gamma (-0x1p-5)": -double: 1 -idouble: 1 Test "gamma (-0x2p-16)": double: 1 float: 1 @@ -10279,9 +8815,6 @@ ldouble: 1 Test "gamma (-0x8p-8)": double: 1 idouble: 1 -Test "gamma (0.7)": -float: 1 -ifloat: 1 Test "gamma (0x1.3333333333334p+0)": ildouble: 1 ldouble: 1 @@ -10294,21 +8827,8 @@ ldouble: 1 Test "gamma (0xb.3333333333338p-4)": ildouble: 1 ldouble: 1 -Test "gamma (1.2)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 # hypot -Test "hypot (-0.7, -12.4)": -float: 1 -ifloat: 1 -Test "hypot (-0.7, 12.4)": -float: 1 -ifloat: 1 Test "hypot (-0xb.333333333333333p-4, -0xc.666666666666p+0)": ildouble: 1 Test "hypot (-0xb.333333333333333p-4, 0xc.666666666666p+0)": @@ -10345,18 +8865,6 @@ ildouble: 1 Test "hypot (-0xc.666666666666p+0, 0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "hypot (-12.4, -0.7)": -float: 1 -ifloat: 1 -Test "hypot (-12.4, 0.7)": -float: 1 -ifloat: 1 -Test "hypot (0.7, -12.4)": -float: 1 -ifloat: 1 -Test "hypot (0.7, 12.4)": -float: 1 -ifloat: 1 Test "hypot (0x1.23456789abcdef02p-500, 0x1.23456789abcdefp-500)": ildouble: 1 ldouble: 1 @@ -10403,17 +8911,8 @@ ildouble: 1 Test "hypot (0xc.666666666666p+0, 0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "hypot (12.4, -0.7)": -float: 1 -ifloat: 1 -Test "hypot (12.4, 0.7)": -float: 1 -ifloat: 1 # j0 -Test "j0 (-0x1.001000001p+593)": -ildouble: 2 -ldouble: 2 Test "j0 (-0x2.002000002p+592)": ildouble: 2 ldouble: 2 @@ -10431,22 +8930,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "j0 (-4.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "j0 (0x1.d7ce3ap+107)": -float: 1 -ifloat: 1 -Test "j0 (0x1p1023)": -double: 1 -idouble: 1 -Test "j0 (0x1p16382)": -ildouble: 1 -ldouble: 1 Test "j0 (0x2p+0)": float: 1 ifloat: 1 @@ -10484,37 +8967,11 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "j0 (10.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "j0 (2.0)": -float: 1 -ifloat: 1 -Test "j0 (4.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "j0 (8.0)": -float: 1 -ifloat: 1 # j1 -Test "j1 (0x1.3ffp+74)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "j1 (0x1.ff00000000002p+840)": double: 1 idouble: 1 -Test "j1 (0x1p16382)": -ildouble: 1 -ldouble: 1 Test "j1 (0x2p+0)": double: 1 idouble: 1 @@ -10541,19 +8998,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "j1 (10.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "j1 (2.0)": -double: 1 -idouble: 1 -Test "j1 (8.0)": -float: 1 -ifloat: 1 # jn Test "jn (0, -0x4p+0)": @@ -10563,13 +9007,6 @@ idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "jn (0, -4.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 Test "jn (0, 0x2p+0)": float: 1 ifloat: 1 @@ -10588,24 +9025,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "jn (0, 10.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "jn (0, 2.0)": -float: 1 -ifloat: 1 -Test "jn (0, 4.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "jn (0, 8.0)": -float: 1 -ifloat: 1 Test "jn (1, 0x2p+0)": double: 1 idouble: 1 @@ -10619,19 +9038,6 @@ idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (1, 10.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "jn (1, 2.0)": -double: 1 -idouble: 1 -Test "jn (1, 8.0)": -float: 1 -ifloat: 1 Test "jn (10, -0x1p+0)": double: 1 float: 1 @@ -10639,21 +9045,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (10, -1.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "jn (10, 0.125)": -float: 1 -ifloat: 1 -Test "jn (10, 0.75)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 Test "jn (10, 0x1p+0)": double: 1 float: 1 @@ -10679,36 +9070,6 @@ float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "jn (10, 1.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "jn (10, 10.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "jn (10, 2.0)": -ildouble: 1 -ldouble: 1 -Test "jn (2, 0x1.ffff62p+99)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "jn (2, 0x1p1023)": -double: 1 -idouble: 1 -Test "jn (2, 0x1p127)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "jn (2, 0x2.67a2a4p+0)": float: 1 ifloat: 1 @@ -10758,19 +9119,9 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (2, 2.4048255576957729)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "jn (3, -0x1p+0)": ildouble: 1 ldouble: 1 -Test "jn (3, -1.0)": -ildouble: 1 -ldouble: 1 Test "jn (3, 0x1p+0)": ildouble: 1 ldouble: 1 @@ -10804,23 +9155,7 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (3, 1.0)": -ildouble: 1 -ldouble: 1 -Test "jn (3, 10.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "jn (3, 2.0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "jn (3, 2.4048255576957729)": -ildouble: 1 -ldouble: 1 -Test "jn (4, 0x2.67a2a4p+0)": +Test "jn (4, 0x2.67a2a4p+0)": float: 1 ifloat: 1 ildouble: 1 @@ -10840,9 +9175,6 @@ ldouble: 1 Test "jn (4, 0x2.67a2a8p+0)": ildouble: 1 ldouble: 1 -Test "jn (4, 2.4048255576957729)": -ildouble: 2 -ldouble: 2 Test "jn (5, 0x2.67a2a4p+0)": double: 1 float: 1 @@ -10859,13 +9191,6 @@ ldouble: 1 Test "jn (5, 0x2.67a2a5d2e368p+0)": ildouble: 1 ldouble: 1 -Test "jn (5, 2.4048255576957729)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 3 -ldouble: 3 Test "jn (6, 0x2.67a2a4p+0)": float: 2 ifloat: 2 @@ -10892,13 +9217,6 @@ idouble: 1 ifloat: 2 ildouble: 1 ldouble: 1 -Test "jn (6, 2.4048255576957729)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 Test "jn (7, 0x2.67a2a4p+0)": double: 1 float: 2 @@ -10923,11 +9241,6 @@ ldouble: 1 Test "jn (7, 0x2.67a2a8p+0)": float: 1 ifloat: 1 -Test "jn (7, 2.4048255576957729)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 Test "jn (8, 0x2.67a2a4p+0)": double: 1 float: 1 @@ -10946,13 +9259,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (8, 2.4048255576957729)": -double: 1 -float: 3 -idouble: 1 -ifloat: 3 -ildouble: 2 -ldouble: 2 Test "jn (9, 0x2.67a2a4p+0)": float: 1 ifloat: 1 @@ -10969,41 +9275,11 @@ float: 3 ifloat: 3 ildouble: 3 ldouble: 3 -Test "jn (9, 2.4048255576957729)": -float: 4 -ifloat: 4 -ildouble: 2 -ldouble: 2 # lgamma -Test "lgamma (-0.5)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "lgamma (-0x1p-10)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "lgamma (-0x1p-15)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "lgamma (-0x1p-20)": double: 1 idouble: 1 -Test "lgamma (-0x1p-30)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "lgamma (-0x1p-5)": -double: 1 -idouble: 1 Test "lgamma (-0x2p-16)": double: 1 float: 1 @@ -11029,9 +9305,6 @@ ldouble: 1 Test "lgamma (-0x8p-8)": double: 1 idouble: 1 -Test "lgamma (0.7)": -float: 1 -ifloat: 1 Test "lgamma (0x1.3333333333334p+0)": ildouble: 1 ldouble: 1 @@ -11044,13 +9317,6 @@ ldouble: 1 Test "lgamma (0xb.3333333333338p-4)": ildouble: 1 ldouble: 1 -Test "lgamma (1.2)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 # log Test "log (0x5.e2d59p-4)": @@ -11058,9 +9324,6 @@ ildouble: 1 ldouble: 1 # log10 -Test "log10 (0.75)": -ildouble: 1 -ldouble: 1 Test "log10 (0x1.999998p-4)": ildouble: 1 ldouble: 1 @@ -11082,16 +9345,8 @@ ldouble: 1 Test "log10 (0xcp-4)": ildouble: 1 ldouble: 1 -Test "log10 (e)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # pow -Test "pow (0x0.ffffffp0, -0x1p24)": -ildouble: 1 -ldouble: 1 Test "pow (0x1.0000000000001p+0, 0x2.468adp+60)": ildouble: 1 ldouble: 1 @@ -11103,9 +9358,6 @@ ildouble: 1 ldouble: 1 # pow10 -Test "pow10 (0.75)": -ildouble: 1 -ldouble: 1 Test "pow10 (0xcp-4)": ildouble: 1 ldouble: 1 @@ -11389,26 +9641,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_downward (1)": -ildouble: 1 -ldouble: 1 -Test "sin_downward (3)": -ildouble: 1 -ldouble: 1 -Test "sin_downward (6)": -float: 1 -ifloat: 1 -Test "sin_downward (7)": -ildouble: 1 -ldouble: 1 -Test "sin_downward (8)": -ildouble: 1 -ldouble: 1 -Test "sin_downward (9)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # sin_tonearest Test "sin_tonearest (0xf.ffffffffffff8p+1020)": @@ -11541,32 +9773,6 @@ ldouble: 1 Test "sin_towardzero (0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 -Test "sin_towardzero (1)": -ildouble: 1 -ldouble: 1 -Test "sin_towardzero (10)": -float: 1 -ifloat: 1 -Test "sin_towardzero (3)": -ildouble: 1 -ldouble: 1 -Test "sin_towardzero (4)": -float: 1 -ifloat: 1 -Test "sin_towardzero (5)": -float: 1 -ifloat: 1 -Test "sin_towardzero (7)": -ildouble: 1 -ldouble: 1 -Test "sin_towardzero (8)": -ildouble: 1 -ldouble: 1 -Test "sin_towardzero (9)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # sin_upward Test "sin_upward (-0x1.921fb4p+0)": @@ -11821,43 +10027,6 @@ ldouble: 1 Test "sin_upward (0xf.fffffp+124)": ildouble: 1 ldouble: 1 -Test "sin_upward (1)": -float: 1 -ifloat: 1 -Test "sin_upward (10)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sin_upward (2)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sin_upward (3)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sin_upward (4)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sin_upward (5)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sin_upward (6)": -ildouble: 1 -ldouble: 1 -Test "sin_upward (7)": -float: 1 -ifloat: 1 -Test "sin_upward (8)": -float: 1 -ifloat: 1 # sincos Test "sincos (0x1.921fb4p+0) extra output 2": @@ -11866,23 +10035,8 @@ ldouble: 1 Test "sincos (0xf.ffffffffffff8p+1020) extra output 1": ildouble: 1 ldouble: 1 -Test "sincos (M_PI_6l*2.0) extra output 1": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sincos (M_PI_6l*2.0) extra output 2": -double: 1 -idouble: 1 # sinh -Test "sinh (0.75)": -ildouble: 1 -Test "sinh (0x8p-32)": -ildouble: 1 -ldouble: 1 Test "sinh (0xcp-4)": ildouble: 1 @@ -11902,89 +10056,31 @@ ldouble: 1 Test "sinh_downward (0xcp-4)": float: 1 ildouble: 1 -Test "sinh_downward (22)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "sinh_downward (23)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "sinh_downward (24)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 # sinh_tonearest Test "sinh_tonearest (0xcp-4)": ildouble: 1 # sinh_towardzero -Test "sinh_towardzero (0x1.6p+4)": -ildouble: 1 -ldouble: 1 Test "sinh_towardzero (0x1.7p+4)": ildouble: 1 ldouble: 1 -Test "sinh_towardzero (0x1.8p+4)": -ildouble: 1 -ldouble: 1 Test "sinh_towardzero (0x8p-32)": ildouble: 1 ldouble: 1 Test "sinh_towardzero (0xcp-4)": float: 1 ildouble: 1 -Test "sinh_towardzero (22)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "sinh_towardzero (23)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "sinh_towardzero (24)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 # sinh_upward Test "sinh_upward (0x1.6p+4)": ildouble: 1 ldouble: 1 -Test "sinh_upward (0x1.7p+4)": -ildouble: 1 -ldouble: 1 Test "sinh_upward (0x8p-32)": double: 1 float: 1 Test "sinh_upward (0xcp-4)": float: 1 -ildouble: 2 -ldouble: 1 -Test "sinh_upward (22)": -ildouble: 1 -ldouble: 1 -Test "sinh_upward (23)": -ildouble: 1 -ldouble: 1 -Test "sinh_upward (24)": -double: 1 -idouble: 1 # tan Test "tan (-0xc.90fdbp-4)": @@ -12008,9 +10104,6 @@ ifloat: 1 Test "tan (0x1p+0)": ildouble: 1 ldouble: 1 -Test "tan (0x1p16383)": -ildouble: 1 -ldouble: 1 Test "tan (0x2.1e19e0c9bab24p+72)": ildouble: 1 ldouble: 1 @@ -12043,12 +10136,6 @@ ifloat: 1 Test "tan (0xc.94p-4)": float: 1 ifloat: 1 -Test "tan (1e22)": -ildouble: 1 -ldouble: 1 -Test "tan (pi/4)": -float: 1 -ifloat: 1 # tan_downward Test "tan_downward (-0x2p+64)": @@ -12213,39 +10300,6 @@ ifloat: 1 Test "tan_downward (0xcp-4)": double: 1 idouble: 1 -Test "tan_downward (1)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "tan_downward (10)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_downward (2)": -float: 1 -ifloat: 1 -Test "tan_downward (3)": -ildouble: 1 -ldouble: 1 -Test "tan_downward (4)": -float: 1 -ifloat: 1 -Test "tan_downward (5)": -ildouble: 1 -ldouble: 1 -Test "tan_downward (6)": -float: 1 -ifloat: 1 -Test "tan_downward (8)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_downward (9)": -float: 1 -ifloat: 1 # tan_tonearest Test "tan_tonearest (-0xc.90fdbp-4)": @@ -12301,17 +10355,6 @@ ifloat: 1 Test "tan_tonearest (0xc.94p-4)": float: 1 ifloat: 1 -Test "tan_tonearest (1)": -ildouble: 1 -ldouble: 1 -Test "tan_tonearest (2)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_tonearest (8)": -ildouble: 1 -ldouble: 1 # tan_towardzero Test "tan_towardzero (-0x2p+64)": @@ -12408,34 +10451,6 @@ idouble: 1 Test "tan_towardzero (0xf.fffffp+124)": double: 1 idouble: 1 -Test "tan_towardzero (1)": -ildouble: 1 -ldouble: 1 -Test "tan_towardzero (10)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_towardzero (2)": -ildouble: 1 -ldouble: 1 -Test "tan_towardzero (3)": -float: 1 -ifloat: 1 -Test "tan_towardzero (4)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_towardzero (5)": -float: 1 -ifloat: 1 -Test "tan_towardzero (6)": -ildouble: 1 -ldouble: 1 -Test "tan_towardzero (9)": -ildouble: 1 -ldouble: 1 # tan_upward Test "tan_upward (-0xc.908p-4)": @@ -12606,53 +10621,11 @@ idouble: 1 Test "tan_upward (0xf.fffffp+124)": double: 1 idouble: 1 -Test "tan_upward (1)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_upward (10)": -ildouble: 1 -ldouble: 1 -Test "tan_upward (2)": -ildouble: 1 -ldouble: 1 -Test "tan_upward (3)": -float: 1 -ifloat: 1 -Test "tan_upward (5)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "tan_upward (6)": -ildouble: 1 -ldouble: 1 -Test "tan_upward (8)": -ildouble: 1 -ldouble: 1 -Test "tan_upward (9)": -ildouble: 1 -ldouble: 1 - -# tgamma -Test "tgamma (-0.5)": -double: 1 -idouble: 1 -Test "tgamma (-0x0.ffffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x1.000002p+0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x1.000002p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x1.0a32a2p+5)": + +# tgamma +Test "tgamma (-0x1.000002p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 Test "tgamma (-0x1.3ffffep+4)": @@ -12669,11 +10642,6 @@ ldouble: 1 Test "tgamma (-0x1.4000000000001p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x1.5800000080001p+7)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 Test "tgamma (-0x1.8p+0)": float: 1 ifloat: 1 @@ -12710,67 +10678,20 @@ ldouble: 1 Test "tgamma (-0x1.fffffffffffffp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.fffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x13.ffffep0)": -float: 1 -ifloat: 1 -Test "tgamma (-0x13.ffffffffffffffep0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x13.ffffffffffffp0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x14.000000000001p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x1d.ffffep0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x1d.ffffffffffffffep0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x1e.000000000000002p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x1e.00002p0)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x1f4.00000000000002p0)": -ildouble: 3 -ldouble: 3 Test "tgamma (-0x1p-24)": ildouble: 1 ldouble: 1 Test "tgamma (-0x2.0000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.0000000000000004p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x2.0000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.0000000000002p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x2.000004p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.000004p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x2.146544p+4)": ildouble: 1 ldouble: 1 @@ -12832,70 +10753,12 @@ ldouble: 1 Test "tgamma (-0x2.fffffcp+0)": double: 1 idouble: 1 -Test "tgamma (-0x2.fffffcp0)": -double: 1 -idouble: 1 -Test "tgamma (-0x27.ffffcp0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x27.fffffffffffep0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x28.000000000002p0)": -double: 1 -idouble: 1 -Test "tgamma (-0x28.00004p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x28.ffffcp0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x28.fffffffffffep0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x28.ffffffffffffffcp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x29.000000000000004p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x29.000000000002p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x29.00004p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x29.ffffcp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x2a.00004p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x2ed.fffffffffffffcp0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x3.0000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3.0000000000002p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x3.000004p+0)": double: 1 idouble: 1 -Test "tgamma (-0x3.000004p0)": -double: 1 -idouble: 1 Test "tgamma (-0x3.1fffffffffffep+4)": double: 1 idouble: 1 @@ -12928,50 +10791,18 @@ ldouble: 1 Test "tgamma (-0x3.fffffcp+0)": float: 1 ifloat: 1 -Test "tgamma (-0x3.fffffcp0)": -float: 1 -ifloat: 1 Test "tgamma (-0x3.ffffffffffffep+0)": double: 1 idouble: 1 -Test "tgamma (-0x3.ffffffffffffep0)": -double: 1 -idouble: 1 Test "tgamma (-0x3.fffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3.fffffffffffffffcp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x31.fffffffffffep0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x32.000000000000004p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x32.000000000002p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x3e7.fffffffffffffcp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x3e8.00000000000004p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x4.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x4.000008p+0)": float: 2 ifloat: 2 -Test "tgamma (-0x4.000008p0)": -float: 2 -ifloat: 2 Test "tgamma (-0x4.8p+0)": ildouble: 1 ldouble: 1 @@ -12989,42 +10820,20 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.fffff8p0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x4.ffffffffffffcp+0)": double: 1 idouble: 1 -Test "tgamma (-0x4.ffffffffffffcp0)": -double: 1 -idouble: 1 -Test "tgamma (-0x4e2.00000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x5.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x5.0000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.0000000000004p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x5.000008p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.000008p0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x5.8p+0)": float: 1 ifloat: 1 @@ -13045,32 +10854,15 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x5.fffff8p0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "tgamma (-0x5.ffffffffffffcp+0)": double: 1 idouble: 1 -Test "tgamma (-0x5.ffffffffffffcp0)": -double: 1 -idouble: 1 -Test "tgamma (-0x5db.fffffffffffff8p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x6.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x6.000008p+0)": double: 1 idouble: 1 -Test "tgamma (-0x6.000008p0)": -double: 1 -idouble: 1 Test "tgamma (-0x6.3ffff8p+4)": double: 1 idouble: 1 @@ -13106,56 +10898,19 @@ idouble: 2 ifloat: 1 ildouble: 2 ldouble: 2 -Test "tgamma (-0x6.fffff8p0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 Test "tgamma (-0x6.ffffffffffffcp+0)": double: 3 idouble: 3 ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.ffffffffffffcp0)": -double: 3 -idouble: 3 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x63.fffffffffffcp0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x63.ffffffffffffff8p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x64.000000000000008p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x64.000000000004p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x6d6.00000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x7.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x7.0000000000004p+0)": double: 4 idouble: 4 ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.0000000000004p0)": -double: 4 -idouble: 4 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x7.000008p+0)": double: 1 float: 1 @@ -13163,13 +10918,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.000008p0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x7.8p+0)": double: 2 idouble: 2 @@ -13180,39 +10928,20 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.fffff8p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x7.ffffffffffffcp+0)": double: 2 idouble: 2 -Test "tgamma (-0x7.ffffffffffffcp0)": -double: 2 -idouble: 2 Test "tgamma (-0x7.fffffffffffffff8p+0)": ildouble: 4 ldouble: 4 -Test "tgamma (-0x7.fffffffffffffff8p0)": -ildouble: 4 -ldouble: 4 Test "tgamma (-0x8.000000000000001p+0)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x8.000000000000001p0)": -ildouble: 2 -ldouble: 2 Test "tgamma (-0x8.00001p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x8.00001p0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x8.8p+0)": double: 1 float: 1 @@ -13245,34 +10974,12 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x9.ffffffffffff8p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x95.fffffffffff8p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x95.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x96.000000000008p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0xa.000000000000001p+0)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xa.000000000000001p0)": -ildouble: 2 -ldouble: 2 Test "tgamma (-0xa.0000000000008p+0)": double: 1 idouble: 1 -Test "tgamma (-0xa.0000000000008p0)": -double: 1 -idouble: 1 Test "tgamma (-0xa.00001p+0)": double: 1 float: 1 @@ -13280,13 +10987,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0xa.00001p0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0xa.c000000400008p+4)": double: 1 idouble: 1 @@ -13366,54 +11066,6 @@ ldouble: 1 Test "tgamma (-0xb.f000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb4.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb5.00000000000001p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb5.000000000008p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0xb5.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb6.00000000000001p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb6.fffffffffff8p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb6.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb7.fffffffffff8p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb7.ffffffffffffffp0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0xb8.000000000008p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xbb.ffffffffffffffp0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0xbc.00000000000001p0)": -ildouble: 3 -ldouble: 3 -Test "tgamma (-0xbd.00000000000001p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xbe.00000000000001p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xbe.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xbf.00000000000001p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0xf.9fffffffffff8p+4)": ildouble: 1 ldouble: 1 @@ -13432,52 +11084,6 @@ ldouble: 1 Test "tgamma (-0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xf9.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xfa.00000000000001p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-1.5)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-2.5)": -double: 1 -idouble: 1 -Test "tgamma (-4.5)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-5.5)": -float: 1 -ifloat: 1 -Test "tgamma (-6.5)": -float: 1 -ifloat: 1 -Test "tgamma (-7.5)": -double: 2 -idouble: 2 -ildouble: 1 -ldouble: 1 -Test "tgamma (-8.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-9.5)": -ildouble: 2 -ldouble: 2 -Test "tgamma (0.5)": -float: 1 -ifloat: 1 -Test "tgamma (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "tgamma (0x1.28p+4)": ildouble: 1 ldouble: 1 @@ -13507,36 +11113,21 @@ ifloat: 1 Test "tgamma (0x1.fffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x1.fffffep0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x1.fffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x1.fffffffffffffffep0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x1p-24)": float: 1 ifloat: 1 -Test "tgamma (0x1p-53)": -double: 1 -idouble: 1 Test "tgamma (0x1p-64)": ildouble: 1 ldouble: 1 Test "tgamma (0x2.0000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x2.0000000000002p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x2.000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x2.000004p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x2.08p+4)": ildouble: 1 ldouble: 1 @@ -13554,23 +11145,12 @@ float: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (0x2.fffffcp0)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 Test "tgamma (0x2.ffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x2.ffffffffffffep0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x3.0000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x3.0000000000002p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x3.8p+0)": float: 1 ifloat: 1 @@ -13582,32 +11162,18 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x3.fffffcp0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (0x3.fffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x3.fffffffffffffffcp0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x3p+0)": float: 1 ifloat: 1 Test "tgamma (0x4.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x4.000008p+0)": float: 1 ifloat: 1 -Test "tgamma (0x4.000008p0)": -float: 1 -ifloat: 1 Test "tgamma (0x4.8p+0)": double: 1 idouble: 1 @@ -13616,63 +11182,35 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x4.fffff8p0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (0x4.fffffffffffffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.fffffffffffffff8p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x4p+0)": float: 1 ifloat: 1 Test "tgamma (0x5.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x5.000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x5.8p+0)": ildouble: 1 ldouble: 1 Test "tgamma (0x5.fffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.fffff8p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x5.ffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.ffffffffffffcp0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x6.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x6.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x6.000008p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x6.000008p0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (0x6.8p+0)": ildouble: 1 ldouble: 1 @@ -13686,35 +11224,17 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x6.fffff8p0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (0x6.ffffffffffffcp+0)": double: 3 idouble: 3 -Test "tgamma (0x6.ffffffffffffcp0)": -double: 3 -idouble: 3 Test "tgamma (0x7.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x7.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x7.0000000000004p+0)": double: 4 idouble: 4 ildouble: 1 ldouble: 1 -Test "tgamma (0x7.0000000000004p0)": -double: 4 -idouble: 4 -ildouble: 1 -ldouble: 1 Test "tgamma (0x7.000008p+0)": double: 1 float: 1 @@ -13722,223 +11242,90 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x7.000008p0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (0x7.8p+0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (0x7.fffff8p+0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (0x7.fffff8p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (0x7.ffffffffffffcp+0)": -double: 2 -idouble: 2 -Test "tgamma (0x7.ffffffffffffcp0)": -double: 2 -idouble: 2 -Test "tgamma (0x7.fffffffffffffff8p+0)": -ildouble: 3 -ldouble: 3 -Test "tgamma (0x7.fffffffffffffff8p0)": -ildouble: 3 -ldouble: 3 -Test "tgamma (0x8.000000000000001p+0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (0x8.000000000000001p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (0x8.0000000000008p+0)": -double: 1 -idouble: 1 -Test "tgamma (0x8.0000000000008p0)": -double: 1 -idouble: 1 -Test "tgamma (0x8.00001p+0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (0x8.00001p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (0x8.8p+0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "tgamma (0x8p+0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (0x8p-4)": -float: 1 -ifloat: 1 -Test "tgamma (0x8p-56)": -double: 1 -idouble: 1 -Test "tgamma (0x9.8p+0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (0x9p+0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (0xa.b9fd72b0fb238p+4)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "tgamma (0xa.b9fd72b0fb23a9dp+4)": -ildouble: 1 -ldouble: 1 -Test "tgamma (0xa.b9fd72b0fb23a9ep+4)": -ildouble: 1 -ldouble: 1 -Test "tgamma (0xa.b9fd7p+4)": -ildouble: 1 -ldouble: 1 -Test "tgamma (0xa.b9fd8p+4)": -ildouble: 1 -ldouble: 1 -Test "tgamma (0xap+0)": -double: 1 -idouble: 1 -Test "tgamma (0xb.333333333333p-4)": -ildouble: 1 -ldouble: 1 -Test "tgamma (10)": -double: 1 -idouble: 1 -Test "tgamma (18.5)": -ildouble: 1 -ldouble: 1 -Test "tgamma (19.5)": -double: 1 -idouble: 1 -Test "tgamma (2.5)": -float: 1 -ifloat: 1 -Test "tgamma (23.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (29.5)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (3)": -float: 1 -ifloat: 1 -Test "tgamma (3.5)": -float: 1 -ifloat: 1 -Test "tgamma (30.5)": -float: 1 -ifloat: 1 -Test "tgamma (31.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (32.5)": -ildouble: 1 -ldouble: 1 -Test "tgamma (34.5)": -ildouble: 1 -ldouble: 1 -Test "tgamma (4)": +Test "tgamma (0x7.8p+0)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "tgamma (4.5)": -double: 1 -idouble: 1 -Test "tgamma (5.5)": ildouble: 1 ldouble: 1 -Test "tgamma (6.5)": +Test "tgamma (0x7.fffff8p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (7.5)": +Test "tgamma (0x7.ffffffffffffcp+0)": double: 2 -float: 1 idouble: 2 -ifloat: 1 +Test "tgamma (0x7.fffffffffffffff8p+0)": +ildouble: 3 +ldouble: 3 +Test "tgamma (0x8.000000000000001p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (8)": +Test "tgamma (0x8.0000000000008p+0)": +double: 1 +idouble: 1 +Test "tgamma (0x8.00001p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (8.5)": +Test "tgamma (0x8.8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "tgamma (9)": +Test "tgamma (0x8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (9.5)": +Test "tgamma (0x8p-4)": +float: 1 +ifloat: 1 +Test "tgamma (0x8p-56)": +double: 1 +idouble: 1 +Test "tgamma (0x9.8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# y0 -Test "y0 (0.125)": +Test "tgamma (0x9p+0)": ildouble: 1 ldouble: 1 -Test "y0 (0.75)": +Test "tgamma (0xa.b9fd72b0fb238p+4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "y0 (0x1.3ffp+74)": -float: 1 -ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "tgamma (0xa.b9fd72b0fb23a9dp+4)": ildouble: 1 ldouble: 1 -Test "y0 (0x1.ff00000000002p+840)": -double: 1 -idouble: 1 -Test "y0 (0x1p+0)": +Test "tgamma (0xa.b9fd72b0fb23a9ep+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0xa.b9fd7p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0xa.b9fd8p+4)": ildouble: 1 ldouble: 1 -Test "y0 (0x1p-10)": +Test "tgamma (0xap+0)": +double: 1 +idouble: 1 +Test "tgamma (0xb.333333333333p-4)": ildouble: 1 ldouble: 1 -Test "y0 (0x1p-30)": + +# y0 +Test "y0 (0x1.ff00000000002p+840)": double: 1 idouble: 1 +Test "y0 (0x1p+0)": ildouble: 1 ldouble: 1 Test "y0 (0x1p-40)": @@ -13949,15 +11336,9 @@ ifloat: 1 Test "y0 (0x1p-60)": double: 1 idouble: 1 -Test "y0 (0x1p-70)": -double: 1 -idouble: 1 Test "y0 (0x1p-80)": double: 1 idouble: 1 -Test "y0 (0x1p16382)": -ildouble: 1 -ldouble: 1 Test "y0 (0x2p-4)": ildouble: 1 ldouble: 1 @@ -14000,43 +11381,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "y0 (1.0)": -ildouble: 1 -ldouble: 1 -Test "y0 (10.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "y0 (8.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # y1 -Test "y1 (0.125)": -ildouble: 1 -ldouble: 1 -Test "y1 (0x1.001000001p+593)": -ildouble: 2 -ldouble: 2 -Test "y1 (0x1.27e204p+99)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "y1 (0x1p-10)": -float: 1 -ifloat: 1 -Test "y1 (0x1p1023)": -double: 1 -idouble: 1 -Test "y1 (0x1p16382)": -ildouble: 1 -ldouble: 1 Test "y1 (0x2.002000002p+592)": ildouble: 2 ldouble: 2 @@ -14084,37 +11430,11 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "y1 (10.0)": -double: 2 -float: 2 -idouble: 2 -ifloat: 2 -Test "y1 (2.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "y1 (8.0)": -float: 2 -ifloat: 2 # yn Test "yn (-10, 0x1p+0)": float: 2 ifloat: 2 -Test "yn (-10, 1.0)": -float: 2 -ifloat: 2 -Test "yn (0, 0.125)": -ildouble: 1 -ldouble: 1 -Test "yn (0, 0.75)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "yn (0, 0x1p+0)": ildouble: 1 ldouble: 1 @@ -14136,22 +11456,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "yn (0, 1.0)": -ildouble: 1 -ldouble: 1 -Test "yn (0, 10.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "yn (0, 8.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "yn (1, 0.125)": -ildouble: 1 -ldouble: 1 Test "yn (1, 0x2p+0)": double: 1 float: 2 @@ -14170,31 +11474,6 @@ double: 2 float: 2 idouble: 2 ifloat: 2 -Test "yn (1, 10.0)": -double: 2 -float: 2 -idouble: 2 -ifloat: 2 -Test "yn (1, 2.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "yn (1, 8.0)": -float: 2 -ifloat: 2 -Test "yn (10, 0.125)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "yn (10, 0.75)": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 Test "yn (10, 0x1p+0)": float: 2 ifloat: 2 @@ -14225,25 +11504,6 @@ float: 1 ifloat: 1 ildouble: 4 ldouble: 4 -Test "yn (10, 1.0)": -float: 2 -ifloat: 2 -Test "yn (10, 10.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "yn (10, 2.0)": -float: 3 -ifloat: 3 -Test "yn (2, 0x1.ffff62p+99)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "yn (2, 0x1p127)": -float: 2 -ifloat: 2 Test "yn (2, 0x8p+124)": float: 2 ifloat: 2 @@ -14257,14 +11517,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "yn (3, 0.125)": -ildouble: 1 -ldouble: 1 -Test "yn (3, 0.75)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 Test "yn (3, 0x2p+0)": float: 1 ifloat: 1 @@ -14281,14 +11533,6 @@ double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "yn (3, 10.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "yn (3, 2.0)": -float: 1 -ifloat: 1 # Maximal error of functions: Function: "acos": @@ -14296,10 +11540,6 @@ ildouble: 1 ldouble: 1 Function: "acos_downward": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 @@ -14308,16 +11548,10 @@ ildouble: 1 ldouble: 1 Function: "acos_towardzero": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 Function: "acos_upward": -double: 1 -idouble: 1 ildouble: 1 ldouble: 1 @@ -14520,18 +11754,12 @@ ildouble: 1 ldouble: 1 Function: "cos": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 ildouble: 1 ldouble: 1 Function: "cos_downward": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 2 ldouble: 2 @@ -14541,17 +11769,13 @@ ldouble: 1 Function: "cos_towardzero": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 Function: "cos_upward": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 2 ldouble: 2 @@ -14561,7 +11785,6 @@ ldouble: 2 Function: "cosh_downward": double: 1 -float: 1 idouble: 1 ifloat: 1 ildouble: 2 @@ -14573,11 +11796,10 @@ ldouble: 2 Function: "cosh_towardzero": double: 1 -float: 1 idouble: 1 ifloat: 1 ildouble: 2 -ldouble: 3 +ldouble: 2 Function: "cosh_upward": double: 1 @@ -14846,25 +12068,13 @@ ldouble: 1 Function: "exp_downward": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 Function: "exp_towardzero": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 Function: "exp_upward": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 @@ -14902,15 +12112,13 @@ ldouble: 2 Function: "gamma": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "hypot": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 @@ -14932,29 +12140,25 @@ ldouble: 1 Function: "jn": double: 2 -float: 4 +float: 3 idouble: 2 -ifloat: 4 +ifloat: 3 ildouble: 4 ldouble: 4 Function: "lgamma": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "log": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 Function: "log10": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 @@ -15000,9 +12204,7 @@ ldouble: 1 Function: "sin_downward": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 2 ldouble: 2 @@ -15012,71 +12214,53 @@ ldouble: 1 Function: "sin_towardzero": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 Function: "sin_upward": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 2 ldouble: 2 Function: "sincos": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 Function: "sinh": ildouble: 1 -ldouble: 1 Function: "sinh_downward": -double: 1 float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 1 +ldouble: 1 Function: "sinh_tonearest": ildouble: 1 Function: "sinh_towardzero": -double: 1 float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 1 +ldouble: 1 Function: "sinh_upward": double: 1 float: 1 -idouble: 1 -ildouble: 2 +ildouble: 1 ldouble: 1 Function: "tan": -double: 1 float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: "tan_downward": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 +ifloat: 1 ildouble: 1 ldouble: 1 diff --git a/sysdeps/x86_64/fpu/libm-test-ulps b/sysdeps/x86_64/fpu/libm-test-ulps index 9c3b1b769e..91e24173ce 100644 --- a/sysdeps/x86_64/fpu/libm-test-ulps +++ b/sysdeps/x86_64/fpu/libm-test-ulps @@ -1,40 +1,14 @@ # Begin of automatic generation # acos -Test "acos (0.75)": -ildouble: 1 -ldouble: 1 Test "acos (0xcp-4)": ildouble: 1 ldouble: 1 # acos_downward -Test "acos_downward (-0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_downward (-0.5)": -double: 1 -idouble: 1 Test "acos_downward (-0x8p-4)": float: 1 ifloat: 1 -Test "acos_downward (-1)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_downward (0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_downward (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "acos_downward (0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 @@ -57,32 +31,9 @@ ildouble: 1 ldouble: 1 # acos_towardzero -Test "acos_towardzero (-0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_towardzero (-0.5)": -double: 1 -idouble: 1 Test "acos_towardzero (-0x8p-4)": float: 1 ifloat: 1 -Test "acos_towardzero (-1)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_towardzero (0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "acos_towardzero (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "acos_towardzero (0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 @@ -106,9 +57,6 @@ idouble: 1 Test "acos_upward (-0)": double: 1 idouble: 1 -Test "acos_upward (-0.5)": -ildouble: 1 -ldouble: 1 Test "acos_upward (-0x1p+0)": double: 1 idouble: 1 @@ -127,9 +75,6 @@ idouble: 1 Test "acos_upward (-0x8p-972)": double: 1 idouble: 1 -Test "acos_upward (0.5)": -ildouble: 1 -ldouble: 1 Test "acos_upward (0x1.70ef54646d496p-56)": double: 1 idouble: 1 @@ -170,12 +115,8 @@ double: 1 idouble: 1 Test "acosh (0xf.ffffffffffff8p+1020)": double: 1 -idouble: 1 # asin_downward -Test "asin_downward (-0.5)": -double: 1 -idouble: 1 Test "asin_downward (-0x1p+0)": double: 1 idouble: 1 @@ -209,22 +150,11 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "asin_downward (0.5)": -double: 1 -idouble: 1 Test "asin_downward (0x8p-4)": float: 1 ifloat: 1 -Test "asin_downward (1.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # asin_towardzero -Test "asin_towardzero (-0.5)": -double: 1 -idouble: 1 Test "asin_towardzero (-0x2p-16384)": ildouble: 1 ldouble: 1 @@ -266,22 +196,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "asin_towardzero (-1.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "asin_towardzero (0.5)": -double: 1 -idouble: 1 Test "asin_towardzero (0x8p-4)": float: 1 ifloat: 1 -Test "asin_towardzero (1.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # asin_upward Test "asin_upward (-0x2p-16384)": @@ -352,11 +269,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "asin_upward (-1.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "asin_upward (0x1p+0)": double: 1 idouble: 1 @@ -405,7 +317,6 @@ ldouble: 1 # asinh Test "asinh (-0xf.ffffffffffff8p+1020)": double: 1 -idouble: 1 Test "asinh (0x1p+100)": ildouble: 1 ldouble: 1 @@ -417,12 +328,8 @@ ildouble: 1 ldouble: 1 Test "asinh (0xf.ffffffffffff8p+1020)": double: 1 -idouble: 1 # atan2 -Test "atan2 (-0.75, -1.0)": -float: 1 -ifloat: 1 Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 @@ -441,12 +348,6 @@ ifloat: 1 Test "atan2 (-0xf.fffffp+124, -0x8p-152)": float: 1 ifloat: 1 -Test "atan2 (-max_value, -min_value)": -float: 1 -ifloat: 1 -Test "atan2 (0.75, -1.0)": -float: 1 -ifloat: 1 Test "atan2 (0x1.64p+0, 0xe.ep-4)": float: 1 ifloat: 1 @@ -459,9 +360,6 @@ ifloat: 1 Test "atan2 (0xf.fffffp+124, -0x8p-152)": float: 1 ifloat: 1 -Test "atan2 (1.390625, 0.9296875)": -float: 1 -ifloat: 1 # atanh Test "atanh (-0xcp-4)": @@ -469,11 +367,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "atanh (0.75)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "atanh (0x4p-4)": ildouble: 1 ldouble: 1 @@ -631,13 +524,9 @@ ldouble: 1 Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -894,9 +783,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacos (-0x1p-23 + 0x1.fp-129 i)": float: 1 ifloat: 1 @@ -917,9 +803,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacos (-0x1p-23 - 0x1.fp-129 i)": float: 1 ifloat: 1 @@ -996,8 +879,6 @@ ldouble: 1 Test "Imaginary part of: cacos (-1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -1012,8 +893,6 @@ ldouble: 1 Test "Imaginary part of: cacos (-1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -1188,16 +1067,12 @@ ldouble: 1 Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": ildouble: 1 ldouble: 1 Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -1390,9 +1265,6 @@ idouble: 1 Test "Imaginary part of: cacos (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.fp16383 + 0x1.fp16383 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 @@ -1413,9 +1285,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (0x1p-23 - 0.5 i)": float: 1 ifloat: 1 @@ -1424,9 +1293,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (0x1p-52 + 0.5 i)": float: 1 ifloat: 1 @@ -1472,8 +1338,6 @@ ldouble: 1 Test "Imaginary part of: cacos (1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -1496,8 +1360,6 @@ ldouble: 1 Test "Imaginary part of: cacos (1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacos (1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -1674,13 +1536,9 @@ ifloat: 1 Test "Real part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -1937,9 +1795,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacosh (-0x1p-23 + 0x1.fp-129 i)": float: 1 ifloat: 1 @@ -1960,9 +1815,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacosh (-0x1p-23 - 0x1.fp-129 i)": float: 1 ifloat: 1 @@ -2039,8 +1891,6 @@ ldouble: 1 Test "Real part of: cacosh (-1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -2055,8 +1905,6 @@ ldouble: 1 Test "Real part of: cacosh (-1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -2228,16 +2076,12 @@ ldouble: 1 Test "Real part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": ildouble: 1 ldouble: 1 Test "Real part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": ildouble: 1 ldouble: 1 @@ -2433,9 +2277,6 @@ idouble: 1 Test "Real part of: cacosh (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp16383 + 0x1.fp16383 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 @@ -2456,9 +2297,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (0x1p-23 - 0.5 i)": float: 1 ifloat: 1 @@ -2467,9 +2305,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cacosh (0x1p-52 + 0.5 i)": float: 1 ifloat: 1 @@ -2510,8 +2345,6 @@ ifloat: 1 Test "Real part of: cacosh (1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacosh (1.0 + 0x1.fp-10 i)": float: 2 ifloat: 2 @@ -2534,8 +2367,6 @@ ifloat: 1 Test "Real part of: cacosh (1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: cacosh (1.0 - 0x1.fp-10 i)": float: 2 ifloat: 2 @@ -2713,13 +2544,9 @@ ldouble: 1 Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -2784,52 +2611,28 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-100 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casin (-0x1.fp-100 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casin (-0x1.fp-1000 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x1.fp-1000 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x1.fp-10000 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1.fp-10000 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1.fp-1025 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 Test "Imaginary part of: casin (-0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x1.fp-1025 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 @@ -2848,9 +2651,6 @@ ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 + 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-129 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 + 1.0 i)": double: 1 float: 1 @@ -2871,9 +2671,6 @@ ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-129 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 - 1.0 i)": double: 1 float: 1 @@ -2938,9 +2735,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casin (-0x1p-23 - 0.5 i)": double: 1 float: 1 @@ -2959,9 +2753,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-0x1p-52 + 0.5 i)": float: 1 ifloat: 1 @@ -3016,8 +2807,6 @@ ldouble: 1 Test "Imaginary part of: casin (-1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -3037,8 +2826,6 @@ ldouble: 1 Test "Imaginary part of: casin (-1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -3173,13 +2960,9 @@ ldouble: 1 Test "Imaginary part of: casin (0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -3244,52 +3027,28 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-100 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casin (0x1.fp-100 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casin (0x1.fp-1000 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1.fp-1000 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1.fp-10000 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x1.fp-10000 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x1.fp-1025 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 Test "Imaginary part of: casin (0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1.fp-1025 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 @@ -3308,9 +3067,6 @@ ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 + 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-129 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 + 1.0 i)": double: 1 float: 1 @@ -3331,9 +3087,6 @@ ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-129 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 - 1.0 i)": double: 1 float: 1 @@ -3374,9 +3127,6 @@ idouble: 1 Test "Imaginary part of: casin (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp16383 + 0x1.fp16383 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 @@ -3407,9 +3157,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casin (0x1p-23 - 0.5 i)": double: 1 float: 1 @@ -3428,9 +3175,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (0x1p-52 + 0.5 i)": float: 1 ifloat: 1 @@ -3485,8 +3229,6 @@ ldouble: 1 Test "Imaginary part of: casin (1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -3506,8 +3248,6 @@ ldouble: 1 Test "Imaginary part of: casin (1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casin (1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -3690,9 +3430,6 @@ ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.000002p0 + 0x1p-23 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1p-23 i)": double: 1 float: 1 @@ -3707,9 +3444,6 @@ ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.000002p0 - 0x1p-23 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1p-23 i)": double: 1 float: 1 @@ -3718,13 +3452,9 @@ ifloat: 1 Test "Real part of: casinh (-0x1.fp-10 + 1.0 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-0x1.fp-10 - 1.0 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 @@ -3837,8 +3567,6 @@ ldouble: 1 Test "Real part of: casinh (-0x1p-52 + 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-0x1p-52 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -3848,8 +3576,6 @@ ldouble: 1 Test "Real part of: casinh (-0x1p-52 - 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-0x1p-52 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -3896,32 +3622,17 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-1000 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-1000 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-10000 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-1025 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-30 i)": double: 1 float: 1 @@ -3963,32 +3674,17 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-1000 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-1000 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-10000 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-1025 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-30 i)": double: 1 float: 1 @@ -4171,9 +3867,6 @@ ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.000002p0 + 0x1p-23 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 + 0x1p-23 i)": double: 1 float: 1 @@ -4188,9 +3881,6 @@ ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.000002p0 - 0x1p-23 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 - 0x1p-23 i)": double: 1 float: 1 @@ -4199,13 +3889,9 @@ ifloat: 1 Test "Real part of: casinh (0x1.fp-10 + 1.0 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (0x1.fp-10 - 1.0 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 @@ -4270,9 +3956,6 @@ idouble: 1 Test "Real part of: casinh (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1.fp16383 + 0x1.fp16383 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (0x1p-105 + 0.5 i)": double: 1 idouble: 1 @@ -4327,8 +4010,6 @@ ldouble: 1 Test "Real part of: casinh (0x1p-52 + 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (0x1p-52 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -4338,8 +4019,6 @@ ldouble: 1 Test "Real part of: casinh (0x1p-52 - 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (0x1p-52 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -4386,32 +4065,17 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-1000 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-1000 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-10000 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-1025 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-30 i)": double: 1 float: 1 @@ -4453,32 +4117,17 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-1000 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-1000 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-10000 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-1025 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-30 i)": double: 1 float: 1 @@ -4526,8 +4175,6 @@ ldouble: 1 Test "Imaginary part of: catan (-0x1.0000000000001p0 - 0x1p-27 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: catan (-0x1.000002p0 + 0x1p-126 i)": float: 1 ifloat: 1 @@ -4585,21 +4232,12 @@ ldouble: 1 Test "Imaginary part of: catan (-0x1p-1022 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-13 + 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catan (-0x1p-13 + 0x1.000002p0 i)": float: 1 ifloat: 1 Test "Real part of: catan (-0x1p-13 + 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1p-13 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (-0x1p-13 - 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catan (-0x1p-13 - 0x1.000002p0 i)": float: 1 ifloat: 1 @@ -4615,27 +4253,12 @@ ldouble: 1 Test "Imaginary part of: catan (-0x1p-16382 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-27 - 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (-0x1p-27 - 0x1.0000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (-0x1p-27 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-0x1p-33 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-33 + 0x1.0000000000000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-0x1p-33 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-33 - 0x1.0000000000000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-0x1p-54 + 1.0 i)": float: 1 ifloat: 1 @@ -4657,9 +4280,6 @@ ldouble: 1 Test "Real part of: catan (-1.0 + 0x1p-13 i)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-1.0 + 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-1.0 + 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4669,9 +4289,6 @@ ifloat: 1 Test "Imaginary part of: catan (-1.0 - 0x1p-13 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-1.0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (-1.0 - 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4697,8 +4314,6 @@ ldouble: 1 Test "Imaginary part of: catan (0x1.0000000000001p0 - 0x1p-27 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: catan (0x1.000002p0 + 0x1p-126 i)": float: 1 ifloat: 1 @@ -4756,21 +4371,12 @@ ldouble: 1 Test "Imaginary part of: catan (0x1p-1022 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-13 + 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catan (0x1p-13 + 0x1.000002p0 i)": float: 1 ifloat: 1 Test "Real part of: catan (0x1p-13 + 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (0x1p-13 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (0x1p-13 - 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catan (0x1p-13 - 0x1.000002p0 i)": float: 1 ifloat: 1 @@ -4786,27 +4392,12 @@ ldouble: 1 Test "Imaginary part of: catan (0x1p-16382 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-27 - 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (0x1p-27 - 0x1.0000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (0x1p-27 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (0x1p-33 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-33 + 0x1.0000000000000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (0x1p-33 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-33 - 0x1.0000000000000002p0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (0x1p-54 + 1.0 i)": float: 1 ifloat: 1 @@ -4828,9 +4419,6 @@ ldouble: 1 Test "Real part of: catan (1.0 + 0x1p-13 i)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (1.0 + 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (1.0 + 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4840,20 +4428,11 @@ ifloat: 1 Test "Imaginary part of: catan (1.0 - 0x1p-13 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (1.0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catan (1.0 - 0x1p-64 i)": ildouble: 1 ldouble: 1 # catanh -Test "Real part of: catanh (-0x0.fffffffffffff8p0 + 0x1p-27 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x0.fffffffffffff8p0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (-0x0.ffffffffffffffffp0 + 0x1p-1022 i)": ildouble: 1 ldouble: 1 @@ -4872,24 +4451,6 @@ ldouble: 1 Test "Real part of: catanh (-0x0.ffffffffffffffffp0 - 0x1p-33 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x0.ffffffp0 + 0x1p-13 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x0.ffffffp0 - 0x1p-13 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1.0000000000000002p0 + 0x1p-33 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1.0000000000000002p0 - 0x1p-33 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1.0000000000001p0 + 0x1p-27 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1.0000000000001p0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (-0x1.000002p0 + 0x1p-13 i)": float: 1 ifloat: 1 @@ -4955,19 +4516,9 @@ ifloat: 1 Test "Real part of: catanh (-0x1p-27 + 0x1.0000000000001p0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1p-27 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (-0x1p-27 - 0x1.0000000000001p0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1p-27 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (-0x1p-64 + 1.0 i)": ildouble: 1 ldouble: 1 @@ -4985,9 +4536,6 @@ ldouble: 1 Test "Imaginary part of: catanh (-1.0 + 0x1p-13 i)": float: 1 ifloat: 1 -Test "Real part of: catanh (-1.0 + 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (-1.0 + 0x1p-54 i)": float: 1 ifloat: 1 @@ -5008,9 +4556,6 @@ ldouble: 1 Test "Imaginary part of: catanh (-1.0 - 0x1p-13 i)": float: 1 ifloat: 1 -Test "Real part of: catanh (-1.0 - 0x1p-27 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (-1.0 - 0x1p-54 i)": float: 1 ifloat: 1 @@ -5044,18 +4589,6 @@ ldouble: 1 Test "Real part of: catanh (0x0.ffffffffffffffffp0 - 0x1p-33 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x0.ffffffp0 + 0x1p-13 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (0x0.ffffffp0 - 0x1p-13 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (0x1.0000000000000002p0 + 0x1p-33 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (0x1.0000000000000002p0 - 0x1p-33 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catanh (0x1.000002p0 + 0x1p-13 i)": float: 1 ifloat: 1 @@ -5116,18 +4649,12 @@ idouble: 1 Test "Real part of: catanh (0x1p-27 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-27 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (0x1p-27 - 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 Test "Real part of: catanh (0x1p-27 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-27 - 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: catanh (0x1p-33 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 @@ -5148,9 +4675,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (1.0 + 0x1p-13 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catanh (1.0 + 0x1p-13 i)": float: 1 ifloat: 1 @@ -5171,9 +4695,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (1.0 - 0x1p-13 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: catanh (1.0 - 0x1p-13 i)": float: 1 ifloat: 1 @@ -5188,9 +4709,6 @@ ildouble: 1 ldouble: 1 # cbrt -Test "cbrt (-0.001)": -ildouble: 1 -ldouble: 1 Test "cbrt (-0x1.bp+4)": double: 1 idouble: 1 @@ -5200,17 +4718,6 @@ ldouble: 1 Test "cbrt (-0x4.18937p-12)": float: 1 ifloat: 1 -Test "cbrt (-27.0)": -double: 1 -idouble: 1 -Test "cbrt (0.75)": -double: 1 -idouble: 1 -Test "cbrt (0.9921875)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "cbrt (0xcp-4)": double: 1 idouble: 1 @@ -5221,18 +4728,6 @@ ildouble: 1 ldouble: 1 # ccos -Test "Imaginary part of: ccos (-0.75 + 710.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccos (-0.75 + 89.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccos (-0.75 - 710.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccos (-0.75 - 89.5 i)": -float: 1 -ifloat: 1 Test "Imaginary part of: ccos (-0x2p+0 - 0x3p+0 i)": float: 1 ifloat: 1 @@ -5248,36 +4743,6 @@ idouble: 1 Test "Imaginary part of: ccos (-0xcp-4 - 0x5.98p+4 i)": float: 1 ifloat: 1 -Test "Imaginary part of: ccos (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: ccos (0.75 + 1.25 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (0.75 + 710.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccos (0.75 + 89.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccos (0.75 - 710.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccos (0.75 - 89.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccos (0x1p-1074 + 1440 i)": -double: 1 -idouble: 1 Test "Imaginary part of: ccos (0x4p-1076 + 0x5.ap+8 i)": double: 1 idouble: 1 @@ -5327,34 +4792,6 @@ ifloat: 1 Test "Imaginary part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": float: 1 ifloat: 1 -Test "Real part of: ccosh (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (-2 - 3 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccosh (-710.5 + 0.75 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccosh (-710.5 - 0.75 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccosh (-89.5 + 0.75 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (-89.5 - 0.75 i)": -float: 1 -ifloat: 1 -Test "Real part of: ccosh (0.75 + 1.25 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 Test "Imaginary part of: ccosh (0x1p-120 + 0x4p-16328 i)": ildouble: 1 ldouble: 1 @@ -5381,21 +4818,6 @@ ifloat: 1 Test "Imaginary part of: ccosh (0xcp-4 + 0x1.4p+0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: ccosh (1440 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccosh (710.5 + 0.75 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccosh (710.5 - 0.75 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccosh (89.5 + 0.75 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (89.5 - 0.75 i)": -float: 1 -ifloat: 1 # cexp Test "Imaginary part of: cexp (+0 + 0xf.ffffffffffff8p+1020 i)": @@ -5419,24 +4841,6 @@ ldouble: 1 Test "Imaginary part of: cexp (-0x5.fp+4 + 0xcp-4 i)": double: 1 idouble: 1 -Test "Real part of: cexp (-10000 + 0x1p16383 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cexp (-2.0 - 3.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cexp (-95 + 0.75 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cexp (-95 + 0.75 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cexp (0.75 + 1.25 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: cexp (0x1.f4p+8 + 0x8p+1020 i)": double: 1 idouble: 1 @@ -5478,41 +4882,6 @@ ifloat: 1 Test "Imaginary part of: cexp (0xcp-4 + 0x1.4p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (11356.5625 + 0.75 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cexp (1440 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (50 + 0x1p127 i)": -double: 2 -idouble: 2 -Test "Imaginary part of: cexp (50 + 0x1p127 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cexp (500 + 0x1p1023 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (709.8125 + 0.75 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cexp (709.8125 + 0.75 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (88.75 + 0.75 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cexp (88.75 + 0.75 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 # clog Test "Real part of: clog (+0 + 0x4p-1076 i)": @@ -5548,12 +4917,6 @@ idouble: 1 Test "Real part of: clog (-0x1.0000000123456p+0 + 0x8p-152 i)": double: 1 idouble: 1 -Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 1 -idouble: 1 -Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 1 -idouble: 1 Test "Real part of: clog (-0x1.000002p+0 + +0 i)": float: 1 ifloat: 1 @@ -5578,50 +4941,9 @@ ifloat: 1 Test "Imaginary part of: clog (-0x1.234566p-40 - 0x1p+0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog (-0x1.234566p-40 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1.fp+127 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (-0x1.fp+127 - 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (-0x1.fp+16383 + 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (-0x1.fp+16383 - 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: clog (-0x1p+0 + 0x4.8d15ap-32 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog (-0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1p-149 - 0x1.fp+127 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog (-0x1p-149 - 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1p-16445 + 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (-0x1p-16445 - 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: clog (-0x4p-1076 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 @@ -5696,12 +5018,6 @@ ldouble: 1 Test "Real part of: clog (-0xf.8p+16380 - 0x8p-16448 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x0.ffffffffffffffffp0 + 0x0.ffffffffffffffffp-15000 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x0.ffffffp0 + 0x0.ffffffp-100 i)": -float: 1 -ifloat: 1 Test "Real part of: clog (0x1.0000000000000012p+0 + +0 i)": ildouble: 1 ldouble: 1 @@ -5767,14 +5083,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.000566p0 + 0x1.234p-10 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.234566p-30 + 1.0 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c64p-4 i)": double: 1 idouble: 1 @@ -5881,61 +5189,10 @@ ldouble: 1 Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": double: 1 idouble: 1 -Test "Real part of: clog (0x1.fffffep+127 + 0x1.fffffep+127 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.fp+127 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1.fp+127 - 0x1p-149 i)": +Test "Real part of: clog (0x1p+0 + 0x4.8d1598p-12 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p+16383 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 - 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1p+0 + 0x4.8d1598p-12 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1p-1074 + 0x1p-1074 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1p-147 + 0x1p-147 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1p-149 + 0x1p-149 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1p-149 - 0x1.fp+127 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1p-16440 + +0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1p-16445 + 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1p-16445 - 0x1.fp+16383 i)": +Test "Real part of: clog (0x1p-16440 + +0 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": @@ -5988,12 +5245,6 @@ ldouble: 1 Test "Real part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x2818p-15 + 0x798fp-15 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x2dd46725bp-35 + 0x7783a1284p-35 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: clog (0x2p-148 + 0x2p-148 i)": float: 1 ifloat: 1 @@ -6915,9 +6166,6 @@ ifloat: 1 Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffp-104 i)": float: 1 ifloat: 1 -Test "Real part of: clog (1.0 + 0x1.234566p-10 i)": -float: 1 -ifloat: 1 # clog10 Test "Imaginary part of: clog10 (-0 + inf i)": @@ -7110,9 +6358,6 @@ ldouble: 1 Test "Real part of: clog10 (0x1.fp+16383 + 0x1.fp+16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 + 0x1p+16383 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: clog10 (0x1.fp+16383 + 0x1p-16445 i)": ildouble: 1 ldouble: 1 @@ -7131,8 +6376,6 @@ idouble: 1 Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": double: 1 idouble: 1 @@ -7324,14 +6567,6 @@ ifloat: 1 Test "cos (0x1.921fb4p+0)": ildouble: 1 ldouble: 1 -Test "cos (M_PI_6l * 2.0)": -double: 1 -idouble: 1 -Test "cos (M_PI_6l * 4.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 # cos_downward Test "cos_downward (-0x2p-16384)": @@ -7558,37 +6793,6 @@ ldouble: 1 Test "cos_downward (0xf.fffffp+124)": double: 1 idouble: 1 -Test "cos_downward (1)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (10)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_downward (2)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (3)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (4)": -float: 1 -ifloat: 1 -Test "cos_downward (5)": -float: 1 -ifloat: 1 -Test "cos_downward (7)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_downward (8)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (9)": -float: 1 -ifloat: 1 # cos_tonearest Test "cos_tonearest (0x1.921fb4p+0)": @@ -7760,35 +6964,6 @@ idouble: 1 Test "cos_towardzero (0xf.fffffp+124)": double: 1 idouble: 1 -Test "cos_towardzero (1)": -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (10)": -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (2)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (3)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (5)": -float: 1 -ifloat: 1 -Test "cos_towardzero (7)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (8)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # cos_upward Test "cos_upward (-0x2p+64)": @@ -7933,34 +7108,6 @@ ldouble: 1 Test "cos_upward (0xf.fffffffffffffffp+16380)": ildouble: 2 ldouble: 2 -Test "cos_upward (1)": -float: 1 -ifloat: 1 -Test "cos_upward (2)": -float: 1 -ifloat: 1 -Test "cos_upward (3)": -float: 1 -ifloat: 1 -Test "cos_upward (4)": -ildouble: 1 -ldouble: 1 -Test "cos_upward (5)": -ildouble: 1 -ldouble: 1 -Test "cos_upward (6)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_upward (8)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_upward (9)": -ildouble: 1 -ldouble: 1 # cosh Test "cosh (-0x1p+0)": @@ -8014,8 +7161,6 @@ idouble: 1 Test "cosh_downward (-0x5.96a7ep+4)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "cosh_downward (0x1.6p+4)": double: 1 idouble: 1 @@ -8042,23 +7187,6 @@ idouble: 1 Test "cosh_downward (0x5.96a7ep+4)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cosh_downward (22)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "cosh_downward (23)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cosh_downward (24)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # cosh_tonearest Test "cosh_tonearest (-0x1p+0)": @@ -8089,9 +7217,6 @@ idouble: 1 Test "cosh_tonearest (0x2.c679dp+8)": double: 1 idouble: 1 -Test "cosh_tonearest (22)": -ildouble: 1 -ldouble: 1 # cosh_towardzero Test "cosh_towardzero (-0x1p+0)": @@ -8099,8 +7224,6 @@ ildouble: 1 ldouble: 1 Test "cosh_towardzero (-0x2.c5d374p+12)": ldouble: 1 -Test "cosh_towardzero (-0x2.c5d37700c6bb03a4p+12)": -ldouble: 3 Test "cosh_towardzero (-0x2.c5d37700c6bbp+12)": ldouble: 2 Test "cosh_towardzero (-0x2.c5e3bp+8)": @@ -8115,13 +7238,11 @@ idouble: 1 Test "cosh_towardzero (-0x5.96a7ep+4)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "cosh_towardzero (0x1.6p+4)": double: 1 idouble: 1 -ildouble: 2 -ldouble: 2 +ildouble: 1 +ldouble: 1 Test "cosh_towardzero (0x1.7p+4)": double: 1 idouble: 1 @@ -8130,8 +7251,6 @@ ildouble: 1 ldouble: 1 Test "cosh_towardzero (0x2.c5d374p+12)": ldouble: 1 -Test "cosh_towardzero (0x2.c5d37700c6bb03a4p+12)": -ldouble: 3 Test "cosh_towardzero (0x2.c5d37700c6bbp+12)": ldouble: 2 Test "cosh_towardzero (0x2.c5e3bp+8)": @@ -8146,23 +7265,6 @@ idouble: 1 Test "cosh_towardzero (0x5.96a7ep+4)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cosh_towardzero (22)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "cosh_towardzero (23)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cosh_towardzero (24)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # cosh_upward Test "cosh_upward (-0x1p+0)": @@ -8172,11 +7274,6 @@ Test "cosh_upward (-0x2.c5d374p+12)": ldouble: 2 Test "cosh_upward (-0x2.c5d37700c6bb03a4p+12)": ldouble: 3 -Test "cosh_upward (-0x2.c5d37700c6bbp+12)": -ldouble: 3 -Test "cosh_upward (-0x2.c5e3acd2922a6p+8)": -ildouble: 1 -ldouble: 1 Test "cosh_upward (-0x2.c5e3bp+8)": double: 1 idouble: 1 @@ -8200,9 +7297,6 @@ ifloat: 2 Test "cosh_upward (0x1.6p+4)": ildouble: 1 ldouble: 1 -Test "cosh_upward (0x1.7p+4)": -ildouble: 1 -ldouble: 1 Test "cosh_upward (0x1.8p+4)": double: 1 idouble: 1 @@ -8210,11 +7304,6 @@ Test "cosh_upward (0x2.c5d374p+12)": ldouble: 2 Test "cosh_upward (0x2.c5d37700c6bb03a4p+12)": ldouble: 3 -Test "cosh_upward (0x2.c5d37700c6bbp+12)": -ldouble: 3 -Test "cosh_upward (0x2.c5e3acd2922a6p+8)": -ildouble: 1 -ldouble: 1 Test "cosh_upward (0x2.c5e3bp+8)": double: 1 idouble: 1 @@ -8238,39 +7327,8 @@ double: 1 float: 2 idouble: 1 ifloat: 2 -Test "cosh_upward (22)": -ildouble: 1 -ldouble: 1 -Test "cosh_upward (23)": -ildouble: 1 -ldouble: 1 # cpow -Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": -double: 1 -float: 4 -idouble: 1 -ifloat: 4 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": -double: 2 -float: 3 -idouble: 2 -ifloat: 3 -ildouble: 3 -ldouble: 3 Test "Real part of: cpow (0x2p+0 + +0 i, 0xap+0 + +0 i)": ildouble: 1 ldouble: 1 @@ -8311,21 +7369,6 @@ ldouble: 1 Test "Imaginary part of: cpow (0xcp-4 + 0x1.4p+0 i, 0xcp-4 + 0x1.4p+0 i)": ildouble: 2 ldouble: 2 -Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": -double: 1 -float: 5 -idouble: 1 -ifloat: 5 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": -float: 2 -ifloat: 2 -ildouble: 4 -ldouble: 4 # csin Test "Real part of: csin (-0.75 + 710.5 i)": @@ -8400,20 +7443,6 @@ float: 1 ifloat: 1 # csqrt -Test "Real part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: csqrt (-0x1.0000000000001p-1022 - 0x1.0000000000001p-1022 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: csqrt (-0x1.000002p-126 - 0x1.000002p-126 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: csqrt (-0x2p+0 + 0x3p+0 i)": float: 1 ifloat: 1 @@ -8457,55 +7486,6 @@ ldouble: 1 Test "Real part of: csqrt (-0x8p-152 - 0x8p-152 i)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-2 + 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: csqrt (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000001p-1022 + 0x1.0000000000001p-1022 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1.000002p-126 + 0x1.000002p-126 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffep+127 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fp+16383 + 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-1073 + 0x1p-1073 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-1074 + 0x1p-1074 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-147 + 0x1p-147 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-149 + 0x1p-149 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: csqrt (0x1p-16440 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -8638,45 +7618,25 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan (-2 - 3 i)": +Test "Real part of: ctan (0x1.921fb4p+0 + +0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan (-2 - 3 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan (0.75 + 1.25 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: ctan (0x1.921fb4p+0 + +0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": -double: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 float: 1 idouble: 1 ifloat: 1 @@ -8750,25 +7710,6 @@ ldouble: 1 Test "Real part of: ctan (0x1p+0 + 0x2.fp+4 i)": ildouble: 2 ldouble: 2 -Test "Real part of: ctan (0x1p1023 + 1 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan (0x1p1023 + 1 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: ctan (0x1p127 + 1 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan (0x1p127 + 1 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "Real part of: ctan (0x3.243f6cp-1 + 0 i)": -float: 1 -ifloat: 1 Test "Real part of: ctan (0x8p+1020 + 0x1p+0 i)": double: 1 idouble: 1 @@ -8806,12 +7747,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan (1 + 45 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: ctan (1 + 47 i)": -ildouble: 2 -ldouble: 2 # ctan_downward Test "Real part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": @@ -8855,9 +7790,6 @@ ldouble: 1 Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -8872,12 +7804,6 @@ double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": double: 1 idouble: 1 @@ -8926,18 +7852,6 @@ double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": double: 1 idouble: 1 @@ -9057,9 +7971,6 @@ ldouble: 1 Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-16448 i)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -9069,9 +7980,6 @@ ldouble: 1 Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -9106,14 +8014,6 @@ ldouble: 1 Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + +0 i)": float: 1 ifloat: 1 -Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -9232,12 +8132,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": double: 1 idouble: 1 @@ -9286,16 +8180,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -9434,12 +8318,6 @@ ldouble: 1 Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 @@ -9461,14 +8339,6 @@ ldouble: 2 Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + +0 i)": double: 1 idouble: 1 -Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 4 -ldouble: 4 Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": double: 1 idouble: 1 @@ -9519,18 +8389,6 @@ idouble: 2 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": double: 2 idouble: 2 @@ -9724,43 +8582,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctanh (-2 - 3 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (-2 - 3 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (0 + 0x3.243f6cp-1 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctanh (0 + M_PI_4l i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (0 + pi/4 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: ctanh (0.75 + 1.25 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: ctanh (0.75 + 1.25 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 Test "Real part of: ctanh (0x1p+0 + 0x8p+1020 i)": ildouble: 1 ldouble: 1 @@ -9880,28 +8701,6 @@ ifloat: 1 Test "Imaginary part of: ctanh (0xcp-4 + 0x1.4p+0 i)": float: 2 ifloat: 2 -Test "Real part of: ctanh (1 + 0x1p1023 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (1 + 0x1p1023 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: ctanh (1 + 0x1p127 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "Imaginary part of: ctanh (1 + 0x1p127 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctanh (45 + 1 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (47 + 1 i)": -ildouble: 2 -ldouble: 2 # ctanh_downward Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb4p+0 i)": @@ -9992,27 +8791,6 @@ idouble: 5 ifloat: 5 ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_downward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctanh_downward (0x2.dp+4 + 0x1p+0 i)": double: 1 idouble: 1 @@ -10194,20 +8972,6 @@ ldouble: 1 Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": double: 1 idouble: 1 -Test "Real part of: ctanh_tonearest (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -Test "Real part of: ctanh_tonearest (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctanh_tonearest (0x2.dp+4 + 0x1p+0 i)": ildouble: 1 ldouble: 1 @@ -10391,22 +9155,6 @@ double: 4 float: 2 idouble: 4 ifloat: 2 -Test "Real part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": double: 1 idouble: 1 @@ -10653,32 +9401,6 @@ idouble: 2 ifloat: 3 ildouble: 3 ldouble: 3 -Test "Real part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": -ildouble: 2 -ldouble: 2 Test "Real part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": double: 2 float: 1 @@ -10830,30 +9552,14 @@ ldouble: 1 Test "erf (0x1.4p+0)": double: 1 idouble: 1 -Test "erf (1.25)": -double: 1 -idouble: 1 # erfc Test "erfc (-0x8p-4)": float: 1 ifloat: 1 -Test "erfc (0.75)": -float: 1 -ifloat: 1 Test "erfc (0x1.4p+0)": ildouble: 1 ldouble: 1 -Test "erfc (0x1.f7303cp+1)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "erfc (0x1.ffa002p+2)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "erfc (0x2p+0)": double: 1 idouble: 1 @@ -10887,17 +9593,6 @@ ldouble: 1 Test "erfc (0x7.fffd6p+0)": float: 1 ifloat: 1 -Test "erfc (1.25)": -ildouble: 1 -ldouble: 1 -Test "erfc (2.0)": -double: 1 -idouble: 1 -Test "erfc (4.125)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 # exp10 Test "exp10 (-0x1.31p+8)": @@ -10909,18 +9604,6 @@ idouble: 1 Test "exp10 (-0x2.4p+4)": double: 1 idouble: 1 -Test "exp10 (-1)": -double: 1 -idouble: 1 -Test "exp10 (-305)": -double: 1 -idouble: 1 -Test "exp10 (-36)": -double: 1 -idouble: 1 -Test "exp10 (0.75)": -ildouble: 1 -ldouble: 1 Test "exp10 (0x2.4p+4)": double: 1 idouble: 1 @@ -10930,12 +9613,6 @@ idouble: 1 Test "exp10 (0xcp-4)": ildouble: 1 ldouble: 1 -Test "exp10 (3)": -double: 1 -idouble: 1 -Test "exp10 (36)": -double: 1 -idouble: 1 # exp10_downward Test "exp10_downward (0x1.348e45573a1dd72cp+8)": @@ -11007,17 +9684,9 @@ ildouble: 1 ldouble: 1 # exp_downward -Test "exp_downward (0x2.c5cp+8)": -ildouble: 1 -ldouble: 1 Test "exp_downward (0x2p+0)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "exp_downward (0x3.e8p+8)": -ildouble: 1 -ldouble: 1 Test "exp_downward (0x3p+0)": double: 1 idouble: 1 @@ -11027,56 +9696,11 @@ idouble: 1 Test "exp_downward (0xcp-4)": double: 1 idouble: 1 -Test "exp_downward (1)": -ildouble: 1 -ldouble: 1 -Test "exp_downward (2)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "exp_downward (3)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # exp_towardzero -Test "exp_towardzero (-0x2.e870a4p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.e870a7e5e88c1f0cp+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.e870a7e5e88c1f1p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.e870a7e5e88c2p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.e870a7e5e88cp+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.e870a8p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.ebe224p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (-0x2.ebe228p+8)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (0x2.c5cp+8)": -ildouble: 1 -ldouble: 1 Test "exp_towardzero (0x2p+0)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (0x3.e8p+8)": -ildouble: 1 -ldouble: 1 Test "exp_towardzero (0x3p+0)": double: 1 idouble: 1 @@ -11086,35 +9710,17 @@ idouble: 1 Test "exp_towardzero (0xcp-4)": double: 1 idouble: 1 -Test "exp_towardzero (1)": -ildouble: 1 -ldouble: 1 -Test "exp_towardzero (2)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "exp_towardzero (3)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # exp_upward Test "exp_upward (-0x2.e870a4p+8)": double: 1 idouble: 1 -Test "exp_upward (-0x2.e870a7e5e88c1f0cp+8)": -ildouble: 1 -ldouble: 1 Test "exp_upward (-0x2.e870a7e5e88c2p+8)": double: 1 idouble: 1 Test "exp_upward (-0x2.e870a7e5e88cp+8)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "exp_upward (-0x2.e870a8p+8)": double: 1 idouble: 1 @@ -11148,9 +9754,6 @@ ldouble: 1 Test "exp_upward (0x3.2p+4)": double: 1 idouble: 1 -Test "exp_upward (1)": -float: 1 -ifloat: 1 # expm1 Test "expm1 (-0x1p-64)": @@ -11162,12 +9765,6 @@ ldouble: 1 Test "expm1 (-0x4p-12)": ildouble: 1 ldouble: 1 -Test "expm1 (-45.0)": -ildouble: 1 -ldouble: 1 -Test "expm1 (0.75)": -double: 1 -idouble: 1 Test "expm1 (0x1.f4p+8)": double: 1 idouble: 1 @@ -11184,17 +9781,6 @@ ldouble: 1 Test "expm1 (0xcp-4)": double: 1 idouble: 1 -Test "expm1 (1)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "expm1 (11356.25)": -ildouble: 1 -ldouble: 1 -Test "expm1 (500.0)": -double: 1 -idouble: 1 # expm1_downward Test "expm1_downward (-0x1p-100)": @@ -11472,28 +10058,9 @@ float: 1 ifloat: 1 # gamma -Test "gamma (-0.5)": -ildouble: 1 -ldouble: 1 -Test "gamma (-0x1p-10)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "gamma (-0x1p-15)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "gamma (-0x1p-20)": double: 1 idouble: 1 -Test "gamma (-0x1p-30)": -ildouble: 1 -ldouble: 1 -Test "gamma (-0x1p-5)": -double: 1 -idouble: 1 Test "gamma (-0x2p-16)": double: 1 float: 1 @@ -11513,20 +10080,9 @@ ldouble: 1 Test "gamma (-0x8p-8)": double: 1 idouble: 1 -Test "gamma (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "gamma (0x1.3333333333334p+0)": ildouble: 1 ldouble: 1 -Test "gamma (0x1p-10)": -float: 1 -ifloat: 1 -Test "gamma (0x1p-30)": -double: 1 -idouble: 1 Test "gamma (0x1p-40)": ildouble: 1 ldouble: 1 @@ -11548,21 +10104,8 @@ idouble: 1 Test "gamma (0xb.33333p-4)": double: 1 idouble: 1 -Test "gamma (1.2)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 # hypot -Test "hypot (-0.7, -12.4)": -float: 1 -ifloat: 1 -Test "hypot (-0.7, 12.4)": -float: 1 -ifloat: 1 Test "hypot (-0xb.3333333333338p-4, -0xc.6666666666668p+0)": ildouble: 1 ldouble: 1 @@ -11599,18 +10142,6 @@ ldouble: 1 Test "hypot (-0xc.666666666666p+0, 0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "hypot (-12.4, -0.7)": -float: 1 -ifloat: 1 -Test "hypot (-12.4, 0.7)": -float: 1 -ifloat: 1 -Test "hypot (0.7, -12.4)": -float: 1 -ifloat: 1 -Test "hypot (0.7, 12.4)": -float: 1 -ifloat: 1 Test "hypot (0x1.23456789abcdef02p-500, 0x1.23456789abcdefp-500)": ildouble: 1 ldouble: 1 @@ -11659,17 +10190,8 @@ ldouble: 1 Test "hypot (0xc.666666666666p+0, 0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "hypot (12.4, -0.7)": -float: 1 -ifloat: 1 -Test "hypot (12.4, 0.7)": -float: 1 -ifloat: 1 # j0 -Test "j0 (-0x1.001000001p+593)": -ildouble: 2 -ldouble: 2 Test "j0 (-0x2.002000002p+592)": ildouble: 2 ldouble: 2 @@ -11687,22 +10209,6 @@ idouble: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "j0 (-4.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "j0 (0.75)": -float: 1 -ifloat: 1 -Test "j0 (0x1.d7ce3ap+107)": -float: 2 -ifloat: 2 -Test "j0 (0x1p16382)": -ildouble: 1 -ldouble: 1 Test "j0 (0x2p+0)": float: 2 ifloat: 2 @@ -11740,37 +10246,11 @@ idouble: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "j0 (10.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "j0 (2.0)": -float: 2 -ifloat: 2 -Test "j0 (4.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "j0 (8.0)": -float: 1 -ifloat: 1 # j1 -Test "j1 (0x1.3ffp+74)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "j1 (0x1.ff00000000002p+840)": double: 1 idouble: 1 -Test "j1 (0x1p16382)": -ildouble: 1 -ldouble: 1 Test "j1 (0x2p+0)": double: 1 idouble: 1 @@ -11798,17 +10278,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "j1 (10.0)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "j1 (2.0)": -double: 1 -idouble: 1 -Test "j1 (8.0)": -double: 1 -idouble: 1 # jn Test "jn (0, -0x4p+0)": @@ -11818,16 +10287,6 @@ idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "jn (0, -4.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "jn (0, 0.75)": -float: 1 -ifloat: 1 Test "jn (0, 0x2p+0)": float: 2 ifloat: 2 @@ -11849,24 +10308,6 @@ ifloat: 1 Test "jn (0, 0xcp-4)": float: 1 ifloat: 1 -Test "jn (0, 10.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "jn (0, 2.0)": -float: 2 -ifloat: 2 -Test "jn (0, 4.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "jn (0, 8.0)": -float: 1 -ifloat: 1 Test "jn (1, 0x2p+0)": double: 1 idouble: 1 @@ -11878,35 +10319,9 @@ float: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "jn (1, 10.0)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "jn (1, 2.0)": -double: 1 -idouble: 1 -Test "jn (1, 8.0)": -double: 1 -idouble: 1 Test "jn (10, -0x1p+0)": ildouble: 1 ldouble: 1 -Test "jn (10, -1.0)": -ildouble: 1 -ldouble: 1 -Test "jn (10, 0.125)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "jn (10, 0.75)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 Test "jn (10, 0x1p+0)": ildouble: 1 ldouble: 1 @@ -11936,35 +10351,6 @@ idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "jn (10, 1.0)": -ildouble: 1 -ldouble: 1 -Test "jn (10, 10.0)": -double: 4 -float: 3 -idouble: 4 -ifloat: 3 -ildouble: 2 -ldouble: 2 -Test "jn (10, 2.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "jn (2, 0x1.ffff62p+99)": -double: 2 -float: 2 -idouble: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "jn (2, 0x1p127)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "jn (2, 0x2.67a2a4p+0)": float: 1 ifloat: 1 @@ -12015,29 +10401,9 @@ idouble: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "jn (2, 2.4048255576957729)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "jn (3, -0x1p+0)": ildouble: 1 ldouble: 1 -Test "jn (3, -1.0)": -ildouble: 1 -ldouble: 1 -Test "jn (3, 0.125)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "jn (3, 0.75)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "jn (3, 0x1p+0)": ildouble: 1 ldouble: 1 @@ -12086,26 +10452,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "jn (3, 1.0)": -ildouble: 1 -ldouble: 1 -Test "jn (3, 10.0)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "jn (3, 2.0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "jn (3, 2.4048255576957729)": -double: 3 -idouble: 3 -ildouble: 1 -ldouble: 1 Test "jn (4, 0x2.67a2a4p+0)": float: 1 ifloat: 1 @@ -12130,11 +10476,6 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (4, 2.4048255576957729)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 Test "jn (5, 0x2.67a2a4p+0)": double: 1 float: 1 @@ -12159,13 +10500,6 @@ ldouble: 1 Test "jn (5, 0x2.67a2a8p+0)": float: 2 ifloat: 2 -Test "jn (5, 2.4048255576957729)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -ildouble: 3 -ldouble: 3 Test "jn (6, 0x2.67a2a4p+0)": double: 2 float: 1 @@ -12194,13 +10528,6 @@ idouble: 2 ifloat: 3 ildouble: 1 ldouble: 1 -Test "jn (6, 2.4048255576957729)": -double: 4 -float: 3 -idouble: 4 -ifloat: 3 -ildouble: 1 -ldouble: 1 Test "jn (7, 0x2.67a2a4p+0)": double: 2 float: 1 @@ -12225,11 +10552,6 @@ double: 2 float: 3 idouble: 2 ifloat: 3 -Test "jn (7, 2.4048255576957729)": -double: 3 -float: 5 -idouble: 3 -ifloat: 5 Test "jn (8, 0x2.67a2a4p+0)": double: 2 float: 2 @@ -12250,16 +10572,9 @@ idouble: 2 ifloat: 4 ildouble: 1 ldouble: 1 -Test "jn (8, 2.4048255576957729)": +Test "jn (9, 0x2.67a2a4p+0)": double: 3 -float: 2 -idouble: 3 -ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "jn (9, 0x2.67a2a4p+0)": -double: 3 -float: 3 +float: 3 idouble: 3 ifloat: 3 ildouble: 2 @@ -12279,37 +10594,11 @@ idouble: 3 ifloat: 3 ildouble: 3 ldouble: 3 -Test "jn (9, 2.4048255576957729)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 2 -ldouble: 2 # lgamma -Test "lgamma (-0.5)": -ildouble: 1 -ldouble: 1 -Test "lgamma (-0x1p-10)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "lgamma (-0x1p-15)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "lgamma (-0x1p-20)": double: 1 idouble: 1 -Test "lgamma (-0x1p-30)": -ildouble: 1 -ldouble: 1 -Test "lgamma (-0x1p-5)": -double: 1 -idouble: 1 Test "lgamma (-0x2p-16)": double: 1 float: 1 @@ -12329,20 +10618,9 @@ ldouble: 1 Test "lgamma (-0x8p-8)": double: 1 idouble: 1 -Test "lgamma (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "lgamma (0x1.3333333333334p+0)": ildouble: 1 ldouble: 1 -Test "lgamma (0x1p-10)": -float: 1 -ifloat: 1 -Test "lgamma (0x1p-30)": -double: 1 -idouble: 1 Test "lgamma (0x1p-40)": ildouble: 1 ldouble: 1 @@ -12364,36 +10642,16 @@ idouble: 1 Test "lgamma (0xb.33333p-4)": double: 1 idouble: 1 -Test "lgamma (1.2)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 # log -Test "log (0x2.b7e154p+0)": -ildouble: 1 -ldouble: 1 Test "log (0x2.b7e15p+0)": float: 1 ifloat: 1 -Test "log (0x5.e2d58d8b3bcdf1bp-4)": -ildouble: 1 -ldouble: 1 Test "log (0x5.e2d59p-4)": ildouble: 1 ldouble: 1 # log10 -Test "log10 (0.75)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 Test "log10 (0x1.999998p-4)": ildouble: 1 ldouble: 1 @@ -12422,16 +10680,8 @@ idouble: 1 ifloat: 2 ildouble: 1 ldouble: 1 -Test "log10 (e)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # log1p -Test "log1p (-0.25)": -float: 1 -ifloat: 1 Test "log1p (-0x4p-4)": float: 1 ifloat: 1 @@ -12440,23 +10690,12 @@ float: 1 ifloat: 1 # pow -Test "pow (0x0.ffffffp0, -0x1p24)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "pow (0x0.ffffffp0, 0x1p24)": -float: 1 -ifloat: 1 Test "pow (0x1.0000000000001p+0, 0x2.468adp+60)": ildouble: 1 ldouble: 1 Test "pow (0x1.000002p+0, 0x1p+24)": float: 1 ifloat: 1 -Test "pow (0x1.000002p0, 0x1p24)": -float: 1 -ifloat: 1 Test "pow (0xf.ffffffffffff8p-4, 0x4.8d15ap+60)": ildouble: 1 ldouble: 1 @@ -12479,18 +10718,6 @@ idouble: 1 Test "pow10 (-0x2.4p+4)": double: 1 idouble: 1 -Test "pow10 (-1)": -double: 1 -idouble: 1 -Test "pow10 (-305)": -double: 1 -idouble: 1 -Test "pow10 (-36)": -double: 1 -idouble: 1 -Test "pow10 (0.75)": -ildouble: 1 -ldouble: 1 Test "pow10 (0x2.4p+4)": double: 1 idouble: 1 @@ -12500,12 +10727,6 @@ idouble: 1 Test "pow10 (0xcp-4)": ildouble: 1 ldouble: 1 -Test "pow10 (3)": -double: 1 -idouble: 1 -Test "pow10 (36)": -double: 1 -idouble: 1 # pow_downward Test "pow_downward (1.5, 1.03125)": @@ -12786,26 +11007,6 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_downward (1)": -ildouble: 1 -ldouble: 1 -Test "sin_downward (3)": -ildouble: 1 -ldouble: 1 -Test "sin_downward (6)": -float: 1 -ifloat: 1 -Test "sin_downward (7)": -ildouble: 1 -ldouble: 1 -Test "sin_downward (8)": -ildouble: 1 -ldouble: 1 -Test "sin_downward (9)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # sin_tonearest Test "sin_tonearest (0xf.ffffffffffff8p+1020)": @@ -12938,32 +11139,6 @@ ldouble: 1 Test "sin_towardzero (0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 -Test "sin_towardzero (1)": -ildouble: 1 -ldouble: 1 -Test "sin_towardzero (10)": -float: 1 -ifloat: 1 -Test "sin_towardzero (3)": -ildouble: 1 -ldouble: 1 -Test "sin_towardzero (4)": -float: 1 -ifloat: 1 -Test "sin_towardzero (5)": -float: 1 -ifloat: 1 -Test "sin_towardzero (7)": -ildouble: 1 -ldouble: 1 -Test "sin_towardzero (8)": -ildouble: 1 -ldouble: 1 -Test "sin_towardzero (9)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # sin_upward Test "sin_upward (-0x1.921fb4p+0)": @@ -13218,43 +11393,6 @@ ldouble: 1 Test "sin_upward (0xf.fffffp+124)": ildouble: 1 ldouble: 1 -Test "sin_upward (1)": -float: 1 -ifloat: 1 -Test "sin_upward (10)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sin_upward (2)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sin_upward (3)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sin_upward (4)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sin_upward (5)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sin_upward (6)": -ildouble: 1 -ldouble: 1 -Test "sin_upward (7)": -float: 1 -ifloat: 1 -Test "sin_upward (8)": -float: 1 -ifloat: 1 # sincos Test "sincos (0x1.921fb4p+0) extra output 2": @@ -13263,21 +11401,6 @@ ldouble: 1 Test "sincos (0xf.ffffffffffff8p+1020) extra output 1": ildouble: 1 ldouble: 1 -Test "sincos (M_PI_6l*2.0) extra output 1": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sincos (M_PI_6l*2.0) extra output 2": -double: 1 -idouble: 1 - -# sinh -Test "sinh (0x8p-32)": -ildouble: 1 -ldouble: 1 # sinh_downward Test "sinh_downward (0x1.6p+4)": @@ -13296,62 +11419,24 @@ ldouble: 1 Test "sinh_downward (0x8p-32)": ildouble: 1 ldouble: 1 -Test "sinh_downward (22)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "sinh_downward (23)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "sinh_downward (24)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 # sinh_towardzero Test "sinh_towardzero (0x1.6p+4)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 Test "sinh_towardzero (0x1.7p+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "sinh_towardzero (0x1.8p+4)": -ildouble: 1 -ldouble: 1 Test "sinh_towardzero (0x8p-32)": ildouble: 1 ldouble: 1 -Test "sinh_towardzero (22)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "sinh_towardzero (23)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "sinh_towardzero (24)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 # sinh_upward Test "sinh_upward (0x1.6p+4)": ildouble: 1 ldouble: 1 -Test "sinh_upward (0x1.7p+4)": -ildouble: 1 -ldouble: 1 Test "sinh_upward (0x1.8p+4)": double: 1 idouble: 1 @@ -13360,23 +11445,11 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "sinh_upward (0xcp-4)": -ildouble: 1 -ldouble: 1 -Test "sinh_upward (22)": -ildouble: 1 -ldouble: 1 -Test "sinh_upward (23)": -ildouble: 1 -ldouble: 1 # tan Test "tan (0x1p+0)": ildouble: 1 ldouble: 1 -Test "tan (0x1p16383)": -ildouble: 1 -ldouble: 1 Test "tan (0x2.1e19e0c9bab24p+72)": ildouble: 1 ldouble: 1 @@ -13389,9 +11462,6 @@ ldouble: 1 Test "tan (0x8p+16380)": ildouble: 1 ldouble: 1 -Test "tan (1e22)": -ildouble: 1 -ldouble: 1 # tan_downward Test "tan_downward (-0x2p+64)": @@ -13574,36 +11644,6 @@ ifloat: 1 Test "tan_downward (0xcp-4)": double: 1 idouble: 1 -Test "tan_downward (1)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_downward (10)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_downward (2)": -float: 1 -ifloat: 1 -Test "tan_downward (3)": -ildouble: 1 -ldouble: 1 -Test "tan_downward (5)": -ildouble: 1 -ldouble: 1 -Test "tan_downward (6)": -float: 1 -ifloat: 1 -Test "tan_downward (8)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_downward (9)": -float: 1 -ifloat: 1 # tan_tonearest Test "tan_tonearest (0x1p+0)": @@ -13621,15 +11661,6 @@ ldouble: 1 Test "tan_tonearest (0x8p+16380)": ildouble: 1 ldouble: 1 -Test "tan_tonearest (1)": -ildouble: 1 -ldouble: 1 -Test "tan_tonearest (2)": -ildouble: 1 -ldouble: 1 -Test "tan_tonearest (8)": -ildouble: 1 -ldouble: 1 # tan_towardzero Test "tan_towardzero (-0x2p+64)": @@ -13722,36 +11753,6 @@ idouble: 1 Test "tan_towardzero (0xf.fffffp+124)": double: 1 idouble: 1 -Test "tan_towardzero (1)": -ildouble: 1 -ldouble: 1 -Test "tan_towardzero (10)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_towardzero (2)": -ildouble: 1 -ldouble: 1 -Test "tan_towardzero (3)": -float: 1 -ifloat: 1 -Test "tan_towardzero (4)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_towardzero (5)": -float: 1 -ifloat: 1 -Test "tan_towardzero (6)": -ildouble: 1 -ldouble: 1 -Test "tan_towardzero (9)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # tan_upward Test "tan_upward (-0xc.908p-4)": @@ -13944,74 +11945,20 @@ idouble: 1 Test "tan_upward (0xf.fffffp+124)": double: 1 idouble: 1 -Test "tan_upward (1)": -float: 1 -ifloat: 1 + +# tgamma +Test "tgamma (-0x1.000002p+0)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "tan_upward (10)": -float: 1 -ifloat: 1 +Test "tgamma (-0x1.3ffffep+4)": +float: 2 +ifloat: 2 +Test "tgamma (-0x1.3ffffffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tan_upward (2)": -ildouble: 1 -ldouble: 1 -Test "tan_upward (3)": -float: 1 -ifloat: 1 -Test "tan_upward (5)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "tan_upward (6)": -ildouble: 1 -ldouble: 1 -Test "tan_upward (8)": -ildouble: 1 -ldouble: 1 -Test "tan_upward (9)": -ildouble: 1 -ldouble: 1 - -# tgamma -Test "tgamma (-0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (-0x0.fffffffffffff8p0)": -double: 1 -idouble: 1 -Test "tgamma (-0x0.ffffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x0.ffffffp0)": -float: 1 -ifloat: 1 -Test "tgamma (-0x1.000002p+0)": -double: 2 -idouble: 2 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x1.000002p0)": -double: 2 -idouble: 2 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x1.0a32a2p+5)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x1.3ffffep+4)": -float: 2 -ifloat: 2 -Test "tgamma (-0x1.3ffffffffffffffep+4)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x1.3ffffffffffffp+4)": +Test "tgamma (-0x1.3ffffffffffffp+4)": ildouble: 1 ldouble: 1 Test "tgamma (-0x1.4000000000001p+4)": @@ -14022,9 +11969,6 @@ ldouble: 2 Test "tgamma (-0x1.400002p+4)": float: 1 ifloat: 1 -Test "tgamma (-0x1.5800000080001p+7)": -ildouble: 2 -ldouble: 2 Test "tgamma (-0x1.8p+0)": ildouble: 1 ldouble: 1 @@ -14049,8 +11993,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 1 +ldouble: 1 Test "tgamma (-0x1.f3fffep+8)": ildouble: 1 ldouble: 1 @@ -14066,71 +12010,17 @@ ldouble: 1 Test "tgamma (-0x1.fffffffffffffp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.fffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x13.ffffep0)": -float: 2 -ifloat: 2 -Test "tgamma (-0x13.ffffffffffffffep0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x13.ffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x14.000000000001p0)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x14.00002p0)": -float: 1 -ifloat: 1 -Test "tgamma (-0x1d.ffffep0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x1d.ffffffffffffffep0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x1e.000000000000002p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x1e.000000000001p0)": -double: 3 -idouble: 3 -Test "tgamma (-0x1e.00002p0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x1f4.00000000000002p0)": -ildouble: 3 -ldouble: 3 Test "tgamma (-0x1p-24)": ildouble: 1 ldouble: 1 Test "tgamma (-0x2.0000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.0000000000000004p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x2.0000000000002p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.0000000000002p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x2.000004p+0)": double: 2 float: 1 @@ -14138,13 +12028,6 @@ idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.000004p0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x2.146544p+4)": float: 2 ifloat: 2 @@ -14210,74 +12093,14 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x2.fffffcp0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (-0x27.ffffcp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x27.fffffffffffep0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x28.000000000002p0)": -double: 1 -idouble: 1 -Test "tgamma (-0x28.00004p0)": -double: 2 -idouble: 2 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x28.ffffcp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x28.fffffffffffep0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x28.ffffffffffffffcp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x29.000000000000004p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x29.000000000002p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x29.00004p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x29.ffffcp0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x2a.00004p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x2ed.fffffffffffffcp0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x3.0000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3.0000000000002p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x3.000004p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -Test "tgamma (-0x3.000004p0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 Test "tgamma (-0x3.1ffffcp+4)": double: 1 idouble: 1 @@ -14320,52 +12143,18 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x3.fffffcp0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "tgamma (-0x3.ffffffffffffep+0)": double: 2 idouble: 2 -Test "tgamma (-0x3.ffffffffffffep0)": -double: 2 -idouble: 2 Test "tgamma (-0x3.fffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3.fffffffffffffffcp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x31.fffffffffffep0)": -double: 3 -idouble: 3 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x32.000000000000004p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x32.000000000002p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x3e7.fffffffffffffcp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x3e8.00000000000004p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x4.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x4.000008p+0)": float: 1 ifloat: 1 -Test "tgamma (-0x4.000008p0)": -float: 1 -ifloat: 1 Test "tgamma (-0x4.8p+0)": double: 1 float: 1 @@ -14387,34 +12176,15 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.fffff8p0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x4.ffffffffffffcp+0)": double: 1 idouble: 1 -Test "tgamma (-0x4.ffffffffffffcp0)": -double: 1 -idouble: 1 -Test "tgamma (-0x4e2.00000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x5.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x5.0000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.0000000000004p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x5.000008p+0)": double: 1 float: 1 @@ -14422,13 +12192,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.000008p0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x5.8p+0)": double: 1 idouble: 1 @@ -14447,24 +12210,12 @@ ldouble: 1 Test "tgamma (-0x5.ffffffffffffcp+0)": double: 1 idouble: 1 -Test "tgamma (-0x5.ffffffffffffcp0)": -double: 1 -idouble: 1 -Test "tgamma (-0x5db.fffffffffffff8p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x6.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x6.000008p+0)": float: 2 ifloat: 2 -Test "tgamma (-0x6.000008p0)": -float: 2 -ifloat: 2 Test "tgamma (-0x6.3ffff8p+4)": ildouble: 1 ldouble: 1 @@ -14500,58 +12251,19 @@ idouble: 2 ifloat: 1 ildouble: 2 ldouble: 2 -Test "tgamma (-0x6.fffff8p0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 Test "tgamma (-0x6.ffffffffffffcp+0)": double: 2 idouble: 2 ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.ffffffffffffcp0)": -double: 2 -idouble: 2 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x63.fffffffffffcp0)": -double: 2 -idouble: 2 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x63.ffffffffffffff8p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x64.000000000000008p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x64.000000000004p0)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x6d6.00000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x7.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0x7.0000000000004p+0)": double: 3 idouble: 3 ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.0000000000004p0)": -double: 3 -idouble: 3 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x7.000008p+0)": double: 1 float: 1 @@ -14559,13 +12271,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.000008p0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x7.8p+0)": double: 2 float: 1 @@ -14580,41 +12285,20 @@ idouble: 3 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.fffff8p0)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x7.ffffffffffffcp+0)": double: 3 idouble: 3 -Test "tgamma (-0x7.ffffffffffffcp0)": -double: 3 -idouble: 3 Test "tgamma (-0x7.fffffffffffffff8p+0)": ildouble: 4 ldouble: 4 -Test "tgamma (-0x7.fffffffffffffff8p0)": -ildouble: 4 -ldouble: 4 Test "tgamma (-0x8.000000000000001p+0)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x8.000000000000001p0)": -ildouble: 2 -ldouble: 2 Test "tgamma (-0x8.00001p+0)": double: 2 idouble: 2 ildouble: 1 ldouble: 1 -Test "tgamma (-0x8.00001p0)": -double: 2 -idouble: 2 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x8.8p+0)": double: 1 float: 1 @@ -14653,40 +12337,13 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x9.ffffffffffff8p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x9.fffffp+0)": float: 1 ifloat: 1 -Test "tgamma (-0x9.fffffp0)": -float: 1 -ifloat: 1 -Test "tgamma (-0x95.fffffffffff8p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x95.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x96.000000000008p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xa.000000000000001p+0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0xa.000000000000001p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0xa.00001p+0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xa.00001p0)": +Test "tgamma (-0xa.000000000000001p+0)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xa.00001p+0)": double: 1 idouble: 1 ildouble: 1 @@ -14768,54 +12425,6 @@ ldouble: 1 Test "tgamma (-0xb.f000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb4.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb5.00000000000001p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb5.000000000008p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0xb5.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb6.00000000000001p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb6.fffffffffff8p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb6.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb7.fffffffffff8p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xb7.ffffffffffffffp0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0xb8.000000000008p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xbb.ffffffffffffffp0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0xbc.00000000000001p0)": -ildouble: 3 -ldouble: 3 -Test "tgamma (-0xbd.00000000000001p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xbe.00000000000001p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xbe.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xbf.00000000000001p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (-0xf.9fffffffffff8p+4)": ildouble: 1 ldouble: 1 @@ -14840,67 +12449,6 @@ ldouble: 1 Test "tgamma (-0xf.fffffp-4)": float: 1 ifloat: 1 -Test "tgamma (-0xf9.ffffffffffffffp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0xfa.00000000000001p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-1.5)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-2.5)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "tgamma (-3.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (-4.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-5.5)": -double: 1 -idouble: 1 -Test "tgamma (-6.5)": -float: 1 -ifloat: 1 -Test "tgamma (-7.5)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-8.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-9.5)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "tgamma (0.5)": -float: 1 -ifloat: 1 -Test "tgamma (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "tgamma (0x1.28p+4)": double: 1 float: 1 @@ -14933,44 +12481,24 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x1.fffffep0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (0x1.fffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x1.fffffffffffffffep0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x1.fffffffffffffp+0)": double: 1 idouble: 1 -Test "tgamma (0x1.fffffffffffffp0)": -double: 1 -idouble: 1 Test "tgamma (0x1p-24)": float: 1 ifloat: 1 -Test "tgamma (0x1p-53)": -double: 1 -idouble: 1 Test "tgamma (0x1p-64)": ildouble: 1 ldouble: 1 Test "tgamma (0x2.0000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x2.0000000000002p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x2.000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x2.000004p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x2.08p+4)": ildouble: 1 ldouble: 1 @@ -14997,23 +12525,12 @@ float: 3 ifloat: 3 ildouble: 1 ldouble: 1 -Test "tgamma (0x2.fffffcp0)": -float: 3 -ifloat: 3 -ildouble: 1 -ldouble: 1 Test "tgamma (0x2.ffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x2.ffffffffffffep0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x3.0000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x3.0000000000002p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x3.8p+0)": float: 2 ifloat: 2 @@ -15025,38 +12542,21 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x3.fffffcp0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (0x3.ffffffffffffep+0)": double: 1 idouble: 1 -Test "tgamma (0x3.ffffffffffffep0)": -double: 1 -idouble: 1 Test "tgamma (0x3.fffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x3.fffffffffffffffcp0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x3p+0)": float: 1 ifloat: 1 Test "tgamma (0x4.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x4.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x4.0000000000004p0)": -double: 1 -idouble: 1 Test "tgamma (0x4.8p+0)": double: 1 float: 1 @@ -15065,48 +12565,26 @@ ifloat: 1 Test "tgamma (0x4.fffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.fffff8p0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (0x4.ffffffffffffcp+0)": double: 1 idouble: 1 -Test "tgamma (0x4.ffffffffffffcp0)": -double: 1 -idouble: 1 Test "tgamma (0x4.fffffffffffffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.fffffffffffffff8p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x4p+0)": float: 1 ifloat: 1 Test "tgamma (0x5.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x5.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x5.0000000000004p0)": -double: 1 -idouble: 1 Test "tgamma (0x5.000008p+0)": float: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (0x5.000008p0)": -float: 3 -ifloat: 3 -ildouble: 1 -ldouble: 1 Test "tgamma (0x5.8p+0)": ildouble: 1 ldouble: 1 @@ -15117,41 +12595,20 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x5.fffff8p0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (0x5.ffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.ffffffffffffcp0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x6.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x6.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x6.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x6.0000000000004p0)": -double: 1 -idouble: 1 Test "tgamma (0x6.000008p+0)": float: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (0x6.000008p0)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 Test "tgamma (0x6.8p+0)": float: 1 ifloat: 1 @@ -15165,36 +12622,20 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x6.fffff8p0)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (0x6.ffffffffffffcp+0)": double: 3 idouble: 3 -Test "tgamma (0x6.ffffffffffffcp0)": -double: 3 -idouble: 3 Test "tgamma (0x6p+0)": float: 1 ifloat: 1 Test "tgamma (0x7.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x7.0000000000000008p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x7.0000000000004p+0)": double: 4 idouble: 4 ildouble: 1 ldouble: 1 -Test "tgamma (0x7.0000000000004p0)": -double: 4 -idouble: 4 -ildouble: 1 -ldouble: 1 Test "tgamma (0x7.000008p+0)": double: 1 float: 1 @@ -15202,13 +12643,6 @@ idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x7.000008p0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (0x7.8p+0)": double: 2 float: 1 @@ -15223,44 +12657,23 @@ idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x7.fffff8p0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "tgamma (0x7.ffffffffffffcp+0)": double: 2 idouble: 2 -Test "tgamma (0x7.ffffffffffffcp0)": -double: 2 -idouble: 2 Test "tgamma (0x7.fffffffffffffff8p+0)": ildouble: 3 ldouble: 3 -Test "tgamma (0x7.fffffffffffffff8p0)": -ildouble: 3 -ldouble: 3 Test "tgamma (0x7p+0)": double: 1 idouble: 1 Test "tgamma (0x8.000000000000001p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x8.000000000000001p0)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x8.00001p+0)": double: 2 idouble: 2 ildouble: 1 ldouble: 1 -Test "tgamma (0x8.00001p0)": -double: 2 -idouble: 2 -ildouble: 1 -ldouble: 1 Test "tgamma (0x8.8p+0)": double: 1 float: 1 @@ -15300,139 +12713,24 @@ ldouble: 1 Test "tgamma (0xa.b9fd72b0fb23a9ep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (0xa.b9fd7p+4)": -double: 2 -idouble: 2 -ildouble: 1 -ldouble: 1 -Test "tgamma (0xa.b9fd8p+4)": -ildouble: 1 -ldouble: 1 -Test "tgamma (0xap+0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (0xb.333333333333p-4)": -ildouble: 1 -ldouble: 1 -Test "tgamma (10)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (18.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (19.5)": -double: 2 -idouble: 2 -Test "tgamma (2.5)": -float: 2 -ifloat: 2 -Test "tgamma (23.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (29.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (3)": -float: 1 -ifloat: 1 -Test "tgamma (3.5)": -float: 2 -ifloat: 2 -Test "tgamma (30.5)": -float: 1 -ifloat: 1 -Test "tgamma (32.5)": -ildouble: 1 -ldouble: 1 -Test "tgamma (33.5)": -float: 1 -ifloat: 1 -Test "tgamma (34.5)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "tgamma (4)": -float: 1 -ifloat: 1 -Test "tgamma (4.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (5.5)": -ildouble: 1 -ldouble: 1 -Test "tgamma (6)": -float: 1 -ifloat: 1 -Test "tgamma (6.5)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (7)": -double: 1 -idouble: 1 -Test "tgamma (7.5)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (8)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (8.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "tgamma (9)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (9.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "tgamma (0xa.b9fd7p+4)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 - -# y0 -Test "y0 (0.125)": +Test "tgamma (0xa.b9fd8p+4)": ildouble: 1 ldouble: 1 -Test "y0 (0x1.3ffp+74)": +Test "tgamma (0xap+0)": double: 1 +float: 1 idouble: 1 +ifloat: 1 +Test "tgamma (0xb.333333333333p-4)": ildouble: 1 ldouble: 1 + +# y0 Test "y0 (0x1.8p+0)": double: 2 float: 1 @@ -15448,48 +12746,19 @@ idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 -Test "y0 (0x1p-10)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "y0 (0x1p-110)": -double: 1 -idouble: 1 Test "y0 (0x1p-20)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "y0 (0x1p-30)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "y0 (0x1p-40)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "y0 (0x1p-50)": -float: 1 -ifloat: 1 -Test "y0 (0x1p-60)": -float: 1 -ifloat: 1 -Test "y0 (0x1p-70)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 Test "y0 (0x1p-80)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "y0 (0x1p16382)": -ildouble: 1 -ldouble: 1 Test "y0 (0x2p-4)": ildouble: 1 ldouble: 1 @@ -15538,59 +12807,11 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "y0 (1.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "y0 (1.5)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "y0 (10.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "y0 (2.0)": -double: 1 -idouble: 1 -Test "y0 (8.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 # y1 -Test "y1 (0.125)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "y1 (0x1.001000001p+593)": -ildouble: 2 -ldouble: 2 -Test "y1 (0x1.27e204p+99)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 Test "y1 (0x1.8p+0)": float: 1 ifloat: 1 -Test "y1 (0x1p-10)": -double: 1 -idouble: 1 -Test "y1 (0x1p16382)": -ildouble: 1 -ldouble: 1 Test "y1 (0x2.002000002p+592)": ildouble: 2 ldouble: 2 @@ -15639,26 +12860,6 @@ idouble: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "y1 (1.5)": -float: 1 -ifloat: 1 -Test "y1 (10.0)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -Test "y1 (2.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "y1 (8.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 # yn Test "yn (-10, 0x1p+0)": @@ -15666,14 +12867,6 @@ double: 1 float: 2 idouble: 1 ifloat: 2 -Test "yn (-10, 1.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "yn (0, 0.125)": -ildouble: 1 -ldouble: 1 Test "yn (0, 0x1.8p+0)": double: 2 float: 1 @@ -15699,38 +12892,6 @@ ldouble: 1 Test "yn (0, 0xap+0)": float: 1 ifloat: 1 -Test "yn (0, 1.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "yn (0, 1.5)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "yn (0, 10.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "yn (0, 2.0)": -double: 1 -idouble: 1 -Test "yn (0, 8.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "yn (1, 0.125)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 Test "yn (1, 0x1.8p+0)": float: 1 ifloat: 1 @@ -15756,38 +12917,6 @@ double: 3 float: 1 idouble: 3 ifloat: 1 -Test "yn (1, 1.5)": -float: 1 -ifloat: 1 -Test "yn (1, 10.0)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -Test "yn (1, 2.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "yn (1, 8.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "yn (10, 0.125)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "yn (10, 0.75)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 4 -ldouble: 4 Test "yn (10, 0x1p+0)": double: 1 float: 2 @@ -15824,31 +12953,6 @@ idouble: 1 ifloat: 1 ildouble: 4 ldouble: 4 -Test "yn (10, 1.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "yn (10, 10.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "yn (10, 2.0)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -Test "yn (2, 0x1.ffff62p+99)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "yn (2, 0x1p127)": -double: 1 -float: 3 -idouble: 1 -ifloat: 3 Test "yn (2, 0x8p+124)": double: 1 float: 3 @@ -15867,18 +12971,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -Test "yn (3, 0.125)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "yn (3, 0.75)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 Test "yn (3, 0x2p+0)": double: 1 idouble: 1 @@ -15897,14 +12989,6 @@ double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "yn (3, 10.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "yn (3, 2.0)": -double: 1 -idouble: 1 # Maximal error of functions: Function: "acos": @@ -15912,9 +12996,7 @@ ildouble: 1 ldouble: 1 Function: "acos_downward": -double: 1 float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 @@ -15924,9 +13006,7 @@ ildouble: 1 ldouble: 1 Function: "acos_towardzero": -double: 1 float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 @@ -15968,7 +13048,6 @@ ldouble: 1 Function: "asinh": double: 1 float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 @@ -16158,18 +13237,12 @@ ildouble: 1 ldouble: 1 Function: "cos": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 ildouble: 1 ldouble: 1 Function: "cos_downward": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 2 ldouble: 2 @@ -16179,17 +13252,13 @@ ldouble: 1 Function: "cos_towardzero": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 Function: "cos_upward": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 2 ldouble: 2 @@ -16222,8 +13291,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 3 +ildouble: 1 +ldouble: 2 Function: "cosh_upward": double: 1 @@ -16491,25 +13560,15 @@ ldouble: 1 Function: "exp_downward": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 Function: "exp_towardzero": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 Function: "exp_upward": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 @@ -16555,17 +13614,15 @@ ldouble: 2 Function: "gamma": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "hypot": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 @@ -16587,17 +13644,17 @@ ldouble: 1 Function: "jn": double: 4 -float: 5 +float: 4 idouble: 4 -ifloat: 5 +ifloat: 4 ildouble: 4 ldouble: 4 Function: "lgamma": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 +ifloat: 1 ildouble: 1 ldouble: 1 @@ -16659,9 +13716,7 @@ ldouble: 1 Function: "sin_downward": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 2 ldouble: 2 @@ -16671,47 +13726,31 @@ ldouble: 1 Function: "sin_towardzero": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 Function: "sin_upward": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 2 ldouble: 2 Function: "sincos": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 - -Function: "sinh": ildouble: 1 ldouble: 1 Function: "sinh_downward": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 1 +ldouble: 1 Function: "sinh_towardzero": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 1 +ldouble: 1 Function: "sinh_upward": double: 1 @@ -16722,8 +13761,6 @@ ildouble: 1 ldouble: 1 Function: "tan": -double: 1 -idouble: 1 ildouble: 1 ldouble: 1 -- cgit v1.2.3 From 396e3ecf3e8f0f05bd7eeaf995a3f0c2327a6cd6 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Thu, 2 Jan 2014 16:33:06 +0000 Subject: Fix ldbl-128ibm acoshl inaccuracy (bug 16384). This patch fixes bug 16384, ldbl-128ibm acoshl inaccuracy, which showed up while attempting to regenerate ulps for powerpc-nofpu for 2.19. There were two separate problems, use of __log1p instead of __log1pl and an insufficiently accurate constant value for log 2 (which this patch replaces by use of M_LN2l), each of which could cause substantial inaccuracy in affected cases. Tested for powerpc-nofpu. * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (ln2): Initialize with M_LN2l. (__ieee754_acoshl): Use __log1pl not __log1p. --- ChangeLog | 7 +++++++ NEWS | 2 +- sysdeps/ieee754/ldbl-128ibm/e_acoshl.c | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index cb91ca7ede..4fae701843 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2014-01-02 Joseph Myers + + [BZ #16384] + * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (ln2): Initialize with + M_LN2l. + (__ieee754_acoshl): Use __log1pl not __log1p. + 2013-01-02 Ondřej Bílka * malloc/arena.c (malloc_atfork, free_atfork, ptmalloc_lock_all, diff --git a/NEWS b/NEWS index 47ab1217de..c53be8aeba 100644 --- a/NEWS +++ b/NEWS @@ -23,7 +23,7 @@ Version 2.19 16038, 16041, 16055, 16071, 16072, 16074, 16077, 16078, 16103, 16112, 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, - 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379. + 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, 16384. * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c b/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c index 8a4a5bb7b9..b0b33f7520 100644 --- a/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c +++ b/sysdeps/ieee754/ldbl-128ibm/e_acoshl.c @@ -29,7 +29,7 @@ static const long double one = 1.0L, -ln2 = 6.93147180559945286227e-01L; /* 0x3FE62E42, 0xFEFA39EF */ +ln2 = M_LN2l; long double __ieee754_acoshl(long double x) @@ -56,7 +56,7 @@ __ieee754_acoshl(long double x) return __ieee754_logl(2.0*x-one/(x+__ieee754_sqrtl(t-one))); } else { /* 1 Date: Thu, 2 Jan 2014 16:34:24 +0000 Subject: Fix ldbl-128ibm asinhl inaccuracy (bug 16385). This patch fixes bug 16385, ldbl-128ibm asinhl inaccuracy, which showed up while attempting to regenerate ulps for powerpc-nofpu for 2.19. The problem here was use of fabs instead of fabsl meaning large arguments were reduced to the precision of double. Tested for powerpc-nofpu. * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Use fabsl not fabs. --- ChangeLog | 4 ++++ NEWS | 2 +- sysdeps/ieee754/ldbl-128ibm/s_asinhl.c | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 4fae701843..8200122be7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2014-01-02 Joseph Myers + [BZ #16385] + * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Use fabsl not + fabs. + [BZ #16384] * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (ln2): Initialize with M_LN2l. diff --git a/NEWS b/NEWS index c53be8aeba..c96c0e3cd9 100644 --- a/NEWS +++ b/NEWS @@ -23,7 +23,7 @@ Version 2.19 16038, 16041, 16055, 16071, 16072, 16074, 16077, 16078, 16103, 16112, 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, - 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, 16384. + 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, 16384, 16385. * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/ieee754/ldbl-128ibm/s_asinhl.c b/sysdeps/ieee754/ldbl-128ibm/s_asinhl.c index 63c6edbb1a..043b151fff 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_asinhl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_asinhl.c @@ -48,7 +48,7 @@ long double __asinhl(long double x) if(huge+x>one) return x; /* return x inexact except 0 */ } if(ix>0x41b0000000000000LL) { /* |x| > 2**28 */ - w = __ieee754_logl(fabs(x))+ln2; + w = __ieee754_logl(fabsl(x))+ln2; } else if (ix>0x4000000000000000LL) { /* 2**28 > |x| > 2.0 */ t = fabs(x); w = __ieee754_logl(2.0*t+one/(__ieee754_sqrtl(x*x+one)+t)); -- cgit v1.2.3 From 819e5d50dd4d10dc359037eba74c70e74cb42739 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Thu, 2 Jan 2014 16:35:46 +0000 Subject: Fix ldbl-128ibm logl inaccuracy (bug 16386). This patch fixes bug 16386, ldbl-128ibm logl inaccuracy (with consequent inaccuracy for lgammal) for arguments where the high double is subnormal, which showed up while attempting to regenerate ulps for powerpc-nofpu for 2.19. The problem here is logic failing to allow for subnormals when calculating the exponent of the argument. Tested for powerpc-nofpu. * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Adjust numbers with subnormal high part when calculating exponent. --- ChangeLog | 4 ++++ NEWS | 3 ++- sysdeps/ieee754/ldbl-128ibm/e_logl.c | 8 ++++++++ 3 files changed, 14 insertions(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 8200122be7..7f4d564d0c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2014-01-02 Joseph Myers + [BZ #16386] + * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Adjust + numbers with subnormal high part when calculating exponent. + [BZ #16385] * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Use fabsl not fabs. diff --git a/NEWS b/NEWS index c96c0e3cd9..e0ea97aa0e 100644 --- a/NEWS +++ b/NEWS @@ -23,7 +23,8 @@ Version 2.19 16038, 16041, 16055, 16071, 16072, 16074, 16077, 16078, 16103, 16112, 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, - 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, 16384, 16385. + 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, 16384, 16385, + 16386. * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/ieee754/ldbl-128ibm/e_logl.c b/sysdeps/ieee754/ldbl-128ibm/e_logl.c index b7db2b9784..58d6bc6972 100644 --- a/sysdeps/ieee754/ldbl-128ibm/e_logl.c +++ b/sysdeps/ieee754/ldbl-128ibm/e_logl.c @@ -229,6 +229,14 @@ __ieee754_logl(long double x) /* Extract exponent and reduce domain to 0.703125 <= u < 1.40625 */ unsigned int w0; e = (int) (m >> 20) - (int) 0x3fe; + if (e == -1022) + { + x *= 0x1p106L; + xhi = ldbl_high (x); + EXTRACT_WORDS (hx, lx, xhi); + m = hx; + e = (int) (m >> 20) - (int) 0x3fe - 106; + } m &= 0xfffff; w0 = m | 0x3fe00000; m |= 0x100000; -- cgit v1.2.3 From 24db925aa7c04ed89eb7839022e2964cf13dcd1c Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 3 Jan 2014 18:09:05 +0000 Subject: Regenerate powerpc-nofpu ulps. --- ChangeLog | 2 + sysdeps/powerpc/nofpu/libm-test-ulps | 14334 ++++++++++++++++++++++++--------- 2 files changed, 10437 insertions(+), 3899 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 8494096c62..5899b6aa7c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2014-01-03 Joseph Myers + * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated. + * math/auto-libm-test-in: Mark various tests with xfail-rounding:ldbl-128ibm. * math/auto-libm-test-out: Regenerated. diff --git a/sysdeps/powerpc/nofpu/libm-test-ulps b/sysdeps/powerpc/nofpu/libm-test-ulps index ad5a9cd42c..53034d32ef 100644 --- a/sysdeps/powerpc/nofpu/libm-test-ulps +++ b/sysdeps/powerpc/nofpu/libm-test-ulps @@ -1,6513 +1,12916 @@ # Begin of automatic generation # acos -Test "acos (-0x0.ffffffff8p0)": +Test "acos (-0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 -Test "acos (-0x0.ffffffp0)": +Test "acos (-0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "acos (2e-17)": +Test "acos (0x1.70ef54646d496892137dfd73f58p-56)": ildouble: 1 ldouble: 1 - -# acos_downward -Test "acos_downward (-0)": -float: 1 -ifloat: 1 -Test "acos_downward (-0.5)": -double: 1 -idouble: 1 +Test "acos (0x1.70ef54646d496892137dfd73f6p-56)": ildouble: 1 ldouble: 1 -Test "acos_downward (-1)": -float: 1 -ifloat: 1 -Test "acos_downward (0)": -float: 1 -ifloat: 1 -Test "acos_downward (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "acos (0x1.70ef54646d496892p-56)": ildouble: 1 ldouble: 1 - -# acos_towardzero -Test "acos_towardzero (-0)": -float: 1 -ifloat: 1 -Test "acos_towardzero (-0.5)": -double: 1 -idouble: 1 +Test "acos (0x1.70ef54646d496894p-56)": ildouble: 1 ldouble: 1 -Test "acos_towardzero (-1)": -float: 1 -ifloat: 1 -Test "acos_towardzero (0)": -float: 1 -ifloat: 1 -Test "acos_towardzero (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "acos (0x1.70ef54646d496p-56)": +ildouble: 1 +ldouble: 1 +Test "acos (0x1.70ef54646d497p-56)": ildouble: 1 ldouble: 1 -# acos_upward -Test "acos_upward (-0)": +# acos_downward +Test "acos_downward (-0x8p-4)": +float: 1 +ifloat: 1 +Test "acos_downward (-0xf.fffffffffffffffp-4)": +ildouble: 2 +ldouble: 2 +Test "acos_downward (-0xf.fffffffffffp-4)": +ildouble: 2 +ldouble: 2 +Test "acos_downward (0x1.70ef54646d496892137dfd73f58p-56)": +ildouble: 2 +ldouble: 2 +Test "acos_downward (0x1.70ef54646d496892137dfd73f6p-56)": +ildouble: 2 +ldouble: 2 +Test "acos_downward (0x1.70ef54646d496892p-56)": +ildouble: 2 +ldouble: 2 +Test "acos_downward (0x1.70ef54646d496894p-56)": ildouble: 2 ldouble: 2 -Test "acos_upward (-1)": +Test "acos_downward (0x1.70ef54646d496p-56)": ildouble: 2 ldouble: 2 -Test "acos_upward (0)": +Test "acos_downward (0x1.70ef54646d497p-56)": ildouble: 2 ldouble: 2 +Test "acos_downward (0x1.70ef54p-56)": +ildouble: 3 +ldouble: 3 +Test "acos_downward (0x1.70ef56p-56)": +ildouble: 3 +ldouble: 3 +Test "acos_downward (0x1p-4)": +ildouble: 1 +ldouble: 1 +Test "acos_downward (0xcp-4)": +ildouble: 1 +ldouble: 1 -# asin -Test "asin (-0x0.ffffffff8p0)": +# acos_tonearest +Test "acos_tonearest (-0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 -Test "asin (-0x0.ffffffp0)": +Test "acos_tonearest (-0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "asin (0.75)": -ildouble: 2 -ldouble: 2 -Test "asin (0x0.ffffffff8p0)": +Test "acos_tonearest (0x1.70ef54646d496892137dfd73f58p-56)": ildouble: 1 ldouble: 1 -Test "asin (0x0.ffffffp0)": +Test "acos_tonearest (0x1.70ef54646d496892137dfd73f6p-56)": ildouble: 1 ldouble: 1 - -# asin_downward -Test "asin_downward (-0.5)": -double: 1 -idouble: 1 +Test "acos_tonearest (0x1.70ef54646d496892p-56)": ildouble: 1 ldouble: 1 -Test "asin_downward (-1.0)": +Test "acos_tonearest (0x1.70ef54646d496894p-56)": ildouble: 1 ldouble: 1 -Test "asin_downward (0.5)": -double: 1 -idouble: 1 +Test "acos_tonearest (0x1.70ef54646d496p-56)": +ildouble: 1 +ldouble: 1 +Test "acos_tonearest (0x1.70ef54646d497p-56)": ildouble: 1 ldouble: 1 -Test "asin_downward (1.0)": + +# acos_towardzero +Test "acos_towardzero (-0x8p-4)": float: 1 ifloat: 1 +Test "acos_towardzero (-0xf.fffffffffffffffp-4)": +ildouble: 2 +ldouble: 2 +Test "acos_towardzero (-0xf.fffffffffffp-4)": +ildouble: 2 +ldouble: 2 +Test "acos_towardzero (0x1.70ef54646d496892137dfd73f58p-56)": +ildouble: 2 +ldouble: 2 +Test "acos_towardzero (0x1.70ef54646d496892137dfd73f6p-56)": +ildouble: 2 +ldouble: 2 +Test "acos_towardzero (0x1.70ef54646d496892p-56)": +ildouble: 2 +ldouble: 2 +Test "acos_towardzero (0x1.70ef54646d496894p-56)": +ildouble: 2 +ldouble: 2 +Test "acos_towardzero (0x1.70ef54646d496p-56)": +ildouble: 2 +ldouble: 2 +Test "acos_towardzero (0x1.70ef54646d497p-56)": +ildouble: 2 +ldouble: 2 +Test "acos_towardzero (0x1.70ef54p-56)": +ildouble: 3 +ldouble: 3 +Test "acos_towardzero (0x1.70ef56p-56)": +ildouble: 3 +ldouble: 3 +Test "acos_towardzero (0x1p-4)": +ildouble: 1 +ldouble: 1 +Test "acos_towardzero (0xcp-4)": +ildouble: 1 +ldouble: 1 -# asin_towardzero -Test "asin_towardzero (-0.5)": +# acos_upward +Test "acos_upward (+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "asin_towardzero (-1.0)": -float: 1 -ifloat: 1 -Test "asin_towardzero (0.5)": +Test "acos_upward (-0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "asin_towardzero (1.0)": -float: 1 -ifloat: 1 - -# asin_upward -Test "asin_upward (-1.0)": -float: 1 -ifloat: 1 -Test "asin_upward (1.0)": -ildouble: 1 -ldouble: 1 - -# atan2 -Test "atan2 (-0.00756827042671106339, -.001792735857538728036)": +Test "acos_upward (-0x1p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "atan2 (-0.75, -1.0)": -float: 1 -ifloat: 1 -Test "atan2 (-inf, -inf)": +Test "acos_upward (-0x4p-1024)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "atan2 (-max_value, -min_value)": -float: 1 -ifloat: 1 -Test "atan2 (0.75, -1.0)": -float: 1 -ifloat: 1 -Test "atan2 (1.390625, 0.9296875)": -float: 1 -ifloat: 1 +Test "acos_upward (-0x4p-1076)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "atan2 (inf, -inf)": +Test "acos_upward (-0x4p-128)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# atanh -Test "atanh (0.75)": -float: 1 -ifloat: 1 - -# cabs -Test "cabs (0.75 + 1.25 i)": +Test "acos_upward (-0x8p-152)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# cacos -Test "Imaginary part of: cacos (+0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (+0 + 1.0 i)": +Test "acos_upward (-0x8p-972)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacos (+0 + 1.5 i)": +ildouble: 1 +ldouble: 1 +Test "acos_upward (0x1.70ef54646d496p-56)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (+0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (+0 - 1.0 i)": +Test "acos_upward (0x1.70ef54646d497p-56)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacos (+0 - 1.5 i)": +Test "acos_upward (0x1.70ef54p-56)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (-0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0 + 1.0 i)": +Test "acos_upward (0x1.70ef56p-56)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0 + 1.5 i)": +Test "acos_upward (0x1p-4)": +ildouble: 1 +ldouble: 1 +Test "acos_upward (0x4p-1024)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (-0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "acos_upward (0x4p-1076)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0 - 1.5 i)": +ildouble: 1 +ldouble: 1 +Test "acos_upward (0x4p-128)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (-0.0 + 0x1.000000000000000000000000008p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 - 0x1.000000000000000000000000008p0 i)": +Test "acos_upward (0x8p-152)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.25 + 1.0 i)": +Test "acos_upward (0x8p-972)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0.25 + 1.0 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.25 - 1.0 i)": +Test "acos_upward (0xf.fffffp-4)": +ildouble: 1 +ldouble: 1 + +# acosh +Test "acosh (0x6.4p+4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0.25 - 1.0 i)": -float: 1 -ifloat: 1 +Test "acosh (0xf.ffffffffffff8p+1020)": +double: 1 + +# asin +Test "asin (-0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + +0 i)": +Test "asin (-0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1.fp-1025 i)": +Test "asin (0xcp-4)": +ildouble: 2 +ldouble: 2 +Test "asin (0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1.fp-129 i)": +Test "asin (0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1.fp-129 i)": + +# asin_downward +Test "asin_downward (-0x1p+0)": double: 1 idouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-105 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-105 i)": +Test "asin_downward (-0x8p-4)": double: 1 idouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-112 i)": +Test "asin_downward (-0xf.fffffff8p-4)": double: 1 idouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-23 i)": +Test "asin_downward (-0xf.ffffffffffff8p-4)": double: 1 idouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-52 i)": +ildouble: 2 +ldouble: 2 +Test "asin_downward (-0xf.fffffffffffffffp-4)": +ildouble: 2 +ldouble: 2 +Test "asin_downward (-0xf.fffffffffffp-4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "asin_downward (-0xf.fffffp-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "asin_downward (0x8p-4)": +float: 1 +ifloat: 1 +Test "asin_downward (0xcp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-52 i)": +Test "asin_downward (0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-63 i)": +Test "asin_downward (0xf.fffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0.5 + 1.0 i)": -double: 1 -idouble: 1 +Test "asin_downward (0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0 i)": + +# asin_tonearest +Test "asin_tonearest (-0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1.fp-1025 i)": +Test "asin_tonearest (-0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1.fp-129 i)": +Test "asin_tonearest (0xcp-4)": +ildouble: 2 +ldouble: 2 +Test "asin_tonearest (0xf.fffffff8p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-105 i)": +Test "asin_tonearest (0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-105 i)": + +# asin_towardzero +Test "asin_towardzero (-0x4p-1024)": double: 1 idouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-112 i)": +Test "asin_towardzero (-0x4p-1076)": double: 1 idouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-23 i)": +Test "asin_towardzero (-0x4p-128)": double: 1 +float: 1 idouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0.5 - 1.0 i)": -float: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0.5 - 1.0 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "asin_towardzero (-0x8p-152)": double: 1 +float: 1 idouble: 1 -Test "Real part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +ifloat: 1 +Test "asin_towardzero (-0x8p-4)": +float: 1 +ifloat: 1 +Test "asin_towardzero (-0x8p-972)": double: 1 idouble: 1 -Test "Real part of: cacos (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0x0.ffffffp0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0x0.ffffffp0 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacos (-0x0.ffffffp0 - 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0x0.ffffffp0 - 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacos (-0x1.0000000000000002p0 + 0x1p-63 i)": +Test "asin_towardzero (-0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.0000000000000002p0 - 0x1p-63 i)": +Test "asin_towardzero (-0xf.fffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.0000000000001p0 + 0x1p-52 i)": +Test "asin_towardzero (-0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000001p0 + 0x1p-52 i)": +Test "asin_towardzero (0x8p-4)": +float: 1 +ifloat: 1 +Test "asin_towardzero (0xcp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.0000000000001p0 - 0x1p-52 i)": +Test "asin_towardzero (0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000001p0 - 0x1p-52 i)": +Test "asin_towardzero (0xf.fffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.000002p0 + 0x1p-23 i)": +Test "asin_towardzero (0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.000002p0 + 0x1p-23 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: cacos (-0x1.000002p0 - 0x1p-23 i)": + +# asin_upward +Test "asin_upward (-0x4p-1024)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.000002p0 - 0x1p-23 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacos (-0x1.fp-10 + 1.0 i)": +Test "asin_upward (-0x4p-1076)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-10 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x4p-128)": double: 1 -idouble: 1 -Test "Real part of: cacos (-0x1.fp-100 + 1.0 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-100 + 1.0 i)": +Test "asin_upward (-0x8p-152)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: cacos (-0x1.fp-100 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-100 - 1.0 i)": +Test "asin_upward (-0x8p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-1000 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1000 - 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.0 i)": +Test "asin_upward (-0x8p-972)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.0 i)": +Test "asin_upward (-0xf.fffffff8p-4)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.5 i)": +Test "asin_upward (-0xf.ffffffffffff8p-4)": double: 1 idouble: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x0.ffffffp0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 + 1.0 i)": +Test "asin_upward (-0xf.fffffffffffp-4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 1.5 i)": +Test "asin_upward (-0xf.fffffp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 + 1.5 i)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x1p+0)": double: 1 idouble: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x0.ffffffp0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 - 1.0 i)": +Test "asin_upward (0x4p-1024)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 1.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 - 1.5 i)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (0x4p-1076)": double: 1 idouble: 1 -Test "Real part of: cacos (-0x1.fp-30 + 1.0 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-30 + 1.0 i)": +Test "asin_upward (0x4p-128)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: cacos (-0x1.fp-30 - 1.0 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-30 - 1.0 i)": +Test "asin_upward (0x8p-152)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-105 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-105 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-105 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-105 + 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-105 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-105 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-105 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "asin_upward (0x8p-972)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-105 - 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-112 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 + 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-112 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 - 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-23 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-23 + 0.5 i)": -float: 1 -ifloat: 1 +Test "asin_upward (0xf.fffffffffffffffp-4)": +ildouble: 2 +ldouble: 2 +Test "asin_upward (0xf.fffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-23 + 0.5 i)": + +# asinh +Test "asinh (-0xf.ffffffffffff8p+1020)": +double: 1 +Test "asinh (0xap+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-23 + 0x0.ffffffp0 i)": +Test "asinh (0xf.ffffffffffff8p+1020)": double: 1 -idouble: 1 -Test "Imaginary part of: cacos (-0x1p-23 + 0x1.000002p0 i)": + +# atan2 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1d8p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-23 + 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-23 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e51244p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-23 - 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (-0x1p-23 - 0x1.000002p0 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e51246640cc2340ca4ap-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-23 - 0x1p-23 i)": -float: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e51246648p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e5124664p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e51248p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1ep-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1d8p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51244p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51246640cc2340ca4ap-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51246648p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e5124664p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51248p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1ep-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1d8p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e51244p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e51246640cc2340ca48p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e51246640cc2340ca4ap-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e51246648p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e5124664p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e51248p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1ep-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1d8p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51244p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51246640cc2340ca48p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51246640cc2340ca4ap-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51246648p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e5124664p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51248p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1ep-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1d8p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e51244p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e51246640cc2340ca4ap-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e51246648p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e5124664p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e51248p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1ep-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1d8p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e51244p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e51246640cc2340ca4ap-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e51246648p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e5124664p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e51248p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1ep-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1d8p-12)": +float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-52 + 0.0 i)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51244p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51246640cc2340ca4ap-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e5124664p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51248p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1ep-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe8p-8, -0x7.57d1d8p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe8p-8, -0x7.57d1de0e51244p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe8p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe8p-8, -0x7.57d1de0e51246640cc2340ca4ap-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe8p-8, -0x7.57d1de0e51246648p-12)": +ildouble: 2 +ldouble: 2 +Test "atan2 (-0x1.effe8p-8, -0x7.57d1de0e5124664p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe8p-8, -0x7.57d1de0e51248p-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x1.effe8p-8, -0x7.57d1ep-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x4p-1024, -0x4p-1024)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x4p-1076, -0x4p-1076)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x4p-128, -0x4p-128)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x8p-152, -0x8p-152)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0x8p-972, -0x8p-972)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0xcp-4, -0x1p+0)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-52 + 0.5 i)": +Test "atan2 (-0xf.ffffffffffff8p+1020, -0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0xf.ffffffffffff8p+1020, 0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0xf.ffffffffffffbffffffffffffcp+1020, -0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0xf.ffffffffffffbffffffffffffcp+1020, -0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (-0xf.fffffp+124, -0x4p-128)": +float: 1 +ifloat: 1 +Test "atan2 (-0xf.fffffp+124, -0x8p-152)": float: 1 ifloat: 1 +Test "atan2 (-0xf.fffffp+124, -0xf.fffffp+124)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-52 + 0.5 i)": +Test "atan2 (-inf, -inf)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0x1.64p+0, 0xe.ep-4)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-52 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0x4p-1024, -0x4p-1024)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0x4p-1076, -0x4p-1076)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0x4p-128, -0x4p-128)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0x6.4p-4, 0x1.30164840e1719f7ep-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0x6.4p-4, 0x1.30164ap-12)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0x8p-152, -0x8p-152)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0x8p-972, -0x8p-972)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xcp-4, -0x1p+0)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-52 - 0.0 i)": +Test "atan2 (0xf.ffffffffffff8p+1020, -0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xf.ffffffffffff8p+1020, -0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xf.ffffffffffff8p+1020, 0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xf.ffffffffffffbffffffffffffcp+1020, -0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xf.ffffffffffffbffffffffffffcp+1020, -0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xf.fffffp+124, -0x4p-128)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-52 - 0.5 i)": +Test "atan2 (0xf.fffffp+124, -0x8p-152)": float: 1 ifloat: 1 +Test "atan2 (0xf.fffffp+124, -0xf.fffffp+124)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-52 - 0.5 i)": +Test "atan2 (inf, -inf)": +ildouble: 1 +ldouble: 1 + +# atanh +Test "atanh (-0xcp-4)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-52 - 0x1p-52 i)": +Test "atanh (0xcp-4)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-63 + 0.0 i)": + +# cabs +Test "cabs (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 + +# cacos +Test "Imaginary part of: cacos (+0 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-63 + 0.5 i)": +Test "Imaginary part of: cacos (+0 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-63 + 0.5 i)": +Test "Imaginary part of: cacos (+0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (+0 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-63 + 0x1p-63 i)": +Test "Imaginary part of: cacos (+0 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-63 - 0.0 i)": +Test "Imaginary part of: cacos (+0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-63 - 0.5 i)": +Test "Imaginary part of: cacos (-0 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-63 - 0.5 i)": +Test "Imaginary part of: cacos (-0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-63 - 0x1p-63 i)": +Test "Imaginary part of: cacos (-0 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: cacos (-1.0 + 0.5 i)": +Test "Imaginary part of: cacos (-0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0.0 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0.0 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.25 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0.25 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.25 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0.25 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.5 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.5 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.5 + 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 + 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.5 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0.5 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.5 - 0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.5 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.5 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.5 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0.5 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x0.ffffffp0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x0.ffffffp0 + 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacos (-0x0.ffffffp0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x0.ffffffp0 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacos (-0x1.0000000000000002p0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x1.0000000000000002p0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x1.0000000000001p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1.0000000000001p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x1.0000000000001p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1.0000000000001p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x1.000002p0 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: cacos (-0x1.000002p0 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacos (-0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1.fp-100 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-100 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 1.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 1.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1.fp-30 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-30 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x1p-105 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x1p-105 - 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x1p-23 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x1p-23 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-1.0 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-1.0 + 0x1.fp-100 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-1.0 + 0x1p50 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-1.0 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (-1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-1.0 - 0x1.fp-100 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-1.0 - 0x1p50 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-2 - 3 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-inf + inf i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-inf - inf i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0.0 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0.0 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0.25 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0.25 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0.5 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0.5 + 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0.5 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0.5 - 0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0.5 - 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0.5 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x0.ffffffp0 + 0.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x0.ffffffp0 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacos (0x0.ffffffp0 - 0.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x0.ffffffp0 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacos (0x1.0000000000001p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.0000000000001p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x1.0000000000001p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.0000000000001p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x1.000002p0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: cacos (0x1.000002p0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: cacos (0x1.fp-10 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x1.fp-10 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x1.fp-100 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacos (0x1.fp-100 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x1p-105 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x1p-105 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (0x1p-52 + 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x1p-52 + 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (0x1p-52 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x1p-52 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (1.0 + 0x1.fp-10 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (1.0 + 0x1.fp-100 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: cacos (1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (1.0 - 0x1.fp-10 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (1.0 - 0x1.fp-100 i)": +ildouble: 2 +ldouble: 2 + +# cacosh +Test "Real part of: cacosh (+0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (+0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (+0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (+0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (+0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (+0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (-0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (-0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0.0 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.0 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.25 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.25 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (-0.25 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.25 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0.5 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0.5 - 0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 - 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.5 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x0.ffffffp0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x0.ffffffp0 + 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (-0x0.ffffffp0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x0.ffffffp0 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (-0x1.0000000000000002p0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1.0000000000000002p0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1.0000000000001p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1.0000000000001p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1.0000000000001p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1.0000000000001p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (-0x1.000002p0 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (-0x1.000002p0 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-100 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-100 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-30 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-30 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-105 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-105 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-105 - 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-23 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-23 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-52 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-52 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-1.0 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-1.0 + 0x1.fp-100 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-1.0 + 0x1p50 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-1.0 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-1.0 - 0x1.fp-100 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-1.0 - 0x1p50 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-2 - 3 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-inf + inf i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-inf - inf i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0.0 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0.0 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0.25 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0.25 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0.5 + +0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0.5 - 0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.0000000000001p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1.0000000000001p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.0000000000001p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1.0000000000001p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (0x1.000002p0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacosh (0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (0x1.000002p0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacosh (0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0x1.fp-10 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0x1.fp-10 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x1.fp-100 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x1.fp-100 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x1p-105 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x1p-105 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x1p-52 + 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1p-52 + 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x1p-52 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1p-52 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (1.0 + 0x1.fp-10 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (1.0 + 0x1.fp-100 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (1.0 - 0x1.fp-10 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (1.0 - 0x1.fp-100 i)": +ildouble: 2 +ldouble: 2 + +# carg +Test "carg (-inf + inf i)": +ildouble: 1 +ldouble: 1 +Test "carg (-inf - inf i)": +ildouble: 1 +ldouble: 1 + +# casin +Test "Imaginary part of: casin (+0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (+0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (+0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (+0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (+0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (+0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.0 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.0 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.25 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.25 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.5 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.5 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x0.ffffffp0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x0.ffffffp0 + 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: casin (-0x0.ffffffp0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x0.ffffffp0 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casin (-0x1.0000000000001p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x1.0000000000001p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (-0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: casin (-0x1.fp-10 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casin (-0x1p-105 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x1p-105 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x1p-106 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x1p-106 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-0x1p-23 + 0.5 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-0x1p-23 + 0x0.ffffffp0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (-0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-0x1p-23 + 0x1.000002p0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x1p-23 - 0.5 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-0x1p-23 - 0x0.ffffffp0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (-0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-0x1p-23 - 0x1.000002p0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-0x1p-63 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-0x1p-63 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-1.0 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-1.0 + 0x1.fp-10 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-1.0 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-1.0 - 0x1.fp-10 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-2 - 3 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.25 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.25 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0.75 + 1.25 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffp0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffp0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffp0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffp0 + 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: casin (0x0.ffffffp0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffp0 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casin (0x1.0000000000001p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.0000000000001p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: casin (0x1.fp-10 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-105 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-105 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-106 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-106 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (0x1p-23 + 0.5 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (0x1p-23 + 0x0.ffffffp0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x1p-23 + 0x1.000002p0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-23 - 0.5 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (0x1p-23 - 0x0.ffffffp0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x1p-23 - 0x1.000002p0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (0x1p-63 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (0x1p-63 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (1.0 + 0x1.fp-10 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (1.0 - 0x1.fp-10 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# casinh +Test "Imaginary part of: casinh (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.0 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.0 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.25 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-0.25 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0.5 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 + 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 - 0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 - 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-0x0.ffffffp0 + 0x1p-23 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (-0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-0x0.ffffffp0 - 0x1p-23 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (-0x1.000000000000000000000000008p0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.000000000000000000000000008p0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.000000000000000000000000008p0 + 0x1p-106 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.000000000000000000000000008p0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.000000000000000000000000008p0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.000000000000000000000000008p0 - 0x1p-106 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.000002p0 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-0x1.000002p0 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-0x1.fp-10 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-10 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-10 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.fp-129 + 0.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-129 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.fp-129 - 0.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-129 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-105 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-105 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-112 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-112 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-23 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-23 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (-0x1p-23 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-23 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (-0x1p-52 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-52 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-52 + 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-52 + 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-52 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-52 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-52 - 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-52 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 + 0.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 - 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 - 0.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.5 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.5 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.5 - 0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.0 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.0 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.25 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0.25 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0.5 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 + 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 - 0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 - 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.75 + 1.25 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0x0.ffffffp0 + 0x1p-23 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0x0.ffffffp0 - 0x1p-23 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (0x1.000000000000000000000000008p0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.000000000000000000000000008p0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.000000000000000000000000008p0 + 0x1p-106 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.000000000000000000000000008p0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.000000000000000000000000008p0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.000000000000000000000000008p0 - 0x1p-106 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.000002p0 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.000002p0 + 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (0x1.000002p0 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.000002p0 - 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (0x1.fp-10 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.fp-10 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.fp-10 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-129 + 0.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0x1.fp-129 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-129 - 0.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0x1.fp-129 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-105 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-105 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-112 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-112 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-23 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-23 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (0x1p-23 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-23 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (0x1p-52 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-52 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-52 + 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-52 + 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-52 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-52 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-52 - 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-52 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 + 0.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 - 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 - 0.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.5 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.5 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.5 - 0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 + +# catan +Test "Imaginary part of: catan (-0x0.fffffffffffff8p0 + 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x0.fffffffffffff8p0 - 0x1p-27 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x0.ffffffp0 + 0x1p-13 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: catan (-0x1.000000000000000000000000008p0 + 0x1p-54 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-0x1.000000000000000000000000008p0 - 0x1p-54 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1.0000000000001p0 - 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (-0x1.000002p0 + 0x1p-126 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1.000002p0 - 0x1p-126 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1.000002p0 - 0x1p-13 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1p-1020 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1p-1020 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (-0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-54 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-54 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-57 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-57 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-1.0 + 0x1p-54 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-1.0 - 0x1p-54 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-2 - 3 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-2 - 3 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x0.fffffffffffff8p0 + 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x0.fffffffffffff8p0 - 0x1p-27 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x0.ffffffp0 + 0x1p-13 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: catan (0x1.000000000000000000000000008p0 + 0x1p-54 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (0x1.000000000000000000000000008p0 - 0x1p-54 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1.0000000000001p0 - 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (0x1.000002p0 + 0x1p-126 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1.000002p0 - 0x1p-126 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1.000002p0 - 0x1p-13 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1p-1020 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1p-1020 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-54 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-54 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-57 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-57 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (1.0 + 0x1p-54 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (1.0 - 0x1p-54 i)": +ildouble: 1 +ldouble: 1 + +# catanh +Test "Real part of: catanh (-0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1p-126 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1p-126 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1p-13 + 0x1.000002p0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1p-13 - 0x1.000002p0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1p-27 + 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-27 + 0x1.0000000000001p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1p-27 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-27 - 0x1.0000000000001p0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-0x1p-54 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1p-54 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1p-54 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1p-54 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-1.0 + 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 + 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 + 0x1p-57 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 - 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 - 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 - 0x1p-57 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-2 - 3 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-126 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-126 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (0x1p-13 + 0x0.ffffffp0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (0x1p-13 - 0x0.ffffffp0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (0x1p-27 + 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1p-27 - 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (0x1p-54 + 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-54 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-54 - 0x1.000000000000000000000000008p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-54 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (1.0 + 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 + 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 + 0x1p-57 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-57 i)": +float: 1 +ifloat: 1 + +# cbrt +Test "cbrt (-0x1.bp+4)": +double: 1 +idouble: 1 +Test "cbrt (-0x4.189374bc6a7ef9ep-12)": +ildouble: 1 +ldouble: 1 +Test "cbrt (-0x4.18937p-12)": +float: 1 +ifloat: 1 +Test "cbrt (0xcp-4)": +double: 1 +idouble: 1 +Test "cbrt (0xf.ep-4)": +double: 1 +idouble: 1 + +# ccos +Test "Imaginary part of: ccos (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ccos (-0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ccos (0x4p-1076 + 0x5.ap+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ccos (0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + +# ccosh +Test "Imaginary part of: ccosh (-0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (-0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ccosh (0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ccosh (0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ccosh (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + +# cexp +Test "Imaginary part of: cexp (+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cexp (-0x5.fp+4 + 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x1.f4p+8 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cexp (0x1.f4p+8 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x1.f4p+8 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cexp (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cexp (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 + +# clog +Test "Real part of: clog (+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d1598p-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d1598p-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (-0x1.000002p+0 + 0x4.8d159ep-32 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d15ap-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x1.000002p+0 + 0x4.8d15ap-32 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x1.234566p-40 - 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x2p+0 - 0x3p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 + 0xf.fffffp+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 - 0xf.fffffp+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0xf.8p+124 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-inf + inf i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (-inf - inf i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234566p-60 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-1000 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-60 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234568p-60 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234566p-60 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234568p-60 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000566p+0 + 0x4.8dp-12 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c638bcfe0ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c64p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.48e45ep-4 + 0xf.f2c638bcfe0ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c63p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c64p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x1.48e46p-4 + 0xf.f2c638bcfe0ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed1990460bdf8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed1990460bdf8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed1990460bdfbf672a9da76bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed199p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bdfbf6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdf8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdf8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed199p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdf8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdfbf672a9da76bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bcp-4 + 0xf.ed19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bep-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bep-4 + 0xf.ed19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e08p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e1p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4ep-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a85944b988790cep-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b988790cep-4 + 0xf.e6b4ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4ep-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e0948p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1p+0 + 0x4.8d1598p-12 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x2.0ce7b8p-4 + 0xf.de3a2f9df7a4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.0ce7bcp-4 + 0xf.de3a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.2d04p-8 + 0xf.ffda2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a38p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a38p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a38p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a38p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a38p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2p-148 + 0x2p-148 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.2cdb84p-4 + 0xf.ae888p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.2cdb84p-4 + 0xf.ae889p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.2cdb88p-4 + 0xf.ae888p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61e798p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e798p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9p-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9p-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9p-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57cp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d118p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501173c8004ccp-4 + 0xf.8e3d619a8d118p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501173c8004ccp-4 + 0xf.8e3d619a8d11bfdp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3501173c8004ccp-4 + 0xf.8e3d619a8d12p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d11bfdp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d12p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d619a8d11bfd30b038eep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d619a8d118p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d619a8d11bfdp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d6p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d6p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d7p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.c8p-4 + 0xf.8cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d08p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34p-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34p-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3d1b06d005dcbb5516d544p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d005ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d08p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b4p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1af8e3ce8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1ad688p-4 + 0xf.7a5c1af8e3ce8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a5p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d758p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d76p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a6p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x4.d9e8c415d5644p-4 + 0xf.3f302p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.d9e8c8p-4 + 0xf.3f303p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.d9e8cp-4 + 0xf.3f30281507d8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x4.d9e8cp-4 + 0xf.3f303p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4p-1076 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x5.03p-4 + 0xf.31ep-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22364p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22363bf989d98p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb1p-4 + 0xf.22364p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22364p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c6p-4 + 0xf.22363bf989d9b5cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c6p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452b965da9fp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452bp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x5.b06b68p-4 + 0xe.f452cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.b06b7p-4 + 0xe.f452b965da9fp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x5.b06b7p-4 + 0xe.f452bp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x5.ba8ce4b6p-4 + 0xe.f0742p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.ba8ce4b6p-4 + 0xe.f0743p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.ba8ce8p-4 + 0xe.f0742508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd5037c4792efp-4 + 0xe.d3e2086dcca88p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.02fd5037c4794p-4 + 0xe.d3e2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e21p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e2p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e2086dcca8p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e21p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x6.02fd58p-4 + 0xe.d3e21p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.02fd5p-4 + 0xe.d3e21p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2018b4288p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd125ef6f796a57d2p-4 + 0xe.c97c2018b428p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c2018b428257133eef0ce34p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd128p-4 + 0xe.c97c2p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428257133eef0ce34p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428258p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b4288p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b4288p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c3p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x6.1c643p-4 + 0xe.c97c2018b428257133eef0ce34p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643p-4 + 0xe.c97c2018b428257p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.1c643p-4 + 0xe.c97c2018b428257p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cb019p-4 + 0xe.c36a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a599a86ba8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a6p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a599a86ba8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a599a86bbp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a5p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86ba8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86baf8febep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b48p-4 + 0xe.8893cbb449258p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b48p-4 + 0xe.8893cbb44925p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520217b6p-4 + 0xe.8893dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893dp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb449258p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb44925p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655fp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e5108p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10d384p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d66p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d66p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b8p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160b31066ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160bp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bf04f3688p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f4b08p-4 + 0xd.e1bf04f3688p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.88fafp-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.47946p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.47946p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.ecbf8p-4 + 0xd.479468b09a37p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x8.ecbf8p-4 + 0xd.47946p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.ecbf9p-4 + 0xd.479468b09a37p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b41p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b968a66p-4 + 0xc.b9317c470b4085cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b968a66p-4 + 0xc.b9318p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fp-4 + 0xc.b9317c470b4085cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fp-4 + 0xc.b9317c470b408p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b387p-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53de1d5a7c8b0f6df3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8b1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7c8b0f6df3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7dp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53ep-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53ep-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8b1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7dp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53dp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53ep-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.c1b6bp-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.1f2c1p-4 + 0xc.643aep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867932966df58ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-1.0 + 0x1.fp-10 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867932966df8p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-1.0 + 0x1.fp-100 i)": +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e8679p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-1.0 + 0x1p50 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-1.0 - 0.5 i)": +Test "Imaginary part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df5894a70c8p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-1.0 - 0x1.fp-10 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-1.0 - 0x1.fp-100 i)": +Test "Imaginary part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df58ap-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df8p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-1.0 - 0x1p50 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-inf + inf i)": +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-inf - inf i)": +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df58ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 + 0x1.000000000000000000000000008p0 i)": +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df8p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 - 0x1.000000000000000000000000008p0 i)": +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e8679p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.25 + 1.0 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867ap-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.25 - 1.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + +0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-23 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-52 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-52 i)": +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-63 i)": +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df8p-4 i)": double: 1 idouble: 1 -Test "Real part of: cacos (0.5 + 1.0 i)": +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e867ap-4 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0.5 + 1.0 i)": +Test "Real part of: clog (0xa.b96da19075eap-8 + 0xf.fc679p-4 i)": double: 1 idouble: 1 +Test "Imaginary part of: clog (0xa.b96da19075eap-8 + 0xf.fc679p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-23 i)": +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc67818f89d2p-4 i)": double: 1 idouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-52 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-52 i)": +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc678p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc679p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.b96dap-8 + 0xf.fc679p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-63 i)": +Test "Imaginary part of: clog (0xa.b96dbp-8 + 0xf.fc67818f89d2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.b96dbp-8 + 0xf.fc678p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51cb9f04d4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51cbp-4 i)": double: 1 idouble: 1 -Test "Real part of: cacos (0.5 - 1.0 i)": +Test "Imaginary part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51ccp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.e7de8p-4 + 0xb.b51cb9f04d4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.e7de8p-4 + 0xb.b51cbp-4 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0.5 - 1.0 i)": +Test "Real part of: clog (0xa.e7de9p-4 + 0xb.b51cb9f04d4dp-4 i)": double: 1 idouble: 1 +Test "Imaginary part of: clog (0xa.e7de9p-4 + 0xb.b51cbp-4 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "Imaginary part of: clog (0xa.ec55b7682e528a043561d0f42p-4 + 0xb.b0f24p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": +Test "Imaginary part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a68p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": +Test "Imaginary part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f24p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f24p-4 i)": double: 1 idouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f24p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f2405504a6058p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 + 0.0 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f24p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a68p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacos (0x0.ffffffp0 - 0.0 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f25p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacos (0x1.0000000000001p0 + 0x1p-52 i)": +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a68p-4 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000001p0 + 0x1p-52 i)": +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f24p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x1.0000000000001p0 - 0x1p-52 i)": +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f25p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xb.263a77543bp-4 + 0xb.79c9ap-4 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000001p0 - 0x1p-52 i)": +Test "Imaginary part of: clog (0xb.263a77543bp-4 + 0xb.79c9bp-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x1.000002p0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (0x1.000002p0 + 0x1p-23 i)": +Test "Imaginary part of: clog (0xb.263a8p-4 + 0xb.79c9a417bb8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: cacos (0x1.000002p0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (0x1.000002p0 - 0x1p-23 i)": +Test "Imaginary part of: clog (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+124 + 0x8p-152 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: cacos (0x1.fp-10 + 1.0 i)": +Test "Real part of: clog (0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.ffffffffffff8p+1020 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-10 + 1.0 i)": +Test "Real part of: clog (0xf.fffffp+124 + 0x8p+1020 i)": double: 1 idouble: 1 -Test "Real part of: cacos (0x1.fp-10 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-10 - 1.0 i)": +Test "Real part of: clog (0xf.fffffp-4 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffp-104 i)": +float: 1 +ifloat: 1 + +# clog10 +Test "Imaginary part of: clog10 (-0 + inf i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: cacos (0x1.fp-100 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-100 + 1.0 i)": +ifloat: 1 +Test "Imaginary part of: clog10 (-0 - inf i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: cacos (0x1.fp-100 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-100 - 1.0 i)": +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1.fp-1000 + 1.0 i)": +Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1000 - 1.0 i)": +Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 1.0 i)": +Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 1.5 i)": +Test "Imaginary part of: clog10 (-2 - 3 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 1.0 i)": +Test "Imaginary part of: clog10 (-3 + inf i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 1.5 i)": +ifloat: 1 +Test "Imaginary part of: clog10 (-3 - inf i)": double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 + 0.5 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1.fp-129 + 1.0 i)": +Test "Imaginary part of: clog10 (-inf + 0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1.fp-129 + 1.5 i)": +Test "Imaginary part of: clog10 (-inf + 1 i)": double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 - 0.5 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1.fp-129 - 1.0 i)": +Test "Imaginary part of: clog10 (-inf + inf i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-inf - 0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1.fp-129 - 1.5 i)": +Test "Imaginary part of: clog10 (-inf - 1 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.fp-30 + 1.0 i)": +ifloat: 1 +Test "Imaginary part of: clog10 (0 + inf i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1.fp-30 - 1.0 i)": +Test "Imaginary part of: clog10 (0 - inf i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1.fp1023 + 0x1.fp1023 i)": +Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp127 + 0x1.fp127 i)": +Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": double: 1 +float: 2 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1p-105 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-105 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1p-105 - 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-105 - 0.5 i)": +ifloat: 2 +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-112 + 0.5 i)": +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1p-112 - 0.5 i)": +Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1p-23 + 0.5 i)": +Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1p-23 + 0x0.ffffffp0 i)": +Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-23 - 0.5 i)": float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (0x1p-23 - 0x0.ffffffp0 i)": -double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-52 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (0x1p-52 + 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1p-52 + 0x1.0000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-52 - 0.5 i)": -float: 1 ifloat: 1 -Test "Real part of: cacos (0x1p-52 - 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1p-52 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-63 + 0.5 i)": +Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1p-63 - 0.5 i)": +Test "Real part of: clog10 (0x1.fffffep+127 + 1.0 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (1.0 + 0.25 i)": +Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": double: 1 idouble: 1 -Test "Real part of: cacos (1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (1.0 + 0x1.fp-10 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (1.0 + 0x1.fp-10 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (1.0 + 0x1.fp-100 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: cacos (1.0 - 0.25 i)": +Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": double: 1 idouble: 1 -Test "Real part of: cacos (1.0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (1.0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (1.0 - 0x1.fp-10 i)": -float: 2 -ifloat: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 - 0x1.fp-10 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: clog10 (0x13836d58a13448d750b4b9p-85 + 0x195ca7bc3ab4f9161edbe6p-85 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (1.0 - 0x1.fp-100 i)": +Test "Imaginary part of: clog10 (0x155f8afc4c48685bf63610p-85 + 0x17d0cf2652cdbeb1294e19p-85 i)": ildouble: 2 ldouble: 2 - -# cacosh -Test "Real part of: cacosh (+0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (+0 + 1.0 i)": +Test "Real part of: clog10 (0x15d8ab6ed05ca514086ac3a1e84p-105 + 0x1761e480aa094c0b10b34b09ce9p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: cacosh (+0 + 1.5 i)": +Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (+0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (+0 - 1.0 i)": +Test "Imaginary part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: cacosh (+0 - 1.5 i)": +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0 + 1.0 i)": +Test "Real part of: clog10 (0x1p-1074 + 0x1p-1074 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: cacosh (-0 + 1.5 i)": +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0 - 1.0 i)": +Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: cacosh (-0 - 1.5 i)": +Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": double: 1 -idouble: 1 -Test "Real part of: cacosh (-0.0 + 0x1.000000000000000000000000008p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.0 - 0x1.000000000000000000000000008p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.25 + 1.0 i)": float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.25 + 1.0 i)": +Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: cacosh (-0.25 - 1.0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.25 - 1.0 i)": +Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0.5 + +0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-105 i)": +Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-105 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-112 i)": +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-112 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-23 i)": +Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-23 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 1.0 i)": +Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": double: 1 idouble: 1 +Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 1.0 i)": +Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": +double: 1 float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +double: 1 +float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0.5 - 0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-1025 i)": +Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x298c62cb546588a7p-63 + 0x7911b1dfcc4ecdaep-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1.fp-129 i)": +Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-105 i)": +Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-112 i)": +Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-112 i)": +Test "Imaginary part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-23 i)": +Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-23 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-52 i)": +Test "Imaginary part of: clog10 (0x81b7efa81fc35ad1p-65 + 0x1ef4b835f1c79d812p-65 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-52 i)": +Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0xe33f66c9542ca25cc43c867p-95 + 0x7f35a68ebd3704a43c465864p-95 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-63 i)": +Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 - 1.0 i)": +Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 1.0 i)": +Test "Imaginary part of: clog10 (3 + inf i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "Imaginary part of: clog10 (3 - inf i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +ifloat: 1 +Test "Imaginary part of: clog10 (inf + inf i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0x0.ffffffp0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0x0.ffffffp0 + 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacosh (-0x0.ffffffp0 - 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0x0.ffffffp0 - 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacosh (-0x1.0000000000000002p0 + 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.0000000000000002p0 - 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000001p0 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.0000000000001p0 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000001p0 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.0000000000001p0 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0x1.000002p0 + 0x1p-23 i)": +ifloat: 1 +Test "Imaginary part of: clog10 (inf - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# cos +Test "cos (0x1p+120)": float: 1 ifloat: 1 +Test "cos (0x2.182a4705ae6cb08cb7665c1eacp+0)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: cacosh (-0x1.000002p0 + 0x1p-23 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0x1.000002p0 - 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "cos (0x2.182a4705ae6cb08cb7665c1eadp+0)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: cacosh (-0x1.000002p0 - 0x1p-23 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-10 + 1.0 i)": +Test "cos (0x2.182a4705ae6cb08cp+0)": +ildouble: 2 +ldouble: 2 +Test "cos (0x2.182a4705ae6cb09p+0)": +ildouble: 2 +ldouble: 2 +Test "cos (0x7p+0)": +float: 1 +ifloat: 1 +Test "cos (0x8p+124)": +float: 1 +ifloat: 1 +Test "cos (0xc.d4967p-4)": +float: 1 +ifloat: 1 + +# cos_downward +Test "cos_downward (-0x4p-1024)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x1.fp-10 - 1.0 i)": +Test "cos_downward (-0x4p-1076)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x1.fp-100 + 1.0 i)": +Test "cos_downward (-0x4p-128)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-100 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-100 - 1.0 i)": +Test "cos_downward (-0x8p-152)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-100 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-1000 + 1.0 i)": +Test "cos_downward (-0x8p-972)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x1.fp-1000 - 1.0 i)": +Test "cos_downward (-0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 1.0 i)": +Test "cos_downward (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.fffffp+124)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 1.5 i)": +Test "cos_downward (0x1.000000cf4a2a2p+0)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 1.0 i)": +Test "cos_downward (0x1.0000010b239a9p+0)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 1.5 i)": +Test "cos_downward (0x1.00000162a932bp+0)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x1.fp-129 + 0.5 i)": +Test "cos_downward (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.000002p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0.5 i)": +Test "cos_downward (0x1.000004p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.000006p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.000002p0 i)": +Test "cos_downward (0x1.0c1522p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.fp-129 i)": +Test "cos_downward (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.0c1524p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1p-23 i)": +Test "cos_downward (0x1.921fb4p+0)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 + 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18469898cc517018p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18469898cc51702p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d19p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1.921fb6p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.0 i)": +ildouble: 3 +ldouble: 3 +Test "cos_downward (0x1p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 + 1.5 i)": +Test "cos_downward (0x1p+120)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1p+28)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x0.ffffffp0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a44p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.0 i)": +Test "cos_downward (0x2.182a4705ae6cap+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 3 +ldouble: 3 +Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 3 +ldouble: 3 +Test "cos_downward (0x2.182a4705ae6cb08cp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x2.182a4705ae6cb09p+0)": +ildouble: 3 +ldouble: 3 +Test "cos_downward (0x2.182a4705ae6ccp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a48p+0)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 - 1.5 i)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.1e19e0c9bab24p+72)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-30 + 1.0 i)": +Test "cos_downward (0x2.1e19e4p+72)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-30 + 1.0 i)": +Test "cos_downward (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-30 - 1.0 i)": +Test "cos_downward (0x3p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-30 - 1.0 i)": -float: 1 -ifloat: 1 +Test "cos_downward (0x4p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-105 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-105 + 0.5 i)": +Test "cos_downward (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_downward (0x4p-1024)": +double: 1 +idouble: 1 +Test "cos_downward (0x4p-1076)": +double: 1 +idouble: 1 +Test "cos_downward (0x4p-128)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-105 + 0.5 i)": +Test "cos_downward (0x8p+0)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x8p+1020)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-105 + 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-105 - 0.0 i)": +Test "cos_downward (0x8p-152)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-105 - 0.5 i)": +Test "cos_downward (0x8p-972)": +double: 1 +idouble: 1 +Test "cos_downward (0x9p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-105 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xa.217bap+12)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-105 - 0x1p-105 i)": +Test "cos_downward (0xap+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 + 0.0 i)": +ildouble: 2 +ldouble: 2 +Test "cos_downward (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xc.d4966p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-112 + 0.5 i)": +Test "cos_downward (0xc.d4967p-4)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 + 0.5 i)": +Test "cos_downward (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xf.ffffcp+124)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.fffffp+124)": +double: 1 +idouble: 1 + +# cos_tonearest +Test "cos_tonearest (0x1p+120)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 + 0x1p-112 i)": +Test "cos_tonearest (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_tonearest (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_tonearest (0x2.182a4705ae6cb08cp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_tonearest (0x2.182a4705ae6cb09p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_tonearest (0x7p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 - 0.0 i)": +Test "cos_tonearest (0x8p+124)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-112 - 0.5 i)": +Test "cos_tonearest (0xc.d4967p-4)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 - 0.5 i)": + +# cos_towardzero +Test "cos_towardzero (-0x4p-1024)": +double: 1 +idouble: 1 +Test "cos_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 +Test "cos_towardzero (-0x4p-128)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 - 0x1p-112 i)": +Test "cos_towardzero (-0x8p-152)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-23 + 0.0 i)": +Test "cos_towardzero (-0x8p-972)": +double: 1 +idouble: 1 +Test "cos_towardzero (-0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000002p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000004p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb4p+0)": +ildouble: 3 +ldouble: 3 +Test "cos_towardzero (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "cos_towardzero (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "cos_towardzero (0x1.921fb6p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_towardzero (0x1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1p+120)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-23 + 0.5 i)": +Test "cos_towardzero (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6cb08cp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_towardzero (0x2.182a4705ae6cb09p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.182a48p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p-1024)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p-1076)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p-128)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-23 + 0.5 i)": +Test "cos_towardzero (0x5p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p+1020)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x8p-152)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "cos_towardzero (0x8p-972)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xa.217bap+12)": +ildouble: 3 +ldouble: 3 +Test "cos_towardzero (0xap+0)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-23 + 0x0.ffffffp0 i)": +Test "cos_towardzero (0xc.d4966d92d1708p-4)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x1p-23 + 0x1.000002p0 i)": +Test "cos_towardzero (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xf.ffffcp+124)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 + 0x1.fp-129 i)": +Test "cos_towardzero (0xf.fffffp+124)": +double: 1 +idouble: 1 + +# cos_upward +Test "cos_upward (-0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (-0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.000002p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-23 + 0x1p-23 i)": +Test "cos_upward (0x1.000004p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-23 - 0.0 i)": +Test "cos_upward (0x1.000005bc7d86dp+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.000006p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-23 - 0.5 i)": +Test "cos_upward (0x1.0c1522p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-23 - 0.5 i)": +Test "cos_upward (0x1.0c152382d7366p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.0c1524p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.921fb4p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "cos_upward (0x1.921fb54442d18468p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-23 - 0x0.ffffffp0 i)": +Test "cos_upward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18p+0)": +ildouble: 3 +ldouble: 3 +Test "cos_upward (0x1.921fb54442d19p+0)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x1p-23 - 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-23 - 0x1p-23 i)": +Test "cos_upward (0x1.921fb6p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-52 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-52 + 0.5 i)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x1p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-52 + 0.5 i)": +Test "cos_upward (0x1p+120)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "cos_upward (0x1p+28)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-52 + 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-52 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-52 - 0.5 i)": +Test "cos_upward (0x2.182a44p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-52 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6cb08cp+0)": +ildouble: 3 +ldouble: 3 +Test "cos_upward (0x2.182a4705ae6cb09p+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x2.182a48p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-52 - 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-63 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 + 0x1p-63 i)": +Test "cos_upward (0x2.1e19e4p+72)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-63 - 0.5 i)": +Test "cos_upward (0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (0x3p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x4p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x5p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x6p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x7p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 - 0x1p-63 i)": +Test "cos_upward (0x8p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: cacosh (-1.0 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+124)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-1.0 + 0.5 i)": +Test "cos_upward (0x9p+0)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 + 0x1.fp-10 i)": +Test "cos_upward (0xa.217bap+12)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "cos_upward (0xap+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-1.0 + 0x1.fp-100 i)": +Test "cos_upward (0xc.d4966d92d171p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-1.0 + 0x1p50 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-1.0 - 0.5 i)": +Test "cos_upward (0xc.d4966p-4)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-1.0 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 - 0x1.fp-10 i)": +Test "cos_upward (0xc.d4967p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "cos_upward (0xf.ffffcp+124)": +double: 1 +idouble: 1 +Test "cos_upward (0xf.ffffffffffff8p+1020)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-1.0 - 0x1.fp-100 i)": +Test "cos_upward (0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-1.0 - 0x1p50 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-2 - 3 i)": + +# cosh +Test "cosh (-0x1p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-inf + inf i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-inf - inf i)": +Test "cosh (-0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh (0x1.8p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 + 0x1.000000000000000000000000008p0 i)": +Test "cosh (0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh (0x3.2p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 - 0x1.000000000000000000000000008p0 i)": + +# cosh_downward +Test "cosh_downward (-0x1p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.25 + 1.0 i)": +Test "cosh_downward (-0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_downward (-0x2.c5e3acp+8)": +ildouble: 2 +ldouble: 2 +Test "cosh_downward (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_downward (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_downward (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (-0x5.96a7ep+4)": float: 1 ifloat: 1 +Test "cosh_downward (0x1.6p+4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.25 - 1.0 i)": +Test "cosh_downward (0x1.7p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_downward (0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_downward (0x2.c5e3acp+8)": +ildouble: 2 +ldouble: 2 +Test "cosh_downward (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cosh_downward (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x5.96a7ep+4)": +float: 1 +ifloat: 1 +Test "cosh_downward (0xcp-4)": +ildouble: 2 +ldouble: 2 + +# cosh_tonearest +Test "cosh_tonearest (-0x1p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + +0 i)": +Test "cosh_tonearest (-0x2.c5e3acp+8)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1.fp-1025 i)": +Test "cosh_tonearest (-0x2.c679dp+8)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1.fp-129 i)": +Test "cosh_tonearest (0x1.8p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (0x2.c5e3acp+8)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1.fp-129 i)": +Test "cosh_tonearest (0x2.c679dp+8)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-105 i)": +Test "cosh_tonearest (0x3.2p+4)": +ildouble: 1 +ldouble: 1 + +# cosh_towardzero +Test "cosh_towardzero (-0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (-0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (-0x2.c5e3acp+8)": +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (-0x2.c5e3bp+8)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-105 i)": +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (-0x2.c679d1f73f0fap+8)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-112 i)": +Test "cosh_towardzero (-0x2.c679dp+8)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-112 i)": +Test "cosh_towardzero (-0x5.96a7ep+4)": +float: 1 +ifloat: 1 +Test "cosh_towardzero (0x1.6p+4)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (0x1.7p+4)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-52 i)": +Test "cosh_towardzero (0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (0x2.c5e3acp+8)": +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (0x2.c5e3bp+8)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-63 i)": +ildouble: 2 +ldouble: 2 +Test "cosh_towardzero (0x2.c679d1f73f0fap+8)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 + 1.0 i)": +Test "cosh_towardzero (0x2.c679dp+8)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 1.0 i)": +Test "cosh_towardzero (0x5.96a7ep+4)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0.5 - 0 i)": +Test "cosh_towardzero (0xcp-4)": +ildouble: 2 +ldouble: 2 + +# cosh_upward +Test "cosh_upward (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c5e3acp+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c5e3bp+8)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c679d1f73f0fap+8)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1.fp-129 i)": +Test "cosh_upward (-0x2.c679dp+8)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1.fp-129 i)": +Test "cosh_upward (-0x5.96a7e8p+4)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-105 i)": +Test "cosh_upward (-0x5.96a7ep+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "cosh_upward (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x1.7p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x1.8p+4)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-105 i)": +ildouble: 2 +ldouble: 2 +Test "cosh_upward (0x2.c5e3acd2922a6p+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x2.c5e3acp+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x2.c5e3bp+8)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x2.c679d1f73f0fap+8)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-112 i)": +Test "cosh_upward (0x2.c679dp+8)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-23 i)": +Test "cosh_upward (0x3.2p+4)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-52 i)": +Test "cosh_upward (0x5.96a7e8p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (0x5.96a7ep+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +# cpow +Test "Real part of: cpow (0x2p+0 + +0 i, 0xap+0 + +0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-52 i)": +Test "Real part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 +Test "Imaginary part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, +0 + 0x1p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + 0x1p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 4 +ldouble: 4 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 +ildouble: 2 +ldouble: 2 + +# csin +Test "Real part of: csin (-0.75 + 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (-0.75 + 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: csin (-0.75 - 710.5 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-63 i)": +Test "Real part of: csin (-0.75 - 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: csin (0.75 + 710.5 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0.5 - 1.0 i)": +Test "Real part of: csin (0.75 + 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: csin (0.75 - 710.5 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 1.0 i)": +Test "Real part of: csin (0.75 - 89.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: csin (0x1p-1074 + 1440 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": + +# csinh +Test "Imaginary part of: csinh (-2 - 3 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0.0 i)": +Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-89.5 + 0.75 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1.fp-129 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: csinh (-89.5 - 0.75 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0.0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: csinh (0.75 + 1.25 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1.fp-129 i)": +Test "Imaginary part of: csinh (0.75 + 1.25 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000001p0 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0x1.0000000000001p0 + 0x1p-52 i)": +Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.0000000000001p0 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0x1.0000000000001p0 - 0x1p-52 i)": +Test "Imaginary part of: csinh (710.5 + 0.75 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.000002p0 + 0x1p-23 i)": +Test "Imaginary part of: csinh (710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (89.5 + 0.75 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: cacosh (0x1.000002p0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacosh (0x1.000002p0 - 0x1p-23 i)": +Test "Imaginary part of: csinh (89.5 - 0.75 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: cacosh (0x1.000002p0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacosh (0x1.fp-10 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0x1.fp-10 + 1.0 i)": + +# csqrt +Test "Real part of: csqrt (+0 + 0xf.fffffp+124 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-10 - 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0x1.fp-10 - 1.0 i)": +Test "Imaginary part of: csqrt (+0 + 0xf.fffffp+124 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-100 + 1.0 i)": -double: 1 +Test "Real part of: csqrt (-0x2p+0 + 0x3p+0 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0x1.fp-100 + 1.0 i)": +Test "Real part of: csqrt (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (-0x4.000008p-128 - 0x4.000008p-128 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (-0x4p-1076 - 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-100 - 1.0 i)": +Test "Real part of: csqrt (-0x8p-152 - 0x4p-1076 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (0x1.fp-100 - 1.0 i)": +Test "Imaginary part of: csqrt (0x4.000008p-128 + 0x4.000008p-128 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1000 + 1.0 i)": +Test "Real part of: csqrt (0x4p-1076 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0xf.fffffp+124 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp-1000 - 1.0 i)": +Test "Imaginary part of: csqrt (0x8p+1020 + 0x8p-152 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": +Test "Imaginary part of: csqrt (0x8p+124 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (0x8p-152 + 0xf.fffffp+124 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 1.0 i)": +Test "Imaginary part of: csqrt (0x8p-152 + 0xf.fffffp+124 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 1.5 i)": +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p+1020 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 1.0 i)": +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p-152 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 1.5 i)": +Test "Real part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (0x1.fp-129 + 1.0 i)": +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: cacosh (0x1.fp-129 + 1.5 i)": +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.fffffp+124 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp-129 - 0.5 i)": +Test "Real part of: csqrt (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0x1p+0 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (0x1.fp-129 - 1.0 i)": -double: 1 + +# ctan +Test "Real part of: ctan (-0x2p+0 - 0x3p+0 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: cacosh (0x1.fp-129 - 1.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (-0x2p+0 - 0x3p+0 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp-30 + 1.0 i)": +Test "Real part of: ctan (0x1.921fb4p+0 + +0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: cacosh (0x1.fp-30 - 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: cacosh (0x1.fp1023 + 0x1.fp1023 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.fp127 + 0x1.fp127 i)": +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1p-105 + 0.5 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-105 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb54442d1846ap+0 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-105 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-105 - 0.5 i)": +Test "Real part of: ctan (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: ctan (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-112 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (0x1p-112 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (0x1p-23 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (0x1p-23 + 0x0.ffffffp0 i)": +Test "Real part of: ctan (0x1.921fb54442d19p+0 + +0 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1p-23 + 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (0x1p-23 - 0x0.ffffffp0 i)": +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1p-23 - 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-52 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-52 + 0x0.fffffffffffff8p0 i)": +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-52 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-52 - 0.5 i)": +Test "Real part of: ctan (0x1.921fb6p+0 + +0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-52 - 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-52 - 0x1.0000000000001p0 i)": +Test "Real part of: ctan (0x1.921fb6p+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 + 0.5 i)": +Test "Real part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (0x1p-63 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (1.0 + 0.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p+0 + 0x2.fp+4 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x8p+1020 + 0x1p+0 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (1.0 + 0x1.fp-10 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: ctan (0x8p+1020 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (1.0 + 0x1.fp-10 i)": -float: 2 -ifloat: 2 +Test "Real part of: ctan (0x8p+124 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (1.0 + 0x1.fp-100 i)": +Test "Imaginary part of: ctan (0x8p+124 + 0x1p+0 i)": +double: 1 +idouble: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: cacosh (1.0 - 0.25 i)": +Test "Imaginary part of: ctan (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (1.0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (1.0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (1.0 - 0x1.fp-10 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (1.0 - 0x1.fp-10 i)": -float: 2 -ifloat: 2 +Test "Real part of: ctan (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (1.0 - 0x1.fp-100 i)": +Test "Real part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 2 ldouble: 2 -# carg -Test "carg (-inf + inf i)": +# ctan_downward +Test "Real part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +double: 3 +idouble: 3 +ildouble: 8 +ldouble: 8 +Test "Imaginary part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "carg (-inf - inf i)": +Test "Real part of: ctan_downward (-0xc.35p+12 + 0xc.35p+12 i)": ildouble: 1 ldouble: 1 - -# casin -Test "Imaginary part of: casin (+0 + 0.5 i)": +Test "Real part of: ctan_downward (-0xc.35p+12 - 0xc.35p+12 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + +0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (+0 + 1.0 i)": -double: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (+0 + 1.5 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (+0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (+0 - 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + +0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: casin (+0 - 1.5 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0 + 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-152 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0 + 1.5 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + +0 i)": +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 10 +ldouble: 10 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + +0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0 - 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0 - 1.5 i)": +ildouble: 8 +ldouble: 8 +Test "Real part of: ctan_downward (0x1p+0 + 0x2.dp+4 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: casin (-0.0 + 0x1.000000000000000000000000008p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0.0 - 0x1.000000000000000000000000008p0 i)": +ifloat: 1 +Test "Imaginary part of: ctan_downward (0x1p+0 + 0x2.dp+4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.25 + 1.0 i)": +Test "Real part of: ctan_downward (0x1p+0 + 0x2.fp+4 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x8p+1020 + 0x1p+0 i)": +double: 6 +idouble: 6 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0.25 - 1.0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0xcp-4 + 0x1.4p+0 i)": float: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 3 +idouble: 3 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-23 i)": -double: 1 -idouble: 1 -Test "Real part of: casin (-0.5 + 0x1p-52 i)": +Test "Imaginary part of: ctan_downward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-52 i)": +Test "Imaginary part of: ctan_downward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 1.0 i)": +Test "Real part of: ctan_downward (0xf.fffffp+124 + 0x1p+0 i)": +double: 5 +float: 5 +idouble: 5 +ifloat: 5 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0xf.fffffp+124 + 0x1p+0 i)": double: 1 idouble: 1 +ildouble: 3 +ldouble: 3 + +# ctan_tonearest +Test "Real part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-105 i)": +Test "Imaginary part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-112 i)": +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + +0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-23 i)": +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0.5 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffp0 + 0.0 i)": +Test "Real part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffp0 + 0x1.fp-129 i)": +Test "Real part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: casin (-0x0.ffffffp0 - 0.0 i)": +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffp0 - 0x1.fp-129 i)": +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casin (-0x1.0000000000001p0 + 0x1p-52 i)": +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.0000000000001p0 - 0x1p-52 i)": +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.000002p0 + 0x1p-23 i)": +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casin (-0x1.000002p0 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x2.fp+4 i)": ildouble: 2 ldouble: 2 -Test "Real part of: casin (-0x1.fp-10 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0x1.fp-10 + 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: casin (-0x1.fp-10 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0x1.fp-10 - 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (-0x1.fp-100 + 1.0 i)": +Test "Real part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0x1.fp-100 - 1.0 i)": +Test "Imaginary part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x8p+124 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x8p+124 + 0x1p+0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0x1.fp-1000 + 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0xcp-4 + 0x1.4p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1000 - 1.0 i)": +Test "Real part of: ctan_tonearest (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 1.5 i)": +Test "Real part of: ctan_tonearest (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 1.0 i)": +Test "Imaginary part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 1.5 i)": +ifloat: 1 +ildouble: 2 +ldouble: 2 + +# ctan_towardzero +Test "Real part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 10 +ldouble: 10 +Test "Imaginary part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0x1.fp-129 + 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1.fp-129 + 1.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 - 0.5 i)": +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + +0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1.fp-129 - 1.0 i)": -double: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1.fp-129 - 1.5 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": double: 1 +float: 2 idouble: 1 -Test "Imaginary part of: casin (-0x1.fp-30 + 1.0 i)": +ifloat: 2 +ildouble: 8 +ldouble: 8 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + +0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0x1.fp-30 - 1.0 i)": +ildouble: 6 +ldouble: 6 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casin (-0x1p-105 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0x1p-105 + 0.5 i)": +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 13 +ldouble: 13 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 14 +ldouble: 14 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 6 +ldouble: 6 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 14 +ldouble: 14 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + +0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1p-105 - 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0x1p-105 - 0.5 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1p-106 + 0x1.000000000000000000000000008p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1p-106 - 0x1.000000000000000000000000008p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0x1p-112 + 0.5 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-112 - 0.5 i)": +ildouble: 8 +ldouble: 8 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.dp+4 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x1p+0 + 0x2.dp+4 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x8p+1020 + 0x1p+0 i)": +double: 5 +idouble: 5 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Real part of: casin (-0x1p-23 + 0.5 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_towardzero (0xc.35p+12 - 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-23 + 0.5 i)": +Test "Real part of: ctan_towardzero (0xcp-4 + 0x1.4p+0 i)": float: 1 ifloat: 1 -Test "Real part of: casin (-0x1p-23 + 0x0.ffffffp0 i)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (-0x1p-23 + 0x0.ffffffp0 i)": +Test "Imaginary part of: ctan_towardzero (0xcp-4 + 0x1.4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_towardzero (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctan_towardzero (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +Test "Imaginary part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x1p-23 + 0x1.000002p0 i)": +ildouble: 3 +ldouble: 3 + +# ctan_upward +Test "Real part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1p-23 - 0.5 i)": +Test "Imaginary part of: ctan_upward (-0xc.35p+12 + 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: casin (-0x1p-23 - 0x0.ffffffp0 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casin (-0x1p-23 - 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Real part of: casin (-0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (-0xc.35p+12 - 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0x1p-52 + 0.5 i)": +Test "Real part of: ctan_upward (0x1.921fb4p+0 + +0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-52 - 0.5 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": float: 1 ifloat: 1 -Test "Real part of: casin (-0x1p-63 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0x1p-63 + 0.5 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Real part of: casin (-0x1p-63 - 0.5 i)": +ildouble: 7 +ldouble: 7 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-63 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: casin (-1.0 + 0.25 i)": +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 9 +ldouble: 9 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 10 +ldouble: 10 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + +0 i)": double: 1 idouble: 1 -Test "Real part of: casin (-1.0 + 0.5 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: casin (-1.0 + 0x1.fp-10 i)": +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 + 0x1.fp-10 i)": +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + +0 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 - 0.25 i)": +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": double: 1 +float: 3 idouble: 1 -Test "Real part of: casin (-1.0 - 0.5 i)": +ifloat: 3 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63ap+12 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 - 0.5 i)": +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+12 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: casin (-1.0 - 0x1.fp-10 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 - 0x1.fp-10 i)": +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+8 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-2 - 3 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0.0 + 0x1.000000000000000000000000008p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0.0 - 0x1.000000000000000000000000008p0 i)": +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.6dp+8 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.25 + 1.0 i)": +Test "Real part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.25 - 1.0 i)": +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-23 i)": +Test "Real part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": double: 1 idouble: 1 -Test "Real part of: casin (0.5 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-52 i)": +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 + 1.0 i)": +Test "Real part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": +double: 2 +idouble: 2 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-23 i)": +Test "Real part of: ctan_upward (0x8p+124 + 0x1p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctan_upward (0x8p+124 + 0x1p+0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0.5 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0.5 - 1.0 i)": +Test "Imaginary part of: ctan_upward (0xc.35p+12 + 0xc.35p+12 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.75 + 1.25 i)": +Test "Imaginary part of: ctan_upward (0xc.35p+12 - 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "Real part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: casin (0x0.fffffffffffff8p0 - 0x1p-52 i)": +ifloat: 1 +Test "Real part of: ctan_upward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffp0 + 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffp0 - 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x0.ffffffp0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x0.ffffffp0 + 0x1.fp-129 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +Test "Real part of: ctan_upward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0xf.fffffp+124 + 0x1p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0xf.fffffp+124 + 0x1p+0 i)": +ildouble: 4 +ldouble: 4 + +# ctanh +Test "Imaginary part of: ctanh (+0 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: casin (0x0.ffffffp0 - 0.0 i)": +Test "Imaginary part of: ctanh (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffp0 - 0x1.fp-129 i)": +Test "Imaginary part of: ctanh (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casin (0x1.0000000000001p0 + 0x1p-52 i)": +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c235p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.0000000000001p0 - 0x1p-52 i)": +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168cp-4 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdap-4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.000002p0 + 0x1p-23 i)": +Test "Imaginary part of: ctanh (+0 + 0xc.90fdbp-4 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casin (0x1.000002p0 - 0x1p-23 i)": +Test "Real part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: casin (0x1.fp-10 + 1.0 i)": +Test "Imaginary part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1.fp-10 + 1.0 i)": +Test "Real part of: ctanh (0x1p+0 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+1020 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1.fp-10 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (0x1.fp-10 - 1.0 i)": +Test "Real part of: ctanh (0x1p+0 + 0x8p+124 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp-100 + 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: casin (0x1.fp-100 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1.fp-1000 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0x1.fp-1000 - 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 0x1.000000000000000000000000008p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 1.0 i)": +Test "Imaginary part of: ctanh (0x2.fp+4 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 1.5 i)": +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 0x1.000000000000000000000000008p0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 1.0 i)": +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 1.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (0x1.fp-129 + 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1.fp-129 + 1.5 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1.fp-129 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0xcp-4 + 0x1.4p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1.fp-129 - 1.5 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 + +# ctanh_downward +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp-30 + 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d19p+0 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb6p+0 i)": double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c8p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdap-4 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdbp-4 i)": +ildouble: 7 +ldouble: 7 +Test "Real part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": +double: 4 float: 1 -idouble: 1 +idouble: 4 ifloat: 1 -Test "Imaginary part of: casin (0x1.fp-30 - 1.0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0x1.fp127 + 0x1.fp127 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x1p-105 + 0.5 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_downward (-0xc.35p+12 - 0xc.35p+12 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-105 + 0.5 i)": +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+1020 i)": +double: 6 +idouble: 6 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Imaginary part of: casin (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x1p-105 - 0.5 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 3 +idouble: 3 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-105 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-106 + 0x1.000000000000000000000000008p0 i)": +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-106 - 0x1.000000000000000000000000008p0 i)": +Test "Real part of: ctanh_downward (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.fffffp+124 i)": +double: 5 +float: 5 +idouble: 5 +ifloat: 5 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_downward (0x2.dp+4 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-112 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (0x1p-112 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: casin (0x1p-23 + 0.5 i)": +Test "Imaginary part of: ctanh_downward (0x2.dp+4 + 0x1p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-23 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: casin (0x1p-23 + 0x0.ffffffp0 i)": +Test "Imaginary part of: ctanh_downward (0x2.fp+4 + 0x1p+0 i)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (0x1p-23 + 0x0.ffffffp0 i)": +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1p-23 + 0x1.000002p0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb6p+0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: casin (0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (0x1p-23 - 0.5 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: casin (0x1p-23 - 0.5 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": float: 1 ifloat: 1 -Test "Real part of: casin (0x1p-23 - 0x0.ffffffp0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (0x1p-23 - 0x0.ffffffp0 i)": +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1p-23 - 0x1.000002p0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 10 +ldouble: 10 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 5 +ldouble: 5 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0x1p-52 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (0x1p-52 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: casin (0x1p-63 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0x1p-63 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: casin (0x1p-63 - 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0x1p-63 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: casin (1.0 + 0.25 i)": +ildouble: 8 +ldouble: 8 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": double: 1 idouble: 1 -Test "Real part of: casin (1.0 + 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: casin (1.0 + 0x1.fp-10 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (1.0 + 0x1.fp-10 i)": -float: 1 -ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0xc.35p+12 - 0xc.35p+12 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 - 0.25 i)": +Test "Real part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": double: 1 idouble: 1 -Test "Real part of: casin (1.0 - 0.5 i)": +ildouble: 4 +ldouble: 4 + +# ctanh_tonearest +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb4p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: casin (1.0 - 0x1.fp-10 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 - 0x1.fp-10 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# casinh -Test "Imaginary part of: casinh (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0.0 + 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.0 - 0x0.ffffffp0 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c235p-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.25 + 1.0 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168cp-4 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-0.25 - 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (-0.5 + +0 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 + 0x1p-105 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdap-4 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Imaginary part of: casinh (-0.5 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 + 0x1p-112 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdbp-4 i)": float: 1 ifloat: 1 -Test "Real part of: casinh (-0.5 + 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (-0.5 + 0x1p-23 i)": +Test "Real part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casinh (-0.5 + 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 + 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (-0.5 + 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (-0.5 + 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 0 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (-0.5 - 0x1p-105 i)": +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+124 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+124 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (-0.5 - 0x1p-23 i)": +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (-0.5 - 1.0 i)": +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x2.fp+4 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb6p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffp0 + 0x1p-23 i)": +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-0x0.ffffffp0 + 0x1p-23 i)": ildouble: 2 ldouble: 2 -Test "Real part of: casinh (-0x0.ffffffp0 - 0x1p-23 i)": +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: casinh (-0x0.ffffffp0 - 0x1p-23 i)": +ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: casinh (-0x1.000000000000000000000000008p0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1.000000000000000000000000008p0 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1.000000000000000000000000008p0 + 0x1p-106 i)": +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.000000000000000000000000008p0 - 0.0 i)": +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.000000000000000000000000008p0 - 0x1.fp-1025 i)": +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.000000000000000000000000008p0 - 0x1p-106 i)": +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.000002p0 + 0x1p-23 i)": +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1p-23 i)": +Test "Real part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casinh (-0x1.000002p0 - 0x1p-23 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 + +# ctanh_towardzero +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c8p-4 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 11 +ldouble: 11 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdap-4 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdbp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1p-23 i)": +Test "Real part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casinh (-0x1.fp-10 + 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-10 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1.fp-10 - 1.0 i)": +Test "Real part of: ctanh_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+1020 i)": +double: 5 +idouble: 5 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 2 +idouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-10 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-129 + 0.5 i)": +Test "Real part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-129 + 0x0.ffffffp0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +Test "Real part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-129 - 0.5 i)": +Test "Imaginary part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-129 - 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1p-105 + 0.5 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 13 +ldouble: 13 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 -Test "Real part of: casinh (-0x1p-105 - 0.5 i)": +ildouble: 6 +ldouble: 6 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": double: 1 +float: 2 idouble: 1 -Test "Real part of: casinh (-0x1p-112 + 0.5 i)": +ifloat: 2 +ildouble: 8 +ldouble: 8 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 13 +ldouble: 13 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 -Test "Real part of: casinh (-0x1p-112 - 0.5 i)": +ildouble: 6 +ldouble: 6 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 12 +ldouble: 12 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: casinh (-0x1p-23 + 0.5 i)": +ifloat: 1 +ildouble: 8 +ldouble: 8 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1p-23 + 0x1.000002p0 i)": +ifloat: 1 +ildouble: 4 +ldouble: 4 + +# ctanh_upward +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb4p+0 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: casinh (-0x1p-23 - 0.5 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 -Test "Real part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 - 0x1.000002p0 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb6p+0 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: casinh (-0x1p-52 + 0.5 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234c4c6628b80cp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-52 + 0.5 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-52 + 0x0.fffffffffffff8p0 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c8p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 10 +ldouble: 10 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdap-4 i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: casinh (-0x1p-52 + 0x1.0000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1p-52 - 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-52 - 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1p-52 - 0x0.fffffffffffff8p0 i)": +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdbp-4 i)": +float: 1 +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": double: 1 +float: 2 idouble: 1 -Test "Real part of: casinh (-0x1p-52 - 0x1.0000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 + +0 i)": +ifloat: 2 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctanh_upward (-0xc.35p+12 - 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casinh (-1.0 + 0.25 i)": +Test "Real part of: ctanh_upward (0x1.63ap+12 + 0x1p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0.5 i)": +Test "Real part of: ctanh_upward (0x1.63p+12 + 0x1p+0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-10 i)": +Test "Real part of: ctanh_upward (0x1.63p+8 + 0x1p+0 i)": double: 1 -idouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-10 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-100 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1.6dp+8 + 0x1p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": double: 1 idouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": +double: 2 +idouble: 2 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+124 i)": double: 1 idouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-129 i)": +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+124 i)": +double: 2 +idouble: 2 +Test "Real part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-30 i)": -double: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (0x1p+0 + 0xf.fffffp+124 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.fffffp+124 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": +double: 2 float: 1 -idouble: 1 +idouble: 2 ifloat: 1 -Test "Real part of: casinh (-1.0 - 0 i)": -double: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: casinh (-1.0 - 0.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x2.fp+4 + 0x1p+0 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0.5 i)": +Test "Imaginary part of: ctanh_upward (0x2.fp+4 + 0x1p+0 i)": double: 1 idouble: 1 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-10 i)": +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-10 i)": +ildouble: 9 +ldouble: 9 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 6 +ldouble: 6 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb6p+0 i)": +double: 2 +idouble: 2 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-100 i)": -double: 1 +ildouble: 7 +ldouble: 7 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-1000 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 10 +ldouble: 10 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-1025 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-129 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": double: 1 -float: 1 +float: 3 idouble: 1 +ifloat: 3 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 2 +float: 1 +idouble: 2 ifloat: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-30 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (0xc.35p+12 + 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casinh (-1.5 + +0 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (-1.5 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0xc.35p+12 - 0xc.35p+12 i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: casinh (-1.5 + 0x1.fp-129 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0xcp-4 + 0x1.4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0xcp-4 + 0x1.4p+0 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 + +# erf +Test "erf (0x1.4p+0)": double: 1 idouble: 1 -Test "Real part of: casinh (-1.5 - 0 i)": + +# erfc +Test "erfc (-0x8p-4)": +float: 1 +ifloat: 1 +Test "erfc (0x2p+0)": double: 1 idouble: 1 -Test "Real part of: casinh (-1.5 - 0x1.fp-1025 i)": +Test "erfc (0x3.ee6078p+0)": double: 1 idouble: 1 -Test "Real part of: casinh (-1.5 - 0x1.fp-129 i)": +Test "erfc (0x4.2p+0)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "erfc (0x7.fe8008p+0)": +float: 1 +ifloat: 1 +Test "erfc (0x7.fffd59e26af37bc048d159e26ap+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.0 + 0x0.ffffffp0 i)": +Test "erfc (0x7.fffd59e26af37bc8p+0)": +ildouble: 2 +ldouble: 2 +Test "erfc (0x7.fffd59e26af37bcp+0)": +ildouble: 2 +ldouble: 2 +Test "erfc (0x7.fffd6p+0)": +float: 1 +ifloat: 1 + +# exp +Test "exp (0x3.2p+4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "exp (0xcp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.0 - 0x0.ffffffp0 i)": + +# exp10 +Test "exp10 (-0x1.31p+8)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.25 + 1.0 i)": +Test "exp10 (-0x1p+0)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (0.25 - 1.0 i)": +Test "exp10 (-0x2.4p+4)": double: 1 idouble: 1 -Test "Real part of: casinh (0.5 + +0 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 + 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.5 + 0x1p-105 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0.5 + 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 + 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.5 + 0x1p-23 i)": +Test "exp10 (0x2.4p+4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 + 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 + 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.5 + 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.5 + 1.0 i)": -float: 1 -ifloat: 1 +Test "exp10 (0x3p+0)": +double: 1 +idouble: 1 + +# exp10_downward +Test "exp10_downward (-0x1.31p+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 - 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.5 - 0x1p-105 i)": +Test "exp10_downward (-0x1p+0)": +ildouble: 3 +ldouble: 3 +Test "exp10_downward (-0x2.4p+4)": +ildouble: 3 +ldouble: 3 +Test "exp10_downward (0x1.31p+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 - 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.5 - 0x1p-23 i)": +Test "exp10_downward (0x2.4p+4)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "exp10_downward (0x3p+0)": +ildouble: 2 +ldouble: 2 +Test "exp10_downward (0xcp-4)": +ildouble: 2 +ldouble: 2 + +# exp10_tonearest +Test "exp10_tonearest (-0x1.31p+8)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 - 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 - 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.5 - 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0.5 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.5 - 1.0 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.75 + 1.25 i)": +Test "exp10_tonearest (-0x1p+0)": +double: 1 +idouble: 1 +Test "exp10_tonearest (-0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_tonearest (0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_tonearest (0x3p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": + +# exp10_towardzero +Test "exp10_towardzero (-0x1.31p+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "exp10_towardzero (-0x1p+0)": +ildouble: 3 +ldouble: 3 +Test "exp10_towardzero (-0x2.4p+4)": +ildouble: 3 +ldouble: 3 +Test "exp10_towardzero (0x1.31p+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffp0 + 0x1p-23 i)": +Test "exp10_towardzero (0x2.4p+4)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (0x0.ffffffp0 + 0x1p-23 i)": +ildouble: 4 +ldouble: 4 +Test "exp10_towardzero (0x3p+0)": ildouble: 2 ldouble: 2 -Test "Real part of: casinh (0x0.ffffffp0 - 0x1p-23 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casinh (0x0.ffffffp0 - 0x1p-23 i)": +Test "exp10_towardzero (0xcp-4)": ildouble: 2 ldouble: 2 -Test "Real part of: casinh (0x1.000000000000000000000000008p0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0x1.000000000000000000000000008p0 + 0x1.fp-1025 i)": + +# exp10_upward +Test "exp10_upward (-0x1.31p+8)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.000000000000000000000000008p0 + 0x1p-106 i)": +Test "exp10_upward (-0x1.344p+12)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.000000000000000000000000008p0 - 0.0 i)": +Test "exp10_upward (-0x1.86ap+16)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.000000000000000000000000008p0 - 0x1.fp-1025 i)": +Test "exp10_upward (-0x2.4p+4)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (-0xf.424p+16)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.000000000000000000000000008p0 - 0x1p-106 i)": +Test "exp10_upward (-0xf.ffffffffffff8p+1020)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.000002p0 + 0x1p-23 i)": +Test "exp10_upward (-0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.000002p0 + 0x1p-23 i)": -double: 1 +Test "exp10_upward (-0xf.fffffp+124)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: casinh (0x1.000002p0 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.000002p0 - 0x1p-23 i)": +Test "exp10_upward (0x1.31p+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x2.4p+4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casinh (0x1.fp-10 + 1.0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-10 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0x1.fp-10 - 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x3p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0xcp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-10 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": + +# exp_downward +Test "exp_downward (0x1p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-129 + 0.5 i)": +Test "exp_downward (0x2p+0)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (0x1.fp-129 + 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0x1.fp-129 - 0.5 i)": +Test "exp_downward (0x3p+0)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (0x1.fp-129 - 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0x1.fp1023 + 0x1.fp1023 i)": +Test "exp_downward (0x5.8b9028p+4)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0x1.fp127 + 0x1.fp127 i)": +Test "exp_downward (0xcp-4)": double: 1 idouble: 1 + +# exp_tonearest +Test "exp_tonearest (0x3.2p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-105 + 0.5 i)": +Test "exp_tonearest (0xcp-4)": +ildouble: 1 +ldouble: 1 + +# exp_towardzero +Test "exp_towardzero (0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "exp_towardzero (0x2p+0)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1p-105 - 0.5 i)": +Test "exp_towardzero (0x3p+0)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1p-112 + 0.5 i)": +Test "exp_towardzero (0x5.8b9028p+4)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1p-112 - 0.5 i)": +Test "exp_towardzero (0xcp-4)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1p-23 + 0.5 i)": + +# exp_upward +Test "exp_upward (-0x2.e870a4p+8)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: casinh (0x1p-23 - 0.5 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +Test "exp_upward (-0x2.e870a7e5e88c1f0cp+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: casinh (0x1p-52 + 0.5 i)": +Test "exp_upward (-0x2.e870a7e5e88c1f0f86d8bda5cep+8)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-52 + 0.5 i)": +Test "exp_upward (-0x2.e870a7e5e88c1f0f86d8bda5cfp+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-52 + 0x0.fffffffffffff8p0 i)": +Test "exp_upward (-0x2.e870a7e5e88c1f1p+8)": +ildouble: 1 +ldouble: 1 +Test "exp_upward (-0x2.e870a7e5e88c2p+8)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1p-52 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-52 - 0.5 i)": +Test "exp_upward (-0x2.e870a7e5e88cp+8)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-52 - 0.5 i)": +Test "exp_upward (-0x2.e870a8p+8)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-52 - 0x0.fffffffffffff8p0 i)": +Test "exp_upward (-0x2.ebe224p+8)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1p-52 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "exp_upward (-0x2.ebe227861639p+8)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "exp_upward (-0x2.ebe228p+8)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + +0 i)": +Test "exp_upward (-0x4.d2p+8)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casinh (1.0 + 0.25 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0.5 i)": +Test "exp_upward (-0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-10 i)": +Test "exp_upward (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "exp_upward (-0xf.fffffp+124)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-10 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-100 i)": +ildouble: 1 +ldouble: 1 +Test "exp_upward (0x1p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-1000 i)": +ildouble: 1 +ldouble: 1 +Test "exp_upward (0x2.c5cp+8)": double: 1 idouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-1025 i)": +Test "exp_upward (0x2p+0)": +ildouble: 1 +ldouble: 1 +Test "exp_upward (0x3.2p+4)": double: 1 idouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-129 i)": + +# expm1 +Test "expm1 (0x1.f4p+8)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-30 i)": +Test "expm1 (0x1p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casinh (1.0 - 0 i)": +Test "expm1 (0xcp-4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casinh (1.0 - 0.25 i)": -float: 1 -ifloat: 1 + +# expm1_downward +Test "expm1_downward (-0x1p-32)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0.5 i)": -double: 1 -idouble: 1 +Test "expm1_downward (-0x2.cp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-10 i)": +Test "expm1_downward (-0x4.bp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (0x1.f4p+8)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-10 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-100 i)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (0x1p-32)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (0x3.2p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-1000 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (0x7.fp+4)": double: 1 idouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 + +# expm1_tonearest +Test "expm1_tonearest (0x1.f4p+8)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-30 i)": +Test "expm1_tonearest (0x1p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: casinh (1.5 + +0 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (1.5 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (1.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (1.5 - 0 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (1.5 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (1.5 - 0x1.fp-129 i)": +Test "expm1_tonearest (0xcp-4)": double: 1 idouble: 1 -# catan -Test "Imaginary part of: catan (-0x0.fffffffffffff8p0 + 0x1p-27 i)": +# expm1_towardzero +Test "expm1_towardzero (-0x1p-100)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: catan (-0x0.fffffffffffff8p0 - 0x1p-27 i)": +ifloat: 1 +Test "expm1_towardzero (-0x1p-32)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x0.ffffffp0 + 0x1p-13 i)": +Test "expm1_towardzero (-0x1p-64)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: catan (-0x1.000000000000000000000000008p0 + 0x1p-54 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catan (-0x1.000000000000000000000000008p0 - 0x1p-54 i)": +Test "expm1_towardzero (-0x2.6p+4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.0000000000001p0 - 0x1p-27 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (-0x1.000002p0 + 0x1p-126 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (-0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (-0x1.000002p0 - 0x1p-126 i)": +Test "expm1_towardzero (-0x4.ap+4)": +ildouble: 2 +ldouble: 2 +Test "expm1_towardzero (-0x4.ep+4)": +ildouble: 2 +ldouble: 2 +Test "expm1_towardzero (-0x4.fp+4)": +ildouble: 2 +ldouble: 2 +Test "expm1_towardzero (-0x4p-52)": float: 1 ifloat: 1 -Test "Real part of: catan (-0x1.000002p0 - 0x1p-13 i)": +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (-0x8p-32)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1.000002p0 - 0x1p-13 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 +Test "expm1_towardzero (-0xap+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.fp1023 - 0x1.fp1023 i)": +Test "expm1_towardzero (0x1.f4p+8)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.fp127 + 0x1.fp127 i)": +Test "expm1_towardzero (0x1p-32)": +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (0x3.2p+4)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.fp127 - 0x1.fp127 i)": +Test "expm1_towardzero (0x7.fp+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-1020 + 1.0 i)": + +# expm1_upward +Test "expm1_upward (-0x1p-100)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: catan (-0x1p-1020 - 1.0 i)": +ifloat: 1 +Test "expm1_upward (-0x1p-32)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x1p-64)": double: 1 -idouble: 1 -Test "Real part of: catan (-0x1p-13 + 0x1.000002p0 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catan (-0x1p-13 + 1.0 i)": +Test "expm1_upward (-0x4p-52)": float: 1 ifloat: 1 -Test "Real part of: catan (-0x1p-13 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x8p-32)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1p-13 - 0x1.000002p0 i)": +Test "expm1_upward (-0xap+0)": +ildouble: 1 +ldouble: 1 +Test "expm1_upward (0x1p-100)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catan (-0x1p-13 - 1.0 i)": +Test "expm1_upward (0x1p-32)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1p-54 + 1.0 i)": +Test "expm1_upward (0x1p-64)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1p-54 - 1.0 i)": +Test "expm1_upward (0x4p-52)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1p-57 + 1.0 i)": +Test "expm1_upward (0x8p-32)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1p-57 - 1.0 i)": + +# gamma +Test "gamma (-0x1p-20)": +double: 1 +idouble: 1 +Test "gamma (-0x2p-16)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catan (-1.0 + 0x1p-13 i)": +Test "gamma (-0x4p-12)": +double: 1 +idouble: 1 +Test "gamma (-0x8p-8)": +double: 1 +idouble: 1 +Test "gamma (0x4p-12)": float: 1 ifloat: 1 -Test "Real part of: catan (-1.0 + 0x1p-54 i)": +Test "gamma (0x4p-32)": +double: 1 +idouble: 1 +Test "gamma (0xb.333333333333p-4)": +double: 1 +idouble: 1 +Test "gamma (0xb.33333p-4)": +double: 1 +idouble: 1 + +# hypot +Test "hypot (-0xb.33333333333333333333333334p-4, -0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-1.0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (-1.0 - 0x1p-54 i)": +Test "hypot (-0xb.33333333333333333333333334p-4, -0xc.66666666666666666666666668p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-2 - 3 i)": +Test "hypot (-0xb.33333333333333333333333334p-4, 0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-2 - 3 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x0.fffffffffffff8p0 + 0x1p-27 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (0x0.fffffffffffff8p0 - 0x1p-27 i)": +Test "hypot (-0xb.33333333333333333333333334p-4, 0xc.66666666666666666666666668p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x0.ffffffp0 + 0x1p-13 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: catan (0x1.000000000000000000000000008p0 + 0x1p-54 i)": +Test "hypot (-0xb.3333333333333333333333333p-4, -0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1.000000000000000000000000008p0 - 0x1p-54 i)": +Test "hypot (-0xb.3333333333333333333333333p-4, -0xc.66666666666666666666666668p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.0000000000001p0 - 0x1p-27 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (0x1.000002p0 + 0x1p-126 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1.000002p0 - 0x1p-126 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1.000002p0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1.000002p0 - 0x1p-13 i)": +Test "hypot (-0xb.3333333333333333333333333p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.3333333333333333333333333p-4, 0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333333p-4, -0xc.666666666666667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333333p-4, 0xc.666666666666667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333334p-4, -0xc.66666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333334p-4, 0xc.66666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333p-4, -0xc.6666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333p-4, 0xc.6666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33334p-4, -0xc.6666666666668p+0)": double: 1 idouble: 1 -Test "Imaginary part of: catan (0x1.fp1023 + 0x1.fp1023 i)": +Test "hypot (-0xb.33334p-4, 0xc.6666666666668p+0)": double: 1 idouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, -0xb.33333333333333333333333334p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.fp1023 - 0x1.fp1023 i)": +Test "hypot (-0xc.66666666666666666666666664p+0, -0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, 0xb.33333333333333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, 0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666668p+0, -0xb.33333333333333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666668p+0, -0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666668p+0, 0xb.33333333333333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666668p+0, 0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666667p+0, -0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666667p+0, 0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.6666666666668p+0, -0xb.333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.6666666666668p+0, -0xb.33334p-4)": double: 1 idouble: 1 +Test "hypot (-0xc.6666666666668p+0, 0xb.333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.fp127 + 0x1.fp127 i)": +Test "hypot (-0xc.6666666666668p+0, 0xb.33334p-4)": double: 1 idouble: 1 +Test "hypot (-0xc.66666p+0, -0xb.333333333333334p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.fp127 - 0x1.fp127 i)": +Test "hypot (-0xc.66666p+0, 0xb.333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0x1.23456789abcdefp-500, 0x1.23456789abcdefp-500)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333333333333333333333334p-4, -0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333333333333333333333334p-4, -0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333333333333333333333334p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333333333333333333333334p-4, 0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333333333333333333p-4, -0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333333333333333333p-4, -0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333333333333333333p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333333333333333333p-4, 0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333333p-4, -0xc.666666666666667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333333p-4, 0xc.666666666666667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333334p-4, -0xc.66666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333334p-4, 0xc.66666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333p-4, -0xc.6666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333p-4, 0xc.6666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33334p-4, -0xc.6666666666668p+0)": +double: 1 +idouble: 1 +Test "hypot (0xb.33334p-4, 0xc.6666666666668p+0)": double: 1 idouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, -0xb.33333333333333333333333334p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-1020 + 1.0 i)": +Test "hypot (0xc.66666666666666666666666664p+0, -0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, 0xb.33333333333333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, 0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666668p+0, -0xb.33333333333333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666668p+0, -0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666668p+0, 0xb.33333333333333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666668p+0, 0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666667p+0, -0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666667p+0, 0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.6666666666668p+0, -0xb.333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.6666666666668p+0, -0xb.33334p-4)": double: 1 idouble: 1 -Test "Imaginary part of: catan (0x1p-1020 - 1.0 i)": +Test "hypot (0xc.6666666666668p+0, 0xb.333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.6666666666668p+0, 0xb.33334p-4)": double: 1 idouble: 1 -Test "Real part of: catan (0x1p-13 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1p-13 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1p-13 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-13 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1p-13 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-54 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-54 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-57 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-57 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (1.0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (1.0 + 0x1p-54 i)": +Test "hypot (0xc.66666p+0, -0xb.333333333333334p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (1.0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (1.0 - 0x1p-54 i)": +Test "hypot (0xc.66666p+0, 0xb.333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xcp-4, 0x1.4p+0)": ildouble: 1 ldouble: 1 -# catanh -Test "Real part of: catanh (-0x1.000002p0 + 0x1p-13 i)": +# j0 +Test "j0 (-0x2.002000002p+592)": +ildouble: 2 +ldouble: 2 +Test "j0 (-0x4p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: catanh (-0x1.000002p0 + 0x1p-13 i)": +Test "j0 (-0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +Test "j0 (0x2p+0)": +float: 2 +ifloat: 2 +Test "j0 (0x4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "j0 (0x8p+0)": float: 1 ifloat: 1 -Test "Real part of: catanh (-0x1.000002p0 - 0x1p-13 i)": +Test "j0 (0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "j0 (0xap+0)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Imaginary part of: catanh (-0x1.000002p0 - 0x1p-13 i)": +Test "j0 (0xcp-4)": float: 1 ifloat: 1 -Test "Real part of: catanh (-0x1.fp1023 + 0x1.fp1023 i)": +Test "j0 (0xe.be71dp+104)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "j0 (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 2 +ldouble: 2 +Test "j0 (0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 + +# j1 +Test "j1 (0x1.ff00000000002p+840)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1.fp1023 - 0x1.fp1023 i)": +Test "j1 (0x2p+0)": +double: 1 +idouble: 1 +Test "j1 (0x4.ffcp+72)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1.fp127 + 0x1.fp127 i)": +Test "j1 (0x8p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1.fp127 - 0x1.fp127 i)": +Test "j1 (0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "j1 (0xap+0)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "j1 (0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-126 + 0x1.000002p0 i)": +Test "j1 (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "j1 (0xf.fffffp+124)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: catanh (-0x1p-126 - 0x1.000002p0 i)": + +# jn +Test "jn (0, -0x4p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catanh (-0x1p-13 + 0x1.000002p0 i)": +Test "jn (0, 0x2p+0)": +float: 2 +ifloat: 2 +Test "jn (0, 0x4p+0)": double: 1 -idouble: 1 -Test "Imaginary part of: catanh (-0x1p-13 + 0x1.000002p0 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: catanh (-0x1p-13 + 1.0 i)": +Test "jn (0, 0x8p+0)": float: 1 ifloat: 1 -Test "Real part of: catanh (-0x1p-13 - 0x1.000002p0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catanh (-0x1p-13 - 0x1.000002p0 i)": +Test "jn (0, 0xap+0)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Imaginary part of: catanh (-0x1p-13 - 1.0 i)": +Test "jn (0, 0xcp-4)": float: 1 ifloat: 1 -Test "Real part of: catanh (-0x1p-27 + 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1p-27 + 0x1.0000000000001p0 i)": +Test "jn (1, 0x2p+0)": double: 1 idouble: 1 -Test "Real part of: catanh (-0x1p-27 - 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (-0x1p-27 - 0x1.0000000000001p0 i)": +Test "jn (1, 0x8p+0)": double: 1 idouble: 1 -Test "Imaginary part of: catanh (-0x1p-54 + 0x1.000000000000000000000000008p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-54 + 1.0 i)": +Test "jn (1, 0xap+0)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-54 - 0x1.000000000000000000000000008p0 i)": +Test "jn (10, -0x1p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-54 - 1.0 i)": +Test "jn (10, 0x1p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-1.0 + 0x1p-1020 i)": +Test "jn (10, 0x2p+0)": double: 1 +float: 2 idouble: 1 -Test "Imaginary part of: catanh (-1.0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-1.0 + 0x1p-54 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-1.0 + 0x1p-57 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-1.0 - 0x1p-1020 i)": +ifloat: 2 +Test "jn (10, 0x2p-4)": double: 1 -idouble: 1 -Test "Imaginary part of: catanh (-1.0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-1.0 - 0x1p-54 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-1.0 - 0x1p-57 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catanh (-2 - 3 i)": +ildouble: 1 +ldouble: 1 +Test "jn (10, 0xap+0)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +ildouble: 4 +ldouble: 4 +Test "jn (10, 0xcp-4)": double: 1 -idouble: 1 -Test "Imaginary part of: catanh (0x1.000002p0 + 0x1p-13 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: catanh (0x1.000002p0 - 0x1p-13 i)": +Test "jn (2, 0x2.67a2a4p+0)": float: 1 ifloat: 1 -Test "Real part of: catanh (0x1.fp1023 + 0x1.fp1023 i)": +ildouble: 1 +ldouble: 1 +Test "jn (2, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 1 +ldouble: 1 +Test "jn (2, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 2 +ldouble: 2 +Test "jn (2, 0x2.67a2a5d2e3682p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1.fp1023 - 0x1.fp1023 i)": +Test "jn (2, 0x2.67a2a5d2e368p+0)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "jn (2, 0x2.67a2a8p+0)": double: 1 +float: 3 idouble: 1 +ifloat: 3 +Test "jn (2, 0x8p+1020)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1.fp127 + 0x1.fp127 i)": +Test "jn (2, 0x8p+124)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1.fp127 - 0x1.fp127 i)": +Test "jn (2, 0xf.fffb1p+96)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +Test "jn (2, 0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "jn (2, 0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 2 +ldouble: 2 +Test "jn (2, 0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +Test "jn (3, 0x2.67a2a4p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "jn (3, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 2 +ldouble: 2 +Test "jn (3, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (3, 0x2.67a2a5d2e3682p+0)": double: 1 idouble: 1 +ildouble: 3 +ldouble: 3 +Test "jn (3, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-126 + 0x1.000002p0 i)": +Test "jn (3, 0x2.67a2a8p+0)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +Test "jn (3, 0x2p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: catanh (0x1p-126 - 0x1.000002p0 i)": +Test "jn (3, 0x2p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catanh (0x1p-13 + 0x0.ffffffp0 i)": +Test "jn (3, 0xap+0)": +double: 3 +idouble: 3 +ildouble: 2 +ldouble: 2 +Test "jn (3, 0xcp-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: catanh (0x1p-13 + 0x1.000002p0 i)": +Test "jn (4, 0x2.67a2a4p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: catanh (0x1p-13 + 1.0 i)": +Test "jn (4, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 1 +ldouble: 1 +Test "jn (4, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (4, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "jn (4, 0x2.67a2a5d2e368p+0)": +double: 1 +idouble: 1 +Test "jn (4, 0x2.67a2a8p+0)": float: 1 ifloat: 1 -Test "Real part of: catanh (0x1p-13 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "jn (5, 0x2.67a2a4p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: catanh (0x1p-13 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "jn (5, 0x2.67a2a5d2e36801p+0)": +ildouble: 2 +ldouble: 2 +Test "jn (5, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "jn (5, 0x2.67a2a5d2e368p+0)": +double: 2 +idouble: 2 +Test "jn (5, 0x2.67a2a8p+0)": +float: 2 +ifloat: 2 +Test "jn (6, 0x2.67a2a4p+0)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Imaginary part of: catanh (0x1p-13 - 1.0 i)": +Test "jn (6, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 2 +ldouble: 2 +Test "jn (6, 0x2.67a2a5d2e36801p+0)": +ildouble: 4 +ldouble: 4 +Test "jn (6, 0x2.67a2a5d2e3682p+0)": +double: 2 +idouble: 2 +Test "jn (6, 0x2.67a2a5d2e368p+0)": +double: 4 +idouble: 4 +ildouble: 4 +ldouble: 4 +Test "jn (6, 0x2.67a2a8p+0)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +Test "jn (7, 0x2.67a2a4p+0)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Real part of: catanh (0x1p-27 + 0x0.fffffffffffff8p0 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (0x1p-27 - 0x0.fffffffffffff8p0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catanh (0x1p-54 + 0x1.000000000000000000000000008p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-54 + 1.0 i)": +Test "jn (7, 0x2.67a2a5d2e36800fce3e16f10cap+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-54 - 0x1.000000000000000000000000008p0 i)": +Test "jn (7, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (7, 0x2.67a2a5d2e36801p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-54 - 1.0 i)": +Test "jn (7, 0x2.67a2a5d2e3682p+0)": +ildouble: 2 +ldouble: 2 +Test "jn (7, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (1.0 + 0x1p-1020 i)": +Test "jn (7, 0x2.67a2a8p+0)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "jn (8, 0x2.67a2a4p+0)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "jn (8, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 2 +ldouble: 2 +Test "jn (8, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +Test "jn (8, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 +ildouble: 1 +ldouble: 1 +Test "jn (8, 0x2.67a2a8p+0)": +double: 2 +float: 4 +idouble: 2 +ifloat: 4 +Test "jn (9, 0x2.67a2a4p+0)": +double: 3 +float: 3 +idouble: 3 +ifloat: 3 +ildouble: 1 +ldouble: 1 +Test "jn (9, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 2 +ldouble: 2 +Test "jn (9, 0x2.67a2a5d2e3682p+0)": +double: 4 +idouble: 4 +ildouble: 3 +ldouble: 3 +Test "jn (9, 0x2.67a2a5d2e368p+0)": +double: 1 +idouble: 1 +Test "jn (9, 0x2.67a2a8p+0)": +double: 3 +float: 3 +idouble: 3 +ifloat: 3 +ildouble: 3 +ldouble: 3 + +# lgamma +Test "lgamma (-0x1p-20)": +double: 1 +idouble: 1 +Test "lgamma (-0x2p-16)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "lgamma (-0x4p-12)": double: 1 idouble: 1 -Test "Imaginary part of: catanh (1.0 + 0x1p-13 i)": +Test "lgamma (-0x8p-8)": +double: 1 +idouble: 1 +Test "lgamma (0x4p-12)": float: 1 ifloat: 1 -Test "Real part of: catanh (1.0 + 0x1p-54 i)": +Test "lgamma (0x4p-32)": +double: 1 +idouble: 1 +Test "lgamma (0xb.333333333333p-4)": +double: 1 +idouble: 1 +Test "lgamma (0xb.33333p-4)": +double: 1 +idouble: 1 + +# log +Test "log (0x2.b7e15p+0)": float: 1 ifloat: 1 -Test "Real part of: catanh (1.0 + 0x1p-57 i)": + +# log10 +Test "log10 (0x2.b7e154p+0)": float: 1 ifloat: 1 -Test "Real part of: catanh (1.0 - 0x1p-1020 i)": +Test "log10 (0xcp-4)": double: 1 +float: 2 idouble: 1 -Test "Imaginary part of: catanh (1.0 - 0x1p-13 i)": +ifloat: 2 + +# log1p +Test "log1p (-0x4p-4)": float: 1 ifloat: 1 -Test "Real part of: catanh (1.0 - 0x1p-54 i)": +Test "log1p (0x1.b7e15p+0)": float: 1 ifloat: 1 -Test "Real part of: catanh (1.0 - 0x1p-57 i)": + +# pow +Test "pow (0x1.000002p+0, 0x1p+24)": +float: 1 +ifloat: 1 +Test "pow (0xf.fffffp-4, -0x1p+24)": +float: 1 +ifloat: 1 +Test "pow (0xf.fffffp-4, 0x1p+24)": float: 1 ifloat: 1 -# cbrt -Test "cbrt (-27.0)": +# pow10 +Test "pow10 (-0x1.31p+8)": double: 1 idouble: 1 -Test "cbrt (0.75)": +ildouble: 1 +ldouble: 1 +Test "pow10 (-0x1p+0)": double: 1 idouble: 1 -Test "cbrt (0.9921875)": +Test "pow10 (-0x2.4p+4)": double: 1 idouble: 1 - -# ccos -Test "Imaginary part of: ccos (-0.75 + 710.5 i)": +Test "pow10 (0x2.4p+4)": double: 1 idouble: 1 -Test "Imaginary part of: ccos (-0.75 + 89.5 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ccos (-0.75 - 710.5 i)": +Test "pow10 (0x3p+0)": double: 1 idouble: 1 -Test "Imaginary part of: ccos (-0.75 - 89.5 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ccos (-2 - 3 i)": + +# pow_downward +Test "pow_downward (1.0625, 1.125)": +ildouble: 1 +ldouble: 1 +Test "pow_downward (1.5, 1.03125)": float: 1 ifloat: 1 -Test "Real part of: ccos (0.75 + 1.25 i)": -double: 1 + +# pow_tonearest +Test "pow_tonearest (0x1.000002p+0, 0x1p+24)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: ccos (0.75 + 1.25 i)": +Test "pow_tonearest (0xf.fffffp-4, -0x1p+24)": float: 1 ifloat: 1 -Test "Imaginary part of: ccos (0.75 + 710.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccos (0.75 + 89.5 i)": +Test "pow_tonearest (0xf.fffffp-4, 0x1p+24)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ccos (0.75 - 710.5 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccos (0.75 - 89.5 i)": + +# pow_towardzero +Test "pow_towardzero (1.0625, 1.125)": +ildouble: 1 +ldouble: 1 +Test "pow_towardzero (1.5, 1.03125)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ccos (0x1p-1074 + 1440 i)": -double: 1 -idouble: 1 -# ccosh -Test "Real part of: ccosh (-2 - 3 i)": +# pow_upward +Test "pow_upward (1.0625, 1.125)": float: 1 ifloat: 1 -Test "Imaginary part of: ccosh (-2 - 3 i)": + +# sin +Test "sin (0x1p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: ccosh (-710.5 + 0.75 i)": +Test "sin (0x4.1237e153f7080008p+0)": +ildouble: 1 +ldouble: 1 + +# sin_downward +Test "sin_downward (-0x1.921fb4p+0)": double: 1 idouble: 1 -Test "Imaginary part of: ccosh (-710.5 - 0.75 i)": +Test "sin_downward (-0x1.921fb6p+0)": double: 1 idouble: 1 -Test "Imaginary part of: ccosh (-89.5 + 0.75 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ccosh (-89.5 - 0.75 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ccosh (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (-0x2p+64)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 +Test "sin_downward (-0x8.60a91c16b9b28p-4)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: ccosh (1440 + 0x1p-1074 i)": +Test "sin_downward (-0x8.60a91c16b9b2c232dd99707ab4p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (-0x8.60a91c16b9b2c24p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (-0x8.60a91c16b9b3p-4)": double: 1 idouble: 1 -Test "Imaginary part of: ccosh (710.5 + 0.75 i)": +Test "sin_downward (-0x8.60a91p-4)": double: 1 idouble: 1 -Test "Imaginary part of: ccosh (710.5 - 0.75 i)": +Test "sin_downward (-0x8.60a92p-4)": double: 1 idouble: 1 -Test "Imaginary part of: ccosh (89.5 + 0.75 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ccosh (89.5 - 0.75 i)": -float: 1 -ifloat: 1 ildouble: 2 ldouble: 2 - -# cexp -Test "Imaginary part of: cexp (-2.0 - 3.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cexp (-95 + 0.75 i)": +Test "sin_downward (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x1.921fb54442d19p+0)": double: 1 idouble: 1 +Test "sin_downward (0x1p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: cexp (0.75 + 1.25 i)": +Test "sin_downward (0x1p+120)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cexp (0.75 + 1.25 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cexp (1440 + 0x1p-1074 i)": +Test "sin_downward (0x1p+28)": double: 1 -idouble: 1 -Test "Real part of: cexp (50 + 0x1p127 i)": -double: 2 float: 1 -idouble: 2 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (50 + 0x1p127 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: cexp (500 + 0x1p1023 i)": +Test "sin_downward (0x2.1e19e0c9bab24p+72)": double: 1 idouble: 1 -Test "Imaginary part of: cexp (500 + 0x1p1023 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cexp (709.8125 + 0.75 i)": -double: 1 -idouble: 1 +Test "sin_downward (0x2.1e19e4p+72)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (709.8125 + 0.75 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (88.75 + 0.75 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cexp (88.75 + 0.75 i)": +Test "sin_downward (0x2.1e19ep+72)": float: 2 ifloat: 2 - -# clog -Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x2.553534p+0)": double: 1 idouble: 1 +Test "sin_downward (0x2.5535376715b9ep+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +Test "sin_downward (0x2.5535376715bap+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x2p+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x3.be735c19be9fep+0)": double: 1 idouble: 1 -Test "Imaginary part of: clog (-0x1.234566p-40 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1.fp+127 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1.fp+127 - 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (-0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1p-149 - 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (-0x1p-149 - 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (-2 - 3 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (-inf + inf i)": +Test "sin_downward (0x3.be735c19be9fffffffffffffffp+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (-inf - inf i)": +Test "sin_downward (0x3.be735c19beap+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0.75 + 1.25 i)": +Test "sin_downward (0x3.be735cp+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x0.ffffffp0 + 0x0.ffffffp-100 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1.000566p0 + 0x1.234p-10 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1.fp+127 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1.fp+127 - 0x1p-149 i)": +Test "sin_downward (0x3.be736p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: clog (0x11682p-23 + 0x7ffed1p-23 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog (0x13836d58a13448d750b4b9p-85 + 0x195ca7bc3ab4f9161edbe6p-85 i)": +Test "sin_downward (0x3.ec2a0250032a00000000000001p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x155f8afc4c48685bf63610p-85 + 0x17d0cf2652cdbeb1294e19p-85 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: clog (0x15cfbd1990d1ffp-53 + 0x176a3973e09a9ap-53 i)": +Test "sin_downward (0x3.ec2a0250032a0004p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-1074 + 0x1p-1074 i)": +Test "sin_downward (0x3.ec2a0250032a2p+0)": double: 1 idouble: 1 -Test "Real part of: clog (0x1p-147 + 0x1p-147 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1p-149 - 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (0x2818p-15 + 0x798fp-15 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (0x4d9c37e2b5cb4533p-63 + 0x65c98be2385a042ep-63 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog (0x6241ef0da53f539f02fad67dabp-106 + 0x3fb46641182f7efd9caa769dac0p-106 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0xa1f2c1p-24 + 0xc643aep-24 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog (0xa4722f19346cp-51 + 0x7f9631c5e7f07p-51 i)": +Test "sin_downward (0x3.ec2a0250032ap+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0xf2p-10 + 0x3e3p-10 i)": +Test "sin_downward (0x3.ec2a04p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (1.0 + 0x1.234566p-10 i)": -float: 1 -ifloat: 1 - -# clog10 -Test "Imaginary part of: clog10 (-0 + inf i)": +Test "sin_downward (0x3.ec2ap+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (-0 - inf i)": -double: 1 +Test "sin_downward (0x3p+0)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 2 -idouble: 2 ildouble: 2 ldouble: 2 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 2 -idouble: 2 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-2 - 3 i)": -double: 1 -idouble: 1 +Test "sin_downward (0x4.093385688a2d150c00bf42a09p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-3 + inf i)": +Test "sin_downward (0x4.093388p-4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-3 - inf i)": +Test "sin_downward (0x4.1237e153f70800000000000002p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0x4.1237e153f7080008p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x4.1237e153f7084p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 0 i)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0x4.1237e153f708p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 1 i)": -double: 1 +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x4.1237e8p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0x4.1237ep+0)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (-inf + inf i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-inf - 0 i)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0x4.c92d08p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (-inf - 1 i)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x4.c92d0ffa4bf000000000000002p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x4.c92d0ffa4bf00008p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x4.c92d0ffa4bf04p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x4.c92d0ffa4bfp+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x4.c92d1p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0 + inf i)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x4p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0 - inf i)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x4p+48)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": +Test "sin_downward (0x5.fbec7477d4a800000000000002p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x5.fbec7477d4a84p+0)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": +Test "sin_downward (0x5.fbec7477d4a8p+0)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x5.fbec78p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": +Test "sin_downward (0x5.fbec7p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x5p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "sin_downward (0x6p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +Test "sin_downward (0x8.60a91c16b9b28p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x8.60a92p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x8p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1.fffffep+127 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +Test "sin_downward (0x8p+1020)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +Test "sin_downward (0x9p+0)": double: 1 +float: 1 idouble: 1 -Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +ifloat: 1 +Test "sin_downward (0xap+0)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +ifloat: 1 +Test "sin_downward (0xb.fa09ap+100)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0xc.d4966d92d17082980965c1a66p-4)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0xc.d4966d92d170829p-4)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0xc.d4966d92d17082ap-4)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0xc.d4966d92d1708p-4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x13836d58a13448d750b4b9p-85 + 0x195ca7bc3ab4f9161edbe6p-85 i)": +Test "sin_downward (0xc.d4966d92d171p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x155f8afc4c48685bf63610p-85 + 0x17d0cf2652cdbeb1294e19p-85 i)": +Test "sin_downward (0xc.d4966p-4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "sin_downward (0xc.d4967p-4)": ildouble: 2 ldouble: 2 -Test "Real part of: clog10 (0x15d8ab6ed05ca514086ac3a1e84p-105 + 0x1761e480aa094c0b10b34b09ce9p-105 i)": +Test "sin_downward (0xe.ef3af1b5d800001p-4)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0xe.ef3af1b5d8008p-4)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0xe.ef3af1b5d8p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": +Test "sin_downward (0xe.ef3afp-4)": +ildouble: 3 +ldouble: 3 +Test "sin_downward (0xe.ef3bp-4)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0xf.ffffcp+124)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": +Test "sin_downward (0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": +ildouble: 2 +ldouble: 2 +Test "sin_downward (0xf.fffffp+124)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": +ildouble: 1 +ldouble: 1 + +# sin_tonearest +Test "sin_tonearest (0x1p+0)": +float: 1 +ifloat: 1 +Test "sin_tonearest (0x4.1237e153f7080008p+0)": +ildouble: 1 +ldouble: 1 + +# sin_towardzero +Test "sin_towardzero (-0x1.921fb54442d18p+0)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +Test "sin_towardzero (-0x1.921fb54442d19p+0)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +Test "sin_towardzero (-0x2p+64)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": +ildouble: 3 +ldouble: 3 +Test "sin_towardzero (-0x8.60a91c16b9b28p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (-0x8.60a92p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (0x1.921fb54442d18p+0)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": +Test "sin_towardzero (0x1.921fb54442d19p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": -double: 1 +Test "sin_towardzero (0x1p+0)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": +ildouble: 3 +ldouble: 3 +Test "sin_towardzero (0x2.1e19e4p+72)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +Test "sin_towardzero (0x2.1e19ep+72)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": +Test "sin_towardzero (0x2.553534p+0)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": +Test "sin_towardzero (0x2.5535376715b9ep+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (0x2.5535376715b9ffffffffffffffp+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (0x2.5535376715bap+0)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": +Test "sin_towardzero (0x2p+0)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": +Test "sin_towardzero (0x2p+64)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": +ildouble: 3 +ldouble: 3 +Test "sin_towardzero (0x3.be735c19beap+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +Test "sin_towardzero (0x3.be735cp+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +Test "sin_towardzero (0x3.be736p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (0x3.ec2a04p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "sin_towardzero (0x3p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x298c62cb546588a7p-63 + 0x7911b1dfcc4ecdaep-63 i)": +Test "sin_towardzero (0x4.093385688a2d150c00bf42a09p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +Test "sin_towardzero (0x4.093388p-4)": double: 1 idouble: 1 +Test "sin_towardzero (0x4.1237e153f70800000000000002p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": +Test "sin_towardzero (0x4.1237e153f7084p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x81b7efa81fc35ad1p-65 + 0x1ef4b835f1c79d812p-65 i)": +Test "sin_towardzero (0x4.1237e153f708p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": +Test "sin_towardzero (0x4.1237e8p+0)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0xe33f66c9542ca25cc43c867p-95 + 0x7f35a68ebd3704a43c465864p-95 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +Test "sin_towardzero (0x4.1237ep+0)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +Test "sin_towardzero (0x4.c92d0ffa4bf04p+0)": double: 1 idouble: 1 +Test "sin_towardzero (0x4.c92d0ffa4bfp+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x4p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": +Test "sin_towardzero (0x4p+48)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": +Test "sin_towardzero (0x5.fbec7p+0)": double: 1 idouble: 1 +Test "sin_towardzero (0x8.60a91c16b9b28p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (3 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (3 - inf i)": +Test "sin_towardzero (0x8.60a92p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (0x8p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (inf + inf i)": +Test "sin_towardzero (0x8p+1020)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (inf - inf i)": +Test "sin_towardzero (0x9p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 - -# cos -Test "cos (0x1p+120)": -float: 1 -ifloat: 1 -Test "cos (0x1p+127)": -float: 1 -ifloat: 1 -Test "cos (M_PI_6l * 2.0)": +Test "sin_towardzero (0xb.fa09ap+100)": double: 1 idouble: 1 -Test "cos (M_PI_6l * 4.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +Test "sin_towardzero (0xc.d4966d92d17082980965c1a664p-4)": ildouble: 2 ldouble: 2 - -# cos_downward -Test "cos_downward (1)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_downward (10)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (2)": -float: 1 -ifloat: 1 -Test "cos_downward (3)": -float: 1 -ifloat: 1 -Test "cos_downward (4)": -float: 1 -ifloat: 1 -Test "cos_downward (5)": -float: 1 -ifloat: 1 -Test "cos_downward (6)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (7)": -float: 1 -ifloat: 1 -Test "cos_downward (8)": -float: 1 -ifloat: 1 +Test "sin_towardzero (0xc.d4966d92d17082980965c1a66p-4)": ildouble: 2 ldouble: 2 -Test "cos_downward (9)": -ildouble: 1 -ldouble: 1 - -# cos_tonearest -Test "cos_tonearest (7)": -float: 1 -ifloat: 1 - -# cos_towardzero -Test "cos_towardzero (1)": -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (10)": -ildouble: 1 -ldouble: 1 -Test "cos_towardzero (2)": -float: 1 -ifloat: 1 -Test "cos_towardzero (3)": -float: 1 -ifloat: 1 -Test "cos_towardzero (5)": -float: 1 -ifloat: 1 -Test "cos_towardzero (7)": -float: 1 -ifloat: 1 -Test "cos_towardzero (8)": +Test "sin_towardzero (0xc.d4966d92d170829p-4)": +ildouble: 2 +ldouble: 2 +Test "sin_towardzero (0xc.d4966d92d17082ap-4)": +ildouble: 2 +ldouble: 2 +Test "sin_towardzero (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "sin_towardzero (0xc.d4966d92d171p-4)": +ildouble: 4 +ldouble: 4 +Test "sin_towardzero (0xc.d4966p-4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "sin_towardzero (0xc.d4967p-4)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 - -# cos_upward -Test "cos_upward (10)": +Test "sin_towardzero (0xe.ef3af1b5d80000000000000004p-4)": +ildouble: 3 +ldouble: 3 +Test "sin_towardzero (0xe.ef3af1b5d800001p-4)": +ildouble: 2 +ldouble: 2 +Test "sin_towardzero (0xe.ef3af1b5d8008p-4)": +ildouble: 2 +ldouble: 2 +Test "sin_towardzero (0xe.ef3af1b5d8p-4)": +ildouble: 3 +ldouble: 3 +Test "sin_towardzero (0xe.ef3afp-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (4)": -ildouble: 1 -ldouble: 1 -Test "cos_upward (5)": +Test "sin_towardzero (0xe.ef3bp-4)": +ildouble: 2 +ldouble: 2 +Test "sin_towardzero (0xf.ffffcp+124)": +double: 1 +idouble: 1 +Test "sin_towardzero (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (6)": -float: 1 -ifloat: 1 -Test "cos_upward (7)": + +# sin_upward +Test "sin_upward (-0x1.921fb4p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (9)": -float: 2 -ifloat: 2 - -# cosh_downward -Test "cosh_downward (22)": +Test "sin_upward (-0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +Test "sin_upward (-0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +Test "sin_upward (-0x1.921fb6p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "cosh_downward (23)": -float: 1 -ifloat: 1 +Test "sin_upward (-0x2p+64)": ildouble: 1 ldouble: 1 -Test "cosh_downward (24)": -float: 1 -ifloat: 1 +Test "sin_upward (-0x8.60a91c16b9b28p-4)": ildouble: 1 ldouble: 1 - -# cosh_tonearest -Test "cosh_tonearest (24)": +Test "sin_upward (-0x8.60a91c16b9b2c232dd99707ab4p-4)": ildouble: 1 ldouble: 1 - -# cosh_towardzero -Test "cosh_towardzero (22)": -float: 1 -ifloat: 1 +Test "sin_upward (-0x8.60a91c16b9b2c24p-4)": ildouble: 1 ldouble: 1 -Test "cosh_towardzero (23)": -float: 1 -ifloat: 1 +Test "sin_upward (-0x8.60a91c16b9b3p-4)": ildouble: 1 ldouble: 1 -Test "cosh_towardzero (24)": -float: 1 -ifloat: 1 +Test "sin_upward (-0x8.60a91p-4)": ildouble: 1 ldouble: 1 - -# cosh_upward -Test "cosh_upward (22)": -ildouble: 2 -ldouble: 2 -Test "cosh_upward (23)": -ildouble: 2 -ldouble: 2 -Test "cosh_upward (24)": -ildouble: 2 -ldouble: 2 - -# cpow -Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": -float: 1 -ifloat: 1 +Test "sin_upward (-0x8.60a92p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +Test "sin_upward (0x1.921fb4p+0)": double: 1 -float: 4 idouble: 1 -ifloat: 4 -ildouble: 2 -ldouble: 2 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 0.0 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": -double: 2 -float: 3 -idouble: 2 -ifloat: 3 -ildouble: 4 -ldouble: 4 -Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": +Test "sin_upward (0x1.921fb6p+0)": double: 1 -float: 4 idouble: 1 -ifloat: 4 -Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 - -# csin -Test "Real part of: csin (-0.75 + 710.5 i)": +Test "sin_upward (0x1p+0)": double: 1 idouble: 1 -Test "Real part of: csin (-0.75 + 89.5 i)": -float: 1 -ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: csin (-0.75 - 710.5 i)": +Test "sin_upward (0x1p+120)": double: 1 +float: 1 idouble: 1 -Test "Real part of: csin (-0.75 - 89.5 i)": +ifloat: 1 +Test "sin_upward (0x1p+28)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: csin (0.75 + 710.5 i)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x2.1e19e0c9bab24p+72)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x2.1e19e4p+72)": double: 1 idouble: 1 -Test "Real part of: csin (0.75 + 89.5 i)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x2.1e19ep+72)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: csin (0.75 - 710.5 i)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x2.5535376715b9ep+0)": double: 1 idouble: 1 -Test "Real part of: csin (0.75 - 89.5 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: csin (0x1p-1074 + 1440 i)": +Test "sin_upward (0x2.5535376715b9ffffffffffffffp+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x2.553538p+0)": double: 1 idouble: 1 - -# csinh -Test "Imaginary part of: csinh (-2 - 3 i)": +Test "sin_upward (0x2p+0)": +float: 1 +ifloat: 1 +Test "sin_upward (0x2p+64)": double: 1 idouble: 1 +ildouble: 3 +ldouble: 3 +Test "sin_upward (0x3.be735c19be9fep+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +Test "sin_upward (0x3.be735c19be9ffffcp+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x3.be735c19be9fffffffffffffffp+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x3.be735c19beap+0)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +Test "sin_upward (0x3.be735cp+0)": double: 1 -idouble: 1 -Test "Imaginary part of: csinh (-89.5 + 0.75 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: csinh (-89.5 - 0.75 i)": float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: csinh (0.75 + 1.25 i)": +Test "sin_upward (0x3.be736p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (0.75 + 1.25 i)": +Test "sin_upward (0x3.ec2a0250032a00000000000001p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x3.ec2a0250032a0004p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x3.ec2a0250032a2p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x3.ec2a0250032ap+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x3.ec2a04p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "sin_upward (0x3.ec2ap+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +Test "sin_upward (0x3p+0)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: csinh (710.5 + 0.75 i)": +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x4.093385688a2d4p-4)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (710.5 - 0.75 i)": +Test "sin_upward (0x4.093385688a2dp-4)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (89.5 + 0.75 i)": -float: 1 -ifloat: 1 +Test "sin_upward (0x4.09338p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0x4.1237e153f70800000000000002p+0)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: csinh (89.5 - 0.75 i)": -float: 1 -ifloat: 1 +Test "sin_upward (0x4.1237e153f7080008p+0)": ildouble: 2 ldouble: 2 - -# csqrt -Test "Real part of: csqrt (-0x1.000002p-126 - 0x1.000002p-126 i)": +Test "sin_upward (0x4.1237e153f7084p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x4.1237e153f708p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x4.1237e8p+0)": double: 1 +float: 2 idouble: 1 -Test "Real part of: csqrt (-2 + 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: csqrt (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: csqrt (0x1.000002p-126 + 0x1.000002p-126 i)": +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x4.1237ep+0)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffep+127 + 1.0 i)": +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x4.c92d08p+0)": float: 1 ifloat: 1 -Test "Real part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": -double: 1 -idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-1074 + 0x1p-1074 i)": +Test "sin_upward (0x4.c92d0ffa4bf000000000000002p+0)": ildouble: 1 ldouble: 1 - -# ctan -Test "Real part of: ctan (-2 - 3 i)": -float: 1 -ifloat: 1 +Test "sin_upward (0x4.c92d0ffa4bf00008p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan (-2 - 3 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ctan (0.75 + 1.25 i)": -double: 1 -idouble: 1 -Test "Real part of: ctan (0x1p1023 + 1 i)": +Test "sin_upward (0x4.c92d0ffa4bf04p+0)": double: 1 idouble: 1 -Test "Imaginary part of: ctan (0x1p1023 + 1 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0x1p127 + 1 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan (0x1p127 + 1 i)": +Test "sin_upward (0x4.c92d0ffa4bfp+0)": double: 1 idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (0x3.243f6cp-1 + 0 i)": +Test "sin_upward (0x4.c92d1p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan (1 + 47 i)": +Test "sin_upward (0x4p+0)": +float: 2 +ifloat: 2 ildouble: 2 ldouble: 2 - -# ctan_downward -Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 2 +Test "sin_upward (0x4p+48)": float: 1 -idouble: 2 ifloat: 1 +Test "sin_upward (0x5.fbec7477d4a800000000000002p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x5.fbec7477d4a80008p+0)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 6 -ldouble: 6 - -# ctan_tonearest -Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 +Test "sin_upward (0x5.fbec7477d4a84p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 +Test "sin_upward (0x5.fbec7477d4a8p+0)": ildouble: 1 ldouble: 1 - -# ctan_towardzero -Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 13 -ldouble: 13 -Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": +Test "sin_upward (0x5.fbec78p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x5.fbec7p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x5p+0)": float: 1 ifloat: 1 -ildouble: 8 -ldouble: 8 - -# ctan_upward -Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x6p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x7p+0)": double: 1 -idouble: 1 -ildouble: 6 -ldouble: 6 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 10 -ldouble: 10 -Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 2 float: 1 -idouble: 2 +idouble: 1 ifloat: 1 -ildouble: 5 -ldouble: 5 -Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": +Test "sin_upward (0x8.60a91c16b9b3p-4)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -ildouble: 5 -ldouble: 5 - -# ctanh -Test "Real part of: ctanh (-2 - 3 i)": +Test "sin_upward (0x8.60a91p-4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (-2 - 3 i)": +Test "sin_upward (0x8.60a92p-4)": double: 1 +idouble: 1 +Test "sin_upward (0x8p+0)": float: 1 +ifloat: 1 +Test "sin_upward (0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x8p+124)": +double: 1 idouble: 1 +Test "sin_upward (0x9p+0)": +float: 1 ifloat: 1 -Test "Imaginary part of: ctanh (0 + 0x3.243f6cp-1 i)": +Test "sin_upward (0xap+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (0 + pi/4 i)": +Test "sin_upward (0xb.fa09ap+100)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: ctanh (0.75 + 1.25 i)": +Test "sin_upward (0xc.d4966d92d17082980965c1a664p-4)": +ildouble: 3 +ldouble: 3 +Test "sin_upward (0xc.d4966d92d17082980965c1a66p-4)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0xc.d4966d92d170829p-4)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0xc.d4966d92d17082ap-4)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0xc.d4966d92d1708p-4)": +ildouble: 3 +ldouble: 3 +Test "sin_upward (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "sin_upward (0xc.d4966p-4)": +ildouble: 3 +ldouble: 3 +Test "sin_upward (0xc.d4967p-4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctanh (0.75 + 1.25 i)": -float: 2 -ifloat: 2 +Test "sin_upward (0xcp-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xe.ef3af1b5d80000000000000004p-4)": +ildouble: 3 +ldouble: 3 +Test "sin_upward (0xe.ef3af1b5d800001p-4)": ildouble: 2 ldouble: 2 -Test "Real part of: ctanh (1 + 0x1p1023 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (1 + 0x1p1023 i)": +Test "sin_upward (0xe.ef3af1b5d8008p-4)": double: 1 idouble: 1 -Test "Real part of: ctanh (1 + 0x1p127 i)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0xe.ef3af1b5d8p-4)": double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctanh (1 + 0x1p127 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (47 + 1 i)": +Test "sin_upward (0xe.ef3afp-4)": +double: 1 +idouble: 1 ildouble: 2 ldouble: 2 - -# ctanh_downward -Test "Imaginary part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "sin_upward (0xe.ef3bp-4)": +double: 1 +idouble: 1 ildouble: 3 ldouble: 3 -Test "Real part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 6 -ldouble: 6 -Test "Imaginary part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +Test "sin_upward (0xf.ffffcp+124)": ildouble: 2 ldouble: 2 +Test "sin_upward (0xf.ffffffffffff8p+1020)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0xf.fffffp+124)": +ildouble: 1 +ldouble: 1 -# ctanh_tonearest -Test "Real part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +# sincos +Test "sincos (0x1.0c1522p+0) extra output 1": float: 1 ifloat: 1 +Test "sincos (0x1.0c152382d7366p+0) extra output 2": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +Test "sincos (0x1p+120) extra output 2": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 - -# ctanh_towardzero -Test "Real part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 13 -ldouble: 13 -Test "Imaginary part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 4 -ldouble: 4 -Test "Real part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": +Test "sincos (0x8.60a92p-4) extra output 2": float: 1 ifloat: 1 -ildouble: 8 -ldouble: 8 -Test "Imaginary part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": +Test "sincos (0x8p+124) extra output 2": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 - -# ctanh_upward -Test "Real part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 10 -ldouble: 10 -Test "Imaginary part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -double: 1 -idouble: 1 -ildouble: 6 -ldouble: 6 -Test "Real part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 5 -ldouble: 5 -Test "Imaginary part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 2 +Test "sincos (0xc.d4966d92d17082980965c1a66p-4) extra output 2": +ildouble: 1 +ldouble: 1 +Test "sincos (0xc.d4967p-4) extra output 2": float: 1 -idouble: 2 ifloat: 1 -ildouble: 5 -ldouble: 5 +Test "sincos (0xf.ffffffffffff8p+1020) extra output 1": +ildouble: 1 +ldouble: 1 -# erf -Test "erf (1.25)": -double: 1 -idouble: 1 +# sinh +Test "sinh (0xcp-4)": +ildouble: 1 +ldouble: 1 -# erfc -Test "erfc (0x1.f7303cp+1)": +# sinh_downward +Test "sinh_downward (0x1.6p+4)": double: 1 idouble: 1 -Test "erfc (0x1.ffa002p+2)": -float: 1 -ifloat: 1 -Test "erfc (0x1.ffff56789abcdef0123456789a8p+2)": ildouble: 1 ldouble: 1 -Test "erfc (2.0)": -double: 1 -idouble: 1 -Test "erfc (4.125)": +Test "sinh_downward (0x1.7p+4)": double: 1 idouble: 1 - -# exp -Test "exp (0.75)": +Test "sinh_downward (0x1.8p+4)": ildouble: 1 ldouble: 1 -Test "exp (50.0)": + +# sinh_tonearest +Test "sinh_tonearest (0xcp-4)": ildouble: 1 ldouble: 1 -# exp10 -Test "exp10 (-1)": -double: 1 -idouble: 1 -Test "exp10 (-305)": +# sinh_towardzero +Test "sinh_towardzero (0x1.6p+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "exp10 (-36)": +Test "sinh_towardzero (0x1.7p+4)": double: 1 idouble: 1 -Test "exp10 (3)": +Test "sinh_towardzero (0x1.8p+4)": +ildouble: 1 +ldouble: 1 + +# sinh_upward +Test "sinh_upward (0x1.8p+4)": double: 1 idouble: 1 -Test "exp10 (36)": +Test "sinh_upward (0x8p-32)": double: 1 -idouble: 1 - -# exp_downward -Test "exp_downward (2)": -float: 1 -ifloat: 1 -Test "exp_downward (3)": float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# exp_towardzero -Test "exp_towardzero (2)": -float: 1 -ifloat: 1 -Test "exp_towardzero (3)": -float: 1 -ifloat: 1 +Test "sinh_upward (0xcp-4)": ildouble: 1 ldouble: 1 -# exp_upward -Test "exp_upward (1)": -float: 1 -ifloat: 1 +# tan +Test "tan (-0xc.908p-4)": +ildouble: 2 +ldouble: 2 +Test "tan (-0xc.90cp-4)": +ildouble: 2 +ldouble: 2 +Test "tan (-0xc.90ep-4)": +ildouble: 2 +ldouble: 2 +Test "tan (-0xc.90f8p-4)": +ildouble: 2 +ldouble: 2 +Test "tan (-0xc.90fcp-4)": +ildouble: 1 +ldouble: 1 +Test "tan (-0xc.90fd8p-4)": +ildouble: 1 +ldouble: 1 +Test "tan (-0xc.90fdap-4)": +ildouble: 1 +ldouble: 1 +Test "tan (-0xc.92p-4)": +ildouble: 1 +ldouble: 1 +Test "tan (-0xc.9p-4)": +ildouble: 1 +ldouble: 1 +Test "tan (0x2.1e19ep+72)": +ildouble: 1 +ldouble: 1 +Test "tan (0x4p+0)": +ildouble: 1 +ldouble: 1 +Test "tan (0x7p+0)": +ildouble: 1 +ldouble: 1 +Test "tan (0xap+0)": +ildouble: 1 +ldouble: 1 +Test "tan (0xc.908p-4)": +ildouble: 2 +ldouble: 2 +Test "tan (0xc.90cp-4)": +ildouble: 2 +ldouble: 2 +Test "tan (0xc.90ep-4)": +ildouble: 2 +ldouble: 2 +Test "tan (0xc.90f8p-4)": +ildouble: 2 +ldouble: 2 +Test "tan (0xc.90fcp-4)": +ildouble: 1 +ldouble: 1 +Test "tan (0xc.90fd8p-4)": +ildouble: 1 +ldouble: 1 +Test "tan (0xc.90fdaa22168c234c4c6628b81p-4)": +ildouble: 1 +ldouble: 1 +Test "tan (0xc.90fdaa22168c235p-4)": +ildouble: 1 +ldouble: 1 +Test "tan (0xc.90fdap-4)": +ildouble: 1 +ldouble: 1 +Test "tan (0xc.92p-4)": +ildouble: 1 +ldouble: 1 +Test "tan (0xc.9p-4)": ildouble: 1 ldouble: 1 -# expm1 -Test "expm1 (0.75)": +# tan_downward +Test "tan_downward (-0x2p+64)": double: 1 idouble: 1 -Test "expm1 (1)": -double: 1 +Test "tan_downward (-0xc.908p-4)": +float: 2 +ifloat: 2 +Test "tan_downward (-0xc.90cp-4)": float: 1 -idouble: 1 ifloat: 1 -Test "expm1 (500.0)": -double: 1 -idouble: 1 - -# gamma -Test "gamma (0.7)": +Test "tan_downward (-0xc.90ep-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "gamma (1.2)": +Test "tan_downward (-0xc.90f8p-4)": double: 1 -float: 2 -idouble: 1 -ifloat: 2 -ildouble: 3 -ldouble: 3 - -# hypot -Test "hypot (-0.7, -12.4)": -float: 1 -ifloat: 1 -Test "hypot (-0.7, 12.4)": -float: 1 -ifloat: 1 -Test "hypot (-12.4, -0.7)": -float: 1 -ifloat: 1 -Test "hypot (-12.4, 0.7)": -float: 1 -ifloat: 1 -Test "hypot (0.7, -12.4)": -float: 1 -ifloat: 1 -Test "hypot (0.7, 12.4)": float: 1 +idouble: 1 ifloat: 1 -Test "hypot (0.75, 1.25)": -ildouble: 1 -ldouble: 1 -Test "hypot (12.4, -0.7)": +Test "tan_downward (-0xc.90fcp-4)": float: 1 ifloat: 1 -Test "hypot (12.4, 0.7)": +Test "tan_downward (-0xc.90fd8p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 - -# j0 -Test "j0 (-0x1.001000001p+593)": -ildouble: 2 -ldouble: 2 -Test "j0 (-4.0)": +Test "tan_downward (-0xc.90fdap-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "j0 (0.75)": +Test "tan_downward (-0xc.90fdbp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "j0 (0x1.d7ce3ap+107)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "j0 (0x1p1023)": -ildouble: 1 -ldouble: 1 -Test "j0 (10.0)": -double: 2 +Test "tan_downward (-0xc.90fdcp-4)": +double: 1 float: 1 -idouble: 2 +idouble: 1 ifloat: 1 -Test "j0 (2.0)": -float: 2 -ifloat: 2 -Test "j0 (4.0)": +Test "tan_downward (-0xc.90fdp-4)": +float: 1 +ifloat: 1 +Test "tan_downward (-0xc.90fep-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "j0 (8.0)": +Test "tan_downward (-0xc.90fp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 - -# j1 -Test "j1 (0x1.3ffp+74)": +Test "tan_downward (-0xc.91p-4)": double: 1 +float: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "j1 (0x1.ff00000000002p+840)": +ifloat: 1 +Test "tan_downward (-0xc.92p-4)": double: 1 idouble: 1 +Test "tan_downward (-0xc.94p-4)": +ildouble: 2 +ldouble: 2 +Test "tan_downward (-0xc.98p-4)": ildouble: 1 ldouble: 1 -Test "j1 (0x1p1023)": -ildouble: 1 -ldouble: 1 -Test "j1 (10.0)": -float: 2 -ifloat: 2 +Test "tan_downward (-0xc.9p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "j1 (2.0)": +Test "tan_downward (-0xc.ap-4)": +double: 1 +idouble: 1 +Test "tan_downward (0x1p+0)": double: 1 idouble: 1 -Test "j1 (8.0)": +Test "tan_downward (0x2.1e19e0c9bab24p+72)": double: 1 idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tan_downward (0x2.1e19ep+72)": ildouble: 1 ldouble: 1 - -# jn -Test "jn (0, -4.0)": +Test "tan_downward (0x2p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "jn (0, 0.75)": -float: 1 -ifloat: 1 -Test "jn (0, 10.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "jn (0, 2.0)": -float: 2 -ifloat: 2 -Test "jn (0, 4.0)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0x3p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "jn (0, 8.0)": +Test "tan_downward (0x4p+0)": float: 1 ifloat: 1 -Test "jn (1, 10.0)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "jn (1, 2.0)": +Test "tan_downward (0x6p+0)": +double: 1 +idouble: 1 +Test "tan_downward (0x7p+0)": double: 1 idouble: 1 -Test "jn (1, 8.0)": +Test "tan_downward (0x8p+1020)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "jn (10, -1.0)": +Test "tan_downward (0x9p+0)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0xap+0)": ildouble: 1 ldouble: 1 -Test "jn (10, 0.125)": +Test "tan_downward (0xc.908p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "tan_downward (0xc.90cp-4)": +double: 1 +idouble: 1 +Test "tan_downward (0xc.90ep-4)": ildouble: 1 ldouble: 1 -Test "jn (10, 0.75)": +Test "tan_downward (0xc.90f8p-4)": +ildouble: 2 +ldouble: 2 +Test "tan_downward (0xc.90fcp-4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "jn (10, 1.0)": +Test "tan_downward (0xc.90fd8p-4)": ildouble: 1 ldouble: 1 -Test "jn (10, 10.0)": -double: 4 -float: 3 -idouble: 4 -ifloat: 3 -ildouble: 4 -ldouble: 4 -Test "jn (10, 2.0)": +Test "tan_downward (0xc.90fdaa22168c234c4c6628b81p-4)": +ildouble: 2 +ldouble: 2 +Test "tan_downward (0xc.90fdaa22168c235p-4)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0xc.90fdaa22168c8p-4)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -Test "jn (2, 0x1.ffff62p+99)": -double: 2 -float: 2 -idouble: 2 -ifloat: 2 -Test "jn (2, 2.4048255576957729)": -double: 2 +Test "tan_downward (0xc.90fdap-4)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0xc.90fdp-4)": +double: 1 +idouble: 1 +Test "tan_downward (0xc.90fep-4)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0xc.90fp-4)": +ildouble: 2 +ldouble: 2 +Test "tan_downward (0xc.92p-4)": float: 1 -idouble: 2 ifloat: 1 -Test "jn (3, 0.125)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0xc.94p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "jn (3, 0.75)": +Test "tan_downward (0xc.98p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "jn (3, 10.0)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 +Test "tan_downward (0xc.9p-4)": ildouble: 2 ldouble: 2 -Test "jn (3, 2.0)": +Test "tan_downward (0xc.ap-4)": float: 1 ifloat: 1 -Test "jn (3, 2.4048255576957729)": -double: 3 -idouble: 3 -ildouble: 1 -ldouble: 1 -Test "jn (4, 2.4048255576957729)": +Test "tan_downward (0xcp-4)": double: 1 idouble: 1 +Test "tan_downward (0xf.fffffp+124)": ildouble: 2 ldouble: 2 -Test "jn (5, 2.4048255576957729)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 + +# tan_tonearest +Test "tan_tonearest (-0xc.908p-4)": +ildouble: 2 +ldouble: 2 +Test "tan_tonearest (-0xc.90cp-4)": +ildouble: 2 +ldouble: 2 +Test "tan_tonearest (-0xc.90ep-4)": +ildouble: 2 +ldouble: 2 +Test "tan_tonearest (-0xc.90f8p-4)": +ildouble: 2 +ldouble: 2 +Test "tan_tonearest (-0xc.90fcp-4)": ildouble: 1 ldouble: 1 -Test "jn (6, 2.4048255576957729)": -double: 4 -float: 3 -idouble: 4 -ifloat: 3 -ildouble: 4 -ldouble: 4 -Test "jn (7, 2.4048255576957729)": -double: 3 -float: 5 -idouble: 3 -ifloat: 5 +Test "tan_tonearest (-0xc.90fd8p-4)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (-0xc.90fdap-4)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (-0xc.92p-4)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (-0xc.9p-4)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0x2.1e19ep+72)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0x4p+0)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0x7p+0)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0xap+0)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0xc.908p-4)": ildouble: 2 ldouble: 2 -Test "jn (8, 2.4048255576957729)": -double: 3 -float: 2 -idouble: 3 -ifloat: 2 -ildouble: 4 -ldouble: 4 -Test "jn (9, 2.4048255576957729)": +Test "tan_tonearest (0xc.90cp-4)": +ildouble: 2 +ldouble: 2 +Test "tan_tonearest (0xc.90ep-4)": +ildouble: 2 +ldouble: 2 +Test "tan_tonearest (0xc.90f8p-4)": +ildouble: 2 +ldouble: 2 +Test "tan_tonearest (0xc.90fcp-4)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0xc.90fd8p-4)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0xc.90fdaa22168c234c4c6628b81p-4)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0xc.90fdaa22168c235p-4)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0xc.90fdap-4)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0xc.92p-4)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0xc.9p-4)": +ildouble: 1 +ldouble: 1 + +# tan_towardzero +Test "tan_towardzero (-0x2p+64)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -ildouble: 7 -ldouble: 7 - -# lgamma -Test "lgamma (0.7)": +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (-0xc.908p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "lgamma (1.2)": +Test "tan_towardzero (-0xc.90cp-4)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -ildouble: 3 -ldouble: 3 - -# log10 -Test "log10 (0.75)": +Test "tan_towardzero (-0xc.90ep-4)": +ildouble: 1 +ldouble: 1 +Test "tan_towardzero (-0xc.90f8p-4)": +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (-0xc.90fcp-4)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -Test "log10 (e)": -float: 1 -ifloat: 1 - -# log1p -Test "log1p (-0.25)": -float: 1 -ifloat: 1 - -# log2 -Test "log2 (e)": +Test "tan_towardzero (-0xc.90fd8p-4)": ildouble: 1 ldouble: 1 - -# pow -Test "pow (0x0.ffffffp0, -0x1p24)": -float: 1 -ifloat: 1 -Test "pow (0x0.ffffffp0, 0x1p24)": -float: 1 -ifloat: 1 -Test "pow (0x1.000002p0, 0x1p24)": -float: 1 -ifloat: 1 - -# pow10 -Test "pow10 (-1)": +Test "tan_towardzero (-0xc.90fdap-4)": +ildouble: 1 +ldouble: 1 +Test "tan_towardzero (-0xc.90fdp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (-0xc.90fp-4)": +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (-0xc.94p-4)": double: 1 idouble: 1 -Test "pow10 (-305)": +ildouble: 1 +ldouble: 1 +Test "tan_towardzero (-0xc.98p-4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "pow10 (-36)": +Test "tan_towardzero (-0xc.9p-4)": +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (0x1p+0)": double: 1 +float: 1 idouble: 1 -Test "pow10 (3)": +ifloat: 1 +Test "tan_towardzero (0x2.1e19e0c9bab24p+72)": +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (0x2.1e19e4p+72)": double: 1 idouble: 1 -Test "pow10 (36)": +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (0x2.1e19ep+72)": double: 1 idouble: 1 - -# pow_downward -Test "pow_downward (1.0625, 1.125)": ildouble: 1 ldouble: 1 -Test "pow_downward (1.5, 1.03125)": -float: 1 -ifloat: 1 - -# pow_towardzero -Test "pow_towardzero (1.0625, 1.125)": +Test "tan_towardzero (0x2p+0)": +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (0x2p+64)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (0x3p+0)": +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (0x4p+0)": ildouble: 1 ldouble: 1 -Test "pow_towardzero (1.5, 1.03125)": -float: 1 -ifloat: 1 - -# pow_upward -Test "pow_upward (1.0625, 1.125)": +Test "tan_towardzero (0x5p+0)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x6p+0)": +ildouble: 1 +ldouble: 1 +Test "tan_towardzero (0x7p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (0x8p+0)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x8p+1020)": +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (0x9p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 - -# sin_downward -Test "sin_downward (1)": +Test "tan_towardzero (0xap+0)": ildouble: 1 ldouble: 1 -Test "sin_downward (10)": +Test "tan_towardzero (0xc.908p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "sin_downward (2)": +Test "tan_towardzero (0xc.90cp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90ep-4)": ildouble: 1 ldouble: 1 -Test "sin_downward (3)": -float: 1 -ifloat: 1 +Test "tan_towardzero (0xc.90f8p-4)": ildouble: 2 ldouble: 2 -Test "sin_downward (4)": +Test "tan_towardzero (0xc.90fcp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90fd8p-4)": ildouble: 1 ldouble: 1 -Test "sin_downward (5)": -float: 1 -ifloat: 1 -Test "sin_downward (6)": -float: 1 -ifloat: 1 -Test "sin_downward (8)": +Test "tan_towardzero (0xc.90fdaa22168c234c4c6628b80cp-4)": ildouble: 1 ldouble: 1 - -# sin_tonearest -Test "sin_tonearest (1)": -float: 1 -ifloat: 1 - -# sin_towardzero -Test "sin_towardzero (1)": -float: 1 -ifloat: 1 -ildouble: 3 -ldouble: 3 -Test "sin_towardzero (10)": -float: 1 -ifloat: 1 -Test "sin_towardzero (2)": +Test "tan_towardzero (0xc.90fdaa22168c234p-4)": ildouble: 1 ldouble: 1 -Test "sin_towardzero (3)": +Test "tan_towardzero (0xc.90fdaa22168c8p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_towardzero (4)": -float: 1 -ifloat: 1 -Test "sin_towardzero (5)": -float: 1 -ifloat: 1 -Test "sin_towardzero (8)": +Test "tan_towardzero (0xc.90fdaa22168cp-4)": ildouble: 1 ldouble: 1 -Test "sin_towardzero (9)": -float: 1 -ifloat: 1 - -# sin_upward -Test "sin_upward (1)": -float: 1 -ifloat: 1 -ildouble: 3 -ldouble: 3 -Test "sin_upward (2)": -float: 2 -ifloat: 2 -Test "sin_upward (3)": +Test "tan_towardzero (0xc.90fdap-4)": ildouble: 1 ldouble: 1 -Test "sin_upward (4)": -float: 1 -ifloat: 1 +Test "tan_towardzero (0xc.90fdp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90fp-4)": +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (0xc.94p-4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "tan_towardzero (0xc.98p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_upward (6)": +Test "tan_towardzero (0xc.9p-4)": +ildouble: 2 +ldouble: 2 +Test "tan_towardzero (0xcp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 1 ldouble: 1 -Test "sin_upward (9)": -float: 1 -ifloat: 1 +Test "tan_towardzero (0xf.fffffp+124)": +double: 1 +idouble: 1 -# sincos -Test "sincos (0x1p+120) extra output 2": +# tan_upward +Test "tan_upward (-0xc.908p-4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.90cp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "sincos (0x1p+127) extra output 2": +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.90ep-4)": float: 1 ifloat: 1 -Test "sincos (M_PI_6l*2.0) extra output 1": -double: 1 +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.90f8p-4)": float: 1 -idouble: 1 ifloat: 1 -Test "sincos (M_PI_6l*2.0) extra output 2": +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.90fcp-4)": double: 1 -idouble: 1 -Test "sincos (pi/6) extra output 2": -float: 1 -ifloat: 1 - -# sinh -Test "sinh (0.75)": -ildouble: 1 -ldouble: 1 - -# sinh_downward -Test "sinh_downward (22)": float: 1 +idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "sinh_downward (23)": +Test "tan_upward (-0xc.90fd8p-4)": float: 1 ifloat: 1 -Test "sinh_downward (24)": +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.90fdap-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# sinh_towardzero -Test "sinh_towardzero (22)": +Test "tan_upward (-0xc.90fdbp-4)": +float: 1 +ifloat: 1 +Test "tan_upward (-0xc.90fdcp-4)": +float: 1 +ifloat: 1 +Test "tan_upward (-0xc.90fdp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "sinh_towardzero (23)": +Test "tan_upward (-0xc.90fep-4)": float: 1 ifloat: 1 -Test "sinh_towardzero (24)": +Test "tan_upward (-0xc.90fp-4)": float: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.91p-4)": +float: 1 +ifloat: 1 +Test "tan_upward (-0xc.94p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# sinh_upward -Test "sinh_upward (23)": -ildouble: 1 -ldouble: 1 -Test "sinh_upward (24)": +Test "tan_upward (-0xc.98p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# tan -Test "tan (-0xc.908p-4)": -ildouble: 2 -ldouble: 2 -Test "tan (-0xc.90cp-4)": -ildouble: 2 -ldouble: 2 -Test "tan (-0xc.90ep-4)": +Test "tan_upward (-0xc.9p-4)": +float: 1 +ifloat: 1 ildouble: 2 ldouble: 2 -Test "tan (-0xc.90f8p-4)": +Test "tan_upward (0x1p+0)": +float: 1 +ifloat: 1 +Test "tan_upward (0x2.1e19e4p+72)": +double: 1 +idouble: 1 ildouble: 2 ldouble: 2 -Test "tan (-0xc.90fcp-4)": -ildouble: 1 -ldouble: 1 -Test "tan (-0xc.90fd8p-4)": -ildouble: 1 -ldouble: 1 -Test "tan (-0xc.90fdap-4)": -ildouble: 1 -ldouble: 1 -Test "tan (-0xc.92p-4)": -ildouble: 1 -ldouble: 1 -Test "tan (-0xc.9p-4)": +Test "tan_upward (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "tan_upward (0x2p+0)": ildouble: 1 ldouble: 1 -Test "tan (0xc.908p-4)": -ildouble: 2 -ldouble: 2 -Test "tan (0xc.90cp-4)": +Test "tan_upward (0x2p+64)": +double: 1 +idouble: 1 ildouble: 2 ldouble: 2 -Test "tan (0xc.90ep-4)": +Test "tan_upward (0x3p+0)": ildouble: 2 ldouble: 2 -Test "tan (0xc.90f8p-4)": +Test "tan_upward (0x4p+0)": +double: 1 +idouble: 1 ildouble: 2 ldouble: 2 -Test "tan (0xc.90fcp-4)": -ildouble: 1 -ldouble: 1 -Test "tan (0xc.90fd8p-4)": -ildouble: 1 -ldouble: 1 -Test "tan (0xc.90fdap-4)": -ildouble: 1 -ldouble: 1 -Test "tan (0xc.92p-4)": -ildouble: 1 -ldouble: 1 -Test "tan (0xc.9p-4)": -ildouble: 1 -ldouble: 1 -Test "tan (pi/4)": +Test "tan_upward (0x5p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# tan_downward -Test "tan_downward (1)": -float: 1 -ifloat: 1 +Test "tan_upward (0x6p+0)": ildouble: 1 ldouble: 1 -Test "tan_downward (10)": +Test "tan_upward (0x7p+0)": float: 1 ifloat: 1 +Test "tan_upward (0x8p+0)": +double: 1 +idouble: 1 +Test "tan_upward (0x8p+1020)": ildouble: 2 ldouble: 2 -Test "tan_downward (2)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_downward (6)": +Test "tan_upward (0x9p+0)": +double: 1 +idouble: 1 +Test "tan_upward (0xap+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tan_downward (8)": -float: 1 -ifloat: 1 -Test "tan_downward (9)": +Test "tan_upward (0xc.908p-4)": float: 1 ifloat: 1 +Test "tan_upward (0xc.90ep-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# tan_tonearest -Test "tan_tonearest (10)": +Test "tan_upward (0xc.90f8p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_tonearest (4)": +Test "tan_upward (0xc.90fcp-4)": ildouble: 1 ldouble: 1 -Test "tan_tonearest (7)": +Test "tan_upward (0xc.90fd8p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# tan_towardzero -Test "tan_towardzero (10)": -float: 1 -ifloat: 1 +Test "tan_upward (0xc.90fdaa22168c234c4c6628b80cp-4)": ildouble: 2 ldouble: 2 -Test "tan_towardzero (3)": -float: 1 -ifloat: 1 -ildouble: 3 -ldouble: 3 -Test "tan_towardzero (4)": -float: 1 -ifloat: 1 +Test "tan_upward (0xc.90fdaa22168c234c4c6628b81p-4)": ildouble: 1 ldouble: 1 -Test "tan_towardzero (5)": -float: 1 -ifloat: 1 -Test "tan_towardzero (6)": +Test "tan_upward (0xc.90fdaa22168c234p-4)": +ildouble: 2 +ldouble: 2 +Test "tan_upward (0xc.90fdaa22168c235p-4)": ildouble: 1 ldouble: 1 -Test "tan_towardzero (7)": +Test "tan_upward (0xc.90fdaa22168c8p-4)": ildouble: 2 ldouble: 2 -Test "tan_towardzero (9)": -float: 1 -ifloat: 1 +Test "tan_upward (0xc.90fdaa22168cp-4)": +ildouble: 2 +ldouble: 2 +Test "tan_upward (0xc.90fdap-4)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.90fdbp-4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tan_upward (0xc.90fdcp-4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tan_upward (0xc.90fep-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# tan_upward -Test "tan_upward (1)": -float: 1 -ifloat: 1 -Test "tan_upward (10)": +Test "tan_upward (0xc.90fp-4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "tan_upward (0xc.91p-4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tan_upward (0xc.92p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (3)": +Test "tan_upward (0xc.94p-4)": float: 1 ifloat: 1 -ildouble: 3 -ldouble: 3 -Test "tan_upward (5)": +ildouble: 2 +ldouble: 2 +Test "tan_upward (0xc.98p-4)": float: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "tan_upward (0xc.9p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (6)": -ildouble: 1 -ldouble: 1 -Test "tan_upward (7)": -ildouble: 1 -ldouble: 1 -Test "tan_upward (9)": -ildouble: 1 -ldouble: 1 - -# tanh -Test "tanh (-0.75)": -ildouble: 1 -ldouble: 1 -Test "tanh (0.75)": -ildouble: 1 -ldouble: 1 - -# tgamma -Test "tgamma (-0.5)": +Test "tan_upward (0xc.ap-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x0.fffffffffffff8p0)": +ildouble: 2 +ldouble: 2 +Test "tan_upward (0xcp-4)": +float: 1 +ifloat: 1 +Test "tan_upward (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "tan_upward (0xf.fffffp+124)": double: 1 idouble: 1 + +# tanh +Test "tanh (-0xcp-4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x0.ffffffp0)": -float: 1 -ifloat: 1 -Test "tgamma (-0x1.000002p0)": +Test "tanh (0xcp-4)": +ildouble: 1 +ldouble: 1 + +# tgamma +Test "tgamma (-0x1.000002p+0)": double: 2 idouble: 2 -Test "tgamma (-0x1.0a32a2p+5)": -float: 2 -ifloat: 2 -Test "tgamma (-0x1.fffffffffffffp0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x13.ffffep0)": +Test "tgamma (-0x1.3ffffep+4)": float: 2 ifloat: 2 -Test "tgamma (-0x13.ffffffffffffp0)": +Test "tgamma (-0x1.3ffffffffffffp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x1.4000000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x14.000000000001p0)": +Test "tgamma (-0x1.4000000000001p+4)": double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "tgamma (-0x14.00002p0)": +Test "tgamma (-0x1.400002p+4)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "tgamma (-0x1d.ffffep0)": +Test "tgamma (-0x1.dffffep+4)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x1d.fffffffffffffffffffffffff8p0)": +Test "tgamma (-0x1.dffffffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1d.ffffffffffffp0)": +Test "tgamma (-0x1.dfffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1e.00000000000000000000000008p0)": +Test "tgamma (-0x1.dffffffffffffp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x1.e00000000000000000000000008p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x1e.000000000001p0)": +Test "tgamma (-0x1.e000000000001p+4)": double: 3 idouble: 3 ildouble: 3 ldouble: 3 -Test "tgamma (-0x1e.00002p0)": +Test "tgamma (-0x1.e00002p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x2.0000000000002p0)": +Test "tgamma (-0x1.fffffffffffffp+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.0000000000002p+0)": double: 1 idouble: 1 -Test "tgamma (-0x2.000004p0)": +Test "tgamma (-0x2.000004p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.fffffcp0)": +Test "tgamma (-0x2.146544p+4)": +float: 2 +ifloat: 2 +Test "tgamma (-0x2.7fffffffffffep+4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 +Test "tgamma (-0x2.7fffffffffffffffffffffffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x27.fffffffffffep0)": +Test "tgamma (-0x2.80000000000000000000000001p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.8000000000000004p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x2.8000000000002p+4)": double: 1 idouble: 1 -Test "tgamma (-0x27.fffffffffffffffffffffffffp0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.0000000000000000000000001p0)": +Test "tgamma (-0x2.800004p+4)": +double: 2 +idouble: 2 +Test "tgamma (-0x2.8ffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.000000000002p0)": +Test "tgamma (-0x2.8p+0)": double: 1 +float: 2 idouble: 1 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.00004p0)": -double: 2 -idouble: 2 -Test "tgamma (-0x29.0000000000000000000000001p0)": +Test "tgamma (-0x2.90000000000000000000000001p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.9000000000000004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.000000000002p0)": +Test "tgamma (-0x2.9000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.00004p0)": +Test "tgamma (-0x2.900004p+4)": double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "tgamma (-0x29.ffffcp0)": +Test "tgamma (-0x2.9ffffcp+4)": double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "tgamma (-0x29.fffffffffffep0)": +Test "tgamma (-0x2.9fffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2a.0000000000000000000000001p0)": +Test "tgamma (-0x2.a0000000000000000000000001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3.000004p0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "tgamma (-0x3.fffffcp0)": +Test "tgamma (-0x2.fffffcp+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x3.ffffffffffffep0)": +Test "tgamma (-0x3.000004p+0)": double: 2 +float: 1 idouble: 2 -Test "tgamma (-0x31.fffffffffffep0)": +ifloat: 1 +Test "tgamma (-0x3.1ffffcp+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.1fffffffffffep+4)": double: 3 idouble: 3 -Test "tgamma (-0x32.0000000000000000000000001p0)": +Test "tgamma (-0x3.1ffffffffffffffcp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x3.20000000000000000000000001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x32.000000000002p0)": +Test "tgamma (-0x3.2000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.000008p0)": +Test "tgamma (-0x3.200004p+4)": +ildouble: 3 +ldouble: 3 +Test "tgamma (-0x3.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x3.fffffcp+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x3.ffffffffffffep+0)": +double: 2 +idouble: 2 +Test "tgamma (-0x4.000008p+0)": float: 1 ifloat: 1 -Test "tgamma (-0x4.fffff8p0)": +Test "tgamma (-0x4.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x4.fffff8p+0)": double: 1 idouble: 1 -Test "tgamma (-0x4.ffffffffffffcp0)": +Test "tgamma (-0x4.ffffffffffffcp+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.0000000000004p0)": +Test "tgamma (-0x5.0000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.000008p0)": +Test "tgamma (-0x5.000008p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x5.ffffffffffffcp0)": +Test "tgamma (-0x5.8p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x5.ffffffffffffcp+0)": double: 1 idouble: 1 -Test "tgamma (-0x6.000008p0)": +Test "tgamma (-0x5.fffffffffffffff8p+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x6.000008p+0)": float: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.fffff8p0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +Test "tgamma (-0x6.3ffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.ffffffffffffcp0)": -double: 4 -idouble: 4 -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x63.fffffffffffcp0)": +Test "tgamma (-0x6.3fffffffffffcp+4)": double: 2 idouble: 2 ildouble: 1 ldouble: 1 -Test "tgamma (-0x63.ffffffffffffffffffffffffep0)": +Test "tgamma (-0x6.3ffffffffffffffffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x64.0000000000000000000000002p0)": +Test "tgamma (-0x6.40000000000000000000000002p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x64.000000000004p0)": +Test "tgamma (-0x6.4000000000000008p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x6.4000000000004p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x6.400008p+4)": double: 1 idouble: 1 +Test "tgamma (-0x6.8p+0)": +float: 1 +ifloat: 1 +Test "tgamma (-0x6.fffff8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.00000000000000000000000002p0)": +Test "tgamma (-0x6.ffffffffffffcp+0)": +double: 4 +idouble: 4 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x7.00000000000000000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.0000000000004p0)": +Test "tgamma (-0x7.0000000000004p+0)": double: 3 idouble: 3 ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.000008p0)": +Test "tgamma (-0x7.000008p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x7.fffff8p0)": +Test "tgamma (-0x7.8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (-0x7.fffff8p+0)": double: 3 float: 1 idouble: 3 ifloat: 1 -Test "tgamma (-0x7.ffffffffffffcp0)": +Test "tgamma (-0x7.ffffffffffffcp+0)": double: 3 idouble: 3 ildouble: 3 ldouble: 3 -Test "tgamma (-0x8.00000000000000000000000004p0)": +Test "tgamma (-0x8.00000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x8.00001p0)": +Test "tgamma (-0x8.00001p+0)": double: 2 idouble: 2 -Test "tgamma (-0x9.ffffffffffff8p0)": +Test "tgamma (-0x8.8p+0)": double: 1 +float: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x9.fffffp0)": +ifloat: 1 +Test "tgamma (-0x8p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "tgamma (-0x9.5ffffffffffffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x96.000000000008p0)": -double: 1 -idouble: 1 -Test "tgamma (-0xa.00001p0)": +Test "tgamma (-0x9.600000000000001p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x9.6000000000008p+4)": double: 1 idouble: 1 -ildouble: 2 -ldouble: 2 -Test "tgamma (-2.5)": +Test "tgamma (-0x9.60001p+4)": double: 1 -float: 2 idouble: 1 -ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (-3.5)": +Test "tgamma (-0x9.8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-4.5)": +Test "tgamma (-0x9.ffffffffffff8p+0)": double: 1 -float: 1 idouble: 1 +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x9.fffffp+0)": +float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-5.5)": +Test "tgamma (-0xa.00001p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xa.c0001p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0xf.ffffffffffff8p-4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-6.5)": +Test "tgamma (-0xf.fffffp-4)": float: 1 ifloat: 1 -Test "tgamma (-7.5)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "tgamma (-8.5)": +Test "tgamma (0x1.28p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-9.5)": +Test "tgamma (0x1.38p+4)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "tgamma (0x1.78p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (0.5)": -float: 1 -ifloat: 1 -Test "tgamma (0.7)": +Test "tgamma (0x1.d8p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (0x1.fffffep0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0x1.e8p+4)": +float: 1 +ifloat: 1 +Test "tgamma (0x1.fffffep+0)": float: 1 ifloat: 1 -Test "tgamma (0x1.fffffffffffffp0)": +Test "tgamma (0x1.fffffffffffffp+0)": double: 1 idouble: 1 Test "tgamma (0x1p-24)": float: 1 ifloat: 1 -Test "tgamma (0x1p-53)": +Test "tgamma (0x2.18p+4)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "tgamma (0x2.28p+4)": double: 1 +float: 2 idouble: 1 +ifloat: 2 Test "tgamma (0x2.30a43cp+4)": double: 1 float: 2 idouble: 1 ifloat: 2 -Test "tgamma (0x2.fffffcp0)": +Test "tgamma (0x2.8p+0)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "tgamma (0x2.fffffcp+0)": float: 3 ifloat: 3 -Test "tgamma (0x3.fffffcp0)": +Test "tgamma (0x3.8p+0)": +float: 2 +ifloat: 2 +Test "tgamma (0x3.fffffcp+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x3.ffffffffffffep+0)": +double: 1 +idouble: 1 +Test "tgamma (0x3p+0)": float: 1 ifloat: 1 -Test "tgamma (0x3.ffffffffffffep0)": +Test "tgamma (0x4.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x4.0000000000004p0)": +Test "tgamma (0x4.8p+0)": double: 1 +float: 1 idouble: 1 -Test "tgamma (0x4.ffffffffffffcp0)": +ifloat: 1 +Test "tgamma (0x4.ffffffffffffcp+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x5.0000000000004p0)": +Test "tgamma (0x4p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x5.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x5.000008p0)": +Test "tgamma (0x5.000008p+0)": float: 2 ifloat: 2 -Test "tgamma (0x5.fffff8p0)": +Test "tgamma (0x5.fffff8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (0x6.0000000000004p0)": +Test "tgamma (0x6.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x6.000008p0)": +Test "tgamma (0x6.000008p+0)": float: 2 ifloat: 2 -Test "tgamma (0x6.fffff8p0)": +Test "tgamma (0x6.8p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x6.fffff8p+0)": double: 1 idouble: 1 -Test "tgamma (0x6.ffffffffffffcp0)": +Test "tgamma (0x6.ffffffffffffcp+0)": double: 4 idouble: 4 ildouble: 1 ldouble: 1 -Test "tgamma (0x7.0000000000004p0)": +Test "tgamma (0x6p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x7.0000000000004p+0)": double: 4 idouble: 4 -Test "tgamma (0x7.000008p0)": +Test "tgamma (0x7.000008p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (0x7.fffff8p0)": +Test "tgamma (0x7.8p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -Test "tgamma (0x7.ffffffffffffcp0)": -double: 2 -idouble: 2 ildouble: 1 ldouble: 1 -Test "tgamma (0x8.00001p0)": +Test "tgamma (0x7.fffff8p+0)": double: 2 -idouble: 2 -Test "tgamma (0xa.b9fd72b0fb238p+4)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "tgamma (0xa.b9fd72b0fb23a9ddbf0d3804f4p+4)": -ildouble: 2 -ldouble: 2 -Test "tgamma (10)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (18.5)": -double: 1 float: 1 -idouble: 1 +idouble: 2 ifloat: 1 -Test "tgamma (19.5)": +Test "tgamma (0x7.ffffffffffffcp+0)": double: 2 idouble: 2 ildouble: 1 ldouble: 1 -Test "tgamma (2.5)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "tgamma (23.5)": +Test "tgamma (0x7p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "tgamma (29.5)": +Test "tgamma (0x8.00001p+0)": +double: 2 +idouble: 2 +Test "tgamma (0x8.8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (3)": -float: 1 -ifloat: 1 -Test "tgamma (3.5)": -float: 2 -ifloat: 2 -Test "tgamma (30.5)": -float: 1 -ifloat: 1 -Test "tgamma (33.5)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (34.5)": +Test "tgamma (0x8p+0)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -Test "tgamma (4)": +Test "tgamma (0x8p-4)": float: 1 ifloat: 1 -Test "tgamma (4.5)": +Test "tgamma (0x8p-56)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "tgamma (6)": -float: 1 -ifloat: 1 -Test "tgamma (6.5)": -float: 1 -ifloat: 1 -Test "tgamma (7)": +Test "tgamma (0x9.8p+0)": double: 1 idouble: 1 -Test "tgamma (7.5)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (8)": +Test "tgamma (0x9p+0)": double: 1 idouble: 1 -Test "tgamma (8.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (9)": +Test "tgamma (0xa.b9fd72b0fb238p+4)": double: 1 idouble: 1 -Test "tgamma (9.5)": +ildouble: 2 +ldouble: 2 +Test "tgamma (0xa.b9fd72b0fb23a9ddbf0d3804f4p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (0xa.b9fd7p+4)": +double: 2 +idouble: 2 +ildouble: 2 +ldouble: 2 +Test "tgamma (0xap+0)": double: 1 +float: 1 idouble: 1 +ifloat: 1 +Test "tgamma (0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0xb.33334p-4)": ildouble: 1 ldouble: 1 # y0 -Test "y0 (0.125)": +Test "y0 (0x1.8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "y0 (0x1.ff00000000002p+840)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "y0 (0x1p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "y0 (0x1p-100)": ildouble: 1 ldouble: 1 -Test "y0 (0x1.3ffp+74)": +Test "y0 (0x1p-20)": +float: 1 +ifloat: 1 +Test "y0 (0x1p-40)": double: 1 +float: 1 idouble: 1 -Test "y0 (0x1.ff00000000002p+840)": +ifloat: 1 +Test "y0 (0x1p-80)": double: 1 +float: 1 idouble: 1 +ifloat: 1 +Test "y0 (0x2p-4)": ildouble: 1 ldouble: 1 -Test "y0 (0x1p-10)": +Test "y0 (0x4.ffcp+72)": double: 1 idouble: 1 -Test "y0 (0x1p-100)": -ildouble: 1 -ldouble: 1 -Test "y0 (0x1p-110)": +Test "y0 (0x4p-112)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "y0 (0x1p-20)": -float: 1 -ifloat: 1 -Test "y0 (0x1p-30)": +Test "y0 (0x4p-12)": +double: 1 +idouble: 1 +Test "y0 (0x4p-32)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "y0 (0x1p-40)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "y0 (0x1p-50)": +Test "y0 (0x4p-52)": float: 1 ifloat: 1 -Test "y0 (0x1p-70)": +Test "y0 (0x4p-72)": double: 1 idouble: 1 -Test "y0 (0x1p-80)": +Test "y0 (0x8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "y0 (0x1p1023)": ildouble: 1 ldouble: 1 -Test "y0 (1.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +Test "y0 (0x8p+1020)": ildouble: 1 ldouble: 1 -Test "y0 (1.5)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "y0 (10.0)": +Test "y0 (0xap+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "y0 (8.0)": +Test "y0 (0xf.ffffffffffff8p+1020)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 +Test "y0 (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "y0 (0xf.fffffp+124)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 # y1 -Test "y1 (0.125)": +Test "y1 (0x1.8p+0)": +float: 1 +ifloat: 1 +Test "y1 (0x1p-20)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x2.002000002p+592)": +ildouble: 2 +ldouble: 2 +Test "y1 (0x2p+0)": double: 1 +float: 1 idouble: 1 -Test "y1 (0x1.001000001p+593)": +ifloat: 1 ildouble: 2 ldouble: 2 -Test "y1 (0x1.27e204p+99)": +Test "y1 (0x2p-4)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "y1 (0x1p-10)": +Test "y1 (0x4p-12)": double: 1 idouble: 1 -Test "y1 (0x1p-20)": +Test "y1 (0x8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "y1 (0x8p+1020)": ildouble: 1 ldouble: 1 -Test "y1 (0x1p1023)": +Test "y1 (0x9.3f102p+96)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "y1 (1.5)": -float: 1 -ifloat: 1 -Test "y1 (10.0)": +Test "y1 (0xap+0)": double: 3 float: 1 idouble: 3 ifloat: 1 ildouble: 2 ldouble: 2 -Test "y1 (2.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "y1 (0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 2 ldouble: 2 -Test "y1 (8.0)": -double: 1 +Test "y1 (0xf.fffffp+124)": +double: 2 float: 2 -idouble: 1 +idouble: 2 ifloat: 2 # yn -Test "yn (0, 0.125)": -ildouble: 1 -ldouble: 1 -Test "yn (0, 1.0)": +Test "yn (-10, 0x1p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "yn (0, 0x1.8p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "yn (0, 1.5)": +Test "yn (0, 0x1p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -Test "yn (0, 10.0)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "yn (0, 8.0)": +Test "yn (0, 0x2p-4)": +ildouble: 1 +ldouble: 1 +Test "yn (0, 0x8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "yn (1, 0.125)": -double: 1 -idouble: 1 -Test "yn (1, 1.5)": +Test "yn (0, 0xap+0)": float: 1 ifloat: 1 -Test "yn (1, 10.0)": -double: 3 +ildouble: 1 +ldouble: 1 +Test "yn (1, 0x1.8p+0)": float: 1 -idouble: 3 +ifloat: 1 +Test "yn (1, 0x2p+0)": +double: 1 +float: 1 +idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "yn (1, 2.0)": +Test "yn (1, 0x2p-4)": double: 1 -float: 1 idouble: 1 +Test "yn (1, 0x8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "yn (1, 0xap+0)": +double: 3 +float: 1 +idouble: 3 ifloat: 1 ildouble: 2 ldouble: 2 -Test "yn (1, 8.0)": +Test "yn (10, 0x1p+0)": double: 1 float: 2 idouble: 1 ifloat: 2 -Test "yn (10, 0.125)": +Test "yn (10, 0x2p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "yn (10, 0x2p-4)": double: 1 idouble: 1 -Test "yn (10, 0.75)": +Test "yn (10, 0xap+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "yn (10, 1.0)": -double: 1 -idouble: 1 -Test "yn (10, 10.0)": +ildouble: 1 +ldouble: 1 +Test "yn (10, 0xcp-4)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "yn (2, 0x8p+1020)": ildouble: 1 ldouble: 1 -Test "yn (10, 2.0)": -double: 2 -idouble: 2 +Test "yn (2, 0x8p+124)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "yn (3, 0.125)": +Test "yn (2, 0xf.fffb1p+96)": double: 1 idouble: 1 -Test "yn (3, 0.75)": +Test "yn (2, 0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "yn (2, 0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "yn (2, 0xf.fffffp+124)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "yn (3, 10.0)": +Test "yn (3, 0x2p+0)": +double: 1 +idouble: 1 +Test "yn (3, 0x2p-4)": +double: 1 +idouble: 1 +Test "yn (3, 0xap+0)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "yn (3, 2.0)": +Test "yn (3, 0xcp-4)": double: 1 idouble: 1 @@ -6517,30 +12920,30 @@ ildouble: 1 ldouble: 1 Function: "acos_downward": -double: 1 float: 1 -idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 3 +ldouble: 3 Function: "acos_tonearest": ildouble: 1 ldouble: 1 Function: "acos_towardzero": -double: 1 float: 1 -idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 3 +ldouble: 3 Function: "acos_upward": -ildouble: 2 -ldouble: 2 +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Function: "acosh": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 @@ -6553,12 +12956,12 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: "asin_tonearest": -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: "asin_towardzero": double: 1 @@ -6569,24 +12972,31 @@ ildouble: 1 ldouble: 1 Function: "asin_upward": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: "asinh": +double: 1 +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "atan2": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: "atanh": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: "cabs": ildouble: 1 @@ -6690,7 +13100,9 @@ ldouble: 1 Function: "cbrt": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 @@ -6773,58 +13185,78 @@ ildouble: 2 ldouble: 2 Function: "cos": -double: 2 float: 1 -idouble: 2 ifloat: 1 ildouble: 2 ldouble: 2 Function: "cos_downward": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 3 +ldouble: 3 Function: "cos_tonearest": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: "cos_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 4 +ldouble: 4 Function: "cos_upward": +double: 1 float: 2 +idouble: 1 ifloat: 2 -ildouble: 1 -ldouble: 1 +ildouble: 4 +ldouble: 4 Function: "cosh": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "cosh_downward": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: "cosh_tonearest": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "cosh_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: "cosh_upward": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 ildouble: 2 ldouble: 2 @@ -6893,134 +13325,156 @@ ildouble: 2 ldouble: 2 Function: Imaginary part of "ctan": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 - -Function: Real part of "ctan_downward": double: 2 float: 1 idouble: 2 ifloat: 1 -ildouble: 3 -ldouble: 3 +ildouble: 2 +ldouble: 2 + +Function: Real part of "ctan_downward": +double: 6 +float: 5 +idouble: 6 +ifloat: 5 +ildouble: 8 +ldouble: 8 Function: Imaginary part of "ctan_downward": +double: 2 float: 1 +idouble: 2 ifloat: 1 -ildouble: 6 -ldouble: 6 +ildouble: 10 +ldouble: 10 Function: Real part of "ctan_tonearest": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: Imaginary part of "ctan_tonearest": +double: 2 float: 1 +idouble: 2 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: Real part of "ctan_towardzero": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 10 +ldouble: 10 Function: Imaginary part of "ctan_towardzero": -float: 1 -ifloat: 1 -ildouble: 13 -ldouble: 13 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 14 +ldouble: 14 Function: Real part of "ctan_upward": double: 2 -float: 1 +float: 3 idouble: 2 -ifloat: 1 +ifloat: 3 ildouble: 6 ldouble: 6 Function: Imaginary part of "ctan_upward": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +double: 2 +float: 3 +idouble: 2 +ifloat: 3 ildouble: 10 ldouble: 10 Function: Real part of "ctanh": -double: 1 +double: 2 float: 1 -idouble: 1 +idouble: 2 ifloat: 1 ildouble: 2 ldouble: 2 Function: Imaginary part of "ctanh": -double: 1 +double: 2 float: 2 -idouble: 1 +idouble: 2 ifloat: 2 -ildouble: 2 -ldouble: 2 +ildouble: 3 +ldouble: 3 Function: Real part of "ctanh_downward": +double: 4 float: 1 +idouble: 4 ifloat: 1 -ildouble: 6 -ldouble: 6 +ildouble: 10 +ldouble: 10 Function: Imaginary part of "ctanh_downward": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 3 -ldouble: 3 +double: 6 +float: 5 +idouble: 6 +ifloat: 5 +ildouble: 7 +ldouble: 7 Function: Real part of "ctanh_tonearest": +double: 2 float: 1 +idouble: 2 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: Imaginary part of "ctanh_tonearest": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 3 +ldouble: 3 Function: Real part of "ctanh_towardzero": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 13 ldouble: 13 Function: Imaginary part of "ctanh_towardzero": -float: 1 -ifloat: 1 -ildouble: 4 -ldouble: 4 +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 11 +ldouble: 11 Function: Real part of "ctanh_upward": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +double: 2 +float: 3 +idouble: 2 +ifloat: 3 ildouble: 10 ldouble: 10 Function: Imaginary part of "ctanh_upward": double: 2 -float: 1 +float: 3 idouble: 2 -ifloat: 1 -ildouble: 6 -ldouble: 6 +ifloat: 3 +ildouble: 10 +ldouble: 10 Function: "erf": double: 1 @@ -7033,8 +13487,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: "exp": ildouble: 1 @@ -7046,9 +13500,35 @@ idouble: 1 ildouble: 1 ldouble: 1 -Function: "exp_downward": +Function: "exp10_downward": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 + +Function: "exp10_tonearest": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + +Function: "exp10_towardzero": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 + +Function: "exp10_upward": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 + +Function: "exp_downward": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 @@ -7057,18 +13537,34 @@ ildouble: 1 ldouble: 1 Function: "exp_towardzero": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + +Function: "exp_upward": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + +Function: "expm1": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Function: "exp_upward": +Function: "expm1_downward": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Function: "expm1": +Function: "expm1_tonearest": double: 1 float: 1 idouble: 1 @@ -7076,20 +13572,36 @@ ifloat: 1 ildouble: 1 ldouble: 1 -Function: "gamma": +Function: "expm1_towardzero": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 -ildouble: 3 -ldouble: 3 +ifloat: 1 +ildouble: 2 +ldouble: 2 -Function: "hypot": +Function: "expm1_upward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +Function: "gamma": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Function: "hypot": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + Function: "j0": double: 2 float: 2 @@ -7108,21 +13620,23 @@ ldouble: 1 Function: "jn": double: 4 -float: 5 +float: 4 idouble: 4 -ifloat: 5 -ildouble: 7 -ldouble: 7 +ifloat: 4 +ildouble: 4 +ldouble: 4 Function: "lgamma": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 -ildouble: 3 -ldouble: 3 +ifloat: 1 +ildouble: 1 +ldouble: 1 Function: "log": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 @@ -7137,6 +13651,8 @@ ldouble: 1 Function: "log1p": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: "log2": ildouble: 1 @@ -7160,6 +13676,12 @@ ifloat: 1 ildouble: 1 ldouble: 1 +Function: "pow_tonearest": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + Function: "pow_towardzero": float: 1 ifloat: 1 @@ -7171,14 +13693,18 @@ float: 1 ifloat: 1 Function: "sin": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "sin_downward": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 3 +ldouble: 3 Function: "sin_tonearest": float: 1 @@ -7187,21 +13713,23 @@ ildouble: 1 ldouble: 1 Function: "sin_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 3 -ldouble: 3 +ildouble: 4 +ldouble: 4 Function: "sin_upward": +double: 1 float: 2 +idouble: 1 ifloat: 2 ildouble: 3 ldouble: 3 Function: "sincos": -double: 1 float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 @@ -7211,52 +13739,60 @@ ildouble: 1 ldouble: 1 Function: "sinh_downward": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Function: "sinh_tonearest": ildouble: 1 ldouble: 1 Function: "sinh_towardzero": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Function: "sinh_upward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "tan": -double: 1 -idouble: 1 ildouble: 2 ldouble: 2 Function: "tan_downward": -float: 1 -ifloat: 1 +double: 1 +float: 2 +idouble: 1 +ifloat: 2 ildouble: 2 ldouble: 2 Function: "tan_tonearest": -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: "tan_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 3 -ldouble: 3 +ildouble: 2 +ldouble: 2 Function: "tan_upward": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 3 -ldouble: 3 +ildouble: 2 +ldouble: 2 Function: "tanh": ildouble: 1 -- cgit v1.2.3 From d7ad2d9bad88dd2ef4498cded81b3e2adca68af8 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Fri, 3 Jan 2014 13:22:19 -0600 Subject: PowerPC: Fix compiler warnings This patch fixes some compile warnings related to extra tokens at end of #undef directive from multilib patchset. --- ChangeLog | 8 ++++++++ sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S | 2 +- sysdeps/powerpc/powerpc64/multiarch/wcscpy.c | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 5c4ffa7d82..74ffbff43b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2014-01-03 Adhemerval Zanella + + * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Remove + extra tokens at end of #undef directive. + * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: Likewise. + * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: Likewise. + * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise. + 2014-01-03 Andrew Hunter * elf/dl-open.c (): New comment. diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S index 0492bafb44..ad00f98faa 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S @@ -33,7 +33,7 @@ TRACEBACK(__strcasecmp_power7) \ END_2(__strcasecmp_power7) -#undef weak_alias(name, alias) +#undef weak_alias #define weak_alias(name, alias) #undef libc_hidden_builtin_def diff --git a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S index a65949f2bf..81ec696857 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S @@ -33,7 +33,7 @@ TRACEBACK(__strcasecmp_l_power7) \ END_2(__strcasecmp_l_power7) -#undef weak_alias(name, alias) +#undef weak_alias #define weak_alias(name, alias) #undef libc_hidden_builtin_def diff --git a/sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S b/sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S index 30e29cda7e..057e5a8d2d 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S +++ b/sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S @@ -35,7 +35,7 @@ #undef libc_hidden_builtin_def #define libc_hidden_builtin_def(name) -#undef weak_alias(name, alias) +#undef weak_alias #define weak_alias(name, alias) #include diff --git a/sysdeps/powerpc/powerpc64/multiarch/wcscpy.c b/sysdeps/powerpc/powerpc64/multiarch/wcscpy.c index f04298a7a2..5c0a6d339c 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/wcscpy.c +++ b/sysdeps/powerpc/powerpc64/multiarch/wcscpy.c @@ -33,4 +33,4 @@ libc_ifunc (wcscpy, : __wcscpy_ppc); #else #include -#endif: +#endif -- cgit v1.2.3 From 22562bb222a91e0ecc416b19accd98e10c0d26be Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 3 Jan 2014 20:56:18 +0000 Subject: Fix soft-float ldbl-128ibm atan2l signs of zero results (bug 16390). This patch fixes bug 16390, incorrect signs of zero results from ldbl-128ibm atan2l, soft-float only. The problem is a longstanding GCC bug with fabsl not being correct for signed zero for soft float, and the fix is using -fno-builtin-fabsl as a workaround, as already done for various other source files. Tested powerpc-nofpu. * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math] (CFLAGS-e_atan2l.c): Use -fno-builtin-fabsl. --- ChangeLog | 6 ++++++ NEWS | 2 +- sysdeps/powerpc/nofpu/Makefile | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 102967904f..0e6850d43a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2014-01-03 Joseph Myers + + [BZ #16390] + * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math] + (CFLAGS-e_atan2l.c): Use -fno-builtin-fabsl. + 2014-01-03 Adhemerval Zanella * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Remove diff --git a/NEWS b/NEWS index e0ea97aa0e..7757c32ab7 100644 --- a/NEWS +++ b/NEWS @@ -24,7 +24,7 @@ Version 2.19 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, 16384, 16385, - 16386. + 16386, 16390. * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/powerpc/nofpu/Makefile b/sysdeps/powerpc/nofpu/Makefile index 9de7c43747..99761ef7f0 100644 --- a/sysdeps/powerpc/nofpu/Makefile +++ b/sysdeps/powerpc/nofpu/Makefile @@ -15,6 +15,7 @@ CPPFLAGS += -I../soft-fp/ # gcc-4.1.1 and may be too late for gcc-4.2. So we need these flags # until the fix in a gcc release and glibc drops support for earlier # versions of gcc. +CFLAGS-e_atan2l.c += -fno-builtin-fabsl CFLAGS-e_hypotl.c += -fno-builtin-fabsl CFLAGS-e_powl.c += -fno-builtin-fabsl CFLAGS-s_ccoshl.c += -fno-builtin-fabsl -- cgit v1.2.3 From 20f4a8d9937b2a824a5d20583dd850070fe29988 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 31 Dec 2013 11:36:54 -0500 Subject: tst-fanotify: switch to AC_DEFINE Reported-by: Joseph S. Myers Signed-off-by: Mike Frysinger --- ChangeLog | 7 +++++++ config.h.in | 3 +++ sysdeps/unix/sysv/linux/configure | 3 ++- sysdeps/unix/sysv/linux/configure.ac | 2 +- sysdeps/unix/sysv/linux/tst-fanotify.c | 1 + 5 files changed, 14 insertions(+), 2 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 0e6850d43a..ddfb69a2fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2014-01-04 Mike Frysinger + + * config.h.in: Add HAVE_LINUX_FANOTIFY_H template. + * sysdeps/unix/sysv/linux/configure: Regenerated. + * sysdeps/unix/sysv/linux/configure.ac: Call AC_DEFINE. + * sysdeps/unix/sysv/linux/tst-fanotify.c: Include config.h. + 2014-01-03 Joseph Myers [BZ #16390] diff --git a/config.h.in b/config.h.in index f6151c55bf..40797e7fdc 100644 --- a/config.h.in +++ b/config.h.in @@ -192,6 +192,9 @@ /* Define if STT_GNU_IFUNC support actually works. */ #undef HAVE_IFUNC +/* Define if linux/fanotify.h is available. */ +#undef HAVE_LINUX_FANOTIFY_H + /* */ diff --git a/sysdeps/unix/sysv/linux/configure b/sysdeps/unix/sysv/linux/configure index ab0f03c35e..d5ee4ef5d5 100644 --- a/sysdeps/unix/sysv/linux/configure +++ b/sysdeps/unix/sysv/linux/configure @@ -303,7 +303,8 @@ fi ac_fn_c_check_header_compile "$LINENO" "linux/fanotify.h" "ac_cv_header_linux_fanotify_h" "/* No default includes. */ " if test "x$ac_cv_header_linux_fanotify_h" = xyes; then : - DEFINES="$DEFINES -DHAVE_LINUX_FANOTIFY_H=1" + $as_echo "#define HAVE_LINUX_FANOTIFY_H 1" >>confdefs.h + fi diff --git a/sysdeps/unix/sysv/linux/configure.ac b/sysdeps/unix/sysv/linux/configure.ac index 6d6053f27e..90cbf4894d 100644 --- a/sysdeps/unix/sysv/linux/configure.ac +++ b/sysdeps/unix/sysv/linux/configure.ac @@ -108,7 +108,7 @@ fi # Until we start requiring 2.6.37+ headers, we need to check for the # availability of linux/fanotify.h for testing purposes. AC_CHECK_HEADER(linux/fanotify.h, - [DEFINES="$DEFINES -DHAVE_LINUX_FANOTIFY_H=1"], , + [AC_DEFINE(HAVE_LINUX_FANOTIFY_H)], , [/* No default includes. */]) # The result of the above test for the use of the FDE code is invalid if diff --git a/sysdeps/unix/sysv/linux/tst-fanotify.c b/sysdeps/unix/sysv/linux/tst-fanotify.c index 43d3bb2691..fb3c77eaa6 100644 --- a/sysdeps/unix/sysv/linux/tst-fanotify.c +++ b/sysdeps/unix/sysv/linux/tst-fanotify.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see . */ +#include #include #include #include -- cgit v1.2.3 From 75595dcf8a01195bdf473db9b7b65e3ba61a6870 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sun, 5 Jan 2014 21:48:54 +0100 Subject: Update ULPs for i386 Update based on testing with GCC 4.8.1 on Intel i7 --- ChangeLog | 4 ++ sysdeps/i386/fpu/libm-test-ulps | 84 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 58e203e698..faa208044d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-01-05 Andreas Jaeger + + * sysdeps/i386/fpu/libm-test-ulps: Update. + 2014-01-05 Allan McRae * po/libc.pot: Regenerated. diff --git a/sysdeps/i386/fpu/libm-test-ulps b/sysdeps/i386/fpu/libm-test-ulps index 440be0d287..4a921b1a61 100644 --- a/sysdeps/i386/fpu/libm-test-ulps +++ b/sysdeps/i386/fpu/libm-test-ulps @@ -332,7 +332,9 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: cacos (-0.5 + 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Imaginary part of: cacos (-0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -356,7 +358,9 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: cacos (-0.5 - 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Imaginary part of: cacos (-0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -387,6 +391,12 @@ ldouble: 1 Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: cacos (-0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 Test "Imaginary part of: cacos (-0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 2 ldouble: 2 @@ -661,7 +671,9 @@ double: 1 idouble: 1 Test "Imaginary part of: cacos (0.5 + 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Real part of: cacos (0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -706,7 +718,9 @@ double: 1 idouble: 1 Test "Imaginary part of: cacos (0.5 - 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Real part of: cacos (0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -758,6 +772,12 @@ ldouble: 1 Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 Test "Real part of: cacos (0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 @@ -1107,7 +1127,9 @@ ildouble: 1 ldouble: 1 Test "Real part of: cacosh (-0.5 + 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Real part of: cacosh (-0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -1131,7 +1153,9 @@ ildouble: 1 ldouble: 1 Test "Real part of: cacosh (-0.5 - 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Real part of: cacosh (-0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -1162,6 +1186,12 @@ ldouble: 1 Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 +Test "Real part of: cacosh (-0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 Test "Real part of: cacosh (-0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 2 ldouble: 2 @@ -1436,7 +1466,9 @@ double: 1 idouble: 1 Test "Real part of: cacosh (0.5 + 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Real part of: cacosh (0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -1481,7 +1513,9 @@ double: 1 idouble: 1 Test "Real part of: cacosh (0.5 - 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Real part of: cacosh (0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -1533,6 +1567,12 @@ ldouble: 1 Test "Imaginary part of: cacosh (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 +Test "Real part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 Test "Real part of: cacosh (0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 2 ldouble: 2 @@ -1879,7 +1919,9 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: casin (-0.5 + 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Imaginary part of: casin (-0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -1909,7 +1951,9 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: casin (-0.5 - 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Imaginary part of: casin (-0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -1943,6 +1987,12 @@ ldouble: 1 Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 Test "Imaginary part of: casin (-0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 2 ldouble: 2 @@ -2259,7 +2309,9 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: casin (0.5 + 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Imaginary part of: casin (0.5 + 0x1p-52 i)": double: 1 idouble: 1 @@ -2289,7 +2341,9 @@ ildouble: 1 ldouble: 1 Test "Imaginary part of: casin (0.5 - 0x1p-23 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Imaginary part of: casin (0.5 - 0x1p-52 i)": double: 1 idouble: 1 @@ -2329,6 +2383,12 @@ ldouble: 1 Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 Test "Imaginary part of: casin (0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 2 ldouble: 2 @@ -2854,10 +2914,15 @@ ildouble: 1 ldouble: 1 Test "Real part of: casinh (-0x1p-23 + 0.5 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Imaginary part of: casinh (-0x1p-23 + 0.5 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 Test "Real part of: casinh (-0x1p-23 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 @@ -2866,10 +2931,15 @@ ildouble: 1 ldouble: 1 Test "Real part of: casinh (-0x1p-23 - 0.5 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Imaginary part of: casinh (-0x1p-23 - 0.5 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 Test "Real part of: casinh (-0x1p-23 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 @@ -3269,10 +3339,15 @@ ildouble: 1 ldouble: 1 Test "Real part of: casinh (0x1p-23 + 0.5 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Imaginary part of: casinh (0x1p-23 + 0.5 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 Test "Real part of: casinh (0x1p-23 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 @@ -3281,10 +3356,15 @@ ildouble: 1 ldouble: 1 Test "Real part of: casinh (0x1p-23 - 0.5 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 Test "Imaginary part of: casinh (0x1p-23 - 0.5 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 Test "Real part of: casinh (0x1p-23 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 @@ -7763,7 +7843,9 @@ idouble: 1 ifloat: 1 Test "Imaginary part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": double: 2 +float: 1 idouble: 2 +ifloat: 1 # ctanh_tonearest Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb4p+0 i)": @@ -8075,7 +8157,9 @@ idouble: 1 ifloat: 1 Test "Imaginary part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": double: 2 +float: 1 idouble: 2 +ifloat: 1 # ctanh_upward Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb4p+0 i)": -- cgit v1.2.3 From 9341dde4d56ca71b61b47c8b87a06e6d5813ed0e Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 5 Jan 2014 16:07:13 -0500 Subject: ptrace.h: add __ prefix to ptrace_peeksiginfo_args All the other ptrace structures in this file have a __ prefix except this new one. This in turn causes build problems for most packages that try to use ptrace such as strace: gcc -DHAVE_CONFIG_H -I. -I../.. -I../../linux/x86_64 -I../../linux \ -I./linux -Wall -Wwrite-strings -g -O2 -MT process.o -MD -MP \ -MF .deps/process.Tpo -c -o process.o ../../process.c In file included from ../../process.c:63:0: /usr/include/linux/ptrace.h:58:8: error: redefinition of 'struct ptrace_peeksiginfo_args' struct ptrace_peeksiginfo_args { ^ In file included from ../../defs.h:159:0, from ../../process.c:37: /usr/include/sys/ptrace.h:191:8: note: originally defined here struct ptrace_peeksiginfo_args ^ Since this struct was introduced in glibc-2.18, there shouldn't be any real regressions with adding the __ prefix. Signed-off-by: Mike Frysinger --- ChangeLog | 9 +++++++++ ports/ChangeLog.aarch64 | 6 ++++++ ports/ChangeLog.ia64 | 6 ++++++ ports/ChangeLog.tile | 6 ++++++ ports/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h | 2 +- ports/sysdeps/unix/sysv/linux/ia64/sys/ptrace.h | 2 +- ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h | 2 +- sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h | 2 +- sysdeps/unix/sysv/linux/s390/sys/ptrace.h | 2 +- sysdeps/unix/sysv/linux/sparc/sys/ptrace.h | 2 +- sysdeps/unix/sysv/linux/sys/ptrace.h | 2 +- 11 files changed, 34 insertions(+), 7 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 43139c6139..1984691a78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2014-01-06 Mike Frysinger + + * sysdeps/unix/sysv/linux/sys/ptrace.h (ptrace_peeksiginfo_args): + Rename to ... + (__ptrace_peeksiginfo_args): ... this. + * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise. + * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise. + * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise. + 2014-01-06 Allan McRae * inet/netinet/in.h: Fix typo in comment. diff --git a/ports/ChangeLog.aarch64 b/ports/ChangeLog.aarch64 index e947cb190b..f86b79640c 100644 --- a/ports/ChangeLog.aarch64 +++ b/ports/ChangeLog.aarch64 @@ -1,3 +1,9 @@ +2014-01-06 Mike Frysinger + + * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h (ptrace_peeksiginfo_args): + Rename to ... + (__ptrace_peeksiginfo_args): ... this. + 2014-01-01 Marcus Shawcroft * sysdeps/aarch64/libm-test-ulps: Regenerated. diff --git a/ports/ChangeLog.ia64 b/ports/ChangeLog.ia64 index 143e015035..a9d5039745 100644 --- a/ports/ChangeLog.ia64 +++ b/ports/ChangeLog.ia64 @@ -1,3 +1,9 @@ +2014-01-06 Mike Frysinger + + * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h (ptrace_peeksiginfo_args): + Rename to ... + (__ptrace_peeksiginfo_args): ... this. + 2014-01-04 Mike Frysinger * sysdeps/ia64/dl-tls.h (GET_ADDR_ARGS): Add "tls_ia64_" prefix to vars. diff --git a/ports/ChangeLog.tile b/ports/ChangeLog.tile index a0ec89cac3..bf871234b2 100644 --- a/ports/ChangeLog.tile +++ b/ports/ChangeLog.tile @@ -1,3 +1,9 @@ +2014-01-06 Mike Frysinger + + * sysdeps/unix/sysv/linux/tile/sys/ptrace.h (ptrace_peeksiginfo_args): + Rename to ... + (__ptrace_peeksiginfo_args): ... this. + 2013-10-30 Mike Frysinger * sysdeps/unix/sysv/linux/tile/configure.in: Moved to ... diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h b/ports/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h index c8aff0eaad..ca57bb50e5 100644 --- a/ports/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h +++ b/ports/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h @@ -165,7 +165,7 @@ enum __ptrace_eventcodes }; /* Arguments for PTRACE_PEEKSIGINFO. */ -struct ptrace_peeksiginfo_args +struct __ptrace_peeksiginfo_args { __uint64_t off; /* From which siginfo to start. */ __uint32_t flags; /* Flags for peeksiginfo. */ diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sys/ptrace.h b/ports/sysdeps/unix/sysv/linux/ia64/sys/ptrace.h index 0ea6d4024c..801a549eca 100644 --- a/ports/sysdeps/unix/sysv/linux/ia64/sys/ptrace.h +++ b/ports/sysdeps/unix/sysv/linux/ia64/sys/ptrace.h @@ -185,7 +185,7 @@ enum __ptrace_eventcodes }; /* Arguments for PTRACE_PEEKSIGINFO. */ -struct ptrace_peeksiginfo_args +struct __ptrace_peeksiginfo_args { __uint64_t off; /* From which siginfo to start. */ __uint32_t flags; /* Flags for peeksiginfo. */ diff --git a/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h b/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h index 2a5246968f..be31308dd3 100644 --- a/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h +++ b/ports/sysdeps/unix/sysv/linux/tile/sys/ptrace.h @@ -154,7 +154,7 @@ enum __ptrace_eventcodes }; /* Arguments for PTRACE_PEEKSIGINFO. */ -struct ptrace_peeksiginfo_args +struct __ptrace_peeksiginfo_args { __uint64_t off; /* From which siginfo to start. */ __uint32_t flags; /* Flags for peeksiginfo. */ diff --git a/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h b/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h index d798b5a27b..dd81efc281 100644 --- a/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h @@ -158,7 +158,7 @@ enum __ptrace_eventcodes }; /* Arguments for PTRACE_PEEKSIGINFO. */ -struct ptrace_peeksiginfo_args +struct __ptrace_peeksiginfo_args { __uint64_t off; /* From which siginfo to start. */ __uint32_t flags; /* Flags for peeksiginfo. */ diff --git a/sysdeps/unix/sysv/linux/s390/sys/ptrace.h b/sysdeps/unix/sysv/linux/s390/sys/ptrace.h index d86188e5f3..741dce6f9f 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/s390/sys/ptrace.h @@ -197,7 +197,7 @@ enum __ptrace_eventcodes }; /* Arguments for PTRACE_PEEKSIGINFO. */ -struct ptrace_peeksiginfo_args +struct __ptrace_peeksiginfo_args { __uint64_t off; /* From which siginfo to start. */ __uint32_t flags; /* Flags for peeksiginfo. */ diff --git a/sysdeps/unix/sysv/linux/sparc/sys/ptrace.h b/sysdeps/unix/sysv/linux/sparc/sys/ptrace.h index 2395c310a1..0f6c2ccae7 100644 --- a/sysdeps/unix/sysv/linux/sparc/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/sparc/sys/ptrace.h @@ -240,7 +240,7 @@ enum __ptrace_eventcodes }; /* Arguments for PTRACE_PEEKSIGINFO. */ -struct ptrace_peeksiginfo_args +struct __ptrace_peeksiginfo_args { __uint64_t off; /* From which siginfo to start. */ __uint32_t flags; /* Flags for peeksiginfo. */ diff --git a/sysdeps/unix/sysv/linux/sys/ptrace.h b/sysdeps/unix/sysv/linux/sys/ptrace.h index ddcefba638..e800562e81 100644 --- a/sysdeps/unix/sysv/linux/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/sys/ptrace.h @@ -188,7 +188,7 @@ enum __ptrace_eventcodes }; /* Arguments for PTRACE_PEEKSIGINFO. */ -struct ptrace_peeksiginfo_args +struct __ptrace_peeksiginfo_args { __uint64_t off; /* From which siginfo to start. */ __uint32_t flags; /* Flags for peeksiginfo. */ -- cgit v1.2.3 From eb3fc44b56e5e780be5e2830c72d20b9e74fef8a Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Mon, 6 Jan 2014 18:20:20 +0000 Subject: Fix ldbl-128 / ldbl-128ibm lgammal spurious underflow (bug 16400). This patch fixes bug 16400, spurious underflow exceptions for ldbl-128 / ldbl-128ibm lgammal with small positive arguments, by just using -__logl (x) as the result in the problem cases (similar to the previous fix for problems with small negative arguments). Tested powerpc32, and also tested on mips64 that this does not require ulps regeneration for the ldbl-128 case. * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r): Return -__logl (x) for small positive arguments without evaluating a polynomial. --- ChangeLog | 7 +++++++ NEWS | 2 +- sysdeps/ieee754/ldbl-128/e_lgammal_r.c | 4 +++- 3 files changed, 11 insertions(+), 2 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 1984691a78..8bdea17179 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2014-01-06 Joseph Myers + + [BZ #16400] + * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r): + Return -__logl (x) for small positive arguments without evaluating + a polynomial. + 2014-01-06 Mike Frysinger * sysdeps/unix/sysv/linux/sys/ptrace.h (ptrace_peeksiginfo_args): diff --git a/NEWS b/NEWS index e6c5020a07..ab3b882631 100644 --- a/NEWS +++ b/NEWS @@ -24,7 +24,7 @@ Version 2.19 16112, 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, 16384, - 16385, 16386, 16390. + 16385, 16386, 16390, 16400. * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/ieee754/ldbl-128/e_lgammal_r.c b/sysdeps/ieee754/ldbl-128/e_lgammal_r.c index 23ab9b9a43..1961355a73 100644 --- a/sysdeps/ieee754/ldbl-128/e_lgammal_r.c +++ b/sysdeps/ieee754/ldbl-128/e_lgammal_r.c @@ -805,7 +805,9 @@ __ieee754_lgammal_r (long double x, int *signgamp) { case 0: /* log gamma (x + 1) = log(x) + log gamma(x) */ - if (x <= 0.125) + if (x < 0x1p-120L) + return -__logl (x); + else if (x <= 0.125) { p = x * neval (x, RN1, NRN1) / deval (x, RD1, NRD1); } -- cgit v1.2.3 From 93a45ff1ca6d459618bb0cf93580c4b2809a4b61 Mon Sep 17 00:00:00 2001 From: Andreas Krebbel Date: Tue, 7 Jan 2014 09:36:31 +0100 Subject: S/390: Make jmp_buf extendible. --- ChangeLog | 44 ++++++++ Versions.def | 1 + nptl/sysdeps/unix/sysv/linux/s390/Versions | 5 + nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c | 63 ++++++++++++ sysdeps/s390/Makefile | 5 + sysdeps/s390/Versions | 11 ++ sysdeps/s390/__longjmp.c | 31 ++++++ sysdeps/s390/bits/setjmp.h | 4 + sysdeps/s390/longjmp.c | 64 ++++++++++++ sysdeps/s390/rtld-__longjmp.c | 19 ++++ sysdeps/s390/rtld-setjmp.S | 20 ++++ sysdeps/s390/s390-32/__longjmp-common.c | 68 +++++++++++++ sysdeps/s390/s390-32/__longjmp.c | 68 ------------- sysdeps/s390/s390-32/setjmp-common.S | 84 ++++++++++++++++ sysdeps/s390/s390-32/setjmp.S | 80 --------------- sysdeps/s390/s390-64/__longjmp-common.c | 74 ++++++++++++++ sysdeps/s390/s390-64/__longjmp.c | 74 -------------- sysdeps/s390/s390-64/setjmp-common.S | 79 +++++++++++++++ sysdeps/s390/s390-64/setjmp.S | 75 -------------- sysdeps/s390/setjmp.S | 64 ++++++++++++ sysdeps/s390/sigjmp.c | 34 +++++++ sysdeps/s390/v1-longjmp.c | 57 +++++++++++ sysdeps/s390/v1-setjmp.h | 111 +++++++++++++++++++++ sysdeps/s390/v1-sigjmp.c | 44 ++++++++ sysdeps/unix/sysv/linux/s390/Makefile | 6 ++ sysdeps/unix/sysv/linux/s390/Versions | 3 + sysdeps/unix/sysv/linux/s390/longjmp_chk.c | 44 ++++++++ .../unix/sysv/linux/s390/s390-32/____longjmp_chk.c | 24 ++++- .../unix/sysv/linux/s390/s390-32/nptl/libc.abilist | 10 ++ .../linux/s390/s390-32/nptl/libpthread.abilist | 4 + .../unix/sysv/linux/s390/s390-64/____longjmp_chk.c | 25 ++++- .../unix/sysv/linux/s390/s390-64/nptl/libc.abilist | 10 ++ .../linux/s390/s390-64/nptl/libpthread.abilist | 4 + sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c | 35 +++++++ 34 files changed, 1041 insertions(+), 303 deletions(-) create mode 100644 nptl/sysdeps/unix/sysv/linux/s390/Versions create mode 100644 nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c create mode 100644 sysdeps/s390/Makefile create mode 100644 sysdeps/s390/__longjmp.c create mode 100644 sysdeps/s390/longjmp.c create mode 100644 sysdeps/s390/rtld-__longjmp.c create mode 100644 sysdeps/s390/rtld-setjmp.S create mode 100644 sysdeps/s390/s390-32/__longjmp-common.c delete mode 100644 sysdeps/s390/s390-32/__longjmp.c create mode 100644 sysdeps/s390/s390-32/setjmp-common.S delete mode 100644 sysdeps/s390/s390-32/setjmp.S create mode 100644 sysdeps/s390/s390-64/__longjmp-common.c delete mode 100644 sysdeps/s390/s390-64/__longjmp.c create mode 100644 sysdeps/s390/s390-64/setjmp-common.S delete mode 100644 sysdeps/s390/s390-64/setjmp.S create mode 100644 sysdeps/s390/setjmp.S create mode 100644 sysdeps/s390/sigjmp.c create mode 100644 sysdeps/s390/v1-longjmp.c create mode 100644 sysdeps/s390/v1-setjmp.h create mode 100644 sysdeps/s390/v1-sigjmp.c create mode 100644 sysdeps/unix/sysv/linux/s390/longjmp_chk.c create mode 100644 sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 8bdea17179..d6c0ddb464 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,47 @@ +2014-01-07 Andreas Krebbel + + * Versions.def: Add GLIBC_2.19 for libpthread. + * nptl/sysdeps/unix/sysv/linux/s390/Versions: Add longjmp and + siglongjmp for libpthread with GLIBC_2.19 symver. + * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: New file. + * sysdeps/s390/Makefile: Build v1-longjmp.c and v1-sigjmp.c. + * sysdeps/s390/Versions: New GLIBC_2.19 and GLIBC_PRIVATE symbols. + * sysdeps/s390/__longjmp.c: New file. + * sysdeps/s390/bits/setjmp.h: Add new fields to __s390_jmp_buf. + * sysdeps/s390/longjmp.c: New file. + * sysdeps/s390/setjmp.S: New file. + * sysdeps/s390/sigjmp.S: New file. + * sysdeps/s390/v1-longjmp.c: New file. + * sysdeps/s390/v1-setjmp.h: New file. + * sysdeps/s390/v1-sigjmp.c: New file. + * sysdeps/unix/sysv/linux/s390/Makefile: Build __longjmp_chk. + * sysdeps/unix/sysv/linux/s390/Versions: Add __longjmp_chk with + GLIBC_2.19 version. + * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: New file. + * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c: Provide + versioned symbols for ____longjmp_chk. + * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c: + Likewise. + * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: + Regenerate. + * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist: + Regenerate. + * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: + Regenerate. + * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist: + Regenerate. + * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: New file. + * sysdeps/s390/s390-32/__longjmp.c: Rename to ... + * sysdeps/s390/s390-32/__longjmp-common.c: ... this. + * sysdeps/s390/s390-32/setjmp.S: Rename and adjust to ... + * sysdeps/s390/s390-32/setjmp-common.S: ... this. + * sysdeps/s390/s390-64/__longjmp.c: Rename to ... + * sysdeps/s390/s390-64/__longjmp-common.c: ... this. + * sysdeps/s390/s390-64/setjmp.S: Rename and adjust to ... + * sysdeps/s390/s390-64/setjmp-common.S: ... this. + * sysdeps/s390/rtld-__longjmp.c: New file. + * sysdeps/s390/rtld-setjmp.S: New file. + 2014-01-06 Joseph Myers [BZ #16400] diff --git a/Versions.def b/Versions.def index d834b10479..759c7542bf 100644 --- a/Versions.def +++ b/Versions.def @@ -106,6 +106,7 @@ libpthread { GLIBC_2.11 GLIBC_2.12 GLIBC_2.18 + GLIBC_2.19 GLIBC_PRIVATE } libresolv { diff --git a/nptl/sysdeps/unix/sysv/linux/s390/Versions b/nptl/sysdeps/unix/sysv/linux/s390/Versions new file mode 100644 index 0000000000..58632f467a --- /dev/null +++ b/nptl/sysdeps/unix/sysv/linux/s390/Versions @@ -0,0 +1,5 @@ +libpthread { + GLIBC_2.19 { + longjmp; siglongjmp; + } +} diff --git a/nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c b/nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c new file mode 100644 index 0000000000..801432cccb --- /dev/null +++ b/nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c @@ -0,0 +1,63 @@ +/* Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . + + This is a copy of pthread/pt-longjmp.c made for extending the + jmpbuf structure on System z. */ + +#include +#include +#include +#include "pthreadP.h" +#include +#if defined SHARED && SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_19) + +/* The __v1 version prototypes are declared in v1-setjmp.h which + cannot be included together with setjmp.h. So we put the + prototypes here manually. */ +extern void __v1__libc_siglongjmp (sigjmp_buf env, int val) + __attribute__ ((noreturn)); +extern void __v1__libc_longjmp (sigjmp_buf env, int val) + __attribute__ ((noreturn)); + +void __v1_siglongjmp (sigjmp_buf env, int val) +{ + __v1__libc_siglongjmp (env, val); +} + +void __v1_longjmp (jmp_buf env, int val) +{ + __v1__libc_longjmp (env, val); +} + +compat_symbol (libpthread, __v1_longjmp, longjmp, GLIBC_2_0); +compat_symbol (libpthread, __v1_siglongjmp, siglongjmp, GLIBC_2_0); +#endif /* defined SHARED && SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_19)) */ + +void +__v2_longjmp (jmp_buf env, int val) +{ + __libc_longjmp (env, val); +} + +void +__v2_siglongjmp (jmp_buf env, int val) +{ + __libc_siglongjmp (env, val); +} + +versioned_symbol (libpthread, __v2_longjmp, longjmp, GLIBC_2_19); +versioned_symbol (libpthread, __v2_siglongjmp, siglongjmp, GLIBC_2_19); diff --git a/sysdeps/s390/Makefile b/sysdeps/s390/Makefile new file mode 100644 index 0000000000..fdc6ee50dc --- /dev/null +++ b/sysdeps/s390/Makefile @@ -0,0 +1,5 @@ +ifeq ($(subdir),setjmp) +ifeq (yes,$(build-shared)) +sysdep_routines += v1-longjmp v1-sigjmp +endif +endif diff --git a/sysdeps/s390/Versions b/sysdeps/s390/Versions index baf9842eeb..156abc79f4 100644 --- a/sysdeps/s390/Versions +++ b/sysdeps/s390/Versions @@ -1,3 +1,14 @@ +libc { + GLIBC_2.19 { + setjmp; _setjmp; __setjmp; __sigsetjmp; + longjmp; _longjmp; siglongjmp; + } + GLIBC_PRIVATE { + __v1__libc_longjmp; __v1__libc_siglongjmp; + __v2__libc_longjmp; __v2__libc_siglongjmp; + } +} + ld { GLIBC_2.3 { # runtime interface to TLS diff --git a/sysdeps/s390/__longjmp.c b/sysdeps/s390/__longjmp.c new file mode 100644 index 0000000000..e4acd31c4a --- /dev/null +++ b/sysdeps/s390/__longjmp.c @@ -0,0 +1,31 @@ +/* Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include + +#define __longjmp __v2__longjmp +#include "__longjmp-common.c" +#undef __longjmp +strong_alias (__v2__longjmp, __longjmp) + +#if defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19) +# undef __longjmp +# define __V1_JMPBUF +# define __longjmp __v1__longjmp +# include "__longjmp-common.c" +#endif /* if defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19) */ diff --git a/sysdeps/s390/bits/setjmp.h b/sysdeps/s390/bits/setjmp.h index 0071a9dce5..25eaf10fdf 100644 --- a/sysdeps/s390/bits/setjmp.h +++ b/sysdeps/s390/bits/setjmp.h @@ -40,6 +40,10 @@ typedef struct __s390_jmp_buf /* We save fpu registers 4 and 6. */ long __fpregs[4]; # endif +#ifndef __V1_JMPBUF + unsigned long __flags; + char __reserved[128]; +#endif } __jmp_buf[1]; #endif diff --git a/sysdeps/s390/longjmp.c b/sysdeps/s390/longjmp.c new file mode 100644 index 0000000000..c758d149a4 --- /dev/null +++ b/sysdeps/s390/longjmp.c @@ -0,0 +1,64 @@ +/* Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . + + Versioned copy of sysdeps/generic/longjmp.c modified for extended + jmpbuf. */ + +#include +#include +#include +#include + +extern void __v2__longjmp (__jmp_buf __env, int __val) + __attribute__ ((__noreturn__)); +extern void __v2__libc_longjmp (sigjmp_buf env, int val) + __attribute__ ((__noreturn__)); +libc_hidden_proto (__v2__libc_longjmp) + +/* Set the signal mask to the one specified in ENV, and jump + to the position specified in ENV, causing the setjmp + call there to return VAL, or 1 if VAL is 0. */ +void +__v2__libc_siglongjmp (sigjmp_buf env, int val) +{ + /* Perform any cleanups needed by the frames being unwound. */ + _longjmp_unwind (env, val); + + if (env[0].__mask_was_saved) + /* Restore the saved signal mask. */ + (void) __sigprocmask (SIG_SETMASK, &env[0].__saved_mask, + (sigset_t *) NULL); + + /* Call the machine-dependent function to restore machine state. */ + __v2__longjmp (env[0].__jmpbuf, val ?: 1); +} + +#ifndef __v2__longjmp +strong_alias (__v2__libc_siglongjmp, __v2__libc_longjmp) +libc_hidden_def (__v2__libc_longjmp) +weak_alias (__v2__libc_siglongjmp, __v2_longjmp) +weak_alias (__v2__libc_siglongjmp, __v2longjmp) +weak_alias (__v2__libc_siglongjmp, __v2siglongjmp) + +/* These will be used by libpthread only. */ +versioned_symbol (libc, __v2__libc_longjmp, __libc_longjmp, GLIBC_PRIVATE); +versioned_symbol (libc, __v2__libc_siglongjmp, __libc_siglongjmp, GLIBC_PRIVATE); + +versioned_symbol (libc, __v2_longjmp, _longjmp, GLIBC_2_19); +versioned_symbol (libc, __v2longjmp, longjmp, GLIBC_2_19); +versioned_symbol (libc, __v2siglongjmp, siglongjmp, GLIBC_2_19); +#endif /* ifndef __v2__longjmp */ diff --git a/sysdeps/s390/rtld-__longjmp.c b/sysdeps/s390/rtld-__longjmp.c new file mode 100644 index 0000000000..5e9f73981a --- /dev/null +++ b/sysdeps/s390/rtld-__longjmp.c @@ -0,0 +1,19 @@ +/* Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +/* Build a non-versioned object for rtld-*. */ +# include "__longjmp-common.c" diff --git a/sysdeps/s390/rtld-setjmp.S b/sysdeps/s390/rtld-setjmp.S new file mode 100644 index 0000000000..401101133b --- /dev/null +++ b/sysdeps/s390/rtld-setjmp.S @@ -0,0 +1,20 @@ +/* Extendible version of setjmp for System z + Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +/* Build a non-versioned object for rtld-*. */ +# include "setjmp-common.S" diff --git a/sysdeps/s390/s390-32/__longjmp-common.c b/sysdeps/s390/s390-32/__longjmp-common.c new file mode 100644 index 0000000000..f78ef656e5 --- /dev/null +++ b/sysdeps/s390/s390-32/__longjmp-common.c @@ -0,0 +1,68 @@ +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include +#include +#include +#include +#include + +/* Jump to the position specified by ENV, causing the + setjmp call there to return VAL, or 1 if VAL is 0. */ +attribute_hidden void +__longjmp (__jmp_buf env, int val) +{ +#ifdef PTR_DEMANGLE + uintptr_t guard = THREAD_GET_POINTER_GUARD (); +# ifdef CHECK_SP + CHECK_SP (env, guard); +# endif +#elif defined CHECK_SP + CHECK_SP (env, 0); +#endif + register int r2 __asm ("%r2") = val == 0 ? 1 : val; +#ifdef PTR_DEMANGLE + register uintptr_t r3 __asm ("%r3") = guard; + register void *r1 __asm ("%r1") = (void *) env; +#endif + /* Restore registers and jump back. */ + asm volatile ("ld %%f6,48(%1)\n\t" + "ld %%f4,40(%1)\n\t" +#ifdef PTR_DEMANGLE + "lm %%r6,%%r13,0(%1)\n\t" + "lm %%r4,%%r5,32(%1)\n\t" + "xr %%r4,%2\n\t" + "xr %%r5,%2\n\t" + "lr %%r15,%%r5\n\t" + "br %%r4" +#else + "lm %%r6,%%r15,0(%1)\n\t" + "br %%r14" +#endif + : : "r" (r2), +#ifdef PTR_DEMANGLE + "r" (r1), "r" (r3) +#else + "a" (env) +#endif + ); + + /* Avoid `volatile function does return' warnings. */ + for (;;); +} diff --git a/sysdeps/s390/s390-32/__longjmp.c b/sysdeps/s390/s390-32/__longjmp.c deleted file mode 100644 index 5d46e21923..0000000000 --- a/sysdeps/s390/s390-32/__longjmp.c +++ /dev/null @@ -1,68 +0,0 @@ -/* Copyright (C) 2000-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#include -#include -#include -#include -#include - -/* Jump to the position specified by ENV, causing the - setjmp call there to return VAL, or 1 if VAL is 0. */ -void -__longjmp (__jmp_buf env, int val) -{ -#ifdef PTR_DEMANGLE - uintptr_t guard = THREAD_GET_POINTER_GUARD (); -# ifdef CHECK_SP - CHECK_SP (env, guard); -# endif -#elif defined CHECK_SP - CHECK_SP (env, 0); -#endif - register int r2 __asm ("%r2") = val == 0 ? 1 : val; -#ifdef PTR_DEMANGLE - register uintptr_t r3 __asm ("%r3") = guard; - register void *r1 __asm ("%r1") = (void *) env; -#endif - /* Restore registers and jump back. */ - asm volatile ("ld %%f6,48(%1)\n\t" - "ld %%f4,40(%1)\n\t" -#ifdef PTR_DEMANGLE - "lm %%r6,%%r13,0(%1)\n\t" - "lm %%r4,%%r5,32(%1)\n\t" - "xr %%r4,%2\n\t" - "xr %%r5,%2\n\t" - "lr %%r15,%%r5\n\t" - "br %%r4" -#else - "lm %%r6,%%r15,0(%1)\n\t" - "br %%r14" -#endif - : : "r" (r2), -#ifdef PTR_DEMANGLE - "r" (r1), "r" (r3) -#else - "a" (env) -#endif - ); - - /* Avoid `volatile function does return' warnings. */ - for (;;); -} diff --git a/sysdeps/s390/s390-32/setjmp-common.S b/sysdeps/s390/s390-32/setjmp-common.S new file mode 100644 index 0000000000..d7bb720454 --- /dev/null +++ b/sysdeps/s390/s390-32/setjmp-common.S @@ -0,0 +1,84 @@ +/* setjmp for s390, ELF version. + Copyright (C) 2000-2014 Free Software Foundation, Inc. + Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#define _ASM +#define _SETJMP_H +#include + + /* We include the BSD entry points here as well but we make + them weak. */ +ENTRY (setjmp) + .weak C_SYMBOL_NAME (setjmp) + lhi %r3,1 /* second argument of one */ + j 0f /* branch relativ to __sigsetjmp */ +END (setjmp) + + /* Binary compatibility entry point. */ +ENTRY(_setjmp) + .weak C_SYMBOL_NAME (_setjmp) + lhi %r3,0 /* second argument of zero */ + j 0f /* branch relativ to __sigsetjmp */ +END (_setjmp) +libc_hidden_def (_setjmp) + +ENTRY(__setjmp) + lhi %r3,0 /* second argument of zero */ + j 0f /* branch relativ to __sigsetjmp */ +END (__setjmp) + +ENTRY(__sigsetjmp) +0: +#ifdef PTR_MANGLE + stm %r6,%r13,0(%r2) /* store registers in jmp_buf */ + lr %r4,%r14 + lr %r5,%r15 + PTR_MANGLE (%r4, %r1) + PTR_MANGLE2 (%r5, %r1) + stm %r4,%r5,32(%r2) +#else + stm %r6,%r15,0(%r2) /* store registers in jmp_buf */ +#endif +#ifndef __V1_JMPBUF + lhi %r4,0 + st %r4,56(%r2) /* Set __flags to 0. */ +#endif + std %f4,40(%r2) + std %f6,48(%r2) +#if defined NOT_IN_libc && defined IS_IN_rtld + /* In ld.so we never save the signal mask. */ + lhi %r2,0 + br %r14 +#elif defined PIC + /* We cannot use the PLT, because it requires that %r12 be set, but + we can't save and restore our caller's value. Instead, we do an + indirect jump through the GOT. */ + basr %r1,0 +0: al %r1,1f-0b(0,%r1) /* get address of global offset table */ + /* get address of __sigjmp_save from got */ + l %r1,__sigjmp_save@GOT12(0,%r1) + br %r1 +1: .long _GLOBAL_OFFSET_TABLE_ - 0b +#else + basr %r1,0 +0: l %r1,1f-0b(0,%r1) /* load address of __sigjmp_save */ + br %r1 /* tail-call __sigjmp_save */ +1: .long __sigjmp_save +#endif +END (__sigsetjmp) diff --git a/sysdeps/s390/s390-32/setjmp.S b/sysdeps/s390/s390-32/setjmp.S deleted file mode 100644 index b8a0296b02..0000000000 --- a/sysdeps/s390/s390-32/setjmp.S +++ /dev/null @@ -1,80 +0,0 @@ -/* setjmp for s390, ELF version. - Copyright (C) 2000-2014 Free Software Foundation, Inc. - Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#define _ASM -#define _SETJMP_H -#include - - /* We include the BSD entry points here as well but we make - them weak. */ -ENTRY (setjmp) - .weak C_SYMBOL_NAME (setjmp) - lhi %r3,1 /* second argument of one */ - j .Linternal_sigsetjmp /* branch relativ to __sigsetjmp */ -END (setjmp) - - /* Binary compatibility entry point. */ -ENTRY(_setjmp) - .weak C_SYMBOL_NAME (_setjmp) - lhi %r3,0 /* second argument of zero */ - j .Linternal_sigsetjmp /* branch relativ to __sigsetjmp */ -END (_setjmp) -libc_hidden_def (_setjmp) - -ENTRY(__setjmp) - lhi %r3,0 /* second argument of zero */ - j .Linternal_sigsetjmp /* branch relativ to __sigsetjmp */ -END (__setjmp) - -ENTRY(__sigsetjmp) -.Linternal_sigsetjmp: -#ifdef PTR_MANGLE - stm %r6,%r13,0(%r2) /* store registers in jmp_buf */ - lr %r4,%r14 - lr %r5,%r15 - PTR_MANGLE (%r4, %r1) - PTR_MANGLE2 (%r5, %r1) - stm %r4,%r5,32(%r2) -#else - stm %r6,%r15,0(%r2) /* store registers in jmp_buf */ -#endif - std %f4,40(%r2) - std %f6,48(%r2) -#if defined NOT_IN_libc && defined IS_IN_rtld - /* In ld.so we never save the signal mask. */ - lhi %r2,0 - br %r14 -#elif defined PIC - /* We cannot use the PLT, because it requires that %r12 be set, but - we can't save and restore our caller's value. Instead, we do an - indirect jump through the GOT. */ - basr %r1,0 -.L0: al %r1,.L1 - .L0(0,%r1) /* get address of global offset table */ - /* get address of __sigjmp_save from got */ - l %r1,__sigjmp_save@GOT12(0,%r1) - br %r1 -.L1: .long _GLOBAL_OFFSET_TABLE_ - .L0 -#else - basr %r1,0 -.L0: l %r1,.L1-.L0(0,%r1) /* load address of __sigjmp_save */ - br %r1 /* tail-call __sigjmp_save */ -.L1: .long __sigjmp_save -#endif -END (__sigsetjmp) diff --git a/sysdeps/s390/s390-64/__longjmp-common.c b/sysdeps/s390/s390-64/__longjmp-common.c new file mode 100644 index 0000000000..46cabb67bc --- /dev/null +++ b/sysdeps/s390/s390-64/__longjmp-common.c @@ -0,0 +1,74 @@ +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include +#include +#include +#include +#include + +/* Jump to the position specified by ENV, causing the + setjmp call there to return VAL, or 1 if VAL is 0. */ +attribute_hidden void +__longjmp (__jmp_buf env, int val) +{ +#ifdef PTR_DEMANGLE + uintptr_t guard = THREAD_GET_POINTER_GUARD (); +# ifdef CHECK_SP + CHECK_SP (env, guard); +# endif +#elif defined CHECK_SP + CHECK_SP (env, 0); +#endif + register long int r2 __asm ("%r2") = val == 0 ? 1 : val; +#ifdef PTR_DEMANGLE + register uintptr_t r3 __asm ("%r3") = guard; + register void *r1 __asm ("%r1") = (void *) env; +#endif + /* Restore registers and jump back. */ + asm volatile ("ld %%f8,80(%1)\n\t" + "ld %%f9,88(%1)\n\t" + "ld %%f10,96(%1)\n\t" + "ld %%f11,104(%1)\n\t" + "ld %%f12,112(%1)\n\t" + "ld %%f13,120(%1)\n\t" + "ld %%f14,128(%1)\n\t" + "ld %%f15,136(%1)\n\t" +#ifdef PTR_DEMANGLE + "lmg %%r6,%%r13,0(%1)\n\t" + "lmg %%r4,%%r5,64(%1)\n\t" + "xgr %%r4,%2\n\t" + "xgr %%r5,%2\n\t" + "lgr %%r15,%%r5\n\t" + "br %%r4" +#else + "lmg %%r6,%%r15,0(%1)\n\t" + "br %%r14" +#endif + : : "r" (r2), +#ifdef PTR_DEMANGLE + "r" (r1), "r" (r3) +#else + "a" (env) +#endif + ); + + /* Avoid `volatile function does return' warnings. */ + for (;;); +} diff --git a/sysdeps/s390/s390-64/__longjmp.c b/sysdeps/s390/s390-64/__longjmp.c deleted file mode 100644 index 168ebf562b..0000000000 --- a/sysdeps/s390/s390-64/__longjmp.c +++ /dev/null @@ -1,74 +0,0 @@ -/* Copyright (C) 2001-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#include -#include -#include -#include -#include - -/* Jump to the position specified by ENV, causing the - setjmp call there to return VAL, or 1 if VAL is 0. */ -void -__longjmp (__jmp_buf env, int val) -{ -#ifdef PTR_DEMANGLE - uintptr_t guard = THREAD_GET_POINTER_GUARD (); -# ifdef CHECK_SP - CHECK_SP (env, guard); -# endif -#elif defined CHECK_SP - CHECK_SP (env, 0); -#endif - register long int r2 __asm ("%r2") = val == 0 ? 1 : val; -#ifdef PTR_DEMANGLE - register uintptr_t r3 __asm ("%r3") = guard; - register void *r1 __asm ("%r1") = (void *) env; -#endif - /* Restore registers and jump back. */ - asm volatile ("ld %%f8,80(%1)\n\t" - "ld %%f9,88(%1)\n\t" - "ld %%f10,96(%1)\n\t" - "ld %%f11,104(%1)\n\t" - "ld %%f12,112(%1)\n\t" - "ld %%f13,120(%1)\n\t" - "ld %%f14,128(%1)\n\t" - "ld %%f15,136(%1)\n\t" -#ifdef PTR_DEMANGLE - "lmg %%r6,%%r13,0(%1)\n\t" - "lmg %%r4,%%r5,64(%1)\n\t" - "xgr %%r4,%2\n\t" - "xgr %%r5,%2\n\t" - "lgr %%r15,%%r5\n\t" - "br %%r4" -#else - "lmg %%r6,%%r15,0(%1)\n\t" - "br %%r14" -#endif - : : "r" (r2), -#ifdef PTR_DEMANGLE - "r" (r1), "r" (r3) -#else - "a" (env) -#endif - ); - - /* Avoid `volatile function does return' warnings. */ - for (;;); -} diff --git a/sysdeps/s390/s390-64/setjmp-common.S b/sysdeps/s390/s390-64/setjmp-common.S new file mode 100644 index 0000000000..9cdcae45c5 --- /dev/null +++ b/sysdeps/s390/s390-64/setjmp-common.S @@ -0,0 +1,79 @@ +/* setjmp for 64 bit S/390, ELF version. + Copyright (C) 2001-2014 Free Software Foundation, Inc. + Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#define _ASM +#define _SETJMP_H +#include + + /* We include the BSD entry points here as well but we make + them weak. */ +ENTRY (setjmp) + .weak C_SYMBOL_NAME (setjmp) + lghi %r3,1 /* Second argument of one. */ + j 0f /* Branch relativ to __sigsetjmp. */ +END (setjmp) + + /* Binary compatibility entry point. */ +ENTRY(_setjmp) + .weak C_SYMBOL_NAME (_setjmp) + slgr %r3,%r3 /* Second argument of zero. */ + j 0f /* Branch relativ to __sigsetjmp. */ +END (_setjmp) +libc_hidden_def (_setjmp) + +ENTRY(__setjmp) + slgr %r3,%r3 /* Second argument of zero. */ + j 0f /* Branch relativ to __sigsetjmp. */ +END (__setjmp) + +ENTRY(__sigsetjmp) +0: +#ifdef PTR_MANGLE + stmg %r6,%r13,0(%r2) /* Store registers in jmp_buf. */ + lgr %r4,%r14 + lgr %r5,%r15 + PTR_MANGLE (%r4, %r1) + PTR_MANGLE2 (%r5, %r1) + stmg %r4,%r5,64(%r2) +#else + stmg %r6,%r15,0(%r2) /* Store registers in jmp_buf. */ +#endif +#ifndef __V1_JMPBUF + lghi %r4,0 + stg %r4,144(%r2) /* Set __flags to 0. */ +#endif + std %f8,80(%r2) + std %f9,88(%r2) + std %f10,96(%r2) + std %f11,104(%r2) + std %f12,112(%r2) + std %f13,120(%r2) + std %f14,128(%r2) + std %f15,136(%r2) +#if defined NOT_IN_libc && defined IS_IN_rtld + /* In ld.so we never save the signal mask. */ + lghi %r2,0 + br %r14 +#elif defined PIC + jg __sigjmp_save@PLT /* Branch to PLT of __sigsetjmp. */ +#else + jg __sigjmp_save +#endif +END (__sigsetjmp) diff --git a/sysdeps/s390/s390-64/setjmp.S b/sysdeps/s390/s390-64/setjmp.S deleted file mode 100644 index 5462dab277..0000000000 --- a/sysdeps/s390/s390-64/setjmp.S +++ /dev/null @@ -1,75 +0,0 @@ -/* setjmp for 64 bit S/390, ELF version. - Copyright (C) 2001-2014 Free Software Foundation, Inc. - Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#define _ASM -#define _SETJMP_H -#include - - /* We include the BSD entry points here as well but we make - them weak. */ -ENTRY (setjmp) - .weak C_SYMBOL_NAME (setjmp) - lghi %r3,1 /* Second argument of one. */ - j .Linternal_sigsetjmp /* Branch relativ to __sigsetjmp. */ -END (setjmp) - - /* Binary compatibility entry point. */ -ENTRY(_setjmp) - .weak C_SYMBOL_NAME (_setjmp) - slgr %r3,%r3 /* Second argument of zero. */ - j .Linternal_sigsetjmp /* Branch relativ to __sigsetjmp. */ -END (setjmp) -libc_hidden_def (_setjmp) - -ENTRY(__setjmp) - slgr %r3,%r3 /* Second argument of zero. */ - j .Linternal_sigsetjmp /* Branch relativ to __sigsetjmp. */ -END (setjmp) - -ENTRY(__sigsetjmp) -.Linternal_sigsetjmp: -#ifdef PTR_MANGLE - stmg %r6,%r13,0(%r2) /* Store registers in jmp_buf. */ - lgr %r4,%r14 - lgr %r5,%r15 - PTR_MANGLE (%r4, %r1) - PTR_MANGLE2 (%r5, %r1) - stmg %r4,%r5,64(%r2) -#else - stmg %r6,%r15,0(%r2) /* Store registers in jmp_buf. */ -#endif - std %f8,80(%r2) - std %f9,88(%r2) - std %f10,96(%r2) - std %f11,104(%r2) - std %f12,112(%r2) - std %f13,120(%r2) - std %f14,128(%r2) - std %f15,136(%r2) -#if defined NOT_IN_libc && defined IS_IN_rtld - /* In ld.so we never save the signal mask. */ - lghi %r2,0 - br %r14 -#elif defined PIC - jg __sigjmp_save@PLT /* Branch to PLT of __sigsetjmp. */ -#else - jg __sigjmp_save -#endif -END (__sigsetjmp) diff --git a/sysdeps/s390/setjmp.S b/sysdeps/s390/setjmp.S new file mode 100644 index 0000000000..2ec621a2a0 --- /dev/null +++ b/sysdeps/s390/setjmp.S @@ -0,0 +1,64 @@ +/* Extendible version of setjmp for System z + Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include + +versioned_symbol (libc, __v2setjmp, setjmp, GLIBC_2_19) +versioned_symbol (libc, __v2_setjmp, _setjmp, GLIBC_2_19) +versioned_symbol (libc, __v2__setjmp, __setjmp, GLIBC_2_19) +versioned_symbol (libc, __v2__sigsetjmp, __sigsetjmp, GLIBC_2_19) +#define setjmp __v2setjmp +#define _setjmp __v2_setjmp +#define __setjmp __v2__setjmp +#define __sigsetjmp __v2__sigsetjmp +#define __sigjmp_save __v2__sigjmp_save + +#include "setjmp-common.S" + +#undef setjmp +#undef _setjmp +#undef __setjmp +#undef __sigsetjmp +#undef __sigjmp_save +libc_hidden_ver (__v2setjmp, setjmp) +libc_hidden_ver (__v2_setjmp, _setjmp) +libc_hidden_ver (__v2__setjmp, __setjmp) +libc_hidden_ver (__v2__sigsetjmp, __sigsetjmp) + +#if defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19) +compat_symbol (libc, __v1setjmp, setjmp, GLIBC_2_0) +compat_symbol (libc, __v1_setjmp, _setjmp, GLIBC_2_0) +compat_symbol (libc, __v1__setjmp, __setjmp, GLIBC_2_0) +compat_symbol (libc, __v1__sigsetjmp, __sigsetjmp, GLIBC_2_0) +# define setjmp __v1setjmp +# define _setjmp __v1_setjmp +# define __setjmp __v1__setjmp +# define __sigsetjmp __v1__sigsetjmp +# define __sigjmp_save __v1__sigjmp_save +# define __V1_JMPBUF + +# include "setjmp-common.S" + +# undef setjmp +# undef _setjmp +# undef __setjmp +# undef __sigsetjmp +# undef __sigjmp_save + +#endif /* if defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19) */ diff --git a/sysdeps/s390/sigjmp.c b/sysdeps/s390/sigjmp.c new file mode 100644 index 0000000000..f7b5a6f6c4 --- /dev/null +++ b/sysdeps/s390/sigjmp.c @@ -0,0 +1,34 @@ +/* Copyright (C) 1992-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include +#include + +/* This function is called by the `sigsetjmp' macro + before doing a `__setjmp' on ENV[0].__jmpbuf. + Always return zero. */ + +int +__v2__sigjmp_save (sigjmp_buf env, int savemask) +{ + env[0].__mask_was_saved = (savemask && + __sigprocmask (SIG_BLOCK, (sigset_t *) NULL, + &env[0].__saved_mask) == 0); + + return 0; +} diff --git a/sysdeps/s390/v1-longjmp.c b/sysdeps/s390/v1-longjmp.c new file mode 100644 index 0000000000..82252c901e --- /dev/null +++ b/sysdeps/s390/v1-longjmp.c @@ -0,0 +1,57 @@ +/* Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . + + Versioned copy of sysdeps/generic/longjmp.c modified for extended + jmpbuf. */ + +#include +#include +#include +#include "v1-setjmp.h" + +#if !defined NOT_INT_libc && defined SHARED +# if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19) + +void +__v1__libc_siglongjmp (__v1__sigjmp_buf env, int val) +{ + /* Perform any cleanups needed by the frames being unwound. */ + _longjmp_unwind (env, val); + + if (env[0].__mask_was_saved) + /* Restore the saved signal mask. */ + (void) __sigprocmask (SIG_SETMASK, &env[0].__saved_mask, + (sigset_t *) NULL); + + /* Call the machine-dependent function to restore machine state. */ + __v1__longjmp (env[0].__jmpbuf, val ?: 1); +} + +# ifndef __v1__longjmp +strong_alias (__v1__libc_siglongjmp, __v1__libc_longjmp) +libc_hidden_def (__v1__libc_longjmp) +weak_alias (__v1__libc_siglongjmp, __v1_longjmp) +weak_alias (__v1__libc_siglongjmp, __v1longjmp) +weak_alias (__v1__libc_siglongjmp, __v1siglongjmp) + +compat_symbol (libc, __v1_longjmp, _longjmp, GLIBC_2_0); +compat_symbol (libc, __v1longjmp, longjmp, GLIBC_2_0); +compat_symbol (libc, __v1siglongjmp, siglongjmp, GLIBC_2_0); + +# endif /* ifndef __v1__longjmp */ +# endif /* SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19) */ +#endif /* if !defined NOT_INT_libc && defined SHARED */ diff --git a/sysdeps/s390/v1-setjmp.h b/sysdeps/s390/v1-setjmp.h new file mode 100644 index 0000000000..a4a6b7640f --- /dev/null +++ b/sysdeps/s390/v1-setjmp.h @@ -0,0 +1,111 @@ +/* Copyright (C) 1991-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +/* + * ISO C99 Standard: 7.13 Nonlocal jumps + */ + +#ifndef _V1_SETJMP_H +#define _V1_SETJMP_H 1 + +#include + +__BEGIN_DECLS + +#define __V1_JMPBUF +#define _SETJMP_H +#include /* Get `__jmp_buf'. */ + +#ifndef _ASM + +#include /* Get `__sigset_t'. */ + + +/* Calling environment, plus possibly a saved signal mask. */ +typedef struct __v1__jmp_buf_tag + { + /* NOTE: The machine-dependent definitions of `__sigsetjmp' + assume that a `jmp_buf' begins with a `__jmp_buf' and that + `__mask_was_saved' follows it. Do not move these members + or add others before it. */ + __jmp_buf __jmpbuf; /* Calling environment. */ + int __mask_was_saved; /* Saved the signal mask? */ + __sigset_t __saved_mask; /* Saved signal mask. */ + } __v1__jmp_buf[1]; + + +/* Store the calling environment in ENV, also saving the signal mask. + Return 0. */ +extern int __v1setjmp (__v1__jmp_buf __env); + +/* Store the calling environment in ENV, also saving the + signal mask if SAVEMASK is nonzero. Return 0. + This is the internal name for `sigsetjmp'. */ +extern int __v1__sigsetjmp (struct __v1__jmp_buf_tag __env[1], + int __savemask); + +/* Store the calling environment in ENV, not saving the signal mask. + Return 0. */ +extern int __v1_setjmp (struct __v1__jmp_buf_tag __env[1]); + +/* Jump to the environment saved in ENV, making the + `setjmp' call there return VAL, or 1 if VAL is 0. */ +extern void __v1longjmp (struct __v1__jmp_buf_tag __env[1], int __val) + __attribute__ ((__noreturn__)); + +/* Same. Usually `_longjmp' is used with `_setjmp', which does not save + the signal mask. But it is how ENV was saved that determines whether + `longjmp' restores the mask; `_longjmp' is just an alias. */ +extern void __v1_longjmp (struct __v1__jmp_buf_tag __env[1], int __val) + __attribute__ ((__noreturn__)); + +/* Use the same type for `jmp_buf' and `sigjmp_buf'. + The `__mask_was_saved' flag determines whether + or not `longjmp' will restore the signal mask. */ +typedef struct __v1__jmp_buf_tag __v1__sigjmp_buf[1]; + +/* Jump to the environment saved in ENV, making the + sigsetjmp call there return VAL, or 1 if VAL is 0. + Restore the signal mask if that sigsetjmp call saved it. + This is just an alias `longjmp'. */ +extern void __v1siglongjmp (__v1__sigjmp_buf __env, int __val) + __attribute__ ((__noreturn__)); + +/* Internal machine-dependent function to restore context sans signal mask. */ +extern void __v1__longjmp (__jmp_buf __env, int __val) + __attribute__ ((__noreturn__)); + +/* Internal function to possibly save the current mask of blocked signals + in ENV, and always set the flag saying whether or not it was saved. + This is used by the machine-dependent definition of `__sigsetjmp'. + Always returns zero, for convenience. */ +extern int __v1__sigjmp_save (__v1__jmp_buf __env, int __savemask); + +extern void _longjmp_unwind (__v1__jmp_buf env, int val); + +extern void __v1__libc_siglongjmp (__v1__sigjmp_buf env, int val) + __attribute__ ((noreturn)); + +extern void __v1__libc_longjmp (__v1__sigjmp_buf env, int val) + __attribute__ ((noreturn)); + +libc_hidden_proto (__v1__libc_longjmp) +libc_hidden_proto (__v1_setjmp) +libc_hidden_proto (__v1__sigsetjmp) +#endif /* !_ASM */ + +#endif /* ifndef _V1_SETJMP_H */ diff --git a/sysdeps/s390/v1-sigjmp.c b/sysdeps/s390/v1-sigjmp.c new file mode 100644 index 0000000000..b624d16851 --- /dev/null +++ b/sysdeps/s390/v1-sigjmp.c @@ -0,0 +1,44 @@ +/* Copyright (C) 1992-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . + + Copied from setjmp/sigjmp.c for extending jmp_buf. */ + +#include +#include + +#if !defined NOT_IN_libc && defined SHARED +# if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19) +# include +# include +# include + +/* This function is called by the `sigsetjmp' macro + before doing a `__setjmp' on ENV[0].__jmpbuf. + Always return zero. */ + +int +__v1__sigjmp_save (__v1__sigjmp_buf env, int savemask) +{ + env[0].__mask_was_saved = (savemask && + __sigprocmask (SIG_BLOCK, (sigset_t *) NULL, + &env[0].__saved_mask) == 0); + + return 0; +} + +# endif /* SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19) */ +#endif /* !NOT_IN_libc && SHARED */ diff --git a/sysdeps/unix/sysv/linux/s390/Makefile b/sysdeps/unix/sysv/linux/s390/Makefile index 45b1922338..f91179d0fc 100644 --- a/sysdeps/unix/sysv/linux/s390/Makefile +++ b/sysdeps/unix/sysv/linux/s390/Makefile @@ -16,3 +16,9 @@ endif ifeq ($(subdir),elf) sysdep_routines += dl-vdso endif + +ifeq ($(subdir),debug) +ifeq (yes,$(build-shared)) +sysdep_routines += v1-longjmp_chk +endif +endif diff --git a/sysdeps/unix/sysv/linux/s390/Versions b/sysdeps/unix/sysv/linux/s390/Versions index 627ff53529..95778235bf 100644 --- a/sysdeps/unix/sysv/linux/s390/Versions +++ b/sysdeps/unix/sysv/linux/s390/Versions @@ -1,4 +1,7 @@ libc { + GLIBC_2.19 { + __longjmp_chk; + } GLIBC_PRIVATE { __vdso_clock_gettime; __vdso_clock_getres; diff --git a/sysdeps/unix/sysv/linux/s390/longjmp_chk.c b/sysdeps/unix/sysv/linux/s390/longjmp_chk.c new file mode 100644 index 0000000000..10f542d61c --- /dev/null +++ b/sysdeps/unix/sysv/linux/s390/longjmp_chk.c @@ -0,0 +1,44 @@ +/* Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . + + This is a copy of debug/longjmp_chk.c extended for symbol + versioning. */ + +#include +#include + +/* This place is the only user of these functions. */ +extern void ____v2__longjmp_chk (__jmp_buf __env, int __val) + __attribute__ ((__noreturn__)); + +#if defined NOT_IN_libc + +# define __v2__longjmp ____longjmp_chk +# define __v2__libc_siglongjmp __longjmp_chk + +# include + +#else + +# define __v2__longjmp ____v2__longjmp_chk +# define __v2__libc_siglongjmp __v2__libc_siglongjmp_chk + +# include + +versioned_symbol (libc, __v2__libc_siglongjmp_chk, __longjmp_chk, GLIBC_2_19); + +#endif diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c b/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c index e74f335768..a1b7a6a1ae 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c +++ b/sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c @@ -26,8 +26,8 @@ #include #include #include - -#define __longjmp ____longjmp_chk +#include +#include #define CHECK_SP(env, guard) \ do \ @@ -51,4 +51,22 @@ } \ } while (0) -#include "__longjmp.c" + +#if defined NOT_IN_libc +/* Build a non-versioned object for rtld-*. */ +# define __longjmp ____longjmp_chk +# include "__longjmp-common.c" + +#else /* !NOT_IN_libc */ +# define __longjmp ____v2__longjmp_chk +# include "__longjmp-common.c" + +# if defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_11, GLIBC_2_19) +# undef __longjmp +# define __V1_JMPBUF +# define __longjmp ____v1__longjmp_chk +# include "__longjmp-common.c" +# undef __longjmp + +# endif +#endif /* !NOT_IN_libc */ diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist b/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist index b6256d5c25..18ec9944e1 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist @@ -1774,6 +1774,16 @@ GLIBC_2.17 GLIBC_2.18 GLIBC_2.18 A __cxa_thread_atexit_impl F +GLIBC_2.19 + GLIBC_2.19 A + __longjmp_chk F + __setjmp F + __sigsetjmp F + _longjmp F + _setjmp F + longjmp F + setjmp F + siglongjmp F GLIBC_2.2 GLIBC_2.2 A _IO_adjust_wcolumn F diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist b/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist index 865364e130..699de0160c 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist @@ -178,6 +178,10 @@ GLIBC_2.18 GLIBC_2.18 A pthread_getattr_default_np F pthread_setattr_default_np F +GLIBC_2.19 + GLIBC_2.19 A + longjmp F + siglongjmp F GLIBC_2.2 GLIBC_2.2 A __open64 F diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c b/sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c index a3b1375a0d..bc27b08728 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c +++ b/sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c @@ -26,8 +26,8 @@ #include #include #include - -#define __longjmp ____longjmp_chk +#include +#include #define CHECK_SP(env, guard) \ do \ @@ -51,4 +51,23 @@ } \ } while (0) -#include "__longjmp.c" + +#if defined NOT_IN_libc +/* Build a non-versioned object for rtld-*. */ +# define __longjmp ____longjmp_chk +# include "__longjmp-common.c" + +#else /* !NOT_IN_libc */ +# define __longjmp ____v2__longjmp_chk +# include "__longjmp-common.c" +# undef __longjmp + +# if defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_11, GLIBC_2_19) +# undef __longjmp +# define __V1_JMPBUF +# define __longjmp ____v1__longjmp_chk +# include "__longjmp-common.c" +# undef __longjmp + +# endif +#endif /* !NOT_IN_libc */ diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist b/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist index 265f66d905..05b5286058 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist @@ -95,6 +95,16 @@ GLIBC_2.17 GLIBC_2.18 GLIBC_2.18 A __cxa_thread_atexit_impl F +GLIBC_2.19 + GLIBC_2.19 A + __longjmp_chk F + __setjmp F + __sigsetjmp F + _longjmp F + _setjmp F + longjmp F + setjmp F + siglongjmp F GLIBC_2.2 GLIBC_2.2 A _Exit F diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist b/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist index 6613c09b06..51a8a7ff60 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist @@ -12,6 +12,10 @@ GLIBC_2.18 GLIBC_2.18 A pthread_getattr_default_np F pthread_setattr_default_np F +GLIBC_2.19 + GLIBC_2.19 A + longjmp F + siglongjmp F GLIBC_2.2 GLIBC_2.2 A _IO_flockfile F diff --git a/sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c b/sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c new file mode 100644 index 0000000000..bd80acfe66 --- /dev/null +++ b/sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c @@ -0,0 +1,35 @@ +/* Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . + + This went into a separate source file since we would otherwise be + needed to include two different versions of setjmp.h into the same + file. */ + +#include + +#if !defined NOT_IN_libc && defined SHARED +# if SHLIB_COMPAT (libc, GLIBC_2_11, GLIBC_2_19) + +# define __v1__longjmp ____v1__longjmp_chk +# define __v1__libc_siglongjmp __v1__libc_siglongjmp_chk + +# include + +compat_symbol (libc, __v1__libc_siglongjmp_chk, __longjmp_chk, GLIBC_2_11); + +# endif +#endif -- cgit v1.2.3 From 05d138ef07481b16f1aaee648798cc51182ec65e Mon Sep 17 00:00:00 2001 From: Andreas Krebbel Date: Tue, 7 Jan 2014 09:37:31 +0100 Subject: S/390: Make ucontext_t extendible. --- ChangeLog | 38 +++++++ sysdeps/s390/Makefile | 4 + sysdeps/s390/rtld-global-offsets.sym | 7 ++ sysdeps/unix/sysv/linux/s390/Versions | 1 + sysdeps/unix/sysv/linux/s390/getcontext.S | 38 +++++++ sysdeps/unix/sysv/linux/s390/rtld-getcontext.S | 19 ++++ .../sysv/linux/s390/s390-32/getcontext-common.S | 112 +++++++++++++++++++++ sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S | 75 -------------- .../unix/sysv/linux/s390/s390-32/nptl/libc.abilist | 1 + sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S | 12 ++- sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S | 27 +++-- .../unix/sysv/linux/s390/s390-32/sys/ucontext.h | 96 ++++++++++++++++++ .../unix/sysv/linux/s390/s390-32/ucontext_i.sym | 26 +++++ .../sysv/linux/s390/s390-64/getcontext-common.S | 79 +++++++++++++++ sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S | 75 -------------- .../unix/sysv/linux/s390/s390-64/nptl/libc.abilist | 1 + sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S | 19 ++-- .../unix/sysv/linux/s390/s390-64/sys/ucontext.h | 96 ++++++++++++++++++ .../unix/sysv/linux/s390/s390-64/ucontext_i.sym | 25 +++++ sysdeps/unix/sysv/linux/s390/sys/ucontext.h | 87 ---------------- sysdeps/unix/sysv/linux/s390/ucontext_i.sym | 25 ----- 21 files changed, 587 insertions(+), 276 deletions(-) create mode 100644 sysdeps/s390/rtld-global-offsets.sym create mode 100644 sysdeps/unix/sysv/linux/s390/getcontext.S create mode 100644 sysdeps/unix/sysv/linux/s390/rtld-getcontext.S create mode 100644 sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S delete mode 100644 sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S create mode 100644 sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h create mode 100644 sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym create mode 100644 sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S delete mode 100644 sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S create mode 100644 sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h create mode 100644 sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym delete mode 100644 sysdeps/unix/sysv/linux/s390/sys/ucontext.h delete mode 100644 sysdeps/unix/sysv/linux/s390/ucontext_i.sym (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index d6c0ddb464..a8b62e0a0e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,41 @@ +2014-01-07 Andreas Krebbel + + * sysdeps/s390/Makefile: Build rtld-global-offsets.sym. + * sysdeps/s390/rtld-global-offsets.sym: New file. + * sysdeps/unix/sysv/linux/s390/Versions: Add getcontext as new + GLIBC_2.19 symbol. + * sysdeps/unix/sysv/linux/s390/getcontext.S: New file. + * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Rename to ... + * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S: + ... this. + * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Rename to ... + * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S: + ... this. + * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: + Regenerate. + * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: + Regenerate. + * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Restore upper + halfs of GPRs for high_gprs contexts. + * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Save and + restore upper halfs of GPRs for high_gprs contexts. Copy uc_flags + field. + * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Copy + uc_flags field. + * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Split into 32 and + 64 bit versions: + * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Add field + for high GPRs (uc_high_gprs) and for future extensions + (__reserved). + * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Add field + for future extensions (__reserved). + * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Split into 32 and + 64 bit versions: + * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym: Add + SC_HIGHGPRS offset definition. + * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym: New file. + * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: New file. + 2014-01-07 Andreas Krebbel * Versions.def: Add GLIBC_2.19 for libpthread. diff --git a/sysdeps/s390/Makefile b/sysdeps/s390/Makefile index fdc6ee50dc..42978dc8b2 100644 --- a/sysdeps/s390/Makefile +++ b/sysdeps/s390/Makefile @@ -3,3 +3,7 @@ ifeq (yes,$(build-shared)) sysdep_routines += v1-longjmp v1-sigjmp endif endif + +ifeq ($(subdir),csu) +gen-as-const-headers += rtld-global-offsets.sym +endif diff --git a/sysdeps/s390/rtld-global-offsets.sym b/sysdeps/s390/rtld-global-offsets.sym new file mode 100644 index 0000000000..ff4e97f2a6 --- /dev/null +++ b/sysdeps/s390/rtld-global-offsets.sym @@ -0,0 +1,7 @@ +#define SHARED 1 + +#include + +#define rtld_global_ro_offsetof(mem) offsetof (struct rtld_global_ro, mem) + +RTLD_GLOBAL_RO_DL_HWCAP_OFFSET rtld_global_ro_offsetof (_dl_hwcap) diff --git a/sysdeps/unix/sysv/linux/s390/Versions b/sysdeps/unix/sysv/linux/s390/Versions index 95778235bf..f71a6bd2c3 100644 --- a/sysdeps/unix/sysv/linux/s390/Versions +++ b/sysdeps/unix/sysv/linux/s390/Versions @@ -1,6 +1,7 @@ libc { GLIBC_2.19 { __longjmp_chk; + getcontext; } GLIBC_PRIVATE { __vdso_clock_gettime; diff --git a/sysdeps/unix/sysv/linux/s390/getcontext.S b/sysdeps/unix/sysv/linux/s390/getcontext.S new file mode 100644 index 0000000000..5edbf95ccb --- /dev/null +++ b/sysdeps/unix/sysv/linux/s390/getcontext.S @@ -0,0 +1,38 @@ +/* Extendible version of getcontext for System z + Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include + +versioned_symbol (libc, __v2getcontext, getcontext, GLIBC_2_19) +#define __getcontext __v2getcontext + +#include "getcontext-common.S" + +#undef __getcontext + +libc_hidden_ver (__v2getcontext, getcontext) + +#if defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_19) +# define __V1_UCONTEXT +compat_symbol (libc, __v1getcontext, getcontext, GLIBC_2_1) +# define __getcontext __v1getcontext +# include "getcontext-common.S" +# undef __getcontext + +#endif diff --git a/sysdeps/unix/sysv/linux/s390/rtld-getcontext.S b/sysdeps/unix/sysv/linux/s390/rtld-getcontext.S new file mode 100644 index 0000000000..653f2b656f --- /dev/null +++ b/sysdeps/unix/sysv/linux/s390/rtld-getcontext.S @@ -0,0 +1,19 @@ +/* Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +/* Build a non-versioned object for rtld-*. */ +#include "getcontext-common.S" diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S b/sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S new file mode 100644 index 0000000000..4992030239 --- /dev/null +++ b/sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S @@ -0,0 +1,112 @@ +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include + +#include "rtld-global-offsets.h" +#include "ucontext_i.h" + +/* __getcontext (const ucontext_t *ucp) + + Saves the machine context in UCP such that when it is activated, + it appears as if __getcontext() returned again. + + This implementation is intended to be used for *synchronous* context + switches only. Therefore, it does not have to save anything + other than the PRESERVED state. */ + +ENTRY(__getcontext) + lr %r1,%r2 + + /* rt_sigprocmask (SIG_BLOCK, NULL, &sc->sc_mask, sigsetsize). */ + la %r2,SIG_BLOCK + slr %r3,%r3 + la %r4,SC_MASK(%r1) + lhi %r5,_NSIG8 + svc SYS_ify(rt_sigprocmask) + + /* Store fpu context. */ + stfpc SC_FPC(%r1) + std %f0,SC_FPRS(%r1) + std %f1,SC_FPRS+8(%r1) + std %f2,SC_FPRS+16(%r1) + std %f3,SC_FPRS+24(%r1) + std %f4,SC_FPRS+32(%r1) + std %f5,SC_FPRS+40(%r1) + std %f6,SC_FPRS+48(%r1) + std %f7,SC_FPRS+56(%r1) + std %f8,SC_FPRS+64(%r1) + std %f9,SC_FPRS+72(%r1) + std %f10,SC_FPRS+80(%r1) + std %f11,SC_FPRS+88(%r1) + std %f12,SC_FPRS+96(%r1) + std %f13,SC_FPRS+104(%r1) + std %f14,SC_FPRS+112(%r1) + std %f15,SC_FPRS+120(%r1) + + lhi %r2,0 +#ifndef __V1_UCONTEXT + bras %r3,0f +# ifdef IS_IN_rtld + /* Within ld.so we can do slightly better by addressing dl_hwap + relative to GOT start. */ +1: .long _GLOBAL_OFFSET_TABLE_ - 1b + .long C_SYMBOL_NAME(_rtld_global_ro)@GOTOFF +0: l %r4,0(%r3) + la %r4,0(%r3,%r4) + l %r5,4(%r3) + /* _dl_hwcap is 64 bit and we need the lower 32. */ + l %r3,RTLD_GLOBAL_RO_DL_HWCAP_OFFSET+4(%r4,%r5) +# elif PIC +1: .long _GLOBAL_OFFSET_TABLE_ - 1b + .long C_SYMBOL_NAME(_rtld_global_ro)@GOT +0: l %r4,0(%r3) + la %r4,0(%r3,%r4) /* GOT pointer -> r4 */ + l %r5,4(%r3) /* GOT offset -> r5 */ + l %r5,0(%r4,%r5) /* GOT slot -> r5 */ + l %r3,RTLD_GLOBAL_RO_DL_HWCAP_OFFSET+4(%r5) +# else + .long C_SYMBOL_NAME(_dl_hwcap) +0: l %r3,0(%r3) + l %r3,0(%r3) +# endif + tml %r3,512 /* HWCAP_S390_HIGH_GPRS */ + jz 2f + /* highgprs implies zarch so stmh/oill is ok here. */ + .machine "z900" + .machinemode "zarch_nohighgprs" + stmh %r0,%r15,SC_HIGHGPRS(%r1) + oill %r2,1 /* UCONTEXT_UC_FLAGS_HIGH_GPRS */ +#endif +2: st %r2,SC_FLGS(%r1) + + /* Set __getcontext return value to 0. */ + slr %r2,%r2 + + /* Store access registers. */ + stam %a0,%a15,SC_ACRS(%r1) + + /* Store general purpose registers. */ + stm %r0,%r15,SC_GPRS(%r1) + + /* Return. */ + br %r14 +END(__getcontext) + +weak_alias (__getcontext, getcontext) diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S b/sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S deleted file mode 100644 index ce2d99430b..0000000000 --- a/sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S +++ /dev/null @@ -1,75 +0,0 @@ -/* Copyright (C) 2001-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#include - -#include "ucontext_i.h" - -/* __getcontext (const ucontext_t *ucp) - - Saves the machine context in UCP such that when it is activated, - it appears as if __getcontext() returned again. - - This implementation is intended to be used for *synchronous* context - switches only. Therefore, it does not have to save anything - other than the PRESERVED state. */ - -ENTRY(__getcontext) - lr %r1,%r2 - - /* sigprocmask (SIG_BLOCK, NULL, &sc->sc_mask). */ - la %r2,SIG_BLOCK - slr %r3,%r3 - la %r4,SC_MASK(%r1) - lhi %r5,_NSIG8 - svc SYS_ify(rt_sigprocmask) - - /* Store fpu context. */ - stfpc SC_FPC(%r1) - std %f0,SC_FPRS(%r1) - std %f1,SC_FPRS+8(%r1) - std %f2,SC_FPRS+16(%r1) - std %f3,SC_FPRS+24(%r1) - std %f4,SC_FPRS+32(%r1) - std %f5,SC_FPRS+40(%r1) - std %f6,SC_FPRS+48(%r1) - std %f7,SC_FPRS+56(%r1) - std %f8,SC_FPRS+64(%r1) - std %f9,SC_FPRS+72(%r1) - std %f10,SC_FPRS+80(%r1) - std %f11,SC_FPRS+88(%r1) - std %f12,SC_FPRS+96(%r1) - std %f13,SC_FPRS+104(%r1) - std %f14,SC_FPRS+112(%r1) - std %f15,SC_FPRS+120(%r1) - - /* Set __getcontext return value to 0. */ - slr %r2,%r2 - - /* Store access registers. */ - stam %a0,%a15,SC_ACRS(%r1) - - /* Store general purpose registers. */ - stm %r0,%r15,SC_GPRS(%r1) - - /* Return. */ - br %r14 -END(__getcontext) - -weak_alias (__getcontext, getcontext) diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist b/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist index 18ec9944e1..03f2e83805 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist @@ -1781,6 +1781,7 @@ GLIBC_2.19 __sigsetjmp F _longjmp F _setjmp F + getcontext F longjmp F setjmp F siglongjmp F diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S b/sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S index 3008f8e4af..fbe8b77caf 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S @@ -33,7 +33,7 @@ ENTRY(__setcontext) lr %r1,%r2 - /* sigprocmask (SIG_SETMASK, &sc->sc_mask, NULL). */ + /* rt_sigprocmask (SIG_SETMASK, &sc->sc_mask, NULL, sigsetsize). */ la %r2,SIG_BLOCK la %r3,SC_MASK(%r1) slr %r4,%r4 @@ -62,8 +62,16 @@ ENTRY(__setcontext) /* Don't touch %a0, used for thread purposes. */ lam %a1,%a15,SC_ACRS+4(%r1) + /* Restore the upper halfs if available. */ + l %r2,SC_FLGS(%r1) + tml %r2,1 /* UCONTEXT_UC_FLAGS_HIGH_GPRS */ + jz 0f + .machine "z900" + .machinemode "zarch_nohighgprs" + lmh %r0,%r15,SC_HIGHGPRS(%r1) + /* Load general purpose registers. */ - lm %r0,%r15,SC_GPRS(%r1) +0: lm %r0,%r15,SC_GPRS(%r1) /* Return. */ br %r14 diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S b/sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S index 6c40c994ef..41ede4b7b2 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S +++ b/sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S @@ -33,6 +33,9 @@ other than the PRESERVED state. */ ENTRY(__swapcontext) + /* While not part of the ABI a system call never clobbers r0 + or r1. So keeping the values here while calling + rt_sigprocmask is ok. */ lr %r1,%r2 lr %r0,%r3 @@ -62,19 +65,31 @@ ENTRY(__swapcontext) std %f14,SC_FPRS+112(%r1) std %f15,SC_FPRS+120(%r1) - /* Set __swapcontext return value to 0. */ - slr %r2,%r2 - /* Store access registers. */ stam %a0,%a15,SC_ACRS(%r1) + /* Set __swapcontext return value to 0. */ + slr %r2,%r2 + /* Store general purpose registers. */ stm %r0,%r15,SC_GPRS(%r1) - /* sigprocmask (SIG_SETMASK, &sc->sc_mask, NULL). */ - la %r2,SIG_BLOCK + /* Copy uc_flags into the new ucontext_t. */ lr %r5,%r0 - la %r3,SC_MASK(%r5) + l %r2,SC_FLGS(%r5) + st %r2,SC_FLGS(%r1) + + /* Save/restore the upper halfs if necessary. */ + tml %r2,1 /* UCONTEXT_UC_FLAGS_HIGH_GPRS */ + jz 0f + .machine "z900" + .machinemode "zarch_nohighgprs" + stmh %r0,%r15,SC_HIGHGPRS(%r1) + lmh %r0,%r15,SC_HIGHGPRS(%r5) + + /* rt_sigprocmask (SIG_SETMASK, &sc->sc_mask, NULL, sigsetsize). */ +0: la %r2,SIG_BLOCK + la %r3,SC_MASK(%r5) slr %r4,%r4 lhi %r5,_NSIG8 svc SYS_ify(rt_sigprocmask) diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h b/sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h new file mode 100644 index 0000000000..90adc2d1fc --- /dev/null +++ b/sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h @@ -0,0 +1,96 @@ +/* Copyright (C) 2000-2013 Free Software Foundation, Inc. + Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#ifndef _SYS_UCONTEXT_H +#define _SYS_UCONTEXT_H 1 +/* Forward definition to avoid parse errors */ +struct ucontext; +typedef struct ucontext ucontext_t; +#include +#include + +/* We need the signal context definitions even if they are not used + included in . */ +#include + +/* Type for a program status word. */ +typedef struct +{ + unsigned long mask; + unsigned long addr; +} __attribute__ ((__aligned__(8))) __psw_t; + +/* Type for a general-purpose register. */ +typedef unsigned long greg_t; + +/* And the whole bunch of them. We should have used `struct s390_regs', + but to avoid name space pollution and since the tradition says that + the register set is an array, we make gregset_t a simple array + that has the same size as s390_regs. This is needed for the + elf_prstatus structure. */ +#if __WORDSIZE == 64 +# define NGREG 27 +#else +# define NGREG 36 +#endif +/* Must match kernels psw_t alignment. */ +typedef greg_t gregset_t[NGREG] __attribute__ ((__aligned__(8))); + +typedef union + { + double d; + float f; + } fpreg_t; + +/* Register set for the floating-point registers. */ +typedef struct + { + unsigned int fpc; + fpreg_t fprs[16]; + } fpregset_t; + +/* Bit is set if the uc_high_gprs field contains the upper halfs of + the 64 bit general purpose registers. */ +#define UCONTEXT_UC_FLAGS_HIGH_GPRS (1UL << 0) + +/* A new uc_flags constant will be defined when actually making use of + the reserved space: UCONTEXT_UCFLAGS_RESERVED (1UL << 1). */ + +/* Context to describe whole processor state. */ +typedef struct + { + __psw_t psw; + unsigned long gregs[16]; + unsigned int aregs[16]; + fpregset_t fpregs; + } mcontext_t; + +/* Userlevel context. */ +struct ucontext + { + unsigned long int uc_flags; + struct ucontext *uc_link; + stack_t uc_stack; + mcontext_t uc_mcontext; + __sigset_t uc_sigmask; + unsigned long uc_high_gprs[16]; + char __reserved[512]; + }; + + +#endif /* sys/ucontext.h */ diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym b/sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym new file mode 100644 index 0000000000..705c7ab6cf --- /dev/null +++ b/sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym @@ -0,0 +1,26 @@ +#include +#include +#include + +-- + +SIG_BLOCK +SIG_UNBLOCK +SIG_SETMASK + +_NSIG8 (_NSIG / 8) + +#define ucontext(member) offsetof (ucontext_t, member) +#define mcontext(member) ucontext (uc_mcontext.member) + +SC_FLGS ucontext (uc_flags) +SC_LINK ucontext (uc_link) +SC_STCK ucontext (uc_stack.ss_sp) +SC_STSZ ucontext (uc_stack.ss_size) +SC_PSW mcontext (psw) +SC_GPRS mcontext (gregs) +SC_ACRS mcontext (aregs) +SC_FPC mcontext (fpregs.fpc) +SC_FPRS mcontext (fpregs.fprs) +SC_MASK ucontext (uc_sigmask) +SC_HIGHGPRS ucontext (uc_high_gprs) diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S b/sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S new file mode 100644 index 0000000000..3e61e30702 --- /dev/null +++ b/sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S @@ -0,0 +1,79 @@ +/* Copyright (C) 2001-2014 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include +#include + +#include "ucontext_i.h" + +/* __getcontext (const ucontext_t *ucp) + + Saves the machine context in UCP such that when it is activated, + it appears as if __getcontext() returned again. + + This implementation is intended to be used for *synchronous* context + switches only. Therefore, it does not have to save anything + other than the PRESERVED state. */ + +ENTRY(__getcontext) + lgr %r1,%r2 + + /* rt_sigprocmask (SIG_BLOCK, NULL, &sc->sc_mask, sigsetsize). */ + la %r2,SIG_BLOCK + slgr %r3,%r3 + la %r4,SC_MASK(%r1) + lghi %r5,_NSIG8 + svc SYS_ify(rt_sigprocmask) + + /* Store fpu context. */ + stfpc SC_FPC(%r1) + std %f0,SC_FPRS(%r1) + std %f1,SC_FPRS+8(%r1) + std %f2,SC_FPRS+16(%r1) + std %f3,SC_FPRS+24(%r1) + std %f4,SC_FPRS+32(%r1) + std %f5,SC_FPRS+40(%r1) + std %f6,SC_FPRS+48(%r1) + std %f7,SC_FPRS+56(%r1) + std %f8,SC_FPRS+64(%r1) + std %f9,SC_FPRS+72(%r1) + std %f10,SC_FPRS+80(%r1) + std %f11,SC_FPRS+88(%r1) + std %f12,SC_FPRS+96(%r1) + std %f13,SC_FPRS+104(%r1) + std %f14,SC_FPRS+112(%r1) + std %f15,SC_FPRS+120(%r1) + + /* Set __getcontext return value to 0. */ + slgr %r2,%r2 + + /* Store the version number into the uc_flags field. So far + we do not make use of the reserved bytes so we store a zero. */ + stg %r2,SC_FLGS(%r1) + + /* Store access registers. */ + stam %a0,%a15,SC_ACRS(%r1) + + /* Store general purpose registers. */ + stmg %r0,%r15,SC_GPRS(%r1) + + /* Return. */ + br %r14 +END(__getcontext) + +weak_alias (__getcontext, getcontext) diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S b/sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S deleted file mode 100644 index db271c5dc5..0000000000 --- a/sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S +++ /dev/null @@ -1,75 +0,0 @@ -/* Copyright (C) 2001-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. - Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#include - -#include "ucontext_i.h" - -/* __getcontext (const ucontext_t *ucp) - - Saves the machine context in UCP such that when it is activated, - it appears as if __getcontext() returned again. - - This implementation is intended to be used for *synchronous* context - switches only. Therefore, it does not have to save anything - other than the PRESERVED state. */ - -ENTRY(__getcontext) - lgr %r1,%r2 - - /* sigprocmask (SIG_BLOCK, NULL, &sc->sc_mask). */ - la %r2,SIG_BLOCK - slgr %r3,%r3 - la %r4,SC_MASK(%r1) - lghi %r5,_NSIG8 - svc SYS_ify(rt_sigprocmask) - - /* Store fpu context. */ - stfpc SC_FPC(%r1) - std %f0,SC_FPRS(%r1) - std %f1,SC_FPRS+8(%r1) - std %f2,SC_FPRS+16(%r1) - std %f3,SC_FPRS+24(%r1) - std %f4,SC_FPRS+32(%r1) - std %f5,SC_FPRS+40(%r1) - std %f6,SC_FPRS+48(%r1) - std %f7,SC_FPRS+56(%r1) - std %f8,SC_FPRS+64(%r1) - std %f9,SC_FPRS+72(%r1) - std %f10,SC_FPRS+80(%r1) - std %f11,SC_FPRS+88(%r1) - std %f12,SC_FPRS+96(%r1) - std %f13,SC_FPRS+104(%r1) - std %f14,SC_FPRS+112(%r1) - std %f15,SC_FPRS+120(%r1) - - /* Set __getcontext return value to 0. */ - slgr %r2,%r2 - - /* Store access registers. */ - stam %a0,%a15,SC_ACRS(%r1) - - /* Store general purpose registers. */ - stmg %r0,%r15,SC_GPRS(%r1) - - /* Return. */ - br %r14 -END(__getcontext) - -weak_alias (__getcontext, getcontext) diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist b/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist index 05b5286058..4576fc8d14 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist +++ b/sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist @@ -102,6 +102,7 @@ GLIBC_2.19 __sigsetjmp F _longjmp F _setjmp F + getcontext F longjmp F setjmp F siglongjmp F diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S b/sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S index ec92898964..ac74b6bc08 100644 --- a/sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S +++ b/sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S @@ -33,6 +33,9 @@ other than the PRESERVED state. */ ENTRY(__swapcontext) + /* While not part of the ABI a system call never clobbers r0 + or r1. So keeping the values here while calling + rt_sigprocmask is ok. */ lgr %r1,%r2 lgr %r0,%r3 @@ -62,21 +65,25 @@ ENTRY(__swapcontext) std %f14,SC_FPRS+112(%r1) std %f15,SC_FPRS+120(%r1) - /* Set __swapcontext return value to 0. */ - slgr %r2,%r2 - /* Store access registers. */ stam %a0,%a15,SC_ACRS(%r1) + /* Set __swapcontext return value to 0. */ + slgr %r2,%r2 + /* Store general purpose registers. */ stmg %r0,%r15,SC_GPRS(%r1) - /* sigprocmask (SIG_SETMASK, &sc->sc_mask, NULL). */ - la %r2,SIG_BLOCK + /* Copy uc_flags into the new ucontext_t. */ lgr %r5,%r0 + lg %r2,SC_FLGS(%r5) + stg %r2,SC_FLGS(%r1) + + /* rt_sigprocmask (SIG_SETMASK, &sc->sc_mask, NULL, sigsetsize). */ + la %r2,SIG_BLOCK la %r3,SC_MASK(%r5) - lghi %r5,_NSIG8 slgr %r4,%r4 + lghi %r5,_NSIG8 svc SYS_ify(rt_sigprocmask) /* Load fpu context. */ diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h b/sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h new file mode 100644 index 0000000000..b563e98f05 --- /dev/null +++ b/sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h @@ -0,0 +1,96 @@ +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. + Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#ifndef _SYS_UCONTEXT_H +#define _SYS_UCONTEXT_H 1 +/* Forward definition to avoid parse errors */ +struct ucontext; +typedef struct ucontext ucontext_t; +#include +#include + +/* We need the signal context definitions even if they are not used + included in . */ +#include + +/* Type for a program status word. */ +typedef struct +{ + unsigned long mask; + unsigned long addr; +} __attribute__ ((__aligned__(8))) __psw_t; + +/* Type for a general-purpose register. */ +typedef unsigned long greg_t; + +/* And the whole bunch of them. We should have used `struct s390_regs', + but to avoid name space pollution and since the tradition says that + the register set is an array, we make gregset_t a simple array + that has the same size as s390_regs. This is needed for the + elf_prstatus structure. */ +#if __WORDSIZE == 64 +# define NGREG 27 +#else +# define NGREG 36 +#endif +/* Must match kernels psw_t alignment. */ +typedef greg_t gregset_t[NGREG] __attribute__ ((__aligned__(8))); + +typedef union + { + double d; + float f; + } fpreg_t; + +/* Register set for the floating-point registers. */ +typedef struct + { + unsigned int fpc; + fpreg_t fprs[16]; + } fpregset_t; + +/* Bit 0 is reserved for the uc_high_gprs field only available in the + 32 bit version of ucontext_t. This bit will never be set for 64 + bit. */ +#define UCONTEXT_UC_FLAGS_HIGH_GPRS (1UL << 0) + +/* A new uc_flags constant will be defined when actually making use of + the reserved space: UCONTEXT_UCFLAGS_RESERVED (1UL << 1). */ + +/* Context to describe whole processor state. */ +typedef struct + { + __psw_t psw; + unsigned long gregs[16]; + unsigned int aregs[16]; + fpregset_t fpregs; + } mcontext_t; + +/* Userlevel context. */ +struct ucontext + { + unsigned long int uc_flags; + struct ucontext *uc_link; + stack_t uc_stack; + mcontext_t uc_mcontext; + __sigset_t uc_sigmask; + char reserved[512]; + }; + + +#endif /* sys/ucontext.h */ diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym b/sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym new file mode 100644 index 0000000000..6cc9f19624 --- /dev/null +++ b/sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym @@ -0,0 +1,25 @@ +#include +#include +#include + +-- + +SIG_BLOCK +SIG_UNBLOCK +SIG_SETMASK + +_NSIG8 (_NSIG / 8) + +#define ucontext(member) offsetof (ucontext_t, member) +#define mcontext(member) ucontext (uc_mcontext.member) + +SC_FLGS ucontext (uc_flags) +SC_LINK ucontext (uc_link) +SC_STCK ucontext (uc_stack.ss_sp) +SC_STSZ ucontext (uc_stack.ss_size) +SC_PSW mcontext (psw) +SC_GPRS mcontext (gregs) +SC_ACRS mcontext (aregs) +SC_FPC mcontext (fpregs.fpc) +SC_FPRS mcontext (fpregs.fprs) +SC_MASK ucontext (uc_sigmask) diff --git a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h deleted file mode 100644 index d528cb189d..0000000000 --- a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h +++ /dev/null @@ -1,87 +0,0 @@ -/* Copyright (C) 2000-2014 Free Software Foundation, Inc. - Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#ifndef _SYS_UCONTEXT_H -#define _SYS_UCONTEXT_H 1 -/* Forward definition to avoid parse errors */ -struct ucontext; -typedef struct ucontext ucontext_t; -#include -#include - -/* We need the signal context definitions even if they are not used - included in . */ -#include - -/* Type for a program status word. */ -typedef struct -{ - unsigned long mask; - unsigned long addr; -} __attribute__ ((__aligned__(8))) __psw_t; - -/* Type for a general-purpose register. */ -typedef unsigned long greg_t; - -/* And the whole bunch of them. We should have used `struct s390_regs', - but to avoid name space pollution and since the tradition says that - the register set is an array, we make gregset_t a simple array - that has the same size as s390_regs. This is needed for the - elf_prstatus structure. */ -#if __WORDSIZE == 64 -# define NGREG 27 -#else -# define NGREG 36 -#endif -/* Must match kernels psw_t alignment. */ -typedef greg_t gregset_t[NGREG] __attribute__ ((__aligned__(8))); - -typedef union - { - double d; - float f; - } fpreg_t; - -/* Register set for the floating-point registers. */ -typedef struct - { - unsigned int fpc; - fpreg_t fprs[16]; - } fpregset_t; - -/* Context to describe whole processor state. */ -typedef struct - { - __psw_t psw; - unsigned long gregs[16]; - unsigned int aregs[16]; - fpregset_t fpregs; - } mcontext_t; - -/* Userlevel context. */ -struct ucontext - { - unsigned long int uc_flags; - struct ucontext *uc_link; - stack_t uc_stack; - mcontext_t uc_mcontext; - __sigset_t uc_sigmask; - }; - - -#endif /* sys/ucontext.h */ diff --git a/sysdeps/unix/sysv/linux/s390/ucontext_i.sym b/sysdeps/unix/sysv/linux/s390/ucontext_i.sym deleted file mode 100644 index 6cc9f19624..0000000000 --- a/sysdeps/unix/sysv/linux/s390/ucontext_i.sym +++ /dev/null @@ -1,25 +0,0 @@ -#include -#include -#include - --- - -SIG_BLOCK -SIG_UNBLOCK -SIG_SETMASK - -_NSIG8 (_NSIG / 8) - -#define ucontext(member) offsetof (ucontext_t, member) -#define mcontext(member) ucontext (uc_mcontext.member) - -SC_FLGS ucontext (uc_flags) -SC_LINK ucontext (uc_link) -SC_STCK ucontext (uc_stack.ss_sp) -SC_STSZ ucontext (uc_stack.ss_size) -SC_PSW mcontext (psw) -SC_GPRS mcontext (gregs) -SC_ACRS mcontext (aregs) -SC_FPC mcontext (fpregs.fpc) -SC_FPRS mcontext (fpregs.fprs) -SC_MASK ucontext (uc_sigmask) -- cgit v1.2.3 From c5eebdd084b77b0b581a3aa02213fa7cc5851216 Mon Sep 17 00:00:00 2001 From: Andreas Krebbel Date: Tue, 7 Jan 2014 09:40:00 +0100 Subject: S/390: Get rid of unused variable warning in dl-machine.h --- ChangeLog | 5 +++++ sysdeps/s390/s390-32/dl-machine.h | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index a8b62e0a0e..bb3786b69d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-01-07 Andreas Krebbel + + * sysdeps/s390/s390-32/dl-machine.h: Gate the definition of refsym + also with !RTLD_BOOTSTRAP to get rid of unused variable warning. + 2014-01-07 Andreas Krebbel * sysdeps/s390/Makefile: Build rtld-global-offsets.sym. diff --git a/sysdeps/s390/s390-32/dl-machine.h b/sysdeps/s390/s390-32/dl-machine.h index 100101ebe9..928581ed49 100644 --- a/sysdeps/s390/s390-32/dl-machine.h +++ b/sysdeps/s390/s390-32/dl-machine.h @@ -299,7 +299,8 @@ elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc, return; else { -#ifndef RESOLVE_CONFLICT_FIND_MAP +#if !defined RTLD_BOOTSTRAP && !defined RESOLVE_CONFLICT_FIND_MAP + /* Only needed for R_390_COPY below. */ const Elf32_Sym *const refsym = sym; #endif struct link_map *sym_map = RESOLVE_MAP (&sym, version, r_type); -- cgit v1.2.3 From 87ded0c382b835e5d7ca8b5e059a8a044a6c3976 Mon Sep 17 00:00:00 2001 From: Andreas Krebbel Date: Tue, 7 Jan 2014 09:40:39 +0100 Subject: S/390: Remove __tls_get_addr argument cast. --- ChangeLog | 5 +++++ sysdeps/s390/dl-tls.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index bb3786b69d..50dd9b4af4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-01-07 Andreas Krebbel + + * sysdeps/s390/dl-tls.h: sysdeps/s390/dl-tls.h: Remove casts for + the first argument and return value of __tls_get_addr_internal. + 2014-01-07 Andreas Krebbel * sysdeps/s390/s390-32/dl-machine.h: Gate the definition of refsym diff --git a/sysdeps/s390/dl-tls.h b/sysdeps/s390/dl-tls.h index acf282e65c..4801bf8622 100644 --- a/sysdeps/s390/dl-tls.h +++ b/sysdeps/s390/dl-tls.h @@ -91,7 +91,7 @@ extern void *__tls_get_addr_internal (tls_index *ti); compiler will take care of setting up r12 only if itself issued the __tls_get_offset call. */ # define __TLS_GET_ADDR(__ti) \ - ({ (void *) __tls_get_addr_internal ((char *) (__ti)) \ + ({ __tls_get_addr_internal (__ti) \ + (unsigned long) __builtin_thread_pointer (); }) #endif -- cgit v1.2.3 From b821f414e480d7f9e097fa453b1c9bfd44d64316 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Tue, 7 Jan 2014 22:00:04 +0000 Subject: Fix ldbl-128ibm coshl spurious overflows (bug 16407). This patch fixes bug 16407, spurious overflows from ldbl-128ibm coshl. The implementation assumed that a high part (reinterpreted as an integer) of the absolute value of the argument of 0x408633ce8fb9f87dLL or more meant overflow, but the actual threshold has high part 0x408633ce8fb9f87eLL (and a negative low part). The patch adjusts the threshold accordingly. sinhl probably has the same issue, but I didn't get that far in adding tests of special cases (such as just below and above overflow) before the freeze and during the freeze is not a suitable time to add them (as they'd require ulps to be regenerated again), so I'm not changing that function for now; when I add more tests of special cases, we'll discover whether sinhl indeed has this problem. Tested powerpc32. * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl): Increase overflow threshold. --- ChangeLog | 6 ++++++ NEWS | 2 +- sysdeps/ieee754/ldbl-128ibm/e_coshl.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index be41012fd1..ce828b4222 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2014-01-07 Joseph Myers + + [BZ #16407] + * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl): + Increase overflow threshold. + 2014-01-07 Ondřej Bílka [BZ #14286] diff --git a/NEWS b/NEWS index d674772247..366e1d4f43 100644 --- a/NEWS +++ b/NEWS @@ -24,7 +24,7 @@ Version 2.19 16103, 16112, 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, - 16384, 16385, 16386, 16387, 16390, 16400. + 16384, 16385, 16386, 16387, 16390, 16400, 16407. * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/ieee754/ldbl-128ibm/e_coshl.c b/sysdeps/ieee754/ldbl-128ibm/e_coshl.c index 05683bc02f..92313e25e2 100644 --- a/sysdeps/ieee754/ldbl-128ibm/e_coshl.c +++ b/sysdeps/ieee754/ldbl-128ibm/e_coshl.c @@ -69,7 +69,7 @@ __ieee754_coshl (long double x) if (ix < 0x40862e42fefa39efLL) return half*__ieee754_expl(fabsl(x)); /* |x| in [log(maxdouble), overflowthresold] */ - if (ix < 0x408633ce8fb9f87dLL) { + if (ix < 0x408633ce8fb9f87fLL) { w = __ieee754_expl(half*fabsl(x)); t = half*w; return t*w; -- cgit v1.2.3 From 1f0f206719645b031a402e83ed66542f04c95233 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Tue, 7 Jan 2014 23:32:04 +0000 Subject: Regenerate powerpc-nofpu ulps (again). --- ChangeLog | 2 + sysdeps/powerpc/nofpu/libm-test-ulps | 116 +++++++++++++++++++---------------- 2 files changed, 66 insertions(+), 52 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 4593f5a8b8..7aa8791642 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2014-01-07 Joseph Myers + * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated. + * math/auto-libm-test-in: Mark various tests with xfail-rounding:ldbl-128ibm. * math/auto-libm-test-out: Regenerated. diff --git a/sysdeps/powerpc/nofpu/libm-test-ulps b/sysdeps/powerpc/nofpu/libm-test-ulps index 53034d32ef..a9b604b933 100644 --- a/sysdeps/powerpc/nofpu/libm-test-ulps +++ b/sysdeps/powerpc/nofpu/libm-test-ulps @@ -6697,8 +6697,8 @@ ldouble: 3 Test "cos_towardzero (0x1.921fb54442d18p+0)": double: 1 idouble: 1 -ildouble: 4 -ldouble: 4 +ildouble: 2 +ldouble: 2 Test "cos_towardzero (0x1.921fb54442d19p+0)": double: 1 idouble: 1 @@ -6782,8 +6782,8 @@ Test "cos_towardzero (0x8p-972)": double: 1 idouble: 1 Test "cos_towardzero (0xa.217bap+12)": -ildouble: 3 -ldouble: 3 +ildouble: 1 +ldouble: 1 Test "cos_towardzero (0xap+0)": ildouble: 1 ldouble: 1 @@ -6973,8 +6973,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 4 -ldouble: 4 +ildouble: 2 +ldouble: 2 Test "cos_upward (0xap+0)": float: 1 ifloat: 1 @@ -7012,6 +7012,15 @@ ldouble: 1 Test "cosh (-0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh (-0x2.c679d1f73f0fap+8)": +ildouble: 1 +ldouble: 1 +Test "cosh (-0x2.c679d1f73f0fb624d358b213a7p+8)": +ildouble: 3 +ldouble: 3 +Test "cosh (-0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +ldouble: 1 Test "cosh (-0x2.c679dp+8)": double: 1 idouble: 1 @@ -7021,6 +7030,15 @@ ldouble: 1 Test "cosh (0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh (0x2.c679d1f73f0fap+8)": +ildouble: 1 +ldouble: 1 +Test "cosh (0x2.c679d1f73f0fb624d358b213a7p+8)": +ildouble: 3 +ldouble: 3 +Test "cosh (0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +ldouble: 1 Test "cosh (0x2.c679dp+8)": double: 1 idouble: 1 @@ -7095,6 +7113,15 @@ ldouble: 1 Test "cosh_tonearest (-0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh_tonearest (-0x2.c679d1f73f0fap+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (-0x2.c679d1f73f0fb624d358b213a7p+8)": +ildouble: 3 +ldouble: 3 +Test "cosh_tonearest (-0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +ldouble: 1 Test "cosh_tonearest (-0x2.c679dp+8)": double: 1 idouble: 1 @@ -7104,6 +7131,15 @@ ldouble: 1 Test "cosh_tonearest (0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh_tonearest (0x2.c679d1f73f0fap+8)": +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (0x2.c679d1f73f0fb624d358b213a7p+8)": +ildouble: 3 +ldouble: 3 +Test "cosh_tonearest (0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +ldouble: 1 Test "cosh_tonearest (0x2.c679dp+8)": double: 1 idouble: 1 @@ -7583,12 +7619,6 @@ double: 2 idouble: 2 ildouble: 1 ldouble: 1 -Test "Real part of: ctan_downward (-0xc.35p+12 + 0xc.35p+12 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: ctan_downward (-0xc.35p+12 - 0xc.35p+12 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: ctan_downward (0x1.921fb4p+0 + +0 i)": float: 1 ifloat: 1 @@ -8050,8 +8080,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctan_upward (-0xc.35p+12 - 0xc.35p+12 i)": double: 1 float: 1 @@ -8163,15 +8191,11 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+8 i)": double: 1 float: 1 @@ -8229,8 +8253,6 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctan_upward (0xc.35p+12 - 0xc.35p+12 i)": double: 1 float: 1 @@ -8487,9 +8509,6 @@ idouble: 1 ifloat: 1 ildouble: 5 ldouble: 5 -Test "Imaginary part of: ctanh_downward (-0xc.35p+12 - 0xc.35p+12 i)": -ildouble: 1 -ldouble: 1 Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+1020 i)": double: 6 idouble: 6 @@ -8610,9 +8629,6 @@ double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctanh_downward (0xc.35p+12 - 0xc.35p+12 i)": -ildouble: 1 -ldouble: 1 Test "Real part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": ildouble: 3 ldouble: 3 @@ -9040,15 +9056,11 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: ctanh_upward (0x1.63p+12 + 0x1p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: ctanh_upward (0x1.63p+8 + 0x1p+0 i)": double: 1 float: 1 @@ -9209,15 +9221,11 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: ctanh_upward (0xc.35p+12 - 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 Test "Real part of: ctanh_upward (0xcp-4 + 0x1.4p+0 i)": ildouble: 2 ldouble: 2 @@ -10444,6 +10452,9 @@ ifloat: 1 Test "sin (0x4.1237e153f7080008p+0)": ildouble: 1 ldouble: 1 +Test "sin (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 # sin_downward Test "sin_downward (-0x1.921fb4p+0)": @@ -10750,6 +10761,9 @@ ifloat: 1 Test "sin_tonearest (0x4.1237e153f7080008p+0)": ildouble: 1 ldouble: 1 +Test "sin_tonearest (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 # sin_towardzero Test "sin_towardzero (-0x1.921fb54442d18p+0)": @@ -10761,8 +10775,8 @@ idouble: 1 Test "sin_towardzero (-0x2p+64)": double: 1 idouble: 1 -ildouble: 3 -ldouble: 3 +ildouble: 1 +ldouble: 1 Test "sin_towardzero (-0x8.60a91c16b9b28p-4)": ildouble: 1 ldouble: 1 @@ -10806,8 +10820,8 @@ idouble: 1 Test "sin_towardzero (0x2p+64)": double: 1 idouble: 1 -ildouble: 3 -ldouble: 3 +ildouble: 1 +ldouble: 1 Test "sin_towardzero (0x3.be735c19beap+0)": double: 1 idouble: 1 @@ -10937,8 +10951,6 @@ idouble: 1 Test "sin_towardzero (0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 # sin_upward Test "sin_upward (-0x1.921fb4p+0)": @@ -11029,8 +11041,8 @@ ifloat: 1 Test "sin_upward (0x2p+64)": double: 1 idouble: 1 -ildouble: 3 -ldouble: 3 +ildouble: 1 +ldouble: 1 Test "sin_upward (0x3.be735c19be9fep+0)": ildouble: 1 ldouble: 1 @@ -11270,8 +11282,8 @@ Test "sin_upward (0xf.ffffcp+124)": ildouble: 2 ldouble: 2 Test "sin_upward (0xf.ffffffffffff8p+1020)": -ildouble: 2 -ldouble: 2 +ildouble: 1 +ldouble: 1 Test "sin_upward (0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 1 ldouble: 1 @@ -12117,8 +12129,6 @@ ldouble: 1 Test "tgamma (-0x1.000002p+0)": double: 2 idouble: 2 -ildouble: 1 -ldouble: 1 Test "tgamma (-0x1.3ffffep+4)": float: 2 ifloat: 2 @@ -12243,6 +12253,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "tgamma (-0x3.000004p+0)": double: 2 float: 1 @@ -13209,8 +13221,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 4 -ldouble: 4 +ildouble: 3 +ldouble: 3 Function: "cos_upward": double: 1 @@ -13225,8 +13237,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 3 +ldouble: 3 Function: "cosh_downward": double: 1 @@ -13241,8 +13253,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 3 +ldouble: 3 Function: "cosh_towardzero": double: 1 -- cgit v1.2.3 From 4c327f2ad89cff8e1fb6f7fe09b398119783553a Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Wed, 8 Jan 2014 13:32:39 +0000 Subject: Fix ldbl-128ibm expm1l on large arguments (bug 16408). This patch fixes bug 16408, ldbl-128ibm expm1l returning NaN for some large arguments. The basic problem is that the approach of converting the exponent to the form n * log(2) + y, where -0.5 <= y <= 0.5, then computing 2^n * expm1(y) + (2^n - 1) falls over when 2^n overflows (starting slightly before the point where expm1 overflows, when y is negative and n is the least integer for which 2^n overflows). The ldbl-128 code, and the x86/x86_64 code, make expm1l fall back to expl for large positive arguments to avoid this issue. This patch makes the ldbl-128ibm code do the same. (The problem appears for the particular argument in the testsuite because the ldbl-128ibm code also uses an overflow threshold that's for ldbl-128 and is too big for ldbl-128ibm, but the problem described applies for large non-overflowing cases as well, although during the freeze is not a suitable time for making the expm1 tests cover cases close to overflow more thoroughly.) This leaves some code for large positive arguments in expm1l that is now dead. To keep the code for ldbl-128 and ldbl-128ibm similar, and to avoid unnecessary changes during the freeze, the patch doesn't remove it; instead I propose to file a bug in Bugzilla as a reminder that this code (for overflow, including errno setting, and for arguments of +Inf) is no longer needed and should be removed from both those expm1l implementations. Tested powerpc32. * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __expl for large positive arguments. --- ChangeLog | 6 ++++++ NEWS | 2 +- sysdeps/ieee754/ldbl-128ibm/s_expm1l.c | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 7aa8791642..f27a4eb290 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2014-01-08 Joseph Myers + + [BZ #16408] + * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __expl + for large positive arguments. + 2014-01-07 Joseph Myers * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated. diff --git a/NEWS b/NEWS index 366e1d4f43..486e892c65 100644 --- a/NEWS +++ b/NEWS @@ -24,7 +24,7 @@ Version 2.19 16103, 16112, 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, - 16384, 16385, 16386, 16387, 16390, 16400, 16407. + 16384, 16385, 16386, 16387, 16390, 16400, 16407, 16408. * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/ieee754/ldbl-128ibm/s_expm1l.c b/sysdeps/ieee754/ldbl-128ibm/s_expm1l.c index 007e785346..0464f79043 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_expm1l.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_expm1l.c @@ -101,6 +101,8 @@ __expm1l (long double x) EXTRACT_WORDS (ix, lx, xhi); sign = ix & 0x80000000; ix &= 0x7fffffff; + if (!sign && ix >= 0x40600000) + return __expl (x); if (ix >= 0x7ff00000) { /* Infinity. */ -- cgit v1.2.3 From 3ff6304ee7294951adef3255457ca28ebaf0d7d1 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Wed, 8 Jan 2014 07:45:54 -0600 Subject: Update powerpc-fpu ULPs. --- ChangeLog | 4 ++ sysdeps/powerpc/fpu/libm-test-ulps | 97 +++++++++++++++++++++++++++++++++++--- 2 files changed, 95 insertions(+), 6 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index f27a4eb290..62ebe4b584 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-01-08 Adhemerval Zanella + + * sysdeps/powerpc/fpu/libm-test-ulps: Update. + 2014-01-08 Joseph Myers [BZ #16408] diff --git a/sysdeps/powerpc/fpu/libm-test-ulps b/sysdeps/powerpc/fpu/libm-test-ulps index 7a33dba3a8..656c09724c 100644 --- a/sysdeps/powerpc/fpu/libm-test-ulps +++ b/sysdeps/powerpc/fpu/libm-test-ulps @@ -8242,6 +8242,15 @@ ldouble: 1 Test "cosh (-0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh (-0x2.c679d1f73f0fap+8)": +ildouble: 3 +ldouble: 3 +Test "cosh (-0x2.c679d1f73f0fb624d358b213a7p+8)": +ildouble: 3 +ldouble: 3 +Test "cosh (-0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +ldouble: 1 Test "cosh (-0x2.c679dp+8)": double: 1 idouble: 1 @@ -8251,6 +8260,15 @@ ldouble: 1 Test "cosh (0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh (0x2.c679d1f73f0fap+8)": +ildouble: 3 +ldouble: 3 +Test "cosh (0x2.c679d1f73f0fb624d358b213a7p+8)": +ildouble: 3 +ldouble: 3 +Test "cosh (0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +ldouble: 1 Test "cosh (0x2.c679dp+8)": double: 1 idouble: 1 @@ -8344,6 +8362,15 @@ ldouble: 1 Test "cosh_tonearest (-0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh_tonearest (-0x2.c679d1f73f0fap+8)": +ildouble: 3 +ldouble: 3 +Test "cosh_tonearest (-0x2.c679d1f73f0fb624d358b213a7p+8)": +ildouble: 3 +ldouble: 3 +Test "cosh_tonearest (-0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +ldouble: 1 Test "cosh_tonearest (-0x2.c679dp+8)": double: 1 idouble: 1 @@ -8353,6 +8380,15 @@ ldouble: 1 Test "cosh_tonearest (0x2.c5e3acp+8)": double: 1 idouble: 1 +Test "cosh_tonearest (0x2.c679d1f73f0fap+8)": +ildouble: 3 +ldouble: 3 +Test "cosh_tonearest (0x2.c679d1f73f0fb624d358b213a7p+8)": +ildouble: 3 +ldouble: 3 +Test "cosh_tonearest (0x2.c679d1f73f0fb624p+8)": +ildouble: 1 +ldouble: 1 Test "cosh_tonearest (0x2.c679dp+8)": double: 1 idouble: 1 @@ -14674,6 +14710,12 @@ idouble: 1 Test "tgamma (-0x2.7fffffffffffffffffffffffffp+4)": ildouble: 1 ldouble: 1 +Test "tgamma (-0x2.80000000000000000000000001p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.8000000000000004p+4)": +ildouble: 2 +ldouble: 2 Test "tgamma (-0x2.8000000000002p+4)": double: 1 idouble: 1 @@ -14953,8 +14995,8 @@ ldouble: 1 Test "tgamma (-0x7.0000000000004p+0)": double: 3 idouble: 3 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Test "tgamma (-0x7.0000000000004p0)": double: 3 idouble: 3 @@ -15133,6 +15175,8 @@ ldouble: 1 Test "tgamma (0x1.38p+4)": double: 2 idouble: 2 +ildouble: 1 +ldouble: 1 Test "tgamma (0x1.78p+4)": double: 1 float: 1 @@ -15292,6 +15336,8 @@ ifloat: 1 Test "tgamma (0x7.0000000000004p+0)": double: 4 idouble: 4 +ildouble: 1 +ldouble: 1 Test "tgamma (0x7.0000000000004p0)": double: 4 idouble: 4 @@ -15996,6 +16042,8 @@ ldouble: 2 Function: "acosh": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Function: "asin": ildouble: 2 @@ -16034,6 +16082,7 @@ double: 1 float: 1 ifloat: 1 ildouble: 1 +ldouble: 1 Function: "atan": double: 1 @@ -16062,24 +16111,32 @@ double: 1 float: 2 idouble: 1 ifloat: 2 +ildouble: 1 +ldouble: 1 Function: Imaginary part of "cacos": double: 3 float: 2 idouble: 3 ifloat: 2 +ildouble: 2 +ldouble: 2 Function: Real part of "cacosh": double: 1 float: 7 idouble: 1 ifloat: 7 +ildouble: 2 +ldouble: 2 Function: Imaginary part of "cacosh": double: 1 float: 3 idouble: 1 ifloat: 3 +ildouble: 1 +ldouble: 1 Function: "carg": ildouble: 1 @@ -16098,12 +16155,16 @@ double: 3 float: 2 idouble: 3 ifloat: 2 +ildouble: 2 +ldouble: 2 Function: Real part of "casinh": double: 5 float: 2 idouble: 5 ifloat: 2 +ildouble: 2 +ldouble: 2 Function: Imaginary part of "casinh": double: 3 @@ -16116,6 +16177,8 @@ ldouble: 1 Function: Real part of "catan": float: 4 ifloat: 4 +ildouble: 1 +ldouble: 1 Function: Imaginary part of "catan": double: 1 @@ -16136,12 +16199,16 @@ ldouble: 1 Function: Imaginary part of "catanh": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: "cbrt": double: 1 float: 1 idouble: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: Real part of "ccos": double: 1 @@ -16266,8 +16333,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 3 +ldouble: 3 Function: "cosh_downward": double: 1 @@ -16282,14 +16349,16 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 3 +ldouble: 3 Function: "cosh_towardzero": double: 1 float: 1 idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 Function: "cosh_upward": double: 1 @@ -16350,12 +16419,16 @@ double: 1 float: 2 idouble: 1 ifloat: 2 +ildouble: 1 +ldouble: 1 Function: Imaginary part of "csqrt": double: 1 float: 2 idouble: 1 ifloat: 2 +ildouble: 1 +ldouble: 1 Function: Real part of "ctan": double: 1 @@ -16546,6 +16619,8 @@ ldouble: 1 Function: "exp10_downward": double: 1 idouble: 1 +ildouble: 4 +ldouble: 4 Function: "exp10_tonearest": double: 1 @@ -16556,6 +16631,8 @@ ldouble: 1 Function: "exp10_towardzero": double: 1 idouble: 1 +ildouble: 4 +ldouble: 4 Function: "exp10_upward": double: 1 @@ -16626,6 +16703,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 Function: "expm1_upward": double: 1 @@ -16640,6 +16719,8 @@ double: 1 float: 2 idouble: 1 ifloat: 2 +ildouble: 1 +ldouble: 1 Function: "hypot": double: 1 @@ -16678,10 +16759,14 @@ double: 1 float: 2 idouble: 1 ifloat: 2 +ildouble: 1 +ldouble: 1 Function: "log": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: "log10": double: 1 -- cgit v1.2.3 From 38f3458175ecf7c3588bd5b6e465f4d9205fbe1c Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Wed, 8 Jan 2014 05:10:41 -0600 Subject: PowerPC: remove wrong truncl implementation for PowerPC64 The truncl assembly implementation (sysdeps/powerpc/powerpc64/fpu/s_truncl.S) returns wrong results for some inputs where first double is a exact integer and the precision is determined by second long double. Checking on implementation comments and history, I am very confident the assembly implementation was based on a version before commit 5c68d401698a58cf7da150d9cce769fa6679ba5f that fixes BZ#2423 (Errors in long double (ldbl-128ibm) rounding functions in glibc-2.4). By just removing the implementation and make the build select sysdeps/ieee754/ldbl-128ibm/s_truncl.c instead it fixes tgammal issues regarding wrong result sign. --- ChangeLog | 9 ++- NEWS | 2 +- sysdeps/ieee754/ldbl-128ibm/s_truncl.c | 3 - sysdeps/powerpc/powerpc64/fpu/s_truncl.S | 120 ------------------------------- 4 files changed, 9 insertions(+), 125 deletions(-) delete mode 100644 sysdeps/powerpc/powerpc64/fpu/s_truncl.S (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 62ebe4b584..1b19405fd2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,11 @@ -2013-01-08 Adhemerval Zanella +2014-01-08 Adhemerval Zanella + + [BZ #16414] + * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Remove wrong + implementation. + * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Remove bogus comment. + +2014-01-08 Adhemerval Zanella * sysdeps/powerpc/fpu/libm-test-ulps: Update. diff --git a/NEWS b/NEWS index 486e892c65..4fe23146fc 100644 --- a/NEWS +++ b/NEWS @@ -24,7 +24,7 @@ Version 2.19 16103, 16112, 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, - 16384, 16385, 16386, 16387, 16390, 16400, 16407, 16408. + 16384, 16385, 16386, 16387, 16390, 16400, 16407, 16408, 16414. * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/ieee754/ldbl-128ibm/s_truncl.c b/sysdeps/ieee754/ldbl-128ibm/s_truncl.c index 490ad266d4..aca3f3efc2 100644 --- a/sysdeps/ieee754/ldbl-128ibm/s_truncl.c +++ b/sysdeps/ieee754/ldbl-128ibm/s_truncl.c @@ -17,9 +17,6 @@ License along with the GNU C Library; if not, see . */ -/* This has been coded in assembler because GCC makes such a mess of it - when it's coded in C. */ - #include #include #include diff --git a/sysdeps/powerpc/powerpc64/fpu/s_truncl.S b/sysdeps/powerpc/powerpc64/fpu/s_truncl.S deleted file mode 100644 index e5a3008beb..0000000000 --- a/sysdeps/powerpc/powerpc64/fpu/s_truncl.S +++ /dev/null @@ -1,120 +0,0 @@ -/* long double trunc function. - IBM extended format long double version. - Copyright (C) 2004-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#include -#include - - .section ".toc","aw" -.LC0: /* 2**52 */ - .tc FD_43300000_0[TC],0x4330000000000000 -.LC1: /* 0.5 */ - .tc FD_3fe00000_0[TC],0x3fe0000000000000 - .section ".text" - -/* long double [fp1,fp2] truncl (long double x [fp1,fp2]) */ - -ENTRY (__truncl) - mffs fp11 /* Save current FPU rounding mode. */ - lfd fp13,.LC0@toc(2) - fabs fp0,fp1 - fabs fp9,fp2 - fsub fp12,fp13,fp13 /* generate 0.0 */ - fcmpu cr7,fp0,fp13 /* if (fabs(x) > TWO52) */ - fcmpu cr6,fp1,fp12 /* if (x > 0.0) */ - bnl- cr7,.L2 - mtfsfi 7,1 /* Set rounding mode toward 0. */ - ble- cr6,.L1 - fneg fp2,fp12 - fadd fp1,fp1,fp13 /* x+= TWO52; */ - fsub fp1,fp1,fp13 /* x-= TWO52; */ - fabs fp1,fp1 /* if (x == 0.0) x = 0.0; */ -.L0: - mtfsf 0x01,fp11 /* restore previous rounding mode. */ - blr -.L1: - fneg fp2,fp12 - bge- cr6,.L0 /* if (x < 0.0) */ - fsub fp1,fp1,fp13 /* x-= TWO52; */ - fadd fp1,fp1,fp13 /* x+= TWO52; */ - fnabs fp1,fp1 /* if (x == 0.0) x = -0.0; */ - mtfsf 0x01,fp11 /* restore previous rounding mode. */ - blr - -/* The high double is > TWO52 so we need to round the low double and - perhaps the high double. In this case we have to round the low - double and handle any adjustment to the high double that may be - caused by rounding (up). This is complicated by the fact that the - high double may already be rounded and the low double may have the - opposite sign to compensate.This gets a bit tricky so we use the - following algorithm: - - tau = floor(x_high/TWO52); - x0 = x_high - tau; - x1 = x_low + tau; - r1 = rint(x1); - y_high = x0 + r1; - y_low = x0 - y_high + r1; - return y; */ -.L2: - fcmpu cr7,fp9,fp13 /* if (|x_low| > TWO52) */ - fcmpu cr0,fp9,fp12 /* || (|x_low| == 0.0) */ - fcmpu cr5,fp2,fp12 /* if (x_low > 0.0) */ - bgelr- cr7 /* return x; */ - beqlr- cr0 - mtfsfi 7,1 /* Set rounding mode toward 0. */ - fdiv fp8,fp1,fp13 /* x_high/TWO52 */ - - bng- cr6,.L6 /* if (x > 0.0) */ - fctidz fp0,fp8 - fcfid fp8,fp0 /* tau = floor(x_high/TWO52); */ - fadd fp8,fp8,fp8 /* tau++; Make tau even */ - bng cr5,.L4 /* if (x_low > 0.0) */ - fmr fp3,fp1 - fmr fp4,fp2 - b .L5 -.L4: /* if (x_low < 0.0) */ - fsub fp3,fp1,fp8 /* x0 = x_high - tau; */ - fadd fp4,fp2,fp8 /* x1 = x_low + tau; */ -.L5: - fadd fp5,fp4,fp13 /* r1 = r1 + TWO52; */ - fsub fp5,fp5,fp13 /* r1 = r1 - TWO52; */ - b .L9 -.L6: /* if (x < 0.0) */ - fctidz fp0,fp8 - fcfid fp8,fp0 /* tau = floor(x_high/TWO52); */ - fadd fp8,fp8,fp8 /* tau++; Make tau even */ - bnl cr5,.L7 /* if (x_low < 0.0) */ - fmr fp3,fp1 - fmr fp4,fp2 - b .L8 -.L7: /* if (x_low > 0.0) */ - fsub fp3,fp1,fp8 /* x0 = x_high - tau; */ - fadd fp4,fp2,fp8 /* x1 = x_low + tau; */ -.L8: - fsub fp5,fp4,fp13 /* r1-= TWO52; */ - fadd fp5,fp5,fp13 /* r1+= TWO52; */ -.L9: - mtfsf 0x01,fp11 /* restore previous rounding mode. */ - fadd fp1,fp3,fp5 /* y_high = x0 + r1; */ - fsub fp2,fp3,fp1 /* y_low = x0 - y_high + r1; */ - fadd fp2,fp2,fp5 - blr -END (__truncl) - -long_double_symbol (libm, __truncl, truncl) -- cgit v1.2.3 From 66671c84d58d6ae705bac39dc476c3d3b2b81116 Mon Sep 17 00:00:00 2001 From: Yuriy Kaminskiy Date: Thu, 9 Jan 2014 09:49:54 +1300 Subject: Fix a thinko/typo in i686's memmove (aka __memmove_ia32). * sysdeps/i386/i686/memmove.S (memmove): Compare distance between SRC and DEST against LEN. --- ChangeLog | 7 +++++++ NEWS | 2 +- sysdeps/i386/i686/memmove.S | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 1b19405fd2..661f004cba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2014-01-08 Yuriy Kaminskiy + Maxim Kuvyrkov + + [BZ #16394] + * sysdeps/i386/i686/memmove.S (memmove): Compare distance between + SRC and DEST against LEN. + 2014-01-08 Adhemerval Zanella [BZ #16414] diff --git a/NEWS b/NEWS index 4fe23146fc..2a936f586b 100644 --- a/NEWS +++ b/NEWS @@ -24,7 +24,7 @@ Version 2.19 16103, 16112, 16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, - 16384, 16385, 16386, 16387, 16390, 16400, 16407, 16408, 16414. + 16384, 16385, 16386, 16387, 16390, 16394, 16400, 16407, 16408, 16414. * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/i386/i686/memmove.S b/sysdeps/i386/i686/memmove.S index d9017388f9..4b8785f22c 100644 --- a/sysdeps/i386/i686/memmove.S +++ b/sysdeps/i386/i686/memmove.S @@ -58,8 +58,8 @@ ENTRY (memmove) movl %edi, %eax subl %esi, %eax - cmpl %eax, %edi - jae 3f + cmpl %eax, %ecx + ja 3f cld shrl $1, %ecx -- cgit v1.2.3 From bc2ba20ae8a5ae5c3bbd0f04c6ba4fa08602d22b Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 10 Jan 2014 13:32:35 -0800 Subject: ARM: Disable compat mcount code when unneeded. --- ChangeLog | 4 ++++ ports/ChangeLog.arm | 15 ++++++++++++++- ports/sysdeps/arm/arm-mcount.S | 35 ++++++++++++++++++++++++++++++----- ports/sysdeps/arm/gcc-compat.h | 35 +++++++++++++++++++++++++++++++++++ sysdeps/generic/gcc-compat.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 125 insertions(+), 6 deletions(-) create mode 100644 ports/sysdeps/arm/gcc-compat.h create mode 100644 sysdeps/generic/gcc-compat.h (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 9a19fbf749..81421347a8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-01-10 Roland McGrath + + * sysdeps/generic/gcc-compat.h: New file. + 2014-01-10 Siddhesh Poyarekar * benchtests/asin-inputs: Correct slow inputs. diff --git a/ports/ChangeLog.arm b/ports/ChangeLog.arm index 313377401a..353c3d6444 100644 --- a/ports/ChangeLog.arm +++ b/ports/ChangeLog.arm @@ -1,3 +1,14 @@ +2014-01-10 Roland McGrath + + * sysdeps/arm/arm-mcount.S: + #include and . + (_mcount): Renamed to __mcount_arm_compat. Made conditional on + [GCC_COMPAT (4, 3) || SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19)]. + (_mcount, mcount): Define (as aliases) only under [GCC_COMPAT (4, 3)], + with compat_symbol under [SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19)]. + + * sysdeps/arm/gcc-compat.h: New file. + 2014-01-01 Joseph Myers * sysdeps/arm/libm-test-ulps: Regenerated. @@ -7,7 +18,9 @@ * sysdeps/arm/fegetround.c (fegetround): Use libm_hidden_def. 2013-11-26 Ondřej Bílka - * sysdeps/unix/sysv/linux/arm/bits/shm.h: Use __glibc_reserved instead __unused. + + * sysdeps/unix/sysv/linux/arm/bits/shm.h: Use __glibc_reserved + instead of __unused. 2013-11-22 Roland McGrath diff --git a/ports/sysdeps/arm/arm-mcount.S b/ports/sysdeps/arm/arm-mcount.S index 8b8653c78e..7e433c6ff7 100644 --- a/ports/sysdeps/arm/arm-mcount.S +++ b/ports/sysdeps/arm/arm-mcount.S @@ -21,6 +21,7 @@ #include +#undef mcount #ifdef __thumb2__ .thumb @@ -65,10 +66,20 @@ ENTRY(__gnu_mcount_nc) END(__gnu_mcount_nc) +#include +#include + +/* The new __gnu_mcount_nc entry point was introduced in 4.4, so the + static library needs the old one only to support older compilers. + Even in a configuration that only cares about newer compilers, the + shared library might need it only for strict ABI compatibility. */ + +#if GCC_COMPAT (4, 3) || SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19) + /* Provide old mcount for backwards compatibility. This requires code be compiled with APCS frame pointers. */ -ENTRY(_mcount) +ENTRY(__mcount_arm_compat) push {r0, r1, r2, r3, fp, lr} cfi_adjust_cfa_offset (24) cfi_rel_offset (r0, 0) @@ -83,7 +94,7 @@ ENTRY(_mcount) ldrne r0, [\B, #-4] movsne r1, lr blne __mcount_internal -#if defined (__ARM_ARCH_4T__) && defined (__THUMB_INTERWORK__) +# if defined (__ARM_ARCH_4T__) && defined (__THUMB_INTERWORK__) pop {r0, r1, r2, r3, fp, lr} cfi_adjust_cfa_offset (-24) cfi_restore (r0) @@ -93,12 +104,26 @@ ENTRY(_mcount) cfi_restore (fp) cfi_restore (lr) bx lr -#else +# else pop {r0, r1, r2, r3, fp, pc} +# endif +END(__mcount_arm_compat) + #endif -END(_mcount) + +#if GCC_COMPAT (4, 3) + +strong_alias (__mcount_arm_compat, _mcount) /* The canonical name for the function is `_mcount' in both C and asm, but some old asm code might assume it's `mcount'. */ -#undef mcount weak_alias (_mcount, mcount) + +#elif SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_19) + +compat_symbol (libc, __mcount_arm_compat, _mcount, GLIBC_2_0) + +strong_alias (__mcount_arm_compat, __mcount_arm_compat_1) +compat_symbol (libc, __mcount_arm_compat_1, mcount, GLIBC_2_0) + +#endif diff --git a/ports/sysdeps/arm/gcc-compat.h b/ports/sysdeps/arm/gcc-compat.h new file mode 100644 index 0000000000..680f30e3a7 --- /dev/null +++ b/ports/sysdeps/arm/gcc-compat.h @@ -0,0 +1,35 @@ +/* Macros for checking required GCC compatibility. ARM version. + Copyright (C) 2014 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#ifndef _ARM_GCC_COMPAT_H +#define _ARM_GCC_COMPAT_H 1 + +#ifndef GCC_COMPAT_VERSION +# ifdef __ARM_PCS_VFP +/* The hard-float ABI was first supported in 4.5. */ +# define GCC_COMPAT_VERSION GCC_VERSION (4, 5) +# else +/* The EABI configurations (the only ones we handle) were first supported + in 4.1. */ +# define GCC_COMPAT_VERSION GCC_VERSION (4, 1) +# endif +#endif + +#include_next + +#endif diff --git a/sysdeps/generic/gcc-compat.h b/sysdeps/generic/gcc-compat.h new file mode 100644 index 0000000000..ac4fa1e95b --- /dev/null +++ b/sysdeps/generic/gcc-compat.h @@ -0,0 +1,42 @@ +/* Macros for checking required GCC compatibility. Generic version. + Copyright (C) 2014 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +/* This is the base file. More-specific sysdeps/.../gcc-compat.h files + can define GCC_COMPAT_VERSION and then #include_next this file. */ + +#ifndef _GENERIC_GCC_COMPAT_H +#define _GENERIC_GCC_COMPAT_H 1 + +/* This is the macro that gets used in #if tests in code: true iff + the library we build must be compatible with user code built by + GCC version MAJOR.MINOR. */ +#define GCC_COMPAT(major, minor) \ + (GCC_COMPAT_VERSION <= GCC_VERSION (major, minor)) + +/* This is how we compose an integer from major and minor version + numbers, for comparison. */ +#define GCC_VERSION(major, minor) \ + (((major) << 16) + (minor)) + +#ifndef GCC_COMPAT_VERSION +/* GCC 2.7.2 was current at the time of the glibc-2.0 release. + We assume nothing before that ever mattered. */ +# define GCC_COMPAT_VERSION GCC_VERSION (2, 7) +#endif + +#endif -- cgit v1.2.3 From c20d5bf50991d6c4e396f27612ad379214120c48 Mon Sep 17 00:00:00 2001 From: Andreas Krebbel Date: Wed, 15 Jan 2014 09:49:54 +0100 Subject: S/390: Regenerate ULPs. --- ChangeLog | 4 + sysdeps/s390/fpu/libm-test-ulps | 18631 ++++++++++++++++++++++++++++---------- 2 files changed, 13730 insertions(+), 4905 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index fe9d751080..4eab51195c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-01-15 Andreas Krebbel + + * sysdeps/s390/fpu/libm-test-ulps: Regenerate. + 2014-01-11 Allan McRae * po/bg.po: Update Bulgarian translation from translation project. diff --git a/sysdeps/s390/fpu/libm-test-ulps b/sysdeps/s390/fpu/libm-test-ulps index c22944d5ba..786720dbe1 100644 --- a/sysdeps/s390/fpu/libm-test-ulps +++ b/sysdeps/s390/fpu/libm-test-ulps @@ -1,8859 +1,17439 @@ # Begin of automatic generation # acos_downward -Test "acos_downward (-0)": +Test "acos_downward (-0x8p-4)": float: 1 ifloat: 1 -Test "acos_downward (-0.5)": -double: 1 -idouble: 1 -Test "acos_downward (-1)": -float: 1 -ifloat: 1 -Test "acos_downward (0)": -float: 1 -ifloat: 1 -Test "acos_downward (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 # acos_towardzero -Test "acos_towardzero (-0)": -float: 1 -ifloat: 1 -Test "acos_towardzero (-0.5)": -double: 1 -idouble: 1 -Test "acos_towardzero (-1)": -float: 1 -ifloat: 1 -Test "acos_towardzero (0)": +Test "acos_towardzero (-0x8p-4)": float: 1 ifloat: 1 -Test "acos_towardzero (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 # acos_upward +Test "acos_upward (+0)": +double: 1 +idouble: 1 Test "acos_upward (-0)": -ildouble: 1 +double: 1 +idouble: 1 +Test "acos_upward (-0x1p+0)": +double: 1 +idouble: 1 +Test "acos_upward (-0x4p-1024)": +double: 1 +idouble: 1 +Test "acos_upward (-0x4p-1076)": +double: 1 +idouble: 1 +Test "acos_upward (-0x4p-128)": +double: 1 +idouble: 1 +Test "acos_upward (-0x8p-152)": +double: 1 +idouble: 1 +Test "acos_upward (-0x8p-972)": +double: 1 +idouble: 1 +Test "acos_upward (0x1.70ef54646d496p-56)": +double: 1 +idouble: 1 +Test "acos_upward (0x1.70ef54646d497p-56)": +double: 1 +idouble: 1 +Test "acos_upward (0x1.70ef54p-56)": +double: 1 +idouble: 1 +Test "acos_upward (0x1.70ef56p-56)": +double: 1 +idouble: 1 +Test "acos_upward (0x4p-1024)": +double: 1 +idouble: 1 +Test "acos_upward (0x4p-1076)": +double: 1 +idouble: 1 +Test "acos_upward (0x4p-128)": +double: 1 +idouble: 1 +Test "acos_upward (0x8p-152)": +double: 1 +idouble: 1 +Test "acos_upward (0x8p-972)": +double: 1 +idouble: 1 + +# acosh +Test "acosh (0x6.4p+4)": +double: 1 +idouble: 1 +Test "acosh (0xf.ffffffffffff8p+1020)": +double: 1 +Test "acosh (0xf.fffffp+124)": ldouble: 1 -Test "acos_upward (-1)": + +# asin +Test "asin (-0xf.ffffffffffff8p-4)": ildouble: 1 ldouble: 1 -Test "acos_upward (0)": +Test "asin (-0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 # asin_downward -Test "asin_downward (-0.5)": +Test "asin_downward (-0x1p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "asin_downward (-1.0)": -ildouble: 1 -ldouble: 1 -Test "asin_downward (0.5)": +Test "asin_downward (-0x8p-4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "asin_downward (1.0)": -float: 1 -ifloat: 1 - -# asin_towardzero -Test "asin_towardzero (-0.5)": +Test "asin_downward (-0xf.fffffff8p-4)": double: 1 idouble: 1 -Test "asin_towardzero (-1.0)": -float: 1 -ifloat: 1 -Test "asin_towardzero (0.5)": +ildouble: 1 +ldouble: 1 +Test "asin_downward (-0xf.ffffffffffff8p-4)": double: 1 idouble: 1 -Test "asin_towardzero (1.0)": -float: 1 -ifloat: 1 - -# asin_upward -Test "asin_upward (-1.0)": -float: 1 -ifloat: 1 -Test "asin_upward (1.0)": ildouble: 1 ldouble: 1 - -# atan2 -Test "atan2 (-0.00756827042671106339, -.001792735857538728036)": +Test "asin_downward (-0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "atan2 (-0.75, -1.0)": -float: 1 -ifloat: 1 +Test "asin_downward (-0xf.fffffffffffp-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "atan2 (-max_value, -min_value)": -float: 1 -ifloat: 1 -Test "atan2 (0.75, -1.0)": +Test "asin_downward (-0xf.fffffp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "atan2 (1.390625, 0.9296875)": +Test "asin_downward (0x8p-4)": float: 1 ifloat: 1 +Test "asin_downward (0xcp-4)": ildouble: 1 ldouble: 1 -# atanh -Test "atanh (0.75)": -float: 1 -ifloat: 1 - -# cacos -Test "Imaginary part of: cacos (+0 + 0.5 i)": -float: 1 -ifloat: 1 +# asin_tonearest +Test "asin_tonearest (-0xf.ffffffffffff8p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (+0 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "asin_tonearest (-0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (+0 + 1.5 i)": -double: 1 -idouble: 1 + +# asin_towardzero +Test "asin_towardzero (-0x1p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (+0 - 0.5 i)": -float: 1 -ifloat: 1 +Test "asin_towardzero (-0x2p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (+0 - 1.0 i)": +Test "asin_towardzero (-0x4p-1024)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (+0 - 1.5 i)": +Test "asin_towardzero (-0x4p-1076)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0 + 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0 + 1.0 i)": +Test "asin_towardzero (-0x4p-128)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0 + 1.5 i)": -double: 1 -idouble: 1 +Test "asin_towardzero (-0x4p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0 - 0.5 i)": -float: 1 -ifloat: 1 +Test "asin_towardzero (-0x4p-16448)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0 - 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "asin_towardzero (-0x4p-16496)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0 - 1.5 i)": +Test "asin_towardzero (-0x8p-152)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0.0 + 0x0.ffffffffffffffffp0 i)": +Test "asin_towardzero (-0x8p-16448)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "asin_towardzero (-0x8p-4)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000000002p0 i)": +Test "asin_towardzero (-0x8p-972)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000001p0 i)": +Test "asin_towardzero (-0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "asin_towardzero (0x8p-4)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 - 0x0.ffffffffffffffffp0 i)": +Test "asin_towardzero (0xcp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000000000000000000001p0 i)": + +# asin_upward +Test "asin_upward (-0x1p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000000002p0 i)": +Test "asin_upward (-0x2p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000001p0 i)": +Test "asin_upward (-0x4p-1024)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.25 + 1.0 i)": +Test "asin_upward (-0x4p-1076)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0.25 + 1.0 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.25 - 1.0 i)": +Test "asin_upward (-0x4p-128)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0.25 - 1.0 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + +0 i)": +Test "asin_upward (-0x4p-16384)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1.fp-1025 i)": +Test "asin_upward (-0x4p-16448)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1.fp-129 i)": +Test "asin_upward (-0x4p-16496)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1.fp-129 i)": +Test "asin_upward (-0x8p-152)": double: 1 +float: 1 idouble: 1 -Test "Real part of: cacos (-0.5 + 0x1.fp-16385 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-105 i)": +Test "asin_upward (-0x8p-16448)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-105 i)": +Test "asin_upward (-0x8p-4)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-112 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-112 i)": +Test "asin_upward (-0x8p-972)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-23 i)": +Test "asin_upward (-0xf.fffffff8p-4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-52 i)": +Test "asin_upward (-0xf.ffffffffffff8p-4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-63 i)": +Test "asin_upward (-0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-63 i)": +Test "asin_upward (-0xf.fffffffffffp-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 1.0 i)": +Test "asin_upward (-0xf.fffffp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0.5 + 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "asin_upward (0x1p+0)": double: 1 idouble: 1 +Test "asin_upward (0x2p-16384)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1.fp-1025 i)": +Test "asin_upward (0x4p-1024)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1.fp-129 i)": +Test "asin_upward (0x4p-1076)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1.fp-129 i)": +Test "asin_upward (0x4p-128)": double: 1 +float: 1 idouble: 1 -Test "Real part of: cacos (-0.5 - 0x1.fp-16385 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-105 i)": +Test "asin_upward (0x4p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-105 i)": -double: 1 -idouble: 1 +Test "asin_upward (0x4p-16448)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-112 i)": +Test "asin_upward (0x4p-16496)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-112 i)": +Test "asin_upward (0x8p-152)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-23 i)": -double: 1 -idouble: 1 +Test "asin_upward (0x8p-16448)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-52 i)": +Test "asin_upward (0x8p-972)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-63 i)": + +# asinh +Test "asinh (-0xf.ffffffffffff8p+1020)": +double: 1 +Test "asinh (-0xf.fffffp+124)": +ldouble: 1 +Test "asinh (0x1p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-63 i)": +Test "asinh (0x1p+100)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 1.0 i)": +Test "asinh (0xap+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0.5 - 1.0 i)": +Test "asinh (0xf.ffffffffffff8p+1020)": double: 1 -idouble: 1 -ildouble: 1 +Test "asinh (0xf.fffffp+124)": ldouble: 1 -Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": + +# atan +Test "atan (0xap+0)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": + +# atan2 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (-0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0.0 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac291p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac291p-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac292p-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac292p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac292p-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac292p-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.000002p0 + 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1d8p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.000002p0 - 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51246640cc2340ca4838p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-10 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-10 - 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (-0x1.fp-100 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-100 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51246640cc2340ca483cp-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-100 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-100 - 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1000 + 1.0 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51248p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1000 - 1.0 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1ep-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-10000 + 1.0 i)": +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-10000 - 1.0 i)": +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 0.5 i)": +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1ep-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.0 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1d8p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.5 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51246640cc2340ca4838p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 0.5 i)": +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51246640cc2340ca483cp-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51246640cc2340ca4ap-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51248p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.0 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1d8p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.5 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x0.ffffffp0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e51248p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 + 1.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 + 1.5 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 - 0.5 i)": -float: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x0.ffffffp0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 - 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 - 1.5 i)": +Test "atan2 (-0x1.effe82p-8, -0x7.57d1d8p-12)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 - 1.5 i)": -double: 1 -idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 0.5 i)": +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51248p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 1.0 i)": +Test "atan2 (-0x1.effe8p-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 1.5 i)": +Test "atan2 (-0x1.effe8p-8, -0x7.57d1de0e51248p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 0.5 i)": +Test "atan2 (-0x2p-16384, -0x4p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "atan2 (-0x4p-16384, -0x2p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "atan2 (-0x4p-16448, -0x8p-16448)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "atan2 (-0x8p-16448, -0x4p-16448)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 1.0 i)": +Test "atan2 (-0xcp-4, -0x1p+0)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 1.5 i)": +Test "atan2 (-0xf.fffffffffffffffffffffffffff8p+16380, 0xf.fffffffffffffffp+16380)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-30 + 1.0 i)": +Test "atan2 (-0xf.fffffp+124, -0x4p-128)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-30 + 1.0 i)": -double: 1 +Test "atan2 (-0xf.fffffp+124, -0x8p-152)": float: 1 -idouble: 1 ifloat: 1 +Test "atan2 (0x1.000002p+0, 0x1.0000000000001p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-30 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-30 - 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "atan2 (0x1.000002p+0, 0x1p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-105 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-105 + 0.5 i)": +Test "atan2 (0x1.64p+0, 0xe.ep-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-105 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "atan2 (0x4p-16384, -0x2p-16384)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-105 + 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-105 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-105 - 0.5 i)": -float: 1 -ifloat: 1 +Test "atan2 (0x6.4p-4, 0x1.301648p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-105 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "atan2 (0x6.4p-4, 0x1.30164ap-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-105 - 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-112 + 0.5 i)": +Test "atan2 (0x8p-16448, -0x4p-16448)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xcp-4, -0x1p+0)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-112 + 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xf.fffffffffffffffp+16380, 0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "atan2 (0xf.fffffp+124, -0x4p-128)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-112 - 0.0 i)": +Test "atan2 (0xf.fffffp+124, -0x8p-152)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-112 - 0.5 i)": + +# atanh +Test "atanh (-0xcp-4)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-112 - 0.5 i)": +Test "atanh (0x1.2345p-20)": +ildouble: 1 +ldouble: 1 +Test "atanh (0x4p-4)": +ildouble: 1 +ldouble: 1 +Test "atanh (0xcp-4)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-112 - 0x1p-112 i)": + +# cacos +Test "Imaginary part of: cacos (+0 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (+0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (+0 + 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 + 0.0 i)": +Test "Imaginary part of: cacos (+0 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-23 + 0.5 i)": +Test "Imaginary part of: cacos (+0 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacos (-0x1p-23 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (+0 - 1.5 i)": double: 1 idouble: 1 -Test "Real part of: cacos (-0x1p-23 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 + 0x1p-23 i)": +Test "Imaginary part of: cacos (-0 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 - 0.0 i)": +Test "Imaginary part of: cacos (-0 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacos (-0x1p-23 - 0x0.ffffffp0 i)": +Test "Imaginary part of: cacos (-0 + 1.5 i)": double: 1 idouble: 1 -Test "Real part of: cacos (-0x1p-23 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 - 0x1p-23 i)": +Test "Imaginary part of: cacos (-0 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-52 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-52 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacos (-0 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-52 + 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-52 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-52 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-52 - 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0x1p-52 - 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-63 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-63 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-63 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0 - 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-63 + 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-63 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-63 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-63 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-63 - 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p500 + 1.0 i)": +Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p500 - 1.0 i)": +Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p5000 + 1.0 i)": +Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p5000 - 1.0 i)": +Test "Imaginary part of: cacos (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-1.0 + 0x1.fp-10 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (-0.0 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 + 0x1.fp-30 i)": +Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-1.0 + 0x1p50 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-1.0 + 0x1p500 i)": +Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 + 0x1p5000 i)": +Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 - 0.5 i)": +Test "Real part of: cacos (-0.25 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (-1.0 - 0x1.fp-10 i)": +Test "Imaginary part of: cacos (-0.25 + 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 - 0x1.fp-30 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-1.0 - 0x1p50 i)": +Test "Real part of: cacos (-0.25 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0.25 - 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (-1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 - 0x1p5000 i)": +Test "Real part of: cacos (-0.5 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-2 - 3 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacos (-0.5 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacos (-0.5 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (-0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacos (-0.5 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 + 0x1.0000000000001p0 i)": +Test "Real part of: cacos (-0.5 + 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (-0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (-0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacos (-0.5 + 0x1p-52 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacos (-0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (-0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.25 + 1.0 i)": +Test "Real part of: cacos (-0.5 + 1.0 i)": float: 1 ifloat: 1 +Test "Imaginary part of: cacos (-0.5 + 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.25 - 1.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacos (-0.5 - 0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + +0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-23 i)": +Test "Imaginary part of: cacos (-0.5 - 0x1.fp-129 i)": double: 1 idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-52 i)": +Test "Real part of: cacos (-0.5 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-63 i)": +Test "Imaginary part of: cacos (-0.5 - 0x1p-105 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (0.5 + 1.0 i)": -double: 1 -idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-105 i)": +Test "Imaginary part of: cacos (-0.5 - 0x1p-112 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-112 i)": +Test "Imaginary part of: cacos (-0.5 - 0x1p-23 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-23 i)": +Test "Real part of: cacos (-0.5 - 0x1p-52 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-52 i)": +Test "Real part of: cacos (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-63 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-63 i)": +Test "Imaginary part of: cacos (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 1.0 i)": +Test "Real part of: cacos (-0.5 - 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0.5 - 1.0 i)": +Test "Imaginary part of: cacos (-0.5 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.fffffffffffff8p0 + 0.0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0x0.fffffffffffff8p0 - 0.0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": +Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": +Test "Imaginary part of: cacos (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +Test "Imaginary part of: cacos (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +Test "Imaginary part of: cacos (-0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (-0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 + 0.0 i)": +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 + 0x1.fp-16385 i)": +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 - 0.0 i)": +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 - 0x1.fp-16385 i)": +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Imaginary part of: cacos (-0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 - 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 + 0.0 i)": -double: 1 +Test "Imaginary part of: cacos (-0x1.000002p0 - 0x1p-23 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 + 0x1.fp-129 i)": +Test "Imaginary part of: cacos (-0x1.fp-10 + 1.0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacos (0x0.ffffffp0 - 0.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-10 - 1.0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 - 0x1.fp-129 i)": -double: 1 +Test "Real part of: cacos (-0x1.fp-100 + 1.0 i)": float: 1 -idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.0000000000000002p0 + 0x1p-63 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: cacos (0x1.0000000000000002p0 - 0x1p-63 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: cacos (0x1.0000000000001p0 + 0x1p-52 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.0000000000001p0 - 0x1p-52 i)": +Test "Imaginary part of: cacos (-0x1.fp-100 + 1.0 i)": double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.000002p0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.000002p0 + 0x1p-23 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.000002p0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.000002p0 - 0x1p-23 i)": float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-10 + 1.0 i)": -double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.fp-10 - 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0x1.fp-100 + 1.0 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-100 + 1.0 i)": -double: 1 +Test "Real part of: cacos (-0x1.fp-100 - 1.0 i)": float: 1 -idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.fp-100 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-100 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1000 + 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1000 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-10000 + 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-10000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-10000 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-10000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 0.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 1.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 0.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 1.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 + 0.5 i)": +Test "Real part of: cacos (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 + 1.0 i)": +Test "Real part of: cacos (-0x1.fp-129 + 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 + 1.5 i)": +Test "Real part of: cacos (-0x1.fp-129 + 1.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 - 0.5 i)": +Test "Real part of: cacos (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 - 1.0 i)": +Test "Real part of: cacos (-0x1.fp-129 - 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 - 1.5 i)": +Test "Real part of: cacos (-0x1.fp-129 - 1.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 0.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 1.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 1.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 0.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 1.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 1.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-30 + 1.0 i)": -double: 1 +Test "Real part of: cacos (-0x1.fp-30 + 1.0 i)": float: 1 -idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-30 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-30 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0x1.fp127 + 0x1.fp127 i)": +Test "Real part of: cacos (-0x1.fp-30 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-30 - 1.0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.fp16383 + 0x1.fp16383 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-105 + 0.5 i)": +Test "Real part of: cacos (-0x1p-105 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-105 - 0.5 i)": +Test "Imaginary part of: cacos (-0x1p-105 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 +Test "Real part of: cacos (-0x1p-105 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-112 + 0.5 i)": +Test "Imaginary part of: cacos (-0x1p-105 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Imaginary part of: cacos (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-112 - 0.5 i)": +Test "Real part of: cacos (-0x1p-105 - 0x1p-105 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Real part of: cacos (-0x1p-112 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacos (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-23 + 0.5 i)": +Test "Imaginary part of: cacos (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x1p-23 + 0.0 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacos (0x1p-23 + 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0x1p-23 + 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-23 - 0.5 i)": +Test "Real part of: cacos (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-23 + 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: cacos (0x1p-23 - 0x0.ffffffp0 i)": +Test "Imaginary part of: cacos (-0x1p-23 + 0x0.ffffffp0 i)": double: 1 idouble: 1 -Test "Real part of: cacos (0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1p-52 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-52 + 0.5 i)": +Test "Real part of: cacos (-0x1p-23 + 0x1.fp-129 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x1p-52 + 0x0.fffffffffffff8p0 i)": +Test "Real part of: cacos (-0x1p-23 + 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x1p-52 - 0.5 i)": +Test "Real part of: cacos (-0x1p-23 - 0.0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-52 - 0.5 i)": +Test "Real part of: cacos (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacos (-0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1p-23 - 0x1.fp-129 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x1p-52 - 0x0.fffffffffffff8p0 i)": +Test "Real part of: cacos (-0x1p-23 - 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x1p-63 + 0.5 i)": +Test "Real part of: cacos (-0x1p-52 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-63 + 0.5 i)": +Test "Real part of: cacos (-0x1p-52 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-52 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacos (-0x1p-52 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x1p-63 - 0.5 i)": +Test "Imaginary part of: cacos (-0x1p-63 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-63 - 0.5 i)": +Test "Real part of: cacos (-0x1p-63 + 0x1p-63 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacos (-0x1p-63 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p500 + 1.0 i)": +Test "Real part of: cacos (-0x1p-63 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p500 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p5000 + 1.0 i)": +Test "Imaginary part of: cacos (-0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p5000 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (1.0 + 0.25 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (1.0 + 0.5 i)": +Test "Imaginary part of: cacos (-1.0 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (1.0 + 0x1.fp-10 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (1.0 + 0x1.fp-10 i)": +Test "Imaginary part of: cacos (-1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (1.0 + 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (1.0 + 0x1.fp-30 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (1.0 + 0x1.fp-30 i)": +Test "Imaginary part of: cacos (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 + 0x1p500 i)": +Test "Real part of: cacos (-1.0 + 0x1p50 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 + 0x1p5000 i)": +Test "Imaginary part of: cacos (-1.0 + 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (1.0 - 0.25 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (1.0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (1.0 - 0.5 i)": +Test "Imaginary part of: cacos (-1.0 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (1.0 - 0x1.fp-10 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (1.0 - 0x1.fp-10 i)": +Test "Imaginary part of: cacos (-1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (1.0 - 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (1.0 - 0x1.fp-30 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (1.0 - 0x1.fp-30 i)": +Test "Imaginary part of: cacos (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 - 0x1p500 i)": +Test "Real part of: cacos (-1.0 - 0x1p50 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 - 0x1p5000 i)": +Test "Imaginary part of: cacos (-1.0 - 0x1p5000 i)": ildouble: 1 ldouble: 1 - -# cacosh -Test "Real part of: cacosh (+0 + 0.5 i)": +Test "Real part of: cacos (-2 - 3 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (+0 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (+0 + 1.5 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacos (0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (+0 - 0.5 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (+0 - 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0.0 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (+0 - 1.5 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacos (0.0 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0 + 0.5 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0.0 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0 + 1.5 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0 - 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0 - 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0 - 1.5 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.0 + 0x0.ffffffffffffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.0 + 0x1.0000000000000000000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.0 + 0x1.0000000000000002p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.0 + 0x1.0000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.0 - 0x0.ffffffffffffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0.0 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.0 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (0.0 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.0 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (0.0 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.25 + 1.0 i)": +Test "Imaginary part of: cacos (0.25 + 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.25 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: cacosh (-0.25 - 1.0 i)": +Test "Imaginary part of: cacos (0.25 - 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.25 - 1.0 i)": +Test "Real part of: cacos (0.5 + +0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0.5 + +0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1.fp-129 i)": +Test "Real part of: cacos (0.5 + 0x1.fp-1025 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-105 i)": +Test "Real part of: cacos (0.5 + 0x1.fp-129 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-105 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-112 i)": +Test "Imaginary part of: cacos (0.5 + 0x1.fp-129 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-112 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-23 i)": +Test "Real part of: cacos (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-105 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-52 i)": +Test "Real part of: cacos (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-112 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-63 i)": +Test "Imaginary part of: cacos (0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-63 i)": +Test "Real part of: cacos (0.5 + 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 + 1.0 i)": +Test "Real part of: cacos (0.5 + 0x1p-63 i)": double: 1 idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 1.0 i)": +Test "Real part of: cacos (0.5 + 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0.5 - 0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1.fp-129 i)": +Test "Imaginary part of: cacos (0.5 + 1.0 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-105 i)": +Test "Real part of: cacos (0.5 - 0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-105 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-112 i)": +Test "Real part of: cacos (0.5 - 0x1.fp-1025 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-112 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-23 i)": +Test "Real part of: cacos (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-105 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-52 i)": +Test "Real part of: cacos (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-112 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-63 i)": +Test "Imaginary part of: cacos (0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-63 i)": +Test "Real part of: cacos (0.5 - 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 - 1.0 i)": +Test "Real part of: cacos (0.5 - 0x1p-63 i)": double: 1 idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 1.0 i)": +Test "Real part of: cacos (0.5 - 1.0 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "Imaginary part of: cacos (0.5 - 1.0 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x0.fffffffffffff8p0 + 0.0 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Real part of: cacos (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x0.fffffffffffff8p0 - 0.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Imaginary part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacosh (-0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0.0 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "Imaginary part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.000002p0 + 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.000002p0 - 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-10 + 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (-0x1.fp-10 - 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (-0x1.fp-100 + 1.0 i)": +Test "Real part of: cacos (0x0.ffffffp0 + 0.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-100 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-100 - 1.0 i)": +Test "Real part of: cacos (0x0.ffffffp0 + 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-100 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-1000 + 1.0 i)": +Test "Real part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacos (0x0.ffffffp0 - 0.0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1000 - 1.0 i)": +Test "Real part of: cacos (0x0.ffffffp0 - 0x1.fp-129 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-10000 + 1.0 i)": +Test "Real part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-10000 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 0.5 i)": +Test "Imaginary part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacos (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 1.0 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 1.5 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 0.5 i)": +Test "Real part of: cacos (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 1.0 i)": +Test "Real part of: cacos (0x1.0000000000000002p0 + 0x1p-63 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: cacos (0x1.0000000000000002p0 - 0x1p-63 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: cacos (0x1.0000000000001p0 + 0x1p-52 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 1.5 i)": +Test "Real part of: cacos (0x1.0000000000001p0 - 0x1p-52 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacos (0x1.000002p0 + 0x1p-23 i)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x0.ffffffp0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 + 1.0 i)": -double: 1 +Test "Imaginary part of: cacos (0x1.000002p0 + 0x1p-23 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.0 i)": +Test "Real part of: cacos (0x1.000002p0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.000002p0 - 0x1p-23 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 + 1.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-10 - 1.0 i)": double: 1 idouble: 1 +Test "Real part of: cacos (0x1.fp-100 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 - 0.5 i)": +Test "Imaginary part of: cacos (0x1.fp-100 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x0.ffffffp0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 - 1.0 i)": +Test "Real part of: cacos (0x1.fp-100 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 - 1.5 i)": +Test "Imaginary part of: cacos (0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 0.5 i)": +Test "Imaginary part of: cacos (0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (0x1.fp-10000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1.fp-10000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 1.0 i)": +Test "Imaginary part of: cacos (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 1.5 i)": +Test "Imaginary part of: cacos (0x1.fp-1025 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 0.5 i)": +Test "Imaginary part of: cacos (0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1.fp-1025 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 1.0 i)": +Test "Imaginary part of: cacos (0x1.fp-1025 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 1.5 i)": +Test "Imaginary part of: cacos (0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-30 + 1.0 i)": +Test "Imaginary part of: cacos (0x1.fp-1025 - 1.5 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-30 + 1.0 i)": +Test "Imaginary part of: cacos (0x1.fp-129 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-30 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-30 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-105 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-105 + 0.5 i)": +Test "Imaginary part of: cacos (0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-105 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-105 + 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-105 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-105 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-105 - 0.5 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-16385 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-105 - 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-112 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 + 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-112 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 - 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 + 1.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 + 0.0 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-16385 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-23 + 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacosh (-0x1p-23 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-23 + 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 + 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 - 0.0 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-16385 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacosh (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-23 - 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-16385 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 - 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-16385 - 1.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-52 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacos (0x1.fp-30 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-52 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-52 + 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-52 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-52 - 0.5 i)": +Test "Imaginary part of: cacos (0x1.fp-30 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-52 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-52 - 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-63 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 + 0.5 i)": +Test "Imaginary part of: cacos (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacos (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-63 + 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-63 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 - 0.5 i)": +Test "Imaginary part of: cacos (0x1p-105 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacos (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-63 - 0x1p-63 i)": +Test "Imaginary part of: cacos (0x1p-112 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p500 + 1.0 i)": +Test "Real part of: cacos (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p500 - 1.0 i)": +Test "Imaginary part of: cacos (0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p5000 + 1.0 i)": +Test "Imaginary part of: cacos (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p5000 - 1.0 i)": +Test "Imaginary part of: cacos (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 + 0.5 i)": +Test "Imaginary part of: cacos (0x1p-23 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-1.0 + 0x1.fp-10 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacos (0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-23 - 0.5 i)": float: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacos (0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x1p-23 - 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 + 0x1.fp-30 i)": +Test "Real part of: cacos (0x1p-52 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-1.0 + 0x1p50 i)": +Test "Imaginary part of: cacos (0x1p-52 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 + 0x1p5000 i)": +Test "Real part of: cacos (0x1p-52 + 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-1.0 - 0x1.fp-10 i)": +Test "Real part of: cacos (0x1p-52 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-52 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 - 0x1.fp-30 i)": +Test "Real part of: cacos (0x1p-52 - 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-1.0 - 0x1p50 i)": +Test "Real part of: cacos (0x1p-63 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-63 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-1.0 - 0x1p500 i)": +Test "Imaginary part of: cacos (0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 - 0x1p5000 i)": +Test "Imaginary part of: cacos (0x1p-63 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-2 - 3 i)": +Test "Real part of: cacos (0x1p-63 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-63 - 0.5 i)": float: 1 ifloat: 1 +Test "Imaginary part of: cacos (0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacos (1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (1.0 + 0x1.fp-10 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacos (1.0 + 0x1.fp-100 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacos (1.0 + 0x1.fp-30 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (1.0 + 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.25 + 1.0 i)": +Test "Real part of: cacos (1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (1.0 - 0.5 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0.25 - 1.0 i)": +Test "Imaginary part of: cacos (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (1.0 - 0x1.fp-10 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + +0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 +Test "Real part of: cacos (1.0 - 0x1.fp-100 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-112 i)": +Test "Real part of: cacos (1.0 - 0x1.fp-30 i)": double: 1 idouble: 1 +Test "Imaginary part of: cacos (1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-23 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacos (1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-52 i)": +Test "Imaginary part of: cacos (1.0 - 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-63 i)": + +# cacosh +Test "Real part of: cacosh (+0 + 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-63 i)": +Test "Real part of: cacosh (+0 + 1.0 i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: cacosh (0.5 + 1.0 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (+0 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 1.0 i)": +Test "Real part of: cacosh (+0 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0.5 - 0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-105 i)": -double: 1 -idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-112 i)": +Test "Real part of: cacosh (+0 - 1.0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-23 i)": +Test "Real part of: cacosh (+0 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-63 i)": +Test "Real part of: cacosh (-0 + 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-63 i)": +Test "Real part of: cacosh (-0 + 1.0 i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: cacosh (0.5 - 1.0 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 1.0 i)": +Test "Real part of: cacosh (-0 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 + 0.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 - 0.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0 - 1.0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +Test "Real part of: cacosh (-0 - 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Real part of: cacosh (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +Test "Real part of: cacosh (-0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +Test "Real part of: cacosh (-0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Real part of: cacosh (-0.0 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 + 0.0 i)": +Test "Real part of: cacosh (-0.0 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 + 0x1.fp-16385 i)": +Test "Real part of: cacosh (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 - 0.0 i)": +Test "Real part of: cacosh (-0.0 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 - 0x1.fp-16385 i)": +Test "Real part of: cacosh (-0.0 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Real part of: cacosh (-0.0 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Real part of: cacosh (-0.0 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0.0 i)": -double: 1 +Test "Real part of: cacosh (-0.25 + 1.0 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1.fp-129 i)": +Test "Imaginary part of: cacosh (-0.25 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0.0 i)": -double: 1 +Test "Real part of: cacosh (-0.25 - 1.0 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1.fp-129 i)": +Test "Imaginary part of: cacosh (-0.25 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: cacosh (-0.5 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "Real part of: cacosh (-0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "Real part of: cacosh (-0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Imaginary part of: cacosh (-0.5 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Real part of: cacosh (-0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Imaginary part of: cacosh (-0.5 + 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.0000000000000002p0 + 0x1p-63 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacosh (0x1.0000000000000002p0 - 0x1p-63 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacosh (0x1.0000000000001p0 + 0x1p-52 i)": +Test "Real part of: cacosh (-0.5 + 0x1p-23 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.0000000000001p0 - 0x1p-52 i)": +Test "Imaginary part of: cacosh (-0.5 + 0x1p-52 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.000002p0 + 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (-0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.000002p0 + 0x1p-23 i)": -float: 2 -ifloat: 2 +Test "Imaginary part of: cacosh (-0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.000002p0 - 0x1p-23 i)": +Test "Real part of: cacosh (-0.5 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 1.0 i)": float: 1 ifloat: 1 +Test "Imaginary part of: cacosh (-0.5 - 0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.000002p0 - 0x1p-23 i)": -float: 2 -ifloat: 2 +Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-10 + 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0x1.fp-10 - 1.0 i)": +Test "Real part of: cacosh (-0.5 - 0x1.fp-129 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp-100 + 1.0 i)": +Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 - 0x1p-105 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.fp-100 + 1.0 i)": +Test "Imaginary part of: cacosh (-0.5 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-100 - 1.0 i)": +Test "Real part of: cacosh (-0.5 - 0x1p-112 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.fp-100 - 1.0 i)": +Test "Imaginary part of: cacosh (-0.5 - 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1000 + 1.0 i)": +Test "Real part of: cacosh (-0.5 - 0x1p-23 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1000 - 1.0 i)": +Test "Imaginary part of: cacosh (-0.5 - 0x1p-52 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-10000 + 1.0 i)": +Test "Real part of: cacosh (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-10000 - 1.0 i)": +Test "Imaginary part of: cacosh (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 0.5 i)": +Test "Real part of: cacosh (-0.5 - 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacosh (-0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 1.0 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 1.5 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 0.5 i)": +Test "Real part of: cacosh (-0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacosh (-0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 1.0 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 1.5 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 + 1.0 i)": -double: 1 +Test "Real part of: cacosh (-0x1.000002p0 + 0x1p-23 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 + 1.5 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 - 0.5 i)": +Test "Real part of: cacosh (-0x1.000002p0 - 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 - 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 - 1.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-100 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-100 - 1.0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacosh (-0x1.fp-100 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (-0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-0x1.fp-10000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-10000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 1.5 i)": +Test "Real part of: cacosh (-0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 0.5 i)": +Test "Real part of: cacosh (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (-0x1.fp-1025 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (-0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-1025 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 1.5 i)": +Test "Real part of: cacosh (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-30 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-1025 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-30 - 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-1025 - 1.0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0x1.fp127 + 0x1.fp127 i)": +Test "Real part of: cacosh (-0x1.fp-1025 - 1.5 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp16383 + 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-105 + 0.5 i)": +Test "Real part of: cacosh (-0x1.fp-129 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-105 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1p-112 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x0.ffffffp0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1p-112 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.000002p0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1p-23 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.fp-129 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: cacosh (0x1p-23 + 0x0.ffffffp0 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 + 1.0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: cacosh (0x1p-23 + 0x1.000002p0 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-23 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.0 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: cacosh (0x1p-23 - 0x0.ffffffp0 i)": +Test "Real part of: cacosh (-0x1.fp-129 + 1.5 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0x1p-23 - 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-52 + 0x0.fffffffffffff8p0 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-52 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.5 i)": float: 1 ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-16385 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-52 - 0.5 i)": +Test "Real part of: cacosh (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-52 - 0x0.fffffffffffff8p0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-63 + 0.5 i)": +Test "Real part of: cacosh (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 + 1.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-63 - 0.5 i)": +Test "Real part of: cacosh (-0x1.fp-16385 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p500 + 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p500 - 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p5000 + 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 - 1.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p5000 - 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (1.0 + 0.25 i)": +Test "Imaginary part of: cacosh (-0x1.fp-30 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-30 - 1.0 i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: cacosh (1.0 + 0.5 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1.fp-30 - 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (1.0 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-105 + 0.0 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (1.0 + 0x1.fp-10 i)": +Test "Real part of: cacosh (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (1.0 + 0x1.fp-10 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacosh (1.0 + 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (1.0 + 0x1.fp-30 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (1.0 + 0x1.fp-30 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (1.0 + 0x1p500 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (1.0 + 0x1p5000 i)": +Test "Real part of: cacosh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (1.0 - 0.25 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (1.0 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-105 + 0x1p-105 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (1.0 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-105 - 0.0 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (1.0 - 0x1.fp-10 i)": +Test "Real part of: cacosh (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (1.0 - 0x1.fp-10 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacosh (1.0 - 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (1.0 - 0x1.fp-30 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (1.0 - 0x1.fp-30 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (1.0 - 0x1p500 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (1.0 - 0x1p5000 i)": +Test "Real part of: cacosh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 - -# casin -Test "Imaginary part of: casin (+0 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-105 - 0x1p-105 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (+0 + 1.0 i)": -double: 1 +Test "Imaginary part of: cacosh (-0x1p-112 + 0.0 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Real part of: cacosh (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (+0 + 1.5 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (+0 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-23 + 0.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (+0 - 1.0 i)": -double: 1 +Test "Real part of: cacosh (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (-0x1p-23 + 0.5 i)": float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-23 + 0x0.ffffffp0 i)": +double: 1 idouble: 1 +Test "Imaginary part of: cacosh (-0x1p-23 + 0x1.fp-129 i)": +float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (+0 - 1.5 i)": +Test "Imaginary part of: cacosh (-0x1p-23 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-23 - 0.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-23 - 0x0.ffffffp0 i)": double: 1 idouble: 1 +Test "Imaginary part of: cacosh (-0x1p-23 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-23 - 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0 + 1.0 i)": -double: 1 +Test "Imaginary part of: cacosh (-0x1p-52 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-52 + 0.5 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0 + 1.5 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacosh (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-52 - 0.5 i)": float: 1 ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0 - 1.0 i)": -double: 1 +Test "Real part of: cacosh (-0x1p-63 + 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-63 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 - 0.5 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0 - 1.5 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (-0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacosh (-0x1p-63 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 + 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (-0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (-0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 + 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (-1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacosh (-1.0 + 0x1p50 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (-1.0 + 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 - 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.25 + 1.0 i)": +Test "Imaginary part of: cacosh (-1.0 - 0x1p50 i)": float: 1 ifloat: 1 +Test "Real part of: cacosh (-1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.25 - 1.0 i)": +Test "Real part of: cacosh (-1.0 - 0x1p5000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-2 - 3 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0.5 + 0x1p-112 i)": +Test "Real part of: cacosh (0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0.5 + 0x1p-23 i)": +Test "Real part of: cacosh (0.0 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-23 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (0.0 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0.5 + 0x1p-52 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-63 i)": +Test "Real part of: cacosh (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0.5 + 1.0 i)": +Test "Real part of: cacosh (0.0 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 1.0 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (0.0 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-105 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (0.0 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0.5 - 0x1p-112 i)": +Test "Real part of: cacosh (0.0 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-112 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (0.25 + 1.0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0.5 - 0x1p-23 i)": +Test "Real part of: cacosh (0.25 - 1.0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-23 i)": +Test "Imaginary part of: cacosh (0.5 + +0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0.5 - 0x1p-52 i)": +Test "Imaginary part of: cacosh (0.5 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1p-105 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0.5 - 1.0 i)": +Test "Imaginary part of: cacosh (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 1.0 i)": +Test "Imaginary part of: cacosh (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1p-23 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.fffffffffffff8p0 + 0.0 i)": +Test "Imaginary part of: cacosh (0.5 + 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +Test "Real part of: cacosh (0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "Imaginary part of: cacosh (0.5 + 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x0.fffffffffffff8p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +Test "Imaginary part of: cacosh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0.5 - 0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +Test "Imaginary part of: cacosh (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-112 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Imaginary part of: cacosh (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: cacosh (0.5 - 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Real part of: cacosh (0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-112 i)": +Test "Imaginary part of: cacosh (0.5 - 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-112 i)": +Test "Imaginary part of: cacosh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 + 0.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 - 0.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffp0 + 0.0 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": +Test "Real part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffp0 - 0.0 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": +Test "Real part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0.0 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "Real part of: cacosh (0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Real part of: cacosh (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Real part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.000002p0 + 0x1p-23 i)": +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.000002p0 - 0x1p-23 i)": +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1.fp-129 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-10 + 1.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-10 + 1.0 i)": +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1.0000000000000002p0 + 0x1p-63 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (0x1.0000000000000002p0 - 0x1p-63 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (0x1.0000000000001p0 + 0x1p-52 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x1.fp-10 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1.0000000000001p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.000002p0 + 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-10 - 1.0 i)": +Test "Imaginary part of: cacosh (0x1.000002p0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1.000002p0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.fp-10 + 1.0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0x1.fp-100 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-100 - 1.0 i)": +Test "Imaginary part of: cacosh (0x1.fp-100 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1000 + 1.0 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacosh (0x1.fp-100 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1000 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-10000 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-10000 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp-10000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 0.5 i)": +Test "Real part of: cacosh (0x1.fp-10000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": +Test "Real part of: cacosh (0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (0x1.fp-1025 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 1.5 i)": +Test "Real part of: cacosh (0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": +Test "Real part of: cacosh (0x1.fp-1025 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (0x1.fp-1025 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 1.5 i)": +Test "Real part of: cacosh (0x1.fp-1025 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 + 0.5 i)": +Test "Real part of: cacosh (0x1.fp-129 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-129 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 + 1.5 i)": +Test "Real part of: cacosh (0x1.fp-129 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 - 0.5 i)": +Test "Real part of: cacosh (0x1.fp-129 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp-129 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 - 1.5 i)": +Test "Real part of: cacosh (0x1.fp-129 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 0.5 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 1.5 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 1.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 0.5 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 1.5 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 1.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-30 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-30 + 1.0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-30 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-30 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-30 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp1023 + 0x1.fp1023 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-30 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp127 + 0x1.fp127 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 +Test "Real part of: cacosh (0x1.fp16383 + 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-105 + 0.5 i)": +Test "Real part of: cacosh (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-105 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacosh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-112 + 0.5 i)": +Test "Real part of: cacosh (0x1p-105 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-112 - 0.5 i)": +Test "Real part of: cacosh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-112 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: casin (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacosh (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-23 + 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casin (-0x1p-23 + 0.5 i)": +Test "Real part of: cacosh (0x1p-23 + 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (-0x1p-23 + 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Real part of: casin (-0x1p-23 + 0x1.000002p0 i)": +Test "Real part of: cacosh (0x1p-23 + 0x0.ffffffp0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 +Test "Imaginary part of: cacosh (0x1p-23 + 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casin (-0x1p-23 - 0.5 i)": +Test "Real part of: cacosh (0x1p-23 - 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (-0x1p-23 - 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Real part of: casin (-0x1p-23 - 0x1.000002p0 i)": +Test "Real part of: cacosh (0x1p-23 - 0x0.ffffffp0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacosh (0x1p-23 - 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-52 + 0.5 i)": +Test "Real part of: cacosh (0x1p-52 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-52 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacosh (0x1p-52 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-52 - 0.5 i)": +Test "Imaginary part of: cacosh (0x1p-52 + 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-52 - 0.5 i)": +Test "Real part of: cacosh (0x1p-52 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-52 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacosh (0x1p-52 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-63 + 0.5 i)": +Test "Imaginary part of: cacosh (0x1p-52 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-63 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacosh (0x1p-63 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0x1p-63 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-63 - 0.5 i)": +Test "Real part of: cacosh (0x1p-63 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacosh (0x1p-63 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p500 + 1.0 i)": +Test "Real part of: cacosh (0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p500 - 1.0 i)": +Test "Real part of: cacosh (0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p5000 + 1.0 i)": +Test "Real part of: cacosh (0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p5000 - 1.0 i)": +Test "Real part of: cacosh (0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 + 0.25 i)": +Test "Real part of: cacosh (0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 + 0.5 i)": +Test "Imaginary part of: cacosh (1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (1.0 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-1.0 + 0.5 i)": +Test "Imaginary part of: cacosh (1.0 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-1.0 + 0x1.fp-10 i)": +Test "Real part of: cacosh (1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 + 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-1.0 + 0x1.fp-30 i)": +Test "Imaginary part of: cacosh (1.0 + 0x1.fp-10 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (1.0 + 0x1.fp-100 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 + 0x1p500 i)": +Test "Real part of: cacosh (1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 + 0x1p5000 i)": +Test "Imaginary part of: cacosh (1.0 + 0x1.fp-30 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 - 0.25 i)": +Test "Real part of: cacosh (1.0 + 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 - 0.5 i)": +Test "Imaginary part of: cacosh (1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (1.0 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-1.0 - 0.5 i)": +Test "Imaginary part of: cacosh (1.0 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-1.0 - 0x1.fp-10 i)": +Test "Real part of: cacosh (1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 - 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-1.0 - 0x1.fp-30 i)": +Test "Imaginary part of: cacosh (1.0 - 0x1.fp-10 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (1.0 - 0x1.fp-100 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 - 0x1p500 i)": +Test "Real part of: cacosh (1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 - 0x1p5000 i)": +Test "Imaginary part of: cacosh (1.0 - 0x1.fp-30 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (1.0 - 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 + 0x0.ffffffffffffffffp0 i)": + +# casin +Test "Imaginary part of: casin (+0 + 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (+0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (+0 + 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: casin (+0 - 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (+0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (+0 - 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (-0 + 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (-0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: casin (-0 + 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.25 + 1.0 i)": +Test "Imaginary part of: casin (-0 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.25 - 1.0 i)": +Test "Imaginary part of: casin (-0 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-105 i)": +Test "Imaginary part of: casin (-0 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 + 0x1p-112 i)": +Test "Imaginary part of: casin (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: casin (-0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 + 0x1p-23 i)": +Test "Imaginary part of: casin (-0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-23 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: casin (-0.0 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 + 0x1p-52 i)": +Test "Imaginary part of: casin (-0.0 + 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.0 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.0 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.0 - 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.0 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.25 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.25 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1p-105 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 + 1.0 i)": +Test "Real part of: casin (-0.5 + 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 + 1.0 i)": +Test "Imaginary part of: casin (-0.5 + 0x1p-112 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1.fp-129 i)": +Test "Real part of: casin (-0.5 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1p-23 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0.5 + 0x1p-52 i)": double: 1 idouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 - 0x1p-112 i)": +Test "Real part of: casin (-0.5 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-112 i)": +Test "Imaginary part of: casin (-0.5 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 - 0x1p-23 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-23 i)": +Test "Imaginary part of: casin (-0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 - 0x1p-105 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 - 0x1p-52 i)": +Test "Real part of: casin (-0.5 - 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.5 - 0x1p-112 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 - 1.0 i)": +Test "Real part of: casin (-0.5 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 - 1.0 i)": +Test "Imaginary part of: casin (-0.5 - 0x1p-23 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.75 + 1.25 i)": +Test "Real part of: casin (-0.5 - 0x1p-52 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: casin (0x0.fffffffffffff8p0 + 0.0 i)": +Test "Imaginary part of: casin (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +Test "Real part of: casin (-0.5 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "Imaginary part of: casin (-0.5 - 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x0.fffffffffffff8p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +Test "Real part of: casin (-0x0.fffffffffffff8p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.fffffffffffff8p0 - 0x1p-52 i)": +Test "Real part of: casin (-0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Real part of: casin (-0x0.fffffffffffff8p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Real part of: casin (-0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-112 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-112 i)": +Test "Imaginary part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffp0 + 0.0 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffp0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffp0 - 0.0 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": +Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffp0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": float: 2 ifloat: 2 -Test "Real part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +Test "Real part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +Test "Imaginary part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": float: 2 ifloat: 2 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0.0 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.000002p0 + 0x1p-23 i)": +Test "Imaginary part of: casin (-0x1.000002p0 + 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.000002p0 - 0x1p-23 i)": +Test "Imaginary part of: casin (-0x1.000002p0 - 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-10 + 1.0 i)": +Test "Real part of: casin (-0x1.fp-10 + 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-10 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-10 + 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1.fp-10 - 1.0 i)": +Test "Real part of: casin (-0x1.fp-10 - 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-10 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-10 - 1.0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp-100 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-100 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1000 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1000 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-10000 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-10000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-10000 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-10000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": +Test "Real part of: casin (-0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": +Test "Real part of: casin (-0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 + 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-129 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-129 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 + 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-129 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 - 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-129 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-129 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 - 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-129 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 1.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 1.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-30 + 1.0 i)": +Test "Real part of: casin (-0x1.fp-30 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-30 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-30 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-30 - 1.0 i)": +Test "Real part of: casin (-0x1.fp-30 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-30 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-30 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0x1.fp127 + 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0x1.fp16383 + 0x1.fp16383 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0x1p-105 + 0.5 i)": +Test "Imaginary part of: casin (-0x1p-105 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-105 - 0.5 i)": +Test "Imaginary part of: casin (-0x1p-105 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-112 + 0.5 i)": +Test "Imaginary part of: casin (-0x1p-112 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-112 - 0.5 i)": +Test "Imaginary part of: casin (-0x1p-112 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: casin (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: casin (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: casin (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-23 + 0.5 i)": +Test "Real part of: casin (-0x1p-23 + 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (0x1p-23 + 0.5 i)": +Test "Imaginary part of: casin (-0x1p-23 + 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (0x1p-23 + 0x0.ffffffp0 i)": +Test "Imaginary part of: casin (-0x1p-23 + 0x0.ffffffp0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1p-23 + 0x1.000002p0 i)": +Test "Real part of: casin (-0x1p-23 + 0x1.000002p0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-23 - 0.5 i)": +Test "Real part of: casin (-0x1p-23 - 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (0x1p-23 - 0.5 i)": +Test "Imaginary part of: casin (-0x1p-23 - 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (0x1p-23 - 0x0.ffffffp0 i)": +Test "Imaginary part of: casin (-0x1p-23 - 0x0.ffffffp0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1p-23 - 0x1.000002p0 i)": +Test "Real part of: casin (-0x1p-23 - 0x1.000002p0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-52 + 0.5 i)": +Test "Real part of: casin (-0x1p-52 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-52 + 0.5 i)": +Test "Imaginary part of: casin (-0x1p-52 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-52 + 0x1.0000000000001p0 i)": +Test "Real part of: casin (-0x1p-52 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-52 - 0.5 i)": +Test "Real part of: casin (-0x1p-52 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-52 - 0.5 i)": +Test "Imaginary part of: casin (-0x1p-52 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-52 - 0x1.0000000000001p0 i)": +Test "Real part of: casin (-0x1p-52 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-63 + 0.5 i)": +Test "Imaginary part of: casin (-0x1p-63 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Real part of: casin (-0x1p-63 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (-0x1p-63 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-63 - 0.5 i)": +Test "Imaginary part of: casin (-0x1p-63 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Real part of: casin (-0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (-0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p500 + 1.0 i)": +Test "Imaginary part of: casin (-0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p500 - 1.0 i)": +Test "Imaginary part of: casin (-0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p5000 + 1.0 i)": +Test "Imaginary part of: casin (-0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p5000 - 1.0 i)": +Test "Imaginary part of: casin (-0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 + 0.25 i)": +Test "Real part of: casin (-1.0 + 0.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-1.0 + 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-1.0 + 0x1.fp-30 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-1.0 + 0x1p500 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-1.0 + 0x1p5000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-1.0 - 0.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-1.0 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-1.0 - 0x1.fp-30 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-1.0 - 0x1p500 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-1.0 - 0x1p5000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 + 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 + 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 - 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.0 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.25 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.25 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0.5 + 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0.5 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0.5 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0.5 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0.5 - 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0.5 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0.5 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0.5 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0.75 + 1.25 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casin (0x0.fffffffffffff8p0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x0.fffffffffffff8p0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffp0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffp0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1.fp-10 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-10000 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-10000 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 + 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 + 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 + 1.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 - 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-16385 - 1.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1.fp-30 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1.fp-30 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x1p-23 + 0x1.000002p0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x1p-23 - 0x1.000002p0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-52 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-52 + 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-52 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-52 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-63 + 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-63 + 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1p-63 - 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-63 - 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p500 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p500 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p5000 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p5000 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (1.0 + 0.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (1.0 + 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 + 0x1.fp-30 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 + 0x1p500 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 + 0x1p5000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (1.0 - 0.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (1.0 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 - 0x1.fp-30 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 - 0x1p500 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 - 0x1p5000 i)": +ildouble: 1 +ldouble: 1 + +# casinh +Test "Imaginary part of: casinh (-0.0 + 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.0 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.0 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.0 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.0 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.0 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.25 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.25 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casinh (-0.5 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (-0.5 + 0x1p-52 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 - 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casinh (-0.5 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (-0.5 - 0x1p-52 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000000002p0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000000002p0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000000002p0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.0000000000000002p0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000000002p0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000000002p0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000000002p0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.0000000000000002p0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000001p0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000001p0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.0000000000001p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000001p0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.0000000000001p0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.0000000000001p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.fp-10 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.fp-129 + 0.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-129 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.fp-129 - 0.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-129 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.fp-30 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1.fp-30 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-105 + 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-105 - 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-112 + 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-112 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-112 - 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-112 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-23 + 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-23 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-23 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-23 - 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-23 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-23 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0x1p-52 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-52 + 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-0x1p-52 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-52 - 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-63 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-63 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p500 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p500 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p5000 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0x1p5000 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-1.0 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-1000 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-10000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-1.0 + 0x1.fp-30 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0x1p500 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 + 0x1p5000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-1.0 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-1000 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-10000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-1.0 - 0x1.fp-30 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0x1p500 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.0 - 0x1p5000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.5 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.5 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.5 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.5 - 0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-1.5 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.0 + 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.0 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.0 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.0 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.0 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.0 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.25 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.25 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casinh (0.5 + 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (0.5 + 0x1p-52 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.5 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 - 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casinh (0.5 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (0.5 - 0x1p-52 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.5 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0.75 + 1.25 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000000002p0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000000002p0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000000002p0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.0000000000000002p0 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000000002p0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000000002p0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000000002p0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.0000000000000002p0 - 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000001p0 + 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000001p0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.0000000000001p0 + 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000001p0 - 0.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.0000000000001p0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.0000000000001p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.000002p0 + 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.000002p0 - 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-10 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-129 + 0.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0x1.fp-129 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-129 - 0.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0x1.fp-129 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-30 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-30 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-105 + 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-105 - 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-112 + 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-112 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-112 - 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-112 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-23 + 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-23 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-23 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-23 - 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-23 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-23 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1p-52 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-52 + 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0x1p-52 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-52 - 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-63 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-63 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p500 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p500 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p5000 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p5000 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (1.0 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-1000 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-10000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (1.0 + 0x1.fp-30 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0x1p500 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0x1p5000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0.25 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (1.0 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-1000 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-10000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (1.0 - 0x1.fp-30 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1p500 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1p5000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.5 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.5 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.5 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.5 - 0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.5 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 + +# catan +Test "Imaginary part of: catan (-0x0.fffffffffffff8p0 + 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-57 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-0x0.ffffffp0 + 0x1p-126 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x0.ffffffp0 + 0x1p-13 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-0x0.ffffffp0 - 0x1p-126 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 + 0x1p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 - 0x1p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 - 0x1p-57 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1.0000000000001p0 - 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (-0x1.000002p0 + 0x1p-126 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1.000002p0 - 0x1p-126 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1.000002p0 - 0x1p-13 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1.fp16383 - 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1p-1020 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1p-1020 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (-0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-16380 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1p-16380 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-0x1p-33 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-0x1p-33 + 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-0x1p-33 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-0x1p-33 - 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1p-54 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-54 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-57 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-57 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (-1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-2 - 3 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: catan (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x0.fffffffffffff8p0 + 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-57 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (0x0.ffffffp0 + 0x1p-126 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x0.ffffffp0 + 0x1p-13 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (0x0.ffffffp0 - 0x1p-126 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 + 0x1p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 - 0x1p-16382 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 - 0x1p-57 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1.0000000000001p0 - 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (0x1.000002p0 + 0x1p-126 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1.000002p0 - 0x1p-126 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1.000002p0 - 0x1p-13 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1.fp16383 - 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1p-1020 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1p-1020 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-16380 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1p-16380 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (0x1p-33 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (0x1p-33 + 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (0x1p-33 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (0x1p-33 - 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1p-54 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-54 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-57 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-57 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# catanh +Test "Imaginary part of: catanh (-0x0.ffffffffffffffffp0 + 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x0.ffffffffffffffffp0 - 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1.0000000000000002p0 + 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1.0000000000000002p0 - 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1.fp16383 - 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1p-126 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1p-126 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1p-126 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1p-126 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-13 + 0x1.000002p0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-13 - 0x1.000002p0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1p-16382 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-16382 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1p-16382 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-16382 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-27 + 0x1.0000000000001p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1p-27 - 0x1.0000000000001p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1p-57 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-57 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-1.0 + 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 + 0x1p-16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-1.0 + 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 + 0x1p-57 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 - 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 - 0x1p-16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-1.0 - 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 - 0x1p-57 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-2 - 3 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x0.ffffffffffffffffp0 + 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x0.ffffffffffffffffp0 - 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1.0000000000000002p0 + 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1.0000000000000002p0 - 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1.fp16383 - 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-126 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-126 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-126 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-126 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-13 + 0x0.ffffffp0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-13 - 0x0.ffffffp0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-16382 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-16382 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-16382 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-16382 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-27 + 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1p-27 - 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1p-57 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-57 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (1.0 + 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 + 0x1p-16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (1.0 + 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 + 0x1p-57 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (1.0 - 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-57 i)": +float: 1 +ifloat: 1 + +# cbrt +Test "cbrt (-0x1.bp+4)": +double: 1 +idouble: 1 +Test "cbrt (-0x4.189374bc6a7ecp-12)": +ildouble: 1 +ldouble: 1 +Test "cbrt (-0x4.189374bc6a7ef9ep-12)": +ildouble: 1 +ldouble: 1 +Test "cbrt (-0x4.18937p-12)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cbrt (0xf.ep-4)": +double: 1 +idouble: 1 + +# ccos +Test "Real part of: ccos (-0x2p+0 - 0x3p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x2.c5d4p+12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ccos (-0xcp-4 + 0x5.98p+4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x2.c5d4p+12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (-0xcp-4 - 0x5.98p+4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0x1p-120 + 0x8p-32 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0x4p-1076 + 0x5.ap+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0x4p-16436 + 0x5.8cap+12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0x8p-32 + 0x1p-120 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ccos (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x2.c5d4p+12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (0xcp-4 + 0x5.98p+4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x2.c5d4p+12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ccos (0xcp-4 - 0x5.98p+4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# ccosh +Test "Imaginary part of: ccosh (-0x2.c5d4p+12 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x2.c5d4p+12 - 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (-0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ccosh (-0x5.98p+4 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x2.c5d4p+12 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x2.c5d4p+12 - 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x5.8cap+12 + 0x4p-16436 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ccosh (0x5.98p+4 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ccosh (0x5.98p+4 - 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 + +# cexp +Test "Imaginary part of: cexp (+0 + 0x2.1e19e0c9bab24p+72 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (+0 + 0x2p+64 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.71p+12 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.71p+12 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.71p+12 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (-0x2.71p+12 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.71p+12 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.dp+8 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x5.fp+4 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0x1.f4p+8 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cexp (0x1.f4p+8 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cexp (0x5.8cap+12 + 0x4p-16436 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cexp (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 + +# clog +Test "Real part of: clog (+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 + 0x8p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d1598p-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d1598p-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d15ap-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x1.234566p-40 - 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x4p-1076 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x4p-1076 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x4p-16448 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x4p-16448 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x4p-16496 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x4p-16496 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (-0x8p-152 + 0xf.fffffp+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (-0x8p-152 - 0xf.fffffp+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-16448 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x8p-16448 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+124 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0xf.8p+16380 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 + 0x4p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 + 0x4p-16496 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x4p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x4p-16496 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234566p-60 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-60 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234568p-60 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234566p-60 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.23456789p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234568p-60 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000566p+0 + 0x4.8dp-12 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x1.000566p+0 + 0x4.8dp-12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c63p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c64p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c63p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c64p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed199p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bdfbf672a9da76bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bdf8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bdfbf6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdf8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdf8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdfbf672a9da76bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdf8p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdf8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdfbf672a9da76bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed199p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdf8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed199p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bep-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e08p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e0948788cb0c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e0949p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e1p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.c67eccp-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4ep-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e0948p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e0949p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b988790cep-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b988790cep-4 + 0xf.e6b4d1d7a6e0948p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a85944b988790cep-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944bap-4 + 0xf.e6b4d1d7a6e0948788cb0c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944bap-4 + 0xf.e6b4d1d7a6e1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a85944bap-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4d1d7a6e0949p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4dp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4ep-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e0948p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e0948788cb0c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e0949p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1p+0 + 0x4.8d1598p-12 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1p-16440 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1p-16440 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.0ce7b8p-4 + 0xf.de3a2f9df7a4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.0ce7b8p-4 + 0xf.de3a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a2f9df7a4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.0ce7bcp-4 + 0xf.de3a2f9df7a4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.0ce7bcp-4 + 0xf.de3a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a38p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cb2p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cb2p-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cb2p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cb2p-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a38p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a361243a89663e81e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a361243a89663e81e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a361243a89663e81e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a38p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42bp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42ap-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b798p-4 + 0xf.cd42bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2p-148 + 0x2p-148 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.2cdb84p-4 + 0xf.ae888f0455f6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.2cdb855bcb8d8p-4 + 0xf.ae888p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.2cdb855bcb8d8p-4 + 0xf.ae889p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab873d09e61e798p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab873d09e61e798p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e798p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.3b8f9p-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9p-4 + 0xf.ab873d09e61ep-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57c772fe5f777d04p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2e34p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2e34p-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2e34p-4 + 0xf.a0c58a83e57c772p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2e34p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c772fe5f777d04p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c772p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c59p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57c772fe5f777d04p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57c772fe5f777d04p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57c772p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c59p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c59p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab758p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab758p-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab758p-4 + 0xf.a0c58a83e57c772p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab758p-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58a83e57c772fe5f777d04p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57cp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e171p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d118p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d118p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d11bfdp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bcp-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bcp-4 + 0xf.8e3d7p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3501173c8004ccp-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d118p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d11bfd30b038eep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d619a8d118p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d619a8d11bfd30b038eep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d619a8d11bfd30b038eep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d619a8d11bfdp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d6p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d619a8d12p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d6p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d7p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d005dcbb5516d544p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d005dcbb5516d5479p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d08p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3d1b06d005dcbb5516d544p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34p-4 + 0xf.859b3d1b06d005dcbb5516d544p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34p-4 + 0xf.859b3d1b06d005dcbb5516d5479p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34p-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b3d1b06d005ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b3d1b06d005ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06d08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06d005ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06d08p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d005dcbb5516d544p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d08p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b4p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1af8e3ce8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1af8e3cfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1af8e3ce8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1af8e3cec09p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.0dbf7d40fe1bp-4 + 0xf.7a5c1af8e3cec09p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.0dbf8p-4 + 0xf.7a5c1af8e3cfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.0dbf8p-4 + 0xf.7a5c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e368078p-4 + 0xf.5f4a550c9d75e3bb1839d865f0dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e368078p-4 + 0xf.5f4a550c9d75e3bb1839d865f0dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e368078p-4 + 0xf.5f4a550c9d75e3cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209cp-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209cp-4 + 0xf.5f4a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e36807acb1e5214b209cp-4 + 0xf.5f4a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e36807acb1e5214b209dep-4 + 0xf.5f4a550c9d75e3cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e36807acb1e5214b209dep-4 + 0xf.5f4a550c9d76p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209ep-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209ep-4 + 0xf.5f4a550c9d75e3cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209ep-4 + 0xf.5f4a5p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209ep-4 + 0xf.5f4a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a550c9d75e3bb1839d865f4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a5p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d758p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d75e3bb1839d865f0dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d75e3bb1839d865fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d76p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d758p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d75e3bb1839d865f0dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d75e3bb1839d865f4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a5p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d75e3bb1839d865f4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d76p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a6p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x4.7017ap-4 + 0xf.5f4a550c9d758p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017ap-4 + 0xf.5f4a550c9d75e3bb1839d865f0dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017ap-4 + 0xf.5f4a550c9d75e3bb1839d865f4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017ap-4 + 0xf.5f4a550c9d75e3bb1839d865fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017ap-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.d9e8c8p-4 + 0xf.3f30281507d8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4.d9e8c8p-4 + 0xf.3f303p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.d9e8cp-4 + 0xf.3f30281507d8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x4.d9e8cp-4 + 0xf.3f303p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4p-1076 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-16448 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-16448 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-16496 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-16496 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.03p-4 + 0xf.31ep-4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c58p-4 + 0xf.22363bf989d98p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22363bf989d98p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22363bf989dap-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22364p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22363bf989d9b5cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb14p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb14p-4 + 0xf.22364p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363bf989d98p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363bf989d9b5cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb1p-4 + 0xf.22364p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x5.318c6p-4 + 0xf.22363bf989d98p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c6p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c6p-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.b06b680ea2ccp-4 + 0xe.f452b965da9fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.b06b680ea2ccp-4 + 0xe.f452bp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452b965da9fp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x5.b06b7p-4 + 0xe.f452b965da9fp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x5.b06b7p-4 + 0xe.f452bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.b06b7p-4 + 0xe.f452bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x5.ba8cep-4 + 0xe.f0742p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.dbd1p-4 + 0xe.e387ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.02fd5037c4792efp-4 + 0xe.d3e21p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd5037c4794p-4 + 0xe.d3e2086dcca8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e21p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e2p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e2086dcca8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e21p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x6.02fd58p-4 + 0xe.d3e2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.02fd5p-4 + 0xe.d3e21p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x6.02fd5p-4 + 0xe.d3e2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.02fd5p-4 + 0xe.d3e2p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2018b4288p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd125ef6f796a57d2p-4 + 0xe.c97c2018b428p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125ef6f796a57d2p-4 + 0xe.c97c3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c2018b428p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd128p-4 + 0xe.c97c2p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428257p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b4288p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c3p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x6.1c643p-4 + 0xe.c97c2018b4288p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cb019p-4 + 0xe.c36a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a599a86ba8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a599a86bbp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a599a86ba8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a599a86ba8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a599a86baf8febep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a599a86ba8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a599a86baf8fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a599a86baf9p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a6p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a599a86ba8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a5p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86ba8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86baf9p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.59feap-4 + 0xe.af6f9p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b48p-4 + 0xe.8893cbb44925p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.b10b48p-4 + 0xe.8893cbb44925p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b48p-4 + 0xe.8893dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520214p-4 + 0xe.8893cbb44925p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520214p-4 + 0xe.8893cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520217b6p-4 + 0xe.8893cbb449253a1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cbb449253a1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cbb44925p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cbb44925p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893dp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb449258p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.b10b5p-4 + 0xe.8893cbb449258p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb44925p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e510a95p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655fp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a94307614f1a74p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a95p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349086p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349086p-4 + 0xd.e655e694e510a94307614f1a74p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349086p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349086p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349086p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655e694e510a94307614f1a74p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e510a95p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e5108p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca928p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca928p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca928p-4 + 0xd.e655ep-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10d384p-4 + 0xd.e2d65939160b31066ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca10d384p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d66p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160b311p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160b31p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160b31p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65939160b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65939160bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d66p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d66p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65939160b31p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65939160b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65939160bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b31066ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b31066ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d8p-4 + 0xd.e2d66p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160b311p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160b311p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160bp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f2c8dp-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f4b083cb0bp-4 + 0xd.e1bf04f3688p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bf04f3688p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f4b088p-4 + 0xd.e1bfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f4b08p-4 + 0xd.e1bf04f3688p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x8.88faep-4 + 0xd.888bcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.88fafp-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.479468b09a37p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.47946p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.47946p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x8.ecbf8p-4 + 0xd.479468b09a37p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x8.ecbf8p-4 + 0xd.479468b09a37p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x8.ecbf8p-4 + 0xd.47946p-4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.ecbf9p-4 + 0xd.479468b09a37p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x8.ecbf9p-4 + 0xd.479468b09a37p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x8p-1076 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-1076 + 0x8p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-1076 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 + 0x8p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8p-152 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8p-152 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-16448 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-16448 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.a9cp-4 + 0xc.c0ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.a9cp-4 + 0xc.c0ap-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b4085cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b408p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b41p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b968a66p-4 + 0xc.b9317c470b41p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b968a66p-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b969p-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317c470b41p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b387p-4 + 0xc.b9317c470b408p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x9.b57bp-4 + 0xc.b7b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bap-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bap-4 + 0xc.ae53ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7dp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53ep-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53de1d5a7c8b1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53de1d5a7c8p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53dp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53ep-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8b0f6df3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8b0f6df3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53dp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53ep-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.c1b6bp-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6bp-4 + 0xc.ae53dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c18p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c199f62998856b8008p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c199f62998856b8008p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b8008p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b8008p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c2p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867932966df58ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966dfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342ep-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df58ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624348p-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966dfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.afc57p-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc58p-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e867932966dfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e8679p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e867ap-4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.b96da19075eap-8 + 0xf.fc67818f89d2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.b96da19075eap-8 + 0xf.fc679p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.b96da19075eap-8 + 0xf.fc679p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc67818f89d2p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc678p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.b96dap-8 + 0xf.fc678p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc679p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.b96dbp-8 + 0xf.fc67818f89d2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51cbp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51ccp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.e7de8p-4 + 0xb.b51cb9f04d4dp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.e7de8p-4 + 0xb.b51cbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.e7de9p-4 + 0xb.b51cb9f04d4dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.e7de9p-4 + 0xb.b51cbp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.e7de9p-4 + 0xb.b51cbp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.e7de9p-4 + 0xb.b51ccp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a043561d0f42p-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f24p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f25p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f24p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f24p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a68p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f24p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f25p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f25p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xb.263a77543bp-4 + 0xb.79c9ap-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xb.263a77543bp-4 + 0xb.79c9ap-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xb.263a7p-4 + 0xb.79c9ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xb.263a7p-4 + 0xb.79c9bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+124 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.8p+16380 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x4p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x4p-16496 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x4p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x4p-16496 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xf.ffffffffffff8p+1020 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xf.ffffffffffff8p+1020 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0xf.ffffffffffff8p-1004 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffffffffffffp-15004 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffp-104 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# clog10 +Test "Imaginary part of: clog10 (-0 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-2 - 3 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-2 - 3 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-3 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-3 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + 1 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + inf i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-inf - 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf - 1 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1.234566p-50 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1.234566p-60 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1.fffffep+127 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 + 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 + 0x1p+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1415bcaf2105940d49a636e98ae59p-115 + 0x7e6a150adfcd1b0921d44b31f40f4p-115 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x15cfbd1990d1ffp-53 + 0x176a3973e09a9ap-53 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x3f96469050f650869c2p-75 + 0x6f16b2c9c8b05988335p-75 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x4d9c37e2b5cb4533p-63 + 0x65c98be2385a042ep-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x55cb6d0c83af5p-55 + 0x7fe33c0c7c4e90p-55 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x602fd5037c4792efp-64 + 0xed3e2086dcca80b8p-64 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x6241ef0da53f539f02fad67dabp-106 + 0x3fb46641182f7efd9caa769dac0p-106 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x6b10b4f3520217b6p-64 + 0xe8893cbb449253a1p-64 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0xdb85c467ee2aadd5f425fe0f4b8dp-114 + 0x3e83162a0f95f1dcbf97dddf410eap-114 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0xfd95243681c055c2632286921092p-113 + 0x1bccabcd29ca2152860ec29e34ef7p-113 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (3 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (3 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (inf + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (inf - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# cos +Test "cos (-0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos (-0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 +Test "cos (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0x1.921fb54442d18p+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0x1p+120)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos (0x1p+28)": +ildouble: 1 +ldouble: 1 +Test "cos (0x2.182a4705ae6cb08cb7665c1eacf6p+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0x2.182a4705ae6ccp+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0x7p+0)": +float: 1 +ifloat: 1 +Test "cos (0x8p+124)": +float: 1 +ifloat: 1 +Test "cos (0xap+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos (0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos (0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 + +# cos_downward +Test "cos_downward (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-16496)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.000002p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x1.000004p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x1.000006p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x1.0c1522p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.0c1524p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x1.921fb4p+0)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18469898cc517018p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18469898cc51701b8p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18469898cc51702p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1.921fb54442d19p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb6p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x1p+120)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1p+28)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a44p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x2.182a4705ae6cap+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eacf4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eacf6p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb09p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6ccp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a48p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x3p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_downward (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-16496)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p+0)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x9p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xa.217bap+12)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xap+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xc.d4966p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0xc.d4967p-4)": +float: 1 +ifloat: 1 +Test "cos_downward (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.fffffffffffffffp+16380)": +ildouble: 2 +ldouble: 2 +Test "cos_downward (0xf.fffffp+124)": +double: 1 +idouble: 1 + +# cos_tonearest +Test "cos_tonearest (-0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (-0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x1.921fb54442d18p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x1p+120)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x1p+28)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x2.182a4705ae6cb08cb7665c1eacf6p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x2.182a4705ae6ccp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x7p+0)": +float: 1 +ifloat: 1 +Test "cos_tonearest (0x8p+124)": +float: 1 +ifloat: 1 +Test "cos_tonearest (0xap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 + +# cos_towardzero +Test "cos_towardzero (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-16496)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000002p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb54442d18469898cc51701b8p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.921fb54442d18469898cc51701b9p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb6p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1p+120)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (0x2.182a44p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6cap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.182a48p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-16496)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p+1020)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xa.217bap+12)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xf.fffffp+124)": +double: 1 +idouble: 1 + +# cos_upward +Test "cos_upward (-0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (-0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (-0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.000002p+0)": +float: 1 +ifloat: 1 +Test "cos_upward (0x1.000004p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x1.000005bc7d86dp+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.000006p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x1.0c1522p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x1.0c152382d7366p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.0c1524p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.921fb4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18469898cc517018p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18469898cc51701b9p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18469898cc51702p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x1.921fb6p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1p+0)": +float: 1 +ifloat: 1 +Test "cos_upward (0x1p+120)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1p+28)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a44p+0)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6cap+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eacf4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eacf6p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb08cp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb09p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a48p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.1e19e4p+72)": +float: 1 +ifloat: 1 +Test "cos_upward (0x2p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (0x3p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x4p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x5p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x6p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x7p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+124)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x9p+0)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xa.217bap+12)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0xap+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xc.d4966p-4)": +float: 1 +ifloat: 1 +Test "cos_upward (0xc.d4967p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0xf.ffffcp+124)": +double: 1 +idouble: 1 +Test "cos_upward (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 + +# cosh +Test "cosh (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh (-0x2.c5d374p+12)": +ldouble: 1 +Test "cosh (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh (-0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh (-0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh (-0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh (0x2.c5d374p+12)": +ldouble: 1 +Test "cosh (0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh (0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh (0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh (0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh (0x2.c679dp+8)": +double: 1 +idouble: 1 + +# cosh_downward +Test "cosh_downward (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 2 +Test "cosh_downward (-0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 1 +Test "cosh_downward (-0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 2 +Test "cosh_downward (-0x2.c5d37700c6bbp+12)": +ldouble: 2 +Test "cosh_downward (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_downward (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (-0x5.96a7ep+4)": +float: 1 +ifloat: 1 +Test "cosh_downward (0x1.6p+4)": +double: 1 +idouble: 1 +Test "cosh_downward (0x1.7p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_downward (0x2.c5d37700c6bb03a4p+12)": +ldouble: 2 +Test "cosh_downward (0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 1 +Test "cosh_downward (0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 2 +Test "cosh_downward (0x2.c5d37700c6bbp+12)": +ldouble: 2 +Test "cosh_downward (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x5.96a7ep+4)": +float: 1 +ifloat: 1 + +# cosh_tonearest +Test "cosh_tonearest (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (-0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_tonearest (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh_tonearest (-0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh_tonearest (-0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh_tonearest (-0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_tonearest (0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh_tonearest (0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh_tonearest (0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh_tonearest (0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (0x2.c679dp+8)": +double: 1 +idouble: 1 + +# cosh_towardzero +Test "cosh_towardzero (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 2 +Test "cosh_towardzero (-0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 1 +Test "cosh_towardzero (-0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 2 +Test "cosh_towardzero (-0x2.c5d37700c6bbp+12)": +ldouble: 2 +Test "cosh_towardzero (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x5.96a7ep+4)": +float: 1 +ifloat: 1 +Test "cosh_towardzero (0x1.6p+4)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x1.7p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (0x2.c5d37700c6bb03a4p+12)": +ldouble: 2 +Test "cosh_towardzero (0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 1 +Test "cosh_towardzero (0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 2 +Test "cosh_towardzero (0x2.c5d37700c6bbp+12)": +ldouble: 2 +Test "cosh_towardzero (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x5.96a7ep+4)": +float: 1 +ifloat: 1 + +# cosh_upward +Test "cosh_upward (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c5d374p+12)": +ldouble: 3 +Test "cosh_upward (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh_upward (-0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 2 +Test "cosh_upward (-0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh_upward (-0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh_upward (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x5.96a7e8p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x5.96a7ep+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "cosh_upward (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x1.8p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x2.c5d374p+12)": +ldouble: 3 +Test "cosh_upward (0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh_upward (0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 2 +Test "cosh_upward (0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh_upward (0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh_upward (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_upward (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (0x3.2p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (0x5.96a7e8p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (0x5.96a7ep+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +# cpow +Test "Real part of: cpow (0x2p+0 + +0 i, 0xap+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +double: 1 +float: 5 +idouble: 1 +ifloat: 5 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +float: 2 +ifloat: 2 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, +0 + 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cpow (0xcp-4 + 0x1.4p+0 i, +0 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + 0x1p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 +ildouble: 4 +ldouble: 4 + +# csin +Test "Real part of: csin (-0.75 + 11357.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (-0.75 + 710.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (-0.75 + 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csin (-0.75 + 89.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (-0.75 - 11357.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (-0.75 - 710.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (-0.75 - 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csin (-0.75 - 89.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csin (-2 - 3 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 + 11357.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 + 710.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 + 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csin (0.75 + 89.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 - 11357.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 - 710.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 - 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csin (0.75 - 89.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0x1p-1074 + 1440 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (0x1p-16434 + 22730 i)": +ildouble: 1 +ldouble: 1 + +# csinh +Test "Imaginary part of: csinh (-11357.25 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-11357.25 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (-2 - 3 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-2 - 3 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (-89.5 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-89.5 + 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (-89.5 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-89.5 - 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (11357.25 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (11357.25 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (22730 + 0x1p-16434 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (710.5 + 0.75 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (710.5 - 0.75 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (89.5 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (89.5 + 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (89.5 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (89.5 - 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# csqrt +Test "Imaginary part of: csqrt (-0 - 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x2p+0 + 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4.0000000000000000000000000004p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4.0000000000000000000000000004p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000008p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x4.0000000000000008p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000008p-16384 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000004p-1024 - 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x4.0000000000004p-1024 - 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.000008p-128 - 0x4.000008p-128 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (-0x4p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4p-16384 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-16440 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-16440 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-5000 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000000000000000004p-16384 + 0x4.0000000000000000000000000004p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000000000000000004p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000000000000000004p-16384 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0x4.0000000000000000000000000004p-16384 + 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000000000000000004p-16384 + 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0x4.0000000000000008p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000008p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000008p-16384 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000004p-1024 + 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.000008p-128 + 0x4.000008p-128 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x4p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-16384 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-16448 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-16496 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+1020 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+1020 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+124 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+16380 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+16380 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p-16448 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.8p+16380 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0xf.8p+16380 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.8p+16380 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 + +# ctan +Test "Real part of: ctan (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb54442d18p+0 + +0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p+0 + 0x1.63p+8 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p+0 + 0x2.dp+4 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1p+0 + 0x2.fp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0x8p+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x8p+124 + 0x1p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x8p+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x8p+16380 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + +# ctan_downward +Test "Real part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +double: 3 +idouble: 3 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1p+0 + 0x2.dp+4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x8p+1020 + 0x1p+0 i)": +double: 6 +idouble: 6 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0x8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x8p+16380 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 3 +idouble: 3 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0xf.fffffp+124 + 0x1p+0 i)": +double: 5 +float: 5 +idouble: 5 +ifloat: 5 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 + +# ctan_tonearest +Test "Real part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d18p+0 + +0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x1.63p+8 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x2.dp+4 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x2.fp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x8p+124 + 0x1p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x8p+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x8p+16380 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + +# ctan_towardzero +Test "Real part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.dp+4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x8p+1020 + 0x1p+0 i)": +double: 5 +idouble: 5 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x8p+16380 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 + +# ctan_upward +Test "Real part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + +0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63ap+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1p+0 + 0x1.63p+8 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+8 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.6dp+8 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": +double: 2 +idouble: 2 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x8p+124 + 0x1p+0 i)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_upward (0x8p+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_upward (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0xf.fffffp+124 + 0x1p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 2 +ldouble: 2 + +# ctanh +Test "Imaginary part of: ctanh (+0 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c234c4c6628b80dcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168cp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdap-4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "Imaginary part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x1.63p+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0x8p+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0x8p+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+124 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x1p+0 + 0x8p+16380 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x2.dp+4 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x2.fp+4 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-16448 + 0x1.921fb4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 + +# ctanh_downward +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234c4c6628b80cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234c4c6628b80dc8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234c4c6628b80dcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": +double: 4 +idouble: 4 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+1020 i)": +double: 6 +idouble: 6 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +double: 3 +float: 2 +idouble: 3 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+16380 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 3 +idouble: 3 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.fffffp+124 i)": +double: 4 +float: 5 +idouble: 4 +ifloat: 5 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x2.dp+4 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (1.0 + 0x1.fp-10 i)": + +# ctanh_tonearest +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb4p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 + 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (1.0 + 0x1.fp-30 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 + 0x1p500 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 + 0x1p5000 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c234c4c6628b80dcp-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 - 0.25 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c8p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (1.0 - 0.5 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168cp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdap-4 i)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Imaginary part of: casin (1.0 - 0x1.fp-10 i)": +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdbp-4 i)": float: 1 ifloat: 1 +Test "Real part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "Imaginary part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1.63p+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1.6dp+8 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 - 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (1.0 - 0x1.fp-30 i)": +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 - 0x1p500 i)": +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+124 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+16380 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 - 0x1p5000 i)": +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": ildouble: 1 ldouble: 1 - -# casinh -Test "Imaginary part of: casinh (-0.0 + 0x0.fffffffffffff8p0 i)": +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.0 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.0 - 0x0.fffffffffffff8p0 i)": +Test "Imaginary part of: ctanh_tonearest (0x2.dp+4 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x2.fp+4 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.25 + 1.0 i)": +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.25 - 1.0 i)": +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb6p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 + +0 i)": +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0.5 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 + 0x1.fp-16385 i)": +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 + 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 + 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 + 0x1p-23 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casinh (-0.5 + 0x1p-23 i)": +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: casinh (-0.5 + 0x1p-52 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0.5 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0.5 + 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 + 1.0 i)": +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casinh (-0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0.5 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 0x1.fp-16385 i)": +Test "Real part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 0x1p-23 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casinh (-0.5 - 0x1p-23 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: casinh (-0.5 - 0x1p-52 i)": -float: 1 -ifloat: 1 +Test "Real part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.5 - 0x1p-52 i)": +Test "Imaginary part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb6p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 1.0 i)": +Test "Real part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casinh (-0.5 - 1.0 i)": + +# ctanh_towardzero +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb4p+0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casinh (-0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234c4c6628b80cp-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234c4c6628b80dc8p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234c4c6628b80dcp-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0.0 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c235p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0.0 i)": +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdap-4 i)": +float: 2 +ifloat: 2 +Test "Real part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctanh_towardzero (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": +Test "Real part of: ctanh_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Imaginary part of: ctanh_towardzero (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+1020 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffp0 + 0x1p-23 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (-0x0.ffffffp0 - 0x1p-23 i)": +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+1020 i)": +double: 5 +idouble: 5 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": double: 1 idouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +double: 3 +float: 2 +idouble: 3 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+16380 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Real part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": +double: 3 +float: 2 +idouble: 3 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 + 0.0 i)": +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 + 0x1.fp-16385 i)": +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 + 0x1p-63 i)": +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb6p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000000002p0 + 0x1p-63 i)": +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 - 0.0 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 - 0x1.fp-16385 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 - 0x1p-63 i)": +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000000002p0 - 0x1p-63 i)": +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000001p0 + 0.0 i)": +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000001p0 + 0x1.fp-1025 i)": +Test "Real part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000001p0 + 0x1p-52 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000001p0 - 0.0 i)": +Test "Real part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000001p0 - 0x1.fp-1025 i)": +Test "Real part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d19p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000001p0 - 0x1p-52 i)": +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb6p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1p-23 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Real part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1p-23 i)": +Test "Imaginary part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-10 + 1.0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1.fp-10 - 1.0 i)": + +# ctanh_upward +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb4p+0 i)": float: 1 ifloat: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1.fp-129 + 0.5 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-129 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-129 - 0.5 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-129 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb6p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234c4c6628b80cp-4 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234c4c6628b80dc8p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-30 + 1.0 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-30 - 1.0 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c235p-4 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-105 + 0.5 i)": +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdap-4 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1p-105 - 0.5 i)": +Test "Imaginary part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Real part of: ctanh_upward (-0xc.35p+12 + 0xc.35p+12 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1p-112 + 0.5 i)": +Test "Real part of: ctanh_upward (-0xc.35p+12 - 0xc.35p+12 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-112 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Real part of: ctanh_upward (0x1.63ap+12 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-112 - 0.5 i)": +Test "Real part of: ctanh_upward (0x1.63p+12 + 0x1p+0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-112 - 0.5 i)": +Test "Real part of: ctanh_upward (0x1.63p+8 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1.63p+8 + 0x1p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Real part of: ctanh_upward (0x1.6dp+8 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": +double: 2 +idouble: 2 +ildouble: 5 +ldouble: 5 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.fffffp+124 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 + 0.5 i)": +Test "Real part of: ctanh_upward (0x2.fp+4 + 0x1p+0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb4p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-23 + 0.5 i)": +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 - 0.5 i)": +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb6p+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-23 - 0.5 i)": +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb6p+0 i)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 - 0x1.000002p0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": float: 1 ifloat: 1 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-52 + 0.5 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (-0x1p-52 + 0x0.fffffffffffff8p0 i)": +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d18p+0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-0x1p-52 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d19p+0 i)": double: 1 idouble: 1 -Test "Real part of: casinh (-0x1p-52 - 0x0.fffffffffffff8p0 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": double: 1 +float: 3 idouble: 1 -Test "Real part of: casinh (-0x1p-63 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": +ifloat: 3 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-63 - 0.5 i)": +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p500 + 1.0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p500 - 1.0 i)": +Test "Real part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p5000 + 1.0 i)": +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p5000 - 1.0 i)": +Test "Real part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb6p+0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + +0 i)": +Test "Real part of: ctanh_upward (0xc.35p+12 + 0xc.35p+12 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0.25 i)": +Test "Real part of: ctanh_upward (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0.5 i)": -double: 1 -idouble: 1 +Test "Real part of: ctanh_upward (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_upward (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0.5 i)": + +# erf +Test "erf (-0x7.ffffffffffffcp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-10 i)": +Test "erf (0x1.4p+0)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-10 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-100 i)": -double: 1 + +# erfc +Test "erfc (-0x8p-4)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-1000 i)": -double: 1 -idouble: 1 +Test "erfc (0x1.ap+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-10000 i)": +Test "erfc (0x1.bp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 +Test "erfc (0x1.cp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-129 i)": +Test "erfc (0x2p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-30 i)": +Test "erfc (0x3.ee6078p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-30 i)": +Test "erfc (0x4.2p+0)": double: 1 idouble: 1 +Test "erfc (0x6.4p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1p500 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1p5000 i)": +Test "erfc (0x6.a8p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0 i)": -double: 1 +Test "erfc (0x7.fe8008p+0)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0.25 i)": +Test "erfc (0x7.fffd6p+0)": float: 1 ifloat: 1 +Test "erfc (0x7.ffff2p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0.5 i)": +Test "erfc (0xcp-4)": +float: 1 +ifloat: 1 + +# exp10 +Test "exp10 (-0x1.31p+8)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-10 i)": +Test "exp10 (-0x1p+0)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-10 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-100 i)": +Test "exp10 (-0x2.4p+4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-1000 i)": -double: 1 -idouble: 1 +Test "exp10 (0x1.344p+12)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-10000 i)": +Test "exp10 (0x1.348e45573a1dd72cp+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 +Test "exp10 (0x1.348e46p+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-129 i)": +Test "exp10 (0x2.4p+4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 +Test "exp10 (0x3p+0)": +double: 1 +idouble: 1 + +# exp10_downward +Test "exp10_downward (-0x1.31p+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-16385 i)": +Test "exp10_downward (-0x1.344p+12)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-30 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "exp10_downward (-0x1p+0)": +ildouble: 2 +ldouble: 2 +Test "exp10_downward (-0x2.4p+4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-30 i)": -double: 1 -idouble: 1 +Test "exp10_downward (0x1.31p+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1p500 i)": +Test "exp10_downward (0x1.344p+12)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1p5000 i)": +Test "exp10_downward (0x1.348e44p+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_downward (0x1.348e45573a1dd72cp+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 + +0 i)": -double: 1 -idouble: 1 +Test "exp10_downward (0x1.348e45573a1ddp+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 +Test "exp10_downward (0x1.348e45573a1dep+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 + 0x1.fp-129 i)": +Test "exp10_downward (0x2.4p+4)": double: 1 idouble: 1 +ildouble: 2 +ldouble: 2 +Test "exp10_downward (0x3p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 + 0x1.fp-16385 i)": +Test "exp10_downward (0xcp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 - 0 i)": + +# exp10_tonearest +Test "exp10_tonearest (-0x1.31p+8)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.5 - 0x1.fp-1025 i)": +Test "exp10_tonearest (-0x1p+0)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.5 - 0x1.fp-129 i)": +Test "exp10_tonearest (-0x2.4p+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 - 0x1.fp-16385 i)": +Test "exp10_tonearest (0x1.344p+12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.0 + 0x0.fffffffffffff8p0 i)": +Test "exp10_tonearest (0x1.348e45573a1dd72cp+8)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.0 + 0x0.ffffffffffffffffp0 i)": +Test "exp10_tonearest (0x1.348e46p+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "exp10_tonearest (0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_tonearest (0x3p+0)": +double: 1 +idouble: 1 + +# exp10_towardzero +Test "exp10_towardzero (-0x1.31p+8)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.0 - 0x0.fffffffffffff8p0 i)": +Test "exp10_towardzero (-0x1.344p+12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.0 - 0x0.ffffffffffffffffp0 i)": +Test "exp10_towardzero (-0x1p+0)": +ildouble: 2 +ldouble: 2 +Test "exp10_towardzero (-0x2.4p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "exp10_towardzero (0x1.31p+8)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.25 + 1.0 i)": +Test "exp10_towardzero (0x1.344p+12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.25 - 1.0 i)": +Test "exp10_towardzero (0x1.348e44p+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_towardzero (0x1.348e45573a1dd72cp+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + +0 i)": -float: 1 -ifloat: 1 +Test "exp10_towardzero (0x1.348e45573a1ddp+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + 0x1.fp-1025 i)": +Test "exp10_towardzero (0x1.348e45573a1dep+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 +Test "exp10_towardzero (0x2.4p+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "exp10_towardzero (0x3p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + 0x1.fp-16385 i)": +Test "exp10_towardzero (0xcp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 + 0x1p-112 i)": + +# exp10_upward +Test "exp10_upward (-0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_upward (-0x1.344p+12)": float: 1 ifloat: 1 -Test "Real part of: casinh (0.5 + 0x1p-23 i)": +Test "exp10_upward (-0x1.86ap+16)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casinh (0.5 + 0x1p-23 i)": +Test "exp10_upward (-0x2.4p+4)": +ildouble: 1 +ldouble: 1 +Test "exp10_upward (-0xf.424p+16)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: casinh (0.5 + 0x1p-52 i)": +Test "exp10_upward (-0xf.fffffp+124)": float: 1 ifloat: 1 +Test "exp10_upward (0x1.31p+8)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.5 + 0x1p-52 i)": +Test "exp10_upward (0x1.344p+12)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x1.348e44p+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 - 0 i)": -float: 1 -ifloat: 1 +Test "exp10_upward (0x1.348e45573a1dd72cp+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x1.348e45573a1ddp+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x1.348e45573a1dep+8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0x1.fp-1025 i)": +Test "exp10_upward (0x1.348e46p+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x2.4p+4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0x1.fp-129 i)": +Test "exp10_upward (0x3p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0xcp-4)": +ildouble: 2 +ldouble: 2 + +# exp2 +Test "exp2 (0x6.48p+4)": +ildouble: 1 +ldouble: 1 + +# exp_downward +Test "exp_downward (0x2p+0)": +double: 1 +idouble: 1 +Test "exp_downward (0x3p+0)": +double: 1 +idouble: 1 +Test "exp_downward (0x5.8b9028p+4)": +double: 1 +idouble: 1 +Test "exp_downward (0xcp-4)": +double: 1 +idouble: 1 + +# exp_towardzero +Test "exp_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "exp_towardzero (0x3p+0)": +double: 1 +idouble: 1 +Test "exp_towardzero (0x5.8b9028p+4)": +double: 1 +idouble: 1 +Test "exp_towardzero (0xcp-4)": +double: 1 +idouble: 1 + +# exp_upward +Test "exp_upward (-0x2.e870a4p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.e870a7e5e88c2p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.e870a7e5e88cp+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.e870a8p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.ebe224p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.ebe227861639p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.ebe228p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x4.d2p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "exp_upward (-0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "exp_upward (0x1p+0)": +double: 1 +idouble: 1 +Test "exp_upward (0x2.c5cp+8)": +double: 1 +idouble: 1 +Test "exp_upward (0x3.2p+4)": +double: 1 +idouble: 1 + +# expm1 +Test "expm1 (-0x1p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0x1.fp-16385 i)": +Test "expm1 (-0x2.6p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 - 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 - 0x1p-23 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casinh (0.5 - 0x1p-23 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: casinh (0.5 - 0x1p-52 i)": -float: 1 -ifloat: 1 +Test "expm1 (-0x2.cp+4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.5 - 0x1p-52 i)": +Test "expm1 (-0x4.ep+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.5 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 +Test "expm1 (-0x4.fp+4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.75 + 1.25 i)": +Test "expm1 (-0x8p-32)": +ildouble: 1 +ldouble: 1 +Test "expm1 (0x1.f4p+8)": +double: 1 +idouble: 1 +Test "expm1 (0x1p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "expm1 (0xcp-4)": +double: 1 +idouble: 1 + +# expm1_downward +Test "expm1_downward (-0x1.1p+4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +Test "expm1_downward (-0x1p-100)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +Test "expm1_downward (-0x1p-32)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": +Test "expm1_downward (-0x1p-64)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +Test "expm1_downward (-0x2.4p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "expm1_downward (-0x2.dp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +Test "expm1_downward (-0x2.ep+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +Test "expm1_downward (-0x4.bp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "expm1_downward (-0x4p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0.0 i)": +Test "expm1_downward (0x1.f4p+8)": +double: 1 +idouble: 1 +Test "expm1_downward (0x3.2p+4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "expm1_downward (0x7.fp+4)": +double: 1 +idouble: 1 + +# expm1_tonearest +Test "expm1_tonearest (-0x1p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": +Test "expm1_tonearest (-0x2.6p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "expm1_tonearest (-0x2.cp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0.0 i)": +Test "expm1_tonearest (-0x4.ep+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": +Test "expm1_tonearest (-0x4.fp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "expm1_tonearest (-0x8p-32)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffp0 + 0x1p-23 i)": +Test "expm1_tonearest (0x1.f4p+8)": double: 1 idouble: 1 -Test "Real part of: casinh (0x0.ffffffp0 - 0x1p-23 i)": +Test "expm1_tonearest (0x1p+0)": double: 1 +float: 1 idouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +ifloat: 1 +Test "expm1_tonearest (0xcp-4)": +double: 1 +idouble: 1 + +# expm1_towardzero +Test "expm1_towardzero (-0x1.1p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "expm1_towardzero (-0x1p-100)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "expm1_towardzero (-0x1p-32)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "expm1_towardzero (-0x1p-64)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "expm1_towardzero (-0x2.4p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "expm1_towardzero (-0x2.dp+4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "expm1_towardzero (-0x2.ep+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 + 0.0 i)": +Test "expm1_towardzero (-0x4.bp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 + 0x1.fp-16385 i)": +Test "expm1_towardzero (-0x4.fp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 + 0x1p-63 i)": +Test "expm1_towardzero (-0x4p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000000002p0 + 0x1p-63 i)": +Test "expm1_towardzero (-0x4p-52)": +float: 1 +ifloat: 1 +Test "expm1_towardzero (-0x8p-32)": +float: 1 +ifloat: 1 +Test "expm1_towardzero (0x1.f4p+8)": +double: 1 +idouble: 1 +Test "expm1_towardzero (0x3.2p+4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "expm1_towardzero (0x7.fp+4)": +double: 1 +idouble: 1 + +# expm1_upward +Test "expm1_upward (-0x1.1p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 - 0.0 i)": +Test "expm1_upward (-0x1p-100)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 - 0x1.fp-16385 i)": +Test "expm1_upward (-0x1p-32)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 - 0x1p-63 i)": +Test "expm1_upward (-0x1p-64)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000000002p0 - 0x1p-63 i)": +Test "expm1_upward (-0x2.4p+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000001p0 + 0.0 i)": +Test "expm1_upward (-0x2.dp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000001p0 + 0x1.fp-1025 i)": +Test "expm1_upward (-0x2.ep+4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000001p0 + 0x1p-52 i)": +Test "expm1_upward (-0x4.bp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000001p0 - 0.0 i)": +Test "expm1_upward (-0x4.fp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000001p0 - 0x1.fp-1025 i)": +Test "expm1_upward (-0x4p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000001p0 - 0x1p-52 i)": +Test "expm1_upward (-0x4p-52)": +float: 1 +ifloat: 1 +Test "expm1_upward (-0x8p-32)": +float: 1 +ifloat: 1 +Test "expm1_upward (0x1p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.000002p0 + 0x1p-23 i)": +Test "expm1_upward (0x1p-100)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (0x1.000002p0 - 0x1p-23 i)": +Test "expm1_upward (0x1p-32)": +float: 1 +ifloat: 1 +Test "expm1_upward (0x1p-64)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0x1.fp-10 + 1.0 i)": +Test "expm1_upward (0x4p-52)": float: 1 ifloat: 1 +Test "expm1_upward (0x7.fp+4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-10 - 1.0 i)": +Test "expm1_upward (0x8p-32)": float: 1 ifloat: 1 + +# gamma +Test "gamma (-0x1p-20)": +double: 1 +idouble: 1 +Test "gamma (-0x1p-40)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": +Test "gamma (-0x1p-64)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-129 + 0.5 i)": +Test "gamma (-0x2p-16)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: casinh (0x1.fp-129 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0x1.fp-129 - 0.5 i)": +ifloat: 1 +Test "gamma (-0x4p-12)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (0x1.fp-129 - 1.0 i)": +Test "gamma (-0x4p-32)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "gamma (-0x8p-28)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "gamma (-0x8p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "gamma (-0x8p-8)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "gamma (0x1.3333333333333332p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-30 + 1.0 i)": +Test "gamma (0x1.3333333333333333333333333333p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-30 - 1.0 i)": +Test "gamma (0x1p-60)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (0x1.fp127 + 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (0x1.fp16383 + 0x1.fp16383 i)": +Test "gamma (0x4p-12)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-105 + 0.5 i)": +Test "gamma (0x4p-32)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "gamma (0x4p-72)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "gamma (0x8p-8)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-105 - 0.5 i)": -double: 1 -idouble: 1 +Test "gamma (0xb.3333333333333333333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "gamma (0xb.333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "gamma (0xb.3333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-112 + 0.5 i)": +Test "gamma (0xb.333333333333p-4)": double: 1 idouble: 1 +Test "gamma (0xb.33333p-4)": +double: 1 +idouble: 1 + +# hypot +Test "hypot (-0xb.3333333333333333333333333338p-4, -0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-112 + 0.5 i)": +Test "hypot (-0xb.3333333333333333333333333338p-4, 0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "hypot (-0xb.333333333333333333333333333p-4, -0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-112 - 0.5 i)": -double: 1 -idouble: 1 +Test "hypot (-0xb.333333333333333333333333333p-4, 0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-112 - 0.5 i)": +Test "hypot (-0xb.33333333333333333333333334p-4, -0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "hypot (-0xb.33333333333333333333333334p-4, 0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "hypot (-0xb.3333333333333333333333333p-4, -0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "hypot (-0xb.3333333333333333333333333p-4, -0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 + 0.5 i)": -double: 1 -idouble: 1 +Test "hypot (-0xb.3333333333333333333333333p-4, 0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-23 + 0.5 i)": +Test "hypot (-0xb.3333333333333333333333333p-4, 0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": +Test "hypot (-0xb.333333333333333p-4, -0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "hypot (-0xb.333333333333333p-4, -0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 - 0.5 i)": -double: 1 -idouble: 1 +Test "hypot (-0xb.333333333333333p-4, -0xc.66666666666666666666666668p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-23 - 0.5 i)": +Test "hypot (-0xb.333333333333333p-4, 0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +Test "hypot (-0xb.333333333333333p-4, 0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "hypot (-0xb.333333333333333p-4, 0xc.66666666666666666666666668p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-52 + 0.5 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (0x1p-52 + 0x0.fffffffffffff8p0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casinh (0x1p-52 - 0.5 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (0x1p-52 - 0x0.fffffffffffff8p0 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (0x1p-63 + 0.5 i)": +Test "hypot (-0xb.333333333333334p-4, -0xc.666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "hypot (-0xb.333333333333334p-4, 0xc.666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-63 - 0.5 i)": +Test "hypot (-0xb.3333333333338p-4, -0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "hypot (-0xb.3333333333338p-4, -0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p500 + 1.0 i)": +Test "hypot (-0xb.3333333333338p-4, 0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p500 - 1.0 i)": +Test "hypot (-0xb.3333333333338p-4, 0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p5000 + 1.0 i)": +Test "hypot (-0xb.33333p-4, -0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p5000 - 1.0 i)": +Test "hypot (-0xb.33333p-4, -0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + +0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "hypot (-0xb.33333p-4, -0xc.66666666666666666666666668p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0.25 i)": -float: 1 -ifloat: 1 +Test "hypot (-0xb.33333p-4, -0xc.666666666666667p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0.5 i)": -double: 1 -idouble: 1 +Test "hypot (-0xb.33333p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333p-4, 0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333p-4, 0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333p-4, 0xc.666666666666667p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (1.0 + 0.5 i)": +Test "hypot (-0xb.33334p-4, -0xc.6666666666666666666666666668p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-10 i)": +Test "hypot (-0xb.33334p-4, -0xc.6666666666668p+0)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-10 i)": -float: 1 -ifloat: 1 +Test "hypot (-0xb.33334p-4, 0xc.6666666666666666666666666668p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-100 i)": +Test "hypot (-0xb.33334p-4, 0xc.6666666666668p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, -0xb.3333333333333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-1000 i)": -double: 1 -idouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, -0xb.333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-10000 i)": +Test "hypot (-0xc.66666666666666666666666664p+0, -0xb.3333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, -0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-129 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, 0xb.3333333333333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-16385 i)": +Test "hypot (-0xc.66666666666666666666666664p+0, 0xb.333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-30 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, 0xb.3333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-30 i)": -double: 1 -idouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, 0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1p500 i)": +Test "hypot (-0xc.6666666666666666666666666668p+0, -0xb.33334p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1p5000 i)": +Test "hypot (-0xc.6666666666666666666666666668p+0, 0xb.33334p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, -0xb.3333333333333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0.25 i)": -float: 1 -ifloat: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, -0xb.333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0.5 i)": -double: 1 -idouble: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, -0xb.3333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (1.0 - 0.5 i)": +Test "hypot (-0xc.666666666666666666666666666p+0, -0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-10 i)": -float: 1 -ifloat: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, 0xb.3333333333333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-100 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, 0xb.333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-1000 i)": -double: 1 -idouble: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, 0xb.3333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-10000 i)": +Test "hypot (-0xc.666666666666666666666666666p+0, 0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 +Test "hypot (-0xc.66666666666666666666666668p+0, -0xb.333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-129 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "hypot (-0xc.66666666666666666666666668p+0, -0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-16385 i)": +Test "hypot (-0xc.66666666666666666666666668p+0, 0xb.333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-30 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "hypot (-0xc.66666666666666666666666668p+0, 0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-30 i)": -double: 1 -idouble: 1 +Test "hypot (-0xc.666666666666666p+0, -0xb.333333333333334p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1p500 i)": +Test "hypot (-0xc.666666666666666p+0, 0xb.333333333333334p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1p5000 i)": +Test "hypot (-0xc.666666666666667p+0, -0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 + +0 i)": -double: 1 -idouble: 1 +Test "hypot (-0xc.666666666666667p+0, 0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 + 0x1.fp-1025 i)": +Test "hypot (-0xc.6666666666668p+0, -0xb.33334p-4)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (1.5 + 0x1.fp-129 i)": +Test "hypot (-0xc.6666666666668p+0, 0xb.33334p-4)": double: 1 idouble: 1 +Test "hypot (-0xc.66667p+0, -0xb.3333333333333333333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 + 0x1.fp-16385 i)": +Test "hypot (-0xc.66667p+0, -0xb.333333333333333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 - 0 i)": -double: 1 -idouble: 1 +Test "hypot (-0xc.66667p+0, -0xb.33333333333333333333333334p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 +Test "hypot (-0xc.66667p+0, 0xb.3333333333333333333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 +Test "hypot (-0xc.66667p+0, 0xb.333333333333333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 - 0x1.fp-16385 i)": +Test "hypot (-0xc.66667p+0, 0xb.33333333333333333333333334p-4)": ildouble: 1 ldouble: 1 - -# catan -Test "Imaginary part of: catan (-0x0.fffffffffffff8p0 + 0x1p-27 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-16382 i)": +Test "hypot (0x1.23456789abcdef0123456789ab8p-500, 0x1.23456789abcdep-500)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-57 i)": +Test "hypot (0x1.23456789abcdef02p-500, 0x1.23456789abcdfp-500)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-16382 i)": +Test "hypot (0x1.23456789abcdefp-500, 0x1.23456789abcdfp-500)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x0.ffffffp0 + 0x1p-126 i)": +Test "hypot (0x1.23456789abcdep-500, 0x1.23456789abcdef0123456789ab8p-500)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x0.ffffffp0 + 0x1p-13 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "hypot (0x1.23456789abcdfp-500, 0x1.23456789abcdef02p-500)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x0.ffffffp0 - 0x1p-126 i)": +Test "hypot (0x1.23456789abcdfp-500, 0x1.23456789abcdefp-500)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 + 0x1p-16382 i)": +Test "hypot (0xb.3333333333333333333333333338p-4, -0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 - 0x1p-16382 i)": +Test "hypot (0xb.3333333333333333333333333338p-4, 0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 - 0x1p-57 i)": +Test "hypot (0xb.333333333333333333333333333p-4, -0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.0000000000001p0 - 0x1p-27 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (-0x1.000002p0 + 0x1p-126 i)": -float: 1 -ifloat: 1 +Test "hypot (0xb.333333333333333333333333333p-4, 0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (-0x1.000002p0 - 0x1p-126 i)": -float: 1 -ifloat: 1 +Test "hypot (0xb.33333333333333333333333334p-4, -0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1.000002p0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (-0x1.000002p0 - 0x1p-13 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1.fp1023 - 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1.fp127 + 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1.fp127 - 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1.fp16383 + 0x1.fp16383 i)": +Test "hypot (0xb.33333333333333333333333334p-4, 0xc.66667p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.fp16383 - 0x1.fp16383 i)": +Test "hypot (0xb.3333333333333333333333333p-4, -0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-1020 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1p-1020 - 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (-0x1p-13 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (-0x1p-13 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (-0x1p-13 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (-0x1p-13 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (-0x1p-13 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (-0x1p-16380 + 1.0 i)": +Test "hypot (0xb.3333333333333333333333333p-4, -0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-16380 - 1.0 i)": +Test "hypot (0xb.3333333333333333333333333p-4, 0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1p-33 + 0x0.ffffffffffffffffp0 i)": +Test "hypot (0xb.3333333333333333333333333p-4, 0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1p-33 + 0x1.0000000000000002p0 i)": +Test "hypot (0xb.333333333333333p-4, -0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1p-33 - 0x0.ffffffffffffffffp0 i)": +Test "hypot (0xb.333333333333333p-4, -0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1p-33 - 0x1.0000000000000002p0 i)": +Test "hypot (0xb.333333333333333p-4, -0xc.66666666666666666666666668p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-54 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (-0x1p-54 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (-0x1p-57 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (-0x1p-57 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (-1.0 + 0x1p-13 i)": -float: 1 -ifloat: 1 +Test "hypot (0xb.333333333333333p-4, 0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-1.0 - 0x1p-13 i)": -float: 1 -ifloat: 1 +Test "hypot (0xb.333333333333333p-4, 0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-2 - 3 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: catan (0.75 + 1.25 i)": +Test "hypot (0xb.333333333333333p-4, 0xc.66666666666666666666666668p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x0.fffffffffffff8p0 + 0x1p-27 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-16382 i)": +Test "hypot (0xb.333333333333334p-4, -0xc.666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-57 i)": +Test "hypot (0xb.333333333333334p-4, 0xc.666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-16382 i)": +Test "hypot (0xb.3333333333338p-4, -0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x0.ffffffp0 + 0x1p-126 i)": +Test "hypot (0xb.3333333333338p-4, -0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x0.ffffffp0 + 0x1p-13 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "hypot (0xb.3333333333338p-4, 0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x0.ffffffp0 - 0x1p-126 i)": +Test "hypot (0xb.3333333333338p-4, 0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 + 0x1p-16382 i)": +Test "hypot (0xb.33333p-4, -0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 - 0x1p-16382 i)": +Test "hypot (0xb.33333p-4, -0xc.666666666666666666666666666p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 - 0x1p-57 i)": +Test "hypot (0xb.33333p-4, -0xc.66666666666666666666666668p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.0000000000001p0 - 0x1p-27 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (0x1.000002p0 + 0x1p-126 i)": -float: 1 -ifloat: 1 +Test "hypot (0xb.33333p-4, -0xc.666666666666667p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1.000002p0 - 0x1p-126 i)": -float: 1 -ifloat: 1 +Test "hypot (0xb.33333p-4, 0xc.66666666666666666666666664p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1.000002p0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1.000002p0 - 0x1p-13 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (0x1.fp1023 - 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (0x1.fp127 + 0x1.fp127 i)": +Test "hypot (0xb.33333p-4, 0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333p-4, 0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333p-4, 0xc.666666666666667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33334p-4, -0xc.6666666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33334p-4, -0xc.6666666666668p+0)": double: 1 idouble: 1 -Test "Imaginary part of: catan (0x1.fp127 - 0x1.fp127 i)": +Test "hypot (0xb.33334p-4, 0xc.6666666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33334p-4, 0xc.6666666666668p+0)": double: 1 idouble: 1 -Test "Imaginary part of: catan (0x1.fp16383 + 0x1.fp16383 i)": +Test "hypot (0xc.66666666666666666666666664p+0, -0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, -0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, -0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, -0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, 0xb.3333333333333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.fp16383 - 0x1.fp16383 i)": +Test "hypot (0xc.66666666666666666666666664p+0, 0xb.333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-1020 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (0x1p-1020 - 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (0x1p-13 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1p-13 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1p-13 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-13 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1p-13 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-16380 + 1.0 i)": +Test "hypot (0xc.66666666666666666666666664p+0, 0xb.3333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-16380 - 1.0 i)": +Test "hypot (0xc.66666666666666666666666664p+0, 0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1p-33 + 0x0.ffffffffffffffffp0 i)": +Test "hypot (0xc.6666666666666666666666666668p+0, -0xb.33334p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1p-33 + 0x1.0000000000000002p0 i)": +Test "hypot (0xc.6666666666666666666666666668p+0, 0xb.33334p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1p-33 - 0x0.ffffffffffffffffp0 i)": +Test "hypot (0xc.666666666666666666666666666p+0, -0xb.3333333333333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1p-33 - 0x1.0000000000000002p0 i)": +Test "hypot (0xc.666666666666666666666666666p+0, -0xb.333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-54 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-54 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-57 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-57 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (1.0 + 0x1p-13 i)": -float: 1 -ifloat: 1 +Test "hypot (0xc.666666666666666666666666666p+0, -0xb.3333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (1.0 - 0x1p-13 i)": -float: 1 -ifloat: 1 +Test "hypot (0xc.666666666666666666666666666p+0, -0xb.33333p-4)": ildouble: 1 ldouble: 1 - -# catanh -Test "Imaginary part of: catanh (-0x0.ffffffffffffffffp0 + 0x1p-33 i)": +Test "hypot (0xc.666666666666666666666666666p+0, 0xb.3333333333333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x0.ffffffffffffffffp0 - 0x1p-33 i)": +Test "hypot (0xc.666666666666666666666666666p+0, 0xb.333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1.0000000000000002p0 + 0x1p-33 i)": +Test "hypot (0xc.666666666666666666666666666p+0, 0xb.3333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1.0000000000000002p0 - 0x1p-33 i)": +Test "hypot (0xc.666666666666666666666666666p+0, 0xb.33333p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (-0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-0x1.000002p0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (-0x1.000002p0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (-0x1.fp1023 - 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (-0x1.fp127 + 0x1.fp127 i)": +Test "hypot (0xc.66666666666666666666666668p+0, -0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666668p+0, -0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666668p+0, 0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666668p+0, 0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666p+0, -0xb.333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666p+0, 0xb.333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666667p+0, -0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666667p+0, 0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.6666666666668p+0, -0xb.33334p-4)": double: 1 idouble: 1 -Test "Real part of: catanh (-0x1.fp127 - 0x1.fp127 i)": +Test "hypot (0xc.6666666666668p+0, 0xb.33334p-4)": double: 1 idouble: 1 -Test "Real part of: catanh (-0x1.fp16383 + 0x1.fp16383 i)": +Test "hypot (0xc.66667p+0, -0xb.3333333333333333333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1.fp16383 - 0x1.fp16383 i)": +Test "hypot (0xc.66667p+0, -0xb.333333333333333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-126 + 0x0.ffffffp0 i)": +Test "hypot (0xc.66667p+0, -0xb.33333333333333333333333334p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-126 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "hypot (0xc.66667p+0, 0xb.3333333333333333333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-126 - 0x0.ffffffp0 i)": +Test "hypot (0xc.66667p+0, 0xb.333333333333333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-126 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "hypot (0xc.66667p+0, 0xb.33333333333333333333333334p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-13 + 0x1.000002p0 i)": + +# j0 +Test "j0 (-0x2.002000002p+592)": +ildouble: 2 +ldouble: 2 +Test "j0 (-0x4p+0)": double: 1 -idouble: 1 -Test "Imaginary part of: catanh (-0x1p-13 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (-0x1p-13 + 1.0 i)": float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-13 - 0x1.000002p0 i)": +Test "j0 (-0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "j0 (0x2p+0)": +ildouble: 2 +ldouble: 2 +Test "j0 (0x4p+0)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: catanh (-0x1p-13 - 0x1.000002p0 i)": +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "j0 (0x4p+16380)": +ildouble: 1 +ldouble: 1 +Test "j0 (0x8p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: catanh (-0x1p-13 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "j0 (0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "j0 (0x8p+16380)": +ildouble: 2 +ldouble: 2 +Test "j0 (0xap+0)": +double: 2 float: 1 +idouble: 2 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "j0 (0xe.be71dp+104)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-16382 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "j0 (0xf.ffffffffffff8p+1020)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-16382 + 0x1.0000000000000000000000000001p0 i)": +Test "j0 (0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-16382 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "j0 (0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 + +# j1 +Test "j1 (0x1.ff00000000002p+840)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-16382 - 0x1.0000000000000000000000000001p0 i)": +Test "j1 (0x1p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-27 + 0x1.0000000000001p0 i)": +Test "j1 (0x2p+0)": double: 1 idouble: 1 -Test "Real part of: catanh (-0x1p-27 - 0x1.0000000000001p0 i)": +Test "j1 (0x4.ffcp+72)": double: 1 idouble: 1 -Test "Real part of: catanh (-0x1p-57 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-57 - 0x1.0000000000000000000000000001p0 i)": +Test "j1 (0x4p+16380)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-1.0 + 0x1p-1020 i)": +Test "j1 (0x8p+0)": double: 1 idouble: 1 -Test "Imaginary part of: catanh (-1.0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-1.0 + 0x1p-16380 i)": +ildouble: 4 +ldouble: 4 +Test "j1 (0x8p+1020)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-1.0 + 0x1p-54 i)": +Test "j1 (0x8p+16380)": +ildouble: 2 +ldouble: 2 +Test "j1 (0xap+0)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "j1 (0xcp-4)": +ildouble: 1 +ldouble: 1 +Test "j1 (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "j1 (0xf.fffffp+124)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catanh (-1.0 + 0x1p-57 i)": + +# jn +Test "jn (0, -0x4p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catanh (-1.0 - 0x1p-1020 i)": +ildouble: 1 +ldouble: 1 +Test "jn (0, 0x2p+0)": +ildouble: 2 +ldouble: 2 +Test "jn (0, 0x4p+0)": double: 1 -idouble: 1 -Test "Imaginary part of: catanh (-1.0 - 0x1p-13 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catanh (-1.0 - 0x1p-16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-1.0 - 0x1p-54 i)": +Test "jn (0, 0x8p+0)": float: 1 ifloat: 1 -Test "Real part of: catanh (-1.0 - 0x1p-57 i)": +ildouble: 1 +ldouble: 1 +Test "jn (0, 0xap+0)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "Real part of: catanh (-2 - 3 i)": +ildouble: 2 +ldouble: 2 +Test "jn (1, 0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "jn (1, 0x2p+0)": +double: 1 +idouble: 1 +Test "jn (1, 0x8p+0)": double: 1 idouble: 1 +ildouble: 4 +ldouble: 4 +Test "jn (1, 0xap+0)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "jn (1, 0xcp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0.75 + 1.25 i)": +Test "jn (10, -0x1p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0.75 + 1.25 i)": +Test "jn (10, 0x1p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x0.ffffffffffffffffp0 + 0x1p-33 i)": +Test "jn (10, 0x2p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "jn (10, 0x2p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x0.ffffffffffffffffp0 - 0x1p-33 i)": +Test "jn (10, 0xap+0)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "jn (10, 0xcp-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1.0000000000000002p0 + 0x1p-33 i)": +Test "jn (2, 0x2.67a2a4p+0)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1.0000000000000002p0 - 0x1p-33 i)": +Test "jn (2, 0x2.67a2a5d2e36800fce3e16f10ca66p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (0x1.000002p0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (0x1.fp1023 - 0x1.fp1023 i)": +Test "jn (2, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 1 +ldouble: 1 +Test "jn (2, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (2, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 4 +ldouble: 4 +Test "jn (2, 0x2.67a2a5d2e36801p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (2, 0x2.67a2a5d2e3682p+0)": double: 1 idouble: 1 -Test "Real part of: catanh (0x1.fp127 + 0x1.fp127 i)": +Test "jn (2, 0x2.67a2a5d2e368p+0)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "jn (2, 0x2.67a2a8p+0)": double: 1 +float: 3 idouble: 1 -Test "Real part of: catanh (0x1.fp127 - 0x1.fp127 i)": +ifloat: 3 +Test "jn (2, 0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "jn (2, 0x8p+124)": double: 1 idouble: 1 -Test "Real part of: catanh (0x1.fp16383 + 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1.fp16383 - 0x1.fp16383 i)": +Test "jn (2, 0x8p+16380)": +ildouble: 2 +ldouble: 2 +Test "jn (2, 0xf.fffb1p+96)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +Test "jn (2, 0xf.ffffffffffff8p+1020)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-126 + 0x0.ffffffp0 i)": +Test "jn (2, 0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-126 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "jn (2, 0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "jn (3, 0x2.67a2a4p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "jn (3, 0x2.67a2a5d2e36800fce3e16f10ca68p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-126 - 0x0.ffffffp0 i)": +Test "jn (3, 0x2.67a2a5d2e36800fce3e16f10cap+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-126 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "jn (3, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-13 + 0x0.ffffffp0 i)": +Test "jn (3, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 5 +ldouble: 5 +Test "jn (3, 0x2.67a2a5d2e36801p+0)": +ildouble: 4 +ldouble: 4 +Test "jn (3, 0x2.67a2a5d2e3682p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-13 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (0x1p-13 + 1.0 i)": -float: 1 -ifloat: 1 +Test "jn (3, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-13 - 0x0.ffffffp0 i)": +Test "jn (3, 0x2.67a2a8p+0)": double: 1 -float: 1 +float: 3 idouble: 1 -ifloat: 1 +ifloat: 3 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-13 - 0x1.000002p0 i)": +Test "jn (3, 0x2p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: catanh (0x1p-13 - 1.0 i)": +Test "jn (3, 0x2p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "jn (3, 0xap+0)": +double: 3 +idouble: 3 +ildouble: 2 +ldouble: 2 +Test "jn (3, 0xcp-4)": +double: 1 +idouble: 1 +Test "jn (4, 0x2.67a2a4p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-16382 + 0x0.ffffffffffffffffffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (0x1p-16382 + 0x1.0000000000000000000000000001p0 i)": +Test "jn (4, 0x2.67a2a5d2e36800fce3e16f10ca68p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-16382 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "jn (4, 0x2.67a2a5d2e36800fce3e16f10cap+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-16382 - 0x1.0000000000000000000000000001p0 i)": +Test "jn (4, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-27 + 0x0.fffffffffffff8p0 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (0x1p-27 - 0x0.fffffffffffff8p0 i)": +Test "jn (4, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (4, 0x2.67a2a5d2e36801p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (4, 0x2.67a2a5d2e3682p+0)": double: 1 idouble: 1 -Test "Real part of: catanh (0x1p-57 + 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-57 - 0x0.ffffffffffffffffffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (1.0 + 0x1p-1020 i)": +Test "jn (4, 0x2.67a2a5d2e368p+0)": double: 1 idouble: 1 -Test "Imaginary part of: catanh (1.0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (1.0 + 0x1p-16380 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catanh (1.0 + 0x1p-54 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (1.0 + 0x1p-57 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (1.0 - 0x1p-1020 i)": +Test "jn (4, 0x2.67a2a8p+0)": double: 1 -idouble: 1 -Test "Imaginary part of: catanh (1.0 - 0x1p-13 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catanh (1.0 - 0x1p-16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (1.0 - 0x1p-54 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (1.0 - 0x1p-57 i)": +Test "jn (5, 0x2.67a2a4p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 - -# cbrt -Test "cbrt (-0.001)": +ildouble: 2 +ldouble: 2 +Test "jn (5, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 3 +ldouble: 3 +Test "jn (5, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 2 +ldouble: 2 +Test "jn (5, 0x2.67a2a5d2e36800fcp+0)": ildouble: 1 ldouble: 1 -Test "cbrt (-27.0)": -double: 1 -idouble: 1 -Test "cbrt (0.9921875)": +Test "jn (5, 0x2.67a2a5d2e36801p+0)": +ildouble: 2 +ldouble: 2 +Test "jn (5, 0x2.67a2a5d2e3682p+0)": double: 1 idouble: 1 - -# ccos -Test "Imaginary part of: ccos (-0.75 + 11357.25 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (-0.75 + 710.5 i)": +ildouble: 3 +ldouble: 3 +Test "jn (5, 0x2.67a2a5d2e368p+0)": +double: 2 +idouble: 2 +Test "jn (5, 0x2.67a2a8p+0)": double: 1 +float: 2 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: ccos (-0.75 + 89.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (-0.75 + 89.5 i)": +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "jn (6, 0x2.67a2a4p+0)": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (-0.75 - 11357.25 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (-0.75 - 710.5 i)": -double: 1 -idouble: 1 +Test "jn (6, 0x2.67a2a5d2e36800fce3e16f10ca66p+0)": +ildouble: 2 +ldouble: 2 +Test "jn (6, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 2 +ldouble: 2 +Test "jn (6, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 2 +ldouble: 2 +Test "jn (6, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 5 +ldouble: 5 +Test "jn (6, 0x2.67a2a5d2e36801p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (6, 0x2.67a2a5d2e3682p+0)": +double: 2 +idouble: 2 ildouble: 1 ldouble: 1 -Test "Real part of: ccos (-0.75 - 89.5 i)": +Test "jn (6, 0x2.67a2a5d2e368p+0)": +double: 4 +idouble: 4 +ildouble: 3 +ldouble: 3 +Test "jn (6, 0x2.67a2a8p+0)": +float: 3 +ifloat: 3 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (-0.75 - 89.5 i)": +Test "jn (7, 0x2.67a2a4p+0)": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ccos (-2 - 3 i)": +Test "jn (7, 0x2.67a2a5d2e36800fce3e16f10ca68p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (-2 - 3 i)": -float: 1 -ifloat: 1 +Test "jn (7, 0x2.67a2a5d2e36800fce3e16f10cap+0)": ildouble: 1 ldouble: 1 -Test "Real part of: ccos (0.75 + 1.25 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: ccos (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccos (0.75 + 11357.25 i)": +Test "jn (7, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (7, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (7, 0x2.67a2a5d2e36801p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (7, 0x2.67a2a5d2e3682p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (0.75 + 710.5 i)": +Test "jn (7, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 +ildouble: 2 +ldouble: 2 +Test "jn (7, 0x2.67a2a8p+0)": +float: 3 +ifloat: 3 +Test "jn (8, 0x2.67a2a4p+0)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "jn (8, 0x2.67a2a5d2e36800fce3e16f10ca66p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (8, 0x2.67a2a5d2e36800fce3e16f10ca68p+0)": +ildouble: 4 +ldouble: 4 +Test "jn (8, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 2 +ldouble: 2 +Test "jn (8, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (8, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (8, 0x2.67a2a5d2e36801p+0)": +ildouble: 4 +ldouble: 4 +Test "jn (8, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +Test "jn (8, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 +Test "jn (8, 0x2.67a2a8p+0)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 +ildouble: 4 +ldouble: 4 +Test "jn (9, 0x2.67a2a4p+0)": +double: 3 +float: 3 +idouble: 3 +ifloat: 3 +Test "jn (9, 0x2.67a2a5d2e36800fce3e16f10ca66p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (9, 0x2.67a2a5d2e36800fce3e16f10ca68p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (9, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 2 +ldouble: 2 +Test "jn (9, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 7 +ldouble: 7 +Test "jn (9, 0x2.67a2a5d2e36801p+0)": +ildouble: 2 +ldouble: 2 +Test "jn (9, 0x2.67a2a5d2e3682p+0)": +double: 4 +idouble: 4 +ildouble: 3 +ldouble: 3 +Test "jn (9, 0x2.67a2a5d2e368p+0)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "jn (9, 0x2.67a2a8p+0)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 + +# lgamma +Test "lgamma (-0x1p-20)": double: 1 idouble: 1 +Test "lgamma (-0x1p-40)": ildouble: 1 ldouble: 1 -Test "Real part of: ccos (0.75 + 89.5 i)": +Test "lgamma (-0x1p-64)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (0.75 + 89.5 i)": +Test "lgamma (-0x2p-16)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (0.75 - 11357.25 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (0.75 - 710.5 i)": +Test "lgamma (-0x4p-12)": double: 1 idouble: 1 +Test "lgamma (-0x4p-32)": ildouble: 1 ldouble: 1 -Test "Real part of: ccos (0.75 - 89.5 i)": +Test "lgamma (-0x8p-28)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (0.75 - 89.5 i)": -float: 1 -ifloat: 1 +Test "lgamma (-0x8p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (0x1p-1074 + 1440 i)": +Test "lgamma (-0x8p-8)": double: 1 idouble: 1 -Test "Imaginary part of: ccos (0x1p-16434 + 22730 i)": ildouble: 1 ldouble: 1 - -# ccosh -Test "Imaginary part of: ccosh (-11357.25 + 0.75 i)": +Test "lgamma (0x1.3333333333333332p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (-11357.25 - 0.75 i)": +Test "lgamma (0x1.3333333333333333333333333333p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: ccosh (-2 - 3 i)": -float: 1 -ifloat: 1 +Test "lgamma (0x1p-60)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (-2 - 3 i)": +Test "lgamma (0x4p-12)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (-710.5 + 0.75 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccosh (-710.5 - 0.75 i)": +Test "lgamma (0x4p-32)": double: 1 idouble: 1 ildouble: 1 -ldouble: 1 -Test "Real part of: ccosh (-89.5 + 0.75 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccosh (-89.5 + 0.75 i)": -float: 1 -ifloat: 1 +ldouble: 1 +Test "lgamma (0x4p-72)": ildouble: 1 ldouble: 1 -Test "Real part of: ccosh (-89.5 - 0.75 i)": +Test "lgamma (0x8p-8)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (-89.5 - 0.75 i)": -float: 1 -ifloat: 1 +Test "lgamma (0xb.3333333333333333333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: ccosh (0.75 + 1.25 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (11357.25 + 0.75 i)": +Test "lgamma (0xb.333333333333333p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (11357.25 - 0.75 i)": +Test "lgamma (0xb.3333333333338p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (1440 + 0x1p-1074 i)": +Test "lgamma (0xb.333333333333p-4)": double: 1 idouble: 1 -Test "Imaginary part of: ccosh (22730 + 0x1p-16434 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccosh (710.5 + 0.75 i)": +Test "lgamma (0xb.33333p-4)": double: 1 idouble: 1 + +# log +Test "log (0x2.b7e151628aed2a68p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (710.5 - 0.75 i)": -double: 1 -idouble: 1 +Test "log (0x2.b7e151628aed2a6abf7158809cf4p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: ccosh (89.5 + 0.75 i)": +Test "log (0x2.b7e151628aed2p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (89.5 + 0.75 i)": +Test "log (0x2.b7e15p+0)": float: 1 ifloat: 1 +Test "log (0x4p-1076)": ildouble: 1 ldouble: 1 -Test "Real part of: ccosh (89.5 - 0.75 i)": +Test "log (0x4p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (89.5 - 0.75 i)": -float: 1 -ifloat: 1 +Test "log (0x4p-16448)": ildouble: 1 ldouble: 1 - -# cexp -Test "Imaginary part of: cexp (-10000 + 0x1p16383 i)": +Test "log (0x4p-16496)": ildouble: 1 ldouble: 1 -Test "Real part of: cexp (-2.0 - 3.0 i)": +Test "log (0x8p-152)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (-2.0 - 3.0 i)": -float: 1 -ifloat: 1 + +# log10 +Test "log10 (0x1.999998p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (-720 + 0.75 i)": +Test "log10 (0x1.999999999999ap-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (-95 + 0.75 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cexp (0.75 + 1.25 i)": +Test "log10 (0x1.99999ap-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (1440 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cexp (22730 + 0x1p-16434 i)": +Test "log10 (0x2.b7e151628aed2a6cp+0)": ildouble: 1 ldouble: 1 -Test "Real part of: cexp (50 + 0x1p127 i)": -double: 2 +Test "log10 (0x2.b7e154p+0)": float: 1 -idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (50 + 0x1p127 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (500 + 0x1p1023 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (709.8125 + 0.75 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cexp (709.8125 + 0.75 i)": -double: 1 -idouble: 1 +Test "log10 (0x4p-1024)": ildouble: 1 ldouble: 1 -Test "Real part of: cexp (88.75 + 0.75 i)": -float: 1 -ifloat: 1 +Test "log10 (0x4p-16496)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (88.75 + 0.75 i)": +Test "log10 (0xcp-4)": +double: 1 float: 2 +idouble: 1 ifloat: 2 ildouble: 1 ldouble: 1 -# clog -Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 1 -idouble: 1 -Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog (-0x1.234566p-40 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1.fp+127 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1.fp+127 - 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1.fp+16383 + 0x1p-16445 i)": +# log1p +Test "log1p (0x1.b7e151628aed2p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1.fp+16383 + 0x1p-16494 i)": +Test "log1p (0x1.b7e15p+0)": +float: 1 +ifloat: 1 + +# log2 +Test "log2 (0x2.b7e151628aed2a6cp+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1.fp+16383 - 0x1p-16445 i)": +Test "log2 (0xcp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1.fp+16383 - 0x1p-16494 i)": + +# pow +Test "pow (0x1.0000000000000000000000000001p+0, 0x2.468acf13579bde02468acf1357p+124)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (-0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1p-149 - 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (-0x1p-149 - 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1p-16445 + 0x1.fp+16383 i)": +Test "pow (0x1.0000000000000000000000000001p+0, 0x2.468acf13579bde04p+124)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1p-16445 - 0x1.fp+16383 i)": +Test "pow (0x1.0000000000001p+0, -0x2.468adp+60)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1p-16494 + 0x1.fp+16383 i)": +Test "pow (0xap+0, -0x1.342p+12)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1p-16494 - 0x1.fp+16383 i)": +Test "pow (0xap+0, 0x1.341p+12)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x0.ffffffp0 + 0x0.ffffffp-100 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1.000566p0 + 0x1.234p-10 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (0x1.000566p0 + 0x1.234p-10 i)": +Test "pow (0xap+0, 0x1.342p+12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": -double: 1 -idouble: 1 -Test "Real part of: clog (0x1.fp+127 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1.fp+127 - 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1.fp+16383 i)": +Test "pow (0xap+0, 0x1.343p+12)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p-16445 i)": +Test "pow (0xap+0, 0x1.344p+12)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p-16494 i)": +Test "pow (0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380, 0xcp-4)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 - 0x1p-16445 i)": +Test "pow (0xf.ffffffffffff8p-4, -0x4.8d159e26af37cp+60)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 - 0x1p-16494 i)": +Test "pow (0xf.fffffffffffffffffffffffffff8p-4, -0x4.8d1598p+124)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +Test "pow (0xf.fffffp-4, -0x1p+24)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-1074 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Real part of: clog (0x1p-147 + 0x1p-147 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1p-149 - 0x1.fp+127 i)": +Test "pow (0xf.fffffp-4, 0x1p+24)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1p-16445 + 0x1.fp+16383 i)": + +# pow10 +Test "pow10 (-0x1.31p+8)": +double: 1 +idouble: 1 +Test "pow10 (-0x1p+0)": +double: 1 +idouble: 1 +Test "pow10 (-0x2.4p+4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-16445 - 0x1.fp+16383 i)": +Test "pow10 (0x1.344p+12)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-16494 + 0x1.fp+16383 i)": +Test "pow10 (0x1.348e45573a1dd72cp+8)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-16494 - 0x1.fp+16383 i)": +Test "pow10 (0x1.348e46p+8)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x2818p-15 + 0x798fp-15 i)": +Test "pow10 (0x2.4p+4)": double: 1 -float: 1 idouble: 1 +Test "pow10 (0x3p+0)": +double: 1 +idouble: 1 + +# pow_downward +Test "pow_downward (1.5, 1.03125)": +float: 1 ifloat: 1 + +# pow_tonearest +Test "pow_tonearest (0x1.0000000000000000000000000001p+0, 0x2.468acf13579bde02468acf1357p+124)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x298c62cb546588a7p-63 + 0x7911b1dfcc4ecdaep-63 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog (0x2ede88p-23 + 0x771c3fp-23 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog (0x3f96469050f650869c2p-75 + 0x6f16b2c9c8b05988335p-75 i)": +Test "pow_tonearest (0x1.0000000000000000000000000001p+0, 0x2.468acf13579bde04p+124)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x4d4ep-15 + 0x6605p-15 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog (0x55cb6d0c83af5p-55 + 0x7fe33c0c7c4e90p-55 i)": +Test "pow_tonearest (0x1.0000000000001p+0, -0x2.468adp+60)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": +Test "pow_tonearest (0xap+0, -0x1.342p+12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x659feap-24 + 0xeaf6f9p-24 i)": +Test "pow_tonearest (0xap+0, 0x1.341p+12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x6771f22c64ed551b857c128b4cp-105 + 0x1f570e7a13cc3cf2f44fd793ea1p-105 i)": +Test "pow_tonearest (0xap+0, 0x1.342p+12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x6b10b4f3520217b6p-64 + 0xe8893cbb449253a1p-64 i)": +Test "pow_tonearest (0xap+0, 0x1.343p+12)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x8ecbf810c4ae6p-52 + 0xd479468b09a37p-52 i)": +Test "pow_tonearest (0xap+0, 0x1.344p+12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x9b57bp-20 + 0xcb7b4p-20 i)": +Test "pow_tonearest (0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380, 0xcp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0xdb85c467ee2aadd5f425fe0f4b8dp-114 + 0x3e83162a0f95f1dcbf97dddf410eap-114 i)": +Test "pow_tonearest (0xf.ffffffffffff8p-4, -0x4.8d159e26af37cp+60)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0xfd95243681c055c2632286921092p-113 + 0x1bccabcd29ca2152860ec29e34ef7p-113 i)": +Test "pow_tonearest (0xf.fffffffffffffffffffffffffff8p-4, -0x4.8d1598p+124)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": +Test "pow_tonearest (0xf.fffffp-4, -0x1p+24)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (1.0 + 0x1.234566p-10 i)": +Test "pow_tonearest (0xf.fffffp-4, 0x1p+24)": float: 1 ifloat: 1 -# clog10 -Test "Imaginary part of: clog10 (-0 + inf i)": -double: 1 +# pow_towardzero +Test "pow_towardzero (1.5, 1.03125)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (-0 - inf i)": -double: 1 + +# pow_upward +Test "pow_upward (1.0625, 1.125)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 2 -idouble: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 2 -idouble: 2 + +# sin +Test "sin (-0x1.921fb4p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (-2 - 3 i)": +Test "sin (-0x1.921fb54442d18p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-2 - 3 i)": -double: 1 -idouble: 1 +Test "sin (-0x1.921fb54442d19p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-3 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-3 - inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 1 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + inf i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-inf - 0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf - 1 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0 - inf i)": -double: 1 +Test "sin (-0x8.60a91c16b9b28p-4)": +ildouble: 1 +ldouble: 1 +Test "sin (-0x8.60a91c16b9b2c232dd99707ab3dp-4)": +ildouble: 1 +ldouble: 1 +Test "sin (0x1p+0)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0.75 + 1.25 i)": +Test "sin (0x2.1e19e0c9bab24p+72)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +Test "sin (0x2p+64)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-1000 i)": +Test "sin (0x3.be735c19be9fffffffffffffffe8p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-1000 i)": +Test "sin (0x3.be736p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-60 i)": +Test "sin (0x3.ec2a0250032a00000000000001p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +Test "sin (0x3.ec2a0250032a2p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1.234566p-50 + 1.0 i)": +Test "sin (0x3.ec2a04p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (0x3.ec2ap+0)": +ildouble: 1 +ldouble: 1 +Test "sin (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (0x4.1237e153f7080000000000000004p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (0x4.1237e153f7080008p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (0x4.c92d08p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (0x4.c92d0ffa4bf00000000000000088p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (0x4.c92d0ffa4bf00008p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (0x4.c92d0ffa4bf04p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (0x4.c92d0ffa4bfp+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1.234566p-60 + 1.0 i)": +Test "sin (0x5.fbec7477d4a84p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x1.fffffep+127 + 1.0 i)": +Test "sin (0x5.fbec78p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (0xc.d4967p-4)": float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": + +# sin_downward +Test "sin_downward (-0x1.921fb4p+0)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 + 0x1.fp+16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 + 0x1p+16383 i)": +Test "sin_downward (-0x1.921fb54442d18p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": -double: 1 -idouble: 1 +Test "sin_downward (-0x1.921fb54442d19p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +Test "sin_downward (-0x1.921fb6p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +Test "sin_downward (-0x2p+64)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x1415bcaf2105940d49a636e98ae59p-115 + 0x7e6a150adfcd1b0921d44b31f40f4p-115 i)": +Test "sin_downward (-0x8.60a91c16b9b28p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x15cfbd1990d1ffp-53 + 0x176a3973e09a9ap-53 i)": +Test "sin_downward (-0x8.60a91c16b9b2c232dd99707ab3dp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": +Test "sin_downward (-0x8.60a91c16b9b2c232dd99707ab4p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": +Test "sin_downward (-0x8.60a91c16b9b2c232dd99707abp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +Test "sin_downward (-0x8.60a91c16b9b2c23p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (-0x8.60a91c16b9b2c24p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (-0x8.60a91c16b9b3p-4)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (-0x8.60a91p-4)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": +Test "sin_downward (-0x8.60a92p-4)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x1.921fb54442d18469898cc517018p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x1.921fb54442d18469898cc51701b8p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x1.921fb54442d18469898cc51701b9p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x1.921fb54442d18469898cc51702p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x1.921fb54442d18p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": +Test "sin_downward (0x1.921fb54442d19p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": -double: 1 +Test "sin_downward (0x1p+120)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +Test "sin_downward (0x1p+28)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": +Test "sin_downward (0x2.1e19e0c9bab24p+72)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x2.1e19e4p+72)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x2.1e19ep+72)": +float: 2 +ifloat: 2 +Test "sin_downward (0x2.553534p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x2.5535376715bap+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +Test "sin_downward (0x2p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +Test "sin_downward (0x3.be735c19be9fep+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +Test "sin_downward (0x3.be735c19be9ffffcp+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x3.be735c19be9fffffffffffffffe8p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x3.be735c19be9fffffffffffffffeap+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x3.be735c19be9fffffffffffffffp+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x3.be735cp+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x3.be736p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": -double: 1 -idouble: 1 +Test "sin_downward (0x3.ec2a0250032a0000000000000072p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": -double: 1 -idouble: 1 +Test "sin_downward (0x3.ec2a0250032a00000000000001p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x3f96469050f650869c2p-75 + 0x6f16b2c9c8b05988335p-75 i)": +Test "sin_downward (0x3.ec2a0250032a0004p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +Test "sin_downward (0x3.ec2a0250032a2p+0)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": +Test "sin_downward (0x3.ec2a0250032ap+0)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x4d9c37e2b5cb4533p-63 + 0x65c98be2385a042ep-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x55cb6d0c83af5p-55 + 0x7fe33c0c7c4e90p-55 i)": +Test "sin_downward (0x3.ec2a04p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": +Test "sin_downward (0x3.ec2ap+0)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x602fd5037c4792efp-64 + 0xed3e2086dcca80b8p-64 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog10 (0x6241ef0da53f539f02fad67dabp-106 + 0x3fb46641182f7efd9caa769dac0p-106 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +Test "sin_downward (0x3p+0)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +Test "sin_downward (0x4.093385688a2d1508p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x6b10b4f3520217b6p-64 + 0xe8893cbb449253a1p-64 i)": +Test "sin_downward (0x4.093385688a2d4p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": +Test "sin_downward (0x4.093388p-4)": double: 1 idouble: 1 +Test "sin_downward (0x4.1237e153f7080000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0xdb85c467ee2aadd5f425fe0f4b8dp-114 + 0x3e83162a0f95f1dcbf97dddf410eap-114 i)": +Test "sin_downward (0x4.1237e153f70800000000000002p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0xfd95243681c055c2632286921092p-113 + 0x1bccabcd29ca2152860ec29e34ef7p-113 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": -double: 1 -idouble: 1 +Test "sin_downward (0x4.1237e153f7080008p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (3 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (3 - inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (inf + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (inf - inf i)": +Test "sin_downward (0x4.1237e153f7084p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 - -# cos -Test "cos (0x1p+120)": -float: 1 -ifloat: 1 -Test "cos (0x1p+127)": -float: 1 -ifloat: 1 -Test "cos (M_PI_6l * 2.0)": +Test "sin_downward (0x4.1237e153f708p+0)": double: 1 idouble: 1 -Test "cos (M_PI_6l * 4.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 ildouble: 1 ldouble: 1 - -# cos_downward -Test "cos_downward (1)": -float: 1 -ifloat: 1 -Test "cos_downward (10)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (2)": -float: 1 -ifloat: 1 +Test "sin_downward (0x4.1237e8p+0)": ildouble: 1 ldouble: 1 -Test "cos_downward (3)": +Test "sin_downward (0x4.1237ep+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "cos_downward (4)": -float: 1 -ifloat: 1 -Test "cos_downward (5)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cos_downward (6)": -ildouble: 1 -ldouble: 1 -Test "cos_downward (7)": +Test "sin_downward (0x4.c92d08p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "cos_downward (8)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 - -# cos_tonearest -Test "cos_tonearest (7)": -float: 1 -ifloat: 1 - -# cos_towardzero -Test "cos_towardzero (10)": +Test "sin_downward (0x4.c92d0ffa4bf00000000000000088p+0)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (2)": -float: 1 -ifloat: 1 +Test "sin_downward (0x4.c92d0ffa4bf000000000000002p+0)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (3)": -float: 1 -ifloat: 1 +Test "sin_downward (0x4.c92d0ffa4bf00008p+0)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (5)": -float: 1 -ifloat: 1 +Test "sin_downward (0x4.c92d0ffa4bf04p+0)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (6)": +Test "sin_downward (0x4.c92d0ffa4bfp+0)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (7)": +Test "sin_downward (0x4.c92d1p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "cos_towardzero (8)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 - -# cos_upward -Test "cos_upward (1)": +Test "sin_downward (0x4p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_upward (10)": -float: 1 -ifloat: 1 -Test "cos_upward (4)": +Test "sin_downward (0x4p+48)": +double: 1 +idouble: 1 +Test "sin_downward (0x5.fbec7477d4a8000000000000009cp+0)": ildouble: 1 ldouble: 1 -Test "cos_upward (6)": -float: 1 -ifloat: 1 -Test "cos_upward (7)": -float: 1 -ifloat: 1 -Test "cos_upward (9)": -float: 2 -ifloat: 2 +Test "sin_downward (0x5.fbec7477d4a84p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# cosh_downward -Test "cosh_downward (22)": -float: 1 -ifloat: 1 +Test "sin_downward (0x5.fbec7477d4a8p+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x5.fbec78p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "cosh_downward (23)": -float: 1 -ifloat: 1 +Test "sin_downward (0x5.fbec7p+0)": ildouble: 1 ldouble: 1 -Test "cosh_downward (24)": +Test "sin_downward (0x5p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# cosh_tonearest -Test "cosh_tonearest (22)": +Test "sin_downward (0x6p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# cosh_towardzero -Test "cosh_towardzero (22)": +Test "sin_downward (0x8p+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x8p+1020)": +double: 1 +idouble: 1 +Test "sin_downward (0x9p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "cosh_towardzero (23)": +Test "sin_downward (0xap+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "sin_downward (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "sin_downward (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "sin_downward (0xf.ffffcp+124)": +double: 1 +idouble: 1 +Test "sin_downward (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "cosh_towardzero (24)": -float: 1 -ifloat: 1 +Test "sin_downward (0xf.fffffp+124)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -# cosh_upward -Test "cosh_upward (22)": +# sin_tonearest +Test "sin_tonearest (-0x1.921fb4p+0)": ildouble: 1 ldouble: 1 -Test "cosh_upward (23)": +Test "sin_tonearest (-0x1.921fb54442d18p+0)": ildouble: 1 ldouble: 1 -Test "cosh_upward (24)": +Test "sin_tonearest (-0x1.921fb54442d19p+0)": ildouble: 1 ldouble: 1 - -# cpow -Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": +Test "sin_tonearest (-0x8.60a91c16b9b28p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_tonearest (-0x8.60a91c16b9b2c232dd99707ab3dp-4)": +ildouble: 1 +ldouble: 1 +Test "sin_tonearest (0x1p+0)": float: 1 ifloat: 1 -Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": +Test "sin_tonearest (0x2.1e19e0c9bab24p+72)": ildouble: 1 ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": -double: 1 -float: 4 -idouble: 1 -ifloat: 4 -ildouble: 4 -ldouble: 4 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 0.0 i)": +Test "sin_tonearest (0x2p+64)": ildouble: 1 ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": -double: 2 -float: 3 -idouble: 2 -ifloat: 3 -ildouble: 2 -ldouble: 2 -Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": -double: 1 -float: 5 -idouble: 1 -ifloat: 5 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": -float: 2 -ifloat: 2 - -# csin -Test "Real part of: csin (-0.75 + 11357.25 i)": +Test "sin_tonearest (0x3.be735c19be9fffffffffffffffe8p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (-0.75 + 710.5 i)": -double: 1 -idouble: 1 +Test "sin_tonearest (0x3.be736p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (-0.75 + 89.5 i)": -float: 1 -ifloat: 1 +Test "sin_tonearest (0x3.ec2a0250032a00000000000001p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csin (-0.75 + 89.5 i)": +Test "sin_tonearest (0x3.ec2a0250032a2p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (-0.75 - 11357.25 i)": +Test "sin_tonearest (0x3.ec2a04p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (-0.75 - 710.5 i)": -double: 1 -idouble: 1 +Test "sin_tonearest (0x3.ec2ap+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (-0.75 - 89.5 i)": -float: 1 -ifloat: 1 +Test "sin_tonearest (0x3p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csin (-0.75 - 89.5 i)": +Test "sin_tonearest (0x4.1237e153f7080000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csin (-2 - 3 i)": +Test "sin_tonearest (0x4.1237e153f7080008p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 + 1.25 i)": +Test "sin_tonearest (0x4.c92d08p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 + 11357.25 i)": +Test "sin_tonearest (0x4.c92d0ffa4bf00000000000000088p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 + 710.5 i)": -double: 1 -idouble: 1 +Test "sin_tonearest (0x4.c92d0ffa4bf00008p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 + 89.5 i)": -float: 1 -ifloat: 1 +Test "sin_tonearest (0x4.c92d0ffa4bf04p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csin (0.75 + 89.5 i)": +Test "sin_tonearest (0x4.c92d0ffa4bfp+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 - 11357.25 i)": +Test "sin_tonearest (0x5.fbec7477d4a84p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 - 710.5 i)": -double: 1 -idouble: 1 +Test "sin_tonearest (0x5.fbec78p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 - 89.5 i)": +Test "sin_tonearest (0xc.d4967p-4)": float: 1 ifloat: 1 + +# sin_towardzero +Test "sin_towardzero (-0x1.921fb54442d18468p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csin (0.75 - 89.5 i)": +Test "sin_towardzero (-0x1.921fb54442d18469898cc517018p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0x1p-1074 + 1440 i)": -double: 1 -idouble: 1 -Test "Real part of: csin (0x1p-16434 + 22730 i)": +Test "sin_towardzero (-0x1.921fb54442d18469898cc51701b8p+0)": ildouble: 1 ldouble: 1 - -# csinh -Test "Imaginary part of: csinh (-11357.25 + 0.75 i)": +Test "sin_towardzero (-0x1.921fb54442d18469898cc51701b9p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (-11357.25 - 0.75 i)": +Test "sin_towardzero (-0x1.921fb54442d18469898cc51702p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csinh (-2 - 3 i)": +Test "sin_towardzero (-0x1.921fb54442d1846ap+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (-2 - 3 i)": +Test "sin_towardzero (-0x1.921fb54442d18p+0)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +Test "sin_towardzero (-0x1.921fb54442d19p+0)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +Test "sin_towardzero (-0x2p+64)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csinh (-89.5 + 0.75 i)": +Test "sin_towardzero (-0x8.60a91c16b9b2c232dd99707ab3d8p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (-89.5 + 0.75 i)": -float: 1 -ifloat: 1 +Test "sin_towardzero (-0x8.60a91p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: csinh (-89.5 - 0.75 i)": +Test "sin_towardzero (0x1.921fb54442d18468p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (-89.5 - 0.75 i)": -float: 1 -ifloat: 1 +Test "sin_towardzero (0x1.921fb54442d18469898cc517018p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csinh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: csinh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: csinh (11357.25 + 0.75 i)": +Test "sin_towardzero (0x1.921fb54442d18469898cc51701b8p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (11357.25 - 0.75 i)": +Test "sin_towardzero (0x1.921fb54442d18469898cc51701b9p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +Test "sin_towardzero (0x1.921fb54442d18469898cc51702p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (0x1.921fb54442d18p+0)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (22730 + 0x1p-16434 i)": +Test "sin_towardzero (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x1p+0)": +float: 1 +ifloat: 1 +Test "sin_towardzero (0x1p+28)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (710.5 + 0.75 i)": +Test "sin_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x2.1e19ep+72)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (710.5 - 0.75 i)": +Test "sin_towardzero (0x2.553534p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x2.5535376715bap+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x2p+64)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csinh (89.5 + 0.75 i)": +Test "sin_towardzero (0x3.be735c19beap+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (89.5 + 0.75 i)": +Test "sin_towardzero (0x3.be735cp+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "sin_towardzero (0x3.ec2a0250032a000000000000007p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csinh (89.5 - 0.75 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csinh (89.5 - 0.75 i)": +Test "sin_towardzero (0x3.ec2a04p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "sin_towardzero (0x3p+0)": ildouble: 1 ldouble: 1 - -# csqrt -Test "Real part of: csqrt (-0x1.0000000000000000000000000001p-16382 - 0x1.0000000000000000000000000001p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": +Test "sin_towardzero (0x4.093385688a2d1508p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": +Test "sin_towardzero (0x4.093385688a2d4p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-0x1.0000000000001p-1022 - 0x1.0000000000001p-1022 i)": +Test "sin_towardzero (0x4.093388p-4)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x4.1237e153f7084p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-0x1.000002p-126 - 0x1.000002p-126 i)": +Test "sin_towardzero (0x4.1237e8p+0)": double: 1 idouble: 1 -Test "Real part of: csqrt (-2 + 3 i)": -float: 1 -ifloat: 1 +Test "sin_towardzero (0x4.1237ep+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x4.c92d0ffa4bf0000000000000008cp+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-2 - 3 i)": -float: 1 -ifloat: 1 +Test "sin_towardzero (0x4.c92d0ffa4bf04p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x4.c92d0ffa4bfp+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x4p+48)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x5.fbec7477d4a80000000000000098p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0.75 + 1.25 i)": +Test "sin_towardzero (0x5.fbec7477d4a800000000000002p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000000000000000000001p-16382 + 0x1.0000000000000000000000000001p-16382 i)": +Test "sin_towardzero (0x5.fbec7477d4a80008p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +Test "sin_towardzero (0x5.fbec7477d4a8p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +Test "sin_towardzero (0x5.fbec7p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x8p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x8p+1020)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x9p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0xap+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000001p-1022 + 0x1.0000000000001p-1022 i)": +Test "sin_towardzero (0xb.fa09ap+100)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.000002p-126 + 0x1.000002p-126 i)": +Test "sin_towardzero (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "sin_towardzero (0xc.d4966p-4)": double: 1 idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffep+127 + 1.0 i)": +Test "sin_towardzero (0xc.d4967p-4)": float: 1 ifloat: 1 -Test "Real part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +Test "sin_towardzero (0xe.ef3afp-4)": +float: 1 +ifloat: 1 +Test "sin_towardzero (0xf.ffffcp+124)": double: 1 idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +Test "sin_towardzero (0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": -double: 1 -idouble: 1 +Test "sin_towardzero (0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (0x1.fp+16383 + 0x1.fp+16383 i)": + +# sin_upward +Test "sin_upward (-0x1.921fb4p+0)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fp+16383 + 0x1.fp+16383 i)": +Test "sin_upward (-0x1.921fb54442d18468p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fp+16383 + 0x1p+16383 i)": +Test "sin_upward (-0x1.921fb54442d18469898cc517018p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-16440 + 0x1p-16441 i)": +Test "sin_upward (-0x1.921fb54442d18469898cc51701b8p+0)": ildouble: 1 ldouble: 1 - -# ctan -Test "Real part of: ctan (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan (-2 - 3 i)": -double: 1 -idouble: 1 +Test "sin_upward (-0x1.921fb54442d18469898cc51701b9p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0.75 + 1.25 i)": -float: 1 -ifloat: 1 +Test "sin_upward (-0x1.921fb54442d18469898cc51702p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan (0.75 + 1.25 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (0x1p1023 + 1 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ctan (0x1p1023 + 1 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (0x1p127 + 1 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan (0x1p127 + 1 i)": +Test "sin_upward (-0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x1.921fb54442d18p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0x1p16383 + 1 i)": +Test "sin_upward (-0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan (0x1p16383 + 1 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (0x3.243f6cp-1 + 0 i)": +Test "sin_upward (-0x1.921fb6p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan (1 + 355 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (1 + 365 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: ctan (1 + 45 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (1 + 47 i)": +Test "sin_upward (-0x2p+64)": ildouble: 1 ldouble: 1 - -# ctan_downward -Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 5 -ldouble: 5 - -# ctan_tonearest -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "sin_upward (-0x8.60a91c16b9b28p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "sin_upward (-0x8.60a91c16b9b2c232dd99707ab3d8p-4)": ildouble: 3 ldouble: 3 -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 +Test "sin_upward (-0x8.60a91c16b9b2c232dd99707ab3dp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 - -# ctan_towardzero -Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "sin_upward (-0x8.60a91c16b9b2c232dd99707ab4p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "sin_upward (-0x8.60a91c16b9b2c232dd99707abp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 5 -ldouble: 5 - -# ctan_upward -Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "sin_upward (-0x8.60a91c16b9b2c23p-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "sin_upward (-0x8.60a91c16b9b2c24p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +Test "sin_upward (-0x8.60a91c16b9b3p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x8.60a91p-4)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": +Test "sin_upward (-0x8.60a92p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x1.921fb4p+0)": double: 1 -float: 2 idouble: 1 -ifloat: 2 - -# ctanh -Test "Real part of: ctanh (-2 - 3 i)": +Test "sin_upward (0x1.921fb6p+0)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -Test "Imaginary part of: ctanh (-2 - 3 i)": +Test "sin_upward (0x1p+0)": double: 1 idouble: 1 -Test "Imaginary part of: ctanh (0 + 0x3.243f6cp-1 i)": +Test "sin_upward (0x1p+120)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "sin_upward (0x1p+28)": float: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x2.1e19e0c9bab24p+72)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (0 + pi/4 i)": +Test "sin_upward (0x2.1e19e4p+72)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctanh (0.75 + 1.25 i)": +Test "sin_upward (0x2.1e19ep+72)": double: 1 -idouble: 1 -Test "Imaginary part of: ctanh (0.75 + 1.25 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: ctanh (1 + 0x1p1023 i)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctanh (1 + 0x1p1023 i)": +Test "sin_upward (0x2.5535376715b9ep+0)": double: 1 idouble: 1 -Test "Real part of: ctanh (1 + 0x1p127 i)": +Test "sin_upward (0x2.553538p+0)": double: 1 -float: 1 idouble: 1 +Test "sin_upward (0x2p+0)": +float: 1 ifloat: 1 +Test "sin_upward (0x2p+64)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (1 + 0x1p127 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctanh (1 + 0x1p16383 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (1 + 0x1p16383 i)": +Test "sin_upward (0x3.be735c19be9fep+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (355 + 1 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (365 + 1 i)": +Test "sin_upward (0x3.be735c19be9ffffcp+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (45 + 1 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (47 + 1 i)": +Test "sin_upward (0x3.be735c19be9fffffffffffffffe8p+0)": ildouble: 1 ldouble: 1 - -# ctanh_downward -Test "Real part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 4 -ldouble: 4 -Test "Real part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 5 -ldouble: 5 -Test "Imaginary part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh_downward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "sin_upward (0x3.be735c19be9fffffffffffffffeap+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x3.be735c19be9fffffffffffffffp+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x3.be735c19beap+0)": +double: 1 +idouble: 1 ildouble: 2 ldouble: 2 - -# ctanh_tonearest -Test "Real part of: ctanh_tonearest (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_tonearest (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +Test "sin_upward (0x3.be735cp+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x3.be736p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_tonearest (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "sin_upward (0x3.ec2a0250032a0000000000000072p+0)": ildouble: 1 ldouble: 1 - -# ctanh_towardzero -Test "Real part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "sin_upward (0x3.ec2a0250032a000000000000007p+0)": ildouble: 2 ldouble: 2 -Test "Imaginary part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "sin_upward (0x3.ec2a0250032a00000000000001p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 5 -ldouble: 5 -Test "Imaginary part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctanh_towardzero (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "sin_upward (0x3.ec2a0250032a0004p+0)": ildouble: 1 ldouble: 1 - -# ctanh_upward -Test "Real part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "Imaginary part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "sin_upward (0x3.ec2a0250032a2p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "sin_upward (0x3.ec2a0250032ap+0)": ildouble: 1 ldouble: 1 - -# erf -Test "erf (1.25)": +Test "sin_upward (0x3.ec2a04p+0)": double: 1 -idouble: 1 - -# erfc -Test "erfc (0.75)": float: 1 -ifloat: 1 -Test "erfc (0x1.f7303cp+1)": -double: 1 idouble: 1 -Test "erfc (0x1.ffa002p+2)": -float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "erfc (0x1.ffffc8p+2)": -ildouble: 1 -ldouble: 1 -Test "erfc (2.0)": -double: 1 -idouble: 1 -Test "erfc (27.0)": +Test "sin_upward (0x3.ec2ap+0)": ildouble: 1 ldouble: 1 -Test "erfc (4.125)": +Test "sin_upward (0x3p+0)": double: 1 +float: 1 idouble: 1 - -# exp10 -Test "exp10 (-1)": +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x4.093385688a2d4p-4)": double: 1 idouble: 1 -Test "exp10 (-305)": +Test "sin_upward (0x4.093385688a2dp-4)": double: 1 idouble: 1 -Test "exp10 (-36)": +Test "sin_upward (0x4.09338p-4)": double: 1 idouble: 1 +Test "sin_upward (0x4.1237e153f7080000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "exp10 (3)": -double: 1 -idouble: 1 -Test "exp10 (36)": -double: 1 -idouble: 1 -Test "exp10 (4932)": +Test "sin_upward (0x4.1237e153f70800000000000002p+0)": ildouble: 1 ldouble: 1 - -# exp2 -Test "exp2 (100.5)": +Test "sin_upward (0x4.1237e153f7080008p+0)": ildouble: 1 ldouble: 1 - -# exp_downward -Test "exp_downward (2)": -float: 1 -ifloat: 1 +Test "sin_upward (0x4.1237e153f7084p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x4.1237e153f708p+0)": ildouble: 1 ldouble: 1 -Test "exp_downward (3)": -float: 1 -ifloat: 1 +Test "sin_upward (0x4.1237e8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 ildouble: 1 ldouble: 1 - -# exp_towardzero -Test "exp_towardzero (2)": +Test "sin_upward (0x4.1237ep+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "exp_towardzero (3)": +Test "sin_upward (0x4.c92d08p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# exp_upward -Test "exp_upward (1)": -float: 1 -ifloat: 1 +Test "sin_upward (0x4.c92d0ffa4bf00000000000000088p+0)": ildouble: 1 ldouble: 1 - -# expm1 -Test "expm1 (-79.0)": +Test "sin_upward (0x4.c92d0ffa4bf0000000000000008cp+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x4.c92d0ffa4bf000000000000002p+0)": ildouble: 1 ldouble: 1 -Test "expm1 (0.75)": -double: 1 -idouble: 1 -Test "expm1 (1)": +Test "sin_upward (0x4.c92d0ffa4bf00008p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x4.c92d0ffa4bf04p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "expm1 (500.0)": +Test "sin_upward (0x4.c92d0ffa4bfp+0)": double: 1 idouble: 1 - -# gamma -Test "gamma (-0.5)": ildouble: 1 ldouble: 1 -Test "gamma (0.7)": -double: 1 +Test "sin_upward (0x4.c92d1p+0)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "gamma (1.2)": -double: 1 +Test "sin_upward (0x4p+0)": float: 2 -idouble: 1 ifloat: 2 ildouble: 1 ldouble: 1 - -# hypot -Test "hypot (-0.7, -12.4)": -float: 1 -ifloat: 1 -Test "hypot (-0.7, 12.4)": +Test "sin_upward (0x4p+48)": float: 1 ifloat: 1 -Test "hypot (-12.4, -0.7)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x5.fbec7477d4a80000000000000098p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x5.fbec7477d4a8000000000000009cp+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x5.fbec7477d4a800000000000002p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x5.fbec7477d4a80008p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x5.fbec7477d4a84p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x5.fbec7477d4a8p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x5.fbec78p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x5.fbec7p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x5p+0)": float: 1 ifloat: 1 -Test "hypot (-12.4, 0.7)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x6p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x7p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "hypot (0.7, -12.4)": +Test "sin_upward (0x8.60a91c16b9b3p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0x8.60a91p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0x8.60a92p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0x8p+0)": float: 1 ifloat: 1 -Test "hypot (0.7, 12.4)": +Test "sin_upward (0x8p+124)": +double: 1 +idouble: 1 +Test "sin_upward (0x9p+0)": float: 1 ifloat: 1 -Test "hypot (12.4, -0.7)": +Test "sin_upward (0xap+0)": float: 1 ifloat: 1 -Test "hypot (12.4, 0.7)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0xb.fa09ap+100)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "sin_upward (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xc.d4967p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xcp-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xe.ef3af1b5d8008p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xe.ef3af1b5d8p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xe.ef3afp-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xe.ef3bp-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xf.ffffcp+124)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0xf.ffffffffffff8p+1020)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0xf.fffffp+124)": +ildouble: 1 +ldouble: 1 + +# sincos +Test "sincos (0x1.0c1522p+0) extra output 1": float: 1 ifloat: 1 - -# j0 -Test "j0 (-0x1.001000001p+593)": +Test "sincos (0x1.921fb54442d1846ap+0) extra output 2": +ildouble: 1 +ldouble: 1 +Test "sincos (0x1.921fb54442d18p+0) extra output 2": ildouble: 1 ldouble: 1 -Test "j0 (-4.0)": -double: 1 +Test "sincos (0x1p+120) extra output 2": float: 1 -idouble: 1 ifloat: 1 -Test "j0 (0x1.d7ce3ap+107)": -float: 2 -ifloat: 2 ildouble: 1 ldouble: 1 -Test "j0 (0x1p1023)": +Test "sincos (0x1p+28) extra output 2": ildouble: 1 ldouble: 1 -Test "j0 (0x1p16383)": -ildouble: 2 -ldouble: 2 -Test "j0 (10.0)": -double: 2 +Test "sincos (0x2.1e19e0c9bab24p+72) extra output 1": +ildouble: 1 +ldouble: 1 +Test "sincos (0x2p+64) extra output 1": +ildouble: 1 +ldouble: 1 +Test "sincos (0x8.60a92p-4) extra output 2": float: 1 -idouble: 2 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "j0 (2.0)": -ildouble: 2 -ldouble: 2 -Test "j0 (4.0)": -double: 1 +Test "sincos (0x8p+124) extra output 2": float: 1 -idouble: 1 ifloat: 1 -Test "j0 (8.0)": +Test "sincos (0xc.d4967p-4) extra output 1": float: 1 ifloat: 1 +Test "sincos (0xf.ffffffffffff8p+1020) extra output 2": ildouble: 1 ldouble: 1 - -# j1 -Test "j1 (-1.0)": -ildouble: 1 -ldouble: 1 -Test "j1 (0.75)": +Test "sincos (0xf.ffffffffffffbffffffffffffcp+1020) extra output 2": ildouble: 1 ldouble: 1 -Test "j1 (0x1.3ffp+74)": + +# sinh_downward +Test "sinh_downward (0x1.6p+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "j1 (0x1.ff00000000002p+840)": +Test "sinh_downward (0x1.7p+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "j1 (0x1p1023)": -ildouble: 1 -ldouble: 1 -Test "j1 (0x1p16382)": +Test "sinh_downward (0x1.8p+4)": ildouble: 1 ldouble: 1 -Test "j1 (0x1p16383)": -ildouble: 2 -ldouble: 2 -Test "j1 (1.0)": +Test "sinh_downward (0xcp-4)": ildouble: 1 ldouble: 1 -Test "j1 (10.0)": -float: 2 -ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "j1 (2.0)": + +# sinh_towardzero +Test "sinh_towardzero (0x1.6p+4)": double: 1 idouble: 1 -Test "j1 (8.0)": +ildouble: 1 +ldouble: 1 +Test "sinh_towardzero (0x1.7p+4)": double: 1 idouble: 1 -ildouble: 4 -ldouble: 4 +ildouble: 1 +ldouble: 1 +Test "sinh_towardzero (0xcp-4)": +ildouble: 1 +ldouble: 1 -# jn -Test "jn (0, -4.0)": +# sinh_upward +Test "sinh_upward (0x1.7p+4)": +ildouble: 1 +ldouble: 1 +Test "sinh_upward (0x1.8p+4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "jn (0, 10.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "jn (0, 2.0)": -ildouble: 2 -ldouble: 2 -Test "jn (0, 4.0)": +Test "sinh_upward (0x8p-32)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "jn (0, 8.0)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (1, -1.0)": +Test "sinh_upward (0xcp-4)": ildouble: 1 ldouble: 1 -Test "jn (1, 0.75)": + +# tan +Test "tan (-0xc.90fdcp-4)": ildouble: 1 ldouble: 1 -Test "jn (1, 1.0)": +Test "tan (-0xc.90fdp-4)": ildouble: 1 ldouble: 1 -Test "jn (1, 10.0)": -float: 2 -ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "jn (1, 2.0)": -double: 1 -idouble: 1 -Test "jn (1, 8.0)": +Test "tan (-0xc.90fp-4)": +ildouble: 1 +ldouble: 1 +Test "tan (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "tan (0x6p+0)": +ildouble: 1 +ldouble: 1 + +# tan_downward +Test "tan_downward (-0x2p+64)": double: 1 idouble: 1 -ildouble: 4 -ldouble: 4 -Test "jn (10, -1.0)": +Test "tan_downward (-0xc.908p-4)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "jn (10, 0.125)": +Test "tan_downward (-0xc.90cp-4)": +float: 1 +ifloat: 1 +Test "tan_downward (-0xc.90ep-4)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (10, 0.75)": +Test "tan_downward (-0xc.90f8p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "jn (10, 1.0)": -ildouble: 1 -ldouble: 1 -Test "jn (10, 10.0)": +Test "tan_downward (-0xc.90fcp-4)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "jn (10, 2.0)": +Test "tan_downward (-0xc.90fd8p-4)": double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "jn (2, 0x1.ffff62p+99)": -double: 2 -float: 2 -idouble: 2 -ifloat: 2 -Test "jn (2, 2.4048255576957729)": -double: 2 float: 1 -idouble: 2 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "jn (3, 0.125)": +Test "tan_downward (-0xc.90fdap-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "jn (3, 0.75)": +Test "tan_downward (-0xc.90fdbp-4)": double: 1 +float: 1 idouble: 1 -Test "jn (3, 10.0)": -double: 3 +ifloat: 1 +Test "tan_downward (-0xc.90fdcp-4)": +double: 1 float: 1 -idouble: 3 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "jn (3, 2.0)": +Test "tan_downward (-0xc.90fdp-4)": float: 1 ifloat: 1 -Test "jn (3, 2.4048255576957729)": -double: 3 -idouble: 3 ildouble: 1 ldouble: 1 -Test "jn (4, 2.4048255576957729)": +Test "tan_downward (-0xc.90fep-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tan_downward (-0xc.90fp-4)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (5, 2.4048255576957729)": -double: 3 +Test "tan_downward (-0xc.91p-4)": +double: 1 float: 1 -idouble: 3 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "jn (6, 2.4048255576957729)": -double: 4 -float: 3 -idouble: 4 -ifloat: 3 -ildouble: 5 -ldouble: 5 -Test "jn (7, 2.4048255576957729)": -double: 3 -float: 5 -idouble: 3 -ifloat: 5 -ildouble: 3 -ldouble: 3 -Test "jn (8, 2.4048255576957729)": -double: 3 -float: 2 -idouble: 3 -ifloat: 2 -ildouble: 8 -ldouble: 8 -Test "jn (9, 2.4048255576957729)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (-0xc.92p-4)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -ildouble: 3 -ldouble: 3 - -# lgamma -Test "lgamma (-0.5)": +Test "tan_downward (-0xc.98p-4)": ildouble: 1 ldouble: 1 -Test "lgamma (0.7)": +Test "tan_downward (-0xc.9p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "lgamma (1.2)": +Test "tan_downward (-0xc.ap-4)": double: 1 -float: 2 idouble: 1 -ifloat: 2 ildouble: 1 ldouble: 1 - -# log10 -Test "log10 (0.75)": +Test "tan_downward (0x1p+0)": +double: 1 +idouble: 1 +Test "tan_downward (0x2.1e19e0c9bab24p+72)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -Test "log10 (e)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 - -# log2 -Test "log2 (0.75)": +Test "tan_downward (0x2.1e19ep+72)": ildouble: 1 ldouble: 1 - -# pow -Test "pow (0x0.fffffffffffff8p0, -0x1.23456789abcdfp62)": +Test "tan_downward (0x2p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "pow (0x0.ffffffp0, -0x1p24)": +Test "tan_downward (0x2p+64)": ildouble: 1 ldouble: 1 -Test "pow (0x0.ffffffp0, 0x1p24)": +Test "tan_downward (0x3p+0)": +double: 1 +idouble: 1 +Test "tan_downward (0x4p+0)": float: 1 ifloat: 1 -Test "pow (10.0, -4930.0)": -ildouble: 1 -ldouble: 1 -Test "pow (10.0, 4929.0)": ildouble: 1 ldouble: 1 -Test "pow (10.0, 4930.0)": +Test "tan_downward (0x6p+0)": +double: 1 +idouble: 1 +Test "tan_downward (0x7p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "pow (10.0, 4931.0)": +Test "tan_downward (0x8p+0)": ildouble: 1 ldouble: 1 -Test "pow (10.0, 4932.0)": +Test "tan_downward (0x8p+1020)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "pow (1e4932, 0.75)": +Test "tan_downward (0x8p+16380)": ildouble: 1 ldouble: 1 - -# pow10 -Test "pow10 (-1)": +Test "tan_downward (0xc.908p-4)": double: 1 +float: 1 idouble: 1 -Test "pow10 (-305)": +ifloat: 1 +Test "tan_downward (0xc.90cp-4)": double: 1 idouble: 1 -Test "pow10 (-36)": +Test "tan_downward (0xc.90fcp-4)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "pow10 (3)": +Test "tan_downward (0xc.90fdaa22168c8p-4)": double: 1 idouble: 1 -Test "pow10 (36)": +Test "tan_downward (0xc.90fdbp-4)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0xc.90fdcp-4)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0xc.90fdp-4)": double: 1 idouble: 1 -Test "pow10 (4932)": +Test "tan_downward (0xc.90fep-4)": ildouble: 1 ldouble: 1 - -# pow_downward -Test "pow_downward (1.5, 1.03125)": -float: 1 -ifloat: 1 - -# pow_towardzero -Test "pow_towardzero (1.5, 1.03125)": +Test "tan_downward (0xc.91p-4)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0xc.92p-4)": float: 1 ifloat: 1 - -# pow_upward -Test "pow_upward (1.0625, 1.125)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0xc.94p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# sin_downward -Test "sin_downward (10)": +Test "tan_downward (0xc.98p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "sin_downward (2)": ildouble: 1 ldouble: 1 -Test "sin_downward (3)": +Test "tan_downward (0xc.ap-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "sin_downward (4)": +Test "tan_downward (0xcp-4)": +double: 1 +idouble: 1 +Test "tan_downward (0xf.fffffp+124)": ildouble: 1 ldouble: 1 -Test "sin_downward (5)": -float: 1 -ifloat: 1 + +# tan_tonearest +Test "tan_tonearest (-0xc.90fdcp-4)": ildouble: 1 ldouble: 1 -Test "sin_downward (6)": -float: 1 -ifloat: 1 -Test "sin_downward (8)": +Test "tan_tonearest (-0xc.90fdp-4)": ildouble: 1 ldouble: 1 -Test "sin_downward (9)": +Test "tan_tonearest (-0xc.90fp-4)": ildouble: 1 ldouble: 1 - -# sin_tonearest -Test "sin_tonearest (1)": -float: 1 -ifloat: 1 -Test "sin_tonearest (3)": +Test "tan_tonearest (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "tan_tonearest (0x6p+0)": ildouble: 1 ldouble: 1 -# sin_towardzero -Test "sin_towardzero (1)": -float: 1 -ifloat: 1 -Test "sin_towardzero (10)": +# tan_towardzero +Test "tan_towardzero (-0x2p+64)": +double: 1 +idouble: 1 +Test "tan_towardzero (-0xc.908p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "sin_towardzero (2)": +Test "tan_towardzero (-0xc.90cp-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_towardzero (3)": +Test "tan_towardzero (-0xc.90f8p-4)": ildouble: 1 ldouble: 1 -Test "sin_towardzero (4)": -float: 1 -ifloat: 1 +Test "tan_towardzero (-0xc.90fcp-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_towardzero (5)": -float: 1 -ifloat: 1 +Test "tan_towardzero (-0xc.90fd8p-4)": ildouble: 1 ldouble: 1 -Test "sin_towardzero (8)": +Test "tan_towardzero (-0xc.90fdap-4)": ildouble: 1 ldouble: 1 -Test "sin_towardzero (9)": -float: 1 -ifloat: 1 +Test "tan_towardzero (-0xc.90fdp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (-0xc.91p-4)": ildouble: 1 ldouble: 1 - -# sin_upward -Test "sin_upward (1)": +Test "tan_towardzero (-0xc.94p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (-0xc.98p-4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "tan_towardzero (-0xc.ap-4)": +ildouble: 1 +ldouble: 1 +Test "tan_towardzero (0x1p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "sin_upward (10)": +Test "tan_towardzero (0x2.1e19e0c9bab24p+72)": +ildouble: 1 +ldouble: 1 +Test "tan_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x2.1e19ep+72)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "tan_towardzero (0x2p+0)": +ildouble: 1 +ldouble: 1 +Test "tan_towardzero (0x2p+64)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_upward (2)": -float: 2 -ifloat: 2 -Test "sin_upward (3)": +Test "tan_towardzero (0x5p+0)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x7p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_upward (4)": -float: 1 -ifloat: 1 -Test "sin_upward (6)": +Test "tan_towardzero (0x8p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_upward (7)": +Test "tan_towardzero (0x8p+16380)": ildouble: 1 ldouble: 1 -Test "sin_upward (9)": -float: 1 -ifloat: 1 - -# sincos -Test "sincos (0x1p+120) extra output 2": -float: 1 -ifloat: 1 -Test "sincos (0x1p+127) extra output 2": +Test "tan_towardzero (0x9p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "sincos (M_PI_6l*2.0) extra output 1": +Test "tan_towardzero (0xc.908p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "sincos (M_PI_6l*2.0) extra output 2": +Test "tan_towardzero (0xc.90cp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90fcp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90fdaa22168c8p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90fdp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.94p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.98p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xcp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xf.fffffp+124)": double: 1 idouble: 1 -Test "sincos (pi/6) extra output 2": -float: 1 -ifloat: 1 -# sinh_downward -Test "sinh_downward (22)": -float: 1 -ifloat: 1 +# tan_upward +Test "tan_upward (-0xc.908p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sinh_downward (23)": +Test "tan_upward (-0xc.90cp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "sinh_downward (24)": +Test "tan_upward (-0xc.90ep-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# sinh_towardzero -Test "sinh_towardzero (22)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "sinh_towardzero (23)": +Test "tan_upward (-0xc.90f8p-4)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "sinh_towardzero (24)": +Test "tan_upward (-0xc.90fcp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 - -# sinh_upward -Test "sinh_upward (22)": -ildouble: 1 -ldouble: 1 -Test "sinh_upward (23)": -ildouble: 1 -ldouble: 1 -Test "sinh_upward (24)": -ildouble: 1 -ldouble: 1 - -# tan_downward -Test "tan_downward (1)": +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.90fd8p-4)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_downward (10)": +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.90fdap-4)": float: 1 ifloat: 1 -Test "tan_downward (2)": +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.90fdbp-4)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_downward (6)": +Test "tan_upward (-0xc.90fdcp-4)": float: 1 ifloat: 1 -Test "tan_downward (8)": +Test "tan_upward (-0xc.90fdp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tan_downward (9)": -float: 1 -ifloat: 1 - -# tan_towardzero -Test "tan_towardzero (10)": +Test "tan_upward (-0xc.90fep-4)": float: 1 ifloat: 1 -Test "tan_towardzero (3)": +Test "tan_upward (-0xc.90fp-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tan_towardzero (4)": +Test "tan_upward (-0xc.91p-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tan_towardzero (5)": +Test "tan_upward (-0xc.94p-4)": +double: 1 +idouble: 1 +Test "tan_upward (-0xc.98p-4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "tan_upward (-0xc.9p-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tan_towardzero (6)": +Test "tan_upward (-0xc.ap-4)": ildouble: 1 ldouble: 1 -Test "tan_towardzero (9)": -float: 1 -ifloat: 1 +Test "tan_upward (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "tan_upward (0x2.1e19ep+72)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# tan_upward -Test "tan_upward (10)": +Test "tan_upward (0x2p+64)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (2)": +Test "tan_upward (0x4p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (3)": +Test "tan_upward (0x5p+0)": +double: 1 +idouble: 1 +Test "tan_upward (0x7p+0)": float: 1 ifloat: 1 +Test "tan_upward (0x8p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (4)": -ildouble: 1 -ldouble: 1 -Test "tan_upward (5)": +Test "tan_upward (0x9p+0)": +double: 1 +idouble: 1 +Test "tan_upward (0xap+0)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.908p-4)": float: 1 ifloat: 1 +Test "tan_upward (0xc.90ep-4)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.90f8p-4)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.90fd8p-4)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.90fdap-4)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.90fdbp-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (6)": +Test "tan_upward (0xc.90fdcp-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (9)": +Test "tan_upward (0xc.90fep-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# tanh -Test "tanh (-0.75)": +Test "tan_upward (0xc.90fp-4)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.91p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tanh (-1.0)": +Test "tan_upward (0xc.92p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tanh (0.75)": +Test "tan_upward (0xc.94p-4)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tanh (1.0)": +Test "tan_upward (0xc.98p-4)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 - -# tgamma -Test "tgamma (-0.5)": +Test "tan_upward (0xc.9p-4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "tgamma (-0x0.fffffffffffff8p0)": +Test "tan_upward (0xc.ap-4)": double: 1 +float: 1 idouble: 1 -Test "tgamma (-0x0.ffffffffffffffffffffffffffff8p0)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x0.ffffffp0)": +Test "tan_upward (0xcp-4)": float: 1 ifloat: 1 +Test "tan_upward (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "tan_upward (0xf.fffffp+124)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.0000000000000002p0)": + +# tanh +Test "tanh (-0x1p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.0000000000001p0)": +Test "tanh (-0xcp-4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.000002p0)": -double: 2 -idouble: 2 -Test "tgamma (-0x1.0a32a2p+5)": -float: 2 -ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x1.5800000080001p+7)": +Test "tanh (0x1p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.fffffffffffffffep0)": +Test "tanh (0xcp-4)": +ildouble: 1 +ldouble: 1 + +# tgamma +Test "tgamma (-0x1.0000000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.fffffffffffffp0)": +Test "tgamma (-0x1.0000000000001p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x13.ffffep0)": +Test "tgamma (-0x1.000002p+0)": +double: 2 +idouble: 2 +Test "tgamma (-0x1.3ffffep+4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x13.ffffffffffffffep0)": +Test "tgamma (-0x1.3ffffffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x13.fffffffffffffffffffffffff8p0)": +Test "tgamma (-0x1.3fffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x13.ffffffffffffp0)": +Test "tgamma (-0x1.3ffffffffffffp+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x14.000000000000000000000000001p0)": +Test "tgamma (-0x1.4000000000000000000000000001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x14.000000000001p0)": +Test "tgamma (-0x1.4000000000001p+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x14.00002p0)": +Test "tgamma (-0x1.400002p+4)": float: 1 ifloat: 1 ildouble: 4 ldouble: 4 -Test "tgamma (-0x1d.ffffep0)": +Test "tgamma (-0x1.dffffep+4)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x1d.fffffffffffffffffffffffff8p0)": +Test "tgamma (-0x1.dfffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1d.ffffffffffffp0)": +Test "tgamma (-0x1.dffffffffffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1e.000000000000000000000000001p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x1e.00000000000000000000000008p0)": +Test "tgamma (-0x1.e000000000000000000000000001p+4)": +ildouble: 3 +ldouble: 3 +Test "tgamma (-0x1.e00000000000000000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1e.000000000000002p0)": +Test "tgamma (-0x1.e000000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1e.000000000001p0)": +Test "tgamma (-0x1.e000000000001p+4)": double: 3 idouble: 3 -Test "tgamma (-0x1e.00002p0)": +Test "tgamma (-0x1.e00002p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x1.f3ffffffffffffffffffffffff8p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1f3.ffffffffffffffffffffffffffp0)": +Test "tgamma (-0x1.f3ffffffffffffffffffffffffffp+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1p-24)": +Test "tgamma (-0x1.f3fffffffffffp+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x1.f40000000000000000000000008p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.0000000000000000000000000002p0)": +Test "tgamma (-0x1.f40002p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.0000000000002p0)": -double: 1 -idouble: 1 +Test "tgamma (-0x1.fffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.000004p0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +Test "tgamma (-0x1.fffffffffffffp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.fffffcp0)": +Test "tgamma (-0x2.0000000000000000000000000002p+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.00000000000000000000000001p+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.0000000000002p+0)": double: 1 -float: 1 idouble: 1 +Test "tgamma (-0x2.000004p+0)": +double: 2 +float: 1 +idouble: 2 ifloat: 1 -Test "tgamma (-0x2.ffffffffffffep0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x27.fffffffffffep0)": +Test "tgamma (-0x2.146544p+4)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x2.7fffffffffffep+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x27.ffffffffffffffcp0)": +Test "tgamma (-0x2.7ffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x27.ffffffffffffffffffffffffffep0)": +Test "tgamma (-0x2.7ffffffffffffffffffffffffffep+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x27.fffffffffffffffffffffffffp0)": +Test "tgamma (-0x2.7fffffffffffffffffffffffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.0000000000000000000000001p0)": +Test "tgamma (-0x2.8000000000000000000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.000000000002p0)": +Test "tgamma (-0x2.80000000000000000000000001p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.8000000000002p+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.00004p0)": +Test "tgamma (-0x2.800004p+4)": double: 2 idouble: 2 ildouble: 2 ldouble: 2 -Test "tgamma (-0x28.ffffffffffffffcp0)": +Test "tgamma (-0x2.8fffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.ffffffffffffffffffffffffffep0)": +Test "tgamma (-0x2.8ffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.fffffffffffffffffffffffffp0)": +Test "tgamma (-0x2.8ffffffffffffffffffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.000000000000000000000000002p0)": +Test "tgamma (-0x2.8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "tgamma (-0x2.9000000000000000000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.0000000000000000000000001p0)": +Test "tgamma (-0x2.90000000000000000000000001p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x29.00004p0)": +Test "tgamma (-0x2.900004p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x2.9ffffcp+4)": double: 1 idouble: 1 -Test "tgamma (-0x29.ffffcp0)": +Test "tgamma (-0x2.9fffffffffffep+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.9ffffffffffffffcp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.9ffffffffffffffffffffffffffep+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.9fffffffffffffffffffffffffp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.a000000000000000000000000002p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.a000000000000004p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.a000000000002p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.a00004p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.edfffcp+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.edffffffffffep+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.edfffffffffffffffffffffffffep+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.ee00000000000000000000000002p+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.ee00000000000004p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x2.ee00000000002p+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.ee0004p+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.fffffcp+0)": double: 1 +float: 1 idouble: 1 -Test "tgamma (-0x29.fffffffffffep0)": +ifloat: 1 +Test "tgamma (-0x2.ffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.ffffffffffffffcp0)": +Test "tgamma (-0x2.fffffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.ffffffffffffffffffffffffffep0)": +Test "tgamma (-0x3.00000000000000000000000001p+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x3.000004p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (-0x3.1ffffcp+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.1fffffffffffep+4)": +double: 3 +idouble: 3 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.1ffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.fffffffffffffffffffffffffp0)": +Test "tgamma (-0x3.1ffffffffffffffffffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2a.000000000000000000000000002p0)": +Test "tgamma (-0x3.1fffffffffffffffffffffffffp+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.2000000000000000000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2a.0000000000000000000000001p0)": +Test "tgamma (-0x3.2000000000000004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2a.000000000000004p0)": +Test "tgamma (-0x3.200004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2a.000000000002p0)": +Test "tgamma (-0x3.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x2ed.fffffffffffffffffffffffffep0)": +Test "tgamma (-0x3.e7fffffffffffffcp+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2ee.00000000000004p0)": +Test "tgamma (-0x3.e7fffffffffffffffffffffffffep+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3.00000000000000000000000001p0)": +Test "tgamma (-0x3.e7ffffffffffffffffffffffffp+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.e800000000000000000000000002p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.e8000000000000000000000001p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.e800000000000004p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.e800000000002p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3.000004p0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "tgamma (-0x3.fffffcp0)": +Test "tgamma (-0x3.e80004p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.fffffcp+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x3.ffffffffffffep0)": +Test "tgamma (-0x3.ffffffffffffep+0)": double: 2 idouble: 2 -Test "tgamma (-0x3.fffffffffffffffcp0)": +Test "tgamma (-0x3.fffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3.fffffffffffffffffffffffffffep0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x31.fffffffffffep0)": -double: 3 -idouble: 3 +Test "tgamma (-0x3.fffffffffffffffffffffffffffep+0)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x31.ffffffffffffffcp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x31.ffffffffffffffffffffffffffep0)": +Test "tgamma (-0x4.000008p+0)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x31.fffffffffffffffffffffffffp0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x32.000000000000000000000000002p0)": +Test "tgamma (-0x4.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x32.0000000000000000000000001p0)": +Test "tgamma (-0x4.e1fffffffffffffffffffffffep+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x32.000000000000004p0)": +Test "tgamma (-0x4.e2000000000000000000000002p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3e7.fffffffffffffcp0)": +Test "tgamma (-0x4.e200000000000008p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3e7.fffffffffffffffffffffffffep0)": +Test "tgamma (-0x4.e200000000004p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3e8.00000000000000000000000002p0)": +Test "tgamma (-0x4.e20008p+8)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x3e8.00000000000004p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x4.0000000000004p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x4.000008p0)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x4.fffff8p0)": +Test "tgamma (-0x4.fffff8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x4.ffffffffffffcp0)": +Test "tgamma (-0x4.ffffffffffffcp+0)": double: 1 idouble: 1 +Test "tgamma (-0x4.fffffffffffffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.fffffffffffffffffffffffffep0)": +Test "tgamma (-0x4.fffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.fffffffffffffffffffffffffffcp0)": +Test "tgamma (-0x4.fffffffffffffffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.0000000000000008p0)": +Test "tgamma (-0x5.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.0000000000004p0)": +Test "tgamma (-0x5.0000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.000008p0)": +Test "tgamma (-0x5.000008p+0)": double: 1 float: 2 idouble: 1 ifloat: 2 -Test "tgamma (-0x5.fffff8p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x5.ffffffffffffcp0)": +Test "tgamma (-0x5.8p+0)": double: 1 idouble: 1 +Test "tgamma (-0x5.dbfffffffffffff8p+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x5.dbfffffffffffffffffffffffffcp+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.fffffffffffffff8p0)": +Test "tgamma (-0x5.dc00000000000000000000000004p+8)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x5.fffffffffffffffffffffffffep0)": +Test "tgamma (-0x5.dc000000000000000000000002p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.fffffffffffffffffffffffffffcp0)": +Test "tgamma (-0x5.dc00000000004p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5db.fffffffffffff8p0)": +Test "tgamma (-0x5.dc0008p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5db.fffffffffffffffffffffffffcp0)": +Test "tgamma (-0x5.fffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5dc.00000000000000000000000004p0)": +Test "tgamma (-0x5.ffffffffffffcp+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x5.fffffffffffffff8p+0)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x6.0000000000000000000000000004p0)": +Test "tgamma (-0x5.fffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.00000000000000000000000002p0)": +Test "tgamma (-0x5.fffffffffffffffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.0000000000004p0)": +Test "tgamma (-0x6.0000000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.000008p0)": +Test "tgamma (-0x6.00000000000000000000000002p+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x6.000008p+0)": float: 2 ifloat: 2 ildouble: 2 ldouble: 2 -Test "tgamma (-0x6.fffff8p0)": +Test "tgamma (-0x6.3ffff8p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x6.3fffffffffffcp+4)": double: 2 -float: 1 idouble: 2 +Test "tgamma (-0x6.3ffffffffffffff8p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.3ffffffffffffffffffffffffep+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.4000000000000000000000000004p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x6.40000000000000000000000002p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x6.4000000000004p+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.400008p+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.8p+0)": +float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.ffffffffffffcp0)": -double: 4 -idouble: 4 +Test "tgamma (-0x6.d5fff8p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.fffffffffffffff8p0)": +Test "tgamma (-0x6.d5ffffffffffcp+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.fffffffffffffffffffffffffffcp0)": +Test "tgamma (-0x6.d5fffffffffffff8p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x63.fffffffffffcp0)": -double: 2 -idouble: 2 -Test "tgamma (-0x63.ffffffffffffff8p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x63.ffffffffffffffffffffffffep0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x64.000000000000000000000000004p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x64.0000000000000000000000002p0)": +Test "tgamma (-0x6.d5fffffffffffffffffffffffep+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x64.000000000004p0)": -double: 1 -idouble: 1 +Test "tgamma (-0x6.d600000000000000000000000004p+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x6.d6000000000000000000000002p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.d600000000000008p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6d5.fffffffffffff8p0)": +Test "tgamma (-0x6.d600000000004p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6d6.00000000000000000000000004p0)": +Test "tgamma (-0x6.e2fffffffffffffffffffffffep+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.e300000000000000000000000004p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.e3000000000000000000000002p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6e3.00000000000000000000000004p0)": +Test "tgamma (-0x6.fffff8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (-0x6.ffffffffffffcp+0)": +double: 4 +idouble: 4 +Test "tgamma (-0x6.fffffffffffffff8p+0)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x7.0000000000000008p0)": +Test "tgamma (-0x6.fffffffffffffffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.0000000000004p0)": +Test "tgamma (-0x7.0000000000000008p+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x7.0000000000004p+0)": double: 3 idouble: 3 -Test "tgamma (-0x7.000008p0)": +Test "tgamma (-0x7.000008p+0)": double: 1 idouble: 1 -Test "tgamma (-0x7.fffff8p0)": +Test "tgamma (-0x7.8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (-0x7.fffff8p+0)": double: 3 float: 1 idouble: 3 ifloat: 1 -Test "tgamma (-0x7.ffffffffffffcp0)": +Test "tgamma (-0x7.ffffffffffffcp+0)": double: 3 idouble: 3 -Test "tgamma (-0x7.fffffffffffffff8p0)": +Test "tgamma (-0x7.fffffffffffffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.fffffffffffffffffffffffffep0)": +Test "tgamma (-0x7.fffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.fffffffffffffffffffffffffffcp0)": +Test "tgamma (-0x7.fffffffffffffffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x8.0000000000000000000000000008p0)": +Test "tgamma (-0x8.0000000000000000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x8.00000000000000000000000004p0)": +Test "tgamma (-0x8.00000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x8.0000000000008p0)": +Test "tgamma (-0x8.0000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x8.00001p0)": +Test "tgamma (-0x8.00001p+0)": double: 2 idouble: 2 ildouble: 1 ldouble: 1 -Test "tgamma (-0x9.ffffffffffff8p0)": +Test "tgamma (-0x8.8p+0)": double: 1 +float: 1 idouble: 1 -Test "tgamma (-0x9.fffffffffffffffffffffffffff8p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x95.ffffffffffffffp0)": +ifloat: 1 +Test "tgamma (-0x8p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x9.5ffffffffffffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x96.000000000000000000000000008p0)": +Test "tgamma (-0x9.5ffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x96.0000000000000000000000004p0)": +Test "tgamma (-0x9.60000000000000000000000004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x96.00000000000001p0)": +Test "tgamma (-0x9.600000000000001p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x96.000000000008p0)": +Test "tgamma (-0x9.6000000000008p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x9.60001p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x9.8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "tgamma (-0x9.ffffffffffff8p+0)": +double: 1 +idouble: 1 +Test "tgamma (-0x9.fffffffffffffffffffffffffff8p+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xa.00001p+0)": double: 1 idouble: 1 -Test "tgamma (-0xa.0000000000008p0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xa.00001p0)": +Test "tgamma (-0xa.c000000400008p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xa.c0001p+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0xb4.ffffffffffffffffffffffffcp0)": +Test "tgamma (-0xb.4ffffffffffffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb4.ffffffffffffffp0)": +Test "tgamma (-0xb.4ffffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb5.0000000000000000000000004p0)": +Test "tgamma (-0xb.4ffffffffffffffp+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.50000000000000000000000004p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.500000000000001p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.5000000000008p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.5ffffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb5.00000000000001p0)": +Test "tgamma (-0xb.5ffffp+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xb5.000000000008p0)": +Test "tgamma (-0xb.60000000000000000000000004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb5.ffffffffffffffffffffffffff8p0)": +Test "tgamma (-0xb.600000000000001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb6.00000000000001p0)": +Test "tgamma (-0xb.6000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb6.000000000008p0)": +Test "tgamma (-0xb.6fffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb6.fffffffffff8p0)": +Test "tgamma (-0xb.6ffffffffffffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb6.ffffffffffffffffffffffffff8p0)": +Test "tgamma (-0xb.6ffffffffffffffffffffffffff8p+4)": ildouble: 3 ldouble: 3 -Test "tgamma (-0xb7.000000000000000000000000008p0)": +Test "tgamma (-0xb.7000000000000000000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb7.00000000000001p0)": +Test "tgamma (-0xb.700000000000001p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xb7.000000000008p0)": +Test "tgamma (-0xb.7000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb7.ffffffffffffffffffffffffcp0)": +Test "tgamma (-0xb.70001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb7.ffffffffffffffffffffffffff8p0)": +Test "tgamma (-0xb.7ffffffffffffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb8.00000000000001p0)": +Test "tgamma (-0xb.7ffffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbb.ffffffffffffffffffffffffcp0)": +Test "tgamma (-0xb.800000000000001p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.bfffffffffff8p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.bffffffffffffffffffffffffcp+4)": ildouble: 3 ldouble: 3 -Test "tgamma (-0xbb.ffffffffffffffffffffffffff8p0)": +Test "tgamma (-0xb.bffffffffffffffffffffffffff8p+4)": ildouble: 4 ldouble: 4 -Test "tgamma (-0xbc.000000000000000000000000008p0)": +Test "tgamma (-0xb.bffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbc.0000000000000000000000004p0)": +Test "tgamma (-0xb.c000000000000000000000000008p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.c0000000000000000000000004p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.c00000000000001p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xbc.00000000000001p0)": +Test "tgamma (-0xb.c000000000008p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xbc.ffffffffffffffp0)": +Test "tgamma (-0xb.c0001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbd.000000000000000000000000008p0)": +Test "tgamma (-0xb.cfffffffffff8p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.cffffffffffffffffffffffffcp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.cffffffffffffffffffffffffff8p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.cffffffffffffffp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.cffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbd.00000000000001p0)": +Test "tgamma (-0xb.d000000000000000000000000008p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.d00000000000001p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xbd.ffffffffffffffp0)": +Test "tgamma (-0xb.dfffffffffff8p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.dffffffffffffffp+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xbe.000000000000000000000000008p0)": +Test "tgamma (-0xb.dffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbe.0000000000000000000000004p0)": +Test "tgamma (-0xb.e000000000000000000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbe.ffffffffffffffffffffffffcp0)": +Test "tgamma (-0xb.e000000000008p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.e0001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbe.ffffffffffffffp0)": +Test "tgamma (-0xb.efffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbf.000000000000000000000000008p0)": +Test "tgamma (-0xb.effffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbf.0000000000000000000000004p0)": +Test "tgamma (-0xb.effffffffffffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbf.00000000000001p0)": +Test "tgamma (-0xb.f000000000000000000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xf9.ffffffffffffffp0)": +Test "tgamma (-0xb.f0000000000000000000000004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xfa.000000000000000000000000008p0)": +Test "tgamma (-0xb.f00000000000001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-2.5)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +Test "tgamma (-0xb.f0001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-3.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "tgamma (-0xf.9fffffffffff8p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xf.9ffffffffffffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-4.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (-5.5)": +Test "tgamma (-0xf.9ffffp+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xf.a000000000000000000000000008p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xf.a0000000000000000000000004p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xf.a000000000008p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xf.a0001p+4)": +ildouble: 3 +ldouble: 3 +Test "tgamma (-0xf.ffffffffffff8p-4)": double: 1 idouble: 1 -Test "tgamma (-6.5)": +Test "tgamma (-0xf.fffffffffffffffffffffffffff8p-4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xf.fffffp-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-7.5)": +Test "tgamma (0x1.28p+4)": +double: 1 +idouble: 1 +Test "tgamma (0x1.38p+4)": double: 2 -float: 1 idouble: 2 -ifloat: 1 -Test "tgamma (-8.5)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0x1.78p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-9.5)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "tgamma (0.5)": -float: 1 -ifloat: 1 -Test "tgamma (0.7)": +Test "tgamma (0x1.d8p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (0x1.fffffep0)": +Test "tgamma (0x1.fffffep+0)": float: 1 ifloat: 1 -Test "tgamma (0x1.fffffffffffffffep0)": +Test "tgamma (0x1.fffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x1.ffffffffffffffffffffffffffffp0)": +Test "tgamma (0x1.ffffffffffffffffffffffffffffp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x1.fffffffffffffp0)": +Test "tgamma (0x1.fffffffffffffp+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x1p-113)": -ildouble: 1 -ldouble: 1 Test "tgamma (0x1p-24)": float: 1 ifloat: 1 -Test "tgamma (0x1p-53)": +Test "tgamma (0x2.08p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0x2.18p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0x2.28p+4)": double: 1 idouble: 1 Test "tgamma (0x2.30a43cp+4)": @@ -8861,482 +17441,560 @@ double: 1 idouble: 1 ildouble: 2 ldouble: 2 -Test "tgamma (0x2.fffffcp0)": +Test "tgamma (0x2.8p+0)": +float: 2 +ifloat: 2 +Test "tgamma (0x2.fffffcp+0)": float: 3 ifloat: 3 -Test "tgamma (0x2.ffffffffffffep0)": +Test "tgamma (0x2.ffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x3.0000000000002p0)": +Test "tgamma (0x3.0000000000002p+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0x3.8p+0)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (0x3.fffffcp0)": +Test "tgamma (0x3.fffffcp+0)": float: 1 ifloat: 1 -Test "tgamma (0x3.ffffffffffffep0)": +Test "tgamma (0x3.ffffffffffffep+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x3.fffffffffffffffcp0)": +Test "tgamma (0x3.fffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x3.fffffffffffffffffffffffffffep0)": +Test "tgamma (0x3.fffffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.0000000000000000000000000004p0)": +Test "tgamma (0x3p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x4.0000000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.0000000000004p0)": +Test "tgamma (0x4.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x4.000008p0)": +Test "tgamma (0x4.000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.fffff8p0)": +Test "tgamma (0x4.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (0x4.fffff8p+0)": float: 1 ifloat: 1 -Test "tgamma (0x4.ffffffffffffcp0)": +Test "tgamma (0x4.ffffffffffffcp+0)": double: 1 idouble: 1 -Test "tgamma (0x4.fffffffffffffffffffffffffep0)": +Test "tgamma (0x4.fffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.fffffffffffffffffffffffffffcp0)": +Test "tgamma (0x4.fffffffffffffffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.0000000000000000000000000004p0)": +Test "tgamma (0x4p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x5.0000000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.0000000000004p0)": +Test "tgamma (0x5.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x5.000008p0)": +Test "tgamma (0x5.000008p+0)": float: 3 ifloat: 3 -Test "tgamma (0x5.fffff8p0)": +Test "tgamma (0x5.fffff8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (0x5.ffffffffffffcp0)": +Test "tgamma (0x5.ffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.fffffffffffffff8p0)": +Test "tgamma (0x5.fffffffffffffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.fffffffffffffffffffffffffep0)": +Test "tgamma (0x5.fffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x6.0000000000000000000000000004p0)": +Test "tgamma (0x6.0000000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x6.0000000000000008p0)": +Test "tgamma (0x6.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x6.0000000000004p0)": +Test "tgamma (0x6.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x6.000008p0)": +Test "tgamma (0x6.000008p+0)": float: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (0x6.fffff8p0)": +Test "tgamma (0x6.8p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x6.db8c603359a94p+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0x6.fffff8p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x6.ffffffffffffcp0)": +Test "tgamma (0x6.ffffffffffffcp+0)": double: 4 idouble: 4 -Test "tgamma (0x6.fffffffffffffff8p0)": +Test "tgamma (0x6.fffffffffffffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x7.0000000000000000000000000004p0)": +Test "tgamma (0x6p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x7.0000000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x7.0000000000000008p0)": +Test "tgamma (0x7.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x7.0000000000004p0)": +Test "tgamma (0x7.0000000000004p+0)": double: 4 idouble: 4 -Test "tgamma (0x7.000008p0)": +Test "tgamma (0x7.000008p+0)": double: 1 idouble: 1 -Test "tgamma (0x7.fffff8p0)": +Test "tgamma (0x7.8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (0x7.fffff8p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -Test "tgamma (0x7.ffffffffffffcp0)": +Test "tgamma (0x7.ffffffffffffcp+0)": double: 2 idouble: 2 ildouble: 1 ldouble: 1 -Test "tgamma (0x7.fffffffffffffffffffffffffffcp0)": +Test "tgamma (0x7.fffffffffffffffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x8.0000000000000000000000000008p0)": +Test "tgamma (0x7p+0)": +double: 1 +idouble: 1 +Test "tgamma (0x8.0000000000000000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x8.0000000000008p0)": +Test "tgamma (0x8.0000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x8.00001p0)": +Test "tgamma (0x8.00001p+0)": double: 2 idouble: 2 -Test "tgamma (0xa.b9fd72b0fb238p+4)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (0xa.b9fd72b0fb23a9ddbf0d3804f8p+4)": -ildouble: 2 -ldouble: 2 -Test "tgamma (10)": +Test "tgamma (0x8.8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (18.5)": +Test "tgamma (0x8p+0)": double: 1 idouble: 1 -Test "tgamma (19.5)": -double: 2 -idouble: 2 +Test "tgamma (0x8p-116)": ildouble: 1 ldouble: 1 -Test "tgamma (2.5)": -float: 2 -ifloat: 2 -Test "tgamma (23.5)": -double: 1 +Test "tgamma (0x8p-4)": float: 1 -idouble: 1 ifloat: 1 -Test "tgamma (29.5)": +Test "tgamma (0x8p-56)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "tgamma (3)": +Test "tgamma (0x9.8p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "tgamma (3.5)": -float: 2 -ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (32.5)": +Test "tgamma (0x9p+0)": +double: 1 +idouble: 1 +Test "tgamma (0xa.b9fd72b0fb238p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "tgamma (0xa.b9fd72b0fb23a9ddbf0d3804f8p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (0xa.b9fd72b0fb23a9dp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (33.5)": +Test "tgamma (0xa.b9fd72b0fb23a9ep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (34.5)": -double: 1 -idouble: 1 -Test "tgamma (4)": -float: 1 -ifloat: 1 -Test "tgamma (4.5)": +Test "tgamma (0xa.b9fd7p+4)": +double: 2 +idouble: 2 +Test "tgamma (0xap+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (6)": -float: 1 -ifloat: 1 -Test "tgamma (6.5)": +Test "tgamma (0xb.3333333333333333333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 + +# y0 +Test "y0 (0x1.8p+0)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "tgamma (7)": +Test "y0 (0x1.ff00000000002p+840)": double: 1 idouble: 1 -Test "tgamma (7.5)": +ildouble: 1 +ldouble: 1 +Test "y0 (0x1p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -Test "tgamma (8)": +Test "y0 (0x1p-100)": +ildouble: 1 +ldouble: 1 +Test "y0 (0x1p-20)": double: 1 idouble: 1 -Test "tgamma (8.5)": +ildouble: 1 +ldouble: 1 +Test "y0 (0x1p-40)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (9)": -double: 1 -idouble: 1 -Test "tgamma (9.5)": -double: 1 +Test "y0 (0x1p-60)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# y0 -Test "y0 (0x1.3ffp+74)": +Test "y0 (0x1p-80)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "y0 (0x1.ff00000000002p+840)": +Test "y0 (0x2p+0)": +double: 1 +idouble: 1 +Test "y0 (0x4.ffcp+72)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "y0 (0x1p-10)": +Test "y0 (0x4p+16380)": ildouble: 1 ldouble: 1 -Test "y0 (0x1p-110)": +Test "y0 (0x4p-112)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "y0 (0x1p-20)": -double: 1 -idouble: 1 -Test "y0 (0x1p-30)": +Test "y0 (0x4p-12)": +ildouble: 1 +ldouble: 1 +Test "y0 (0x4p-32)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "y0 (0x1p-40)": +Test "y0 (0x4p-72)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "y0 (0x1p-60)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "y0 (0x1p-70)": +Test "y0 (0x8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "y0 (0x1p-80)": -double: 1 -idouble: 1 -Test "y0 (0x1p1023)": -ildouble: 1 -ldouble: 1 -Test "y0 (0x1p16382)": +ildouble: 3 +ldouble: 3 +Test "y0 (0x8p+1020)": ildouble: 1 ldouble: 1 -Test "y0 (0x1p16383)": +Test "y0 (0x8p+16380)": ildouble: 2 ldouble: 2 -Test "y0 (1.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "y0 (1.5)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "y0 (10.0)": +Test "y0 (0xap+0)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 3 ldouble: 3 -Test "y0 (2.0)": +Test "y0 (0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 -Test "y0 (8.0)": +Test "y0 (0xf.fffffp+124)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 3 -ldouble: 3 # y1 -Test "y1 (0.125)": -double: 1 -idouble: 1 -Test "y1 (0.75)": +Test "y1 (0x1.8p+0)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "y1 (0x1.001000001p+593)": +Test "y1 (0x1p-100)": ildouble: 1 ldouble: 1 -Test "y1 (0x1.27e204p+99)": +Test "y1 (0x1p-20)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x1p-80)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x2.002000002p+592)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x2p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "y1 (0x2p-4)": double: 1 idouble: 1 -Test "y1 (0x1p-10)": +Test "y1 (0x4p-112)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x4p-12)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "y1 (0x1p-30)": +Test "y1 (0x4p-32)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x4p-72)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x4p-92)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "y1 (0x1p1023)": +Test "y1 (0x8p+1020)": ildouble: 1 ldouble: 1 -Test "y1 (0x1p16383)": +Test "y1 (0x8p+16380)": ildouble: 2 ldouble: 2 -Test "y1 (1.5)": -float: 1 -ifloat: 1 +Test "y1 (0x9.3f102p+96)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "y1 (10.0)": +Test "y1 (0xap+0)": double: 3 float: 1 idouble: 3 ifloat: 1 -Test "y1 (2.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "y1 (0xf.ffffffffffff8p+1020)": ildouble: 1 ldouble: 1 -Test "y1 (8.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +Test "y1 (0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 1 ldouble: 1 +Test "y1 (0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 # yn -Test "yn (0, 1.0)": +Test "yn (-10, 0x1p+0)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "yn (0, 0x1.8p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -Test "yn (0, 1.5)": +Test "yn (0, 0x1p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -Test "yn (0, 10.0)": +Test "yn (0, 0x2p+0)": +double: 1 +idouble: 1 +Test "yn (0, 0x8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 3 ldouble: 3 -Test "yn (0, 2.0)": -double: 1 -idouble: 1 -Test "yn (0, 8.0)": +Test "yn (0, 0xap+0)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 3 ldouble: 3 -Test "yn (1, 0.125)": +Test "yn (1, 0x1.8p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "yn (1, 0x2p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "yn (1, 0x2p-4)": double: 1 idouble: 1 -Test "yn (1, 0.75)": +Test "yn (1, 0x8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "yn (1, 1.5)": +Test "yn (1, 0xap+0)": +double: 3 float: 1 +idouble: 3 ifloat: 1 +Test "yn (10, 0x1p+0)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "yn (1, 10.0)": +Test "yn (10, 0x2p+0)": double: 3 float: 1 idouble: 3 ifloat: 1 -Test "yn (1, 2.0)": +ildouble: 2 +ldouble: 2 +Test "yn (10, 0x2p-4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "yn (10, 0xap+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "yn (10, 0xcp-4)": double: 1 float: 1 idouble: 1 ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "yn (2, 0x8p+1020)": ildouble: 1 ldouble: 1 -Test "yn (1, 8.0)": +Test "yn (2, 0x8p+124)": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "yn (10, 0.125)": -double: 1 -idouble: 1 +Test "yn (2, 0x8p+16380)": ildouble: 2 ldouble: 2 -Test "yn (10, 0.75)": +Test "yn (2, 0xf.fffb1p+96)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -ildouble: 5 -ldouble: 5 -Test "yn (10, 1.0)": -float: 2 -ifloat: 2 ildouble: 1 ldouble: 1 -Test "yn (10, 10.0)": -double: 2 -idouble: 2 -ildouble: 2 -ldouble: 2 -Test "yn (10, 2.0)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "yn (3, 0.125)": +Test "yn (2, 0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 -Test "yn (3, 0.75)": +ildouble: 1 +ldouble: 1 +Test "yn (2, 0xf.fffffp+124)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "yn (3, 10.0)": +Test "yn (3, 0x2p+0)": +double: 1 +idouble: 1 +Test "yn (3, 0x2p-4)": +double: 1 +idouble: 1 +Test "yn (3, 0xap+0)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "yn (3, 2.0)": -double: 1 -idouble: 1 +Test "yn (3, 0xcp-4)": +ildouble: 2 +ldouble: 2 # Maximal error of functions: Function: "acos_downward": -double: 1 float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: "acos_towardzero": -double: 1 float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: "acos_upward": +double: 1 +idouble: 1 + +Function: "acosh": +double: 1 +idouble: 1 +ldouble: 1 + +Function: "asin": ildouble: 1 ldouble: 1 @@ -9348,18 +18006,37 @@ ifloat: 1 ildouble: 1 ldouble: 1 +Function: "asin_tonearest": +ildouble: 1 +ldouble: 1 + Function: "asin_towardzero": double: 1 float: 1 idouble: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: "asin_upward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + +Function: "asinh": +double: 1 float: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Function: "atan": +double: 1 +idouble: 1 + Function: "atan2": float: 1 ifloat: 1 @@ -9369,6 +18046,8 @@ ldouble: 1 Function: "atanh": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: Real part of "cacos": double: 1 @@ -9464,7 +18143,9 @@ ldouble: 1 Function: "cbrt": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 @@ -9549,54 +18230,80 @@ ildouble: 2 ldouble: 2 Function: "cos": -double: 2 float: 1 -idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 Function: "cos_downward": -float: 1 -ifloat: 1 +double: 1 +float: 2 +idouble: 1 +ifloat: 2 ildouble: 2 ldouble: 2 Function: "cos_tonearest": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: "cos_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 1 +ldouble: 1 Function: "cos_upward": +double: 1 float: 2 +idouble: 1 ifloat: 2 +ildouble: 2 +ldouble: 2 + +Function: "cosh": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "cosh_downward": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 -ldouble: 1 +ldouble: 2 Function: "cosh_tonearest": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "cosh_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 -ldouble: 1 +ldouble: 2 Function: "cosh_upward": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 ildouble: 1 -ldouble: 1 +ldouble: 3 Function: Real part of "cpow": double: 2 @@ -9654,149 +18361,171 @@ ifloat: 1 ildouble: 1 ldouble: 1 -Function: Real part of "ctan": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 - -Function: Imaginary part of "ctan": +Function: Real part of "ctan": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 3 +ldouble: 3 -Function: Real part of "ctan_downward": +Function: Imaginary part of "ctan": double: 2 float: 1 idouble: 2 ifloat: 1 +ildouble: 3 +ldouble: 3 + +Function: Real part of "ctan_downward": +double: 6 +float: 5 +idouble: 6 +ifloat: 5 ildouble: 4 ldouble: 4 Function: Imaginary part of "ctan_downward": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 5 ldouble: 5 Function: Real part of "ctan_tonearest": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 3 ldouble: 3 Function: Imaginary part of "ctan_tonearest": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 3 ldouble: 3 Function: Real part of "ctan_towardzero": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 4 +ldouble: 4 Function: Imaginary part of "ctan_towardzero": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 5 ldouble: 5 Function: Real part of "ctan_upward": double: 2 -float: 1 +float: 3 idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 +ifloat: 3 +ildouble: 5 +ldouble: 5 Function: Imaginary part of "ctan_upward": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +double: 2 +float: 3 +idouble: 2 +ifloat: 3 ildouble: 3 ldouble: 3 Function: Real part of "ctanh": -double: 1 +double: 2 float: 2 -idouble: 1 +idouble: 2 ifloat: 2 -ildouble: 2 -ldouble: 2 +ildouble: 3 +ldouble: 3 Function: Imaginary part of "ctanh": -double: 1 +double: 2 float: 1 -idouble: 1 +idouble: 2 ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 3 +ldouble: 3 Function: Real part of "ctanh_downward": +double: 4 float: 1 +idouble: 4 ifloat: 1 ildouble: 5 ldouble: 5 Function: Imaginary part of "ctanh_downward": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +double: 6 +float: 5 +idouble: 6 +ifloat: 5 ildouble: 4 ldouble: 4 Function: Real part of "ctanh_tonearest": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 3 ldouble: 3 Function: Imaginary part of "ctanh_tonearest": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 3 ldouble: 3 Function: Real part of "ctanh_towardzero": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 5 ldouble: 5 Function: Imaginary part of "ctanh_towardzero": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 - -Function: Real part of "ctanh_upward": -double: 1 +double: 5 float: 2 -idouble: 1 +idouble: 5 ifloat: 2 ildouble: 3 ldouble: 3 +Function: Real part of "ctanh_upward": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 3 +ldouble: 3 + Function: Imaginary part of "ctanh_upward": double: 2 -float: 1 +float: 3 idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 +ifloat: 3 +ildouble: 5 +ldouble: 5 Function: "erf": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Function: "erfc": double: 1 @@ -9812,29 +18541,73 @@ idouble: 1 ildouble: 1 ldouble: 1 +Function: "exp10_downward": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 + +Function: "exp10_tonearest": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + +Function: "exp10_towardzero": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 + +Function: "exp10_upward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + Function: "exp2": ildouble: 1 ldouble: 1 Function: "exp_downward": +double: 1 +idouble: 1 + +Function: "exp_towardzero": +double: 1 +idouble: 1 + +Function: "exp_upward": +double: 1 +idouble: 1 + +Function: "expm1": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Function: "exp_towardzero": +Function: "expm1_downward": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Function: "exp_upward": +Function: "expm1_tonearest": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Function: "expm1": +Function: "expm1_towardzero": double: 1 float: 1 idouble: 1 @@ -9842,17 +18615,27 @@ ifloat: 1 ildouble: 1 ldouble: 1 -Function: "gamma": +Function: "expm1_upward": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 +ifloat: 1 ildouble: 1 ldouble: 1 -Function: "hypot": +Function: "gamma": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 + +Function: "hypot": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Function: "j0": double: 2 @@ -9872,17 +18655,23 @@ ldouble: 4 Function: "jn": double: 4 -float: 5 +float: 4 idouble: 4 -ifloat: 5 -ildouble: 8 -ldouble: 8 +ifloat: 4 +ildouble: 7 +ldouble: 7 Function: "lgamma": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +Function: "log": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 @@ -9895,6 +18684,8 @@ ildouble: 1 ldouble: 1 Function: "log1p": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 @@ -9918,6 +18709,12 @@ Function: "pow_downward": float: 1 ifloat: 1 +Function: "pow_tonearest": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + Function: "pow_towardzero": float: 1 ifloat: 1 @@ -9928,12 +18725,20 @@ ifloat: 1 ildouble: 1 ldouble: 1 -Function: "sin_downward": +Function: "sin": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Function: "sin_downward": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 + Function: "sin_tonearest": float: 1 ifloat: 1 @@ -9941,62 +18746,78 @@ ildouble: 1 ldouble: 1 Function: "sin_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: "sin_upward": +double: 1 float: 2 +idouble: 1 ifloat: 2 -ildouble: 1 -ldouble: 1 +ildouble: 3 +ldouble: 3 Function: "sincos": -double: 1 float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: "sinh_downward": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Function: "sinh_towardzero": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Function: "sinh_upward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "tan": +ildouble: 1 +ldouble: 1 + +Function: "tan_downward": double: 1 +float: 2 idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 -Function: "tan_downward": -float: 1 -ifloat: 1 +Function: "tan_tonearest": ildouble: 1 ldouble: 1 Function: "tan_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: "tan_upward": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: "tanh": ildouble: 1 @@ -10031,7 +18852,7 @@ double: 3 float: 2 idouble: 3 ifloat: 2 -ildouble: 5 -ldouble: 5 +ildouble: 4 +ldouble: 4 # end of automatic generation -- cgit v1.2.3 From 7beb48cbb77ef32135a07b429838521a0c181377 Mon Sep 17 00:00:00 2001 From: Andreas Krebbel Date: Wed, 15 Jan 2014 09:50:31 +0100 Subject: [BZ #16427] Fix ldbl-128 exp overflows. Invoke the non-IEEE handling only for numbers special also in the IEEE case. This aligns the exp handling with the other ldbl variants. --- ChangeLog | 6 ++++++ sysdeps/ieee754/ldbl-128/w_expl.c | 18 +++++------------- 2 files changed, 11 insertions(+), 13 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 4eab51195c..d455e16ee1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2014-01-15 Andreas Krebbel + + [BZ #16427] + * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Invoke the non-IEEE + handling only for numbers special also in the IEEE case. + 2014-01-15 Andreas Krebbel * sysdeps/s390/fpu/libm-test-ulps: Regenerate. diff --git a/sysdeps/ieee754/ldbl-128/w_expl.c b/sysdeps/ieee754/ldbl-128/w_expl.c index 10193befa9..f0b1f8e55f 100644 --- a/sysdeps/ieee754/ldbl-128/w_expl.c +++ b/sysdeps/ieee754/ldbl-128/w_expl.c @@ -25,24 +25,16 @@ static char rcsid[] = "$NetBSD: $"; #include #include -static const long double -o_threshold= 1.1356523406294143949491931077970763428449E4L, -u_threshold= -1.1433462743336297878837243843452621503410E4; - long double __expl(long double x) /* wrapper exp */ { #ifdef _IEEE_LIBM return __ieee754_expl(x); #else - long double z; - z = __ieee754_expl(x); - if(_LIB_VERSION == _IEEE_) return z; - if(__finitel(x)) { - if(x>o_threshold) - return __kernel_standard_l(x,x,206); /* exp overflow */ - else if(x Date: Tue, 14 Jan 2014 16:07:50 +0100 Subject: Do not enable asynchronous cancellation in system. Fixes bug 14782. We needlessly enabled thread cancellation before it was necessary. As only call that needs to be guarded is waitpid which is cancellation point we could remove cancellation altogether. --- NEWS | 28 ++++++++++++++-------------- sysdeps/posix/system.c | 11 +---------- 2 files changed, 15 insertions(+), 24 deletions(-) (limited to 'sysdeps') diff --git a/NEWS b/NEWS index 7e30dd4557..f406522882 100644 --- a/NEWS +++ b/NEWS @@ -12,20 +12,20 @@ Version 2.19 156, 387, 431, 762, 832, 926, 2801, 4772, 6786, 6787, 6807, 6810, 7003, 9721, 9954, 10253, 10278, 11087, 11157, 11214, 12100, 12486, 12986, 13028, 13982, 13985, 14029, 14032, 14120, 14143, 14155, 14286, 14547, - 14699, 14752, 14876, 14910, 15004, 15048, 15073, 15089, 15128, 15218, - 15268, 15277, 15308, 15362, 15374, 15400, 15425, 15427, 15483, 15522, - 15531, 15532, 15593, 15601, 15608, 15609, 15610, 15632, 15640, 15670, - 15672, 15680, 15681, 15723, 15734, 15735, 15736, 15748, 15749, 15754, - 15760, 15763, 15764, 15797, 15799, 15825, 15843, 15844, 15846, 15847, - 15849, 15850, 15855, 15856, 15857, 15859, 15867, 15886, 15887, 15890, - 15892, 15893, 15895, 15897, 15901, 15905, 15909, 15915, 15917, 15919, - 15921, 15923, 15939, 15941, 15948, 15963, 15966, 15985, 15988, 15997, - 16032, 16034, 16036, 16037, 16038, 16041, 16055, 16071, 16072, 16074, - 16077, 16078, 16103, 16112, 16133, 16143, 16144, 16146, 16150, 16151, - 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, - 16293, 16314, 16316, 16330, 16337, 16338, 16356, 16365, 16366, 16369, - 16372, 16375, 16379, 16384, 16385, 16386, 16387, 16390, 16394, 16400, - 16407, 16408, 16414. + 14699, 14752, 14782, 14876, 14910, 15004, 15048, 15073, 15089, 15128, + 15218, 15268, 15277, 15308, 15362, 15374, 15400, 15425, 15427, 15483, + 15522, 15531, 15532, 15593, 15601, 15608, 15609, 15610, 15632, 15640, + 15670, 15672, 15680, 15681, 15723, 15734, 15735, 15736, 15748, 15749, + 15754, 15760, 15763, 15764, 15797, 15799, 15825, 15843, 15844, 15846, + 15847, 15849, 15850, 15855, 15856, 15857, 15859, 15867, 15886, 15887, + 15890, 15892, 15893, 15895, 15897, 15901, 15905, 15909, 15915, 15917, + 15919, 15921, 15923, 15939, 15941, 15948, 15963, 15966, 15985, 15988, + 15997, 16032, 16034, 16036, 16037, 16038, 16041, 16055, 16071, 16072, + 16074, 16077, 16078, 16103, 16112, 16133, 16143, 16144, 16146, 16150, + 16151, 16153, 16167, 16172, 16195, 16214, 16245, 16271, 16274, 16283, + 16289, 16293, 16314, 16316, 16330, 16337, 16338, 16356, 16365, 16366, + 16369, 16372, 16375, 16379, 16384, 16385, 16386, 16387, 16390, 16394, + 16400, 16407, 16408, 16414. * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/posix/system.c b/sysdeps/posix/system.c index de71e6b661..e8b921febb 100644 --- a/sysdeps/posix/system.c +++ b/sysdeps/posix/system.c @@ -181,15 +181,6 @@ __libc_system (const char *line) not be available after a chroot(), for example. */ return do_system ("exit 0") == 0; - if (SINGLE_THREAD_P) - return do_system (line); - - int oldtype = LIBC_CANCEL_ASYNC (); - - int result = do_system (line); - - LIBC_CANCEL_RESET (oldtype); - - return result; + return do_system (line); } weak_alias (__libc_system, system) -- cgit v1.2.3 From 2393fc0119fa291ff01b7b912dda2069257c8600 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Wed, 15 Jan 2014 11:05:00 -0600 Subject: PowerPC: sotruss-lib implementation This patch add the missing sotruss-lib interfaces for PowerPC. --- ChangeLog | 5 ++++ sysdeps/powerpc/sotruss-lib.c | 69 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 sysdeps/powerpc/sotruss-lib.c (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index e7438dabe9..703b0ee00f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-01-15 Adhemerval Zanella + + * sysdeps/powerpc/sotruss-lib.c: New file: sotruss-lib.so + implementation for powerpc. + 2014-01-15 Ondřej Bílka [BZ #14782] diff --git a/sysdeps/powerpc/sotruss-lib.c b/sysdeps/powerpc/sotruss-lib.c new file mode 100644 index 0000000000..2e52053ed1 --- /dev/null +++ b/sysdeps/powerpc/sotruss-lib.c @@ -0,0 +1,69 @@ +/* PowerPC specific sotruss-lib functions. + Copyright (C) 2013 Free Software Foundation, Inc. + + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library. If not, see + . */ + +#define HAVE_ARCH_PLTENTER +#define HAVE_ARCH_PLTEXIT + +#include + +#ifdef __powerpc64__ +# if _CALL_ELF != 2 +# define LA_PPC_REGS La_ppc64_regs +# define LA_PPC_RETVAL La_ppc64_retval +# define LA_PPC_GNU_PLTENTER la_ppc64_gnu_pltenter +# define LA_PPC_GNU_PLTEXIT la_ppc64_gnu_pltexit +# else +# define LA_PPC_REGS La_ppc64v2_regs +# define LA_PPC_RETVAL La_ppc64v2_retval +# define LA_PPC_GNU_PLTENTER la_ppc64v2_gnu_pltenter +# define LA_PPC_GNU_PLTEXIT la_ppc64v2_gnu_pltexit +# endif +# else +# define LA_PPC_REGS La_ppc32_regs +# define LA_PPC_RETVAL La_ppc32_retval +# define LA_PPC_GNU_PLTENTER la_ppc32_gnu_pltenter +# define LA_PPC_GNU_PLTEXIT la_ppc32_gnu_pltexit +#endif + +ElfW(Addr) +LA_PPC_GNU_PLTENTER (ElfW(Sym) *sym __attribute__ ((unused)), + unsigned int ndx __attribute__ ((unused)), + uintptr_t *refcook, uintptr_t *defcook, + LA_PPC_REGS *regs, unsigned int *flags, + const char *symname, long int *framesizep) +{ + print_enter (refcook, defcook, symname, + regs->lr_reg[0], regs->lr_reg[1], regs->lr_reg[2], *flags); + + /* No need to copy anything, we will not need the parameters in any case. */ + *framesizep = 0; + + return sym->st_value; +} + +unsigned int +LA_PPC_GNU_PLTEXIT (ElfW(Sym) *sym, unsigned int ndx, uintptr_t *refcook, + uintptr_t *defcook, + const struct LA_PPC_REGS *inregs, + struct LA_PPC_RETVAL *outregs, const char *symname) +{ + print_exit (refcook, defcook, symname, outregs->lrv_r3); + + return 0; +} -- cgit v1.2.3 From 736c304a1ab4cee36a2f3343f1698bc0abae4608 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Thu, 16 Jan 2014 06:53:18 -0600 Subject: PowerPC: Fix ftime gettimeofday internal call returning bogus data This patches fixes BZ#16430 by setting a different symbol for internal GLIBC calls that points to ifunc resolvers. For PPC32, if the symbol is defined as hidden (which is the case for gettimeofday and time) the compiler will create local branches (symbol@local) and linker will not create PLT calls (required for IFUNC). This will leads to internal symbol calling the IFUNC resolver instead of the resolved symbol. For PPC64 this behavior does not occur because a call to a function in another translation unit might use a different toc pointer thus requiring a PLT call. --- ChangeLog | 8 ++++++++ sysdeps/unix/sysv/linux/powerpc/gettimeofday.c | 20 ++++++++++++++++++-- sysdeps/unix/sysv/linux/powerpc/time.c | 20 ++++++++++++++++++-- 3 files changed, 44 insertions(+), 4 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 69d89744ee..9f766c1365 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2014-01-16 Adhemerval Zanella + + [BZ#16430] + * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c + (__GI___gettimeofday): Alias for a different internal symbol to avoid + local calls issues by not having a PLT stub required for IFUNC calls. + * sysdeps/unix/sysv/linux/powerpc/time.c (__GI_time): Likewise. + 2014-01-16 Joseph Myers * math/test-fpucw-ieee.c: Use <> in #include of test-fpucw.c. diff --git a/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c b/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c index 29a5e08ad6..2085b68772 100644 --- a/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c +++ b/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c @@ -44,8 +44,24 @@ asm (".type __gettimeofday, %gnu_indirect_function"); /* This is doing "libc_hidden_def (__gettimeofday)" but the compiler won't let us do it in C because it doesn't know we're defining __gettimeofday here in this file. */ -asm (".globl __GI___gettimeofday\n" - "__GI___gettimeofday = __gettimeofday"); +asm (".globl __GI___gettimeofday"); + +/* __GI___gettimeofday is defined as hidden and for ppc32 it enables the + compiler make a local call (symbol@local) for internal GLIBC usage. It + means the PLT won't be used and the ifunc resolver will be called directly. + For ppc64 a call to a function in another translation unit might use a + different toc pointer thus disallowing direct branchess and making internal + ifuncs calls safe. */ +#ifdef __powerpc64__ +asm ("__GI___gettimeofday = __gettimeofday"); +#else +int +__gettimeofday_vsyscall (struct timeval *tv, struct timezone *tz) +{ + return INLINE_VSYSCALL (gettimeofday, 2, tv, tz); +} +asm ("__GI___gettimeofday = __gettimeofday_vsyscall"); +#endif #else diff --git a/sysdeps/unix/sysv/linux/powerpc/time.c b/sysdeps/unix/sysv/linux/powerpc/time.c index 089d0b69ec..023bc026be 100644 --- a/sysdeps/unix/sysv/linux/powerpc/time.c +++ b/sysdeps/unix/sysv/linux/powerpc/time.c @@ -54,8 +54,24 @@ asm (".type time, %gnu_indirect_function"); /* This is doing "libc_hidden_def (time)" but the compiler won't * let us do it in C because it doesn't know we're defining time * here in this file. */ -asm (".globl __GI_time\n" - "__GI_time = time"); +asm (".globl __GI_time"); + +/* __GI_time is defined as hidden and for ppc32 it enables the + compiler make a local call (symbol@local) for internal GLIBC usage. It + means the PLT won't be used and the ifunc resolver will be called directly. + For ppc64 a call to a function in another translation unit might use a + different toc pointer thus disallowing direct branchess and making internal + ifuncs calls safe. */ +#ifdef __powerpc64__ +asm ("__GI_time = time"); +#else +time_t +__time_vsyscall (time_t *t) +{ + return INLINE_VSYSCALL (time, 1, t); +} +asm ("__GI_time = __time_vsyscall"); +#endif #else -- cgit v1.2.3 From 7a02cfade80b2b6ed2562e74105bebfee90a87ec Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 24 Dec 2013 04:31:22 -0500 Subject: s390: implement sotruss support See commit 41b1792698a335d3a85381921a84a16e9635f36a for testcase. Note: while this works on s390x, the s390 code hangs when using -e. But it hangs regardless of this code (the hang seems to occur before the exit func is even called). I didn't look too closely at it as it seems to be an issue external to this file, so this code shouldn't make the situation any worse. Reviewed-by: Carlos O'Donell Signed-off-by: Mike Frysinger --- ChangeLog | 4 +++ sysdeps/s390/sotruss-lib.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 sysdeps/s390/sotruss-lib.c (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 9f766c1365..77b8e74a1e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-01-16 Mike Frysinger + + * sysdeps/s390/sotruss-lib.c: New file. + 2014-01-16 Adhemerval Zanella [BZ#16430] diff --git a/sysdeps/s390/sotruss-lib.c b/sysdeps/s390/sotruss-lib.c new file mode 100644 index 0000000000..ded98db08d --- /dev/null +++ b/sysdeps/s390/sotruss-lib.c @@ -0,0 +1,62 @@ +/* Override generic sotruss-lib.c to define actual functions for s390. + Copyright (C) 2012-2014 Free Software Foundation, Inc. + + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library. If not, see + . */ + +#define HAVE_ARCH_PLTENTER +#define HAVE_ARCH_PLTEXIT + +#include + +#if __ELF_NATIVE_CLASS == 32 +# define la_s390_gnu_pltenter la_s390_32_gnu_pltenter +# define la_s390_gnu_pltexit la_s390_32_gnu_pltexit +# define La_s390_regs La_s390_32_regs +# define La_s390_retval La_s390_32_retval +#else +# define la_s390_gnu_pltenter la_s390_64_gnu_pltenter +# define la_s390_gnu_pltexit la_s390_64_gnu_pltexit +# define La_s390_regs La_s390_64_regs +# define La_s390_retval La_s390_64_retval +#endif + +ElfW(Addr) +la_s390_gnu_pltenter (ElfW(Sym) *sym, + unsigned int ndx __attribute__ ((unused)), + uintptr_t *refcook, uintptr_t *defcook, + La_s390_regs *regs, unsigned int *flags, + const char *symname, long int *framesizep) +{ + print_enter (refcook, defcook, symname, + regs->lr_r2, regs->lr_r3, regs->lr_r4, *flags); + + /* No need to copy anything, we will not need the parameters in any case. */ + *framesizep = 0; + + return sym->st_value; +} + +unsigned int +la_s390_gnu_pltexit (ElfW(Sym) *sym, unsigned int ndx, uintptr_t *refcook, + uintptr_t *defcook, + const struct La_s390_regs *inregs, + struct La_s390_retval *outregs, const char *symname) +{ + print_exit (refcook, defcook, symname, outregs->lrv_r2); + + return 0; +} -- cgit v1.2.3 From d98720e07f67fbeec00f9e1347840404240d3c48 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Mon, 20 Jan 2014 12:29:51 -0600 Subject: PowerPC: Fix gettimeofday ifunc selection The IFUNC selector for gettimeofday runs before _libc_vdso_platform_setup where __vdso_gettimeofday is set. The selector then sets __gettimeofday (the internal version used within GLIBC) to use the system call version instead of the vDSO one. This patch changes the check if vDSO is available to get its value directly instead of rely on __vdso_gettimeofday. This patch changes it by getting the vDSO value directly. It fixes BZ#16431. --- ChangeLog | 7 +++++++ NEWS | 2 +- sysdeps/unix/sysv/linux/powerpc/gettimeofday.c | 7 +++++-- sysdeps/unix/sysv/linux/powerpc/time.c | 7 +++++-- 4 files changed, 18 insertions(+), 5 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 6297934ea4..ed1153f06c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2014-01-20 Adhemerval Zanella + + [BZ#16431] + * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday): + Adjust the vDSO correctly for internal calls. + * sysdeps/unix/sysv/linux/powerpc/time.c (time): Likewise. + 2014-01-20 Allan McRae * po/ca.po: Update Catalan translation from translation project. diff --git a/NEWS b/NEWS index 87ab0485fd..f4f22a8f3e 100644 --- a/NEWS +++ b/NEWS @@ -25,7 +25,7 @@ Version 2.19 16151, 16153, 16167, 16169, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, 16384, 16385, 16386, 16387, 16390, - 16394, 16400, 16407, 16408, 16414, 16430, 16453. + 16394, 16400, 16407, 16408, 16414, 16430, 16431, 16453. * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c b/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c index 2085b68772..97ea2a4a70 100644 --- a/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c +++ b/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c @@ -35,9 +35,12 @@ __gettimeofday_syscall (struct timeval *tv, struct timezone *tz) void * gettimeofday_ifunc (void) { + PREPARE_VERSION (linux2615, "LINUX_2.6.15", 123718565); + /* If the vDSO is not available we fall back syscall. */ - return (__vdso_gettimeofday ? VDSO_IFUNC_RET (__vdso_gettimeofday) - : __gettimeofday_syscall); + void *vdso_gettimeofday = _dl_vdso_vsym ("__kernel_gettimeofday", &linux2615); + return (vdso_gettimeofday ? VDSO_IFUNC_RET (vdso_gettimeofday) + : (void*)__gettimeofday_syscall); } asm (".type __gettimeofday, %gnu_indirect_function"); diff --git a/sysdeps/unix/sysv/linux/powerpc/time.c b/sysdeps/unix/sysv/linux/powerpc/time.c index 023bc026be..9f54d97246 100644 --- a/sysdeps/unix/sysv/linux/powerpc/time.c +++ b/sysdeps/unix/sysv/linux/powerpc/time.c @@ -45,9 +45,12 @@ time_syscall (time_t *t) void * time_ifunc (void) { + PREPARE_VERSION (linux2615, "LINUX_2.6.15", 123718565); + /* If the vDSO is not available we fall back to the syscall. */ - return (__vdso_time ? VDSO_IFUNC_RET (__vdso_time) - : time_syscall); + void *vdso_time = _dl_vdso_vsym ("__kernel_time", &linux2615); + return (vdso_time ? VDSO_IFUNC_RET (vdso_time) + : (void*)time_syscall); } asm (".type time, %gnu_indirect_function"); -- cgit v1.2.3 From 4959e284ca9c4ee749e1fe4b95ce682dee110a27 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Mon, 20 Jan 2014 11:05:22 -0800 Subject: Include generic symbol-hacks.h for x32 In BZ #15605 fix with addding memset/memmove alias in symbol-hacks.h, x32 symbol-hacks.h change was missing. Fixed by including in x32 symbol-hacks.h. --- ChangeLog | 5 +++++ sysdeps/x86_64/x32/symbol-hacks.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index ed1153f06c..a8e289ebb7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-01-20 H.J. Lu + + [BZ #15605] + * sysdeps/x86_64/x32/symbol-hacks.h: Include generic symbol-hacks.h. + 2014-01-20 Adhemerval Zanella [BZ#16431] diff --git a/sysdeps/x86_64/x32/symbol-hacks.h b/sysdeps/x86_64/x32/symbol-hacks.h index bc7b4c4441..22aad04437 100644 --- a/sysdeps/x86_64/x32/symbol-hacks.h +++ b/sysdeps/x86_64/x32/symbol-hacks.h @@ -1 +1 @@ -/* Fortunately nothing to do. */ +#include -- cgit v1.2.3 From 0f0c35e46e9a12459a5ca64be46b6e73aa8d19d7 Mon Sep 17 00:00:00 2001 From: Andreas Krebbel Date: Wed, 22 Jan 2014 18:43:45 +0100 Subject: S/390: Merge 32 and 64 bit ucontext.h. --- ChangeLog | 7 ++ .../unix/sysv/linux/s390/s390-32/sys/ucontext.h | 96 -------------------- .../unix/sysv/linux/s390/s390-64/sys/ucontext.h | 96 -------------------- sysdeps/unix/sysv/linux/s390/sys/ucontext.h | 100 +++++++++++++++++++++ 4 files changed, 107 insertions(+), 192 deletions(-) delete mode 100644 sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h delete mode 100644 sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h create mode 100644 sysdeps/unix/sysv/linux/s390/sys/ucontext.h (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index a8e289ebb7..2730a81940 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2014-01-22 Andreas Krebbel + + * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Merge into + s390/sys/ucontext.h. + * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise. + * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: New file. + 2014-01-20 H.J. Lu [BZ #15605] diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h b/sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h deleted file mode 100644 index 90adc2d1fc..0000000000 --- a/sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h +++ /dev/null @@ -1,96 +0,0 @@ -/* Copyright (C) 2000-2013 Free Software Foundation, Inc. - Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#ifndef _SYS_UCONTEXT_H -#define _SYS_UCONTEXT_H 1 -/* Forward definition to avoid parse errors */ -struct ucontext; -typedef struct ucontext ucontext_t; -#include -#include - -/* We need the signal context definitions even if they are not used - included in . */ -#include - -/* Type for a program status word. */ -typedef struct -{ - unsigned long mask; - unsigned long addr; -} __attribute__ ((__aligned__(8))) __psw_t; - -/* Type for a general-purpose register. */ -typedef unsigned long greg_t; - -/* And the whole bunch of them. We should have used `struct s390_regs', - but to avoid name space pollution and since the tradition says that - the register set is an array, we make gregset_t a simple array - that has the same size as s390_regs. This is needed for the - elf_prstatus structure. */ -#if __WORDSIZE == 64 -# define NGREG 27 -#else -# define NGREG 36 -#endif -/* Must match kernels psw_t alignment. */ -typedef greg_t gregset_t[NGREG] __attribute__ ((__aligned__(8))); - -typedef union - { - double d; - float f; - } fpreg_t; - -/* Register set for the floating-point registers. */ -typedef struct - { - unsigned int fpc; - fpreg_t fprs[16]; - } fpregset_t; - -/* Bit is set if the uc_high_gprs field contains the upper halfs of - the 64 bit general purpose registers. */ -#define UCONTEXT_UC_FLAGS_HIGH_GPRS (1UL << 0) - -/* A new uc_flags constant will be defined when actually making use of - the reserved space: UCONTEXT_UCFLAGS_RESERVED (1UL << 1). */ - -/* Context to describe whole processor state. */ -typedef struct - { - __psw_t psw; - unsigned long gregs[16]; - unsigned int aregs[16]; - fpregset_t fpregs; - } mcontext_t; - -/* Userlevel context. */ -struct ucontext - { - unsigned long int uc_flags; - struct ucontext *uc_link; - stack_t uc_stack; - mcontext_t uc_mcontext; - __sigset_t uc_sigmask; - unsigned long uc_high_gprs[16]; - char __reserved[512]; - }; - - -#endif /* sys/ucontext.h */ diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h b/sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h deleted file mode 100644 index b563e98f05..0000000000 --- a/sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h +++ /dev/null @@ -1,96 +0,0 @@ -/* Copyright (C) 2000-2014 Free Software Foundation, Inc. - Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#ifndef _SYS_UCONTEXT_H -#define _SYS_UCONTEXT_H 1 -/* Forward definition to avoid parse errors */ -struct ucontext; -typedef struct ucontext ucontext_t; -#include -#include - -/* We need the signal context definitions even if they are not used - included in . */ -#include - -/* Type for a program status word. */ -typedef struct -{ - unsigned long mask; - unsigned long addr; -} __attribute__ ((__aligned__(8))) __psw_t; - -/* Type for a general-purpose register. */ -typedef unsigned long greg_t; - -/* And the whole bunch of them. We should have used `struct s390_regs', - but to avoid name space pollution and since the tradition says that - the register set is an array, we make gregset_t a simple array - that has the same size as s390_regs. This is needed for the - elf_prstatus structure. */ -#if __WORDSIZE == 64 -# define NGREG 27 -#else -# define NGREG 36 -#endif -/* Must match kernels psw_t alignment. */ -typedef greg_t gregset_t[NGREG] __attribute__ ((__aligned__(8))); - -typedef union - { - double d; - float f; - } fpreg_t; - -/* Register set for the floating-point registers. */ -typedef struct - { - unsigned int fpc; - fpreg_t fprs[16]; - } fpregset_t; - -/* Bit 0 is reserved for the uc_high_gprs field only available in the - 32 bit version of ucontext_t. This bit will never be set for 64 - bit. */ -#define UCONTEXT_UC_FLAGS_HIGH_GPRS (1UL << 0) - -/* A new uc_flags constant will be defined when actually making use of - the reserved space: UCONTEXT_UCFLAGS_RESERVED (1UL << 1). */ - -/* Context to describe whole processor state. */ -typedef struct - { - __psw_t psw; - unsigned long gregs[16]; - unsigned int aregs[16]; - fpregset_t fpregs; - } mcontext_t; - -/* Userlevel context. */ -struct ucontext - { - unsigned long int uc_flags; - struct ucontext *uc_link; - stack_t uc_stack; - mcontext_t uc_mcontext; - __sigset_t uc_sigmask; - char reserved[512]; - }; - - -#endif /* sys/ucontext.h */ diff --git a/sysdeps/unix/sysv/linux/s390/sys/ucontext.h b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h new file mode 100644 index 0000000000..f04bf849d5 --- /dev/null +++ b/sysdeps/unix/sysv/linux/s390/sys/ucontext.h @@ -0,0 +1,100 @@ +/* Copyright (C) 2000-2014 Free Software Foundation, Inc. + Contributed by Denis Joseph Barrow (djbarrow@de.ibm.com). + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#ifndef _SYS_UCONTEXT_H +#define _SYS_UCONTEXT_H 1 +/* Forward definition to avoid parse errors */ +struct ucontext; +typedef struct ucontext ucontext_t; +#include +#include + +/* We need the signal context definitions even if they are not used + included in . */ +#include + +/* Type for a program status word. */ +typedef struct +{ + unsigned long mask; + unsigned long addr; +} __attribute__ ((__aligned__(8))) __psw_t; + +/* Type for a general-purpose register. */ +typedef unsigned long greg_t; + +/* And the whole bunch of them. We should have used `struct s390_regs', + but to avoid name space pollution and since the tradition says that + the register set is an array, we make gregset_t a simple array + that has the same size as s390_regs. This is needed for the + elf_prstatus structure. */ +#if __WORDSIZE == 64 +# define NGREG 27 +#else +# define NGREG 36 +#endif +/* Must match kernels psw_t alignment. */ +typedef greg_t gregset_t[NGREG] __attribute__ ((__aligned__(8))); + +typedef union + { + double d; + float f; + } fpreg_t; + +/* Register set for the floating-point registers. */ +typedef struct + { + unsigned int fpc; + fpreg_t fprs[16]; + } fpregset_t; + +/* Bit is set if the uc_high_gprs field contains the upper halfs of + the 64 bit general purpose registers. Since the uc_high_gprs field + is only available in the 32 bit version of ucontext_t it will never + be set for 64 bit. */ +#define UCONTEXT_UC_FLAGS_HIGH_GPRS (1UL << 0) + +/* A new uc_flags constant will be defined when actually making use of + the reserved space: UCONTEXT_UCFLAGS_RESERVED (1UL << 1). */ + +/* Context to describe whole processor state. */ +typedef struct + { + __psw_t psw; + unsigned long gregs[16]; + unsigned int aregs[16]; + fpregset_t fpregs; + } mcontext_t; + +/* Userlevel context. */ +struct ucontext + { + unsigned long int uc_flags; + struct ucontext *uc_link; + stack_t uc_stack; + mcontext_t uc_mcontext; + __sigset_t uc_sigmask; +#ifndef __s390x__ + unsigned long uc_high_gprs[16]; +#endif + char __reserved[512]; + }; + + +#endif /* sys/ucontext.h */ -- cgit v1.2.3 From 7007c661ad737b3c8fd7855791cd52bcac6d7a0b Mon Sep 17 00:00:00 2001 From: Kaz Kojima Date: Thu, 23 Jan 2014 14:22:58 +0900 Subject: Adjust SH specific fpu_control.h and ucontext.h files. --- ChangeLog | 12 +++ sysdeps/sh/fpu_control.h | 76 +++++++++++++++ sysdeps/sh/sh4/fpu/fpu_control.h | 62 ------------- sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h | 101 -------------------- sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h | 114 ----------------------- sysdeps/unix/sysv/linux/sh/sys/ucontext.h | 129 ++++++++++++++++++++++++++ 6 files changed, 217 insertions(+), 277 deletions(-) create mode 100644 sysdeps/sh/fpu_control.h delete mode 100644 sysdeps/sh/sh4/fpu/fpu_control.h delete mode 100644 sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h delete mode 100644 sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h create mode 100644 sysdeps/unix/sysv/linux/sh/sys/ucontext.h (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 2730a81940..78e6946e22 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2014-01-23 Kaz Kojima + + * sysdeps/sh/fpu_control.h: New file. + * sysdeps/sh/sh4/fpu/fpu_control.h: Remove. + * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: New file. + * sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h: Remove. + * sysdeps/unix/sysv/linux/sh/sh3/sys: Remove directory. + * sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h: Remove. + * sysdeps/unix/sysv/linux/sh/sh4/sys: Remove directory. + * sysdeps/sh/sys/ucontext.h: Remove. + * sysdeps/sh/sys: Remove directory. + 2014-01-22 Andreas Krebbel * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Merge into diff --git a/sysdeps/sh/fpu_control.h b/sysdeps/sh/fpu_control.h new file mode 100644 index 0000000000..5d2604bafb --- /dev/null +++ b/sysdeps/sh/fpu_control.h @@ -0,0 +1,76 @@ +/* FPU control word definitions. SH version. + Copyright (C) 1999-2014 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#ifndef _FPU_CONTROL_H +#define _FPU_CONTROL_H + +#if !defined(__SH_FPU_ANY__) + +#define _FPU_RESERVED 0xffffffff +#define _FPU_DEFAULT 0x00000000 +typedef unsigned int fpu_control_t; +#define _FPU_GETCW(cw) (cw) = 0 +#define _FPU_SETCW(cw) (void) (cw) +extern fpu_control_t __fpu_control; + +#else + +#include + +/* masking of interrupts */ +#define _FPU_MASK_VM 0x0800 /* Invalid operation */ +#define _FPU_MASK_ZM 0x0400 /* Division by zero */ +#define _FPU_MASK_OM 0x0200 /* Overflow */ +#define _FPU_MASK_UM 0x0100 /* Underflow */ +#define _FPU_MASK_IM 0x0080 /* Inexact operation */ + +/* rounding control */ +#define _FPU_RC_NEAREST 0x0 /* RECOMMENDED */ +#define _FPU_RC_ZERO 0x1 + +#define _FPU_RESERVED 0xffc00000 /* These bits are reserved. */ + +/* The fdlibm code requires strict IEEE double precision arithmetic, + and no interrupts for exceptions, rounding to nearest. */ +#define _FPU_DEFAULT 0x00080000 /* Default value. */ +#define _FPU_IEEE 0x00080f80 /* Default + exceptions enabled. */ + +/* Type of the control word. */ +typedef unsigned int fpu_control_t; + +/* Macros for accessing the hardware control word. */ +#define _FPU_GETCW(cw) __asm__ ("sts fpscr,%0" : "=r" (cw)) + +#if defined __GNUC__ +__BEGIN_DECLS + +/* GCC provides this function. */ +extern void __set_fpscr (unsigned long); +#define _FPU_SETCW(cw) __set_fpscr ((cw)) +#else +#define _FPU_SETCW(cw) __asm__ ("lds %0,fpscr" : : "r" (cw)) +#endif + +/* Default control word set at startup. */ +extern fpu_control_t __fpu_control; + +__END_DECLS + +#endif /* __SH_FPU_ANY__ */ + +#endif /* _FPU_CONTROL_H */ diff --git a/sysdeps/sh/sh4/fpu/fpu_control.h b/sysdeps/sh/sh4/fpu/fpu_control.h deleted file mode 100644 index ab1e97b17b..0000000000 --- a/sysdeps/sh/sh4/fpu/fpu_control.h +++ /dev/null @@ -1,62 +0,0 @@ -/* FPU control word definitions. SH version. - Copyright (C) 1999-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -#ifndef _FPU_CONTROL_H -#define _FPU_CONTROL_H - -#include - -/* masking of interrupts */ -#define _FPU_MASK_VM 0x0800 /* Invalid operation */ -#define _FPU_MASK_ZM 0x0400 /* Division by zero */ -#define _FPU_MASK_OM 0x0200 /* Overflow */ -#define _FPU_MASK_UM 0x0100 /* Underflow */ -#define _FPU_MASK_IM 0x0080 /* Inexact operation */ - -/* rounding control */ -#define _FPU_RC_NEAREST 0x0 /* RECOMMENDED */ -#define _FPU_RC_ZERO 0x1 - -#define _FPU_RESERVED 0xffc00000 /* These bits are reserved. */ - -/* The fdlibm code requires strict IEEE double precision arithmetic, - and no interrupts for exceptions, rounding to nearest. */ -#define _FPU_DEFAULT 0x00080000 /* Default value. */ -#define _FPU_IEEE 0x00080f80 /* Default + exceptions enabled. */ - -/* Type of the control word. */ -typedef unsigned int fpu_control_t; - -/* Macros for accessing the hardware control word. */ -#define _FPU_GETCW(cw) __asm__ ("sts fpscr,%0" : "=r" (cw)) - -#if defined __GNUC__ -__BEGIN_DECLS - -/* GCC provides this function. */ -extern void __set_fpscr (unsigned long); -#define _FPU_SETCW(cw) __set_fpscr ((cw)) -#else -#define _FPU_SETCW(cw) __asm__ ("lds %0,fpscr" : : "r" (cw)) -#endif - -/* Default control word set at startup. */ -extern fpu_control_t __fpu_control; - -__END_DECLS -#endif /* _FPU_CONTROL_H */ diff --git a/sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h b/sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h deleted file mode 100644 index fe06b074ee..0000000000 --- a/sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h +++ /dev/null @@ -1,101 +0,0 @@ -/* Copyright (C) 1999-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -/* Where is System V/SH ABI? */ - -#ifndef _SYS_UCONTEXT_H -#define _SYS_UCONTEXT_H 1 - -#include -#include - -/* We need the signal context definitions even if they are not used - included in . */ -#include - - -typedef int greg_t; - -/* Number of general registers. */ -#define NFPREG 16 - -/* Container for all general registers. */ -typedef greg_t gregset_t[NFPREG]; - -#ifdef __USE_GNU -/* Number of each register is the `gregset_t' array. */ -enum -{ - R0 = 0, -#define R0 R0 - R1 = 1, -#define R1 R1 - R2 = 2, -#define R2 R2 - R3 = 3, -#define R3 R3 - R4 = 4, -#define R4 R4 - R5 = 5, -#define R5 R5 - R6 = 6, -#define R6 R6 - R7 = 7, -#define R7 R7 - R8 = 8, -#define R8 R8 - R9 = 9, -#define R9 R9 - R10 = 10, -#define R10 R10 - R11 = 11, -#define R11 R11 - R12 = 12, -#define R12 R12 - R13 = 13, -#define R13 R13 - R14 = 14, -#define R14 R14 - R15 = 15, -#define R15 R15 -}; -#endif - -/* Context to describe whole processor state. */ -typedef struct - { - unsigned int oldmask; - gregset_t gregs; - unsigned int pc; - unsigned int pr; - unsigned int sr; - unsigned int gbr; - unsigned int mach; - unsigned int macl; - } mcontext_t; - -/* Userlevel context. */ -typedef struct ucontext - { - unsigned long int uc_flags; - struct ucontext *uc_link; - stack_t uc_stack; - mcontext_t uc_mcontext; - __sigset_t uc_sigmask; - } ucontext_t; - -#endif /* sys/ucontext.h */ diff --git a/sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h b/sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h deleted file mode 100644 index 799b2775ef..0000000000 --- a/sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h +++ /dev/null @@ -1,114 +0,0 @@ -/* Copyright (C) 1999-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -/* Where is System V/SH ABI? */ - -#ifndef _SYS_UCONTEXT_H -#define _SYS_UCONTEXT_H 1 - -#include -#include - -/* We need the signal context definitions even if they are not used - included in . */ -#include - - -typedef int greg_t; - -/* Number of general registers. */ -#define NFPREG 16 - -/* Container for all general registers. */ -typedef greg_t gregset_t[NFPREG]; - -#ifdef __USE_GNU -/* Number of each register is the `gregset_t' array. */ -enum -{ - R0 = 0, -#define R0 R0 - R1 = 1, -#define R1 R1 - R2 = 2, -#define R2 R2 - R3 = 3, -#define R3 R3 - R4 = 4, -#define R4 R4 - R5 = 5, -#define R5 R5 - R6 = 6, -#define R6 R6 - R7 = 7, -#define R7 R7 - R8 = 8, -#define R8 R8 - R9 = 9, -#define R9 R9 - R10 = 10, -#define R10 R10 - R11 = 11, -#define R11 R11 - R12 = 12, -#define R12 R12 - R13 = 13, -#define R13 R13 - R14 = 14, -#define R14 R14 - R15 = 15, -#define R15 R15 -}; -#endif - -typedef int freg_t; - -/* Number of FPU registers. */ -#define NFPREG 16 - -/* Structure to describe FPU registers. */ -typedef freg_t fpregset_t[NFPREG]; - -/* Context to describe whole processor state. */ -typedef struct - { - unsigned int oldmask; - gregset_t gregs; - unsigned int pc; - unsigned int pr; - unsigned int sr; - unsigned int gbr; - unsigned int mach; - unsigned int macl; - fpregset_t fpregs; - fpregset_t xfpregs; - unsigned int fpscr; - unsigned int fpul; - unsigned int ownedfp; - } mcontext_t; - -/* Userlevel context. */ -typedef struct ucontext - { - unsigned long int uc_flags; - struct ucontext *uc_link; - stack_t uc_stack; - mcontext_t uc_mcontext; - __sigset_t uc_sigmask; - } ucontext_t; - -#endif /* sys/ucontext.h */ diff --git a/sysdeps/unix/sysv/linux/sh/sys/ucontext.h b/sysdeps/unix/sysv/linux/sh/sys/ucontext.h new file mode 100644 index 0000000000..269d29ae77 --- /dev/null +++ b/sysdeps/unix/sysv/linux/sh/sys/ucontext.h @@ -0,0 +1,129 @@ +/* Copyright (C) 1999-2014 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +/* Where is System V/SH ABI? */ + +#ifndef _SYS_UCONTEXT_H +#define _SYS_UCONTEXT_H 1 + +#include +#include + +/* We need the signal context definitions even if they are not used + included in . */ +#include + + +typedef int greg_t; + +/* Number of general registers. */ +#define NGPREG 16 + +/* Container for all general registers. */ +typedef greg_t gregset_t[NGPREG]; + +#ifdef __USE_GNU +/* Number of each register is the `gregset_t' array. */ +enum +{ + R0 = 0, +#define R0 R0 + R1 = 1, +#define R1 R1 + R2 = 2, +#define R2 R2 + R3 = 3, +#define R3 R3 + R4 = 4, +#define R4 R4 + R5 = 5, +#define R5 R5 + R6 = 6, +#define R6 R6 + R7 = 7, +#define R7 R7 + R8 = 8, +#define R8 R8 + R9 = 9, +#define R9 R9 + R10 = 10, +#define R10 R10 + R11 = 11, +#define R11 R11 + R12 = 12, +#define R12 R12 + R13 = 13, +#define R13 R13 + R14 = 14, +#define R14 R14 + R15 = 15, +#define R15 R15 +}; +#endif + +#ifdef __SH_FPU_ANY__ +typedef int freg_t; + +/* Number of FPU registers. */ +#define NFPREG 16 + +/* Structure to describe FPU registers. */ +typedef freg_t fpregset_t[NFPREG]; + +/* Context to describe whole processor state. */ +typedef struct + { + unsigned int oldmask; + gregset_t gregs; + unsigned int pc; + unsigned int pr; + unsigned int sr; + unsigned int gbr; + unsigned int mach; + unsigned int macl; + fpregset_t fpregs; + fpregset_t xfpregs; + unsigned int fpscr; + unsigned int fpul; + unsigned int ownedfp; + } mcontext_t; +#else +/* Context to describe whole processor state. */ +typedef struct + { + unsigned int oldmask; + gregset_t gregs; + unsigned int pc; + unsigned int pr; + unsigned int sr; + unsigned int gbr; + unsigned int mach; + unsigned int macl; + } mcontext_t; +#endif /* __SH_FPU_ANY__ */ + +/* Userlevel context. */ +typedef struct ucontext + { + unsigned long int uc_flags; + struct ucontext *uc_link; + stack_t uc_stack; + mcontext_t uc_mcontext; + __sigset_t uc_sigmask; + } ucontext_t; + +#endif /* sys/ucontext.h */ -- cgit v1.2.3 From 0bad441c77fa4ff382dd3990542dcf52052b2121 Mon Sep 17 00:00:00 2001 From: Kaz Kojima Date: Fri, 24 Jan 2014 12:56:12 +0900 Subject: Restore ucontext ABI for soft-float sh4. --- ChangeLog | 5 ++ sysdeps/sh/sys/ucontext.h | 98 ------------------------------- sysdeps/unix/sysv/linux/sh/sys/ucontext.h | 2 +- 3 files changed, 6 insertions(+), 99 deletions(-) delete mode 100644 sysdeps/sh/sys/ucontext.h (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 78e6946e22..0f4453ec7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-01-24 Kaz Kojima + + * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Use __SH4__ and + __SH4A__ instead of __SH_FPU_ANY__. + 2014-01-23 Kaz Kojima * sysdeps/sh/fpu_control.h: New file. diff --git a/sysdeps/sh/sys/ucontext.h b/sysdeps/sh/sys/ucontext.h deleted file mode 100644 index 2e072c0b60..0000000000 --- a/sysdeps/sh/sys/ucontext.h +++ /dev/null @@ -1,98 +0,0 @@ -/* Copyright (C) 1999-2014 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see - . */ - -/* Where is System V/SH ABI? */ - -#ifndef _SYS_UCONTEXT_H -#define _SYS_UCONTEXT_H 1 - -#include -#include - -typedef int greg_t; - -/* Number of general registers. */ -#define NFPREG 16 - -/* Container for all general registers. */ -typedef greg_t gregset_t[NFPREG]; - -/* Number of each register is the `gregset_t' array. */ -enum -{ - R0 = 0, -#define R0 R0 - R1 = 1, -#define R1 R1 - R2 = 2, -#define R2 R2 - R3 = 3, -#define R3 R3 - R4 = 4, -#define R4 R4 - R5 = 5, -#define R5 R5 - R6 = 6, -#define R6 R6 - R7 = 7, -#define R7 R7 - R8 = 8, -#define R8 R8 - R9 = 9, -#define R9 R9 - R10 = 10, -#define R10 R10 - R11 = 11, -#define R11 R11 - R12 = 12, -#define R12 R12 - R13 = 13, -#define R13 R13 - R14 = 14, -#define R14 R14 - R15 = 15, -#define R15 R15 -}; - -typedef int freg_t; - -/* Number of FPU registers. */ -#define NFREG 16 - -/* Structure to describe FPU registers. */ -typedef freg_t fpregset_t[NFREG]; - -/* Context to describe whole processor state. */ -typedef struct - { - gregset_t gregs; - fpregset_t fpregs; - fpregset_t xfpregs; - } mcontext_t; - -/* Userlevel context. */ -typedef struct ucontext - { - unsigned long int uc_flags; - struct ucontext *uc_link; - __sigset_t uc_sigmask; - stack_t uc_stack; - mcontext_t uc_mcontext; - long int uc_filler[5]; - } ucontext_t; - -#endif /* sys/ucontext.h */ diff --git a/sysdeps/unix/sysv/linux/sh/sys/ucontext.h b/sysdeps/unix/sysv/linux/sh/sys/ucontext.h index 269d29ae77..2fb4d5d523 100644 --- a/sysdeps/unix/sysv/linux/sh/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/sh/sys/ucontext.h @@ -75,7 +75,7 @@ enum }; #endif -#ifdef __SH_FPU_ANY__ +#if (defined(__SH4__) || defined(__SH4A__)) typedef int freg_t; /* Number of FPU registers. */ -- cgit v1.2.3 From 9cadb35cbb53c7840fc3d5419a5cfc46bd1b86f8 Mon Sep 17 00:00:00 2001 From: Kaz Kojima Date: Sat, 25 Jan 2014 10:22:14 +0900 Subject: Move SH libm-test-ulps to sysdeps/sh and regenerate it. --- ChangeLog | 5 + sysdeps/sh/libm-test-ulps | 5486 +++++++++++++++++++++++++++++++++++++ sysdeps/sh/sh4/fpu/libm-test-ulps | 1094 -------- 3 files changed, 5491 insertions(+), 1094 deletions(-) create mode 100644 sysdeps/sh/libm-test-ulps delete mode 100644 sysdeps/sh/sh4/fpu/libm-test-ulps (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 1d19695a17..bf223bdb70 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-01-25 Kaz Kojima + + * sysdeps/sh/sh4/fpu/libm-test-ulps: Move to ... + * sysdeps/sh/libm-test-ulps: ... here and regenerated. + 2013-01-24 Siddhesh Poyarekar [BZ #16474] diff --git a/sysdeps/sh/libm-test-ulps b/sysdeps/sh/libm-test-ulps new file mode 100644 index 0000000000..0c1a136bc4 --- /dev/null +++ b/sysdeps/sh/libm-test-ulps @@ -0,0 +1,5486 @@ +# Begin of automatic generation + +# acosh +Test "acosh (0x6.4p+4)": +double: 1 +idouble: 1 +Test "acosh (0xf.ffffffffffff8p+1020)": +double: 1 + +# asinh +Test "asinh (-0xf.ffffffffffff8p+1020)": +double: 1 +Test "asinh (0xap+0)": +float: 1 +ifloat: 1 +Test "asinh (0xf.ffffffffffff8p+1020)": +double: 1 + +# atan2 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1d8p-12)": +float: 1 +ifloat: 1 +Test "atan2 (-0xcp-4, -0x1p+0)": +float: 1 +ifloat: 1 +Test "atan2 (-0xf.fffffp+124, -0x4p-128)": +float: 1 +ifloat: 1 +Test "atan2 (-0xf.fffffp+124, -0x8p-152)": +float: 1 +ifloat: 1 +Test "atan2 (0x1.64p+0, 0xe.ep-4)": +float: 1 +ifloat: 1 +Test "atan2 (0xcp-4, -0x1p+0)": +float: 1 +ifloat: 1 +Test "atan2 (0xf.fffffp+124, -0x4p-128)": +float: 1 +ifloat: 1 +Test "atan2 (0xf.fffffp+124, -0x8p-152)": +float: 1 +ifloat: 1 + +# atanh +Test "atanh (-0xcp-4)": +float: 1 +ifloat: 1 +Test "atanh (0xcp-4)": +float: 1 +ifloat: 1 + +# cacos +Test "Imaginary part of: cacos (+0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (+0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (+0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (+0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (+0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (+0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.25 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0.25 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0.25 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0.25 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0.5 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0.5 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (-0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (-0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1.fp-100 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-100 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 1.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 1.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1.fp-30 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-30 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-105 - 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1p-23 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1p-23 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-23 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-1.0 + 0x1p50 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-1.0 - 0x1p50 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-2 - 3 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0.25 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0.25 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (0.5 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0.5 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0.5 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x0.ffffffp0 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (0x0.ffffffp0 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacos (0x0.ffffffp0 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (0x0.ffffffp0 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacos (0x1.0000000000001p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x1.0000000000001p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x1.000002p0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (0x1.000002p0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (1.0 + 0x1.fp-10 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (1.0 - 0x1.fp-10 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 + +# cacosh +Test "Real part of: cacosh (+0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (+0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (+0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (+0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (+0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (+0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (-0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (-0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0.25 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0.25 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (-0.25 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0.25 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (-0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0.5 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0.5 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacosh (-0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacosh (-0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-100 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-100 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-30 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-30 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 - 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0x1p-23 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0x1p-23 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-23 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-1.0 + 0x1p50 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-1.0 - 0x1p50 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-2 - 3 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0.25 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0.25 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0.5 + +0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0.5 - 0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (0x1.0000000000001p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0x1.0000000000001p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x1.000002p0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacosh (0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x1.000002p0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacosh (0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (1.0 + 0x1.fp-10 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (1.0 - 0x1.fp-10 i)": +float: 2 +ifloat: 2 + +# casin +Test "Imaginary part of: casin (+0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (+0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (+0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (+0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (+0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (+0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.25 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0.25 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0.5 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casin (-0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-0x1.fp-10 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (-0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-0x1p-23 + 0.5 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-0x1p-23 + 0x1.000002p0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casin (-0x1p-23 - 0.5 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-0x1p-23 - 0x1.000002p0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (-1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (-1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (-1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0.25 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0.25 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0.75 + 1.25 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casin (0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (0x1.fp-10 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-10 + 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-100 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-100 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-1000 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-129 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-30 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-30 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (0x1p-23 + 0.5 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x1p-23 + 0x1.000002p0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casin (0x1p-23 - 0.5 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x1p-23 - 0x1.000002p0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: casin (1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 + +# casinh +Test "Imaginary part of: casinh (-0.25 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-0.25 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0.5 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 + 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 - 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-0x1.fp-10 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0x1.fp-129 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1.fp-129 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-105 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-105 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-112 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-112 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-23 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Real part of: casinh (-0x1p-23 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0x1p-23 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Real part of: casinh (-0x1p-23 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0x1p-52 + 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-0x1p-52 - 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 + 0.25 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 + 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 - 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 - 0.25 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (-1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.0 - 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (-1.5 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.5 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.5 - 0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (-1.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0.25 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0.25 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0.5 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 + 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 - 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.75 + 1.25 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0x1.000002p0 + 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0x1.000002p0 - 0x1p-23 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (0x1.fp-10 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0x1.fp-129 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1.fp-129 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-105 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-105 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-112 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-112 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-23 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Real part of: casinh (0x1p-23 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0x1p-23 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Real part of: casinh (0x1p-23 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0x1p-52 + 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1p-52 - 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 + 0.25 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 + 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 - 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 - 0.25 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 - 0.5 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-100 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-129 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-30 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casinh (1.5 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.5 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.5 - 0 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (1.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 + +# catan +Test "Imaginary part of: catan (-0x0.fffffffffffff8p0 + 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x0.ffffffp0 + 0x1p-13 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1.0000000000001p0 - 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (-0x1.000002p0 + 0x1p-126 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1.000002p0 - 0x1p-126 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1.000002p0 - 0x1p-13 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1p-1020 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1p-1020 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (-0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-54 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-54 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-57 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-57 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-2 - 3 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x0.fffffffffffff8p0 + 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x0.ffffffp0 + 0x1p-13 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1.0000000000001p0 - 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (0x1.000002p0 + 0x1p-126 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1.000002p0 - 0x1p-126 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1.000002p0 - 0x1p-13 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1p-1020 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (0x1p-1020 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-54 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-54 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-57 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-57 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 + +# catanh +Test "Real part of: catanh (-0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-0x1p-126 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1p-126 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1p-13 + 0x1.000002p0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1p-13 - 0x1.000002p0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1p-27 + 0x1.0000000000001p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1p-27 - 0x1.0000000000001p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-1.0 + 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 + 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 + 0x1p-57 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 - 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (-1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 - 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 - 0x1p-57 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-2 - 3 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (0x1.000002p0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (0x1p-126 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-126 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (0x1p-13 + 0x0.ffffffp0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (0x1p-13 - 0x0.ffffffp0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (0x1p-27 + 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1p-27 - 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (1.0 + 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 + 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 + 0x1p-57 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-57 i)": +float: 1 +ifloat: 1 + +# cbrt +Test "cbrt (-0x1.bp+4)": +double: 1 +idouble: 1 +Test "cbrt (-0x4.18937p-12)": +float: 1 +ifloat: 1 +Test "cbrt (0xcp-4)": +double: 1 +idouble: 1 +Test "cbrt (0xf.ep-4)": +double: 1 +idouble: 1 + +# ccos +Test "Imaginary part of: ccos (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0x4p-1076 + 0x5.ap+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 + +# ccosh +Test "Imaginary part of: ccosh (-0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (-0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 + +# cexp +Test "Imaginary part of: cexp (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cexp (-0x5.fp+4 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0x1.f4p+8 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cexp (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 + +# clog +Test "Real part of: clog (+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d1598p-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d1598p-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d15ap-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x1.234566p-40 - 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 + 0xf.fffffp+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 - 0xf.fffffp+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0xf.8p+124 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234566p-60 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-60 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234568p-60 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234566p-60 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234568p-60 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000566p+0 + 0x4.8dp-12 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c64p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c63p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c64p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdf8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdf8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e08p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e1p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4ep-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4ep-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1p+0 + 0x4.8d1598p-12 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a38p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x2p-148 + 0x2p-148 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57cp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d118p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d6p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d6p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d7p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d08p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d08p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b4p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1af8e3ce8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d758p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d76p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a6p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.d9e8c8p-4 + 0xf.3f303p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.d9e8cp-4 + 0xf.3f30281507d8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4p-1076 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4p-1076 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x5.03p-4 + 0xf.31ep-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x5.318c596a8cb1p-4 + 0xf.22364p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452b965da9fp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x5.b06b7p-4 + 0xe.f452b965da9fp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x5.b06b7p-4 + 0xe.f452bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e21p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e2p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e2086dcca8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e21p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x6.02fd5p-4 + 0xe.d3e21p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x6.1c643068cd128p-4 + 0xe.c97c2p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b4288p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c3p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a6p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a599a86ba8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a5p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86ba8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.b10b48p-4 + 0xe.8893cbb44925p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb449258p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb44925p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655fp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e5108p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d66p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160bp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bf04f3688p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.88fafp-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.47946p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x8.ecbf8p-4 + 0xd.479468b09a37p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x8.ecbf8p-4 + 0xd.47946p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.ecbf9p-4 + 0xd.479468b09a37p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53ep-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53ep-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53dp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53ep-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e867ap-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.b96da19075eap-8 + 0xf.fc679p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc67818f89d2p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc678p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc679p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51cbp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.e7de8p-4 + 0xb.b51cbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.e7de9p-4 + 0xb.b51cb9f04d4dp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.e7de9p-4 + 0xb.b51cbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f24p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a68p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f25p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xb.263a77543bp-4 + 0xb.79c9ap-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.8p+124 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffp-104 i)": +float: 1 +ifloat: 1 + +# clog10 +Test "Imaginary part of: clog10 (-0 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-2 - 3 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-3 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-3 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + 1 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + inf i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-inf - 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf - 1 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1.fffffep+127 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (3 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (3 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (inf + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (inf - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# cos +Test "cos (0x1p+120)": +float: 1 +ifloat: 1 +Test "cos (0x7p+0)": +float: 1 +ifloat: 1 +Test "cos (0x8p+124)": +float: 1 +ifloat: 1 +Test "cos (0xc.d4967p-4)": +float: 1 +ifloat: 1 + +# cos_tonearest +Test "cos_tonearest (0x1p+120)": +float: 1 +ifloat: 1 +Test "cos_tonearest (0x7p+0)": +float: 1 +ifloat: 1 +Test "cos_tonearest (0x8p+124)": +float: 1 +ifloat: 1 +Test "cos_tonearest (0xc.d4967p-4)": +float: 1 +ifloat: 1 + +# cosh +Test "cosh (-0x1p+0)": +float: 1 +ifloat: 1 +Test "cosh (-0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh (0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh (0x2.c679dp+8)": +double: 1 +idouble: 1 + +# cosh_tonearest +Test "cosh_tonearest (-0x1p+0)": +float: 1 +ifloat: 1 +Test "cosh_tonearest (-0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (0x2.c679dp+8)": +double: 1 +idouble: 1 + +# cpow +Test "Real part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 +Test "Imaginary part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +float: 2 +ifloat: 2 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, +0 + 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + 0x1p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 + +# csin +Test "Real part of: csin (-0.75 + 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (-0.75 + 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (-0.75 - 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (-0.75 - 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (0.75 + 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (0.75 + 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (0.75 - 710.5 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (0.75 - 89.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: csin (0x1p-1074 + 1440 i)": +double: 1 +idouble: 1 + +# csinh +Test "Imaginary part of: csinh (-2 - 3 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-89.5 + 0.75 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (-89.5 - 0.75 i)": +float: 1 +ifloat: 1 +Test "Real part of: csinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (710.5 + 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (710.5 - 0.75 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (89.5 + 0.75 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (89.5 - 0.75 i)": +float: 1 +ifloat: 1 + +# csqrt +Test "Real part of: csqrt (-0x2p+0 + 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: csqrt (-0x4.000008p-128 - 0x4.000008p-128 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x4.000008p-128 + 0x4.000008p-128 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p+1020 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p+124 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0x1p+0 i)": +float: 1 +ifloat: 1 + +# ctan +Test "Real part of: ctan (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctan (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0x8p+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# ctan_tonearest +Test "Real part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0x8p+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# ctanh +Test "Imaginary part of: ctanh (+0 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168cp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdap-4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0x8p+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +float: 2 +ifloat: 2 + +# ctanh_tonearest +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168cp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdap-4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": +float: 2 +ifloat: 2 + +# erf +Test "erf (0x1.4p+0)": +double: 1 +idouble: 1 + +# erfc +Test "erfc (-0x8p-4)": +float: 1 +ifloat: 1 +Test "erfc (0x2p+0)": +double: 1 +idouble: 1 +Test "erfc (0x3.ee6078p+0)": +double: 1 +idouble: 1 +Test "erfc (0x4.2p+0)": +double: 1 +idouble: 1 +Test "erfc (0x7.fe8008p+0)": +float: 1 +ifloat: 1 +Test "erfc (0x7.fffd6p+0)": +float: 1 +ifloat: 1 + +# exp10 +Test "exp10 (-0x1.31p+8)": +double: 1 +idouble: 1 +Test "exp10 (-0x1p+0)": +double: 1 +idouble: 1 +Test "exp10 (-0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10 (0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10 (0x3p+0)": +double: 1 +idouble: 1 + +# exp10_tonearest +Test "exp10_tonearest (-0x1.31p+8)": +double: 1 +idouble: 1 +Test "exp10_tonearest (-0x1p+0)": +double: 1 +idouble: 1 +Test "exp10_tonearest (-0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_tonearest (0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_tonearest (0x3p+0)": +double: 1 +idouble: 1 + +# expm1 +Test "expm1 (0x1.f4p+8)": +double: 1 +idouble: 1 +Test "expm1 (0x1p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "expm1 (0xcp-4)": +double: 1 +idouble: 1 + +# expm1_tonearest +Test "expm1_tonearest (0x1.f4p+8)": +double: 1 +idouble: 1 +Test "expm1_tonearest (0x1p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "expm1_tonearest (0xcp-4)": +double: 1 +idouble: 1 + +# fma +Test "fma (-0x1.fffffffffffffp-711, 0x1.fffffffffffffp-275, 0x1.fffffe00007ffp-983)": +double: 1 +idouble: 1 +Test "fma (0x1.0000002p+0, 0x1.ffffffcp-1, -0x1p-300)": +double: 1 +idouble: 1 +Test "fma (0x1.153d650bb9f06p-907, 0x1.2d01230d48407p-125, -0x0.b278d5acfc3cp-1022)": +double: 1 +idouble: 1 +Test "fma (0x1.4000004p-967, 0x1p-106, 0x0.000001p-1022)": +double: 1 +idouble: 1 +Test "fma (0x1.7ff8p+13, 0x1.000002p+0, 0x1.ffffp-24)": +float: 1 +ifloat: 1 +Test "fma (0x1.7fffff8p-968, 0x1p-106, 0x0.000001p-1022)": +double: 1 +idouble: 1 + +# gamma +Test "gamma (-0x1p-20)": +double: 1 +idouble: 1 +Test "gamma (-0x2p-16)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "gamma (-0x4p-12)": +double: 1 +idouble: 1 +Test "gamma (-0x8p-8)": +double: 1 +idouble: 1 +Test "gamma (0x4p-12)": +float: 1 +ifloat: 1 +Test "gamma (0x4p-32)": +double: 1 +idouble: 1 +Test "gamma (0xb.333333333333p-4)": +double: 1 +idouble: 1 +Test "gamma (0xb.33333p-4)": +double: 1 +idouble: 1 + +# hypot +Test "hypot (-0xb.33334p-4, -0xc.6666666666668p+0)": +double: 1 +idouble: 1 +Test "hypot (-0xb.33334p-4, 0xc.6666666666668p+0)": +double: 1 +idouble: 1 +Test "hypot (-0xc.6666666666668p+0, -0xb.33334p-4)": +double: 1 +idouble: 1 +Test "hypot (-0xc.6666666666668p+0, 0xb.33334p-4)": +double: 1 +idouble: 1 +Test "hypot (0xb.33334p-4, -0xc.6666666666668p+0)": +double: 1 +idouble: 1 +Test "hypot (0xb.33334p-4, 0xc.6666666666668p+0)": +double: 1 +idouble: 1 +Test "hypot (0xc.6666666666668p+0, -0xb.33334p-4)": +double: 1 +idouble: 1 +Test "hypot (0xc.6666666666668p+0, 0xb.33334p-4)": +double: 1 +idouble: 1 + +# j0 +Test "j0 (-0x4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "j0 (-0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +Test "j0 (0x2p+0)": +float: 2 +ifloat: 2 +Test "j0 (0x4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "j0 (0x8p+0)": +float: 1 +ifloat: 1 +Test "j0 (0xap+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "j0 (0xcp-4)": +float: 1 +ifloat: 1 +Test "j0 (0xe.be71dp+104)": +float: 2 +ifloat: 2 +Test "j0 (0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 + +# j1 +Test "j1 (0x1.ff00000000002p+840)": +double: 1 +idouble: 1 +Test "j1 (0x2p+0)": +double: 1 +idouble: 1 +Test "j1 (0x4.ffcp+72)": +double: 1 +idouble: 1 +Test "j1 (0x8p+0)": +double: 1 +idouble: 1 +Test "j1 (0xap+0)": +float: 2 +ifloat: 2 +Test "j1 (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "j1 (0xf.fffffp+124)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# jn +Test "jn (0, -0x4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "jn (0, 0x2p+0)": +float: 2 +ifloat: 2 +Test "jn (0, 0x4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "jn (0, 0x8p+0)": +float: 1 +ifloat: 1 +Test "jn (0, 0xap+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "jn (0, 0xcp-4)": +float: 1 +ifloat: 1 +Test "jn (1, 0x2p+0)": +double: 1 +idouble: 1 +Test "jn (1, 0x8p+0)": +double: 1 +idouble: 1 +Test "jn (1, 0xap+0)": +float: 2 +ifloat: 2 +Test "jn (10, 0x2p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "jn (10, 0x2p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "jn (10, 0xap+0)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +Test "jn (10, 0xcp-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "jn (2, 0x2.67a2a4p+0)": +float: 1 +ifloat: 1 +Test "jn (2, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +Test "jn (2, 0x2.67a2a5d2e368p+0)": +double: 2 +idouble: 2 +Test "jn (2, 0x2.67a2a8p+0)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +Test "jn (2, 0x8p+124)": +double: 1 +idouble: 1 +Test "jn (2, 0xf.fffb1p+96)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +Test "jn (2, 0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +Test "jn (3, 0x2.67a2a4p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "jn (3, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +Test "jn (3, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 +Test "jn (3, 0x2.67a2a8p+0)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +Test "jn (3, 0x2p+0)": +float: 1 +ifloat: 1 +Test "jn (3, 0x2p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "jn (3, 0xap+0)": +double: 3 +idouble: 3 +Test "jn (3, 0xcp-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "jn (4, 0x2.67a2a4p+0)": +float: 1 +ifloat: 1 +Test "jn (4, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +Test "jn (4, 0x2.67a2a5d2e368p+0)": +double: 1 +idouble: 1 +Test "jn (4, 0x2.67a2a8p+0)": +float: 1 +ifloat: 1 +Test "jn (5, 0x2.67a2a4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "jn (5, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +Test "jn (5, 0x2.67a2a5d2e368p+0)": +double: 2 +idouble: 2 +Test "jn (5, 0x2.67a2a8p+0)": +float: 2 +ifloat: 2 +Test "jn (6, 0x2.67a2a4p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "jn (6, 0x2.67a2a5d2e3682p+0)": +double: 2 +idouble: 2 +Test "jn (6, 0x2.67a2a5d2e368p+0)": +double: 4 +idouble: 4 +Test "jn (6, 0x2.67a2a8p+0)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +Test "jn (7, 0x2.67a2a4p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "jn (7, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 +Test "jn (7, 0x2.67a2a8p+0)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +Test "jn (8, 0x2.67a2a4p+0)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +Test "jn (8, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +Test "jn (8, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 +Test "jn (8, 0x2.67a2a8p+0)": +double: 2 +float: 4 +idouble: 2 +ifloat: 4 +Test "jn (9, 0x2.67a2a4p+0)": +double: 3 +float: 3 +idouble: 3 +ifloat: 3 +Test "jn (9, 0x2.67a2a5d2e3682p+0)": +double: 4 +idouble: 4 +Test "jn (9, 0x2.67a2a5d2e368p+0)": +double: 1 +idouble: 1 +Test "jn (9, 0x2.67a2a8p+0)": +double: 3 +float: 3 +idouble: 3 +ifloat: 3 + +# lgamma +Test "lgamma (-0x1p-20)": +double: 1 +idouble: 1 +Test "lgamma (-0x2p-16)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "lgamma (-0x4p-12)": +double: 1 +idouble: 1 +Test "lgamma (-0x8p-8)": +double: 1 +idouble: 1 +Test "lgamma (0x4p-12)": +float: 1 +ifloat: 1 +Test "lgamma (0x4p-32)": +double: 1 +idouble: 1 +Test "lgamma (0xb.333333333333p-4)": +double: 1 +idouble: 1 +Test "lgamma (0xb.33333p-4)": +double: 1 +idouble: 1 + +# log +Test "log (0x2.b7e15p+0)": +float: 1 +ifloat: 1 + +# log10 +Test "log10 (0x2.b7e154p+0)": +float: 1 +ifloat: 1 +Test "log10 (0xcp-4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +# log1p +Test "log1p (-0x4p-4)": +float: 1 +ifloat: 1 +Test "log1p (0x1.b7e15p+0)": +float: 1 +ifloat: 1 + +# pow +Test "pow (0x1.000002p+0, 0x1p+24)": +float: 1 +ifloat: 1 +Test "pow (0xf.fffffp-4, -0x1p+24)": +float: 1 +ifloat: 1 +Test "pow (0xf.fffffp-4, 0x1p+24)": +float: 1 +ifloat: 1 + +# pow10 +Test "pow10 (-0x1.31p+8)": +double: 1 +idouble: 1 +Test "pow10 (-0x1p+0)": +double: 1 +idouble: 1 +Test "pow10 (-0x2.4p+4)": +double: 1 +idouble: 1 +Test "pow10 (0x2.4p+4)": +double: 1 +idouble: 1 +Test "pow10 (0x3p+0)": +double: 1 +idouble: 1 + +# pow_tonearest +Test "pow_tonearest (0x1.000002p+0, 0x1p+24)": +float: 1 +ifloat: 1 +Test "pow_tonearest (0xf.fffffp-4, -0x1p+24)": +float: 1 +ifloat: 1 +Test "pow_tonearest (0xf.fffffp-4, 0x1p+24)": +float: 1 +ifloat: 1 + +# sin +Test "sin (0x1p+0)": +float: 1 +ifloat: 1 + +# sin_tonearest +Test "sin_tonearest (0x1p+0)": +float: 1 +ifloat: 1 + +# sincos +Test "sincos (0x1.0c1522p+0) extra output 1": +float: 1 +ifloat: 1 +Test "sincos (0x1p+120) extra output 2": +float: 1 +ifloat: 1 +Test "sincos (0x8.60a92p-4) extra output 2": +float: 1 +ifloat: 1 +Test "sincos (0x8p+124) extra output 2": +float: 1 +ifloat: 1 +Test "sincos (0xc.d4967p-4) extra output 2": +float: 1 +ifloat: 1 + +# tgamma +Test "tgamma (-0x1.000002p+0)": +double: 2 +idouble: 2 +Test "tgamma (-0x1.3ffffep+4)": +float: 2 +ifloat: 2 +Test "tgamma (-0x1.4000000000001p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x1.400002p+4)": +float: 1 +ifloat: 1 +Test "tgamma (-0x1.dffffep+4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x1.e000000000001p+4)": +double: 3 +idouble: 3 +Test "tgamma (-0x1.e00002p+4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x2.0000000000002p+0)": +double: 1 +idouble: 1 +Test "tgamma (-0x2.000004p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (-0x2.146544p+4)": +float: 2 +ifloat: 2 +Test "tgamma (-0x2.7fffffffffffep+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x2.8000000000002p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x2.800004p+4)": +double: 2 +idouble: 2 +Test "tgamma (-0x2.8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "tgamma (-0x2.900004p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x2.9ffffcp+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x2.fffffcp+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x3.000004p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (-0x3.1ffffcp+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x3.1fffffffffffep+4)": +double: 3 +idouble: 3 +Test "tgamma (-0x3.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x3.fffffcp+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x3.ffffffffffffep+0)": +double: 2 +idouble: 2 +Test "tgamma (-0x4.000008p+0)": +float: 1 +ifloat: 1 +Test "tgamma (-0x4.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x4.fffff8p+0)": +double: 1 +idouble: 1 +Test "tgamma (-0x4.ffffffffffffcp+0)": +double: 1 +idouble: 1 +Test "tgamma (-0x5.000008p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x5.8p+0)": +double: 1 +idouble: 1 +Test "tgamma (-0x5.ffffffffffffcp+0)": +double: 1 +idouble: 1 +Test "tgamma (-0x6.000008p+0)": +float: 2 +ifloat: 2 +Test "tgamma (-0x6.3fffffffffffcp+4)": +double: 2 +idouble: 2 +Test "tgamma (-0x6.4000000000004p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x6.400008p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x6.8p+0)": +float: 1 +ifloat: 1 +Test "tgamma (-0x6.fffff8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (-0x6.ffffffffffffcp+0)": +double: 4 +idouble: 4 +Test "tgamma (-0x7.0000000000004p+0)": +double: 3 +idouble: 3 +Test "tgamma (-0x7.000008p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x7.8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (-0x7.fffff8p+0)": +double: 3 +float: 1 +idouble: 3 +ifloat: 1 +Test "tgamma (-0x7.ffffffffffffcp+0)": +double: 3 +idouble: 3 +Test "tgamma (-0x8.00001p+0)": +double: 2 +idouble: 2 +Test "tgamma (-0x8.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x8p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x9.6000000000008p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x9.60001p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x9.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x9.ffffffffffff8p+0)": +double: 1 +idouble: 1 +Test "tgamma (-0x9.fffffp+0)": +float: 1 +ifloat: 1 +Test "tgamma (-0xa.00001p+0)": +double: 1 +idouble: 1 +Test "tgamma (-0xa.c0001p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0xf.ffffffffffff8p-4)": +double: 1 +idouble: 1 +Test "tgamma (-0xf.fffffp-4)": +float: 1 +ifloat: 1 +Test "tgamma (0x1.28p+4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (0x1.38p+4)": +double: 2 +idouble: 2 +Test "tgamma (0x1.78p+4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (0x1.d8p+4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (0x1.e8p+4)": +float: 1 +ifloat: 1 +Test "tgamma (0x1.fffffep+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x1.fffffffffffffp+0)": +double: 1 +idouble: 1 +Test "tgamma (0x1p-24)": +float: 1 +ifloat: 1 +Test "tgamma (0x2.18p+4)": +float: 1 +ifloat: 1 +Test "tgamma (0x2.28p+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "tgamma (0x2.30a43cp+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "tgamma (0x2.8p+0)": +float: 2 +ifloat: 2 +Test "tgamma (0x2.fffffcp+0)": +float: 3 +ifloat: 3 +Test "tgamma (0x3.8p+0)": +float: 2 +ifloat: 2 +Test "tgamma (0x3.fffffcp+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x3.ffffffffffffep+0)": +double: 1 +idouble: 1 +Test "tgamma (0x3p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x4.0000000000004p+0)": +double: 1 +idouble: 1 +Test "tgamma (0x4.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (0x4.ffffffffffffcp+0)": +double: 1 +idouble: 1 +Test "tgamma (0x4p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x5.0000000000004p+0)": +double: 1 +idouble: 1 +Test "tgamma (0x5.000008p+0)": +float: 2 +ifloat: 2 +Test "tgamma (0x5.fffff8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (0x6.0000000000004p+0)": +double: 1 +idouble: 1 +Test "tgamma (0x6.000008p+0)": +float: 2 +ifloat: 2 +Test "tgamma (0x6.8p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x6.fffff8p+0)": +double: 1 +idouble: 1 +Test "tgamma (0x6.ffffffffffffcp+0)": +double: 4 +idouble: 4 +Test "tgamma (0x6p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x7.0000000000004p+0)": +double: 4 +idouble: 4 +Test "tgamma (0x7.000008p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (0x7.8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (0x7.fffff8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (0x7.ffffffffffffcp+0)": +double: 2 +idouble: 2 +Test "tgamma (0x7p+0)": +double: 1 +idouble: 1 +Test "tgamma (0x8.00001p+0)": +double: 2 +idouble: 2 +Test "tgamma (0x8.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (0x8p+0)": +double: 1 +idouble: 1 +Test "tgamma (0x8p-4)": +float: 1 +ifloat: 1 +Test "tgamma (0x8p-56)": +double: 1 +idouble: 1 +Test "tgamma (0x9.8p+0)": +double: 1 +idouble: 1 +Test "tgamma (0x9p+0)": +double: 1 +idouble: 1 +Test "tgamma (0xa.b9fd72b0fb238p+4)": +double: 1 +idouble: 1 +Test "tgamma (0xa.b9fd7p+4)": +double: 2 +idouble: 2 +Test "tgamma (0xap+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# y0 +Test "y0 (0x1.8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "y0 (0x1.ff00000000002p+840)": +double: 1 +idouble: 1 +Test "y0 (0x1p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "y0 (0x1p-20)": +float: 1 +ifloat: 1 +Test "y0 (0x1p-40)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "y0 (0x1p-80)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "y0 (0x4.ffcp+72)": +double: 1 +idouble: 1 +Test "y0 (0x4p-112)": +double: 1 +idouble: 1 +Test "y0 (0x4p-12)": +double: 1 +idouble: 1 +Test "y0 (0x4p-32)": +float: 1 +ifloat: 1 +Test "y0 (0x4p-52)": +float: 1 +ifloat: 1 +Test "y0 (0x4p-72)": +double: 1 +idouble: 1 +Test "y0 (0x8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "y0 (0xap+0)": +float: 1 +ifloat: 1 +Test "y0 (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "y0 (0xf.fffffp+124)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# y1 +Test "y1 (0x1.8p+0)": +float: 1 +ifloat: 1 +Test "y1 (0x2p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "y1 (0x2p-4)": +double: 1 +idouble: 1 +Test "y1 (0x4p-12)": +double: 1 +idouble: 1 +Test "y1 (0x8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "y1 (0x9.3f102p+96)": +double: 1 +idouble: 1 +Test "y1 (0xap+0)": +double: 3 +float: 1 +idouble: 3 +ifloat: 1 +Test "y1 (0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 + +# yn +Test "yn (-10, 0x1p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "yn (0, 0x1.8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "yn (0, 0x1p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "yn (0, 0x8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "yn (0, 0xap+0)": +float: 1 +ifloat: 1 +Test "yn (1, 0x1.8p+0)": +float: 1 +ifloat: 1 +Test "yn (1, 0x2p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "yn (1, 0x2p-4)": +double: 1 +idouble: 1 +Test "yn (1, 0x8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "yn (1, 0xap+0)": +double: 3 +float: 1 +idouble: 3 +ifloat: 1 +Test "yn (10, 0x1p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "yn (10, 0x2p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "yn (10, 0x2p-4)": +double: 1 +idouble: 1 +Test "yn (10, 0xap+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "yn (10, 0xcp-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "yn (2, 0x8p+124)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "yn (2, 0xf.fffb1p+96)": +double: 1 +idouble: 1 +Test "yn (2, 0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "yn (2, 0xf.fffffp+124)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "yn (3, 0x2p+0)": +double: 1 +idouble: 1 +Test "yn (3, 0x2p-4)": +double: 1 +idouble: 1 +Test "yn (3, 0xap+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "yn (3, 0xcp-4)": +double: 1 +idouble: 1 + +# Maximal error of functions: +Function: "acosh": +double: 1 +idouble: 1 + +Function: "asinh": +double: 1 +float: 1 +ifloat: 1 + +Function: "atan2": +float: 1 +ifloat: 1 + +Function: "atanh": +float: 1 +ifloat: 1 + +Function: Real part of "cacos": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +Function: Imaginary part of "cacos": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +Function: Real part of "cacosh": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +Function: Imaginary part of "cacosh": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +Function: Real part of "casin": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Imaginary part of "casin": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +Function: Real part of "casinh": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +Function: Imaginary part of "casinh": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Real part of "catan": +float: 1 +ifloat: 1 + +Function: Imaginary part of "catan": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Real part of "catanh": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Imaginary part of "catanh": +float: 1 +ifloat: 1 + +Function: "cbrt": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Real part of "ccos": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Imaginary part of "ccos": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Real part of "ccosh": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Imaginary part of "ccosh": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Real part of "cexp": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 + +Function: Imaginary part of "cexp": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +Function: Real part of "clog": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Imaginary part of "clog": +float: 1 +ifloat: 1 + +Function: Real part of "clog10": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 + +Function: Imaginary part of "clog10": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: "cos": +float: 1 +ifloat: 1 + +Function: "cos_tonearest": +float: 1 +ifloat: 1 + +Function: "cosh": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: "cosh_tonearest": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Real part of "cpow": +double: 2 +float: 4 +idouble: 2 +ifloat: 4 + +Function: Imaginary part of "cpow": +float: 2 +ifloat: 2 + +Function: Real part of "csin": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Real part of "csinh": +float: 1 +ifloat: 1 + +Function: Imaginary part of "csinh": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Real part of "csqrt": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Imaginary part of "csqrt": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Real part of "ctan": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Imaginary part of "ctan": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 + +Function: Real part of "ctan_tonearest": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: Imaginary part of "ctan_tonearest": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 + +Function: Real part of "ctanh": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 + +Function: Imaginary part of "ctanh": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 + +Function: Real part of "ctanh_tonearest": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 + +Function: Imaginary part of "ctanh_tonearest": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 + +Function: "erf": +double: 1 +idouble: 1 + +Function: "erfc": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: "exp10": +double: 1 +idouble: 1 + +Function: "exp10_tonearest": +double: 1 +idouble: 1 + +Function: "expm1": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: "expm1_tonearest": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: "fma": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: "gamma": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: "hypot": +double: 1 +idouble: 1 + +Function: "j0": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 + +Function: "j1": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +Function: "jn": +double: 4 +float: 4 +idouble: 4 +ifloat: 4 + +Function: "lgamma": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +Function: "log": +float: 1 +ifloat: 1 + +Function: "log10": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +Function: "log1p": +float: 1 +ifloat: 1 + +Function: "pow": +float: 1 +ifloat: 1 + +Function: "pow10": +double: 1 +idouble: 1 + +Function: "pow_tonearest": +float: 1 +ifloat: 1 + +Function: "sin": +float: 1 +ifloat: 1 + +Function: "sin_tonearest": +float: 1 +ifloat: 1 + +Function: "sincos": +float: 1 +ifloat: 1 + +Function: "tgamma": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 + +Function: "y0": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 + +Function: "y1": +double: 3 +float: 2 +idouble: 3 +ifloat: 2 + +Function: "yn": +double: 3 +float: 2 +idouble: 3 +ifloat: 2 + +# end of automatic generation diff --git a/sysdeps/sh/sh4/fpu/libm-test-ulps b/sysdeps/sh/sh4/fpu/libm-test-ulps deleted file mode 100644 index d517ea9e26..0000000000 --- a/sysdeps/sh/sh4/fpu/libm-test-ulps +++ /dev/null @@ -1,1094 +0,0 @@ -# Begin of automatic generation - -# asin -Test "asin (-0.5)": -float: 2 -ifloat: 2 -Test "asin (0.5)": -float: 2 -ifloat: 2 -Test "asin (0.7)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 - -# atan2 -Test "atan2 (-0.7, -1.0)": -float: 3 -ifloat: 3 -Test "atan2 (0.7, -1.0)": -float: 3 -ifloat: 3 -Test "atan2 (1.4, -0.93)": -float: 4 -ifloat: 4 - -# atanh -Test "atanh (0.7)": -double: 1 -idouble: 1 - -# cabs -Test "cabs (-0.7 + 12.4 i)": -float: 1 -ifloat: 1 -Test "cabs (-0.7 - 12.4 i)": -float: 1 -ifloat: 1 -Test "cabs (-12.4 + 0.7 i)": -float: 1 -ifloat: 1 -Test "cabs (-12.4 - 0.7 i)": -float: 1 -ifloat: 1 -Test "cabs (0.7 + 1.2 i)": -double: 1 -idouble: 1 -Test "cabs (0.7 + 12.4 i)": -float: 1 -ifloat: 1 - -# cacos -Test "Real part of: cacos (0.7 + 1.2 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacos (0.7 + 1.2 i)": -float: 1 -ifloat: 1 - -# cacosh -Test "Real part of: cacosh (-2 - 3 i)": -double: 1 -float: 7 -idouble: 1 -ifloat: 7 -Test "Imaginary part of: cacosh (-2 - 3 i)": -double: 1 -float: 3 -idouble: 1 -ifloat: 3 -Test "Real part of: cacosh (0.7 + 1.2 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -# casin -Test "Real part of: casin (0.7 + 1.2 i)": -double: 3 -float: 2 -idouble: 3 -ifloat: 2 -Test "Imaginary part of: casin (0.7 + 1.2 i)": -float: 1 -ifloat: 1 - -# casinh -Test "Real part of: casinh (-2 - 3 i)": -double: 5 -float: 1 -idouble: 5 -ifloat: 1 -Test "Imaginary part of: casinh (-2 - 3 i)": -double: 3 -float: 6 -idouble: 3 -ifloat: 6 -Test "Real part of: casinh (0.7 + 1.2 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casinh (0.7 + 1.2 i)": -float: 1 -ifloat: 1 - -# catan -Test "Real part of: catan (-2 - 3 i)": -float: 3 -ifloat: 3 -Test "Imaginary part of: catan (-2 - 3 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: catan (0.7 + 1.2 i)": -float: 4 -ifloat: 4 -Test "Imaginary part of: catan (0.7 + 1.2 i)": -double: 1 -idouble: 1 - -# catanh -Test "Real part of: catanh (-2 - 3 i)": -double: 4 -idouble: 4 -Test "Imaginary part of: catanh (-2 - 3 i)": -float: 4 -ifloat: 4 -Test "Real part of: catanh (0.7 + 1.2 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (0.7 + 1.2 i)": -double: 1 -float: 6 -idouble: 1 -ifloat: 6 - -# cbrt -Test "cbrt (-27.0)": -double: 1 -idouble: 1 -Test "cbrt (0.970299)": -double: 1 -idouble: 1 - -# ccos -Test "Imaginary part of: ccos (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: ccos (0.7 + 1.2 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: ccos (0.7 + 1.2 i)": -double: 1 -idouble: 1 - -# ccosh -Test "Real part of: ccosh (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: ccosh (0.7 + 1.2 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (0.7 + 1.2 i)": -double: 1 -idouble: 1 - -# cexp -Test "Imaginary part of: cexp (-2.0 - 3.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cexp (0.7 + 1.2 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: cexp (0.7 + 1.2 i)": -float: 1 -ifloat: 1 - -# clog -Test "Imaginary part of: clog (-2 - 3 i)": -double: 1 -float: 3 -idouble: 1 -ifloat: 3 - -# clog10 -Test "Imaginary part of: clog10 (-0 + inf i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-0 - inf i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-2 - 3 i)": -double: 1 -float: 5 -idouble: 1 -ifloat: 5 -Test "Imaginary part of: clog10 (-3 + inf i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-3 - inf i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 1 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf - 0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf - 1 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0 + inf i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0 - inf i)": -float: 1 -ifloat: 1 -Test "Real part of: clog10 (0.7 + 1.2 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0.7 + 1.2 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (3 + inf i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (3 - inf i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (inf + inf i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (inf - inf i)": -float: 1 -ifloat: 1 - -# cos -Test "cos (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "cos (M_PI_6l * 2.0)": -double: 1 -float: 0.5 -idouble: 1 -ifloat: 0.5 -Test "cos (M_PI_6l * 4.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "cos (pi/2)": -double: 0.2758 -float: 0.3667 -idouble: 0.2758 -ifloat: 0.3667 - -# cpow -Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": -double: 1 -float: 4 -idouble: 1 -ifloat: 4 -Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cpow (e + 0 i, 0 + 2 * M_PIl i)": -double: 1.1031 -float: 1.5 -idouble: 1.1031 -ifloat: 1.5 - -# csin -Test "Imaginary part of: csin (0.7 + 1.2 i)": -float: 1 -ifloat: 1 - -# csinh -Test "Imaginary part of: csinh (-2 - 3 i)": -double: 1 -idouble: 1 -Test "Real part of: csinh (0.7 + 1.2 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: csinh (0.7 + 1.2 i)": -float: 1 -ifloat: 1 - -# csqrt -Test "Real part of: csqrt (-2 + 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: csqrt (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Real part of: csqrt (0.7 + 1.2 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: csqrt (0.7 + 1.2 i)": -float: 1 -ifloat: 1 - -# ctan -Test "Real part of: ctan (-2 - 3 i)": -double: 1 -idouble: 1 -Test "Real part of: ctan (0.7 + 1.2 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan (0.7 + 1.2 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -# ctanh -Test "Real part of: ctanh (-2 - 3 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "Imaginary part of: ctanh (0 + pi/4 i)": -float: 1 -ifloat: 1 -Test "Real part of: ctanh (0.7 + 1.2 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "Imaginary part of: ctanh (0.7 + 1.2 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 - -# erfc -Test "erfc (0.7)": -double: 1 -idouble: 1 -Test "erfc (1.2)": -double: 2 -float: 2 -idouble: 2 -ifloat: 2 -Test "erfc (2.0)": -double: 1 -idouble: 1 -Test "erfc (4.1)": -double: 24 -float: 12 -idouble: 24 -ifloat: 12 - -# exp10 -Test "exp10 (-1)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "exp10 (0.7)": -float: 1 -ifloat: 1 -Test "exp10 (3)": -double: 6 -float: 2 -idouble: 6 -ifloat: 2 - -# expm1 -Test "expm1 (1)": -float: 1 -ifloat: 1 - -# fmod -Test "fmod (-6.5, -2.3)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "fmod (-6.5, 2.3)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "fmod (6.5, -2.3)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "fmod (6.5, 2.3)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 - -# hypot -Test "hypot (-0.7, -12.4)": -float: 1 -ifloat: 1 -Test "hypot (-0.7, 12.4)": -float: 1 -ifloat: 1 -Test "hypot (-12.4, -0.7)": -float: 1 -ifloat: 1 -Test "hypot (-12.4, 0.7)": -float: 1 -ifloat: 1 -Test "hypot (0.7, -12.4)": -float: 1 -ifloat: 1 -Test "hypot (0.7, 1.2)": -double: 1 -idouble: 1 -Test "hypot (0.7, 12.4)": -float: 1 -ifloat: 1 -Test "hypot (12.4, -0.7)": -float: 1 -ifloat: 1 -Test "hypot (12.4, 0.7)": -float: 1 -ifloat: 1 - -# j0 -Test "j0 (10.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "j0 (2.0)": -float: 2 -ifloat: 2 -Test "j0 (8.0)": -float: 1 -ifloat: 1 - -# j1 -Test "j1 (10.0)": -float: 2 -ifloat: 2 -Test "j1 (2.0)": -double: 1 -idouble: 1 -Test "j1 (8.0)": -double: 1 -idouble: 1 - -# jn -Test "jn (0, 10.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "jn (0, 2.0)": -float: 2 -ifloat: 2 -Test "jn (0, 8.0)": -float: 1 -ifloat: 1 -Test "jn (1, 10.0)": -float: 2 -ifloat: 2 -Test "jn (1, 2.0)": -double: 1 -idouble: 1 -Test "jn (1, 8.0)": -double: 1 -idouble: 1 -Test "jn (10, 0.1)": -double: 6 -float: 4 -idouble: 6 -ifloat: 4 -Test "jn (10, 0.7)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -Test "jn (10, 10.0)": -double: 4 -float: 3 -idouble: 4 -ifloat: 3 -Test "jn (10, 2.0)": -float: 4 -ifloat: 4 -Test "jn (3, 0.1)": -double: 1 -idouble: 1 -Test "jn (3, 0.7)": -float: 1 -ifloat: 1 -Test "jn (3, 10.0)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -Test "jn (3, 2.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 - -# lgamma -Test "lgamma (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "lgamma (1.2)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 - -# log -Test "log (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -# log10 -Test "log10 (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "log10 (e)": -float: 1 -ifloat: 1 - -# log1p -Test "log1p (-0.3)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -# log2 -Test "log2 (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -# sincos -Test "sincos (0.7) extra output 2": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "sincos (M_PI_6l*2.0) extra output 1": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "sincos (M_PI_6l*2.0) extra output 2": -double: 1 -float: 0.5 -idouble: 1 -ifloat: 0.5 -Test "sincos (pi/2) extra output 2": -double: 0.2758 -float: 0.3667 -idouble: 0.2758 -ifloat: 0.3667 -Test "sincos (pi/6) extra output 2": -float: 1 -ifloat: 1 - -# sinh -Test "sinh (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -# tan -Test "tan (pi/4)": -double: 0.5 -idouble: 0.5 - -# tanh -Test "tanh (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -# tgamma -Test "tgamma (-0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (0.5)": -float: 1 -ifloat: 1 -Test "tgamma (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -# y0 -Test "y0 (0.7)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "y0 (1.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "y0 (1.5)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "y0 (10.0)": -float: 1 -ifloat: 1 -Test "y0 (8.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -# y1 -Test "y1 (0.1)": -double: 1 -idouble: 1 -Test "y1 (0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "y1 (1.5)": -float: 1 -ifloat: 1 -Test "y1 (10.0)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -Test "y1 (2.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "y1 (8.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 - -# yn -Test "yn (0, 0.7)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "yn (0, 1.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "yn (0, 1.5)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "yn (0, 10.0)": -float: 1 -ifloat: 1 -Test "yn (0, 8.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "yn (1, 0.1)": -double: 1 -idouble: 1 -Test "yn (1, 0.7)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "yn (1, 1.5)": -float: 1 -ifloat: 1 -Test "yn (1, 10.0)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -Test "yn (1, 2.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "yn (1, 8.0)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "yn (10, 0.1)": -double: 2 -float: 2 -idouble: 2 -ifloat: 2 -Test "yn (10, 0.7)": -double: 3 -idouble: 3 -Test "yn (10, 1.0)": -double: 1 -idouble: 1 -Test "yn (10, 10.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "yn (10, 2.0)": -double: 2 -idouble: 2 -Test "yn (3, 0.1)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "yn (3, 0.7)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -Test "yn (3, 10.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "yn (3, 2.0)": -double: 1 -idouble: 1 - -# Maximal error of functions: -Function: "asin": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 - -Function: "atan2": -float: 4 -ifloat: 4 - -Function: "atanh": -double: 1 -idouble: 1 - -Function: "cabs": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Real part of "cacos": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Imaginary part of "cacos": -float: 1 -ifloat: 1 - -Function: Real part of "cacosh": -double: 1 -float: 7 -idouble: 1 -ifloat: 7 - -Function: Imaginary part of "cacosh": -double: 1 -float: 3 -idouble: 1 -ifloat: 3 - -Function: Real part of "casin": -double: 3 -float: 2 -idouble: 3 -ifloat: 2 - -Function: Imaginary part of "casin": -float: 1 -ifloat: 1 - -Function: Real part of "casinh": -double: 5 -float: 1 -idouble: 5 -ifloat: 1 - -Function: Imaginary part of "casinh": -double: 3 -float: 6 -idouble: 3 -ifloat: 6 - -Function: Real part of "catan": -float: 4 -ifloat: 4 - -Function: Imaginary part of "catan": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Real part of "catanh": -double: 4 -float: 1 -idouble: 4 -ifloat: 1 - -Function: Imaginary part of "catanh": -double: 1 -float: 6 -idouble: 1 -ifloat: 6 - -Function: "cbrt": -double: 1 -idouble: 1 - -Function: Real part of "ccos": -double: 1 -idouble: 1 - -Function: Imaginary part of "ccos": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Real part of "ccosh": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Imaginary part of "ccosh": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Real part of "cexp": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Imaginary part of "cexp": -float: 1 -ifloat: 1 - -Function: Imaginary part of "clog": -double: 1 -float: 3 -idouble: 1 -ifloat: 3 - -Function: Real part of "clog10": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Imaginary part of "clog10": -double: 1 -float: 5 -idouble: 1 -ifloat: 5 - -Function: "cos": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 - -Function: Real part of "cpow": -double: 1 -float: 4 -idouble: 1 -ifloat: 4 - -Function: Imaginary part of "cpow": -double: 1.1031 -float: 2 -idouble: 1.1031 -ifloat: 2 - -Function: Imaginary part of "csin": -float: 1 -ifloat: 1 - -Function: Real part of "csinh": -float: 1 -ifloat: 1 - -Function: Imaginary part of "csinh": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Real part of "csqrt": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Imaginary part of "csqrt": -float: 1 -ifloat: 1 - -Function: Real part of "ctan": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Imaginary part of "ctan": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: Real part of "ctanh": -double: 2 -float: 2 -idouble: 2 -ifloat: 2 - -Function: Imaginary part of "ctanh": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 - -Function: "erfc": -double: 24 -float: 12 -idouble: 24 -ifloat: 12 - -Function: "exp10": -double: 6 -float: 2 -idouble: 6 -ifloat: 2 - -Function: "expm1": -float: 1 -ifloat: 1 - -Function: "fmod": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 - -Function: "hypot": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: "j0": -double: 2 -float: 2 -idouble: 2 -ifloat: 2 - -Function: "j1": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 - -Function: "jn": -double: 6 -float: 4 -idouble: 6 -ifloat: 4 - -Function: "lgamma": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 - -Function: "log": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: "log10": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: "log1p": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: "log2": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: "sincos": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: "sinh": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: "tan": -double: 0.5 -idouble: 0.5 - -Function: "tanh": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: "tgamma": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 - -Function: "y0": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 - -Function: "y1": -double: 3 -float: 2 -idouble: 3 -ifloat: 2 - -Function: "yn": -double: 3 -float: 2 -idouble: 3 -ifloat: 2 - -# end of automatic generation -- cgit v1.2.3 From 6e697ff746fce7ab5852ae74db832253b2f0020d Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Fri, 24 Jan 2014 18:32:43 -0800 Subject: Rebuild sparc ULPs. * sysdeps/sparc/fpu/libm-test-ulps: Regenerate. --- ChangeLog | 4 + sysdeps/sparc/fpu/libm-test-ulps | 18008 +++++++++++++++++++++++++++---------- 2 files changed, 13315 insertions(+), 4697 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index bf223bdb70..3e1e93166a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-01-24 David S. Miller + + * sysdeps/sparc/fpu/libm-test-ulps: Regenerate. + 2014-01-25 Kaz Kojima * sysdeps/sh/sh4/fpu/libm-test-ulps: Move to ... diff --git a/sysdeps/sparc/fpu/libm-test-ulps b/sysdeps/sparc/fpu/libm-test-ulps index ecb871d6ab..b22c08a9d7 100644 --- a/sysdeps/sparc/fpu/libm-test-ulps +++ b/sysdeps/sparc/fpu/libm-test-ulps @@ -1,8919 +1,17319 @@ # Begin of automatic generation # acos_downward -Test "acos_downward (-0)": +Test "acos_downward (-0x8p-4)": float: 1 ifloat: 1 -Test "acos_downward (-0.5)": -double: 1 -idouble: 1 -Test "acos_downward (-1)": -float: 1 -ifloat: 1 -Test "acos_downward (0)": -float: 1 -ifloat: 1 -Test "acos_downward (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 # acos_towardzero -Test "acos_towardzero (-0)": -float: 1 -ifloat: 1 -Test "acos_towardzero (-0.5)": -double: 1 -idouble: 1 -Test "acos_towardzero (-1)": -float: 1 -ifloat: 1 -Test "acos_towardzero (0)": +Test "acos_towardzero (-0x8p-4)": float: 1 ifloat: 1 -Test "acos_towardzero (0.5)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 # acos_upward +Test "acos_upward (+0)": +double: 1 +idouble: 1 Test "acos_upward (-0)": -ildouble: 1 +double: 1 +idouble: 1 +Test "acos_upward (-0x1p+0)": +double: 1 +idouble: 1 +Test "acos_upward (-0x4p-1024)": +double: 1 +idouble: 1 +Test "acos_upward (-0x4p-1076)": +double: 1 +idouble: 1 +Test "acos_upward (-0x4p-128)": +double: 1 +idouble: 1 +Test "acos_upward (-0x8p-152)": +double: 1 +idouble: 1 +Test "acos_upward (-0x8p-972)": +double: 1 +idouble: 1 +Test "acos_upward (0x1.70ef54646d496p-56)": +double: 1 +idouble: 1 +Test "acos_upward (0x1.70ef54646d497p-56)": +double: 1 +idouble: 1 +Test "acos_upward (0x1.70ef54p-56)": +double: 1 +idouble: 1 +Test "acos_upward (0x1.70ef56p-56)": +double: 1 +idouble: 1 +Test "acos_upward (0x4p-1024)": +double: 1 +idouble: 1 +Test "acos_upward (0x4p-1076)": +double: 1 +idouble: 1 +Test "acos_upward (0x4p-128)": +double: 1 +idouble: 1 +Test "acos_upward (0x8p-152)": +double: 1 +idouble: 1 +Test "acos_upward (0x8p-972)": +double: 1 +idouble: 1 + +# acosh +Test "acosh (0x6.4p+4)": +double: 1 +idouble: 1 +Test "acosh (0xf.ffffffffffff8p+1020)": +double: 1 +Test "acosh (0xf.fffffp+124)": ldouble: 1 -Test "acos_upward (-1)": + +# asin +Test "asin (-0xf.ffffffffffff8p-4)": ildouble: 1 ldouble: 1 -Test "acos_upward (0)": +Test "asin (-0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 # asin_downward -Test "asin_downward (-0.5)": +Test "asin_downward (-0x1p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "asin_downward (-1.0)": -ildouble: 1 -ldouble: 1 -Test "asin_downward (0.5)": +Test "asin_downward (-0x8p-4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "asin_downward (1.0)": -float: 1 -ifloat: 1 - -# asin_towardzero -Test "asin_towardzero (-0.5)": +Test "asin_downward (-0xf.fffffff8p-4)": double: 1 idouble: 1 -Test "asin_towardzero (-1.0)": -float: 1 -ifloat: 1 -Test "asin_towardzero (0.5)": +ildouble: 1 +ldouble: 1 +Test "asin_downward (-0xf.ffffffffffff8p-4)": double: 1 idouble: 1 -Test "asin_towardzero (1.0)": -float: 1 -ifloat: 1 - -# asin_upward -Test "asin_upward (-1.0)": -float: 1 -ifloat: 1 -Test "asin_upward (1.0)": ildouble: 1 ldouble: 1 - -# atan2 -Test "atan2 (-0.00756827042671106339, -.001792735857538728036)": +Test "asin_downward (-0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "atan2 (-0.75, -1.0)": -float: 1 -ifloat: 1 +Test "asin_downward (-0xf.fffffffffffp-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "atan2 (-max_value, -min_value)": +Test "asin_downward (-0xf.fffffp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "atan2 (0.75, -1.0)": +Test "asin_downward (0x8p-4)": float: 1 ifloat: 1 +Test "asin_downward (0xcp-4)": ildouble: 1 ldouble: 1 -Test "atan2 (1.390625, 0.9296875)": -float: 1 -ifloat: 1 + +# asin_tonearest +Test "asin_tonearest (-0xf.ffffffffffff8p-4)": +ildouble: 1 +ldouble: 1 +Test "asin_tonearest (-0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 -# atanh -Test "atanh (0.75)": -float: 1 -ifloat: 1 - -# cacos -Test "Imaginary part of: cacos (+0 + 0.5 i)": -float: 1 -ifloat: 1 +# asin_towardzero +Test "asin_towardzero (-0x1p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (+0 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "asin_towardzero (-0x2p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (+0 + 1.5 i)": +Test "asin_towardzero (-0x4p-1024)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (+0 - 0.5 i)": -float: 1 -ifloat: 1 +Test "asin_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (+0 - 1.0 i)": +Test "asin_towardzero (-0x4p-128)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (+0 - 1.5 i)": -double: 1 -idouble: 1 +Test "asin_towardzero (-0x4p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0 + 0.5 i)": -float: 1 -ifloat: 1 +Test "asin_towardzero (-0x4p-16448)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0 + 1.0 i)": +Test "asin_towardzero (-0x4p-16496)": +ildouble: 1 +ldouble: 1 +Test "asin_towardzero (-0x8p-152)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0 + 1.5 i)": -double: 1 -idouble: 1 +Test "asin_towardzero (-0x8p-16448)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0 - 0.5 i)": +Test "asin_towardzero (-0x8p-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0 - 1.0 i)": +Test "asin_towardzero (-0x8p-972)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0 - 1.5 i)": -double: 1 -idouble: 1 +Test "asin_towardzero (-0xf.fffffp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "asin_towardzero (0x8p-4)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 + 0x0.ffffffffffffffffp0 i)": +Test "asin_towardzero (0xcp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000000000000000000001p0 i)": + +# asin_upward +Test "asin_upward (-0x1p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000000002p0 i)": +Test "asin_upward (-0x2p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000001p0 i)": +Test "asin_upward (-0x4p-1024)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "asin_upward (-0x4p-1076)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 - 0x0.ffffffffffffffffp0 i)": +Test "asin_upward (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "asin_upward (-0x4p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000000002p0 i)": +Test "asin_upward (-0x4p-16448)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000001p0 i)": +Test "asin_upward (-0x4p-16496)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.25 + 1.0 i)": +Test "asin_upward (-0x8p-152)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0.25 + 1.0 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.25 - 1.0 i)": +Test "asin_upward (-0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "asin_upward (-0x8p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (-0.25 - 1.0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0.5 + +0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1.fp-129 i)": +Test "asin_upward (-0x8p-972)": double: 1 idouble: 1 -Test "Real part of: cacos (-0.5 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-105 i)": +Test "asin_upward (-0xf.fffffff8p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-105 i)": +Test "asin_upward (-0xf.ffffffffffff8p-4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-112 i)": +Test "asin_upward (-0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-112 i)": +Test "asin_upward (-0xf.fffffffffffp-4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-23 i)": +Test "asin_upward (-0xf.fffffp-4)": double: 1 +float: 1 idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "asin_upward (0x1p+0)": +double: 1 +idouble: 1 +Test "asin_upward (0x2p-16384)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0.5 + 0x1p-63 i)": +Test "asin_upward (0x4p-1024)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 + 0x1p-63 i)": +Test "asin_upward (0x4p-1076)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0.5 + 1.0 i)": +Test "asin_upward (0x4p-128)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0 i)": +Test "asin_upward (0x4p-16384)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1.fp-1025 i)": +Test "asin_upward (0x4p-16448)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1.fp-129 i)": +Test "asin_upward (0x4p-16496)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1.fp-129 i)": +Test "asin_upward (0x8p-152)": double: 1 +float: 1 idouble: 1 -Test "Real part of: cacos (-0.5 - 0x1.fp-16385 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-105 i)": +Test "asin_upward (0x8p-16448)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-105 i)": +Test "asin_upward (0x8p-972)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-112 i)": + +# asinh +Test "asinh (-0xf.ffffffffffff8p+1020)": +double: 1 +Test "asinh (-0xf.fffffp+124)": +ldouble: 1 +Test "asinh (0x1p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-112 i)": -double: 1 -idouble: 1 +Test "asinh (0x1p+100)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-23 i)": +Test "asinh (0xap+0)": +float: 1 +ifloat: 1 +Test "asinh (0xf.ffffffffffff8p+1020)": double: 1 -idouble: 1 +Test "asinh (0xf.fffffp+124)": +ldouble: 1 + +# atan2 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-52 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 0x1p-63 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0.5 - 0x1p-63 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac28p-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0.5 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0.5 - 1.0 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac291p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac291p-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac292p-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac292p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac292p-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (-0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0.0 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac292p-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1d8p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51246640cc2340ca4838p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51246640cc2340ca483cp-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1de0e51248p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.000002p0 + 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852716ffc0f3eeb1ac3p-8, -0x7.57d1ep-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.000002p0 - 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-10 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-10 - 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (-0x1.fp-100 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-100 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-100 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-100 - 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1000 + 1.0 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1000 - 1.0 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852716ffcp-8, -0x7.57d1ep-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-10000 + 1.0 i)": +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1d8p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-10000 - 1.0 i)": +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51246640cc2340ca4838p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 0.5 i)": +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51246640cc2340ca483cp-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51246640cc2340ca4ap-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "atan2 (-0x1.effe81f852716ffep-8, -0x7.57d1de0e51248p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.0 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1d8p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.5 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 0.5 i)": +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "atan2 (-0x1.effe81f852716p-8, -0x7.57d1de0e51248p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.0 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.5 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe81f852717p-8, -0x7.57d1de0e5124664p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 + 0.5 i)": +Test "atan2 (-0x1.effe82p-8, -0x7.57d1d8p-12)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x0.ffffffp0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 + 1.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 + 1.5 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51246640cc2340ca48p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 - 0.5 i)": -float: 1 -ifloat: 1 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51246648p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x0.ffffffp0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1.fp-129 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 - 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "atan2 (-0x1.effe82p-8, -0x7.57d1de0e51248p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-129 - 1.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-129 - 1.5 i)": -double: 1 -idouble: 1 +Test "atan2 (-0x1.effe8p-8, -0x7.57d1de0e51244p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 0.5 i)": +Test "atan2 (-0x1.effe8p-8, -0x7.57d1de0e51248p-12)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "atan2 (-0x2p-16384, -0x4p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "atan2 (-0x4p-16384, -0x2p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "atan2 (-0x4p-16448, -0x8p-16448)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 1.0 i)": +Test "atan2 (-0x8p-16448, -0x4p-16448)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 + 1.5 i)": +Test "atan2 (-0xcp-4, -0x1p+0)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 0.5 i)": +Test "atan2 (-0xf.fffffffffffffffffffffffffff8p+16380, 0xf.fffffffffffffffp+16380)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "atan2 (-0xf.fffffp+124, -0x4p-128)": +float: 1 +ifloat: 1 +Test "atan2 (-0xf.fffffp+124, -0x8p-152)": +float: 1 +ifloat: 1 +Test "atan2 (0x1.000002p+0, 0x1.0000000000001p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "atan2 (0x1.000002p+0, 0x1p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "atan2 (0x1.64p+0, 0xe.ep-4)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 1.0 i)": +Test "atan2 (0x4p-16384, -0x2p-16384)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1.fp-16385 - 1.5 i)": +Test "atan2 (0x6.4p-4, 0x1.301648p-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-30 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-30 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "atan2 (0x6.4p-4, 0x1.30164ap-12)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1.fp-30 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1.fp-30 - 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "atan2 (0x8p-16448, -0x4p-16448)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-105 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-105 + 0.5 i)": +Test "atan2 (0xcp-4, -0x1p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-105 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "atan2 (0xf.fffffffffffffffp+16380, 0xf.fffffffffffffffffffffffffff8p+16380)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-105 + 0x1p-105 i)": +Test "atan2 (0xf.fffffp+124, -0x4p-128)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-105 - 0.0 i)": +Test "atan2 (0xf.fffffp+124, -0x8p-152)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-105 - 0.5 i)": + +# atanh +Test "atanh (-0xcp-4)": float: 1 ifloat: 1 +Test "atanh (0x1.2345p-20)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-105 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "atanh (0x4p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-105 - 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-112 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 + 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-112 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-112 - 0.5 i)": +Test "atanh (0xcp-4)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-112 - 0x1p-112 i)": + +# cacos +Test "Imaginary part of: cacos (+0 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (+0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (+0 + 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 + 0.0 i)": +Test "Imaginary part of: cacos (+0 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-23 + 0.5 i)": +Test "Imaginary part of: cacos (+0 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacos (-0x1p-23 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (+0 - 1.5 i)": double: 1 idouble: 1 -Test "Real part of: cacos (-0x1p-23 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 + 0x1p-23 i)": +Test "Imaginary part of: cacos (-0 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 - 0.0 i)": +Test "Imaginary part of: cacos (-0 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacos (-0x1p-23 - 0x0.ffffffp0 i)": +Test "Imaginary part of: cacos (-0 + 1.5 i)": double: 1 idouble: 1 -Test "Real part of: cacos (-0x1p-23 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-23 - 0x1p-23 i)": +Test "Imaginary part of: cacos (-0 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-52 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-52 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacos (-0 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-52 + 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-52 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-52 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-52 - 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-0x1p-52 - 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-63 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-63 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-63 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0 - 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-63 + 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-63 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacos (-0x1p-63 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-63 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-0x1p-63 - 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-0x1p500 + 1.0 i)": +Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p500 - 1.0 i)": +Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p5000 + 1.0 i)": +Test "Imaginary part of: cacos (-0.0 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-0x1p5000 - 1.0 i)": +Test "Imaginary part of: cacos (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-1.0 + 0x1.fp-10 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (-0.0 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 + 0x1.fp-30 i)": +Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-1.0 + 0x1p50 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (-1.0 + 0x1p500 i)": +Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 + 0x1p5000 i)": +Test "Imaginary part of: cacos (-0.0 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 - 0.5 i)": +Test "Real part of: cacos (-0.25 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacos (-1.0 - 0x1.fp-10 i)": +Test "Imaginary part of: cacos (-0.25 + 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 - 0x1.fp-30 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (-1.0 - 0x1p50 i)": +Test "Real part of: cacos (-0.25 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0.25 - 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (-1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (-1.0 - 0x1p5000 i)": +Test "Real part of: cacos (-0.5 + +0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (-2 - 3 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacos (-0.5 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacos (-0.5 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (-0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0.5 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacos (-0.5 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 + 0x1.0000000000001p0 i)": +Test "Real part of: cacos (-0.5 + 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (-0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (-0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacos (-0.5 + 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacos (-0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.0 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (-0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.25 + 1.0 i)": +Test "Real part of: cacos (-0.5 + 1.0 i)": float: 1 ifloat: 1 +Test "Imaginary part of: cacos (-0.5 + 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.25 - 1.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacos (-0.5 - 0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + +0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-23 i)": +Test "Imaginary part of: cacos (-0.5 - 0x1.fp-129 i)": double: 1 idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-52 i)": -double: 1 -idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + 0x1p-63 i)": +Test "Imaginary part of: cacos (-0.5 - 0x1p-105 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacos (0.5 + 1.0 i)": -double: 1 -idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-105 i)": +Test "Imaginary part of: cacos (-0.5 - 0x1p-112 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-112 i)": +Test "Imaginary part of: cacos (-0.5 - 0x1p-23 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-23 i)": -double: 1 -idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-52 i)": -double: 1 -idouble: 1 +Test "Real part of: cacos (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 0x1p-63 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0.5 - 0x1p-63 i)": +Test "Imaginary part of: cacos (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0.5 - 1.0 i)": +Test "Real part of: cacos (-0.5 - 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0.5 - 1.0 i)": +Test "Imaginary part of: cacos (-0.5 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": +Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +Test "Imaginary part of: cacos (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Imaginary part of: cacos (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: cacos (-0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (-0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 + 0.0 i)": +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 + 0x1.fp-16385 i)": +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 - 0.0 i)": +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 - 0x1.fp-16385 i)": +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Imaginary part of: cacos (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Imaginary part of: cacos (-0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 + 0.0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacos (0x0.ffffffp0 - 0.0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 - 0x1.fp-129 i)": +Test "Imaginary part of: cacos (-0x1.000002p0 - 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.0000000000000002p0 + 0x1p-63 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: cacos (0x1.0000000000000002p0 - 0x1p-63 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: cacos (0x1.0000000000001p0 + 0x1p-52 i)": +Test "Imaginary part of: cacos (-0x1.fp-10 + 1.0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.0000000000001p0 - 0x1p-52 i)": +Test "Imaginary part of: cacos (-0x1.fp-10 - 1.0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.000002p0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.000002p0 + 0x1p-23 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1.000002p0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.000002p0 - 0x1p-23 i)": +Test "Real part of: cacos (-0x1.fp-100 + 1.0 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-10 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0x1.fp-10 - 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0x1.fp-100 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-100 + 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x1.fp-100 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-100 - 1.0 i)": +Test "Real part of: cacos (-0x1.fp-100 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1000 + 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1000 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-10000 + 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-10000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-10000 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-10000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 0.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 + 1.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 0.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-1025 - 1.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-1025 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 + 0.5 i)": +Test "Real part of: cacos (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 + 1.0 i)": +Test "Real part of: cacos (-0x1.fp-129 + 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 + 1.5 i)": +Test "Real part of: cacos (-0x1.fp-129 + 1.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 - 0.5 i)": +Test "Real part of: cacos (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 - 1.0 i)": +Test "Real part of: cacos (-0x1.fp-129 - 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1.fp-129 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-129 - 1.5 i)": +Test "Real part of: cacos (-0x1.fp-129 - 1.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-129 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 0.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 + 1.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 + 1.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 0.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-16385 - 1.5 i)": +Test "Imaginary part of: cacos (-0x1.fp-16385 - 1.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-30 + 1.0 i)": -double: 1 +Test "Real part of: cacos (-0x1.fp-30 + 1.0 i)": float: 1 -idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp-30 - 1.0 i)": +Test "Imaginary part of: cacos (-0x1.fp-30 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacos (0x1.fp127 + 0x1.fp127 i)": +Test "Real part of: cacos (-0x1.fp-30 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1.fp-30 - 1.0 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: cacos (0x1.fp16383 + 0x1.fp16383 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-105 + 0.5 i)": +Test "Real part of: cacos (-0x1p-105 + 0.0 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-105 - 0.5 i)": +Test "Real part of: cacos (-0x1p-105 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-112 + 0.5 i)": +Test "Imaginary part of: cacos (-0x1p-105 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Imaginary part of: cacos (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-112 - 0.5 i)": +Test "Real part of: cacos (-0x1p-105 + 0x1p-105 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-23 + 0.5 i)": +Test "Real part of: cacos (-0x1p-105 - 0.0 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacos (0x1p-23 + 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0x1p-23 + 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-23 - 0.5 i)": +Test "Real part of: cacos (-0x1p-105 - 0.5 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacos (0x1p-23 - 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1p-52 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacos (-0x1p-105 - 0.5 i)": float: 1 ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x1p-52 + 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1p-52 - 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-52 - 0.5 i)": +Test "Real part of: cacos (-0x1p-105 - 0x1p-105 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1p-52 - 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacos (0x1p-63 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (0x1p-63 + 0.5 i)": +Test "Real part of: cacos (-0x1p-112 + 0.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacos (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-112 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (0x1p-63 - 0.5 i)": +Test "Real part of: cacos (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-63 - 0.5 i)": +Test "Imaginary part of: cacos (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-0x1p-23 + 0.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacos (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacos (-0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1p-23 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p500 + 1.0 i)": +Test "Real part of: cacos (-0x1p-23 + 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p500 - 1.0 i)": +Test "Real part of: cacos (-0x1p-23 - 0.0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p5000 + 1.0 i)": +Test "Real part of: cacos (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacos (-0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (-0x1p-23 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (0x1p5000 - 1.0 i)": +Test "Real part of: cacos (-0x1p-23 - 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (1.0 + 0.25 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (1.0 + 0.5 i)": +Test "Real part of: cacos (-0x1p-52 + 0.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (1.0 + 0.5 i)": +Test "Real part of: cacos (-0x1p-52 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (1.0 + 0x1.fp-10 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (1.0 + 0x1.fp-10 i)": +Test "Imaginary part of: cacos (-0x1p-52 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacos (1.0 + 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacos (1.0 + 0x1.fp-30 i)": +Test "Real part of: cacos (-0x1p-52 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 + 0x1p500 i)": +Test "Real part of: cacos (-0x1p-52 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 + 0x1p5000 i)": +Test "Imaginary part of: cacos (-0x1p-63 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (1.0 - 0.25 i)": -double: 1 -idouble: 1 -Test "Real part of: cacos (1.0 - 0.5 i)": +Test "Real part of: cacos (-0x1p-63 + 0x1p-63 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacos (1.0 - 0.5 i)": +Test "Real part of: cacos (-0x1p-63 - 0.0 i)": float: 1 ifloat: 1 -Test "Real part of: cacos (1.0 - 0x1.fp-10 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacos (1.0 - 0x1.fp-10 i)": +Test "Real part of: cacos (-0x1p-63 - 0.5 i)": float: 1 ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacos (1.0 - 0x1.fp-100 i)": +Test "Imaginary part of: cacos (-0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 - 0x1.fp-30 i)": +Test "Real part of: cacos (-0x1p-63 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacos (-0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 - 0x1p500 i)": +Test "Imaginary part of: cacos (-0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacos (1.0 - 0x1p5000 i)": +Test "Imaginary part of: cacos (-0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 - -# cacosh -Test "Real part of: cacosh (+0 + 0.5 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (-0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (+0 + 1.0 i)": -double: 1 +Test "Imaginary part of: cacos (-1.0 + 0.5 i)": float: 1 -idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (+0 + 1.5 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (+0 - 0.5 i)": +Test "Imaginary part of: cacos (-1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (+0 - 1.0 i)": -double: 1 +Test "Imaginary part of: cacos (-1.0 + 0x1.fp-30 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-1.0 + 0x1p50 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Imaginary part of: cacos (-1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (+0 - 1.5 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacos (-1.0 + 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0 + 0.5 i)": +Test "Imaginary part of: cacos (-1.0 - 0.5 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0 + 1.0 i)": -double: 1 +Test "Imaginary part of: cacos (-1.0 - 0x1.fp-10 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0 + 1.5 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacos (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0 - 0.5 i)": +Test "Real part of: cacos (-1.0 - 0x1p50 i)": float: 1 ifloat: 1 +Test "Imaginary part of: cacos (-1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0 - 1.0 i)": -double: 1 +Test "Imaginary part of: cacos (-1.0 - 0x1p5000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (-2 - 3 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0 - 1.5 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacos (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.0 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.0 + 0x1.0000000000000000000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.0 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (0.0 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.0 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (0.0 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (0.0 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0.0 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.0 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (0.0 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.0 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (0.0 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.25 + 1.0 i)": +Test "Imaginary part of: cacos (0.25 + 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.25 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: cacosh (-0.25 - 1.0 i)": +Test "Imaginary part of: cacos (0.25 - 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.25 - 1.0 i)": +Test "Real part of: cacos (0.5 + +0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0.5 + +0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1.fp-129 i)": +Test "Real part of: cacos (0.5 + 0x1.fp-1025 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-129 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-105 i)": +Test "Real part of: cacos (0.5 + 0x1.fp-129 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-105 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-112 i)": +Test "Imaginary part of: cacos (0.5 + 0x1.fp-129 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-112 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-23 i)": +Test "Real part of: cacos (0.5 + 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-105 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-52 i)": +Test "Real part of: cacos (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 + 0x1p-63 i)": +Test "Imaginary part of: cacos (0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 0x1p-63 i)": +Test "Real part of: cacos (0.5 + 0x1p-52 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 + 1.0 i)": +Test "Real part of: cacos (0.5 + 0x1p-63 i)": double: 1 idouble: 1 +Test "Imaginary part of: cacos (0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 + 1.0 i)": +Test "Real part of: cacos (0.5 + 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0.5 - 0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1.fp-129 i)": +Test "Imaginary part of: cacos (0.5 + 1.0 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-105 i)": +Test "Real part of: cacos (0.5 - 0 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-105 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-112 i)": +Test "Real part of: cacos (0.5 - 0x1.fp-1025 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-112 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-23 i)": +Test "Real part of: cacos (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-105 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-52 i)": +Test "Real part of: cacos (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 - 0x1p-63 i)": +Test "Imaginary part of: cacos (0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 0x1p-63 i)": +Test "Real part of: cacos (0.5 - 0x1p-52 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0.5 - 1.0 i)": +Test "Real part of: cacos (0.5 - 0x1p-63 i)": double: 1 idouble: 1 +Test "Imaginary part of: cacos (0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0.5 - 1.0 i)": +Test "Real part of: cacos (0.5 - 1.0 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "Imaginary part of: cacos (0.5 - 1.0 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Imaginary part of: cacos (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacosh (-0x0.ffffffp0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0.0 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "Imaginary part of: cacos (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Real part of: cacos (0x0.ffffffffffffffffffffffffffff8p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.000002p0 + 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.000002p0 - 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-10 + 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (-0x1.fp-10 - 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (-0x1.fp-100 + 1.0 i)": -double: 1 +Test "Real part of: cacos (0x0.ffffffp0 + 0.0 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-100 + 1.0 i)": +Test "Real part of: cacos (0x0.ffffffp0 + 0x1.fp-129 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-100 - 1.0 i)": -double: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: cacos (0x0.ffffffp0 - 0.0 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-100 - 1.0 i)": +Test "Real part of: cacos (0x0.ffffffp0 - 0x1.fp-129 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-1000 + 1.0 i)": -double: 1 -idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1000 - 1.0 i)": -double: 1 -idouble: 1 +Test "Real part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-10000 + 1.0 i)": +Test "Imaginary part of: cacos (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-10000 - 1.0 i)": +Test "Real part of: cacos (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 0.5 i)": +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 1.0 i)": +Test "Real part of: cacos (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x1.0000000000000002p0 + 0x1p-63 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: cacos (0x1.0000000000000002p0 - 0x1p-63 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: cacos (0x1.0000000000001p0 + 0x1p-52 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 + 1.5 i)": +Test "Real part of: cacos (0x1.0000000000001p0 - 0x1p-52 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 0.5 i)": +Test "Real part of: cacos (0x1.000002p0 + 0x1p-23 i)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "Real part of: cacos (0x1.000002p0 - 0x1p-23 i)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 1.0 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacos (0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-1025 - 1.5 i)": +Test "Imaginary part of: cacos (0x1.fp-10 + 1.0 i)": double: 1 idouble: 1 +Test "Imaginary part of: cacos (0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x1.fp-100 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-129 + 0.5 i)": +Test "Imaginary part of: cacos (0x1.fp-100 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x0.ffffffp0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1p-23 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 + 1.0 i)": +Test "Real part of: cacos (0x1.fp-100 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 + 1.5 i)": +Test "Imaginary part of: cacos (0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 - 0.5 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacos (0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x0.ffffffp0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.000002p0 i)": +Test "Imaginary part of: cacos (0x1.fp-10000 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-10000 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 + 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1.fp-129 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-129 - 1.5 i)": +Test "Imaginary part of: cacos (0x1.fp-129 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 0.5 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 1.0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 + 1.5 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 + 1.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 0.5 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 1.0 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-16385 - 1.5 i)": +Test "Imaginary part of: cacos (0x1.fp-16385 - 1.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1.fp-30 + 1.0 i)": +Test "Imaginary part of: cacos (0x1.fp-30 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-30 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1.fp-30 - 1.0 i)": +Test "Imaginary part of: cacos (0x1.fp-30 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1.fp-30 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-105 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-105 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-105 + 0.5 i)": +Test "Imaginary part of: cacos (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacos (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 +Test "Real part of: cacos (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-105 + 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-105 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-105 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-105 - 0.5 i)": +Test "Imaginary part of: cacos (0x1p-105 - 0.5 i)": float: 1 ifloat: 1 +Test "Real part of: cacos (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: cacos (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-105 - 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-112 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 + 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-112 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-112 - 0x1p-112 i)": +Test "Imaginary part of: cacos (0x1p-112 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacos (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacos (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacos (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 + 0.0 i)": +Test "Imaginary part of: cacos (0x1p-23 + 0.5 i)": float: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacos (0x1p-23 + 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (0x1p-23 + 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-23 + 0.5 i)": +Test "Imaginary part of: cacos (0x1p-23 - 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: cacosh (-0x1p-23 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-23 + 0x0.ffffffp0 i)": +Test "Imaginary part of: cacos (0x1p-23 - 0x0.ffffffp0 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 + 0x1.fp-129 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacos (0x1p-23 - 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 + 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacos (0x1p-52 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 - 0.0 i)": +Test "Imaginary part of: cacos (0x1p-52 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacosh (-0x1p-23 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-23 - 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacos (0x1p-52 + 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-23 - 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacos (0x1p-52 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-52 + 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacos (0x1p-52 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-52 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-52 + 0x1p-52 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-52 - 0.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p-52 - 0.5 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacos (0x1p-52 - 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-52 - 0.5 i)": +Test "Real part of: cacos (0x1p-63 + 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-63 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-52 - 0x1p-52 i)": +Test "Imaginary part of: cacos (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-63 + 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (0x1p-63 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-63 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 + 0.0 i)": +Test "Imaginary part of: cacos (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p-63 - 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p500 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p500 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p5000 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (0x1p5000 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (1.0 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-63 + 0.5 i)": +Test "Imaginary part of: cacos (1.0 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 + 0.5 i)": +Test "Real part of: cacos (1.0 + 0x1.fp-10 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacos (1.0 + 0x1.fp-100 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-63 + 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 - 0.0 i)": +Test "Imaginary part of: cacos (1.0 + 0x1.fp-30 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (1.0 + 0x1p500 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacos (1.0 + 0x1p5000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacos (1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacos (1.0 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-63 - 0.5 i)": +Test "Imaginary part of: cacos (1.0 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (-0x1p-63 - 0.5 i)": +Test "Real part of: cacos (1.0 - 0x1.fp-10 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacos (1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-0x1p-63 - 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (-0x1p500 + 1.0 i)": +Test "Real part of: cacos (1.0 - 0x1.fp-100 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p500 - 1.0 i)": +Test "Imaginary part of: cacos (1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p5000 + 1.0 i)": +Test "Imaginary part of: cacos (1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-0x1p5000 - 1.0 i)": +Test "Imaginary part of: cacos (1.0 - 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 + 0.5 i)": + +# cacosh +Test "Real part of: cacosh (+0 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-1.0 + 0x1.fp-10 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (+0 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 + 0x1.fp-30 i)": +Test "Real part of: cacosh (+0 + 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-1.0 + 0x1p50 i)": +Test "Real part of: cacosh (+0 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 + 0x1p5000 i)": +Test "Real part of: cacosh (+0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 - 0.5 i)": +Test "Real part of: cacosh (+0 - 1.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-1.0 - 0x1.fp-10 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (-1.0 - 0x1.fp-30 i)": +Test "Real part of: cacosh (-0 + 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-1.0 - 0x1p50 i)": +Test "Real part of: cacosh (-0 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (-1.0 - 0x1p500 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (-1.0 - 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (-2 - 3 i)": +Test "Real part of: cacosh (-0 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (-0 - 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 + 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (-0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 + 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (-0.0 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (-0.0 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (-0.0 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-0.0 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.0 - 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (-0.0 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.25 + 1.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (-0.0 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.25 - 1.0 i)": +Test "Real part of: cacosh (-0.25 + 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + +0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-105 i)": +Test "Imaginary part of: cacosh (-0.25 + 1.0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 +Test "Real part of: cacosh (-0.25 - 1.0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-112 i)": +Test "Imaginary part of: cacosh (-0.25 - 1.0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0.5 + +0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-23 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-52 i)": +Test "Real part of: cacosh (-0.5 + 0x1.fp-129 i)": double: 1 idouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.5 + 0x1p-63 i)": +Test "Imaginary part of: cacosh (-0.5 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 0x1p-63 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 + 1.0 i)": +Test "Real part of: cacosh (-0.5 + 0x1p-105 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (0.5 - 0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1.fp-129 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-105 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-105 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-112 i)": +Test "Real part of: cacosh (-0.5 + 0x1p-112 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-112 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-23 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-52 i)": +Test "Real part of: cacosh (-0.5 + 0x1p-23 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0.5 - 0x1p-63 i)": +Test "Imaginary part of: cacosh (-0.5 + 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 0x1p-63 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0.5 - 1.0 i)": +Test "Real part of: cacosh (-0.5 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0.5 + 0x1p-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (-0.5 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0.5 - 1.0 i)": +Test "Imaginary part of: cacosh (-0.5 + 1.0 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": +Test "Imaginary part of: cacosh (-0.5 - 0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Real part of: cacosh (-0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +Test "Imaginary part of: cacosh (-0.5 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +Test "Real part of: cacosh (-0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: cacosh (-0.5 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 + 0.0 i)": +Test "Real part of: cacosh (-0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 + 0x1.fp-16385 i)": +Test "Imaginary part of: cacosh (-0.5 - 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 - 0.0 i)": +Test "Real part of: cacosh (-0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 - 0x1.fp-16385 i)": +Test "Imaginary part of: cacosh (-0.5 - 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Real part of: cacosh (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Imaginary part of: cacosh (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (-0.5 - 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1.fp-129 i)": +Test "Imaginary part of: cacosh (-0.5 - 1.0 i)": float: 1 ifloat: 1 +Test "Real part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": -float: 2 -ifloat: 2 +Test "Real part of: cacosh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": +Test "Real part of: cacosh (-0x0.ffffffp0 + 0x1p-23 i)": float: 2 ifloat: 2 -Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": +Test "Real part of: cacosh (-0x0.ffffffp0 - 0x1p-23 i)": float: 2 ifloat: 2 +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.0000000000000002p0 + 0x1p-63 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacosh (0x1.0000000000000002p0 - 0x1p-63 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cacosh (0x1.0000000000001p0 + 0x1p-52 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.0000000000001p0 - 0x1p-52 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.000002p0 + 0x1p-23 i)": +Test "Real part of: cacosh (-0x1.000002p0 + 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.000002p0 + 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.000002p0 - 0x1p-23 i)": +Test "Real part of: cacosh (-0x1.000002p0 - 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.000002p0 - 0x1p-23 i)": -float: 2 -ifloat: 2 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.fp-10 + 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-10 + 1.0 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp-10 - 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-10 - 1.0 i)": double: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp-100 + 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.fp-100 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.fp-100 - 1.0 i)": +Test "Imaginary part of: cacosh (-0x1.fp-100 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1.fp-100 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1000 + 1.0 i)": +Test "Imaginary part of: cacosh (-0x1.fp-100 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1000 - 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-10000 + 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-10000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-10000 - 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-10000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 0.5 i)": +Test "Real part of: cacosh (-0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (-0x1.fp-1025 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 + 1.5 i)": +Test "Real part of: cacosh (-0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 0.5 i)": +Test "Real part of: cacosh (-0x1.fp-1025 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (-0x1.fp-1025 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-1025 - 1.5 i)": +Test "Real part of: cacosh (-0x1.fp-1025 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 + 0.5 i)": +Test "Real part of: cacosh (-0x1.fp-129 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 + 1.0 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 + 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 + 1.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 + 1.5 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 - 1.0 i)": -double: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 0.5 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-129 - 1.5 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x0.ffffffp0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1.fp-129 - 0x1p-23 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-129 - 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacosh (-0x1.fp-129 - 1.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-16385 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 + 1.5 i)": +Test "Real part of: cacosh (-0x1.fp-16385 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 0.5 i)": +Test "Real part of: cacosh (-0x1.fp-16385 + 1.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-16385 - 1.5 i)": +Test "Real part of: cacosh (-0x1.fp-16385 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-30 + 1.0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-16385 - 1.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp-30 - 1.0 i)": +Test "Real part of: cacosh (-0x1.fp-30 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (0x1.fp127 + 0x1.fp127 i)": +Test "Imaginary part of: cacosh (-0x1.fp-30 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1.fp-30 - 1.0 i)": double: 1 +float: 1 idouble: 1 -Test "Real part of: cacosh (0x1.fp16383 + 0x1.fp16383 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-105 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1.fp-30 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-105 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-105 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-105 + 0x1p-105 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-105 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-112 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-105 - 0x1p-105 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1p-112 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-112 + 0.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Real part of: cacosh (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-112 - 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacosh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-23 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (-0x1p-23 + 0.0 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: cacosh (0x1p-23 + 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: cacosh (0x1p-23 + 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-23 - 0.5 i)": +Test "Real part of: cacosh (-0x1p-23 + 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: cacosh (0x1p-23 - 0x0.ffffffp0 i)": +Test "Imaginary part of: cacosh (-0x1p-23 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-23 + 0x0.ffffffp0 i)": double: 1 idouble: 1 -Test "Imaginary part of: cacosh (0x1p-23 - 0x1.000002p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-23 + 0x1.fp-129 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-23 + 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-52 + 0x0.fffffffffffff8p0 i)": +Test "Imaginary part of: cacosh (-0x1p-23 - 0.0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-52 - 0.5 i)": +Test "Real part of: cacosh (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (-0x1p-23 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (-0x1p-23 - 0x1.fp-129 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-52 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-23 - 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (0x1p-52 - 0x0.fffffffffffff8p0 i)": +Test "Imaginary part of: cacosh (-0x1p-52 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 + 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 + 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-52 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-63 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacosh (-0x1p-52 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-52 - 0x1p-52 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 + 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-0x1p-63 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 - 0.5 i)": +Test "Imaginary part of: cacosh (-0x1p-63 + 0x1p-63 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (0x1p-63 - 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacosh (-0x1p-63 - 0.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (-0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (-0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p500 + 1.0 i)": +Test "Imaginary part of: cacosh (-0x1p-63 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (-0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p500 - 1.0 i)": +Test "Real part of: cacosh (-0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p5000 + 1.0 i)": +Test "Real part of: cacosh (-0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (0x1p5000 - 1.0 i)": +Test "Real part of: cacosh (-0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cacosh (1.0 + 0.25 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (1.0 + 0.5 i)": +Test "Real part of: cacosh (-1.0 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: cacosh (1.0 + 0.5 i)": +Test "Real part of: cacosh (-1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 -Test "Real part of: cacosh (1.0 + 0x1.fp-10 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (1.0 + 0x1.fp-10 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacosh (1.0 + 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (1.0 + 0x1.fp-30 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (1.0 + 0x1p500 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (1.0 + 0x1p5000 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (1.0 - 0.25 i)": -double: 1 -idouble: 1 -Test "Real part of: cacosh (1.0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cacosh (1.0 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Real part of: cacosh (1.0 - 0x1.fp-10 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: cacosh (1.0 - 0x1.fp-10 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: cacosh (1.0 - 0x1.fp-100 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cacosh (1.0 - 0x1p500 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: cacosh (1.0 - 0x1p5000 i)": -ildouble: 1 -ldouble: 1 - -# casin -Test "Imaginary part of: casin (+0 + 0.5 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (+0 + 1.0 i)": -double: 1 +Test "Imaginary part of: cacosh (-1.0 + 0x1p50 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Real part of: cacosh (-1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (+0 + 1.5 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (-1.0 + 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (+0 - 0.5 i)": +Test "Real part of: cacosh (-1.0 - 0.5 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (+0 - 1.0 i)": -double: 1 +Test "Real part of: cacosh (-1.0 - 0x1.fp-10 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (+0 - 1.5 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0 + 0.5 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0 + 1.0 i)": -double: 1 +Test "Imaginary part of: cacosh (-1.0 - 0x1p50 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Real part of: cacosh (-1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0 + 1.5 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0 - 0.5 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (-1.0 - 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0 - 1.0 i)": -double: 1 +Test "Imaginary part of: cacosh (-2 - 3 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0 - 1.5 i)": -double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 + 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0.0 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 + 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (0.0 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (0.0 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0.0 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0.0 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.0 - 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (0.0 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.25 + 1.0 i)": +Test "Real part of: cacosh (0.25 + 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.25 - 1.0 i)": +Test "Real part of: cacosh (0.25 - 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1.fp-129 i)": +Test "Imaginary part of: cacosh (0.5 + +0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-105 i)": +Test "Imaginary part of: cacosh (0.5 + 0x1.fp-1025 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0.5 + 0x1p-112 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-112 i)": +Test "Real part of: cacosh (0.5 + 0x1.fp-129 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0.5 + 0x1p-23 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-23 i)": +Test "Imaginary part of: cacosh (0.5 + 0x1.fp-129 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 0x1p-63 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0.5 + 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0.5 + 1.0 i)": +Test "Real part of: cacosh (0.5 + 0x1p-105 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1.fp-129 i)": +Test "Imaginary part of: cacosh (0.5 + 0x1p-105 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-105 i)": +Test "Real part of: cacosh (0.5 + 0x1p-112 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0.5 - 0x1p-112 i)": +Test "Imaginary part of: cacosh (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 0x1p-23 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-112 i)": +Test "Imaginary part of: cacosh (0.5 + 0x1p-52 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0.5 - 0x1p-23 i)": +Test "Real part of: cacosh (0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-23 i)": +Test "Imaginary part of: cacosh (0.5 + 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 0x1p-63 i)": +Test "Imaginary part of: cacosh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0.5 - 0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0.5 - 1.0 i)": +Test "Imaginary part of: cacosh (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0.5 - 1.0 i)": +Test "Imaginary part of: cacosh (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 0x1p-23 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.fffffffffffff8p0 + 0.0 i)": +Test "Imaginary part of: cacosh (0.5 - 0x1p-52 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +Test "Real part of: cacosh (0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "Imaginary part of: cacosh (0.5 - 0x1p-63 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0.5 - 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x0.fffffffffffff8p0 - 0.0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 - 0x1p-52 i)": +Test "Imaginary part of: cacosh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Real part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Real part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-112 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-112 i)": +Test "Real part of: cacosh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffp0 + 0.0 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffp0 - 0.0 i)": +Test "Imaginary part of: cacosh (0x0.ffffffffffffffffffffffffffff8p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": +Test "Real part of: cacosh (0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Real part of: cacosh (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0.0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1.fp-129 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (0x0.ffffffp0 + 0x1p-23 i)": float: 2 ifloat: 2 -Test "Real part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (0x0.ffffffp0 - 0x1p-23 i)": float: 2 ifloat: 2 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "Imaginary part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.000002p0 + 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.000002p0 - 0x1p-23 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-10 + 1.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: cacosh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-10 + 1.0 i)": +Test "Imaginary part of: cacosh (0x1.0000000000000002p0 + 0x1p-63 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (0x1.0000000000000002p0 - 0x1p-63 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cacosh (0x1.0000000000001p0 + 0x1p-52 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x1.fp-10 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1.0000000000001p0 - 0x1p-52 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.000002p0 + 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-10 - 1.0 i)": +Test "Imaginary part of: cacosh (0x1.000002p0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1.000002p0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.fp-10 + 1.0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (-0x1.fp-100 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-100 - 1.0 i)": +Test "Imaginary part of: cacosh (0x1.fp-100 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1000 + 1.0 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: cacosh (0x1.fp-100 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1000 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-10000 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-1000 - 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-10000 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp-10000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 0.5 i)": +Test "Real part of: cacosh (0x1.fp-10000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": +Test "Real part of: cacosh (0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (0x1.fp-1025 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 + 1.5 i)": +Test "Real part of: cacosh (0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casin (-0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": +Test "Real part of: cacosh (0x1.fp-1025 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (0x1.fp-1025 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-1025 - 1.5 i)": +Test "Real part of: cacosh (0x1.fp-1025 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 + 0.5 i)": +Test "Real part of: cacosh (0x1.fp-129 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-129 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 + 1.5 i)": +Test "Real part of: cacosh (0x1.fp-129 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 - 0.5 i)": +Test "Real part of: cacosh (0x1.fp-129 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp-129 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-129 - 1.5 i)": +Test "Real part of: cacosh (0x1.fp-129 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 + 1.5 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 0.5 i)": +Test "Real part of: cacosh (0x1.fp-16385 + 1.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-16385 - 1.5 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-30 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-16385 - 1.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-30 + 1.0 i)": +Test "Real part of: cacosh (0x1.fp-30 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1.fp-30 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (-0x1.fp-30 - 1.0 i)": +Test "Real part of: cacosh (0x1.fp-30 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-105 + 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (0x1.fp16383 + 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-105 - 0.5 i)": +Test "Real part of: cacosh (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: cacosh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-112 + 0.5 i)": +Test "Imaginary part of: cacosh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-105 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-112 - 0.5 i)": +Test "Real part of: cacosh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-112 + 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: casin (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: cacosh (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0x1p-112 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: cacosh (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-23 + 0.5 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casin (-0x1p-23 + 0.5 i)": +Test "Real part of: cacosh (0x1p-23 + 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (-0x1p-23 + 0x0.ffffffp0 i)": -double: 1 -idouble: 1 -Test "Real part of: casin (-0x1p-23 + 0x1.000002p0 i)": +Test "Real part of: cacosh (0x1p-23 + 0x0.ffffffp0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 +Test "Imaginary part of: cacosh (0x1p-23 + 0x1.000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-23 - 0.5 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casin (-0x1p-23 - 0.5 i)": +Test "Real part of: cacosh (0x1p-23 - 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (-0x1p-23 - 0x0.ffffffp0 i)": +Test "Real part of: cacosh (0x1p-23 - 0x0.ffffffp0 i)": double: 1 idouble: 1 -Test "Real part of: casin (-0x1p-23 - 0x1.000002p0 i)": -double: 1 +Test "Imaginary part of: cacosh (0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-52 + 0.5 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacosh (0x1p-52 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-52 + 0.5 i)": +Test "Imaginary part of: cacosh (0x1p-52 + 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-52 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-52 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: cacosh (0x1p-52 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-52 - 0.5 i)": +Test "Imaginary part of: cacosh (0x1p-52 - 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-52 - 0.5 i)": +Test "Real part of: cacosh (0x1p-63 + 0.5 i)": float: 1 ifloat: 1 +Test "Imaginary part of: cacosh (0x1p-63 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-52 - 0x1.0000000000001p0 i)": +Test "Real part of: cacosh (0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-63 + 0.5 i)": +Test "Real part of: cacosh (0x1p-63 + 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cacosh (0x1p-63 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: cacosh (0x1p-63 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-63 - 0.5 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casin (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: cacosh (0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Real part of: cacosh (0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p500 + 1.0 i)": +Test "Real part of: cacosh (0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p500 - 1.0 i)": +Test "Imaginary part of: cacosh (1.0 + 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cacosh (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Real part of: cacosh (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p5000 + 1.0 i)": +Test "Imaginary part of: cacosh (1.0 + 0x1.fp-10 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (1.0 + 0x1.fp-100 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-0x1p5000 - 1.0 i)": +Test "Real part of: cacosh (1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 + 0.25 i)": -double: 1 -idouble: 1 +Test "Real part of: cacosh (1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 + 0.5 i)": +Test "Real part of: cacosh (1.0 + 0x1p5000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cacosh (1.0 - 0.25 i)": +double: 1 +idouble: 1 +Test "Real part of: cacosh (1.0 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-1.0 + 0.5 i)": +Test "Imaginary part of: cacosh (1.0 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-1.0 + 0x1.fp-10 i)": +Test "Real part of: cacosh (1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 + 0x1.fp-129 i)": +Test "Imaginary part of: cacosh (1.0 - 0x1.fp-10 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: cacosh (1.0 - 0x1.fp-100 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 + 0x1.fp-30 i)": +Test "Real part of: cacosh (1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 + 0x1p500 i)": +Test "Real part of: cacosh (1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 + 0x1p5000 i)": +Test "Real part of: cacosh (1.0 - 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 - 0.25 i)": + +# casin +Test "Imaginary part of: casin (+0 + 0.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (+0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (+0 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 - 0.5 i)": +Test "Imaginary part of: casin (+0 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (-1.0 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (+0 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: casin (-1.0 - 0x1.fp-10 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (+0 - 1.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (-1.0 - 0x1.fp-129 i)": +Test "Imaginary part of: casin (-0 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 - 0x1.fp-30 i)": +Test "Imaginary part of: casin (-0 + 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 - 0x1p500 i)": +Test "Imaginary part of: casin (-0 - 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (-1.0 - 0x1p5000 i)": +Test "Imaginary part of: casin (-0 - 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (-0 - 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (-0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (-0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (-0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: casin (-0.0 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (-0.0 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (-0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (-0.0 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (-0.0 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.0 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: casin (-0.0 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.25 + 1.0 i)": +Test "Imaginary part of: casin (-0.0 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (-0.25 + 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.25 - 1.0 i)": +Test "Imaginary part of: casin (-0.25 - 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1.fp-129 i)": +Test "Imaginary part of: casin (-0.5 + 0x1.fp-129 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-105 i)": +Test "Imaginary part of: casin (-0.5 + 0x1p-105 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 + 0x1p-112 i)": +Test "Real part of: casin (-0.5 + 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-112 i)": +Test "Imaginary part of: casin (-0.5 + 0x1p-112 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 + 0x1p-23 i)": +Test "Real part of: casin (-0.5 + 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-23 i)": +Test "Imaginary part of: casin (-0.5 + 0x1p-23 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 + 0x1p-63 i)": +Test "Imaginary part of: casin (-0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 + 1.0 i)": +Test "Real part of: casin (-0.5 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 + 1.0 i)": +Test "Imaginary part of: casin (-0.5 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1.fp-129 i)": +Test "Imaginary part of: casin (-0.5 - 0x1.fp-129 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-105 i)": +Test "Imaginary part of: casin (-0.5 - 0x1p-105 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 - 0x1p-112 i)": +Test "Real part of: casin (-0.5 - 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-112 i)": +Test "Imaginary part of: casin (-0.5 - 0x1p-112 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 - 0x1p-23 i)": +Test "Real part of: casin (-0.5 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-23 i)": +Test "Imaginary part of: casin (-0.5 - 0x1p-23 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 - 0x1p-63 i)": +Test "Imaginary part of: casin (-0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.5 - 1.0 i)": +Test "Real part of: casin (-0.5 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0.5 - 1.0 i)": +Test "Imaginary part of: casin (-0.5 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0.75 + 1.25 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Real part of: casin (0x0.fffffffffffff8p0 + 0.0 i)": +Test "Real part of: casin (-0x0.fffffffffffff8p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +Test "Real part of: casin (-0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.fffffffffffff8p0 + 0x1p-52 i)": +Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x0.fffffffffffff8p0 - 0.0 i)": +Test "Real part of: casin (-0x0.fffffffffffff8p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +Test "Real part of: casin (-0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.fffffffffffff8p0 - 0x1p-52 i)": +Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Imaginary part of: casin (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: casin (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-112 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-112 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffp0 + 0.0 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffp0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffp0 - 0.0 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffp0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": +Test "Real part of: casin (-0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +Test "Real part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +Test "Imaginary part of: casin (-0x0.ffffffp0 + 0x1p-23 i)": float: 2 ifloat: 2 -Test "Real part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +Test "Real part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +Test "Imaginary part of: casin (-0x0.ffffffp0 - 0x1p-23 i)": float: 2 ifloat: 2 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0.0 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Imaginary part of: casin (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.000002p0 + 0x1p-23 i)": +Test "Imaginary part of: casin (-0x1.000002p0 + 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.000002p0 - 0x1p-23 i)": +Test "Imaginary part of: casin (-0x1.000002p0 - 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-10 + 1.0 i)": +Test "Real part of: casin (-0x1.fp-10 + 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-10 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-10 + 1.0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1.fp-10 - 1.0 i)": +Test "Real part of: casin (-0x1.fp-10 - 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-10 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-10 - 1.0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casin (0x1.fp-100 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-100 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1000 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1000 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-10000 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-10000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-10000 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-10000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": +Test "Real part of: casin (-0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 0x1.0000000000001p0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 + 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": +Test "Real part of: casin (-0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 0x1.0000000000001p0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-1025 - 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-1025 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 + 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-129 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-129 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 + 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-129 + 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 - 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-129 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-129 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-129 - 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-129 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 + 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 + 1.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 0.5 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-16385 - 1.5 i)": +Test "Imaginary part of: casin (-0x1.fp-16385 - 1.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-30 + 1.0 i)": +Test "Real part of: casin (-0x1.fp-30 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-30 + 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-30 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1.fp-30 - 1.0 i)": +Test "Real part of: casin (-0x1.fp-30 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp-30 - 1.0 i)": +Test "Imaginary part of: casin (-0x1.fp-30 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0x1.fp127 + 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casin (0x1.fp16383 + 0x1.fp16383 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casin (0x1p-105 + 0.5 i)": +Test "Imaginary part of: casin (-0x1p-105 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-105 - 0.5 i)": +Test "Imaginary part of: casin (-0x1p-105 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-112 + 0.5 i)": +Test "Imaginary part of: casin (-0x1p-112 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-112 - 0.5 i)": +Test "Imaginary part of: casin (-0x1p-112 - 0.5 i)": float: 1 ifloat: 1 -Test "Real part of: casin (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: casin (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: casin (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-23 + 0.5 i)": +Test "Real part of: casin (-0x1p-23 + 0.5 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (0x1p-23 + 0.5 i)": +Test "Imaginary part of: casin (-0x1p-23 + 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (0x1p-23 + 0x0.ffffffp0 i)": +Test "Imaginary part of: casin (-0x1p-23 + 0x0.ffffffp0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1p-23 + 0x1.000002p0 i)": +Test "Real part of: casin (-0x1p-23 + 0x1.000002p0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-23 - 0.5 i)": +Test "Real part of: casin (-0x1p-23 - 0.5 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (0x1p-23 - 0.5 i)": +Test "Imaginary part of: casin (-0x1p-23 - 0.5 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casin (0x1p-23 - 0x0.ffffffp0 i)": +Test "Imaginary part of: casin (-0x1p-23 - 0x0.ffffffp0 i)": double: 1 idouble: 1 -Test "Real part of: casin (0x1p-23 - 0x1.000002p0 i)": +Test "Real part of: casin (-0x1p-23 - 0x1.000002p0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-52 + 0.5 i)": +Test "Real part of: casin (-0x1p-52 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-52 + 0.5 i)": +Test "Imaginary part of: casin (-0x1p-52 + 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-52 + 0x1.0000000000001p0 i)": +Test "Real part of: casin (-0x1p-52 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-52 - 0.5 i)": +Test "Real part of: casin (-0x1p-52 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-52 - 0.5 i)": +Test "Imaginary part of: casin (-0x1p-52 - 0.5 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-52 - 0x1.0000000000001p0 i)": +Test "Real part of: casin (-0x1p-52 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-63 + 0.5 i)": +Test "Imaginary part of: casin (-0x1p-63 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Real part of: casin (-0x1p-63 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-63 + 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (-0x1p-63 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-63 - 0.5 i)": +Test "Imaginary part of: casin (-0x1p-63 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Real part of: casin (-0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p-63 - 0x1.0000000000000002p0 i)": +Test "Imaginary part of: casin (-0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p500 + 1.0 i)": +Test "Imaginary part of: casin (-0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p500 - 1.0 i)": +Test "Imaginary part of: casin (-0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p5000 + 1.0 i)": +Test "Imaginary part of: casin (-0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (0x1p5000 - 1.0 i)": +Test "Imaginary part of: casin (-0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 + 0.25 i)": +Test "Real part of: casin (-1.0 + 0.25 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 + 0.5 i)": +Test "Real part of: casin (-1.0 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (1.0 + 0.5 i)": +Test "Imaginary part of: casin (-1.0 + 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (1.0 + 0x1.fp-10 i)": +Test "Imaginary part of: casin (-1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 + 0x1.fp-129 i)": +Test "Real part of: casin (-1.0 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 + 0x1.fp-30 i)": +Test "Imaginary part of: casin (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 + 0x1p500 i)": +Test "Imaginary part of: casin (-1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 + 0x1p5000 i)": +Test "Imaginary part of: casin (-1.0 + 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 - 0.25 i)": +Test "Real part of: casin (-1.0 - 0.25 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 - 0.5 i)": +Test "Real part of: casin (-1.0 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (1.0 - 0.5 i)": +Test "Imaginary part of: casin (-1.0 - 0.5 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casin (1.0 - 0x1.fp-10 i)": +Test "Imaginary part of: casin (-1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casin (1.0 - 0x1.fp-129 i)": +Test "Real part of: casin (-1.0 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 - 0x1.fp-30 i)": +Test "Imaginary part of: casin (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 - 0x1p500 i)": +Test "Imaginary part of: casin (-1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casin (1.0 - 0x1p5000 i)": +Test "Imaginary part of: casin (-1.0 - 0x1p5000 i)": ildouble: 1 ldouble: 1 - -# casinh -Test "Imaginary part of: casinh (-0.0 + 0x0.fffffffffffff8p0 i)": +Test "Imaginary part of: casin (0.0 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.0 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.0 - 0x0.fffffffffffff8p0 i)": +Test "Imaginary part of: casin (0.0 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (0.0 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (0.0 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.25 + 1.0 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: casin (0.0 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.25 - 1.0 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: casin (0.0 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 + +0 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: casin (0.0 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 + 0x1.fp-1025 i)": +Test "Imaginary part of: casin (0.0 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 + 0x1.fp-129 i)": +Test "Imaginary part of: casin (0.25 + 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 + 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0.5 + 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 + 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 + 0x1p-23 i)": +Test "Imaginary part of: casin (0.25 - 1.0 i)": float: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casinh (-0.5 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-105 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: casinh (-0.5 + 0x1p-52 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0.5 + 0x1p-52 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0.5 + 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (-0.5 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 0 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 0x1.fp-1025 i)": +Test "Real part of: casin (0.5 + 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 0x1.fp-129 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: casin (0.5 + 0x1p-112 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 0x1.fp-16385 i)": +Test "Real part of: casin (0.5 + 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 0x1p-105 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 0x1p-112 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 0x1p-23 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: casinh (-0.5 - 0x1p-23 i)": +Test "Imaginary part of: casin (0.5 + 0x1p-23 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: casinh (-0.5 - 0x1p-52 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0.5 - 0x1p-52 i)": +Test "Imaginary part of: casin (0.5 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0.5 - 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (-0.5 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (-0.5 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (-0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": +Test "Real part of: casin (0.5 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +Test "Imaginary part of: casin (0.5 + 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": +Test "Imaginary part of: casin (0.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0.5 - 0x1p-105 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +Test "Real part of: casin (0.5 - 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Imaginary part of: casin (0.5 - 0x1p-112 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +Test "Real part of: casin (0.5 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +Test "Imaginary part of: casin (0.5 - 0x1p-23 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Imaginary part of: casin (0.5 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0.0 i)": +Test "Real part of: casin (0.5 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": +Test "Imaginary part of: casin (0.5 - 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Real part of: casin (0.75 + 1.25 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: casin (0x0.fffffffffffff8p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0.0 i)": +Test "Real part of: casin (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": +Test "Imaginary part of: casin (0x0.fffffffffffff8p0 + 0x1p-52 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x0.fffffffffffff8p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Real part of: casin (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x0.ffffffp0 + 0x1p-23 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (-0x0.ffffffp0 - 0x1p-23 i)": +Test "Imaginary part of: casin (0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0.0 i)": +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "Imaginary part of: casin (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Imaginary part of: casin (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Real part of: casin (0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-112 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Real part of: casin (0x0.ffffffffffffffffp0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Real part of: casin (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 + 0.0 i)": +Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 + 0x1.fp-16385 i)": +Test "Real part of: casin (0x0.ffffffffffffffffp0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 + 0x1p-63 i)": +Test "Real part of: casin (0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000000002p0 + 0x1p-63 i)": +Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 - 0.0 i)": +Test "Real part of: casin (0x0.ffffffp0 + 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 - 0x1.fp-16385 i)": +Test "Imaginary part of: casin (0x0.ffffffp0 + 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Real part of: casin (0x0.ffffffp0 - 0x1p-23 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000000002p0 - 0x1p-63 i)": +Test "Imaginary part of: casin (0x0.ffffffp0 - 0x1p-23 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000000002p0 - 0x1p-63 i)": +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000001p0 + 0.0 i)": +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000001p0 + 0x1.fp-1025 i)": +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000001p0 + 0x1p-52 i)": +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000001p0 - 0.0 i)": +Test "Imaginary part of: casin (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.0000000000001p0 - 0x1.fp-1025 i)": +Test "Imaginary part of: casin (0x1.000002p0 + 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.0000000000001p0 - 0x1p-52 i)": +Test "Imaginary part of: casin (0x1.000002p0 - 0x1p-23 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1p-23 i)": -double: 1 +Test "Real part of: casin (0x1.fp-10 + 1.0 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1p-23 i)": +Test "Imaginary part of: casin (0x1.fp-10 + 1.0 i)": double: 1 -float: 1 idouble: 1 +Test "Real part of: casin (0x1.fp-10 - 1.0 i)": +float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-10 + 1.0 i)": +Test "Imaginary part of: casin (0x1.fp-10 - 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casin (0x1.fp-100 + 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-10 - 1.0 i)": +Test "Imaginary part of: casin (0x1.fp-100 - 1.0 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1.fp-129 + 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-129 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-129 - 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-129 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (0x1.fp-10000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (0x1.fp-10000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: casin (0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-30 + 1.0 i)": +Test "Imaginary part of: casin (0x1.fp-1025 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1.fp-30 - 1.0 i)": +Test "Imaginary part of: casin (0x1.fp-1025 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-105 + 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (0x1.fp-1025 + 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (0x1.fp-1025 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-105 - 0.5 i)": -double: 1 -idouble: 1 +Test "Real part of: casin (0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (0x1.fp-1025 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casin (0x1.fp-1025 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-112 + 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-112 + 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-1025 - 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Imaginary part of: casin (0x1.fp-129 + 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-112 - 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-129 + 1.0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-112 - 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-129 + 1.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Imaginary part of: casin (0x1.fp-129 - 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1p-23 + 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-129 - 1.0 i)": double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-23 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-0x1p-23 + 0x1.000002p0 i)": float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 - 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-129 - 1.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-0x1p-23 - 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-16385 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": -float: 2 -ifloat: 2 -Test "Imaginary part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": +Test "Imaginary part of: casin (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-23 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-52 + 0x0.fffffffffffff8p0 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (-0x1p-52 - 0x0.fffffffffffff8p0 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (-0x1p-63 + 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-16385 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (0x1.fp-16385 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-63 - 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-16385 + 1.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (0x1.fp-16385 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p500 + 1.0 i)": +Test "Imaginary part of: casin (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p500 - 1.0 i)": +Test "Imaginary part of: casin (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p5000 + 1.0 i)": +Test "Imaginary part of: casin (0x1.fp-16385 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-0x1p5000 - 1.0 i)": +Test "Imaginary part of: casin (0x1.fp-16385 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + +0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: casin (0x1.fp-16385 - 1.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0.25 i)": -float: 1 -ifloat: 1 +Test "Real part of: casin (0x1.fp-30 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0.5 i)": +Test "Imaginary part of: casin (0x1.fp-30 + 1.0 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-10 i)": -float: 1 -ifloat: 1 +Test "Real part of: casin (0x1.fp-30 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-100 i)": +Test "Imaginary part of: casin (0x1.fp-30 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-1000 i)": +Test "Imaginary part of: casin (0x1.fp1023 + 0x1.fp1023 i)": double: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-10000 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-1025 i)": +Test "Imaginary part of: casin (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 +Test "Imaginary part of: casin (0x1.fp16383 + 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-129 i)": -double: 1 +Test "Imaginary part of: casin (0x1p-105 + 0.5 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Imaginary part of: casin (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-16385 i)": +Test "Imaginary part of: casin (0x1p-105 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1.fp-30 i)": -double: 1 +Test "Imaginary part of: casin (0x1p-112 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-112 - 0.5 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Real part of: casin (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-1.0 + 0x1.fp-30 i)": +Test "Imaginary part of: casin (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1p500 i)": +Test "Real part of: casin (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 + 0x1p5000 i)": +Test "Imaginary part of: casin (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0 i)": +Test "Real part of: casin (0x1p-23 + 0.5 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 - 0.25 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (0x1p-23 + 0.5 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 - 0.5 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (0x1p-23 + 0x0.ffffffp0 i)": double: 1 idouble: 1 +Test "Real part of: casin (0x1p-23 + 0x1.000002p0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0.5 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-10 i)": +Test "Real part of: casin (0x1p-23 - 0.5 i)": double: 1 +float: 1 idouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-10 i)": +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (0x1p-23 - 0.5 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-100 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casin (0x1p-23 - 0x0.ffffffp0 i)": +double: 1 +idouble: 1 +Test "Real part of: casin (0x1p-23 - 0x1.000002p0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-1000 i)": -double: 1 -idouble: 1 +Test "Real part of: casin (0x1p-52 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-10000 i)": +Test "Imaginary part of: casin (0x1p-52 + 0.5 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 +Test "Real part of: casin (0x1p-52 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-129 i)": -double: 1 +Test "Real part of: casin (0x1p-52 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (0x1p-52 - 0.5 i)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-16385 i)": +Test "Real part of: casin (0x1p-52 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1.fp-30 i)": -double: 1 +Test "Imaginary part of: casin (0x1p-63 + 0.5 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Imaginary part of: casin (0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (-1.0 - 0x1.fp-30 i)": +Test "Real part of: casin (0x1p-63 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1p500 i)": +Test "Imaginary part of: casin (0x1p-63 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.0 - 0x1p5000 i)": +Test "Imaginary part of: casin (0x1p-63 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 + +0 i)": -double: 1 -idouble: 1 +Test "Real part of: casin (0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 + 0x1.fp-1025 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: casin (0x1p-63 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 + 0x1.fp-129 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: casin (0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 + 0x1.fp-16385 i)": +Test "Imaginary part of: casin (0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 - 0 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: casin (0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 - 0x1.fp-1025 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: casin (0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 - 0x1.fp-129 i)": +Test "Real part of: casin (1.0 + 0.25 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (-1.5 - 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (0.0 + 0x0.fffffffffffff8p0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (0.0 + 0x0.ffffffffffffffffp0 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (0.0 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: casin (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 + 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 + 0x1.fp-10 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.0 - 0x0.fffffffffffff8p0 i)": +Test "Real part of: casin (1.0 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.0 - 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casin (1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.0 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casin (1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.25 + 1.0 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: casin (1.0 + 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.25 - 1.0 i)": +Test "Real part of: casin (1.0 - 0.25 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + +0 i)": +Test "Real part of: casin (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 - 0.5 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casin (1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + 0x1.fp-1025 i)": +Test "Real part of: casin (1.0 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + 0x1.fp-129 i)": +Test "Imaginary part of: casin (1.0 - 0x1.fp-30 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 - 0x1p500 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casin (1.0 - 0x1p5000 i)": +ildouble: 1 +ldouble: 1 + +# casinh +Test "Imaginary part of: casinh (-0.0 + 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.0 + 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.0 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.0 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.0 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.0 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.25 + 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-0.25 - 1.0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 + +0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + 0x1.fp-16385 i)": +Test "Real part of: casinh (-0.5 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + 0x1p-105 i)": +Test "Real part of: casinh (-0.5 + 0x1.fp-129 i)": float: 1 ifloat: 1 -Test "Real part of: casinh (0.5 + 0x1p-112 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 + 0x1.fp-16385 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (-0.5 + 0x1p-105 i)": float: 1 ifloat: 1 -Test "Real part of: casinh (0.5 + 0x1p-23 i)": +Test "Real part of: casinh (-0.5 + 0x1p-112 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (-0.5 + 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casinh (0.5 + 0x1p-23 i)": +Test "Imaginary part of: casinh (-0.5 + 0x1p-23 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: casinh (0.5 + 0x1p-52 i)": +Test "Real part of: casinh (-0.5 + 0x1p-52 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.5 + 0x1p-52 i)": +Test "Imaginary part of: casinh (-0.5 + 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 + 0x1p-63 i)": +Test "Real part of: casinh (-0.5 + 0x1p-63 i)": float: 1 ifloat: 1 -Test "Real part of: casinh (0.5 + 1.0 i)": +Test "Real part of: casinh (-0.5 + 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: casinh (0.5 + 1.0 i)": +Test "Imaginary part of: casinh (-0.5 + 1.0 i)": float: 1 ifloat: 1 -Test "Real part of: casinh (0.5 - 0 i)": +Test "Real part of: casinh (-0.5 - 0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0x1.fp-1025 i)": +Test "Real part of: casinh (-0.5 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0x1.fp-129 i)": +Test "Real part of: casinh (-0.5 - 0x1.fp-129 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0x1.fp-16385 i)": +Test "Real part of: casinh (-0.5 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0x1p-105 i)": +Test "Real part of: casinh (-0.5 - 0x1p-105 i)": float: 1 ifloat: 1 -Test "Real part of: casinh (0.5 - 0x1p-112 i)": +Test "Real part of: casinh (-0.5 - 0x1p-112 i)": float: 1 ifloat: 1 -Test "Real part of: casinh (0.5 - 0x1p-23 i)": +Test "Real part of: casinh (-0.5 - 0x1p-23 i)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Imaginary part of: casinh (0.5 - 0x1p-23 i)": +Test "Imaginary part of: casinh (-0.5 - 0x1p-23 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "Real part of: casinh (0.5 - 0x1p-52 i)": +Test "Real part of: casinh (-0.5 - 0x1p-52 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0.5 - 0x1p-52 i)": +Test "Imaginary part of: casinh (-0.5 - 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0.5 - 0x1p-63 i)": -float: 1 -ifloat: 1 -Test "Real part of: casinh (0.5 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: casinh (0.5 - 1.0 i)": +Test "Real part of: casinh (-0.5 - 0x1p-63 i)": float: 1 ifloat: 1 -Test "Real part of: casinh (0.75 + 1.25 i)": +Test "Real part of: casinh (-0.5 - 1.0 i)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (0.75 + 1.25 i)": -double: 1 +Test "Imaginary part of: casinh (-0.5 - 1.0 i)": float: 1 -idouble: 1 ifloat: 1 +Test "Imaginary part of: casinh (-0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": +Test "Imaginary part of: casinh (-0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0.0 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0x1p-63 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0.0 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0x1p-63 i)": +Test "Real part of: casinh (-0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x0.ffffffp0 + 0x1p-23 i)": +Test "Real part of: casinh (-0x0.ffffffp0 + 0x1p-23 i)": double: 1 idouble: 1 -Test "Real part of: casinh (0x0.ffffffp0 - 0x1p-23 i)": +Test "Real part of: casinh (-0x0.ffffffp0 - 0x1p-23 i)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0.0 i)": +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": +Test "Imaginary part of: casinh (-0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0.0 i)": +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Real part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": +Test "Imaginary part of: casinh (-0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 + 0.0 i)": +Test "Real part of: casinh (-0x1.0000000000000002p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 + 0x1.fp-16385 i)": +Test "Real part of: casinh (-0x1.0000000000000002p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 + 0x1p-63 i)": +Test "Real part of: casinh (-0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000000002p0 + 0x1p-63 i)": +Test "Imaginary part of: casinh (-0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 - 0.0 i)": +Test "Real part of: casinh (-0x1.0000000000000002p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 - 0x1.fp-16385 i)": +Test "Real part of: casinh (-0x1.0000000000000002p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000000002p0 - 0x1p-63 i)": +Test "Real part of: casinh (-0x1.0000000000000002p0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000000002p0 - 0x1p-63 i)": +Test "Imaginary part of: casinh (-0x1.0000000000000002p0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000001p0 + 0.0 i)": +Test "Real part of: casinh (-0x1.0000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000001p0 + 0x1.fp-1025 i)": +Test "Real part of: casinh (-0x1.0000000000001p0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000001p0 + 0x1p-52 i)": +Test "Imaginary part of: casinh (-0x1.0000000000001p0 + 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000001p0 - 0.0 i)": +Test "Real part of: casinh (-0x1.0000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.0000000000001p0 - 0x1.fp-1025 i)": +Test "Real part of: casinh (-0x1.0000000000001p0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.0000000000001p0 - 0x1p-52 i)": +Test "Imaginary part of: casinh (-0x1.0000000000001p0 - 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.000002p0 + 0x1p-23 i)": +Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1p-23 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.000002p0 - 0x1p-23 i)": +Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1p-23 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-10 + 1.0 i)": +Test "Real part of: casinh (-0x1.fp-10 + 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-10 - 1.0 i)": +Test "Real part of: casinh (-0x1.fp-10 - 1.0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": +Test "Imaginary part of: casinh (-0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": +Test "Imaginary part of: casinh (-0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-129 + 0.5 i)": +Test "Real part of: casinh (-0x1.fp-129 + 0.5 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (0x1.fp-129 + 1.0 i)": +Test "Imaginary part of: casinh (-0x1.fp-129 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-129 - 0.5 i)": +Test "Real part of: casinh (-0x1.fp-129 - 0.5 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (0x1.fp-129 - 1.0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": +Test "Imaginary part of: casinh (-0x1.fp-129 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casinh (-0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: casinh (-0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casinh (-0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-30 + 1.0 i)": +Test "Real part of: casinh (-0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp-30 - 1.0 i)": +Test "Real part of: casinh (-0x1.fp-30 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (0x1.fp127 + 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Real part of: casinh (0x1.fp16383 + 0x1.fp16383 i)": +Test "Real part of: casinh (-0x1.fp-30 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-105 + 0.5 i)": +Test "Real part of: casinh (-0x1p-105 + 0.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: casinh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casinh (-0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-105 - 0.5 i)": +Test "Real part of: casinh (-0x1p-105 - 0.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Real part of: casinh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": +Test "Imaginary part of: casinh (-0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-112 + 0.5 i)": +Test "Real part of: casinh (-0x1p-112 + 0.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-112 + 0.5 i)": +Test "Imaginary part of: casinh (-0x1p-112 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Imaginary part of: casinh (-0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-112 - 0.5 i)": +Test "Real part of: casinh (-0x1p-112 - 0.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-112 - 0.5 i)": +Test "Imaginary part of: casinh (-0x1p-112 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Imaginary part of: casinh (-0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: casinh (-0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: casinh (-0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 + 0.5 i)": +Test "Real part of: casinh (-0x1p-23 + 0.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-23 + 0.5 i)": +Test "Imaginary part of: casinh (-0x1p-23 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": +Test "Real part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": float: 2 ifloat: 2 -Test "Imaginary part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": +Test "Imaginary part of: casinh (-0x1p-23 + 0x0.ffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 + 0x1.000002p0 i)": +Test "Real part of: casinh (-0x1p-23 + 0x1.000002p0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 - 0.5 i)": +Test "Real part of: casinh (-0x1p-23 - 0.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (0x1p-23 - 0.5 i)": +Test "Imaginary part of: casinh (-0x1p-23 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +Test "Real part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": float: 2 ifloat: 2 -Test "Imaginary part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +Test "Imaginary part of: casinh (-0x1p-23 - 0x0.ffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-23 - 0x1.000002p0 i)": +Test "Real part of: casinh (-0x1p-23 - 0x1.000002p0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-52 + 0x0.fffffffffffff8p0 i)": +Test "Real part of: casinh (-0x1p-52 + 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1p-52 - 0x0.fffffffffffff8p0 i)": +Test "Real part of: casinh (-0x1p-52 - 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 -Test "Real part of: casinh (0x1p-63 + 0.5 i)": +Test "Real part of: casinh (-0x1p-63 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-63 + 0x0.ffffffffffffffffp0 i)": +Test "Real part of: casinh (-0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-63 - 0.5 i)": +Test "Real part of: casinh (-0x1p-63 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p-63 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: casinh (-0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p500 + 1.0 i)": +Test "Real part of: casinh (-0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p500 - 1.0 i)": +Test "Real part of: casinh (-0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p5000 + 1.0 i)": +Test "Real part of: casinh (-0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (0x1p5000 - 1.0 i)": +Test "Real part of: casinh (-0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + +0 i)": +Test "Real part of: casinh (-1.0 + +0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0.25 i)": +Test "Real part of: casinh (-1.0 + 0.25 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0.5 i)": +Test "Real part of: casinh (-1.0 + 0.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (1.0 + 0.5 i)": +Test "Imaginary part of: casinh (-1.0 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-10 i)": +Test "Real part of: casinh (-1.0 + 0x1.fp-10 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-10 i)": +Test "Imaginary part of: casinh (-1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-100 i)": +Test "Real part of: casinh (-1.0 + 0x1.fp-100 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-1000 i)": +Test "Real part of: casinh (-1.0 + 0x1.fp-1000 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-10000 i)": +Test "Real part of: casinh (-1.0 + 0x1.fp-10000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-1025 i)": +Test "Real part of: casinh (-1.0 + 0x1.fp-1025 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-129 i)": +Test "Real part of: casinh (-1.0 + 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-16385 i)": +Test "Real part of: casinh (-1.0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1.fp-30 i)": +Test "Real part of: casinh (-1.0 + 0x1.fp-30 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (1.0 + 0x1.fp-30 i)": +Test "Imaginary part of: casinh (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1p500 i)": +Test "Real part of: casinh (-1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 + 0x1p5000 i)": +Test "Real part of: casinh (-1.0 + 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0 i)": +Test "Real part of: casinh (-1.0 - 0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0.25 i)": +Test "Real part of: casinh (-1.0 - 0.25 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0.5 i)": +Test "Real part of: casinh (-1.0 - 0.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (1.0 - 0.5 i)": +Test "Imaginary part of: casinh (-1.0 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-10 i)": +Test "Real part of: casinh (-1.0 - 0x1.fp-10 i)": double: 1 idouble: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-10 i)": +Test "Imaginary part of: casinh (-1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-100 i)": +Test "Real part of: casinh (-1.0 - 0x1.fp-100 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-1000 i)": +Test "Real part of: casinh (-1.0 - 0x1.fp-1000 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-10000 i)": +Test "Real part of: casinh (-1.0 - 0x1.fp-10000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-1025 i)": +Test "Real part of: casinh (-1.0 - 0x1.fp-1025 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-129 i)": +Test "Real part of: casinh (-1.0 - 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-16385 i)": +Test "Real part of: casinh (-1.0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1.fp-30 i)": +Test "Real part of: casinh (-1.0 - 0x1.fp-30 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: casinh (1.0 - 0x1.fp-30 i)": +Test "Imaginary part of: casinh (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1p500 i)": +Test "Real part of: casinh (-1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.0 - 0x1p5000 i)": +Test "Real part of: casinh (-1.0 - 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 + +0 i)": +Test "Real part of: casinh (-1.5 + +0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 + 0x1.fp-1025 i)": +Test "Real part of: casinh (-1.5 + 0x1.fp-1025 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 + 0x1.fp-129 i)": +Test "Real part of: casinh (-1.5 + 0x1.fp-129 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 + 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: casinh (1.5 - 0 i)": -double: 1 -idouble: 1 +Test "Real part of: casinh (-1.5 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 - 0x1.fp-1025 i)": +Test "Real part of: casinh (-1.5 - 0 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 - 0x1.fp-129 i)": +Test "Real part of: casinh (-1.5 - 0x1.fp-1025 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: casinh (1.5 - 0x1.fp-16385 i)": -ildouble: 1 -ldouble: 1 - -# catan -Test "Imaginary part of: catan (-0x0.fffffffffffff8p0 + 0x1p-27 i)": +Test "Real part of: casinh (-1.5 - 0x1.fp-129 i)": double: 1 idouble: 1 -Test "Real part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-16382 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-57 i)": +Test "Real part of: casinh (-1.5 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-16382 i)": +Test "Imaginary part of: casinh (0.0 + 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x0.ffffffp0 + 0x1p-126 i)": +Test "Imaginary part of: casinh (0.0 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x0.ffffffp0 + 0x1p-13 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Real part of: casinh (0.0 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x0.ffffffp0 - 0x1p-126 i)": +Test "Imaginary part of: casinh (0.0 - 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 + 0x1p-16382 i)": +Test "Imaginary part of: casinh (0.0 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 - 0x1p-16382 i)": +Test "Real part of: casinh (0.0 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 - 0x1p-57 i)": +Test "Imaginary part of: casinh (0.25 + 1.0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.0000000000001p0 - 0x1p-27 i)": +Test "Imaginary part of: casinh (0.25 - 1.0 i)": double: 1 idouble: 1 -Test "Real part of: catan (-0x1.000002p0 + 0x1p-126 i)": -float: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (-0x1.000002p0 - 0x1p-126 i)": +Test "Real part of: casinh (0.5 + +0 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1.000002p0 - 0x1p-13 i)": +Test "Real part of: casinh (0.5 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0.5 + 0x1.fp-129 i)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1.000002p0 - 0x1p-13 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1.fp1023 - 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1.fp127 + 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1.fp127 - 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1.fp16383 + 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1.fp16383 - 0x1.fp16383 i)": +Test "Real part of: casinh (0.5 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-1020 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (-0x1p-1020 - 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (-0x1p-13 + 0x1.000002p0 i)": +Test "Real part of: casinh (0.5 + 0x1p-105 i)": float: 1 ifloat: 1 -Test "Real part of: catan (-0x1p-13 + 1.0 i)": +Test "Real part of: casinh (0.5 + 0x1p-112 i)": float: 1 ifloat: 1 -Test "Real part of: catan (-0x1p-13 - 0x1.000002p0 i)": +Test "Real part of: casinh (0.5 + 0x1p-23 i)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1p-13 - 0x1.000002p0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casinh (0.5 + 0x1p-23 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catan (-0x1p-13 - 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (0.5 + 0x1p-52 i)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1p-16380 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-16380 - 1.0 i)": +Test "Imaginary part of: casinh (0.5 + 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1p-33 + 0x0.ffffffffffffffffp0 i)": +Test "Real part of: casinh (0.5 + 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1p-33 + 0x1.0000000000000002p0 i)": +Test "Real part of: casinh (0.5 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1p-33 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: casinh (0.5 - 0x1.fp-129 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catan (-0x1p-33 - 0x1.0000000000000002p0 i)": +Test "Real part of: casinh (0.5 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-0x1p-54 + 1.0 i)": +Test "Real part of: casinh (0.5 - 0x1p-105 i)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1p-54 - 1.0 i)": +Test "Real part of: casinh (0.5 - 0x1p-112 i)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1p-57 + 1.0 i)": +Test "Real part of: casinh (0.5 - 0x1p-23 i)": float: 1 ifloat: 1 -Test "Imaginary part of: catan (-0x1p-57 - 1.0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: casinh (0.5 - 0x1p-23 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catan (-1.0 + 0x1p-13 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: casinh (0.5 - 0x1p-52 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catan (-1.0 - 0x1p-13 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: casinh (0.5 - 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (-2 - 3 i)": -double: 1 +Test "Real part of: casinh (0.5 - 0x1p-63 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: casinh (0.5 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: casinh (0.75 + 1.25 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: catan (0.75 + 1.25 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (0x0.fffffffffffff8p0 + 0x1p-27 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: catan (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-57 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catan (0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-16382 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: catan (0x0.ffffffp0 + 0x1p-126 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x0.ffffffp0 + 0x1p-13 i)": +Test "Imaginary part of: casinh (0.75 + 1.25 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x0.ffffffp0 - 0x1p-126 i)": +Test "Imaginary part of: casinh (0x0.fffffffffffff8p0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 + 0x1p-16382 i)": +Test "Imaginary part of: casinh (0x0.fffffffffffff8p0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 - 0x1p-16382 i)": +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 - 0x1p-57 i)": +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.0000000000001p0 - 0x1p-27 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (0x1.000002p0 + 0x1p-126 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 + 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1.000002p0 - 0x1p-126 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1.000002p0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1.000002p0 - 0x1p-13 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (0x1.fp1023 - 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (0x1.fp127 + 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (0x1.fp127 - 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (0x1.fp16383 + 0x1.fp16383 i)": +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1.fp16383 - 0x1.fp16383 i)": +Test "Real part of: casinh (0x0.ffffffffffffffffffffffffffcp0 - 0x1p-105 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-1020 + 1.0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catan (0x1p-1020 - 1.0 i)": -double: 1 -idouble: 1 -Test "Real part of: catan (0x1p-13 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1p-13 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1p-13 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-13 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (0x1p-13 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-16380 + 1.0 i)": +Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-16380 - 1.0 i)": +Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1p-33 + 0x0.ffffffffffffffffp0 i)": +Test "Real part of: casinh (0x0.ffffffffffffffffp0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1p-33 + 0x1.0000000000000002p0 i)": +Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1p-33 - 0x0.ffffffffffffffffp0 i)": +Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (0x1p-33 - 0x1.0000000000000002p0 i)": +Test "Real part of: casinh (0x0.ffffffffffffffffp0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catan (0x1p-54 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-54 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-57 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catan (0x1p-57 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: catan (1.0 + 0x1p-13 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x0.ffffffp0 + 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x0.ffffffp0 - 0x1p-23 i)": +double: 1 +idouble: 1 +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catan (1.0 - 0x1p-13 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 - -# catanh -Test "Imaginary part of: catanh (-0x0.ffffffffffffffffp0 + 0x1p-33 i)": +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x0.ffffffffffffffffp0 - 0x1p-33 i)": +Test "Imaginary part of: casinh (0x1.0000000000000000000000000001p0 + 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1.0000000000000002p0 + 0x1p-33 i)": +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1.0000000000000002p0 - 0x1p-33 i)": +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (-0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-0x1.000002p0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (-0x1.000002p0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (-0x1.fp1023 - 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (-0x1.fp127 + 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (-0x1.fp127 - 0x1.fp127 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (-0x1.fp16383 + 0x1.fp16383 i)": +Test "Real part of: casinh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1.fp16383 - 0x1.fp16383 i)": +Test "Imaginary part of: casinh (0x1.0000000000000000000000000001p0 - 0x1p-113 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-126 + 0x0.ffffffp0 i)": +Test "Real part of: casinh (0x1.0000000000000002p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-126 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x1.0000000000000002p0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-126 - 0x0.ffffffp0 i)": +Test "Real part of: casinh (0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-126 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: casinh (0x1.0000000000000002p0 + 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-13 + 0x1.000002p0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catanh (-0x1p-13 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (-0x1p-13 + 1.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x1.0000000000000002p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-13 - 0x1.000002p0 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catanh (-0x1p-13 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (-0x1p-13 - 1.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x1.0000000000000002p0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-16382 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Real part of: casinh (0x1.0000000000000002p0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-16382 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casinh (0x1.0000000000000002p0 - 0x1p-63 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (-0x1p-16382 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Real part of: casinh (0x1.0000000000001p0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-16382 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: casinh (0x1.0000000000001p0 + 0x1.fp-1025 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-27 + 0x1.0000000000001p0 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (-0x1p-27 - 0x1.0000000000001p0 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (-0x1p-57 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casinh (0x1.0000000000001p0 + 0x1p-52 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-0x1p-57 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: casinh (0x1.0000000000001p0 - 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-1.0 + 0x1p-1020 i)": +Test "Real part of: casinh (0x1.0000000000001p0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.0000000000001p0 - 0x1p-52 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.000002p0 + 0x1p-23 i)": double: 1 -idouble: 1 -Test "Imaginary part of: catanh (-1.0 + 0x1p-13 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catanh (-1.0 + 0x1p-16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-1.0 + 0x1p-54 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-1.0 + 0x1p-57 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-1.0 - 0x1p-1020 i)": +Test "Imaginary part of: casinh (0x1.000002p0 - 0x1p-23 i)": double: 1 -idouble: 1 -Test "Imaginary part of: catanh (-1.0 - 0x1p-13 i)": float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: catanh (-1.0 - 0x1p-16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (-1.0 - 0x1p-54 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (-1.0 - 0x1p-57 i)": +Test "Real part of: casinh (0x1.fp-10 + 1.0 i)": float: 1 ifloat: 1 -Test "Real part of: catanh (-2 - 3 i)": -double: 1 -idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0.75 + 1.25 i)": +Test "Real part of: casinh (0x1.fp-10 - 1.0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0.75 + 1.25 i)": +Test "Imaginary part of: casinh (0x1.fp-1025 + 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x0.ffffffffffffffffp0 + 0x1p-33 i)": +Test "Imaginary part of: casinh (0x1.fp-1025 - 0x0.fffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x0.ffffffffffffffffp0 - 0x1p-33 i)": +Test "Real part of: casinh (0x1.fp-129 + 0.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0x1.fp-129 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1.0000000000000002p0 + 0x1p-33 i)": +Test "Real part of: casinh (0x1.fp-129 - 0.5 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (0x1.fp-129 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1.0000000000000002p0 - 0x1p-33 i)": +Test "Imaginary part of: casinh (0x1.fp-16385 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1.000002p0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (0x1.000002p0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (0x1.fp1023 + 0x1.fp1023 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (0x1.fp1023 - 0x1.fp1023 i)": +Test "Real part of: casinh (0x1.fp-16385 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (0x1.fp-16385 - 0x0.ffffffffffffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-16385 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-30 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp-30 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1.fp1023 + 0x1.fp1023 i)": double: 1 idouble: 1 -Test "Real part of: catanh (0x1.fp127 + 0x1.fp127 i)": +Test "Real part of: casinh (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 -Test "Real part of: catanh (0x1.fp127 - 0x1.fp127 i)": +Test "Real part of: casinh (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-105 + 0.5 i)": double: 1 idouble: 1 -Test "Real part of: catanh (0x1.fp16383 + 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1.fp16383 - 0x1.fp16383 i)": +Test "Real part of: casinh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-126 + 0x0.ffffffp0 i)": +Test "Imaginary part of: casinh (0x1p-105 + 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-126 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x1p-105 - 0.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-126 - 0x0.ffffffp0 i)": +Test "Real part of: casinh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-126 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: casinh (0x1p-105 - 0x0.ffffffffffffffffffffffffffcp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-13 + 0x0.ffffffp0 i)": +Test "Real part of: casinh (0x1p-112 + 0.5 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-13 + 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (0x1p-13 + 1.0 i)": -float: 1 -ifloat: 1 +Test "Imaginary part of: casinh (0x1p-112 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-13 - 0x0.ffffffp0 i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "Imaginary part of: casinh (0x1p-112 + 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-13 - 0x1.000002p0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: catanh (0x1p-13 - 1.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x1p-112 - 0.5 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-16382 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Imaginary part of: casinh (0x1p-112 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-16382 + 0x1.0000000000000000000000000001p0 i)": +Test "Imaginary part of: casinh (0x1p-112 - 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: catanh (0x1p-16382 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Real part of: casinh (0x1p-113 + 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-16382 - 0x1.0000000000000000000000000001p0 i)": +Test "Real part of: casinh (0x1p-113 - 0x1.0000000000000000000000000001p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-27 + 0x0.fffffffffffff8p0 i)": -double: 1 -idouble: 1 -Test "Real part of: catanh (0x1p-27 - 0x0.fffffffffffff8p0 i)": +Test "Real part of: casinh (0x1p-23 + 0.5 i)": double: 1 idouble: 1 -Test "Real part of: catanh (0x1p-57 + 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (0x1p-57 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +Test "Imaginary part of: casinh (0x1p-23 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (1.0 + 0x1p-1020 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: catanh (1.0 + 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (1.0 + 0x1p-16380 i)": +Test "Real part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casinh (0x1p-23 + 0x0.ffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (1.0 + 0x1p-54 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (1.0 + 0x1p-57 i)": +Test "Real part of: casinh (0x1p-23 + 0x1.000002p0 i)": float: 1 ifloat: 1 -Test "Real part of: catanh (1.0 - 0x1p-1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-23 - 0.5 i)": double: 1 idouble: 1 -Test "Imaginary part of: catanh (1.0 - 0x1p-13 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (1.0 - 0x1p-16380 i)": ildouble: 1 ldouble: 1 -Test "Real part of: catanh (1.0 - 0x1p-54 i)": -float: 1 -ifloat: 1 -Test "Real part of: catanh (1.0 - 0x1p-57 i)": +Test "Imaginary part of: casinh (0x1p-23 - 0.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +float: 2 +ifloat: 2 +Test "Imaginary part of: casinh (0x1p-23 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (0x1p-23 - 0x1.000002p0 i)": float: 1 ifloat: 1 - -# cbrt -Test "cbrt (-0.001)": ildouble: 1 ldouble: 1 -Test "cbrt (-27.0)": -double: 1 -idouble: 1 -Test "cbrt (0.75)": -double: 1 -idouble: 1 -Test "cbrt (0.9921875)": +Test "Real part of: casinh (0x1p-52 + 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 - -# ccos -Test "Imaginary part of: ccos (-0.75 + 11357.25 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (-0.75 + 710.5 i)": +Test "Real part of: casinh (0x1p-52 - 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 +Test "Real part of: casinh (0x1p-63 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ccos (-0.75 + 89.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (-0.75 + 89.5 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x1p-63 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (-0.75 - 11357.25 i)": +Test "Real part of: casinh (0x1p-63 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (-0.75 - 710.5 i)": -double: 1 -idouble: 1 +Test "Real part of: casinh (0x1p-63 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ccos (-0.75 - 89.5 i)": +Test "Real part of: casinh (0x1p500 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (-0.75 - 89.5 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x1p500 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ccos (-2 - 3 i)": +Test "Real part of: casinh (0x1p5000 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (-2 - 3 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (0x1p5000 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ccos (0.75 + 1.25 i)": +Test "Real part of: casinh (1.0 + +0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Imaginary part of: ccos (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 + 0.25 i)": float: 1 ifloat: 1 -Test "Imaginary part of: ccos (0.75 + 11357.25 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (0.75 + 710.5 i)": +Test "Real part of: casinh (1.0 + 0.5 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ccos (0.75 + 89.5 i)": +Test "Imaginary part of: casinh (1.0 + 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (0.75 + 89.5 i)": +Test "Real part of: casinh (1.0 + 0x1.fp-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: casinh (1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (0.75 - 11357.25 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (0.75 - 710.5 i)": +Test "Real part of: casinh (1.0 + 0x1.fp-100 i)": double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: ccos (0.75 - 89.5 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ccos (0.75 - 89.5 i)": float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccos (0x1p-1074 + 1440 i)": +Test "Real part of: casinh (1.0 + 0x1.fp-1000 i)": double: 1 idouble: 1 -Test "Imaginary part of: ccos (0x1p-16434 + 22730 i)": ildouble: 1 ldouble: 1 - -# ccosh -Test "Imaginary part of: ccosh (-11357.25 + 0.75 i)": +Test "Real part of: casinh (1.0 + 0x1.fp-10000 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (-11357.25 - 0.75 i)": +Test "Real part of: casinh (1.0 + 0x1.fp-1025 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ccosh (-2 - 3 i)": +Test "Real part of: casinh (1.0 + 0x1.fp-129 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (-2 - 3 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (1.0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (-710.5 + 0.75 i)": +Test "Real part of: casinh (1.0 + 0x1.fp-30 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (-710.5 - 0.75 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: casinh (1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ccosh (-89.5 + 0.75 i)": +Test "Real part of: casinh (1.0 + 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (-89.5 + 0.75 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (1.0 + 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Real part of: ccosh (-89.5 - 0.75 i)": +Test "Real part of: casinh (1.0 - 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (-89.5 - 0.75 i)": +Test "Real part of: casinh (1.0 - 0.25 i)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ccosh (0.75 + 1.25 i)": +Test "Real part of: casinh (1.0 - 0.5 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ccosh (11357.25 + 0.75 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (11357.25 - 0.75 i)": +Test "Imaginary part of: casinh (1.0 - 0.5 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (1440 + 0x1p-1074 i)": +Test "Real part of: casinh (1.0 - 0x1.fp-10 i)": double: 1 idouble: 1 -Test "Imaginary part of: ccosh (22730 + 0x1p-16434 i)": +Test "Imaginary part of: casinh (1.0 - 0x1.fp-10 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (710.5 + 0.75 i)": +Test "Real part of: casinh (1.0 - 0x1.fp-100 i)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (710.5 - 0.75 i)": +Test "Real part of: casinh (1.0 - 0x1.fp-1000 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ccosh (89.5 + 0.75 i)": +Test "Real part of: casinh (1.0 - 0x1.fp-10000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.0 - 0x1.fp-1025 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (89.5 + 0.75 i)": +Test "Real part of: casinh (1.0 - 0x1.fp-129 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ccosh (89.5 - 0.75 i)": +Test "Real part of: casinh (1.0 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ccosh (89.5 - 0.75 i)": +Test "Real part of: casinh (1.0 - 0x1.fp-30 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# cexp -Test "Imaginary part of: cexp (-10000 + 0x1p16383 i)": +Test "Imaginary part of: casinh (1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cexp (-2.0 - 3.0 i)": +Test "Real part of: casinh (1.0 - 0x1p500 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (-2.0 - 3.0 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (1.0 - 0x1p5000 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (-720 + 0.75 i)": +Test "Real part of: casinh (1.5 + +0 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (-95 + 0.75 i)": +Test "Real part of: casinh (1.5 + 0x1.fp-1025 i)": double: 1 idouble: 1 -Test "Real part of: cexp (0.75 + 1.25 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cexp (0.75 + 1.25 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (1440 + 0x1p-1074 i)": +Test "Real part of: casinh (1.5 + 0x1.fp-129 i)": double: 1 idouble: 1 -Test "Imaginary part of: cexp (22730 + 0x1p-16434 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cexp (50 + 0x1p127 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +Test "Real part of: casinh (1.5 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (50 + 0x1p127 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (500 + 0x1p1023 i)": -double: 1 -idouble: 1 -Test "Real part of: cexp (709.8125 + 0.75 i)": +Test "Real part of: casinh (1.5 - 0 i)": double: 1 idouble: 1 -Test "Imaginary part of: cexp (709.8125 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casinh (1.5 - 0x1.fp-1025 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: cexp (88.75 + 0.75 i)": -float: 1 -ifloat: 1 +Test "Real part of: casinh (1.5 - 0x1.fp-129 i)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: cexp (88.75 + 0.75 i)": -float: 2 -ifloat: 2 +Test "Real part of: casinh (1.5 - 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 -# clog -Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 1 -idouble: 1 -Test "Real part of: clog (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +# catan +Test "Imaginary part of: catan (-0x0.fffffffffffff8p0 + 0x1p-27 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog (-0x1.234566p-40 - 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1.fp+127 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1.fp+127 - 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1.fp+16383 + 0x1p-16445 i)": +Test "Real part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-16382 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1.fp+16383 + 0x1p-16494 i)": +Test "Imaginary part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-57 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1.fp+16383 - 0x1p-16445 i)": +Test "Real part of: catan (-0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-16382 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1.fp+16383 - 0x1p-16494 i)": +Test "Real part of: catan (-0x0.ffffffp0 + 0x1p-126 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (-0x1p-149 + 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (-0x1p-149 - 0x1.fp+127 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog (-0x1p-149 - 0x1.fp+127 i)": +Test "Imaginary part of: catan (-0x0.ffffffp0 + 0x1p-13 i)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Real part of: clog (-0x1p-16445 + 0x1.fp+16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1p-16445 - 0x1.fp+16383 i)": +Test "Real part of: catan (-0x0.ffffffp0 - 0x1p-126 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 + 0x1p-16382 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1p-16494 + 0x1.fp+16383 i)": +Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 - 0x1p-16382 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (-0x1p-16494 - 0x1.fp+16383 i)": +Test "Imaginary part of: catan (-0x1.0000000000000000000000000001p0 - 0x1p-57 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x0.ffffffp0 + 0x0.ffffffp-100 i)": -float: 1 -ifloat: 1 -Test "Real part of: clog (0x1.000566p0 + 0x1.234p-10 i)": +Test "Imaginary part of: catan (-0x1.0000000000001p0 - 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (-0x1.000002p0 + 0x1p-126 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog (0x1.000566p0 + 0x1.234p-10 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+127 + 0x1p-149 i)": +Test "Real part of: catan (-0x1.000002p0 + 0x1p-13 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1.fp+127 - 0x1p-149 i)": +Test "Real part of: catan (-0x1.000002p0 - 0x1p-126 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1.fp+16383 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p-16445 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 + 0x1p-16494 i)": -ildouble: 1 -ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 - 0x1p-16445 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1.fp+16383 - 0x1p-16494 i)": +Test "Real part of: catan (-0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1.000002p0 - 0x1p-13 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp1023 + 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1.fp16383 + 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +Test "Imaginary part of: catan (-0x1.fp16383 - 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-1074 + 0x1p-1074 i)": +Test "Imaginary part of: catan (-0x1p-1020 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catan (-0x1p-1020 - 1.0 i)": double: 1 idouble: 1 -Test "Real part of: clog (0x1p-147 + 0x1p-147 i)": +Test "Real part of: catan (-0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-0x1p-13 - 0x1.000002p0 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1p-149 + 0x1.fp+127 i)": +Test "Imaginary part of: catan (-0x1p-13 - 0x1.000002p0 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1p-149 - 0x1.fp+127 i)": +Test "Real part of: catan (-0x1p-13 - 1.0 i)": float: 1 ifloat: 1 -Test "Real part of: clog (0x1p-16445 + 0x1.fp+16383 i)": +Test "Imaginary part of: catan (-0x1p-16380 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-16445 - 0x1.fp+16383 i)": +Test "Imaginary part of: catan (-0x1p-16380 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-16494 + 0x1.fp+16383 i)": +Test "Real part of: catan (-0x1p-33 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x1p-16494 - 0x1.fp+16383 i)": +Test "Real part of: catan (-0x1p-33 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x2818p-15 + 0x798fp-15 i)": -float: 1 -ifloat: 1 +Test "Real part of: catan (-0x1p-33 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x298c62cb546588a7p-63 + 0x7911b1dfcc4ecdaep-63 i)": +Test "Real part of: catan (-0x1p-33 - 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x2ede88p-23 + 0x771c3fp-23 i)": +Test "Imaginary part of: catan (-0x1p-54 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-54 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-57 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (-0x1p-57 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (-1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x3f96469050f650869c2p-75 + 0x6f16b2c9c8b05988335p-75 i)": +Test "Real part of: catan (-1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x55cb6d0c83af5p-55 + 0x7fe33c0c7c4e90p-55 i)": +Test "Imaginary part of: catan (-2 - 3 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: catan (0.75 + 1.25 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": +Test "Imaginary part of: catan (0x0.fffffffffffff8p0 + 0x1p-27 i)": +double: 1 +idouble: 1 +Test "Real part of: catan (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-16382 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x659feap-24 + 0xeaf6f9p-24 i)": +Test "Imaginary part of: catan (0x0.ffffffffffffffffffffffffffff8p0 + 0x1p-57 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x6771f22c64ed551b857c128b4cp-105 + 0x1f570e7a13cc3cf2f44fd793ea1p-105 i)": +Test "Real part of: catan (0x0.ffffffffffffffffffffffffffff8p0 - 0x1p-16382 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x6b10b4f3520217b6p-64 + 0xe8893cbb449253a1p-64 i)": +Test "Real part of: catan (0x0.ffffffp0 + 0x1p-126 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (0x8ecbf810c4ae6p-52 + 0xd479468b09a37p-52 i)": +Test "Imaginary part of: catan (0x0.ffffffp0 + 0x1p-13 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0x9b57bp-20 + 0xcb7b4p-20 i)": +Test "Real part of: catan (0x0.ffffffp0 - 0x1p-126 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0xdb85c467ee2aadd5f425fe0f4b8dp-114 + 0x3e83162a0f95f1dcbf97dddf410eap-114 i)": +Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 + 0x1p-16382 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0xfd95243681c055c2632286921092p-113 + 0x1bccabcd29ca2152860ec29e34ef7p-113 i)": +Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 - 0x1p-16382 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": +Test "Imaginary part of: catan (0x1.0000000000000000000000000001p0 - 0x1p-57 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog (1.0 + 0x1.234566p-10 i)": -float: 1 -ifloat: 1 - -# clog10 -Test "Imaginary part of: clog10 (-0 + inf i)": +Test "Imaginary part of: catan (0x1.0000000000001p0 - 0x1p-27 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-0 - inf i)": -double: 1 +Test "Real part of: catan (0x1.000002p0 + 0x1p-126 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 2 -idouble: 2 -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 2 -idouble: 2 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": -double: 1 +Test "Real part of: catan (0x1.000002p0 + 0x1p-13 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": -double: 1 +Test "Real part of: catan (0x1.000002p0 - 0x1p-126 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catan (0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1.000002p0 - 0x1p-13 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": +Test "Imaginary part of: catan (0x1.fp1023 + 0x1.fp1023 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": +Test "Imaginary part of: catan (0x1.fp1023 - 0x1.fp1023 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": +Test "Imaginary part of: catan (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": +Test "Imaginary part of: catan (0x1.fp127 - 0x1.fp127 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (-2 - 3 i)": +Test "Imaginary part of: catan (0x1.fp16383 + 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-2 - 3 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: catan (0x1.fp16383 - 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (-3 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-3 - inf i)": +Test "Imaginary part of: catan (0x1p-1020 + 1.0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 0 i)": +Test "Imaginary part of: catan (0x1p-1020 - 1.0 i)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (-inf + 1 i)": -double: 1 +Test "Real part of: catan (0x1p-13 + 0x1.000002p0 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (-inf + inf i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (-inf - 0 i)": -double: 1 +Test "Real part of: catan (0x1p-13 + 1.0 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (-inf - 1 i)": -double: 1 +Test "Real part of: catan (0x1p-13 - 0x1.000002p0 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0 + inf i)": -double: 1 +Test "Imaginary part of: catan (0x1p-13 - 0x1.000002p0 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0 - inf i)": -double: 1 +Test "Real part of: catan (0x1p-13 - 1.0 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0.75 + 1.25 i)": +Test "Imaginary part of: catan (0x1p-16380 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +Test "Imaginary part of: catan (0x1p-16380 - 1.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-1000 i)": +Test "Real part of: catan (0x1p-33 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-1000 i)": +Test "Real part of: catan (0x1p-33 + 0x1.0000000000000002p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-60 i)": +Test "Real part of: catan (0x1p-33 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +Test "Real part of: catan (0x1p-33 - 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1p-54 + 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +Test "Imaginary part of: catan (0x1p-54 - 1.0 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": +Test "Imaginary part of: catan (0x1p-57 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catan (0x1p-57 - 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: catan (1.0 + 0x1p-13 i)": float: 1 ifloat: 1 -Test "Real part of: clog10 (0x1.234566p-50 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": +Test "Real part of: catan (1.0 - 0x1p-13 i)": float: 1 ifloat: 1 -Test "Real part of: clog10 (0x1.234566p-60 + 1.0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": -double: 1 + +# catanh +Test "Imaginary part of: catanh (-0x0.ffffffffffffffffp0 + 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x0.ffffffffffffffffp0 - 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1.0000000000000002p0 + 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1.0000000000000002p0 - 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1.000002p0 + 0x1p-13 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": -double: 1 +Test "Imaginary part of: catanh (-0x1.000002p0 + 0x1p-13 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Real part of: clog10 (0x1.fffffep+127 + 1.0 i)": +Test "Real part of: catanh (-0x1.000002p0 - 0x1p-13 i)": float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +Test "Imaginary part of: catanh (-0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-0x1.fp1023 + 0x1.fp1023 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 + 0x1.fp+16383 i)": +Test "Real part of: catanh (-0x1.fp1023 - 0x1.fp1023 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1.fp127 + 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1.fp127 - 0x1.fp127 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (-0x1.fp16383 + 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1.fp+16383 + 0x1p+16383 i)": +Test "Real part of: catanh (-0x1.fp16383 - 0x1.fp16383 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: catanh (-0x1p-126 + 0x0.ffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": -double: 1 -idouble: 1 +Test "Imaginary part of: catanh (-0x1p-126 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x1415bcaf2105940d49a636e98ae59p-115 + 0x7e6a150adfcd1b0921d44b31f40f4p-115 i)": +Test "Imaginary part of: catanh (-0x1p-126 - 0x0.ffffffp0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x15cfbd1990d1ffp-53 + 0x176a3973e09a9ap-53 i)": +Test "Imaginary part of: catanh (-0x1p-126 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": +Test "Real part of: catanh (-0x1p-13 + 0x1.000002p0 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": +Test "Imaginary part of: catanh (-0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-13 - 0x1.000002p0 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": +Test "Imaginary part of: catanh (-0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (-0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": +Test "Imaginary part of: catanh (-0x1p-16382 + 0x0.ffffffffffffffffffffffffffff8p0 i)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": +Test "Real part of: catanh (-0x1p-16382 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (-0x1p-16382 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-16382 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-27 + 0x1.0000000000001p0 i)": double: 1 idouble: 1 -Test "Real part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +Test "Real part of: catanh (-0x1p-27 - 0x1.0000000000001p0 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +Test "Real part of: catanh (-0x1p-57 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-57 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-1.0 + 0x1p-1020 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": +Test "Imaginary part of: catanh (-1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 + 0x1p-16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-1.0 + 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 + 0x1p-57 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (-1.0 - 0x1p-1020 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": -double: 1 +Test "Imaginary part of: catanh (-1.0 - 0x1p-13 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": -double: 1 +Test "Real part of: catanh (-1.0 - 0x1p-16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-1.0 - 0x1p-54 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": -double: 1 +Test "Real part of: catanh (-1.0 - 0x1p-57 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +Test "Real part of: catanh (-2 - 3 i)": double: 1 -float: 1 idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x0.ffffffffffffffffp0 + 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x0.ffffffffffffffffp0 - 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1.0000000000000002p0 + 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1.0000000000000002p0 - 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1.000002p0 + 0x1p-13 i)": +float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": +Test "Imaginary part of: catanh (0x1.000002p0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (0x1.fp1023 + 0x1.fp1023 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": +Test "Real part of: catanh (0x1.fp1023 - 0x1.fp1023 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": +Test "Real part of: catanh (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 -Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": +Test "Real part of: catanh (0x1.fp127 - 0x1.fp127 i)": double: 1 -float: 1 idouble: 1 +Test "Real part of: catanh (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1.fp16383 - 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-126 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-126 + 0x1.000002p0 i)": +float: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": -double: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-126 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-126 - 0x1.000002p0 i)": float: 1 -idouble: 1 ifloat: 1 -Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-13 + 0x0.ffffffp0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-13 + 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 + 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-13 - 0x0.ffffffp0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +Test "Imaginary part of: catanh (0x1p-13 - 0x1.000002p0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: catanh (0x1p-13 - 1.0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-16382 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-16382 + 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catanh (0x1p-16382 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-16382 - 0x1.0000000000000000000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-27 + 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1p-27 - 0x0.fffffffffffff8p0 i)": +double: 1 +idouble: 1 +Test "Real part of: catanh (0x1p-57 + 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1p-57 - 0x0.ffffffffffffffffffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (1.0 + 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (1.0 + 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 + 0x1p-16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (1.0 + 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 + 0x1p-57 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: catanh (1.0 - 0x1p-13 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (1.0 - 0x1p-54 i)": +float: 1 +ifloat: 1 +Test "Real part of: catanh (1.0 - 0x1p-57 i)": +float: 1 +ifloat: 1 + +# cbrt +Test "cbrt (-0x1.bp+4)": +double: 1 +idouble: 1 +Test "cbrt (-0x4.189374bc6a7ecp-12)": +ildouble: 1 +ldouble: 1 +Test "cbrt (-0x4.189374bc6a7ef9ep-12)": +ildouble: 1 +ldouble: 1 +Test "cbrt (-0x4.18937p-12)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cbrt (0xcp-4)": +double: 1 +idouble: 1 +Test "cbrt (0xf.ep-4)": +double: 1 +idouble: 1 + +# ccos +Test "Real part of: ccos (-0x2p+0 - 0x3p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x2.c5d4p+12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ccos (-0xcp-4 + 0x5.98p+4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x2.c5d4p+12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (-0xcp-4 - 0x5.98p+4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (-0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0x1p-120 + 0x8p-32 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0x4p-1076 + 0x5.ap+8 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccos (0x4p-16436 + 0x5.8cap+12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0x8p-32 + 0x1p-120 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ccos (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x2.c5d4p+12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x2.c68p+8 i)": +double: 1 +idouble: 1 +Test "Real part of: ccos (0xcp-4 + 0x5.98p+4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 + 0x5.98p+4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x2.c5d4p+12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x2.c68p+8 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ccos (0xcp-4 - 0x5.98p+4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccos (0xcp-4 - 0x5.98p+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# ccosh +Test "Imaginary part of: ccosh (-0x2.c5d4p+12 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x2.c5d4p+12 - 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (-0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ccosh (-0x5.98p+4 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (-0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x2.c5d4p+12 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x2.c5d4p+12 - 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x2.c68p+8 - 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ccosh (0x5.8cap+12 + 0x4p-16436 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ccosh (0x5.98p+4 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ccosh (0x5.98p+4 - 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ccosh (0x5.98p+4 - 0xcp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ccosh (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 + +# cexp +Test "Imaginary part of: cexp (+0 + 0x2.1e19e0c9bab24p+72 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (+0 + 0x2p+64 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.71p+12 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.71p+12 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.71p+12 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (-0x2.71p+12 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.71p+12 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2.dp+8 + 0xcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (-0x5.fp+4 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0x1.f4p+8 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cexp (0x1.f4p+8 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cexp (0x2.c5dp+8 + 0xcp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x3.2p+4 + 0x8p+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: cexp (0x5.8cap+12 + 0x4p-16436 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x5.8cp+4 + 0xcp-4 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: cexp (0x5.ap+8 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: cexp (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cexp (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 + +# clog +Test "Real part of: clog (+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 + 0x8p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (+0 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d1598p-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.0000000123456p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d1598p-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d159ep-32 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d15ap-32 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x1.234566p-40 - 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x4p-1076 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x4p-1076 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x4p-16448 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x4p-16448 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x4p-16496 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x4p-16496 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (-0x8p-152 + 0xf.fffffp+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (-0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-152 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (-0x8p-152 - 0xf.fffffp+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0x8p-16448 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x8p-16448 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+124 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (-0xf.8p+16380 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 + 0x4p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 + 0x4p-16496 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x4p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x4p-16496 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0xf.8p+16380 - 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234566p-60 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.23456789p-60 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x1.234568p-60 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.0000000000001p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.000002p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234566p-60 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.23456789p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.234568p-60 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.000566p+0 + 0x4.8dp-12 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x1.000566p+0 + 0x4.8dp-12 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c63p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c64p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c63p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c64p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed199p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7c0beb59f6acp-4 + 0xf.ed19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bdfbf672a9da76bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bdf8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bdfbf6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdf8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdf8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdfbf672a9da76bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd4p-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdf8p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdf8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdfbf672a9da76bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed199p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdf8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed199p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.8907bep-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e08p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e0948788cb0c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e0949p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e1p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.c67eccp-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4ep-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e0948p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e0949p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b8p-4 + 0xf.e6b4d1d7a6e1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b988790cep-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944b988790cep-4 + 0xf.e6b4d1d7a6e0948p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a85944b988790cep-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944bap-4 + 0xf.e6b4d1d7a6e0948788cb0c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a85944bap-4 + 0xf.e6b4d1d7a6e1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a85944bap-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4d1d7a6e0949p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4dp-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8594p-4 + 0xf.e6b4ep-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e0948p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e0948788cb0c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e0949p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1p+0 + 0x4.8d1598p-12 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x1p-16440 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1p-16440 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.0ce7b8p-4 + 0xf.de3a2f9df7a4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.0ce7b8p-4 + 0xf.de3a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a2f9df7a4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.0ce7bcp-4 + 0xf.de3a2f9df7a4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.0ce7bcp-4 + 0xf.de3a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a38p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x2.82b794p-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cb2p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cb2p-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cb2p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cb2p-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a38p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281a934c6dd315cp-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281a934c6dd315dp-4 + 0xf.cd42bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a361243a89663e81e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a361243a89663e81e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a361243a89663e81e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a38p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a3613p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42a15bf9a3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a361243a89663e84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a361243a89663e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x2.82b798p-4 + 0xf.cd42bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x2p-148 + 0x2p-148 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.2cdb84p-4 + 0xf.ae888f0455f6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.2cdb855bcb8d8p-4 + 0xf.ae888p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.2cdb855bcb8d8p-4 + 0xf.ae889p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dc2be0945a6p-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab873d09e61e798p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab874p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab873d09e61e797a27ebc9f508p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab873d09e61e798p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e798p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.3b8f94p-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f94p-4 + 0xf.ab873p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.3b8f9p-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57c772fe5f777d04p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab754p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2e34p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2e34p-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2e34p-4 + 0xf.a0c58a83e57c772p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2e34p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c772fe5f777d04p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c772p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2ep-4 + 0xf.a0c59p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57c772fe5f777d04p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57c772fe5f777d04p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57c772p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c58a83e57cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c59p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab757d097f83d2fp-4 + 0xf.a0c59p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab758p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab758p-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab758p-4 + 0xf.a0c58a83e57c772p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aab758p-4 + 0xf.a0c58a83e57c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58a83e57c772fe5f777d04p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.6e17119fb8aacp-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57cp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57c772fe5f777d043a8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57c772fe5f777d044p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.6e171p-4 + 0xf.a0c58p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d118p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d11bfdp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bcp-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3501173c8004ccp-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d118p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d11bfd30b038eep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d619a8d118p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d619a8d11bfd30b038eep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d619a8d11bfd30b038eep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d619a8d11bfdp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d6p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d619a8d12p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d6p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d7p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.bea2cp-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d005dcbb5516d544p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d005dcbb5516d5479p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d08p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3d1b06d005dcbb5516d544p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34cp-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34p-4 + 0xf.859b3d1b06d005dcbb5516d544p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34p-4 + 0xf.859b3d1b06d005dcbb5516d5479p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d34p-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b3d1b06d005ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacd9c6952d35p-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b3d1b06d005ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebeacp-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ebebp-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06d08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06d005dcbb5516d548p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06d005ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06d08p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0a4p-4 + 0xf.859b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d005dcbb5516d544p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3d1b06d08p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x3.e1d0ap-4 + 0xf.859b3p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x3.e1d0ap-4 + 0xf.859b4p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1af8e3ce8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1af8e3cfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1af8e3ce8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1af8e3cec09p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.0dbf7d40fe1bp-4 + 0xf.7a5c1af8e3cec09p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.0dbf8p-4 + 0xf.7a5c1af8e3cfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.0dbf8p-4 + 0xf.7a5c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e368078p-4 + 0xf.5f4a550c9d75e3bb1839d865f0dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e368078p-4 + 0xf.5f4a550c9d75e3bb1839d865f0dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e368078p-4 + 0xf.5f4a550c9d75e3cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209cp-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209cp-4 + 0xf.5f4a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e36807acb1e5214b209cp-4 + 0xf.5f4a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e36807acb1e5214b209dep-4 + 0xf.5f4a550c9d75e3cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e36807acb1e5214b209dep-4 + 0xf.5f4a550c9d76p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209ep-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209ep-4 + 0xf.5f4a550c9d75e3cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209ep-4 + 0xf.5f4a5p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb1e5214b209ep-4 + 0xf.5f4a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a550c9d75e3bb1839d865f4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a5p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d758p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d75e3bb1839d865f0dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d75e3bb1839d865fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d76p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d758p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d75e3bb1839d865f0dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a550c9d75e3bb1839d865f4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a2e36807cp-4 + 0xf.5f4a5p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d75e3bb1839d865f4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a550c9d76p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a6p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x4.7017ap-4 + 0xf.5f4a550c9d758p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017ap-4 + 0xf.5f4a550c9d75e3bb1839d865f0dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017ap-4 + 0xf.5f4a550c9d75e3bb1839d865f4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017ap-4 + 0xf.5f4a550c9d75e3bb1839d865fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.7017ap-4 + 0xf.5f4a550c9d75e3bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.d9e8c8p-4 + 0xf.3f303p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x4.d9e8cp-4 + 0xf.3f30281507d8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x4p-1076 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-1076 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-16448 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-16448 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-16496 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4p-16496 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.03p-4 + 0xf.31ep-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c58p-4 + 0xf.22363bf989d98p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22363bf989d98p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c58p-4 + 0xf.22364p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22363bf989d9b5cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb14p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb14p-4 + 0xf.22364p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363bf989d98p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363bf989d9b5cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb1p-4 + 0xf.22364p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x5.318c6p-4 + 0xf.22363bf989d98p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c6p-4 + 0xf.22363bf989dap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.318c6p-4 + 0xf.22363p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.b06b680ea2ccp-4 + 0xe.f452b965da9fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452b965da9fp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x5.b06b7p-4 + 0xe.f452b965da9fp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x5.b06b7p-4 + 0xe.f452bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.b06b7p-4 + 0xe.f452bp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x5.ba8cep-4 + 0xe.f0742p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x5.dbd1p-4 + 0xe.e387ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.02fd5037c4792efp-4 + 0xe.d3e21p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd5037c4794p-4 + 0xe.d3e2086dcca8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e21p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e2p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e2086dcca8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e21p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x6.02fd58p-4 + 0xe.d3e2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.02fd5p-4 + 0xe.d3e21p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x6.02fd5p-4 + 0xe.d3e2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.1c643068cd125ef6f796a57d2p-4 + 0xe.c97c2018b428p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125ef6f796a57d2p-4 + 0xe.c97c3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c2018b428p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd128p-4 + 0xe.c97c2p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428257p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b4288p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c3p-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x6.1c643p-4 + 0xe.c97c2018b4288p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cb019p-4 + 0xe.c36a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a599a86ba8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cb08p-4 + 0xe.c36a599a86bbp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a599a86ba8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a599a86ba8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cbp-4 + 0xe.c36a599a86baf8febep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a599a86ba8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a599a86baf8fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a599a86baf9p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a6p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.2aff83ae6467cp-4 + 0xe.c36a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a599a86ba8p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.2aff83ae6468p-4 + 0xe.c36a5p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86ba8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86baf9p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.59feap-4 + 0xe.af6f9p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b48p-4 + 0xe.8893cbb44925p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.b10b48p-4 + 0xe.8893cbb44925p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b48p-4 + 0xe.8893dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520214p-4 + 0xe.8893cbb44925p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520214p-4 + 0xe.8893cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520217b6p-4 + 0xe.8893cbb449253a1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cbb449253a1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cbb44925p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cbb44925p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893dp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb449258p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x6.b10b5p-4 + 0xe.8893cbb449258p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.b10b5p-4 + 0xe.8893cbb44925p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e510a95p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e028p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e028p-4 + 0xd.e655fp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae1319143490849p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a94307614f1a74p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e510a95p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349084p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349086p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349086p-4 + 0xd.e655e694e510a94307614f1a74p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349086p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae131914349086p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae131914349086p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655e694e510a94307614f1a74p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e510a95p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e5108p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca928p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca928p-4 + 0xd.e655e694e510a94p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655e694e510a94307614f1a77b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655e694e510a94307614f1a78p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.eca92p-4 + 0xd.e655fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10d384p-4 + 0xd.e2d65939160b31066ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca10d384p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10d8p-4 + 0xd.e2d66p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160b311p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160b31p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160b31p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65939160bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca10dp-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65939160b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65939160bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d66p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1eca4p-4 + 0xd.e2d66p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65939160b31p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65939160b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65939160bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d20a1ecap-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b31066ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b31066ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8d8p-4 + 0xd.e2d65939160b8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f2c8d8p-4 + 0xd.e2d66p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160b311p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160b311p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f2c8dp-4 + 0xd.e2d65939160bp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f2c8dp-4 + 0xd.e2d65p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f4b083cb0bp-4 + 0xd.e1bf04f3688p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bf04f3688p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x7.f4b088p-4 + 0xd.e1bfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x7.f4b08p-4 + 0xd.e1bf04f3688p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x8.88faep-4 + 0xd.888bcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.88fafp-4 + 0xd.888bdp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.479468b09a37p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.ecbf810c4ae6p-4 + 0xd.47946p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x8.ecbf8p-4 + 0xd.479468b09a37p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x8.ecbf8p-4 + 0xd.479468b09a37p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x8.ecbf8p-4 + 0xd.47946p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.ecbf9p-4 + 0xd.479468b09a37p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x8p-1076 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-1076 + 0x8p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-1076 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 + 0x8p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 + 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8p-152 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-152 - 0xf.8p+124 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0x8p-152 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-16448 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8p-16448 - 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.a9cp-4 + 0xc.c0ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b4085cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b408p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317c470b41p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b9688p-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b968a66p-4 + 0xc.b9317c470b41p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b968a66p-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b386fc56b969p-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317c470b41p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.b57bp-4 + 0xc.b7b4p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246ba85a5c8p-4 + 0xc.ae53ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bap-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bap-4 + 0xc.ae53ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53ep-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53de1d5a7c8b1p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53dp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a24p-4 + 0xc.ae53ep-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8b0f6df3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8b0f6df3p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53dp-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53ep-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0x9.c1b6bp-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6bp-4 + 0xc.ae53dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51p-4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c199f62998856b8008p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1504p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a51p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f15065p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a51p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7e54a156f1508p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c199f62998856b8008p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7ep-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b8008p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b8008p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a52p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c18p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c199f62998856b84p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199f62998856b8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0dp-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867932966df58ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfb1b08p-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966dfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df589p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342ep-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df58ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624348p-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e2624348p-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966dfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df8p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.afc57p-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.afc58p-4 + 0xb.e867932966df5894a70c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e867932966dfp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e867ap-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.b96da19075eap-8 + 0xf.fc67818f89d2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.b96da19075eap-8 + 0xf.fc679p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc67818f89d2p-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc678p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.b96dap-8 + 0xf.fc678p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.b96dap-8 + 0xf.fc679p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.b96dbp-8 + 0xf.fc67818f89d2p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51cbp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.e7de8p-4 + 0xb.b51cb9f04d4dp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.e7de8p-4 + 0xb.b51cbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xa.e7de9p-4 + 0xb.b51cb9f04d4dp-4 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xa.e7de9p-4 + 0xb.b51cbp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.e7de9p-4 + 0xb.b51cbp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.e7de9p-4 + 0xb.b51ccp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a043561d0f42p-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f24p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f25p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a6p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f24p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f24p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6058859a584e748p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6059p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a68p-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f24p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f25p-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f25p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xb.263a77543bp-4 + 0xb.79c9ap-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog (0xb.263a7p-4 + 0xb.79c9ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xb.263a7p-4 + 0xb.79c9bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+124 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.8p+124 - 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog (0xf.8p+16380 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x4p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x4p-16496 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.fffffp+124 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x4p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x4p-16496 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 - 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.ffffffffffff8p+1020 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: clog (0xf.fffffp+124 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0xf.ffffffffffff8p-1004 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffffffffffffp-15004 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffp-104 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# clog10 +Test "Imaginary part of: clog10 (-0 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-0x1.0000000123456p0 + 0x1.2345678p-30 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+1023 - 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1.fp+127 + 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0x1.fp+127 - 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 + 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-149 + 0x1.fp+127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-0x1p-149 - 0x1.fp+127 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-1.0 + 0x1.234566p-20 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (-2 - 3 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-2 - 3 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (-3 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-3 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + 1 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf + inf i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (-inf - 0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (-inf - 1 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x0.fffffffffffff8p0 + 0x0.fffffffffffff8p-1000 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x0.ffffffp0 + 0x0.ffffffp-100 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.00000000000000123456789abcp0 + 0x1.23456789p-60 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-10 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.000566p0 + 0x1.234p-100 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.234566p-30 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1.234566p-50 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.234566p-50 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1.234566p-60 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1.234566p-60 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.fffffep+127 + 0x1.fffffep+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x1.fffffep+127 + 1.0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 + 0x1.fp+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 + 0x1p+16383 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x10673dd0f2481p-51 + 0x7ef1d17cefbd2p-51 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1415bcaf2105940d49a636e98ae59p-115 + 0x7e6a150adfcd1b0921d44b31f40f4p-115 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x15cfbd1990d1ffp-53 + 0x176a3973e09a9ap-53 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1a6p-10 + 0x3a5p-10 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1df515eb171a808b9e400266p-95 + 0x7c71eb0cd4688dfe98581c77p-95 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x1p-1073 + 0x1p-1073 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-1074 - 0x1.fp+1023 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-147 + 0x1p-147 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-149 + 0x1p-149 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-149 - 0x1.fp+127 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-509 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-510 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-511 + 1.0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0x1p-61 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-62 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x1p-63 + 1.0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x2818p-15 + 0x798fp-15 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x3f96469050f650869c2p-75 + 0x6f16b2c9c8b05988335p-75 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": +double: 1 +idouble: 1 +Test "Real part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x4d9c37e2b5cb4533p-63 + 0x65c98be2385a042ep-63 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x55cb6d0c83af5p-55 + 0x7fe33c0c7c4e90p-55 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x602fd5037c4792efp-64 + 0xed3e2086dcca80b8p-64 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x6241ef0da53f539f02fad67dabp-106 + 0x3fb46641182f7efd9caa769dac0p-106 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x6b10b4f3520217b6p-64 + 0xe8893cbb449253a1p-64 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0xdb85c467ee2aadd5f425fe0f4b8dp-114 + 0x3e83162a0f95f1dcbf97dddf410eap-114 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (0xfd95243681c055c2632286921092p-113 + 0x1bccabcd29ca2152860ec29e34ef7p-113 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: clog10 (3 + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (3 - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (inf + inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: clog10 (inf - inf i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# cos +Test "cos (-0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos (-0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 +Test "cos (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0x1.921fb54442d18p+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0x1p+120)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos (0x1p+28)": +ildouble: 1 +ldouble: 1 +Test "cos (0x2.182a4705ae6cb08cb7665c1eacf6p+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0x2.182a4705ae6ccp+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0x7p+0)": +float: 1 +ifloat: 1 +Test "cos (0x8p+124)": +float: 1 +ifloat: 1 +Test "cos (0xap+0)": +ildouble: 1 +ldouble: 1 +Test "cos (0xc.d4967p-4)": +float: 1 +ifloat: 1 +Test "cos (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos (0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos (0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 + +# cos_downward +Test "cos_downward (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x4p-16496)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (-0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.000002p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x1.000004p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x1.000006p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x1.0c1522p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x1.0c1524p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x1.921fb4p+0)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18469898cc517018p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18469898cc51701b8p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18469898cc51702p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1.921fb54442d19p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1.921fb6p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x1p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x1p+120)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x1p+28)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a44p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0x2.182a4705ae6cap+0)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eacf4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eacf6p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb08cp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6cb09p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a4705ae6ccp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2.182a48p+0)": +float: 1 +ifloat: 1 +Test "cos_downward (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_downward (0x2p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x3p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_downward (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x4p-16496)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p+0)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_downward (0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0x9p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xa.217bap+12)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xap+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xc.d4966p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_downward (0xc.d4967p-4)": +float: 1 +ifloat: 1 +Test "cos_downward (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_downward (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_downward (0xf.fffffffffffffffp+16380)": +ildouble: 2 +ldouble: 2 +Test "cos_downward (0xf.fffffp+124)": +double: 1 +idouble: 1 + +# cos_tonearest +Test "cos_tonearest (-0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (-0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x1.921fb54442d18p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x1p+120)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x1p+28)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x2.182a4705ae6cb08cb7665c1eacf6p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x2.182a4705ae6ccp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0x7p+0)": +float: 1 +ifloat: 1 +Test "cos_tonearest (0x8p+124)": +float: 1 +ifloat: 1 +Test "cos_tonearest (0xap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0xc.d4967p-4)": +float: 1 +ifloat: 1 +Test "cos_tonearest (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_tonearest (0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 + +# cos_towardzero +Test "cos_towardzero (-0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x4p-16496)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (-0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000002p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb54442d18469898cc51701b8p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.921fb54442d18469898cc51701b9p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb6p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1p+120)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (0x2.182a44p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6cap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.182a48p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p-1024)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-1076)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x4p-16496)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p+1020)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p-16448)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0x8p-972)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xa.217bap+12)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_towardzero (0xf.fffffp+124)": +double: 1 +idouble: 1 + +# cos_upward +Test "cos_upward (-0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (-0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (-0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.000002p+0)": +float: 1 +ifloat: 1 +Test "cos_upward (0x1.000004p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x1.000005bc7d86dp+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.000006p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x1.0c1522p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x1.0c152382d7366p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.0c1524p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x1.921fb4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18469898cc517018p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18469898cc51701b9p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18469898cc51702p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d18p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x1.921fb6p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1p+0)": +float: 1 +ifloat: 1 +Test "cos_upward (0x1p+120)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x1p+28)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a44p+0)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6cap+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eacf4p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eacf6p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eacp+0)": +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.182a4705ae6cb08cb7665c1eadp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb08cp+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6cb09p+0)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2.182a48p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x2.1e19e4p+72)": +float: 1 +ifloat: 1 +Test "cos_upward (0x2p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x2p+64)": +double: 1 +idouble: 1 +Test "cos_upward (0x3p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x4p+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0x5p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x6p+0)": +double: 1 +idouble: 1 +Test "cos_upward (0x7p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0x8p+124)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0x9p+0)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xa.217bap+12)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "cos_upward (0xap+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xc.d4966p-4)": +float: 1 +ifloat: 1 +Test "cos_upward (0xc.d4967p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_upward (0xf.ffffcp+124)": +double: 1 +idouble: 1 +Test "cos_upward (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "cos_upward (0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 + +# cosh +Test "cosh (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh (-0x2.c5d374p+12)": +ldouble: 1 +Test "cosh (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh (-0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh (-0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh (-0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh (0x2.c5d374p+12)": +ldouble: 1 +Test "cosh (0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh (0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh (0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh (0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh (0x2.c679dp+8)": +double: 1 +idouble: 1 + +# cosh_downward +Test "cosh_downward (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 2 +Test "cosh_downward (-0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 1 +Test "cosh_downward (-0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 2 +Test "cosh_downward (-0x2.c5d37700c6bbp+12)": +ldouble: 2 +Test "cosh_downward (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_downward (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (-0x5.96a7ep+4)": +float: 1 +ifloat: 1 +Test "cosh_downward (0x1.6p+4)": +double: 1 +idouble: 1 +Test "cosh_downward (0x1.7p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_downward (0x2.c5d37700c6bb03a4p+12)": +ldouble: 2 +Test "cosh_downward (0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 1 +Test "cosh_downward (0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 2 +Test "cosh_downward (0x2.c5d37700c6bbp+12)": +ldouble: 2 +Test "cosh_downward (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_downward (0x5.96a7ep+4)": +float: 1 +ifloat: 1 + +# cosh_tonearest +Test "cosh_tonearest (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (-0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_tonearest (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh_tonearest (-0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh_tonearest (-0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh_tonearest (-0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_tonearest (0x2.c5d374p+12)": +ldouble: 1 +Test "cosh_tonearest (0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh_tonearest (0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh_tonearest (0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh_tonearest (0x2.c5e3acp+8)": +double: 1 +idouble: 1 +Test "cosh_tonearest (0x2.c679dp+8)": +double: 1 +idouble: 1 + +# cosh_towardzero +Test "cosh_towardzero (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 2 +Test "cosh_towardzero (-0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 1 +Test "cosh_towardzero (-0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 2 +Test "cosh_towardzero (-0x2.c5d37700c6bbp+12)": +ldouble: 2 +Test "cosh_towardzero (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x5.96a7ep+4)": +float: 1 +ifloat: 1 +Test "cosh_towardzero (0x1.6p+4)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x1.7p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_towardzero (0x2.c5d37700c6bb03a4p+12)": +ldouble: 2 +Test "cosh_towardzero (0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 1 +Test "cosh_towardzero (0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 2 +Test "cosh_towardzero (0x2.c5d37700c6bbp+12)": +ldouble: 2 +Test "cosh_towardzero (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x5.96a7ep+4)": +float: 1 +ifloat: 1 + +# cosh_upward +Test "cosh_upward (-0x1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_upward (-0x2.c5d374p+12)": +ldouble: 3 +Test "cosh_upward (-0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh_upward (-0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 2 +Test "cosh_upward (-0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh_upward (-0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh_upward (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x5.96a7e8p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (-0x5.96a7ep+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "cosh_upward (0x1.6p+4)": +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x1.8p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "cosh_upward (0x2.c5d374p+12)": +ldouble: 3 +Test "cosh_upward (0x2.c5d37700c6bb03a4p+12)": +ldouble: 1 +Test "cosh_upward (0x2.c5d37700c6bb03a6c24b6c9b494cp+12)": +ldouble: 2 +Test "cosh_upward (0x2.c5d37700c6bb03a6c24b6c9b49p+12)": +ldouble: 1 +Test "cosh_upward (0x2.c5d37700c6bbp+12)": +ldouble: 1 +Test "cosh_upward (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_upward (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_upward (0x3.2p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (0x5.96a7e8p+4)": +double: 1 +idouble: 1 +Test "cosh_upward (0x5.96a7ep+4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + +# cpow +Test "Real part of: cpow (0x2p+0 + +0 i, 0xap+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": +float: 2 +ifloat: 2 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, +0 + 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: cpow (0xcp-4 + 0x1.4p+0 i, +0 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0x1p+0 + 0x1p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Real part of: cpow (0xcp-4 + 0x1.4p+0 i, 0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 4 +idouble: 1 +ifloat: 4 +ildouble: 4 +ldouble: 4 + +# csin +Test "Real part of: csin (-0.75 + 11357.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (-0.75 + 710.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (-0.75 + 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csin (-0.75 + 89.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (-0.75 - 11357.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (-0.75 - 710.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (-0.75 - 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csin (-0.75 - 89.5 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csin (-2 - 3 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 + 1.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 + 11357.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 + 710.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 + 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csin (0.75 + 89.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 - 11357.25 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 - 710.5 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0.75 - 89.5 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csin (0.75 - 89.5 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csin (0x1p-1074 + 1440 i)": +double: 1 +idouble: 1 +Test "Real part of: csin (0x1p-16434 + 22730 i)": +ildouble: 1 +ldouble: 1 + +# csinh +Test "Imaginary part of: csinh (-11357.25 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-11357.25 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (-2 - 3 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-2 - 3 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (-89.5 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-89.5 + 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (-89.5 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (-89.5 - 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (0.75 + 1.25 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csinh (11357.25 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (11357.25 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csinh (22730 + 0x1p-16434 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (710.5 + 0.75 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (710.5 - 0.75 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (89.5 + 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (89.5 + 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csinh (89.5 - 0.75 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csinh (89.5 - 0.75 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# csqrt +Test "Imaginary part of: csqrt (-0 - 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x2p+0 + 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4.0000000000000000000000000004p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4.0000000000000000000000000004p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x4.0000000000000000000000000004p-16384 - 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000008p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x4.0000000000000008p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000000008p-16384 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.0000000000004p-1024 - 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (-0x4.0000000000004p-1024 - 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4.000008p-128 - 0x4.000008p-128 i)": +double: 1 +idouble: 1 +Test "Real part of: csqrt (-0x4p-16384 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x4p-16384 - 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (-0x8p-152 - 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-16440 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-16440 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x1p-5000 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000000000000000004p-16384 + 0x4.0000000000000000000000000004p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000000000000000004p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000000000000000004p-16384 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0x4.0000000000000000000000000004p-16384 + 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000000000000000004p-16384 + 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0x4.0000000000000008p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000008p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000000008p-16384 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.0000000000004p-1024 + 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4.000008p-128 + 0x4.000008p-128 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-1076 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x4p-16384 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-16384 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-16448 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x4p-16496 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+1020 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+1020 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+124 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+16380 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p+16380 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4.0000000000000008p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4.0000000000004p-1024 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-16384 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x4p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-16444 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0x8p-152 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0x8p-16448 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.8p+16380 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0xf.8p+16380 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.8p+16380 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffff8p+1020 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: csqrt (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.ffffffffffffbffffffffffffcp+1020 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0x1p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: csqrt (0xf.fffffp+124 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 + +# ctan +Test "Real part of: ctan (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb54442d18p+0 + +0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p+0 + 0x1.63p+8 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x1p+0 + 0x2.dp+4 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x1p+0 + 0x2.fp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0x8p+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0x8p+124 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan (0x8p+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0x8p+16380 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + +# ctan_downward +Test "Real part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +double: 3 +idouble: 3 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_downward (-0x2p+0 - 0x3p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + +0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0x1p+0 + 0x2.dp+4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x8p+1020 + 0x1p+0 i)": +double: 6 +idouble: 6 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0x8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x8p+124 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0x8p+16380 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_downward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 3 +idouble: 3 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_downward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_downward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_downward (0xf.fffffp+124 + 0x1p+0 i)": +double: 5 +float: 5 +idouble: 5 +ifloat: 5 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_downward (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 + +# ctan_tonearest +Test "Real part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + +0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb4p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d18p+0 + +0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x1.63p+8 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x2.dp+4 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x1p+0 + 0x2.fp+4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0x8p+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0x8p+124 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_tonearest (0x8p+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0x8p+16380 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_tonearest (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_tonearest (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + +# ctan_towardzero +Test "Real part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.dp+4 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x8p+1020 + 0x1p+0 i)": +double: 5 +idouble: 5 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x8p+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0x8p+16380 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_towardzero (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_towardzero (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 + +# ctan_upward +Test "Real part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb4p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb4p+0 + 0x8p-152 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + +0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-152 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + +0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-152 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1.921fb54442d19p+0 + 0x8p-16448 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + +0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x4p-1076 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x8p-16448 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63ap+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x1p+0 + 0x1.63p+8 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.63p+8 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x1.6dp+8 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x1.6dp+8 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.dp+4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_upward (0x1p+0 + 0x2.fp+4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": +double: 2 +idouble: 2 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctan_upward (0x8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0x8p+124 + 0x1p+0 i)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctan_upward (0x8p+124 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_upward (0x8p+16380 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctan_upward (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctan_upward (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctan_upward (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctan_upward (0xf.ffffffffffffbffffffffffffcp+1020 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctan_upward (0xf.fffffp+124 + 0x1p+0 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 2 +ldouble: 2 + +# ctanh +Test "Imaginary part of: ctanh (+0 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c234c4c6628b80dcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdaa22168cp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdap-4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctanh (+0 + 0xc.90fdbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0x1.63p+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0x8p+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0x8p+124 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+124 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh (0x1p+0 + 0x8p+16380 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1p+0 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x2.dp+4 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x2.fp+4 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-16448 + 0x1.921fb4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh (0xcp-4 + 0x1.4p+0 i)": +float: 2 +ifloat: 2 + +# ctanh_downward +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234c4c6628b80cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234c4c6628b80dc8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234c4c6628b80dcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (+0 + 0xc.90fdap-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": +double: 4 +float: 1 +idouble: 4 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+1020 i)": +double: 6 +idouble: 6 +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+124 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x1p+0 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0x8p+16380 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 3 +idouble: 3 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_downward (0x1p+0 + 0xf.fffffp+124 i)": +double: 5 +float: 5 +idouble: 5 +ifloat: 5 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x2.dp+4 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_downward (0x4p-1076 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_downward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb4p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_downward (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_downward (0xcp-4 + 0x1.4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + +# ctanh_tonearest +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c234c4c6628b80dcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdaa22168cp-4 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdap-4 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (+0 + 0xc.90fdbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (0x1.63p+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+124 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+124 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0x8p+16380 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x2.dp+4 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x2.fp+4 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_tonearest (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_tonearest (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": +float: 2 +ifloat: 2 + +# ctanh_towardzero +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234c4c6628b80cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234c4c6628b80dc8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234c4c6628b80dcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 3 +ldouble: 3 +Test "Real part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctanh_towardzero (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+1020 i)": +double: 5 +idouble: 5 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+16380 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 5 +ldouble: 5 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 4 +ldouble: 4 +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# ctanh_upward +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (+0 + 0x1.921fb6p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234c4c6628b80cp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234c4c6628b80dc8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234c4c6628b81p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c234p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168c235p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdaa22168cp-4 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdap-4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_upward (+0 + 0xc.90fdbp-4 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (-0x2p+0 - 0x3p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Real part of: ctanh_upward (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1.63ap+12 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1.63p+12 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1.63p+8 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1.63p+8 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x1.6dp+8 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1.6dp+8 + 0x1p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+1020 i)": +double: 2 +idouble: 2 +ildouble: 5 +ldouble: 5 +Test "Real part of: ctanh_upward (0x1p+0 + 0x8p+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+124 i)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0x8p+16380 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.ffffffffffffbffffffffffffcp+1020 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x1p+0 + 0xf.fffffp+124 i)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x2.dp+4 + 0x1p+0 i)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x2.fp+4 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x2.fp+4 + 0x1p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb4p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "Real part of: ctanh_upward (0x4p-1076 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x4p-1076 + 0x1.921fb6p+0 i)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb54442d19p+0 i)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "Real part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x8p-152 + 0x1.921fb6p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d1846ap+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d18p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 3 +ldouble: 3 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb54442d19p+0 i)": +ildouble: 2 +ldouble: 2 +Test "Imaginary part of: ctanh_upward (0x8p-16448 + 0x1.921fb6p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: ctanh_upward (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: ctanh_upward (0xcp-4 + 0x1.4p+0 i)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 + +# erf +Test "erf (-0x7.ffffffffffffcp-4)": +ildouble: 1 +ldouble: 1 +Test "erf (0x1.4p+0)": +double: 1 +idouble: 1 + +# erfc +Test "erfc (-0x8p-4)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "erfc (0x1.ap+4)": +ildouble: 1 +ldouble: 1 +Test "erfc (0x1.bp+4)": +ildouble: 1 +ldouble: 1 +Test "erfc (0x1.cp+4)": +ildouble: 1 +ldouble: 1 +Test "erfc (0x2p+0)": +double: 1 +idouble: 1 +Test "erfc (0x3.ee6078p+0)": +double: 1 +idouble: 1 +Test "erfc (0x4.2p+0)": +double: 1 +idouble: 1 +Test "erfc (0x6.4p+4)": +ildouble: 1 +ldouble: 1 +Test "erfc (0x6.a8p+4)": +ildouble: 1 +ldouble: 1 +Test "erfc (0x7.fe8008p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "erfc (0x7.fffd6p+0)": +float: 1 +ifloat: 1 +Test "erfc (0x7.ffff2p+0)": +ildouble: 1 +ldouble: 1 + +# exp10 +Test "exp10 (-0x1.31p+8)": +double: 1 +idouble: 1 +Test "exp10 (-0x1p+0)": +double: 1 +idouble: 1 +Test "exp10 (-0x2.4p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "exp10 (0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "exp10 (0x1.348e45573a1dd72cp+8)": +ildouble: 1 +ldouble: 1 +Test "exp10 (0x1.348e46p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10 (0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10 (0x3p+0)": +double: 1 +idouble: 1 + +# exp10_downward +Test "exp10_downward (-0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (-0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (-0x1p+0)": +ildouble: 2 +ldouble: 2 +Test "exp10_downward (-0x2.4p+4)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (0x1.348e44p+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_downward (0x1.348e45573a1dd72cp+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (0x1.348e45573a1ddp+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (0x1.348e45573a1dep+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (0x2.4p+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "exp10_downward (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "exp10_downward (0xcp-4)": +ildouble: 1 +ldouble: 1 + +# exp10_tonearest +Test "exp10_tonearest (-0x1.31p+8)": +double: 1 +idouble: 1 +Test "exp10_tonearest (-0x1p+0)": +double: 1 +idouble: 1 +Test "exp10_tonearest (-0x2.4p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "exp10_tonearest (0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "exp10_tonearest (0x1.348e45573a1dd72cp+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_tonearest (0x1.348e46p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_tonearest (0x2.4p+4)": +double: 1 +idouble: 1 +Test "exp10_tonearest (0x3p+0)": +double: 1 +idouble: 1 + +# exp10_towardzero +Test "exp10_towardzero (-0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (-0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (-0x1p+0)": +ildouble: 2 +ldouble: 2 +Test "exp10_towardzero (-0x2.4p+4)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0x1.348e44p+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_towardzero (0x1.348e45573a1dd72cp+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0x1.348e45573a1ddp+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0x1.348e45573a1dep+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0x2.4p+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "exp10_towardzero (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "exp10_towardzero (0xcp-4)": +ildouble: 1 +ldouble: 1 + +# exp10_upward +Test "exp10_upward (-0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_upward (-0x1.344p+12)": +float: 1 +ifloat: 1 +Test "exp10_upward (-0x1.86ap+16)": +float: 1 +ifloat: 1 +Test "exp10_upward (-0x2.4p+4)": +ildouble: 1 +ldouble: 1 +Test "exp10_upward (-0xf.424p+16)": +float: 1 +ifloat: 1 +Test "exp10_upward (-0xf.fffffp+124)": +float: 1 +ifloat: 1 +Test "exp10_upward (0x1.31p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_upward (0x1.344p+12)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x1.348e44p+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_upward (0x1.348e45573a1dd72cp+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x1.348e45573a1ddp+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x1.348e45573a1dep+8)": +ildouble: 1 +ldouble: 1 +Test "exp10_upward (0x1.348e46p+8)": +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0x2.4p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "exp10_upward (0x3p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "exp10_upward (0xcp-4)": +ildouble: 2 +ldouble: 2 + +# exp2 +Test "exp2 (0x6.48p+4)": +ildouble: 1 +ldouble: 1 + +# exp_downward +Test "exp_downward (0x2p+0)": +double: 1 +idouble: 1 +Test "exp_downward (0x3p+0)": +double: 1 +idouble: 1 +Test "exp_downward (0x5.8b9028p+4)": +double: 1 +idouble: 1 +Test "exp_downward (0xcp-4)": +double: 1 +idouble: 1 + +# exp_towardzero +Test "exp_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "exp_towardzero (0x3p+0)": +double: 1 +idouble: 1 +Test "exp_towardzero (0x5.8b9028p+4)": +double: 1 +idouble: 1 +Test "exp_towardzero (0xcp-4)": +double: 1 +idouble: 1 + +# exp_upward +Test "exp_upward (-0x2.e870a4p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.e870a7e5e88c2p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.e870a7e5e88cp+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.e870a8p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.ebe224p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.ebe227861639p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x2.ebe228p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0x4.d2p+8)": +double: 1 +idouble: 1 +Test "exp_upward (-0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "exp_upward (-0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "exp_upward (-0xf.fffffffffffffffffffffffffff8p+16380)": +ildouble: 1 +ldouble: 1 +Test "exp_upward (-0xf.fffffffffffffffp+16380)": +ildouble: 1 +ldouble: 1 +Test "exp_upward (-0xf.fffffp+124)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "exp_upward (0x1p+0)": +double: 1 +idouble: 1 +Test "exp_upward (0x2.c5cp+8)": +double: 1 +idouble: 1 +Test "exp_upward (0x3.2p+4)": +double: 1 +idouble: 1 + +# expm1 +Test "expm1 (-0x1p+4)": +ildouble: 1 +ldouble: 1 +Test "expm1 (-0x2.6p+4)": +ildouble: 1 +ldouble: 1 +Test "expm1 (-0x2.cp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1 (-0x4.ep+4)": +ildouble: 1 +ldouble: 1 +Test "expm1 (-0x4.fp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1 (-0x8p-32)": +ildouble: 1 +ldouble: 1 +Test "expm1 (0x1.f4p+8)": +double: 1 +idouble: 1 +Test "expm1 (0x1p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "expm1 (0xcp-4)": +double: 1 +idouble: 1 + +# expm1_downward +Test "expm1_downward (-0x1.1p+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (-0x1p-100)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (-0x1p-32)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (-0x1p-64)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (-0x2.4p+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (-0x2.dp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (-0x2.ep+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (-0x4.bp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (-0x4p-12)": +ildouble: 1 +ldouble: 1 +Test "expm1_downward (0x1.f4p+8)": +double: 1 +idouble: 1 +Test "expm1_downward (0x3.2p+4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "expm1_downward (0x7.fp+4)": +double: 1 +idouble: 1 + +# expm1_tonearest +Test "expm1_tonearest (-0x1p+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_tonearest (-0x2.6p+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_tonearest (-0x2.cp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_tonearest (-0x4.ep+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_tonearest (-0x4.fp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_tonearest (-0x8p-32)": +ildouble: 1 +ldouble: 1 +Test "expm1_tonearest (0x1.f4p+8)": +double: 1 +idouble: 1 +Test "expm1_tonearest (0x1p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "expm1_tonearest (0xcp-4)": +double: 1 +idouble: 1 + +# expm1_towardzero +Test "expm1_towardzero (-0x1.1p+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (-0x1p-100)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (-0x1p-32)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (-0x1p-64)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (-0x2.4p+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (-0x2.dp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (-0x2.ep+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (-0x4.bp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (-0x4.fp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (-0x4p-12)": +ildouble: 1 +ldouble: 1 +Test "expm1_towardzero (-0x4p-52)": +float: 1 +ifloat: 1 +Test "expm1_towardzero (-0x8p-32)": +float: 1 +ifloat: 1 +Test "expm1_towardzero (0x1.f4p+8)": +double: 1 +idouble: 1 +Test "expm1_towardzero (0x3.2p+4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "expm1_towardzero (0x7.fp+4)": +double: 1 +idouble: 1 + +# expm1_upward +Test "expm1_upward (-0x1.1p+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x1p-100)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x1p-32)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x1p-64)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x2.4p+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x2.dp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x2.ep+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x4.bp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x4.fp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x4p-12)": +ildouble: 1 +ldouble: 1 +Test "expm1_upward (-0x4p-52)": +float: 1 +ifloat: 1 +Test "expm1_upward (-0x8p-32)": +float: 1 +ifloat: 1 +Test "expm1_upward (0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "expm1_upward (0x1p-100)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "expm1_upward (0x1p-32)": +float: 1 +ifloat: 1 +Test "expm1_upward (0x1p-64)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "expm1_upward (0x4p-52)": +float: 1 +ifloat: 1 +Test "expm1_upward (0x7.fp+4)": +ildouble: 1 +ldouble: 1 +Test "expm1_upward (0x8p-32)": +float: 1 +ifloat: 1 + +# gamma +Test "gamma (-0x1p-20)": +double: 1 +idouble: 1 +Test "gamma (-0x1p-40)": +ildouble: 1 +ldouble: 1 +Test "gamma (-0x1p-64)": +ildouble: 1 +ldouble: 1 +Test "gamma (-0x2p-16)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "gamma (-0x4p-12)": +double: 1 +idouble: 1 +Test "gamma (-0x4p-32)": +ildouble: 1 +ldouble: 1 +Test "gamma (-0x8p-28)": +ildouble: 1 +ldouble: 1 +Test "gamma (-0x8p-4)": +ildouble: 1 +ldouble: 1 +Test "gamma (-0x8p-8)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "gamma (0x1.3333333333333332p+0)": +ildouble: 1 +ldouble: 1 +Test "gamma (0x1.3333333333333333333333333333p+0)": +ildouble: 1 +ldouble: 1 +Test "gamma (0x1p-60)": +ildouble: 1 +ldouble: 1 +Test "gamma (0x4p-12)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "gamma (0x4p-32)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "gamma (0x4p-72)": +ildouble: 1 +ldouble: 1 +Test "gamma (0x8p-8)": +ildouble: 1 +ldouble: 1 +Test "gamma (0xb.3333333333333333333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "gamma (0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "gamma (0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "gamma (0xb.333333333333p-4)": +double: 1 +idouble: 1 +Test "gamma (0xb.33333p-4)": +double: 1 +idouble: 1 + +# hypot +Test "hypot (-0xb.3333333333333333333333333338p-4, -0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.3333333333333333333333333338p-4, 0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333333333333333333p-4, -0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333333333333333333p-4, 0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333333333333333333333334p-4, -0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333333333333333333333334p-4, 0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.3333333333333333333333333p-4, -0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.3333333333333333333333333p-4, -0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.3333333333333333333333333p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.3333333333333333333333333p-4, 0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333333p-4, -0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333333p-4, -0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333333p-4, -0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333333p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333333p-4, 0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333333p-4, 0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333334p-4, -0xc.666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.333333333333334p-4, 0xc.666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.3333333333338p-4, -0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.3333333333338p-4, -0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.3333333333338p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.3333333333338p-4, 0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333p-4, -0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333p-4, -0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333p-4, -0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333p-4, -0xc.666666666666667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333p-4, 0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333p-4, 0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33333p-4, 0xc.666666666666667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33334p-4, -0xc.6666666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33334p-4, -0xc.6666666666668p+0)": +double: 1 +idouble: 1 +Test "hypot (-0xb.33334p-4, 0xc.6666666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xb.33334p-4, 0xc.6666666666668p+0)": +double: 1 +idouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, -0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, -0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, -0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, -0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, 0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, 0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, 0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666664p+0, 0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.6666666666666666666666666668p+0, -0xb.33334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.6666666666666666666666666668p+0, 0xb.33334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, -0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, -0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, -0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, -0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, 0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, 0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, 0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666666666666666666p+0, 0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666668p+0, -0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666668p+0, -0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666668p+0, 0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66666666666666666666666668p+0, 0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666666p+0, -0xb.333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666666p+0, 0xb.333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666667p+0, -0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.666666666666667p+0, 0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.6666666666668p+0, -0xb.33334p-4)": +double: 1 +idouble: 1 +Test "hypot (-0xc.6666666666668p+0, 0xb.33334p-4)": +double: 1 +idouble: 1 +Test "hypot (-0xc.66667p+0, -0xb.3333333333333333333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66667p+0, -0xb.333333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66667p+0, -0xb.33333333333333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66667p+0, 0xb.3333333333333333333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66667p+0, 0xb.333333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (-0xc.66667p+0, 0xb.33333333333333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0x1.23456789abcdef0123456789ab8p-500, 0x1.23456789abcdep-500)": +ildouble: 1 +ldouble: 1 +Test "hypot (0x1.23456789abcdef02p-500, 0x1.23456789abcdfp-500)": +ildouble: 1 +ldouble: 1 +Test "hypot (0x1.23456789abcdefp-500, 0x1.23456789abcdfp-500)": +ildouble: 1 +ldouble: 1 +Test "hypot (0x1.23456789abcdep-500, 0x1.23456789abcdef0123456789ab8p-500)": +ildouble: 1 +ldouble: 1 +Test "hypot (0x1.23456789abcdfp-500, 0x1.23456789abcdef02p-500)": +ildouble: 1 +ldouble: 1 +Test "hypot (0x1.23456789abcdfp-500, 0x1.23456789abcdefp-500)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333333333333333333338p-4, -0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333333333333333333338p-4, 0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333333333333333333p-4, -0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333333333333333333p-4, 0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333333333333333333333334p-4, -0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333333333333333333333334p-4, 0xc.66667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333333333333333333p-4, -0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333333333333333333p-4, -0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333333333333333333p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333333333333333333p-4, 0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333333p-4, -0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333333p-4, -0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333333p-4, -0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333333p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333333p-4, 0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333333p-4, 0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333334p-4, -0xc.666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.333333333333334p-4, 0xc.666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333338p-4, -0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333338p-4, -0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333338p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.3333333333338p-4, 0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333p-4, -0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333p-4, -0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333p-4, -0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333p-4, -0xc.666666666666667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333p-4, 0xc.66666666666666666666666664p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333p-4, 0xc.666666666666666666666666666p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333p-4, 0xc.66666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33333p-4, 0xc.666666666666667p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33334p-4, -0xc.6666666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33334p-4, -0xc.6666666666668p+0)": +double: 1 +idouble: 1 +Test "hypot (0xb.33334p-4, 0xc.6666666666666666666666666668p+0)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xb.33334p-4, 0xc.6666666666668p+0)": +double: 1 +idouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, -0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, -0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, -0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, -0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, 0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, 0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, 0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666664p+0, 0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.6666666666666666666666666668p+0, -0xb.33334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.6666666666666666666666666668p+0, 0xb.33334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666666666666666p+0, -0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666666666666666p+0, -0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666666666666666p+0, -0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666666666666666p+0, -0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666666666666666p+0, 0xb.3333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666666666666666p+0, 0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666666666666666p+0, 0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666666666666666p+0, 0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666668p+0, -0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666668p+0, -0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666668p+0, 0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66666666666666666666666668p+0, 0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666p+0, -0xb.333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666666p+0, 0xb.333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666667p+0, -0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.666666666666667p+0, 0xb.33333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.6666666666668p+0, -0xb.33334p-4)": +double: 1 +idouble: 1 +Test "hypot (0xc.6666666666668p+0, 0xb.33334p-4)": +double: 1 +idouble: 1 +Test "hypot (0xc.66667p+0, -0xb.3333333333333333333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66667p+0, -0xb.333333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66667p+0, -0xb.33333333333333333333333334p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66667p+0, 0xb.3333333333333333333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66667p+0, 0xb.333333333333333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "hypot (0xc.66667p+0, 0xb.33333333333333333333333334p-4)": +ildouble: 1 +ldouble: 1 + +# j0 +Test "j0 (-0x2.002000002p+592)": +ildouble: 2 +ldouble: 2 +Test "j0 (-0x4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "j0 (-0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "j0 (0x2p+0)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "j0 (0x4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "j0 (0x4p+16380)": +ildouble: 1 +ldouble: 1 +Test "j0 (0x8p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "j0 (0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "j0 (0x8p+16380)": +ildouble: 2 +ldouble: 2 +Test "j0 (0xap+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "j0 (0xcp-4)": +float: 1 +ifloat: 1 +Test "j0 (0xe.be71dp+104)": +float: 2 +ifloat: 2 +ildouble: 1 +ldouble: 1 +Test "j0 (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "j0 (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "j0 (0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 + +# j1 +Test "j1 (0x1.ff00000000002p+840)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "j1 (0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "j1 (0x2p+0)": +double: 1 +idouble: 1 +Test "j1 (0x4.ffcp+72)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "j1 (0x4p+16380)": +ildouble: 1 +ldouble: 1 +Test "j1 (0x8p+0)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "j1 (0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "j1 (0x8p+16380)": +ildouble: 2 +ldouble: 2 +Test "j1 (0xap+0)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "j1 (0xcp-4)": +ildouble: 1 +ldouble: 1 +Test "j1 (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "j1 (0xf.fffffp+124)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + +# jn +Test "jn (0, -0x4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "jn (0, 0x2p+0)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "jn (0, 0x4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "jn (0, 0x8p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "jn (0, 0xap+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "jn (0, 0xcp-4)": +float: 1 +ifloat: 1 +Test "jn (1, 0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "jn (1, 0x2p+0)": +double: 1 +idouble: 1 +Test "jn (1, 0x8p+0)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "jn (1, 0xap+0)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "jn (1, 0xcp-4)": +ildouble: 1 +ldouble: 1 +Test "jn (10, -0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "jn (10, 0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "jn (10, 0x2p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "jn (10, 0x2p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "jn (10, 0xap+0)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "jn (10, 0xcp-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "jn (2, 0x2.67a2a4p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "jn (2, 0x2.67a2a5d2e36800fce3e16f10ca66p+0)": +ildouble: 1 +ldouble: 1 +Test "jn (2, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 1 +ldouble: 1 +Test "jn (2, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (2, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 4 +ldouble: 4 +Test "jn (2, 0x2.67a2a5d2e36801p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (2, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +Test "jn (2, 0x2.67a2a5d2e368p+0)": +double: 2 +idouble: 2 +ildouble: 3 +ldouble: 3 +Test "jn (2, 0x2.67a2a8p+0)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +Test "jn (2, 0x8p+1020)": +ildouble: 1 +ldouble: 1 +Test "jn (2, 0x8p+124)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "jn (2, 0x8p+16380)": +ildouble: 2 +ldouble: 2 +Test "jn (2, 0xf.fffb1p+96)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +Test "jn (2, 0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "jn (2, 0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 1 +ldouble: 1 +Test "jn (2, 0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "jn (3, 0x2.67a2a4p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "jn (3, 0x2.67a2a5d2e36800fce3e16f10ca68p+0)": +ildouble: 1 +ldouble: 1 +Test "jn (3, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 1 +ldouble: 1 +Test "jn (3, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 1 +ldouble: 1 +Test "jn (3, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 5 +ldouble: 5 +Test "jn (3, 0x2.67a2a5d2e36801p+0)": +ildouble: 4 +ldouble: 4 +Test "jn (3, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "jn (3, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 +ildouble: 1 +ldouble: 1 +Test "jn (3, 0x2.67a2a8p+0)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +ildouble: 1 +ldouble: 1 +Test "jn (3, 0x2p+0)": +float: 1 +ifloat: 1 +Test "jn (3, 0x2p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "jn (3, 0xap+0)": +double: 3 +idouble: 3 +ildouble: 2 +ldouble: 2 +Test "jn (3, 0xcp-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "jn (4, 0x2.67a2a4p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "jn (4, 0x2.67a2a5d2e36800fce3e16f10ca68p+0)": +ildouble: 1 +ldouble: 1 +Test "jn (4, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 1 +ldouble: 1 +Test "jn (4, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 1 +ldouble: 1 +Test "jn (4, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (4, 0x2.67a2a5d2e36801p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (4, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "jn (4, 0x2.67a2a5d2e368p+0)": +double: 1 +idouble: 1 +Test "jn (4, 0x2.67a2a8p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "jn (5, 0x2.67a2a4p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "jn (5, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 3 +ldouble: 3 +Test "jn (5, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 2 +ldouble: 2 +Test "jn (5, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 1 +ldouble: 1 +Test "jn (5, 0x2.67a2a5d2e36801p+0)": +ildouble: 2 +ldouble: 2 +Test "jn (5, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +ildouble: 3 +ldouble: 3 +Test "jn (5, 0x2.67a2a5d2e368p+0)": +double: 2 +idouble: 2 +Test "jn (5, 0x2.67a2a8p+0)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "jn (6, 0x2.67a2a4p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "jn (6, 0x2.67a2a5d2e36800fce3e16f10ca66p+0)": +ildouble: 2 +ldouble: 2 +Test "jn (6, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 2 +ldouble: 2 +Test "jn (6, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 2 +ldouble: 2 +Test "jn (6, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 5 +ldouble: 5 +Test "jn (6, 0x2.67a2a5d2e36801p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (6, 0x2.67a2a5d2e3682p+0)": +double: 2 +idouble: 2 +ildouble: 1 +ldouble: 1 +Test "jn (6, 0x2.67a2a5d2e368p+0)": +double: 4 +idouble: 4 +ildouble: 3 +ldouble: 3 +Test "jn (6, 0x2.67a2a8p+0)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +ildouble: 1 +ldouble: 1 +Test "jn (7, 0x2.67a2a4p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "jn (7, 0x2.67a2a5d2e36800fce3e16f10ca68p+0)": +ildouble: 1 +ldouble: 1 +Test "jn (7, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 1 +ldouble: 1 +Test "jn (7, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (7, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (7, 0x2.67a2a5d2e36801p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (7, 0x2.67a2a5d2e3682p+0)": +ildouble: 1 +ldouble: 1 +Test "jn (7, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 +ildouble: 2 +ldouble: 2 +Test "jn (7, 0x2.67a2a8p+0)": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 +Test "jn (8, 0x2.67a2a4p+0)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "jn (8, 0x2.67a2a5d2e36800fce3e16f10ca66p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (8, 0x2.67a2a5d2e36800fce3e16f10ca68p+0)": +ildouble: 4 +ldouble: 4 +Test "jn (8, 0x2.67a2a5d2e36800fce3e16f10cap+0)": +ildouble: 2 +ldouble: 2 +Test "jn (8, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (8, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 3 +ldouble: 3 +Test "jn (8, 0x2.67a2a5d2e36801p+0)": +ildouble: 4 +ldouble: 4 +Test "jn (8, 0x2.67a2a5d2e3682p+0)": +double: 1 +idouble: 1 +Test "jn (8, 0x2.67a2a5d2e368p+0)": +double: 3 +idouble: 3 +Test "jn (8, 0x2.67a2a8p+0)": +double: 2 +float: 4 +idouble: 2 +ifloat: 4 +ildouble: 4 +ldouble: 4 +Test "jn (9, 0x2.67a2a4p+0)": +double: 3 +float: 3 +idouble: 3 +ifloat: 3 +Test "jn (9, 0x2.67a2a5d2e36800fce3e16f10ca66p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (9, 0x2.67a2a5d2e36800fce3e16f10ca68p+0)": +ildouble: 3 +ldouble: 3 +Test "jn (9, 0x2.67a2a5d2e36800fce3e16f10cbp+0)": +ildouble: 2 +ldouble: 2 +Test "jn (9, 0x2.67a2a5d2e36800fcp+0)": +ildouble: 7 +ldouble: 7 +Test "jn (9, 0x2.67a2a5d2e36801p+0)": +ildouble: 2 +ldouble: 2 +Test "jn (9, 0x2.67a2a5d2e3682p+0)": +double: 4 +idouble: 4 +ildouble: 3 +ldouble: 3 +Test "jn (9, 0x2.67a2a5d2e368p+0)": +double: 1 +idouble: 1 +ildouble: 4 +ldouble: 4 +Test "jn (9, 0x2.67a2a8p+0)": +double: 3 +float: 3 +idouble: 3 +ifloat: 3 + +# lgamma +Test "lgamma (-0x1p-20)": +double: 1 +idouble: 1 +Test "lgamma (-0x1p-40)": +ildouble: 1 +ldouble: 1 +Test "lgamma (-0x1p-64)": +ildouble: 1 +ldouble: 1 +Test "lgamma (-0x2p-16)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "lgamma (-0x4p-12)": +double: 1 +idouble: 1 +Test "lgamma (-0x4p-32)": +ildouble: 1 +ldouble: 1 +Test "lgamma (-0x8p-28)": +ildouble: 1 +ldouble: 1 +Test "lgamma (-0x8p-4)": +ildouble: 1 +ldouble: 1 +Test "lgamma (-0x8p-8)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "lgamma (0x1.3333333333333332p+0)": +ildouble: 1 +ldouble: 1 +Test "lgamma (0x1.3333333333333333333333333333p+0)": +ildouble: 1 +ldouble: 1 +Test "lgamma (0x1p-60)": +ildouble: 1 +ldouble: 1 +Test "lgamma (0x4p-12)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "lgamma (0x4p-32)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "lgamma (0x4p-72)": +ildouble: 1 +ldouble: 1 +Test "lgamma (0x8p-8)": +ildouble: 1 +ldouble: 1 +Test "lgamma (0xb.3333333333333333333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "lgamma (0xb.333333333333333p-4)": +ildouble: 1 +ldouble: 1 +Test "lgamma (0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "lgamma (0xb.333333333333p-4)": +double: 1 +idouble: 1 +Test "lgamma (0xb.33333p-4)": +double: 1 +idouble: 1 + +# log +Test "log (0x2.b7e151628aed2a68p+0)": +ildouble: 1 +ldouble: 1 +Test "log (0x2.b7e151628aed2a6abf7158809cf4p+0)": +ildouble: 1 +ldouble: 1 +Test "log (0x2.b7e151628aed2p+0)": +ildouble: 1 +ldouble: 1 +Test "log (0x2.b7e15p+0)": +float: 1 +ifloat: 1 +Test "log (0x4p-1076)": +ildouble: 1 +ldouble: 1 +Test "log (0x4p-16384)": +ildouble: 1 +ldouble: 1 +Test "log (0x4p-16448)": +ildouble: 1 +ldouble: 1 +Test "log (0x4p-16496)": +ildouble: 1 +ldouble: 1 +Test "log (0x8p-152)": +ildouble: 1 +ldouble: 1 + +# log10 +Test "log10 (0x1.999998p-4)": +ildouble: 1 +ldouble: 1 +Test "log10 (0x1.999999999999ap-4)": +ildouble: 1 +ldouble: 1 +Test "log10 (0x1.99999ap-4)": +ildouble: 1 +ldouble: 1 +Test "log10 (0x2.b7e151628aed2a6cp+0)": +ildouble: 1 +ldouble: 1 +Test "log10 (0x2.b7e154p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "log10 (0x4p-1024)": +ildouble: 1 +ldouble: 1 +Test "log10 (0x4p-16496)": +ildouble: 1 +ldouble: 1 +Test "log10 (0xcp-4)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 + +# log1p +Test "log1p (-0x4p-4)": +float: 1 +ifloat: 1 +Test "log1p (0x1.b7e151628aed2p+0)": +ildouble: 1 +ldouble: 1 +Test "log1p (0x1.b7e15p+0)": +float: 1 +ifloat: 1 + +# log2 +Test "log2 (0x2.b7e151628aed2a6cp+0)": +ildouble: 1 +ldouble: 1 +Test "log2 (0xcp-4)": +ildouble: 1 +ldouble: 1 + +# pow +Test "pow (0x1.0000000000000000000000000001p+0, 0x2.468acf13579bde02468acf1357p+124)": +ildouble: 1 +ldouble: 1 +Test "pow (0x1.0000000000000000000000000001p+0, 0x2.468acf13579bde04p+124)": +ildouble: 1 +ldouble: 1 +Test "pow (0x1.0000000000001p+0, -0x2.468adp+60)": +ildouble: 1 +ldouble: 1 +Test "pow (0x1.000002p+0, 0x1p+24)": +float: 1 +ifloat: 1 +Test "pow (0xap+0, -0x1.342p+12)": +ildouble: 1 +ldouble: 1 +Test "pow (0xap+0, 0x1.341p+12)": +ildouble: 1 +ldouble: 1 +Test "pow (0xap+0, 0x1.342p+12)": +ildouble: 1 +ldouble: 1 +Test "pow (0xap+0, 0x1.343p+12)": +ildouble: 1 +ldouble: 1 +Test "pow (0xap+0, 0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "pow (0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380, 0xcp-4)": +ildouble: 1 +ldouble: 1 +Test "pow (0xf.ffffffffffff8p-4, -0x4.8d159e26af37cp+60)": +ildouble: 1 +ldouble: 1 +Test "pow (0xf.fffffffffffffffffffffffffff8p-4, -0x4.8d1598p+124)": +ildouble: 1 +ldouble: 1 +Test "pow (0xf.fffffp-4, -0x1p+24)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "pow (0xf.fffffp-4, 0x1p+24)": +float: 1 +ifloat: 1 + +# pow10 +Test "pow10 (-0x1.31p+8)": +double: 1 +idouble: 1 +Test "pow10 (-0x1p+0)": +double: 1 +idouble: 1 +Test "pow10 (-0x2.4p+4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "pow10 (0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "pow10 (0x1.348e45573a1dd72cp+8)": +ildouble: 1 +ldouble: 1 +Test "pow10 (0x1.348e46p+8)": +ildouble: 1 +ldouble: 1 +Test "pow10 (0x2.4p+4)": +double: 1 +idouble: 1 +Test "pow10 (0x3p+0)": +double: 1 +idouble: 1 + +# pow_downward +Test "pow_downward (1.5, 1.03125)": +float: 1 +ifloat: 1 + +# pow_tonearest +Test "pow_tonearest (0x1.0000000000000000000000000001p+0, 0x2.468acf13579bde02468acf1357p+124)": +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0x1.0000000000000000000000000001p+0, 0x2.468acf13579bde04p+124)": +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0x1.0000000000001p+0, -0x2.468adp+60)": +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0x1.000002p+0, 0x1p+24)": +float: 1 +ifloat: 1 +Test "pow_tonearest (0xap+0, -0x1.342p+12)": +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0xap+0, 0x1.341p+12)": +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0xap+0, 0x1.342p+12)": +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0xap+0, 0x1.343p+12)": +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0xap+0, 0x1.344p+12)": +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0xd.72cb2a95c7ef6cce81bf1e825ba8p+16380, 0xcp-4)": +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0xf.ffffffffffff8p-4, -0x4.8d159e26af37cp+60)": +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0xf.fffffffffffffffffffffffffff8p-4, -0x4.8d1598p+124)": +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0xf.fffffp-4, -0x1p+24)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "pow_tonearest (0xf.fffffp-4, 0x1p+24)": +float: 1 +ifloat: 1 + +# pow_towardzero +Test "pow_towardzero (1.5, 1.03125)": +float: 1 +ifloat: 1 + +# pow_upward +Test "pow_upward (1.0625, 1.125)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +# sin +Test "sin (-0x1.921fb4p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (-0x1.921fb54442d18p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (-0x1.921fb54442d19p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (-0x8.60a91c16b9b28p-4)": +ildouble: 1 +ldouble: 1 +Test "sin (-0x8.60a91c16b9b2c232dd99707ab3dp-4)": +ildouble: 1 +ldouble: 1 +Test "sin (0x1p+0)": float: 1 ifloat: 1 +Test "sin (0x2.1e19e0c9bab24p+72)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2dd46725bp-35 + 0x7783a1284p-35 i)": -double: 1 -idouble: 1 +Test "sin (0x2p+64)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (0x2ede88p-23 + 0x771c3fp-23 i)": -double: 1 -idouble: 1 +Test "sin (0x3.be735c19be9fffffffffffffffe8p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x3f96469050f650869c2p-75 + 0x6f16b2c9c8b05988335p-75 i)": +Test "sin (0x3.be736p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x4447d7175p-35 + 0x6c445e00ap-35 i)": -double: 1 -idouble: 1 -Test "Real part of: clog10 (0x4d4ep-15 + 0x6605p-15 i)": +Test "sin (0x3.ec2a0250032a00000000000001p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x4d9c37e2b5cb4533p-63 + 0x65c98be2385a042ep-63 i)": +Test "sin (0x3.ec2a0250032a2p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x55cb6d0c83af5p-55 + 0x7fe33c0c7c4e90p-55 i)": +Test "sin (0x3.ec2a04p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x5b06b680ea2ccp-52 + 0xef452b965da9fp-52 i)": -double: 1 -idouble: 1 +Test "sin (0x3.ec2ap+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x602fd5037c4792efp-64 + 0xed3e2086dcca80b8p-64 i)": +Test "sin (0x3p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x6241ef0da53f539f02fad67dabp-106 + 0x3fb46641182f7efd9caa769dac0p-106 i)": +Test "sin (0x4.1237e153f7080000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +Test "sin (0x4.1237e153f7080008p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x659feap-24 + 0xeaf6f9p-24 i)": +Test "sin (0x4.c92d08p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x6b10b4f3520217b6p-64 + 0xe8893cbb449253a1p-64 i)": +Test "sin (0x4.c92d0ffa4bf00000000000000088p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (0x9b57bp-20 + 0xcb7b4p-20 i)": -double: 1 -idouble: 1 +Test "sin (0x4.c92d0ffa4bf00008p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0xdb85c467ee2aadd5f425fe0f4b8dp-114 + 0x3e83162a0f95f1dcbf97dddf410eap-114 i)": +Test "sin (0x4.c92d0ffa4bf04p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0xf2p-10 + 0x3e3p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (0xfd95243681c055c2632286921092p-113 + 0x1bccabcd29ca2152860ec29e34ef7p-113 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: clog10 (0xfe961079616p-45 + 0x1bc37e09e6d1p-45 i)": -double: 1 -idouble: 1 +Test "sin (0x4.c92d0ffa4bfp+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: clog10 (1.0 + 0x1.234566p-10 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: clog10 (3 + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (3 - inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (inf + inf i)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "Imaginary part of: clog10 (inf - inf i)": +Test "sin (0x5.fbec7477d4a84p+0)": +ildouble: 1 +ldouble: 1 +Test "sin (0x5.fbec78p+0)": +ildouble: 1 +ldouble: 1 + +# sin_downward +Test "sin_downward (-0x1.921fb4p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 - -# cos -Test "cos (0x1p+120)": -float: 1 -ifloat: 1 -Test "cos (0x1p+127)": -float: 1 -ifloat: 1 -Test "cos (M_PI_6l * 2.0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (-0x1.921fb54442d18p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (-0x1.921fb54442d19p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (-0x1.921fb6p+0)": double: 1 idouble: 1 -Test "cos (M_PI_6l * 4.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 ildouble: 1 ldouble: 1 - -# cos_downward -Test "cos_downward (1)": -float: 1 -ifloat: 1 -Test "cos_downward (10)": +Test "sin_downward (-0x2p+64)": +double: 1 +idouble: 1 +Test "sin_downward (-0x8.60a91c16b9b28p-4)": ildouble: 1 ldouble: 1 -Test "cos_downward (2)": -float: 1 -ifloat: 1 +Test "sin_downward (-0x8.60a91c16b9b2c232dd99707ab3dp-4)": ildouble: 1 ldouble: 1 -Test "cos_downward (3)": -float: 1 -ifloat: 1 +Test "sin_downward (-0x8.60a91c16b9b2c232dd99707ab4p-4)": ildouble: 1 ldouble: 1 -Test "cos_downward (4)": -float: 1 -ifloat: 1 -Test "cos_downward (5)": -float: 1 -ifloat: 1 +Test "sin_downward (-0x8.60a91c16b9b2c232dd99707abp-4)": ildouble: 1 ldouble: 1 -Test "cos_downward (6)": +Test "sin_downward (-0x8.60a91c16b9b2c23p-4)": ildouble: 1 ldouble: 1 -Test "cos_downward (7)": -float: 1 -ifloat: 1 +Test "sin_downward (-0x8.60a91c16b9b2c24p-4)": ildouble: 1 ldouble: 1 -Test "cos_downward (8)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 - -# cos_tonearest -Test "cos_tonearest (7)": -float: 1 -ifloat: 1 - -# cos_towardzero -Test "cos_towardzero (10)": +Test "sin_downward (-0x8.60a91c16b9b3p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_towardzero (2)": -float: 1 -ifloat: 1 +Test "sin_downward (-0x8.60a91p-4)": +double: 1 +idouble: 1 +Test "sin_downward (-0x8.60a92p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "cos_towardzero (3)": -float: 1 -ifloat: 1 +Test "sin_downward (0x1.921fb54442d18468p+0)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (5)": -float: 1 -ifloat: 1 +Test "sin_downward (0x1.921fb54442d18469898cc517018p+0)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (6)": +Test "sin_downward (0x1.921fb54442d18469898cc51701b8p+0)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (7)": -float: 1 -ifloat: 1 +Test "sin_downward (0x1.921fb54442d18469898cc51701b9p+0)": ildouble: 1 ldouble: 1 -Test "cos_towardzero (8)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 - -# cos_upward -Test "cos_upward (1)": +Test "sin_downward (0x1.921fb54442d18469898cc51702p+0)": ildouble: 1 ldouble: 1 -Test "cos_upward (10)": -float: 1 -ifloat: 1 -Test "cos_upward (4)": +Test "sin_downward (0x1.921fb54442d1846ap+0)": ildouble: 1 ldouble: 1 -Test "cos_upward (6)": +Test "sin_downward (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x1p+120)": float: 1 ifloat: 1 -Test "cos_upward (7)": +Test "sin_downward (0x1p+28)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "cos_upward (9)": +Test "sin_downward (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x2.1e19e4p+72)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x2.1e19ep+72)": float: 2 ifloat: 2 +Test "sin_downward (0x2.553534p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# cosh_downward -Test "cosh_downward (22)": -float: 1 -ifloat: 1 +Test "sin_downward (0x2.5535376715bap+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x2p+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x3.be735c19be9fep+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "cosh_downward (23)": -float: 1 -ifloat: 1 +Test "sin_downward (0x3.be735c19be9ffffcp+0)": ildouble: 1 ldouble: 1 -Test "cosh_downward (24)": -float: 1 -ifloat: 1 +Test "sin_downward (0x3.be735c19be9fffffffffffffffe8p+0)": ildouble: 1 ldouble: 1 - -# cosh_tonearest -Test "cosh_tonearest (22)": +Test "sin_downward (0x3.be735c19be9fffffffffffffffeap+0)": ildouble: 1 ldouble: 1 - -# cosh_towardzero -Test "cosh_towardzero (22)": -float: 1 -ifloat: 1 +Test "sin_downward (0x3.be735c19be9fffffffffffffffp+0)": ildouble: 1 ldouble: 1 -Test "cosh_towardzero (23)": -float: 1 -ifloat: 1 +Test "sin_downward (0x3.be735cp+0)": ildouble: 1 ldouble: 1 -Test "cosh_towardzero (24)": +Test "sin_downward (0x3.be736p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# cosh_upward -Test "cosh_upward (22)": -ildouble: 1 -ldouble: 1 -Test "cosh_upward (23)": +Test "sin_downward (0x3.ec2a0250032a0000000000000072p+0)": ildouble: 1 ldouble: 1 -Test "cosh_upward (24)": +Test "sin_downward (0x3.ec2a0250032a00000000000001p+0)": ildouble: 1 ldouble: 1 - -# cpow -Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i)": +Test "sin_downward (0x3.ec2a0250032a0004p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 0.75 + 1.25 i)": +Test "sin_downward (0x3.ec2a0250032a2p+0)": double: 1 -float: 4 idouble: 1 -ifloat: 4 -ildouble: 4 -ldouble: 4 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 0.0 i)": ildouble: 1 ldouble: 1 -Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i)": -double: 2 -float: 3 -idouble: 2 -ifloat: 3 -ildouble: 2 -ldouble: 2 -Test "Real part of: cpow (2 + 0 i, 10 + 0 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: cpow (2 + 3 i, 4 + 0 i)": +Test "sin_downward (0x3.ec2a0250032ap+0)": double: 1 -float: 4 idouble: 1 -ifloat: 4 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i)": -float: 2 -ifloat: 2 - -# csin -Test "Real part of: csin (-0.75 + 11357.25 i)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (-0.75 + 710.5 i)": +Test "sin_downward (0x3.ec2a04p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x3.ec2ap+0)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csin (-0.75 + 89.5 i)": +Test "sin_downward (0x3p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csin (-0.75 + 89.5 i)": +Test "sin_downward (0x4.093385688a2d1508p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (-0.75 - 11357.25 i)": +Test "sin_downward (0x4.093385688a2d4p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (-0.75 - 710.5 i)": +Test "sin_downward (0x4.093388p-4)": double: 1 idouble: 1 +Test "sin_downward (0x4.1237e153f7080000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (-0.75 - 89.5 i)": -float: 1 -ifloat: 1 +Test "sin_downward (0x4.1237e153f70800000000000002p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csin (-0.75 - 89.5 i)": +Test "sin_downward (0x4.1237e153f7080008p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csin (-2 - 3 i)": +Test "sin_downward (0x4.1237e153f7084p+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x4.1237e153f708p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 + 1.25 i)": +Test "sin_downward (0x4.1237e8p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 + 11357.25 i)": +Test "sin_downward (0x4.1237ep+0)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 + 710.5 i)": +Test "sin_downward (0x4.c92d08p+0)": double: 1 -idouble: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: csin (0.75 + 89.5 i)": float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csin (0.75 + 89.5 i)": +Test "sin_downward (0x4.c92d0ffa4bf00000000000000088p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 - 11357.25 i)": +Test "sin_downward (0x4.c92d0ffa4bf000000000000002p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 - 710.5 i)": -double: 1 -idouble: 1 +Test "sin_downward (0x4.c92d0ffa4bf00008p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0.75 - 89.5 i)": -float: 1 -ifloat: 1 +Test "sin_downward (0x4.c92d0ffa4bf04p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csin (0.75 - 89.5 i)": +Test "sin_downward (0x4.c92d0ffa4bfp+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csin (0x1p-1074 + 1440 i)": +Test "sin_downward (0x4.c92d1p+0)": double: 1 +float: 1 idouble: 1 -Test "Real part of: csin (0x1p-16434 + 22730 i)": -ildouble: 1 -ldouble: 1 - -# csinh -Test "Imaginary part of: csinh (-11357.25 + 0.75 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csinh (-11357.25 - 0.75 i)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csinh (-2 - 3 i)": +Test "sin_downward (0x4p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (-2 - 3 i)": +Test "sin_downward (0x4p+48)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (-710.5 + 0.75 i)": +Test "sin_downward (0x5.fbec7477d4a8000000000000009cp+0)": +ildouble: 1 +ldouble: 1 +Test "sin_downward (0x5.fbec7477d4a84p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (-710.5 - 0.75 i)": +Test "sin_downward (0x5.fbec7477d4a8p+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x5.fbec78p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csinh (-89.5 + 0.75 i)": +Test "sin_downward (0x5.fbec7p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (-89.5 + 0.75 i)": +Test "sin_downward (0x5p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csinh (-89.5 - 0.75 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csinh (-89.5 - 0.75 i)": -float: 1 -ifloat: 1 +Test "sin_downward (0x6p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csinh (0.75 + 1.25 i)": +Test "sin_downward (0x8p+0)": +double: 1 +idouble: 1 +Test "sin_downward (0x8p+1020)": +double: 1 +idouble: 1 +Test "sin_downward (0x9p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: csinh (0.75 + 1.25 i)": +Test "sin_downward (0xap+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "Imaginary part of: csinh (11357.25 + 0.75 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csinh (11357.25 - 0.75 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csinh (1440 + 0x1p-1074 i)": +Test "sin_downward (0xc.d4966d92d1708p-4)": double: 1 idouble: 1 -Test "Imaginary part of: csinh (22730 + 0x1p-16434 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: csinh (710.5 + 0.75 i)": +Test "sin_downward (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "sin_downward (0xf.ffffcp+124)": +double: 1 +idouble: 1 +Test "sin_downward (0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (710.5 - 0.75 i)": +Test "sin_downward (0xf.fffffp+124)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: csinh (89.5 + 0.75 i)": + +# sin_tonearest +Test "sin_tonearest (-0x1.921fb4p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (89.5 + 0.75 i)": -float: 1 -ifloat: 1 +Test "sin_tonearest (-0x1.921fb54442d18p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csinh (89.5 - 0.75 i)": +Test "sin_tonearest (-0x1.921fb54442d19p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csinh (89.5 - 0.75 i)": +Test "sin_tonearest (-0x8.60a91c16b9b28p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_tonearest (-0x8.60a91c16b9b2c232dd99707ab3dp-4)": +ildouble: 1 +ldouble: 1 +Test "sin_tonearest (0x1p+0)": float: 1 ifloat: 1 +Test "sin_tonearest (0x2.1e19e0c9bab24p+72)": ildouble: 1 ldouble: 1 - -# csqrt -Test "Real part of: csqrt (-0x1.0000000000000000000000000001p-16382 - 0x1.0000000000000000000000000001p-16382 i)": +Test "sin_tonearest (0x2p+64)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": +Test "sin_tonearest (0x3.be735c19be9fffffffffffffffe8p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (-0x1.0000000000000002p-16382 - 0x1.0000000000000002p-16382 i)": +Test "sin_tonearest (0x3.be736p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-0x1.0000000000001p-1022 - 0x1.0000000000001p-1022 i)": +Test "sin_tonearest (0x3.ec2a0250032a00000000000001p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-0x1.000002p-126 - 0x1.000002p-126 i)": -double: 1 -idouble: 1 -Test "Real part of: csqrt (-2 + 3 i)": -float: 1 -ifloat: 1 +Test "sin_tonearest (0x3.ec2a0250032a2p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (-2 - 3 i)": -float: 1 -ifloat: 1 +Test "sin_tonearest (0x3.ec2a04p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0.75 + 1.25 i)": +Test "sin_tonearest (0x3.ec2ap+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000000000000000000001p-16382 + 0x1.0000000000000000000000000001p-16382 i)": +Test "sin_tonearest (0x3p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +Test "sin_tonearest (0x4.1237e153f7080000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000000002p-16382 + 0x1.0000000000000002p-16382 i)": +Test "sin_tonearest (0x4.1237e153f7080008p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.0000000000001p-1022 + 0x1.0000000000001p-1022 i)": +Test "sin_tonearest (0x4.c92d08p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.000002p-126 + 0x1.000002p-126 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffep+127 + 1.0 i)": -float: 1 -ifloat: 1 -Test "Real part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": -double: 1 -idouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1.fffffffffffffp+1023 i)": -double: 1 -idouble: 1 +Test "sin_tonearest (0x4.c92d0ffa4bf00000000000000088p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fffffffffffffp+1023 + 0x1p+1023 i)": -double: 1 -idouble: 1 +Test "sin_tonearest (0x4.c92d0ffa4bf00008p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: csqrt (0x1.fp+16383 + 0x1.fp+16383 i)": +Test "sin_tonearest (0x4.c92d0ffa4bf04p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fp+16383 + 0x1.fp+16383 i)": +Test "sin_tonearest (0x4.c92d0ffa4bfp+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1.fp+16383 + 0x1p+16383 i)": +Test "sin_tonearest (0x5.fbec7477d4a84p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: csqrt (0x1p-16440 + 0x1p-16441 i)": +Test "sin_tonearest (0x5.fbec78p+0)": ildouble: 1 ldouble: 1 -# ctan -Test "Real part of: ctan (-2 - 3 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan (-2 - 3 i)": -double: 1 -idouble: 1 +# sin_towardzero +Test "sin_towardzero (-0x1.921fb54442d18468p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (-0x1.921fb54442d18469898cc517018p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (-0x1.921fb54442d18469898cc51701b8p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (-0x1.921fb54442d18469898cc51701b9p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (-0x1.921fb54442d18469898cc51702p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0.75 + 1.25 i)": +Test "sin_towardzero (-0x1.921fb54442d1846ap+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan (0.75 + 1.25 i)": +Test "sin_towardzero (-0x1.921fb54442d18p+0)": double: 1 idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (0x1p1023 + 1 i)": +Test "sin_towardzero (-0x1.921fb54442d19p+0)": double: 1 idouble: 1 -Test "Imaginary part of: ctan (0x1p1023 + 1 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (0x1p127 + 1 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan (0x1p127 + 1 i)": +Test "sin_towardzero (-0x2p+64)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctan (0x1p16383 + 1 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctan (0x1p16383 + 1 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (0x3.243f6cp-1 + 0 i)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "Real part of: ctan (1 + 355 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (1 + 365 i)": +Test "sin_towardzero (-0x8.60a91c16b9b2c232dd99707ab3d8p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan (1 + 45 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan (1 + 47 i)": +Test "sin_towardzero (-0x8.60a91p-4)": ildouble: 1 ldouble: 1 - -# ctan_downward -Test "Real part of: ctan_downward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 4 -ldouble: 4 -Test "Imaginary part of: ctan_downward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_downward (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 5 -ldouble: 5 - -# ctan_tonearest -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "sin_towardzero (0x1.921fb54442d18468p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctan_tonearest (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 +Test "sin_towardzero (0x1.921fb54442d18469898cc517018p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_tonearest (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 - -# ctan_towardzero -Test "Real part of: ctan_towardzero (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "sin_towardzero (0x1.921fb54442d18469898cc51701b8p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": +Test "sin_towardzero (0x1.921fb54442d18469898cc51701b9p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x1p-149 i)": -float: 1 -ifloat: 1 -ildouble: 5 -ldouble: 5 - -# ctan_upward -Test "Real part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "sin_towardzero (0x1.921fb54442d18469898cc51702p+0)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d1846ap+0 + 0x1p-16445 i)": +Test "sin_towardzero (0x1.921fb54442d1846ap+0)": ildouble: 1 ldouble: 1 -Test "Real part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb54442d18p+0 + 0x1p-1074 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctan_upward (0x1.921fb6p+0 + 0x1p-149 i)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 - -# ctanh -Test "Real part of: ctanh (-2 - 3 i)": +Test "sin_towardzero (0x1.921fb54442d18p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: ctanh (-2 - 3 i)": +Test "sin_towardzero (0x1.921fb54442d19p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: ctanh (0 + 0x3.243f6cp-1 i)": +Test "sin_towardzero (0x1p+0)": float: 1 ifloat: 1 +Test "sin_towardzero (0x1p+28)": ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (0 + pi/4 i)": +Test "sin_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x2.1e19ep+72)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "Real part of: ctanh (0.75 + 1.25 i)": +Test "sin_towardzero (0x2.553534p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "Imaginary part of: ctanh (0.75 + 1.25 i)": -float: 2 -ifloat: 2 -Test "Real part of: ctanh (1 + 0x1p1023 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (1 + 0x1p1023 i)": +Test "sin_towardzero (0x2.5535376715bap+0)": double: 1 idouble: 1 -Test "Real part of: ctanh (1 + 0x1p127 i)": +Test "sin_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x2p+64)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "Imaginary part of: ctanh (1 + 0x1p127 i)": -ildouble: 2 -ldouble: 2 -Test "Real part of: ctanh (1 + 0x1p16383 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (1 + 0x1p16383 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (355 + 1 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (365 + 1 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh (45 + 1 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh (47 + 1 i)": +Test "sin_towardzero (0x3.be735c19beap+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# ctanh_downward -Test "Real part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_downward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 4 -ldouble: 4 -Test "Real part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 5 -ldouble: 5 -Test "Imaginary part of: ctanh_downward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh_downward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": -ildouble: 2 -ldouble: 2 - -# ctanh_tonearest -Test "Real part of: ctanh_tonearest (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_tonearest (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Real part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +Test "sin_towardzero (0x3.be735cp+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh_tonearest (0x1p-149 + 0x1.921fb6p+0 i)": +Test "sin_towardzero (0x3.ec2a0250032a000000000000007p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (0x3.ec2a04p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 +Test "sin_towardzero (0x3p+0)": ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_tonearest (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "sin_towardzero (0x4.093385688a2d1508p-4)": ildouble: 1 ldouble: 1 - -# ctanh_towardzero -Test "Real part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 2 -ldouble: 2 -Test "Imaginary part of: ctanh_towardzero (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "sin_towardzero (0x4.093385688a2d4p-4)": ildouble: 1 ldouble: 1 -Test "Real part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -ildouble: 5 -ldouble: 5 -Test "Imaginary part of: ctanh_towardzero (0x1p-149 + 0x1.921fb6p+0 i)": -float: 1 -ifloat: 1 -Test "Imaginary part of: ctanh_towardzero (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "sin_towardzero (0x4.093388p-4)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x4.1237e153f7084p+0)": ildouble: 1 ldouble: 1 - -# ctanh_upward -Test "Real part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": -ildouble: 3 -ldouble: 3 -Test "Imaginary part of: ctanh_upward (0x1p-1074 + 0x1.921fb54442d18p+0 i)": +Test "sin_towardzero (0x4.1237e8p+0)": double: 1 idouble: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": +Test "sin_towardzero (0x4.1237ep+0)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -Test "Imaginary part of: ctanh_upward (0x1p-149 + 0x1.921fb6p+0 i)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "Real part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": -ildouble: 1 -ldouble: 1 -Test "Imaginary part of: ctanh_upward (0x1p-16445 + 0x1.921fb54442d1846ap+0 i)": +Test "sin_towardzero (0x4.c92d0ffa4bf0000000000000008cp+0)": ildouble: 1 -ldouble: 1 - -# erf -Test "erf (1.25)": +ldouble: 1 +Test "sin_towardzero (0x4.c92d0ffa4bf04p+0)": double: 1 idouble: 1 - -# erfc -Test "erfc (0x1.f7303cp+1)": +Test "sin_towardzero (0x4.c92d0ffa4bfp+0)": double: 1 idouble: 1 -Test "erfc (0x1.ffa002p+2)": -float: 1 -ifloat: 1 +Test "sin_towardzero (0x4p+48)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x5.fbec7477d4a80000000000000098p+0)": ildouble: 1 ldouble: 1 -Test "erfc (0x1.ffffc8p+2)": +Test "sin_towardzero (0x5.fbec7477d4a800000000000002p+0)": ildouble: 1 ldouble: 1 -Test "erfc (2.0)": -double: 1 -idouble: 1 -Test "erfc (27.0)": +Test "sin_towardzero (0x5.fbec7477d4a80008p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (0x5.fbec7477d4a8p+0)": ildouble: 1 ldouble: 1 -Test "erfc (4.125)": +Test "sin_towardzero (0x5.fbec7p+0)": double: 1 idouble: 1 - -# exp10 -Test "exp10 (-1)": +Test "sin_towardzero (0x8p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x8p+1020)": double: 1 idouble: 1 -Test "exp10 (-305)": +Test "sin_towardzero (0x9p+0)": double: 1 idouble: 1 -Test "exp10 (-36)": +Test "sin_towardzero (0xap+0)": +ildouble: 1 +ldouble: 1 +Test "sin_towardzero (0xb.fa09ap+100)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "exp10 (3)": +Test "sin_towardzero (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "sin_towardzero (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "sin_towardzero (0xc.d4967p-4)": +float: 1 +ifloat: 1 +Test "sin_towardzero (0xe.ef3afp-4)": +float: 1 +ifloat: 1 +Test "sin_towardzero (0xf.ffffcp+124)": double: 1 idouble: 1 -Test "exp10 (36)": +Test "sin_towardzero (0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 -Test "exp10 (4932)": ildouble: 1 ldouble: 1 - -# exp2 -Test "exp2 (100.5)": +Test "sin_towardzero (0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 1 ldouble: 1 -# exp_downward -Test "exp_downward (2)": +# sin_upward +Test "sin_upward (-0x1.921fb4p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "exp_downward (3)": -float: 1 -ifloat: 1 +Test "sin_upward (-0x1.921fb54442d18468p+0)": ildouble: 1 ldouble: 1 - -# exp_towardzero -Test "exp_towardzero (2)": -float: 1 -ifloat: 1 +Test "sin_upward (-0x1.921fb54442d18469898cc517018p+0)": ildouble: 1 ldouble: 1 -Test "exp_towardzero (3)": -float: 1 -ifloat: 1 +Test "sin_upward (-0x1.921fb54442d18469898cc51701b8p+0)": ildouble: 1 ldouble: 1 - -# exp_upward -Test "exp_upward (1)": +Test "sin_upward (-0x1.921fb54442d18469898cc51701b9p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x1.921fb54442d18469898cc51702p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x1.921fb54442d1846ap+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x1.921fb6p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# expm1 -Test "expm1 (-79.0)": +Test "sin_upward (-0x2p+64)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x8.60a91c16b9b28p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x8.60a91c16b9b2c232dd99707ab3d8p-4)": +ildouble: 3 +ldouble: 3 +Test "sin_upward (-0x8.60a91c16b9b2c232dd99707ab3dp-4)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x8.60a91c16b9b2c232dd99707ab4p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x8.60a91c16b9b2c232dd99707abp-4)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x8.60a91c16b9b2c23p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x8.60a91c16b9b2c24p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x8.60a91c16b9b3p-4)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (-0x8.60a91p-4)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (-0x8.60a92p-4)": ildouble: 1 ldouble: 1 -Test "expm1 (0.75)": +Test "sin_upward (0x1.921fb4p+0)": +double: 1 +idouble: 1 +Test "sin_upward (0x1.921fb6p+0)": +double: 1 +idouble: 1 +Test "sin_upward (0x1p+0)": double: 1 idouble: 1 -Test "expm1 (1)": +Test "sin_upward (0x1p+120)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "sin_upward (0x1p+28)": +float: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x2.1e19e0c9bab24p+72)": ildouble: 1 ldouble: 1 -Test "expm1 (500.0)": +Test "sin_upward (0x2.1e19e4p+72)": double: 1 idouble: 1 - -# gamma -Test "gamma (-0.5)": ildouble: 1 ldouble: 1 -Test "gamma (-0x1p-10)": +Test "sin_upward (0x2.1e19ep+72)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x2.5535376715b9ep+0)": double: 1 idouble: 1 -Test "gamma (-0x1p-15)": +Test "sin_upward (0x2.553538p+0)": double: 1 -float: 1 idouble: 1 +Test "sin_upward (0x2p+0)": +float: 1 ifloat: 1 -Test "gamma (-0x1p-20)": +Test "sin_upward (0x2p+64)": double: 1 idouble: 1 -Test "gamma (-0x1p-25)": ildouble: 1 ldouble: 1 -Test "gamma (-0x1p-30)": +Test "sin_upward (0x3.be735c19be9fep+0)": ildouble: 1 ldouble: 1 -Test "gamma (-0x1p-40)": +Test "sin_upward (0x3.be735c19be9ffffcp+0)": ildouble: 1 ldouble: 1 -Test "gamma (-0x1p-5)": -double: 1 -idouble: 1 +Test "sin_upward (0x3.be735c19be9fffffffffffffffe8p+0)": ildouble: 1 ldouble: 1 -Test "gamma (-0x1p-64)": +Test "sin_upward (0x3.be735c19be9fffffffffffffffeap+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x3.be735c19be9fffffffffffffffp+0)": ildouble: 1 ldouble: 1 -Test "gamma (0.7)": +Test "sin_upward (0x3.be735c19beap+0)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x3.be735cp+0)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "gamma (0x1p-10)": +Test "sin_upward (0x3.be736p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "gamma (0x1p-30)": -double: 1 -idouble: 1 +Test "sin_upward (0x3.ec2a0250032a0000000000000072p+0)": ildouble: 1 ldouble: 1 -Test "gamma (0x1p-5)": +Test "sin_upward (0x3.ec2a0250032a000000000000007p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x3.ec2a0250032a00000000000001p+0)": ildouble: 1 ldouble: 1 -Test "gamma (0x1p-60)": +Test "sin_upward (0x3.ec2a0250032a0004p+0)": ildouble: 1 ldouble: 1 -Test "gamma (0x1p-70)": +Test "sin_upward (0x3.ec2a0250032a2p+0)": ildouble: 1 ldouble: 1 -Test "gamma (1.2)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +Test "sin_upward (0x3.ec2a0250032ap+0)": ildouble: 1 ldouble: 1 - -# hypot -Test "hypot (-0.7, -12.4)": -float: 1 -ifloat: 1 -Test "hypot (-0.7, 12.4)": -float: 1 -ifloat: 1 -Test "hypot (-12.4, -0.7)": -float: 1 -ifloat: 1 -Test "hypot (-12.4, 0.7)": -float: 1 -ifloat: 1 -Test "hypot (0.7, -12.4)": -float: 1 -ifloat: 1 -Test "hypot (0.7, 12.4)": -float: 1 -ifloat: 1 -Test "hypot (12.4, -0.7)": -float: 1 -ifloat: 1 -Test "hypot (12.4, 0.7)": +Test "sin_upward (0x3.ec2a04p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 - -# j0 -Test "j0 (-0x1.001000001p+593)": ildouble: 1 ldouble: 1 -Test "j0 (-4.0)": +Test "sin_upward (0x3.ec2ap+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x3p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "j0 (0.75)": -float: 1 -ifloat: 1 -Test "j0 (0x1.d7ce3ap+107)": -float: 2 -ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x4.093385688a2d4p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0x4.093385688a2dp-4)": +double: 1 +idouble: 1 +Test "sin_upward (0x4.09338p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0x4.1237e153f7080000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "j0 (0x1p1023)": +Test "sin_upward (0x4.1237e153f70800000000000002p+0)": ildouble: 1 ldouble: 1 -Test "j0 (0x1p16383)": -ildouble: 2 -ldouble: 2 -Test "j0 (10.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +Test "sin_upward (0x4.1237e153f7080008p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x4.1237e153f7084p+0)": ildouble: 2 ldouble: 2 -Test "j0 (2.0)": +Test "sin_upward (0x4.1237e153f708p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x4.1237e8p+0)": +double: 1 float: 2 +idouble: 1 ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "j0 (4.0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x4.1237ep+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "j0 (8.0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x4.c92d08p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 - -# j1 -Test "j1 (-1.0)": +Test "sin_upward (0x4.c92d0ffa4bf00000000000000088p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x4.c92d0ffa4bf0000000000000008cp+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x4.c92d0ffa4bf000000000000002p+0)": ildouble: 1 ldouble: 1 -Test "j1 (0.75)": +Test "sin_upward (0x4.c92d0ffa4bf00008p+0)": ildouble: 1 ldouble: 1 -Test "j1 (0x1.3ffp+74)": +Test "sin_upward (0x4.c92d0ffa4bf04p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "j1 (0x1.ff00000000002p+840)": +Test "sin_upward (0x4.c92d0ffa4bfp+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "j1 (0x1p1023)": +Test "sin_upward (0x4.c92d1p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x4p+0)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "j1 (0x1p16382)": +Test "sin_upward (0x4p+48)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "j1 (0x1p16383)": +Test "sin_upward (0x5.fbec7477d4a80000000000000098p+0)": ildouble: 2 ldouble: 2 -Test "j1 (1.0)": +Test "sin_upward (0x5.fbec7477d4a8000000000000009cp+0)": ildouble: 1 ldouble: 1 -Test "j1 (10.0)": -float: 2 -ifloat: 2 +Test "sin_upward (0x5.fbec7477d4a800000000000002p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x5.fbec7477d4a80008p+0)": ildouble: 2 ldouble: 2 -Test "j1 (2.0)": +Test "sin_upward (0x5.fbec7477d4a84p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x5.fbec7477d4a8p+0)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0x5.fbec78p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x5.fbec7p+0)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x5p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x6p+0)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0x7p+0)": double: 1 +float: 1 idouble: 1 -Test "j1 (8.0)": +ifloat: 1 +Test "sin_upward (0x8.60a91c16b9b3p-4)": double: 1 idouble: 1 -ildouble: 4 -ldouble: 4 - -# jn -Test "jn (0, -4.0)": +Test "sin_upward (0x8.60a91p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0x8.60a92p-4)": double: 1 -float: 1 idouble: 1 +Test "sin_upward (0x8p+0)": +float: 1 ifloat: 1 -Test "jn (0, 0.75)": +Test "sin_upward (0x8p+124)": +double: 1 +idouble: 1 +Test "sin_upward (0x9p+0)": float: 1 ifloat: 1 -Test "jn (0, 10.0)": -double: 2 +Test "sin_upward (0xap+0)": float: 1 -idouble: 2 ifloat: 1 ildouble: 2 ldouble: 2 -Test "jn (0, 2.0)": -float: 2 -ifloat: 2 +Test "sin_upward (0xb.fa09ap+100)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "sin_upward (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xc.d4967p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xcp-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xe.ef3af1b5d8008p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xe.ef3af1b5d8p-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xe.ef3afp-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xe.ef3bp-4)": +double: 1 +idouble: 1 +Test "sin_upward (0xf.ffffcp+124)": +ildouble: 1 +ldouble: 1 +Test "sin_upward (0xf.ffffffffffff8p+1020)": ildouble: 2 ldouble: 2 -Test "jn (0, 4.0)": -double: 1 +Test "sin_upward (0xf.ffffffffffffbffffffffffffcp+1020)": +ildouble: 2 +ldouble: 2 +Test "sin_upward (0xf.fffffp+124)": +ildouble: 1 +ldouble: 1 + +# sincos +Test "sincos (0x1.0c1522p+0) extra output 1": +float: 1 +ifloat: 1 +Test "sincos (0x1.921fb54442d1846ap+0) extra output 2": +ildouble: 1 +ldouble: 1 +Test "sincos (0x1.921fb54442d18p+0) extra output 2": +ildouble: 1 +ldouble: 1 +Test "sincos (0x1p+120) extra output 2": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "sincos (0x1p+28) extra output 2": +ildouble: 1 +ldouble: 1 +Test "sincos (0x2.1e19e0c9bab24p+72) extra output 1": +ildouble: 1 +ldouble: 1 +Test "sincos (0x2p+64) extra output 1": +ildouble: 1 +ldouble: 1 +Test "sincos (0x8.60a92p-4) extra output 2": float: 1 -idouble: 1 ifloat: 1 -Test "jn (0, 8.0)": +Test "sincos (0x8p+124) extra output 2": float: 1 ifloat: 1 +Test "sincos (0xc.d4967p-4) extra output 2": +float: 1 +ifloat: 1 +Test "sincos (0xf.ffffffffffff8p+1020) extra output 2": ildouble: 1 ldouble: 1 -Test "jn (1, -1.0)": -ildouble: 1 -ldouble: 1 -Test "jn (1, 0.75)": +Test "sincos (0xf.ffffffffffffbffffffffffffcp+1020) extra output 2": ildouble: 1 ldouble: 1 -Test "jn (1, 1.0)": + +# sinh_downward +Test "sinh_downward (0x1.6p+4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "jn (1, 10.0)": -float: 2 -ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "jn (1, 2.0)": +Test "sinh_downward (0x1.7p+4)": double: 1 idouble: 1 -Test "jn (1, 8.0)": +ildouble: 1 +ldouble: 1 +Test "sinh_downward (0x1.8p+4)": +ildouble: 1 +ldouble: 1 +Test "sinh_downward (0xcp-4)": +ildouble: 1 +ldouble: 1 + +# sinh_towardzero +Test "sinh_towardzero (0x1.6p+4)": double: 1 idouble: 1 -ildouble: 4 -ldouble: 4 -Test "jn (10, -1.0)": ildouble: 1 ldouble: 1 -Test "jn (10, 0.125)": +Test "sinh_towardzero (0x1.7p+4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (10, 0.75)": +Test "sinh_towardzero (0xcp-4)": +ildouble: 1 +ldouble: 1 + +# sinh_upward +Test "sinh_upward (0x1.7p+4)": +ildouble: 1 +ldouble: 1 +Test "sinh_upward (0x1.8p+4)": +double: 1 +idouble: 1 +Test "sinh_upward (0x8p-32)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (10, 1.0)": +Test "sinh_upward (0xcp-4)": ildouble: 1 ldouble: 1 -Test "jn (10, 10.0)": -double: 4 -float: 3 -idouble: 4 -ifloat: 3 -ildouble: 2 -ldouble: 2 -Test "jn (10, 2.0)": + +# tan +Test "tan (-0xc.90fdcp-4)": +ildouble: 1 +ldouble: 1 +Test "tan (-0xc.90fdp-4)": +ildouble: 1 +ldouble: 1 +Test "tan (-0xc.90fp-4)": +ildouble: 1 +ldouble: 1 +Test "tan (0x3p+0)": +ildouble: 1 +ldouble: 1 +Test "tan (0x6p+0)": +ildouble: 1 +ldouble: 1 + +# tan_downward +Test "tan_downward (-0x2p+64)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -Test "jn (2, 0x1.ffff62p+99)": -double: 2 +Test "tan_downward (-0xc.908p-4)": float: 2 -idouble: 2 ifloat: 2 -Test "jn (2, 0x1p1023)": ildouble: 1 ldouble: 1 -Test "jn (2, 0x1p127)": +Test "tan_downward (-0xc.90cp-4)": +float: 1 +ifloat: 1 +Test "tan_downward (-0xc.90ep-4)": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "jn (2, 0x1p16383)": -ildouble: 2 -ldouble: 2 -Test "jn (2, 2.4048255576957729)": -double: 2 +Test "tan_downward (-0xc.90f8p-4)": +double: 1 float: 1 -idouble: 2 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "jn (3, 0.125)": +Test "tan_downward (-0xc.90fcp-4)": +float: 1 +ifloat: 1 +Test "tan_downward (-0xc.90fd8p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "jn (3, 0.75)": +Test "tan_downward (-0xc.90fdap-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "jn (3, 10.0)": -double: 3 +Test "tan_downward (-0xc.90fdbp-4)": +double: 1 float: 1 -idouble: 3 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "jn (3, 2.0)": +Test "tan_downward (-0xc.90fdcp-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tan_downward (-0xc.90fdp-4)": float: 1 ifloat: 1 -Test "jn (3, 2.4048255576957729)": -double: 3 -idouble: 3 ildouble: 1 ldouble: 1 -Test "jn (4, 2.4048255576957729)": +Test "tan_downward (-0xc.90fep-4)": double: 1 +float: 1 idouble: 1 -ildouble: 1 -ldouble: 1 -Test "jn (5, 2.4048255576957729)": -double: 3 +ifloat: 1 +Test "tan_downward (-0xc.90fp-4)": +double: 1 float: 1 -idouble: 3 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "jn (6, 2.4048255576957729)": -double: 4 -float: 3 -idouble: 4 -ifloat: 3 -ildouble: 5 -ldouble: 5 -Test "jn (7, 2.4048255576957729)": -double: 3 -float: 5 -idouble: 3 -ifloat: 5 -ildouble: 3 -ldouble: 3 -Test "jn (8, 2.4048255576957729)": -double: 3 -float: 2 -idouble: 3 -ifloat: 2 -ildouble: 8 -ldouble: 8 -Test "jn (9, 2.4048255576957729)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (-0xc.91p-4)": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 -ildouble: 3 -ldouble: 3 - -# lgamma -Test "lgamma (-0.5)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "lgamma (-0x1p-10)": +Test "tan_downward (-0xc.92p-4)": double: 1 idouble: 1 -Test "lgamma (-0x1p-15)": +Test "tan_downward (-0xc.98p-4)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (-0xc.9p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "lgamma (-0x1p-20)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (-0xc.ap-4)": double: 1 idouble: 1 -Test "lgamma (-0x1p-25)": ildouble: 1 ldouble: 1 -Test "lgamma (-0x1p-30)": +Test "tan_downward (0x1p+0)": +double: 1 +idouble: 1 +Test "tan_downward (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "lgamma (-0x1p-40)": +Test "tan_downward (0x2.1e19ep+72)": ildouble: 1 ldouble: 1 -Test "lgamma (-0x1p-5)": +Test "tan_downward (0x2p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "lgamma (-0x1p-64)": +Test "tan_downward (0x2p+64)": ildouble: 1 ldouble: 1 -Test "lgamma (0.7)": +Test "tan_downward (0x3p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "lgamma (0x1p-10)": +Test "tan_downward (0x4p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "lgamma (0x1p-30)": +Test "tan_downward (0x6p+0)": +double: 1 +idouble: 1 +Test "tan_downward (0x7p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "lgamma (0x1p-5)": +Test "tan_downward (0x8p+0)": ildouble: 1 ldouble: 1 -Test "lgamma (0x1p-60)": +Test "tan_downward (0x8p+1020)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "lgamma (0x1p-70)": +Test "tan_downward (0x8p+16380)": ildouble: 1 ldouble: 1 -Test "lgamma (1.2)": +Test "tan_downward (0xc.908p-4)": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 +ifloat: 1 +Test "tan_downward (0xc.90cp-4)": +double: 1 +idouble: 1 +Test "tan_downward (0xc.90fcp-4)": +double: 1 +idouble: 1 +Test "tan_downward (0xc.90fdaa22168c8p-4)": +double: 1 +idouble: 1 +Test "tan_downward (0xc.90fdbp-4)": ildouble: 1 ldouble: 1 - -# log10 -Test "log10 (0.75)": +Test "tan_downward (0xc.90fdcp-4)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0xc.90fdp-4)": double: 1 -float: 2 idouble: 1 -ifloat: 2 -Test "log10 (e)": -float: 1 -ifloat: 1 +Test "tan_downward (0xc.90fep-4)": ildouble: 1 ldouble: 1 - -# log1p -Test "log1p (-0.25)": -float: 1 -ifloat: 1 - -# log2 -Test "log2 (0.75)": +Test "tan_downward (0xc.91p-4)": ildouble: 1 ldouble: 1 - -# pow -Test "pow (0x0.fffffffffffff8p0, -0x1.23456789abcdfp62)": +Test "tan_downward (0xc.92p-4)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "pow (0x0.ffffffp0, -0x1p24)": +Test "tan_downward (0xc.94p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "pow (0x0.ffffffp0, 0x1p24)": +Test "tan_downward (0xc.98p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "pow (0x1.000002p0, 0x1p24)": +ildouble: 1 +ldouble: 1 +Test "tan_downward (0xc.ap-4)": float: 1 ifloat: 1 -Test "pow (10.0, -4930.0)": ildouble: 1 ldouble: 1 -Test "pow (10.0, 4929.0)": +Test "tan_downward (0xcp-4)": +double: 1 +idouble: 1 +Test "tan_downward (0xf.fffffp+124)": ildouble: 1 ldouble: 1 -Test "pow (10.0, 4930.0)": + +# tan_tonearest +Test "tan_tonearest (-0xc.90fdcp-4)": ildouble: 1 ldouble: 1 -Test "pow (10.0, 4931.0)": +Test "tan_tonearest (-0xc.90fdp-4)": ildouble: 1 ldouble: 1 -Test "pow (10.0, 4932.0)": +Test "tan_tonearest (-0xc.90fp-4)": ildouble: 1 ldouble: 1 -Test "pow (1e4932, 0.75)": +Test "tan_tonearest (0x3p+0)": ildouble: 1 ldouble: 1 - -# pow10 -Test "pow10 (-1)": -double: 1 -idouble: 1 -Test "pow10 (-305)": -double: 1 -idouble: 1 -Test "pow10 (-36)": -double: 1 -idouble: 1 +Test "tan_tonearest (0x6p+0)": ildouble: 1 ldouble: 1 -Test "pow10 (3)": + +# tan_towardzero +Test "tan_towardzero (-0x2p+64)": double: 1 idouble: 1 -Test "pow10 (36)": +Test "tan_towardzero (-0xc.908p-4)": double: 1 -idouble: 1 -Test "pow10 (4932)": -ildouble: 1 -ldouble: 1 - -# pow_downward -Test "pow_downward (1.5, 1.03125)": -float: 1 -ifloat: 1 - -# pow_towardzero -Test "pow_towardzero (1.5, 1.03125)": -float: 1 -ifloat: 1 - -# pow_upward -Test "pow_upward (1.0625, 1.125)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 - -# sin_downward -Test "sin_downward (10)": -float: 1 -ifloat: 1 -Test "sin_downward (2)": -ildouble: 1 -ldouble: 1 -Test "sin_downward (3)": float: 1 +idouble: 1 ifloat: 1 +Test "tan_towardzero (-0xc.90cp-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_downward (4)": -ildouble: 1 -ldouble: 1 -Test "sin_downward (5)": -float: 1 -ifloat: 1 +Test "tan_towardzero (-0xc.90f8p-4)": ildouble: 1 ldouble: 1 -Test "sin_downward (6)": -float: 1 -ifloat: 1 -Test "sin_downward (8)": +Test "tan_towardzero (-0xc.90fcp-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_downward (9)": +Test "tan_towardzero (-0xc.90fd8p-4)": ildouble: 1 ldouble: 1 - -# sin_tonearest -Test "sin_tonearest (1)": -float: 1 -ifloat: 1 -Test "sin_tonearest (3)": +Test "tan_towardzero (-0xc.90fdap-4)": ildouble: 1 ldouble: 1 - -# sin_towardzero -Test "sin_towardzero (1)": -float: 1 -ifloat: 1 -Test "sin_towardzero (10)": -float: 1 -ifloat: 1 -Test "sin_towardzero (2)": +Test "tan_towardzero (-0xc.90fdp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (-0xc.91p-4)": ildouble: 1 ldouble: 1 -Test "sin_towardzero (3)": +Test "tan_towardzero (-0xc.94p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (-0xc.98p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_towardzero (4)": -float: 1 -ifloat: 1 +Test "tan_towardzero (-0xc.ap-4)": ildouble: 1 ldouble: 1 -Test "sin_towardzero (5)": +Test "tan_towardzero (0x1p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "sin_towardzero (8)": +Test "tan_towardzero (0x2.1e19e0c9bab24p+72)": ildouble: 1 ldouble: 1 -Test "sin_towardzero (9)": -float: 1 -ifloat: 1 +Test "tan_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x2.1e19ep+72)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# sin_upward -Test "sin_upward (1)": -float: 1 -ifloat: 1 +Test "tan_towardzero (0x2p+0)": ildouble: 1 ldouble: 1 -Test "sin_upward (10)": +Test "tan_towardzero (0x2p+64)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_upward (2)": -float: 2 -ifloat: 2 -Test "sin_upward (3)": +Test "tan_towardzero (0x5p+0)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x7p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_upward (4)": -float: 1 -ifloat: 1 -Test "sin_upward (6)": +Test "tan_towardzero (0x8p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sin_upward (7)": +Test "tan_towardzero (0x8p+16380)": ildouble: 1 ldouble: 1 -Test "sin_upward (9)": -float: 1 -ifloat: 1 - -# sincos -Test "sincos (0x1p+120) extra output 2": -float: 1 -ifloat: 1 -Test "sincos (0x1p+127) extra output 2": +Test "tan_towardzero (0x9p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "sincos (M_PI_6l*2.0) extra output 1": +Test "tan_towardzero (0xc.908p-4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "sincos (M_PI_6l*2.0) extra output 2": +Test "tan_towardzero (0xc.90cp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90fcp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90fdaa22168c8p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90fdp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.94p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.98p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xcp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xf.fffffp+124)": double: 1 idouble: 1 -Test "sincos (pi/6) extra output 2": -float: 1 -ifloat: 1 -# sinh_downward -Test "sinh_downward (22)": -float: 1 -ifloat: 1 +# tan_upward +Test "tan_upward (-0xc.908p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "sinh_downward (23)": +Test "tan_upward (-0xc.90cp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "sinh_downward (24)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 - -# sinh_towardzero -Test "sinh_towardzero (22)": +Test "tan_upward (-0xc.90ep-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "sinh_towardzero (23)": +Test "tan_upward (-0xc.90f8p-4)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "sinh_towardzero (24)": +Test "tan_upward (-0xc.90fcp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 - -# sinh_upward -Test "sinh_upward (22)": -ildouble: 1 -ldouble: 1 -Test "sinh_upward (23)": -ildouble: 1 -ldouble: 1 -Test "sinh_upward (24)": -ildouble: 1 -ldouble: 1 - -# tan_downward -Test "tan_downward (1)": +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.90fd8p-4)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_downward (10)": +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.90fdap-4)": float: 1 ifloat: 1 -Test "tan_downward (2)": +ildouble: 2 +ldouble: 2 +Test "tan_upward (-0xc.90fdbp-4)": float: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tan_downward (6)": +Test "tan_upward (-0xc.90fdcp-4)": float: 1 ifloat: 1 -Test "tan_downward (8)": +Test "tan_upward (-0xc.90fdp-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tan_downward (9)": -float: 1 -ifloat: 1 - -# tan_towardzero -Test "tan_towardzero (10)": +Test "tan_upward (-0xc.90fep-4)": float: 1 ifloat: 1 -Test "tan_towardzero (3)": +Test "tan_upward (-0xc.90fp-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tan_towardzero (4)": +Test "tan_upward (-0xc.91p-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tan_towardzero (5)": +Test "tan_upward (-0xc.94p-4)": +double: 1 +idouble: 1 +Test "tan_upward (-0xc.98p-4)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "tan_upward (-0xc.9p-4)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tan_towardzero (6)": +Test "tan_upward (-0xc.ap-4)": ildouble: 1 ldouble: 1 -Test "tan_towardzero (9)": +Test "tan_upward (0x1p+0)": float: 1 ifloat: 1 +Test "tan_upward (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "tan_upward (0x2.1e19ep+72)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# tan_upward -Test "tan_upward (1)": -float: 1 -ifloat: 1 -Test "tan_upward (10)": -float: 1 -ifloat: 1 +Test "tan_upward (0x2p+64)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (2)": +Test "tan_upward (0x4p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (3)": +Test "tan_upward (0x5p+0)": +double: 1 +idouble: 1 +Test "tan_upward (0x7p+0)": float: 1 ifloat: 1 +Test "tan_upward (0x8p+0)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (4)": -ildouble: 1 -ldouble: 1 -Test "tan_upward (5)": +Test "tan_upward (0x9p+0)": +double: 1 +idouble: 1 +Test "tan_upward (0xap+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tan_upward (0xc.908p-4)": float: 1 ifloat: 1 +Test "tan_upward (0xc.90ep-4)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.90f8p-4)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.90fd8p-4)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.90fdap-4)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.90fdbp-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (6)": +Test "tan_upward (0xc.90fdcp-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tan_upward (9)": +Test "tan_upward (0xc.90fep-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 - -# tanh -Test "tanh (-0.75)": +Test "tan_upward (0xc.90fp-4)": +double: 1 +idouble: 1 +Test "tan_upward (0xc.91p-4)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tanh (-1.0)": +Test "tan_upward (0xc.92p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tanh (0.75)": +Test "tan_upward (0xc.94p-4)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tanh (1.0)": +Test "tan_upward (0xc.98p-4)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 - -# tgamma -Test "tgamma (-0.5)": +Test "tan_upward (0xc.9p-4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "tgamma (-0x0.fffffffffffff8p0)": +Test "tan_upward (0xc.ap-4)": double: 1 +float: 1 idouble: 1 -Test "tgamma (-0x0.ffffffffffffffffffffffffffff8p0)": +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x0.ffffffp0)": +Test "tan_upward (0xcp-4)": float: 1 ifloat: 1 +Test "tan_upward (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "tan_upward (0xf.fffffp+124)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.0000000000000002p0)": + +# tanh +Test "tanh (-0x1p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.0000000000001p0)": +Test "tanh (-0xcp-4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.000002p0)": -double: 2 -idouble: 2 -Test "tgamma (-0x1.0a32a2p+5)": -float: 2 -ifloat: 2 -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x1.5800000080001p+7)": +Test "tanh (0x1p+0)": +ildouble: 1 +ldouble: 1 +Test "tanh (0xcp-4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.fffffffffffffffep0)": + +# tgamma +Test "tgamma (-0x1.0000000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1.fffffffffffffp0)": +Test "tgamma (-0x1.0000000000001p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x13.ffffep0)": +Test "tgamma (-0x1.000002p+0)": +double: 2 +idouble: 2 +Test "tgamma (-0x1.3ffffep+4)": float: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (-0x13.ffffffffffffffep0)": +Test "tgamma (-0x1.3ffffffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x13.fffffffffffffffffffffffff8p0)": +Test "tgamma (-0x1.3fffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x13.ffffffffffffp0)": +Test "tgamma (-0x1.3ffffffffffffp+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x14.000000000000000000000000001p0)": +Test "tgamma (-0x1.4000000000000000000000000001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x14.000000000001p0)": +Test "tgamma (-0x1.4000000000001p+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x14.00002p0)": +Test "tgamma (-0x1.400002p+4)": float: 1 ifloat: 1 ildouble: 4 ldouble: 4 -Test "tgamma (-0x1d.ffffep0)": +Test "tgamma (-0x1.dffffep+4)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x1d.fffffffffffffffffffffffff8p0)": +Test "tgamma (-0x1.dfffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1d.ffffffffffffp0)": +Test "tgamma (-0x1.dffffffffffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1e.000000000000000000000000001p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x1e.00000000000000000000000008p0)": +Test "tgamma (-0x1.e000000000000000000000000001p+4)": +ildouble: 3 +ldouble: 3 +Test "tgamma (-0x1.e00000000000000000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1e.000000000000002p0)": +Test "tgamma (-0x1.e000000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1e.000000000001p0)": +Test "tgamma (-0x1.e000000000001p+4)": double: 3 idouble: 3 -Test "tgamma (-0x1e.00002p0)": +Test "tgamma (-0x1.e00002p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x1.f3ffffffffffffffffffffffff8p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1f3.ffffffffffffffffffffffffffp0)": +Test "tgamma (-0x1.f3ffffffffffffffffffffffffffp+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x1p-24)": +Test "tgamma (-0x1.f3fffffffffffp+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x1.f40000000000000000000000008p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.0000000000000000000000000002p0)": +Test "tgamma (-0x1.f40002p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.0000000000002p0)": -double: 1 -idouble: 1 +Test "tgamma (-0x1.fffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.000004p0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +Test "tgamma (-0x1.fffffffffffffp+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.0000000000000000000000000002p+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.00000000000000000000000001p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2.fffffcp0)": +Test "tgamma (-0x2.0000000000002p+0)": double: 1 -float: 1 idouble: 1 +Test "tgamma (-0x2.000004p+0)": +double: 2 +float: 1 +idouble: 2 ifloat: 1 -Test "tgamma (-0x2.ffffffffffffep0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x27.fffffffffffep0)": +Test "tgamma (-0x2.146544p+4)": +float: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x2.7fffffffffffep+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x27.ffffffffffffffcp0)": +Test "tgamma (-0x2.7ffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x27.ffffffffffffffffffffffffffep0)": +Test "tgamma (-0x2.7ffffffffffffffffffffffffffep+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x27.fffffffffffffffffffffffffp0)": +Test "tgamma (-0x2.7fffffffffffffffffffffffffp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.8000000000000000000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.0000000000000000000000001p0)": +Test "tgamma (-0x2.80000000000000000000000001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.000000000002p0)": +Test "tgamma (-0x2.8000000000002p+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.00004p0)": +Test "tgamma (-0x2.800004p+4)": double: 2 idouble: 2 ildouble: 2 ldouble: 2 -Test "tgamma (-0x28.ffffcp0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x28.ffffffffffffffcp0)": +Test "tgamma (-0x2.8fffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.ffffffffffffffffffffffffffep0)": +Test "tgamma (-0x2.8ffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x28.fffffffffffffffffffffffffp0)": +Test "tgamma (-0x2.8ffffffffffffffffffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.000000000000000000000000002p0)": +Test "tgamma (-0x2.8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +Test "tgamma (-0x2.9000000000000000000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.0000000000000000000000001p0)": +Test "tgamma (-0x2.90000000000000000000000001p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x29.00004p0)": +Test "tgamma (-0x2.900004p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x2.9ffffcp+4)": double: 1 idouble: 1 -Test "tgamma (-0x29.ffffcp0)": +Test "tgamma (-0x2.9fffffffffffep+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.9ffffffffffffffcp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.9ffffffffffffffffffffffffffep+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.9fffffffffffffffffffffffffp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.a000000000000000000000000002p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.a000000000000004p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.a000000000002p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.a00004p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.edfffcp+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.edffffffffffep+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.edfffffffffffffffffffffffffep+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.ee00000000000000000000000002p+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.ee00000000000004p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x2.ee00000000002p+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.ee0004p+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.fffffcp+0)": double: 1 +float: 1 idouble: 1 -Test "tgamma (-0x29.fffffffffffep0)": +ifloat: 1 +Test "tgamma (-0x2.ffffffffffffep+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x2.fffffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.ffffffffffffffcp0)": +Test "tgamma (-0x3.00000000000000000000000001p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.ffffffffffffffffffffffffffep0)": +Test "tgamma (-0x3.000004p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (-0x3.1ffffcp+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.1fffffffffffep+4)": +double: 3 +idouble: 3 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.1ffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x29.fffffffffffffffffffffffffp0)": +Test "tgamma (-0x3.1ffffffffffffffffffffffffffep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2a.000000000000000000000000002p0)": +Test "tgamma (-0x3.1fffffffffffffffffffffffffp+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.2000000000000000000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2a.0000000000000000000000001p0)": +Test "tgamma (-0x3.2000000000000004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2a.000000000000004p0)": +Test "tgamma (-0x3.200004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2a.000000000002p0)": +Test "tgamma (-0x3.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x2ed.fffffffffffffffffffffffffep0)": +Test "tgamma (-0x3.e7fffffffffffffcp+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x2ee.00000000000004p0)": +Test "tgamma (-0x3.e7fffffffffffffffffffffffffep+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3.00000000000000000000000001p0)": +Test "tgamma (-0x3.e7ffffffffffffffffffffffffp+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.e800000000000000000000000002p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.e8000000000000000000000001p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.e800000000000004p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.e800000000002p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3.000004p0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "tgamma (-0x3.fffffcp0)": +Test "tgamma (-0x3.e80004p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x3.fffffcp+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x3.ffffffffffffep0)": +Test "tgamma (-0x3.ffffffffffffep+0)": double: 2 idouble: 2 -Test "tgamma (-0x3.fffffffffffffffcp0)": +Test "tgamma (-0x3.fffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3.fffffffffffffffffffffffffffep0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x31.fffffffffffep0)": -double: 3 -idouble: 3 +Test "tgamma (-0x3.fffffffffffffffffffffffffffep+0)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x31.ffffffffffffffcp0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x31.ffffffffffffffffffffffffffep0)": +Test "tgamma (-0x4.000008p+0)": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x31.fffffffffffffffffffffffffp0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x32.000000000000000000000000002p0)": +Test "tgamma (-0x4.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x32.0000000000000000000000001p0)": +Test "tgamma (-0x4.e1fffffffffffffffffffffffep+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x32.000000000000004p0)": +Test "tgamma (-0x4.e2000000000000000000000002p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3e7.fffffffffffffcp0)": +Test "tgamma (-0x4.e200000000000008p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3e7.fffffffffffffffffffffffffep0)": +Test "tgamma (-0x4.e200000000004p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x3e8.00000000000000000000000002p0)": +Test "tgamma (-0x4.e20008p+8)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x3e8.00000000000004p0)": +Test "tgamma (-0x4.fffff8p+0)": +double: 1 +idouble: 1 +Test "tgamma (-0x4.ffffffffffffcp+0)": +double: 1 +idouble: 1 +Test "tgamma (-0x4.fffffffffffffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.0000000000004p0)": +Test "tgamma (-0x4.fffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.000008p0)": -float: 1 -ifloat: 1 +Test "tgamma (-0x4.fffffffffffffffffffffffffffcp+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x5.0000000000000008p+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x5.0000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.fffff8p0)": +Test "tgamma (-0x5.000008p+0)": double: 1 +float: 1 idouble: 1 -Test "tgamma (-0x4.ffffffffffffcp0)": +ifloat: 1 +Test "tgamma (-0x5.8p+0)": double: 1 idouble: 1 +Test "tgamma (-0x5.dbfffffffffffff8p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.fffffffffffffffffffffffffep0)": +Test "tgamma (-0x5.dbfffffffffffffffffffffffffcp+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x4.fffffffffffffffffffffffffffcp0)": +Test "tgamma (-0x5.dc00000000000000000000000004p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x5.dc000000000000000000000002p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.0000000000000008p0)": +Test "tgamma (-0x5.dc00000000004p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.0000000000004p0)": +Test "tgamma (-0x5.dc0008p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.000008p0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "tgamma (-0x5.fffff8p0)": +Test "tgamma (-0x5.fffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.ffffffffffffcp0)": +Test "tgamma (-0x5.ffffffffffffcp+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.fffffffffffffff8p0)": +Test "tgamma (-0x5.fffffffffffffff8p+0)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x5.fffffffffffffffffffffffffep0)": +Test "tgamma (-0x5.fffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5.fffffffffffffffffffffffffffcp0)": +Test "tgamma (-0x5.fffffffffffffffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5db.fffffffffffff8p0)": +Test "tgamma (-0x6.0000000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5db.fffffffffffffffffffffffffcp0)": +Test "tgamma (-0x6.00000000000000000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x5dc.00000000000000000000000004p0)": +Test "tgamma (-0x6.000008p+0)": +float: 2 +ifloat: 2 ildouble: 2 ldouble: 2 -Test "tgamma (-0x6.0000000000000000000000000004p0)": +Test "tgamma (-0x6.3ffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.00000000000000000000000002p0)": +Test "tgamma (-0x6.3fffffffffffcp+4)": +double: 2 +idouble: 2 +Test "tgamma (-0x6.3ffffffffffffff8p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.3ffffffffffffffffffffffffep+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.4000000000000000000000000004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.0000000000004p0)": +Test "tgamma (-0x6.40000000000000000000000002p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.000008p0)": -float: 2 -ifloat: 2 +Test "tgamma (-0x6.4000000000004p+4)": +double: 1 +idouble: 1 ildouble: 2 ldouble: 2 -Test "tgamma (-0x6.fffff8p0)": -double: 2 +Test "tgamma (-0x6.400008p+4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.8p+0)": float: 1 -idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.ffffffffffffcp0)": -double: 4 -idouble: 4 +Test "tgamma (-0x6.d5fff8p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.fffffffffffffff8p0)": +Test "tgamma (-0x6.d5ffffffffffcp+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6.fffffffffffffffffffffffffffcp0)": +Test "tgamma (-0x6.d5fffffffffffff8p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x63.fffffffffffcp0)": -double: 2 -idouble: 2 -Test "tgamma (-0x63.ffffffffffffff8p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x63.ffffffffffffffffffffffffep0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x64.000000000000000000000000004p0)": -ildouble: 2 -ldouble: 2 -Test "tgamma (-0x64.0000000000000000000000002p0)": +Test "tgamma (-0x6.d5fffffffffffffffffffffffep+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x64.000000000004p0)": -double: 1 -idouble: 1 +Test "tgamma (-0x6.d600000000000000000000000004p+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x6.d6000000000000000000000002p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.d600000000000008p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6d5.fffffffffffff8p0)": +Test "tgamma (-0x6.d600000000004p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6d6.00000000000000000000000004p0)": +Test "tgamma (-0x6.e2fffffffffffffffffffffffep+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.e300000000000000000000000004p+8)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0x6.e3000000000000000000000002p+8)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x6e3.00000000000000000000000004p0)": +Test "tgamma (-0x6.fffff8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (-0x6.ffffffffffffcp+0)": +double: 4 +idouble: 4 +Test "tgamma (-0x6.fffffffffffffff8p+0)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x7.0000000000000008p0)": +Test "tgamma (-0x6.fffffffffffffffffffffffffffcp+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x7.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.0000000000004p0)": +Test "tgamma (-0x7.0000000000004p+0)": double: 3 idouble: 3 -Test "tgamma (-0x7.000008p0)": +Test "tgamma (-0x7.000008p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-0x7.fffff8p0)": +Test "tgamma (-0x7.8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (-0x7.fffff8p+0)": double: 3 float: 1 idouble: 3 ifloat: 1 -Test "tgamma (-0x7.ffffffffffffcp0)": +Test "tgamma (-0x7.ffffffffffffcp+0)": double: 3 idouble: 3 -Test "tgamma (-0x7.fffffffffffffff8p0)": +Test "tgamma (-0x7.fffffffffffffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.fffffffffffffffffffffffffep0)": +Test "tgamma (-0x7.fffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x7.fffffffffffffffffffffffffffcp0)": +Test "tgamma (-0x7.fffffffffffffffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x8.0000000000000000000000000008p0)": +Test "tgamma (-0x8.0000000000000000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x8.00000000000000000000000004p0)": +Test "tgamma (-0x8.00000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x8.0000000000008p0)": +Test "tgamma (-0x8.0000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x8.00001p0)": +Test "tgamma (-0x8.00001p+0)": double: 2 idouble: 2 ildouble: 1 ldouble: 1 -Test "tgamma (-0x9.ffffffffffff8p0)": +Test "tgamma (-0x8.8p+0)": double: 1 +float: 1 idouble: 1 -Test "tgamma (-0x9.fffffffffffffffffffffffffff8p0)": -ildouble: 1 -ldouble: 1 -Test "tgamma (-0x9.fffffp0)": +ifloat: 1 +Test "tgamma (-0x8p-4)": +double: 1 float: 1 +idouble: 1 ifloat: 1 -Test "tgamma (-0x95.ffffffffffffffp0)": +Test "tgamma (-0x9.5ffffffffffffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x96.000000000000000000000000008p0)": +Test "tgamma (-0x9.5ffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x96.0000000000000000000000004p0)": +Test "tgamma (-0x9.60000000000000000000000004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0x96.00000000000001p0)": +Test "tgamma (-0x9.600000000000001p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0x96.000000000008p0)": +Test "tgamma (-0x9.6000000000008p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x9.60001p+4)": +double: 1 +idouble: 1 +Test "tgamma (-0x9.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (-0x9.ffffffffffff8p+0)": +double: 1 +idouble: 1 +Test "tgamma (-0x9.fffffffffffffffffffffffffff8p+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0x9.fffffp+0)": +float: 1 +ifloat: 1 +Test "tgamma (-0xa.00001p+0)": double: 1 idouble: 1 -Test "tgamma (-0xa.0000000000008p0)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xa.00001p0)": +Test "tgamma (-0xa.c000000400008p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xa.c0001p+4)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-0xb4.ffffffffffffffffffffffffcp0)": +Test "tgamma (-0xb.4ffffffffffffffffffffffffcp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.4ffffffffffffffffffffffffff8p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.4ffffffffffffffp+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.50000000000000000000000004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb4.ffffffffffffffp0)": +Test "tgamma (-0xb.500000000000001p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.5000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb5.0000000000000000000000004p0)": +Test "tgamma (-0xb.5ffffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb5.00000000000001p0)": +Test "tgamma (-0xb.5ffffp+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xb5.000000000008p0)": +Test "tgamma (-0xb.60000000000000000000000004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb5.ffffffffffffffffffffffffff8p0)": +Test "tgamma (-0xb.600000000000001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb6.00000000000001p0)": +Test "tgamma (-0xb.6000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb6.000000000008p0)": +Test "tgamma (-0xb.6fffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb6.fffffffffff8p0)": +Test "tgamma (-0xb.6ffffffffffffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb6.ffffffffffffffffffffffffff8p0)": +Test "tgamma (-0xb.6ffffffffffffffffffffffffff8p+4)": ildouble: 3 ldouble: 3 -Test "tgamma (-0xb7.000000000000000000000000008p0)": +Test "tgamma (-0xb.7000000000000000000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb7.00000000000001p0)": +Test "tgamma (-0xb.700000000000001p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xb7.000000000008p0)": +Test "tgamma (-0xb.7000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb7.ffffffffffffffffffffffffcp0)": +Test "tgamma (-0xb.70001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb7.ffffffffffffffffffffffffff8p0)": +Test "tgamma (-0xb.7ffffffffffffffffffffffffcp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xb8.00000000000001p0)": +Test "tgamma (-0xb.7ffffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbb.ffffffffffffffffffffffffcp0)": +Test "tgamma (-0xb.800000000000001p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.bfffffffffff8p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.bffffffffffffffffffffffffcp+4)": ildouble: 3 ldouble: 3 -Test "tgamma (-0xbb.ffffffffffffffffffffffffff8p0)": +Test "tgamma (-0xb.bffffffffffffffffffffffffff8p+4)": ildouble: 4 ldouble: 4 -Test "tgamma (-0xbc.000000000000000000000000008p0)": +Test "tgamma (-0xb.bffffp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.c000000000000000000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbc.0000000000000000000000004p0)": +Test "tgamma (-0xb.c0000000000000000000000004p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.c00000000000001p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.c000000000008p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xbc.00000000000001p0)": +Test "tgamma (-0xb.c0001p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.cfffffffffff8p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xbc.ffffffffffffffp0)": +Test "tgamma (-0xb.cffffffffffffffffffffffffcp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.cffffffffffffffffffffffffff8p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.cffffffffffffffp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.cffffp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.d000000000000000000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbd.000000000000000000000000008p0)": +Test "tgamma (-0xb.d00000000000001p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xb.dfffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbd.00000000000001p0)": +Test "tgamma (-0xb.dffffffffffffffp+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xbd.ffffffffffffffp0)": +Test "tgamma (-0xb.dffffp+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.e000000000000000000000000008p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.e000000000008p+4)": ildouble: 2 ldouble: 2 -Test "tgamma (-0xbe.000000000000000000000000008p0)": +Test "tgamma (-0xb.e0001p+4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (-0xb.efffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbe.0000000000000000000000004p0)": +Test "tgamma (-0xb.effffffffffffffffffffffffff8p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbe.ffffffffffffffffffffffffcp0)": +Test "tgamma (-0xb.effffffffffffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbe.ffffffffffffffp0)": +Test "tgamma (-0xb.f000000000000000000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbf.000000000000000000000000008p0)": +Test "tgamma (-0xb.f0000000000000000000000004p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbf.0000000000000000000000004p0)": +Test "tgamma (-0xb.f00000000000001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xbf.00000000000001p0)": +Test "tgamma (-0xb.f0001p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xf9.ffffffffffffffp0)": +Test "tgamma (-0xf.9fffffffffff8p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xf.9ffffffffffffffp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-0xfa.000000000000000000000000008p0)": +Test "tgamma (-0xf.9ffffp+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xf.a000000000000000000000000008p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (-2.5)": +Test "tgamma (-0xf.a0000000000000000000000004p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xf.a000000000008p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (-0xf.a0001p+4)": +ildouble: 3 +ldouble: 3 +Test "tgamma (-0xf.ffffffffffff8p-4)": double: 1 -float: 2 idouble: 1 -ifloat: 2 +Test "tgamma (-0xf.fffffffffffffffffffffffffff8p-4)": ildouble: 1 ldouble: 1 -Test "tgamma (-3.5)": -double: 1 +Test "tgamma (-0xf.fffffp-4)": float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "tgamma (-4.5)": +Test "tgamma (0x1.28p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-5.5)": -double: 1 -idouble: 1 -Test "tgamma (-6.5)": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (-7.5)": +Test "tgamma (0x1.38p+4)": double: 2 -float: 1 idouble: 2 -ifloat: 1 -Test "tgamma (-8.5)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0x1.78p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (-9.5)": +Test "tgamma (0x1.d8p+4)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "tgamma (0.5)": -float: 1 -ifloat: 1 -Test "tgamma (0.7)": -double: 1 +Test "tgamma (0x1.e8p+4)": float: 1 -idouble: 1 ifloat: 1 -Test "tgamma (0x1.fffffep0)": +Test "tgamma (0x1.fffffep+0)": float: 1 ifloat: 1 -Test "tgamma (0x1.fffffffffffffffep0)": +Test "tgamma (0x1.fffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x1.ffffffffffffffffffffffffffffp0)": +Test "tgamma (0x1.ffffffffffffffffffffffffffffp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x1.fffffffffffffp0)": +Test "tgamma (0x1.fffffffffffffp+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x1p-113)": +Test "tgamma (0x1p-24)": +float: 1 +ifloat: 1 +Test "tgamma (0x2.08p+4)": ildouble: 1 ldouble: 1 -Test "tgamma (0x1p-24)": +Test "tgamma (0x2.18p+4)": float: 1 ifloat: 1 -Test "tgamma (0x1p-53)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0x2.28p+4)": double: 1 +float: 2 idouble: 1 +ifloat: 2 Test "tgamma (0x2.30a43cp+4)": double: 1 float: 2 @@ -8921,503 +17321,556 @@ idouble: 1 ifloat: 2 ildouble: 2 ldouble: 2 -Test "tgamma (0x2.fffffcp0)": +Test "tgamma (0x2.8p+0)": +float: 2 +ifloat: 2 +Test "tgamma (0x2.fffffcp+0)": float: 3 ifloat: 3 -Test "tgamma (0x2.ffffffffffffep0)": +Test "tgamma (0x2.ffffffffffffep+0)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0x3.0000000000002p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x3.0000000000002p0)": +Test "tgamma (0x3.8p+0)": +float: 2 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (0x3.fffffcp0)": +Test "tgamma (0x3.fffffcp+0)": float: 1 ifloat: 1 -Test "tgamma (0x3.ffffffffffffep0)": +Test "tgamma (0x3.ffffffffffffep+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x3.fffffffffffffffcp0)": +Test "tgamma (0x3.fffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x3.fffffffffffffffffffffffffffep0)": +Test "tgamma (0x3.fffffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.0000000000000000000000000004p0)": +Test "tgamma (0x3p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x4.0000000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.0000000000004p0)": +Test "tgamma (0x4.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x4.000008p0)": +Test "tgamma (0x4.000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.ffffffffffffcp0)": +Test "tgamma (0x4.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (0x4.ffffffffffffcp+0)": double: 1 idouble: 1 -Test "tgamma (0x4.fffffffffffffffffffffffffep0)": +Test "tgamma (0x4.fffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x4.fffffffffffffffffffffffffffcp0)": +Test "tgamma (0x4.fffffffffffffffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.0000000000000000000000000004p0)": +Test "tgamma (0x4p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x5.0000000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.0000000000004p0)": +Test "tgamma (0x5.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x5.000008p0)": +Test "tgamma (0x5.000008p+0)": float: 2 ifloat: 2 -Test "tgamma (0x5.fffff8p0)": +Test "tgamma (0x5.fffff8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (0x5.ffffffffffffcp0)": +Test "tgamma (0x5.ffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.fffffffffffffff8p0)": +Test "tgamma (0x5.fffffffffffffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x5.fffffffffffffffffffffffffep0)": +Test "tgamma (0x5.fffffffffffffffffffffffffep+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x6.0000000000000000000000000004p0)": +Test "tgamma (0x6.0000000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x6.0000000000000008p0)": +Test "tgamma (0x6.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x6.0000000000004p0)": +Test "tgamma (0x6.0000000000004p+0)": double: 1 idouble: 1 -Test "tgamma (0x6.000008p0)": +Test "tgamma (0x6.000008p+0)": float: 2 ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (0x6.fffff8p0)": +Test "tgamma (0x6.8p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x6.db8c603359a94p+8)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0x6.fffff8p+0)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "tgamma (0x6.ffffffffffffcp0)": +Test "tgamma (0x6.ffffffffffffcp+0)": double: 4 idouble: 4 -Test "tgamma (0x6.fffffffffffffff8p0)": +Test "tgamma (0x6.fffffffffffffff8p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x7.0000000000000000000000000004p0)": +Test "tgamma (0x6p+0)": +float: 1 +ifloat: 1 +Test "tgamma (0x7.0000000000000000000000000004p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x7.0000000000000008p0)": +Test "tgamma (0x7.0000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x7.0000000000004p0)": +Test "tgamma (0x7.0000000000004p+0)": double: 4 idouble: 4 -Test "tgamma (0x7.000008p0)": +Test "tgamma (0x7.000008p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (0x7.fffff8p0)": +Test "tgamma (0x7.8p+0)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "tgamma (0x7.fffff8p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -Test "tgamma (0x7.ffffffffffffcp0)": +Test "tgamma (0x7.ffffffffffffcp+0)": double: 2 idouble: 2 ildouble: 1 ldouble: 1 -Test "tgamma (0x7.fffffffffffffffffffffffffffcp0)": +Test "tgamma (0x7.fffffffffffffffffffffffffffcp+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x8.0000000000000000000000000008p0)": +Test "tgamma (0x7p+0)": +double: 1 +idouble: 1 +Test "tgamma (0x8.0000000000000000000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x8.0000000000008p0)": +Test "tgamma (0x8.0000000000008p+0)": ildouble: 1 ldouble: 1 -Test "tgamma (0x8.00001p0)": +Test "tgamma (0x8.00001p+0)": double: 2 idouble: 2 -Test "tgamma (0xa.b9fd72b0fb238p+4)": +Test "tgamma (0x8.8p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tgamma (0x8p+0)": double: 1 idouble: 1 +Test "tgamma (0x8p-116)": ildouble: 1 ldouble: 1 -Test "tgamma (0xa.b9fd72b0fb23a9ddbf0d3804f8p+4)": -ildouble: 2 -ldouble: 2 -Test "tgamma (10)": -double: 1 +Test "tgamma (0x8p-4)": float: 1 -idouble: 1 ifloat: 1 -Test "tgamma (18.5)": +Test "tgamma (0x8p-56)": +double: 1 +idouble: 1 +Test "tgamma (0x9.8p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "tgamma (19.5)": -double: 2 -idouble: 2 ildouble: 1 ldouble: 1 -Test "tgamma (2.5)": -float: 2 -ifloat: 2 -Test "tgamma (23.5)": +Test "tgamma (0x9p+0)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "tgamma (29.5)": +Test "tgamma (0xa.b9fd72b0fb238p+4)": double: 1 -float: 1 idouble: 1 -ifloat: 1 -Test "tgamma (3)": -float: 1 -ifloat: 1 -Test "tgamma (3.5)": -float: 2 -ifloat: 2 ildouble: 1 ldouble: 1 -Test "tgamma (30.5)": -float: 1 -ifloat: 1 -Test "tgamma (32.5)": +Test "tgamma (0xa.b9fd72b0fb23a9ddbf0d3804f8p+4)": +ildouble: 2 +ldouble: 2 +Test "tgamma (0xa.b9fd72b0fb23a9dp+4)": ildouble: 1 ldouble: 1 -Test "tgamma (33.5)": -float: 1 -ifloat: 1 +Test "tgamma (0xa.b9fd72b0fb23a9ep+4)": ildouble: 1 ldouble: 1 -Test "tgamma (34.5)": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 -Test "tgamma (4)": -float: 1 -ifloat: 1 -Test "tgamma (4.5)": +Test "tgamma (0xa.b9fd7p+4)": +double: 2 +idouble: 2 +Test "tgamma (0xap+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "tgamma (6)": -float: 1 -ifloat: 1 -Test "tgamma (6.5)": +Test "tgamma (0xb.3333333333333333333333333338p-4)": +ildouble: 1 +ldouble: 1 +Test "tgamma (0xb.3333333333338p-4)": +ildouble: 1 +ldouble: 1 + +# y0 +Test "y0 (0x1.8p+0)": +double: 2 float: 1 +idouble: 2 ifloat: 1 -Test "tgamma (7)": +Test "y0 (0x1.ff00000000002p+840)": double: 1 idouble: 1 -Test "tgamma (7.5)": +ildouble: 1 +ldouble: 1 +Test "y0 (0x1p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -Test "tgamma (8)": -double: 1 -idouble: 1 -Test "tgamma (8.5)": -double: 1 +Test "y0 (0x1p-100)": +ildouble: 1 +ldouble: 1 +Test "y0 (0x1p-20)": float: 1 -idouble: 1 ifloat: 1 -Test "tgamma (9)": -double: 1 -idouble: 1 -Test "tgamma (9.5)": -double: 1 -idouble: 1 ildouble: 1 ldouble: 1 - -# y0 -Test "y0 (0x1.3ffp+74)": +Test "y0 (0x1p-40)": double: 1 +float: 1 idouble: 1 +ifloat: 1 +Test "y0 (0x1p-60)": ildouble: 1 ldouble: 1 -Test "y0 (0x1.ff00000000002p+840)": +Test "y0 (0x1p-80)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "y0 (0x4.ffcp+72)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "y0 (0x1p-10)": +Test "y0 (0x4p+16380)": +ildouble: 1 +ldouble: 1 +Test "y0 (0x4p-112)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "y0 (0x1p-110)": +Test "y0 (0x4p-12)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "y0 (0x1p-20)": -float: 1 -ifloat: 1 -Test "y0 (0x1p-30)": +Test "y0 (0x4p-32)": float: 1 ifloat: 1 ildouble: 2 ldouble: 2 -Test "y0 (0x1p-40)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -Test "y0 (0x1p-50)": +Test "y0 (0x4p-52)": float: 1 ifloat: 1 -Test "y0 (0x1p-60)": -ildouble: 1 -ldouble: 1 -Test "y0 (0x1p-70)": +Test "y0 (0x4p-72)": double: 1 idouble: 1 -Test "y0 (0x1p-80)": +Test "y0 (0x8p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -Test "y0 (0x1p1023)": -ildouble: 1 -ldouble: 1 -Test "y0 (0x1p16382)": +ildouble: 3 +ldouble: 3 +Test "y0 (0x8p+1020)": ildouble: 1 ldouble: 1 -Test "y0 (0x1p16383)": +Test "y0 (0x8p+16380)": ildouble: 2 ldouble: 2 -Test "y0 (1.0)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "y0 (1.5)": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 -Test "y0 (10.0)": +Test "y0 (0xap+0)": float: 1 ifloat: 1 ildouble: 3 ldouble: 3 -Test "y0 (8.0)": +Test "y0 (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "y0 (0xf.fffffp+124)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 3 -ldouble: 3 # y1 -Test "y1 (0.125)": -double: 1 -idouble: 1 -Test "y1 (0.75)": +Test "y1 (0x1.8p+0)": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "y1 (0x1p-100)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x1p-20)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x1p-80)": ildouble: 1 ldouble: 1 -Test "y1 (0x1.001000001p+593)": +Test "y1 (0x2.002000002p+592)": ildouble: 1 ldouble: 1 -Test "y1 (0x1.27e204p+99)": +Test "y1 (0x2p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 +Test "y1 (0x2p-4)": double: 1 idouble: 1 -Test "y1 (0x1p-10)": +Test "y1 (0x4p-112)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x4p-12)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 -Test "y1 (0x1p-30)": +Test "y1 (0x4p-32)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x4p-72)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x4p-92)": +ildouble: 1 +ldouble: 1 +Test "y1 (0x8p+0)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 ildouble: 1 ldouble: 1 -Test "y1 (0x1p1023)": +Test "y1 (0x8p+1020)": ildouble: 1 ldouble: 1 -Test "y1 (0x1p16383)": +Test "y1 (0x8p+16380)": ildouble: 2 ldouble: 2 -Test "y1 (1.5)": -float: 1 -ifloat: 1 +Test "y1 (0x9.3f102p+96)": +double: 1 +idouble: 1 ildouble: 1 ldouble: 1 -Test "y1 (10.0)": +Test "y1 (0xap+0)": double: 3 float: 1 idouble: 3 ifloat: 1 -Test "y1 (2.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 +Test "y1 (0xf.ffffffffffff8p+1020)": +ildouble: 1 +ldouble: 1 +Test "y1 (0xf.ffffffffffffbffffffffffffcp+1020)": ildouble: 1 ldouble: 1 -Test "y1 (8.0)": +Test "y1 (0xf.fffffp+124)": +double: 2 +float: 2 +idouble: 2 +ifloat: 2 +ildouble: 2 +ldouble: 2 + +# yn +Test "yn (-10, 0x1p+0)": double: 1 float: 2 idouble: 1 ifloat: 2 ildouble: 1 ldouble: 1 - -# yn -Test "yn (0, 1.0)": +Test "yn (0, 0x1.8p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -Test "yn (0, 1.5)": +Test "yn (0, 0x1p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 -Test "yn (0, 10.0)": +Test "yn (0, 0x8p+0)": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 3 ldouble: 3 -Test "yn (0, 8.0)": -double: 1 +Test "yn (0, 0xap+0)": float: 1 -idouble: 1 ifloat: 1 ildouble: 3 ldouble: 3 -Test "yn (1, 0.125)": -double: 1 -idouble: 1 -Test "yn (1, 0.75)": -ildouble: 1 -ldouble: 1 -Test "yn (1, 1.5)": +Test "yn (1, 0x1.8p+0)": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "yn (1, 10.0)": -double: 3 -float: 1 -idouble: 3 -ifloat: 1 -Test "yn (1, 2.0)": +Test "yn (1, 0x2p+0)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 -Test "yn (1, 8.0)": +ildouble: 2 +ldouble: 2 +Test "yn (1, 0x2p-4)": +double: 1 +idouble: 1 +Test "yn (1, 0x8p+0)": double: 1 float: 2 idouble: 1 ifloat: 2 ildouble: 1 ldouble: 1 -Test "yn (10, 0.125)": -double: 1 -idouble: 1 -ildouble: 2 -ldouble: 2 -Test "yn (10, 0.75)": -double: 1 +Test "yn (1, 0xap+0)": +double: 3 float: 1 -idouble: 1 +idouble: 3 ifloat: 1 -ildouble: 5 -ldouble: 5 -Test "yn (10, 1.0)": +Test "yn (10, 0x1p+0)": double: 1 float: 2 idouble: 1 ifloat: 2 ildouble: 1 ldouble: 1 -Test "yn (10, 10.0)": -double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "yn (10, 2.0)": +Test "yn (10, 0x2p+0)": double: 2 float: 1 idouble: 2 ifloat: 1 ildouble: 2 ldouble: 2 -Test "yn (2, 0x1.ffff62p+99)": +Test "yn (10, 0x2p-4)": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 +Test "yn (10, 0xap+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 3 +ldouble: 3 +Test "yn (10, 0xcp-4)": double: 1 +float: 1 idouble: 1 -Test "yn (2, 0x1p1023)": +ifloat: 1 +ildouble: 4 +ldouble: 4 +Test "yn (2, 0x8p+1020)": ildouble: 1 ldouble: 1 -Test "yn (2, 0x1p127)": +Test "yn (2, 0x8p+124)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "yn (2, 0x1p16383)": +Test "yn (2, 0x8p+16380)": ildouble: 2 ldouble: 2 -Test "yn (3, 0.125)": +Test "yn (2, 0xf.fffb1p+96)": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 +Test "yn (2, 0xf.ffffffffffff8p+1020)": double: 1 idouble: 1 -Test "yn (3, 0.75)": +ildouble: 1 +ldouble: 1 +Test "yn (2, 0xf.fffffp+124)": double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 -Test "yn (3, 10.0)": +Test "yn (3, 0x2p+0)": +double: 1 +idouble: 1 +Test "yn (3, 0x2p-4)": +double: 1 +idouble: 1 +Test "yn (3, 0xap+0)": double: 1 float: 1 idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Test "yn (3, 2.0)": +Test "yn (3, 0xcp-4)": double: 1 idouble: 1 +ildouble: 2 +ldouble: 2 # Maximal error of functions: Function: "acos_downward": -double: 1 float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: "acos_towardzero": -double: 1 float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: "acos_upward": +double: 1 +idouble: 1 + +Function: "acosh": +double: 1 +idouble: 1 +ldouble: 1 + +Function: "asin": ildouble: 1 ldouble: 1 @@ -9429,13 +17882,28 @@ ifloat: 1 ildouble: 1 ldouble: 1 +Function: "asin_tonearest": +ildouble: 1 +ldouble: 1 + Function: "asin_towardzero": double: 1 float: 1 idouble: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: "asin_upward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + +Function: "asinh": +double: 1 float: 1 ifloat: 1 ildouble: 1 @@ -9450,6 +17918,8 @@ ldouble: 1 Function: "atanh": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: Real part of "cacos": double: 1 @@ -9545,7 +18015,9 @@ ldouble: 1 Function: "cbrt": double: 1 +float: 1 idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 @@ -9628,54 +18100,80 @@ ildouble: 2 ldouble: 2 Function: "cos": -double: 2 float: 1 -idouble: 2 ifloat: 1 ildouble: 1 ldouble: 1 Function: "cos_downward": -float: 1 -ifloat: 1 +double: 1 +float: 2 +idouble: 1 +ifloat: 2 ildouble: 2 ldouble: 2 Function: "cos_tonearest": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Function: "cos_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 1 +ldouble: 1 Function: "cos_upward": +double: 1 float: 2 +idouble: 1 ifloat: 2 +ildouble: 2 +ldouble: 2 + +Function: "cosh": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "cosh_downward": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 -ldouble: 1 +ldouble: 2 Function: "cosh_tonearest": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "cosh_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 -ldouble: 1 +ldouble: 2 Function: "cosh_upward": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 ildouble: 1 -ldouble: 1 +ldouble: 3 Function: Real part of "cpow": double: 2 @@ -9735,145 +18233,169 @@ ldouble: 1 Function: Real part of "ctan": double: 1 -float: 1 -idouble: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 - -Function: Imaginary part of "ctan": -double: 1 +float: 1 idouble: 1 -ildouble: 2 -ldouble: 2 +ifloat: 1 +ildouble: 3 +ldouble: 3 -Function: Real part of "ctan_downward": +Function: Imaginary part of "ctan": double: 2 float: 1 idouble: 2 ifloat: 1 +ildouble: 3 +ldouble: 3 + +Function: Real part of "ctan_downward": +double: 6 +float: 5 +idouble: 6 +ifloat: 5 ildouble: 4 ldouble: 4 Function: Imaginary part of "ctan_downward": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 5 ldouble: 5 Function: Real part of "ctan_tonearest": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 3 ldouble: 3 Function: Imaginary part of "ctan_tonearest": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 3 ldouble: 3 Function: Real part of "ctan_towardzero": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 4 +ldouble: 4 Function: Imaginary part of "ctan_towardzero": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 5 ldouble: 5 Function: Real part of "ctan_upward": double: 2 -float: 1 +float: 3 idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 +ifloat: 3 +ildouble: 5 +ldouble: 5 Function: Imaginary part of "ctan_upward": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +double: 2 +float: 3 +idouble: 2 +ifloat: 3 ildouble: 3 ldouble: 3 Function: Real part of "ctanh": -double: 1 +double: 2 float: 1 -idouble: 1 +idouble: 2 ifloat: 1 -ildouble: 2 -ldouble: 2 +ildouble: 3 +ldouble: 3 Function: Imaginary part of "ctanh": -double: 1 +double: 2 float: 2 -idouble: 1 +idouble: 2 ifloat: 2 -ildouble: 2 -ldouble: 2 +ildouble: 3 +ldouble: 3 Function: Real part of "ctanh_downward": +double: 4 float: 1 +idouble: 4 ifloat: 1 ildouble: 5 ldouble: 5 Function: Imaginary part of "ctanh_downward": -double: 2 -float: 1 -idouble: 2 -ifloat: 1 +double: 6 +float: 5 +idouble: 6 +ifloat: 5 ildouble: 4 ldouble: 4 Function: Real part of "ctanh_tonearest": +double: 2 float: 1 +idouble: 2 ifloat: 1 ildouble: 3 ldouble: 3 Function: Imaginary part of "ctanh_tonearest": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 3 ldouble: 3 Function: Real part of "ctanh_towardzero": -float: 1 -ifloat: 1 +double: 2 +float: 2 +idouble: 2 +ifloat: 2 ildouble: 5 ldouble: 5 Function: Imaginary part of "ctanh_towardzero": -float: 1 -ifloat: 1 -ildouble: 1 -ldouble: 1 +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +ildouble: 3 +ldouble: 3 Function: Real part of "ctanh_upward": -double: 1 -float: 2 -idouble: 1 -ifloat: 2 +double: 2 +float: 3 +idouble: 2 +ifloat: 3 ildouble: 3 ldouble: 3 Function: Imaginary part of "ctanh_upward": double: 2 -float: 1 +float: 3 idouble: 2 -ifloat: 1 -ildouble: 2 -ldouble: 2 +ifloat: 3 +ildouble: 5 +ldouble: 5 Function: "erf": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Function: "erfc": double: 1 @@ -9889,29 +18411,75 @@ idouble: 1 ildouble: 1 ldouble: 1 +Function: "exp10_downward": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 + +Function: "exp10_tonearest": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + +Function: "exp10_towardzero": +double: 1 +idouble: 1 +ildouble: 2 +ldouble: 2 + +Function: "exp10_upward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +ildouble: 2 +ldouble: 2 + Function: "exp2": ildouble: 1 ldouble: 1 Function: "exp_downward": +double: 1 +idouble: 1 + +Function: "exp_towardzero": +double: 1 +idouble: 1 + +Function: "exp_upward": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 + +Function: "expm1": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Function: "exp_towardzero": +Function: "expm1_downward": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Function: "exp_upward": +Function: "expm1_tonearest": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 -Function: "expm1": +Function: "expm1_towardzero": double: 1 float: 1 idouble: 1 @@ -9919,17 +18487,27 @@ ifloat: 1 ildouble: 1 ldouble: 1 -Function: "gamma": +Function: "expm1_upward": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 +ifloat: 1 ildouble: 1 ldouble: 1 -Function: "hypot": +Function: "gamma": +double: 1 float: 1 +idouble: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 + +Function: "hypot": +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Function: "j0": double: 2 @@ -9949,17 +18527,23 @@ ldouble: 4 Function: "jn": double: 4 -float: 5 +float: 4 idouble: 4 -ifloat: 5 -ildouble: 8 -ldouble: 8 +ifloat: 4 +ildouble: 7 +ldouble: 7 Function: "lgamma": double: 1 -float: 2 +float: 1 idouble: 1 -ifloat: 2 +ifloat: 1 +ildouble: 1 +ldouble: 1 + +Function: "log": +float: 1 +ifloat: 1 ildouble: 1 ldouble: 1 @@ -9997,6 +18581,12 @@ Function: "pow_downward": float: 1 ifloat: 1 +Function: "pow_tonearest": +float: 1 +ifloat: 1 +ildouble: 1 +ldouble: 1 + Function: "pow_towardzero": float: 1 ifloat: 1 @@ -10007,12 +18597,20 @@ ifloat: 1 ildouble: 1 ldouble: 1 -Function: "sin_downward": +Function: "sin": float: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Function: "sin_downward": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 + Function: "sin_tonearest": float: 1 ifloat: 1 @@ -10020,62 +18618,78 @@ ildouble: 1 ldouble: 1 Function: "sin_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: "sin_upward": +double: 1 float: 2 +idouble: 1 ifloat: 2 -ildouble: 1 -ldouble: 1 +ildouble: 3 +ldouble: 3 Function: "sincos": -double: 1 float: 1 -idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: "sinh_downward": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Function: "sinh_towardzero": -float: 1 -ifloat: 1 -ildouble: 2 -ldouble: 2 +double: 1 +idouble: 1 +ildouble: 1 +ldouble: 1 Function: "sinh_upward": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 ildouble: 1 ldouble: 1 Function: "tan": +ildouble: 1 +ldouble: 1 + +Function: "tan_downward": double: 1 +float: 2 idouble: 1 +ifloat: 2 +ildouble: 1 +ldouble: 1 -Function: "tan_downward": -float: 1 -ifloat: 1 +Function: "tan_tonearest": ildouble: 1 ldouble: 1 Function: "tan_towardzero": +double: 1 float: 1 +idouble: 1 ifloat: 1 ildouble: 1 ldouble: 1 Function: "tan_upward": +double: 1 float: 1 +idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Function: "tanh": ildouble: 1 @@ -10110,7 +18724,7 @@ double: 3 float: 2 idouble: 3 ifloat: 2 -ildouble: 5 -ldouble: 5 +ildouble: 4 +ldouble: 4 # end of automatic generation -- cgit v1.2.3 From 7d69a1b092862372e631478b5e43228f0a78b60b Mon Sep 17 00:00:00 2001 From: Kaz Kojima Date: Mon, 27 Jan 2014 08:50:47 +0900 Subject: Regenerate SH libm-test-ulps with proper compiler options. --- ChangeLog | 4 + sysdeps/sh/libm-test-ulps | 725 +++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 720 insertions(+), 9 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 3e1e93166a..4b54fa64c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-01-26 Kaz Kojima + + * sysdeps/sh/libm-test-ulps: Regenerate. + 2014-01-24 David S. Miller * sysdeps/sparc/fpu/libm-test-ulps: Regenerate. diff --git a/sysdeps/sh/libm-test-ulps b/sysdeps/sh/libm-test-ulps index 0c1a136bc4..8fc221b3fc 100644 --- a/sysdeps/sh/libm-test-ulps +++ b/sysdeps/sh/libm-test-ulps @@ -1,5 +1,10 @@ # Begin of automatic generation +# acos_towardzero +Test "acos_towardzero (-0x8p-4)": +float: 1 +ifloat: 1 + # acosh Test "acosh (0x6.4p+4)": double: 1 @@ -7,6 +12,33 @@ idouble: 1 Test "acosh (0xf.ffffffffffff8p+1020)": double: 1 +# asin_towardzero +Test "asin_towardzero (-0x4p-1024)": +double: 1 +idouble: 1 +Test "asin_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 +Test "asin_towardzero (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "asin_towardzero (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "asin_towardzero (-0x8p-4)": +float: 1 +ifloat: 1 +Test "asin_towardzero (-0x8p-972)": +double: 1 +idouble: 1 +Test "asin_towardzero (0x8p-4)": +float: 1 +ifloat: 1 + # asinh Test "asinh (-0xf.ffffffffffff8p+1020)": double: 1 @@ -3498,6 +3530,126 @@ Test "cos_tonearest (0xc.d4967p-4)": float: 1 ifloat: 1 +# cos_towardzero +Test "cos_towardzero (-0x4p-1024)": +double: 1 +idouble: 1 +Test "cos_towardzero (-0x4p-1076)": +double: 1 +idouble: 1 +Test "cos_towardzero (-0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (-0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (-0x8p-972)": +double: 1 +idouble: 1 +Test "cos_towardzero (-0xf.fffffp+124)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000000cf4a2a2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.0000010b239a9p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.00000162a932bp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000002d452a1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.000002p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.0c152382d7365p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x1p+120)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (0x2.182a4705ae6ccp+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.182a48p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e0c9bab24p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p+48)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p-1024)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p-1076)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x4p-128)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (0x8p+0)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x8p+1020)": +double: 1 +idouble: 1 +Test "cos_towardzero (0x8p-152)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "cos_towardzero (0x8p-972)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966d92d171p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xcp-4)": +double: 1 +idouble: 1 +Test "cos_towardzero (0xf.fffffp+124)": +double: 1 +idouble: 1 + # cosh Test "cosh (-0x1p+0)": float: 1 @@ -3532,6 +3684,38 @@ Test "cosh_tonearest (0x2.c679dp+8)": double: 1 idouble: 1 +# cosh_towardzero +Test "cosh_towardzero (-0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (-0x5.96a7ep+4)": +float: 1 +ifloat: 1 +Test "cosh_towardzero (0x1.6p+4)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x1.7p+4)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x2.c5e3bp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x2.c679d1f73f0fap+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x2.c679dp+8)": +double: 1 +idouble: 1 +Test "cosh_towardzero (0x5.96a7ep+4)": +float: 1 +ifloat: 1 + # cpow Test "Real part of: cpow (0x2p+0 + 0x3p+0 i, 0x4p+0 + +0 i)": double: 1 @@ -3817,6 +4001,92 @@ float: 1 idouble: 1 ifloat: 1 +# ctan_towardzero +Test "Real part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 5 +float: 3 +idouble: 5 +ifloat: 3 +Test "Imaginary part of: ctan_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctan_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb4p+0 + 0x8p-152 i)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + +0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x4p-1076 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb54442d18p+0 + 0x8p-152 i)": +double: 1 +idouble: 1 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + +0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctan_towardzero (0x1.921fb6p+0 + 0x8p-152 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_towardzero (0x1p+0 + 0x2.dp+4 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_towardzero (0x8p+1020 + 0x1p+0 i)": +double: 5 +idouble: 5 +Test "Real part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +Test "Imaginary part of: ctan_towardzero (0x8p+124 + 0x1p+0 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctan_towardzero (0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctan_towardzero (0xcp-4 + 0x1.4p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctan_towardzero (0xf.ffffffffffff8p+1020 + 0x1p+0 i)": +double: 2 +idouble: 2 +Test "Real part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +Test "Imaginary part of: ctan_towardzero (0xf.fffffp+124 + 0x1p+0 i)": +double: 1 +idouble: 1 + # ctanh Test "Imaginary part of: ctanh (+0 + 0x1.921fb4p+0 i)": double: 1 @@ -3999,6 +4269,94 @@ Test "Imaginary part of: ctanh_tonearest (0xcp-4 + 0x1.4p+0 i)": float: 2 ifloat: 2 +# ctanh_towardzero +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_towardzero (+0 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Real part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 2 +idouble: 2 +Test "Imaginary part of: ctanh_towardzero (-0x2p+0 - 0x3p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctanh_towardzero (-0xc.35p+12 + 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctanh_towardzero (-0xc.35p+12 - 0xc.35p+12 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+1020 i)": +double: 5 +idouble: 5 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +double: 2 +float: 1 +idouble: 2 +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0x8p+124 i)": +double: 4 +float: 3 +idouble: 4 +ifloat: 3 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.ffffffffffff8p+1020 i)": +double: 2 +idouble: 2 +Test "Real part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x1p+0 + 0xf.fffffp+124 i)": +double: 4 +float: 2 +idouble: 4 +ifloat: 2 +Test "Imaginary part of: ctanh_towardzero (0x2.dp+4 + 0x1p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Real part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb4p+0 i)": +double: 1 +idouble: 1 +Test "Imaginary part of: ctanh_towardzero (0x4p-1076 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": +double: 1 +float: 3 +idouble: 1 +ifloat: 3 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb4p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb54442d18p+0 i)": +double: 1 +idouble: 1 +Test "Real part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (0x8p-152 + 0x1.921fb6p+0 i)": +float: 1 +ifloat: 1 +Test "Imaginary part of: ctanh_towardzero (0xcp-4 + 0x1.4p+0 i)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + # erf Test "erf (0x1.4p+0)": double: 1 @@ -4058,6 +4416,25 @@ Test "exp10_tonearest (0x3p+0)": double: 1 idouble: 1 +# exp10_towardzero +Test "exp10_towardzero (0x2.4p+4)": +double: 1 +idouble: 1 + +# exp_towardzero +Test "exp_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "exp_towardzero (0x3p+0)": +double: 1 +idouble: 1 +Test "exp_towardzero (0x5.8b9028p+4)": +double: 1 +idouble: 1 +Test "exp_towardzero (0xcp-4)": +double: 1 +idouble: 1 + # expm1 Test "expm1 (0x1.f4p+8)": double: 1 @@ -4084,23 +4461,73 @@ Test "expm1_tonearest (0xcp-4)": double: 1 idouble: 1 -# fma -Test "fma (-0x1.fffffffffffffp-711, 0x1.fffffffffffffp-275, 0x1.fffffe00007ffp-983)": +# expm1_towardzero +Test "expm1_towardzero (-0x1p-100)": double: 1 +float: 1 idouble: 1 -Test "fma (0x1.0000002p+0, 0x1.ffffffcp-1, -0x1p-300)": +ifloat: 1 +Test "expm1_towardzero (-0x1p-32)": +float: 1 +ifloat: 1 +Test "expm1_towardzero (-0x1p-64)": double: 1 +float: 1 idouble: 1 -Test "fma (0x1.153d650bb9f06p-907, 0x1.2d01230d48407p-125, -0x0.b278d5acfc3cp-1022)": +ifloat: 1 +Test "expm1_towardzero (-0x4p-52)": +float: 1 +ifloat: 1 +Test "expm1_towardzero (-0x8p-32)": +float: 1 +ifloat: 1 +Test "expm1_towardzero (0x1.f4p+8)": double: 1 idouble: 1 -Test "fma (0x1.4000004p-967, 0x1p-106, 0x0.000001p-1022)": +Test "expm1_towardzero (0x3.2p+4)": double: 1 -idouble: 1 -Test "fma (0x1.7ff8p+13, 0x1.000002p+0, 0x1.ffffp-24)": float: 1 +idouble: 1 ifloat: 1 -Test "fma (0x1.7fffff8p-968, 0x1p-106, 0x0.000001p-1022)": +Test "expm1_towardzero (0x7.fp+4)": +double: 1 +idouble: 1 + +# fma_towardzero +Test "fma_towardzero (-0x1.ffffffffffffcp-1022, 0x1.0000000000001p-1, -0x1p-1074)": +double: 1 +idouble: 1 +Test "fma_towardzero (-0x1p-1074, 0x1.1p-1, -0x0.fffffffffffffp-1022)": +double: 1 +idouble: 1 +Test "fma_towardzero (0x1.ffffffffffffcp-1022, 0x1.0000000000001p-1, 0x1p-1074)": +double: 1 +idouble: 1 +Test "fma_towardzero (0x1p-1074, -0x1p-1074, 0x0.fffffffffffffp-1022)": +double: 1 +idouble: 1 +Test "fma_towardzero (0x1p-1074, -0x1p-1074, 0x1p-1022)": +double: 1 +idouble: 1 +Test "fma_towardzero (0x1p-1074, -0x1p-1074, 0x1p-1074)": +double: 1 +idouble: 1 +Test "fma_towardzero (0x1p-1074, -0x1p-1074, 0x1p1023)": +double: 1 +idouble: 1 +Test "fma_towardzero (0x1p-1074, 0x1.1p-1, 0x0.fffffffffffffp-1022)": +double: 1 +idouble: 1 +Test "fma_towardzero (0x1p-1074, 0x1p-1074, -0x0.fffffffffffffp-1022)": +double: 1 +idouble: 1 +Test "fma_towardzero (0x1p-1074, 0x1p-1074, -0x1p-1022)": +double: 1 +idouble: 1 +Test "fma_towardzero (0x1p-1074, 0x1p-1074, -0x1p-1074)": +double: 1 +idouble: 1 +Test "fma_towardzero (0x1p-1074, 0x1p-1074, -0x1p1023)": double: 1 idouble: 1 @@ -4513,6 +4940,11 @@ Test "pow_tonearest (0xf.fffffp-4, 0x1p+24)": float: 1 ifloat: 1 +# pow_towardzero +Test "pow_towardzero (1.5, 1.03125)": +float: 1 +ifloat: 1 + # sin Test "sin (0x1p+0)": float: 1 @@ -4523,6 +4955,110 @@ Test "sin_tonearest (0x1p+0)": float: 1 ifloat: 1 +# sin_towardzero +Test "sin_towardzero (-0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (-0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (-0x2p+64)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x1.921fb54442d18p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x1.921fb54442d19p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x1p+0)": +float: 1 +ifloat: 1 +Test "sin_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x2.1e19ep+72)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "sin_towardzero (0x2.553534p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x2.5535376715bap+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x2p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x2p+64)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x3.be735c19beap+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x3.be735cp+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "sin_towardzero (0x3.ec2a04p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "sin_towardzero (0x4.093388p-4)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x4.1237e8p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x4.1237ep+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x4.c92d0ffa4bf04p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x4.c92d0ffa4bfp+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x4p+48)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x5.fbec7p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x8p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x8p+1020)": +double: 1 +idouble: 1 +Test "sin_towardzero (0x9p+0)": +double: 1 +idouble: 1 +Test "sin_towardzero (0xb.fa09ap+100)": +double: 1 +idouble: 1 +Test "sin_towardzero (0xc.d4966d92d1708p-4)": +double: 1 +idouble: 1 +Test "sin_towardzero (0xc.d4966p-4)": +double: 1 +idouble: 1 +Test "sin_towardzero (0xc.d4967p-4)": +float: 1 +ifloat: 1 +Test "sin_towardzero (0xe.ef3afp-4)": +float: 1 +ifloat: 1 +Test "sin_towardzero (0xf.ffffcp+124)": +double: 1 +idouble: 1 +Test "sin_towardzero (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 + # sincos Test "sincos (0x1.0c1522p+0) extra output 1": float: 1 @@ -4540,6 +5076,99 @@ Test "sincos (0xc.d4967p-4) extra output 2": float: 1 ifloat: 1 +# sinh_towardzero +Test "sinh_towardzero (0x1.6p+4)": +double: 1 +idouble: 1 +Test "sinh_towardzero (0x1.7p+4)": +double: 1 +idouble: 1 + +# tan_towardzero +Test "tan_towardzero (-0x2p+64)": +double: 1 +idouble: 1 +Test "tan_towardzero (-0xc.908p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tan_towardzero (-0xc.90cp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (-0xc.90fcp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (-0xc.90fdp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (-0xc.94p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (-0xc.98p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x1p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tan_towardzero (0x2.1e19e4p+72)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x2.1e19ep+72)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x2p+64)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x5p+0)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x7p+0)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x8p+0)": +double: 1 +idouble: 1 +Test "tan_towardzero (0x9p+0)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tan_towardzero (0xc.908p-4)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "tan_towardzero (0xc.90cp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90fcp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90fdaa22168c8p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.90fdp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.94p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xc.98p-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xcp-4)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xf.ffffffffffff8p+1020)": +double: 1 +idouble: 1 +Test "tan_towardzero (0xf.fffffp+124)": +double: 1 +idouble: 1 + # tgamma Test "tgamma (-0x1.000002p+0)": double: 2 @@ -5096,10 +5725,20 @@ double: 1 idouble: 1 # Maximal error of functions: +Function: "acos_towardzero": +float: 1 +ifloat: 1 + Function: "acosh": double: 1 idouble: 1 +Function: "asin_towardzero": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + Function: "asinh": double: 1 float: 1 @@ -5253,6 +5892,12 @@ Function: "cos_tonearest": float: 1 ifloat: 1 +Function: "cos_towardzero": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + Function: "cosh": double: 1 float: 1 @@ -5265,6 +5910,12 @@ float: 1 idouble: 1 ifloat: 1 +Function: "cosh_towardzero": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + Function: Real part of "cpow": double: 2 float: 4 @@ -5327,6 +5978,18 @@ float: 1 idouble: 2 ifloat: 1 +Function: Real part of "ctan_towardzero": +double: 5 +float: 3 +idouble: 5 +ifloat: 3 + +Function: Imaginary part of "ctan_towardzero": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 + Function: Real part of "ctanh": double: 2 float: 1 @@ -5351,6 +6014,18 @@ float: 2 idouble: 2 ifloat: 2 +Function: Real part of "ctanh_towardzero": +double: 2 +float: 3 +idouble: 2 +ifloat: 3 + +Function: Imaginary part of "ctanh_towardzero": +double: 5 +float: 3 +idouble: 5 +ifloat: 3 + Function: "erf": double: 1 idouble: 1 @@ -5369,6 +6044,14 @@ Function: "exp10_tonearest": double: 1 idouble: 1 +Function: "exp10_towardzero": +double: 1 +idouble: 1 + +Function: "exp_towardzero": +double: 1 +idouble: 1 + Function: "expm1": double: 1 float: 1 @@ -5381,12 +6064,16 @@ float: 1 idouble: 1 ifloat: 1 -Function: "fma": +Function: "expm1_towardzero": double: 1 float: 1 idouble: 1 ifloat: 1 +Function: "fma_towardzero": +double: 1 +idouble: 1 + Function: "gamma": double: 1 float: 1 @@ -5447,6 +6134,10 @@ Function: "pow_tonearest": float: 1 ifloat: 1 +Function: "pow_towardzero": +float: 1 +ifloat: 1 + Function: "sin": float: 1 ifloat: 1 @@ -5455,10 +6146,26 @@ Function: "sin_tonearest": float: 1 ifloat: 1 +Function: "sin_towardzero": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + Function: "sincos": float: 1 ifloat: 1 +Function: "sinh_towardzero": +double: 1 +idouble: 1 + +Function: "tan_towardzero": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 + Function: "tgamma": double: 4 float: 3 -- cgit v1.2.3 From feab23972794e4d43da27e9c2c9521511d60d818 Mon Sep 17 00:00:00 2001 From: Kaz Kojima Date: Tue, 28 Jan 2014 09:03:14 +0900 Subject: Add -mieee to SH sysdep-CFLAGS for older SH compilers. --- ChangeLog | 4 ++++ sysdeps/sh/sh4/Makefile | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 sysdeps/sh/sh4/Makefile (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index a55f1fbf1d..d98157b41a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-01-27 Kaz Kojima + + * sysdeps/sh/sh4/Makefile: New file. + 2014-01-27 Andreas Schwab * math/gen-libm-test.pl ($srcdir): New variable. diff --git a/sysdeps/sh/sh4/Makefile b/sysdeps/sh/sh4/Makefile new file mode 100644 index 0000000000..ccac91432a --- /dev/null +++ b/sysdeps/sh/sh4/Makefile @@ -0,0 +1,3 @@ +# Build everything with full IEEE math support. -mieee isn't +# default for the older SH compilers. +sysdep-CFLAGS += -mieee -- cgit v1.2.3 From 409e00bd69b8d8dd74d7327085351d26769ea6fc Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Wed, 29 Jan 2014 07:51:41 -0800 Subject: Disable x87 inline functions for SSE2 math When i386 and x86-64 mathinline.h was merged into a single mathinline.h, "gcc -m32" enables x87 inline functions on x86-64 even when -mfpmath=sse and SSE2 is enabled. It is a regression on x86-64. We should check __SSE2_MATH__ instead of __x86_64__ when disabling x87 inline functions. --- ChangeLog | 6 ++++++ NEWS | 3 ++- sysdeps/x86/fpu/bits/mathinline.h | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 038359f301..b54386f39e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2014-01-29 H.J. Lu + + [BZ #16510] + * sysdeps/x86/fpu/bits/mathinline.h: Check __SSE2_MATH__ instead + of __x86_64__ when disabling x87 inline functions. + 2014-01-29 Alexandre Oliva * manual/charset.texi: Document MTASC-safety properties. diff --git a/NEWS b/NEWS index d47151603a..2827f200ba 100644 --- a/NEWS +++ b/NEWS @@ -25,7 +25,8 @@ Version 2.19 16151, 16153, 16167, 16169, 16172, 16195, 16214, 16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337, 16338, 16356, 16365, 16366, 16369, 16372, 16375, 16379, 16384, 16385, 16386, 16387, 16390, - 16394, 16400, 16407, 16408, 16414, 16430, 16431, 16453, 16474, 16506. + 16394, 16400, 16407, 16408, 16414, 16430, 16431, 16453, 16474, 16506, + 16510 * Slovenian translations for glibc messages have been contributed by the Translation Project's Slovenian team of translators. diff --git a/sysdeps/x86/fpu/bits/mathinline.h b/sysdeps/x86/fpu/bits/mathinline.h index acc82ca275..b4b28f30f1 100644 --- a/sysdeps/x86/fpu/bits/mathinline.h +++ b/sysdeps/x86/fpu/bits/mathinline.h @@ -384,7 +384,7 @@ __END_NAMESPACE_C99 # endif #endif -#ifndef __x86_64__ +#ifndef __SSE2_MATH__ # if ((!defined __NO_MATH_INLINES || defined __LIBC_INTERNAL_MATH_INLINES) \ && defined __OPTIMIZE__) @@ -970,4 +970,4 @@ __inline_mathcode2 (__ieee754_atan2, __y, __x, return __value;) # endif -#endif /* !__x86_64__ */ +#endif /* !__SSE2_MATH__ */ -- cgit v1.2.3 From 6c0ce4b45d451656dea5edeb99bc9fbb849293ff Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 4 Feb 2014 09:41:18 +1000 Subject: Update x86_64 ULPs (AMD Family 10h) --- ChangeLog | 4 + sysdeps/x86_64/fpu/libm-test-ulps | 613 +++++++++++++++++++++++++++++++++++++- 2 files changed, 615 insertions(+), 2 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index e58f4c5859..24671f78d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-02-04 Eric Wong + + * sysdeps/x86_64/fpu/libm-test-ulps: Update. + 2014-02-03 Carlos O'Donell * manual/startup.texi: Add next, previous, and top entries for diff --git a/sysdeps/x86_64/fpu/libm-test-ulps b/sysdeps/x86_64/fpu/libm-test-ulps index 91e24173ce..df2ad48176 100644 --- a/sysdeps/x86_64/fpu/libm-test-ulps +++ b/sysdeps/x86_64/fpu/libm-test-ulps @@ -367,6 +367,9 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Test "atanh (0x4p-12)": +ildouble: 1 +ldouble: 1 Test "atanh (0x4p-4)": ildouble: 1 ldouble: 1 @@ -524,9 +527,13 @@ ldouble: 1 Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacos (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacos (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -783,6 +790,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Imaginary part of: cacos (-0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: cacos (-0x1p-23 + 0x1.fp-129 i)": float: 1 ifloat: 1 @@ -803,6 +813,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Imaginary part of: cacos (-0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: cacos (-0x1p-23 - 0x1.fp-129 i)": float: 1 ifloat: 1 @@ -879,6 +892,8 @@ ldouble: 1 Test "Imaginary part of: cacos (-1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacos (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -893,6 +908,8 @@ ldouble: 1 Test "Imaginary part of: cacos (-1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacos (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -1067,12 +1084,16 @@ ldouble: 1 Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": ildouble: 1 ldouble: 1 Test "Imaginary part of: cacos (0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacos (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -1265,6 +1286,9 @@ idouble: 1 Test "Imaginary part of: cacos (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 +Test "Imaginary part of: cacos (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacos (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 @@ -1285,6 +1309,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Imaginary part of: cacos (0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacos (0x1p-23 - 0.5 i)": float: 1 ifloat: 1 @@ -1293,6 +1320,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Imaginary part of: cacos (0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacos (0x1p-52 + 0.5 i)": float: 1 ifloat: 1 @@ -1338,6 +1368,8 @@ ldouble: 1 Test "Imaginary part of: cacos (1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacos (1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -1360,6 +1392,8 @@ ldouble: 1 Test "Imaginary part of: cacos (1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacos (1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -1536,9 +1570,13 @@ ifloat: 1 Test "Real part of: cacosh (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: cacosh (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: cacosh (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -1795,6 +1833,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Real part of: cacosh (-0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacosh (-0x1p-23 + 0x1.fp-129 i)": float: 1 ifloat: 1 @@ -1815,6 +1856,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Real part of: cacosh (-0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacosh (-0x1p-23 - 0x1.fp-129 i)": float: 1 ifloat: 1 @@ -1891,6 +1935,8 @@ ldouble: 1 Test "Real part of: cacosh (-1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: cacosh (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -1905,6 +1951,8 @@ ldouble: 1 Test "Real part of: cacosh (-1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: cacosh (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -2076,12 +2124,16 @@ ldouble: 1 Test "Real part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 + 0x1p-52 i)": ildouble: 1 ldouble: 1 Test "Real part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacosh (0x0.fffffffffffff8p0 - 0x1p-52 i)": ildouble: 1 ldouble: 1 @@ -2277,6 +2329,9 @@ idouble: 1 Test "Real part of: cacosh (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 +Test "Real part of: cacosh (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: cacosh (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 @@ -2297,6 +2352,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Real part of: cacosh (0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: cacosh (0x1p-23 - 0.5 i)": float: 1 ifloat: 1 @@ -2305,6 +2363,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Real part of: cacosh (0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: cacosh (0x1p-52 + 0.5 i)": float: 1 ifloat: 1 @@ -2345,6 +2406,8 @@ ifloat: 1 Test "Real part of: cacosh (1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacosh (1.0 + 0x1.fp-10 i)": float: 2 ifloat: 2 @@ -2367,6 +2430,8 @@ ifloat: 1 Test "Real part of: cacosh (1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: cacosh (1.0 - 0x1.fp-10 i)": float: 2 ifloat: 2 @@ -2544,9 +2609,13 @@ ldouble: 1 Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -2611,28 +2680,52 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Real part of: casin (-0x1.fp-100 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Real part of: casin (-0x1.fp-100 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Real part of: casin (-0x1.fp-1000 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 +Test "Real part of: casin (-0x1.fp-1000 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 +Test "Real part of: casin (-0x1.fp-10000 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x1.fp-10000 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (-0x1.fp-1025 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 Test "Imaginary part of: casin (-0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 +Test "Real part of: casin (-0x1.fp-1025 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 @@ -2651,6 +2744,9 @@ ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 + 0x1p-23 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casin (-0x1.fp-129 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 + 1.0 i)": double: 1 float: 1 @@ -2671,6 +2767,9 @@ ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 - 0x1p-23 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casin (-0x1.fp-129 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-0x1.fp-129 - 1.0 i)": double: 1 float: 1 @@ -2735,6 +2834,9 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casin (-0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casin (-0x1p-23 - 0.5 i)": double: 1 float: 1 @@ -2753,6 +2855,9 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casin (-0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-0x1p-52 + 0.5 i)": float: 1 ifloat: 1 @@ -2807,6 +2912,8 @@ ldouble: 1 Test "Imaginary part of: casin (-1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -2826,6 +2933,8 @@ ldouble: 1 Test "Imaginary part of: casin (-1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (-1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -2960,9 +3069,13 @@ ldouble: 1 Test "Imaginary part of: casin (0x0.fffffffffffff8p0 + 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x0.fffffffffffff8p0 - 0x1p-52 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x0.ffffffffffffffffp0 + 0x1.fp-16385 i)": ildouble: 1 ldouble: 1 @@ -3027,28 +3140,52 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Real part of: casin (0x1.fp-100 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x1.fp-100 + 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Real part of: casin (0x1.fp-100 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x1.fp-100 - 1.0 i)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Real part of: casin (0x1.fp-1000 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1000 + 1.0 i)": double: 1 idouble: 1 +Test "Real part of: casin (0x1.fp-1000 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1000 - 1.0 i)": double: 1 idouble: 1 +Test "Real part of: casin (0x1.fp-10000 + 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1.fp-10000 - 1.0 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: casin (0x1.fp-1025 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1025 + 1.0 i)": double: 1 idouble: 1 Test "Imaginary part of: casin (0x1.fp-1025 + 1.5 i)": double: 1 idouble: 1 +Test "Real part of: casin (0x1.fp-1025 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x1.fp-1025 - 1.0 i)": double: 1 idouble: 1 @@ -3067,6 +3204,9 @@ ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 + 0x1p-23 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casin (0x1.fp-129 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 + 1.0 i)": double: 1 float: 1 @@ -3087,6 +3227,9 @@ ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 - 0x1p-23 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casin (0x1.fp-129 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x1.fp-129 - 1.0 i)": double: 1 float: 1 @@ -3127,6 +3270,9 @@ idouble: 1 Test "Imaginary part of: casin (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 +Test "Imaginary part of: casin (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x1p-105 + 0.5 i)": float: 1 ifloat: 1 @@ -3157,6 +3303,9 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casin (0x1p-23 + 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casin (0x1p-23 - 0.5 i)": double: 1 float: 1 @@ -3175,6 +3324,9 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casin (0x1p-23 - 0x1.000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (0x1p-52 + 0.5 i)": float: 1 ifloat: 1 @@ -3229,6 +3381,8 @@ ldouble: 1 Test "Imaginary part of: casin (1.0 + 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (1.0 + 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -3248,6 +3402,8 @@ ldouble: 1 Test "Imaginary part of: casin (1.0 - 0x1.fp-10 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casin (1.0 - 0x1.fp-30 i)": ildouble: 1 ldouble: 1 @@ -3430,6 +3586,9 @@ ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casinh (-0x1.000002p0 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 + 0x1p-23 i)": double: 1 float: 1 @@ -3444,6 +3603,9 @@ ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casinh (-0x1.000002p0 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casinh (-0x1.000002p0 - 0x1p-23 i)": double: 1 float: 1 @@ -3452,9 +3614,13 @@ ifloat: 1 Test "Real part of: casinh (-0x1.fp-10 + 1.0 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-0x1.fp-10 - 1.0 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 @@ -3567,6 +3733,8 @@ ldouble: 1 Test "Real part of: casinh (-0x1p-52 + 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-0x1p-52 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -3576,6 +3744,8 @@ ldouble: 1 Test "Real part of: casinh (-0x1p-52 - 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-0x1p-52 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -3622,17 +3792,32 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casinh (-1.0 + 0x1.fp-100 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-1000 i)": double: 1 idouble: 1 +Test "Imaginary part of: casinh (-1.0 + 0x1.fp-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-1.0 + 0x1.fp-10000 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-1025 i)": double: 1 idouble: 1 +Test "Imaginary part of: casinh (-1.0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casinh (-1.0 + 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-1.0 + 0x1.fp-30 i)": double: 1 float: 1 @@ -3674,17 +3859,32 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casinh (-1.0 - 0x1.fp-100 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-1000 i)": double: 1 idouble: 1 +Test "Imaginary part of: casinh (-1.0 - 0x1.fp-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (-1.0 - 0x1.fp-10000 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-1025 i)": double: 1 idouble: 1 +Test "Imaginary part of: casinh (-1.0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casinh (-1.0 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (-1.0 - 0x1.fp-30 i)": double: 1 float: 1 @@ -3867,6 +4067,9 @@ ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 + 0x1.fp-129 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casinh (0x1.000002p0 + 0x1p-23 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 + 0x1p-23 i)": double: 1 float: 1 @@ -3881,6 +4084,9 @@ ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 - 0x1.fp-129 i)": ildouble: 1 ldouble: 1 +Test "Real part of: casinh (0x1.000002p0 - 0x1p-23 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: casinh (0x1.000002p0 - 0x1p-23 i)": double: 1 float: 1 @@ -3889,9 +4095,13 @@ ifloat: 1 Test "Real part of: casinh (0x1.fp-10 + 1.0 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (0x1.fp-10 - 1.0 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (0x1.fp-1025 + 0.5 i)": ildouble: 1 ldouble: 1 @@ -3956,6 +4166,9 @@ idouble: 1 Test "Real part of: casinh (0x1.fp127 + 0x1.fp127 i)": double: 1 idouble: 1 +Test "Real part of: casinh (0x1.fp16383 + 0x1.fp16383 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (0x1p-105 + 0.5 i)": double: 1 idouble: 1 @@ -4010,6 +4223,8 @@ ldouble: 1 Test "Real part of: casinh (0x1p-52 + 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (0x1p-52 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -4019,6 +4234,8 @@ ldouble: 1 Test "Real part of: casinh (0x1p-52 - 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (0x1p-52 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 @@ -4065,17 +4282,32 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casinh (1.0 + 0x1.fp-100 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-1000 i)": double: 1 idouble: 1 +Test "Imaginary part of: casinh (1.0 + 0x1.fp-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (1.0 + 0x1.fp-10000 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-1025 i)": double: 1 idouble: 1 +Test "Imaginary part of: casinh (1.0 + 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casinh (1.0 + 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (1.0 + 0x1.fp-30 i)": double: 1 float: 1 @@ -4117,17 +4349,32 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casinh (1.0 - 0x1.fp-100 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-1000 i)": double: 1 idouble: 1 +Test "Imaginary part of: casinh (1.0 - 0x1.fp-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: casinh (1.0 - 0x1.fp-10000 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-1025 i)": double: 1 idouble: 1 +Test "Imaginary part of: casinh (1.0 - 0x1.fp-1025 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-129 i)": double: 1 float: 1 idouble: 1 ifloat: 1 +Test "Imaginary part of: casinh (1.0 - 0x1.fp-129 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: casinh (1.0 - 0x1.fp-30 i)": double: 1 float: 1 @@ -4175,6 +4422,8 @@ ldouble: 1 Test "Imaginary part of: catan (-0x1.0000000000001p0 - 0x1p-27 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: catan (-0x1.000002p0 + 0x1p-126 i)": float: 1 ifloat: 1 @@ -4232,12 +4481,18 @@ ldouble: 1 Test "Imaginary part of: catan (-0x1p-1022 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: catan (-0x1p-13 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catan (-0x1p-13 + 0x1.000002p0 i)": float: 1 ifloat: 1 Test "Real part of: catan (-0x1p-13 + 1.0 i)": float: 1 ifloat: 1 +Test "Imaginary part of: catan (-0x1p-13 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catan (-0x1p-13 - 0x1.000002p0 i)": float: 1 ifloat: 1 @@ -4280,6 +4535,9 @@ ldouble: 1 Test "Real part of: catan (-1.0 + 0x1p-13 i)": float: 1 ifloat: 1 +Test "Imaginary part of: catan (-1.0 + 0x1p-27 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (-1.0 + 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4289,6 +4547,9 @@ ifloat: 1 Test "Imaginary part of: catan (-1.0 - 0x1p-13 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: catan (-1.0 - 0x1p-27 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (-1.0 - 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4314,6 +4575,8 @@ ldouble: 1 Test "Imaginary part of: catan (0x1.0000000000001p0 - 0x1p-27 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: catan (0x1.000002p0 + 0x1p-126 i)": float: 1 ifloat: 1 @@ -4371,12 +4634,18 @@ ldouble: 1 Test "Imaginary part of: catan (0x1p-1022 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: catan (0x1p-13 + 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catan (0x1p-13 + 0x1.000002p0 i)": float: 1 ifloat: 1 Test "Real part of: catan (0x1p-13 + 1.0 i)": float: 1 ifloat: 1 +Test "Imaginary part of: catan (0x1p-13 - 0x0.ffffffp0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catan (0x1p-13 - 0x1.000002p0 i)": float: 1 ifloat: 1 @@ -4419,6 +4688,9 @@ ldouble: 1 Test "Real part of: catan (1.0 + 0x1p-13 i)": float: 1 ifloat: 1 +Test "Imaginary part of: catan (1.0 + 0x1p-27 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (1.0 + 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4428,6 +4700,9 @@ ifloat: 1 Test "Imaginary part of: catan (1.0 - 0x1p-13 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: catan (1.0 - 0x1p-27 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (1.0 - 0x1p-64 i)": ildouble: 1 ldouble: 1 @@ -4451,6 +4726,12 @@ ldouble: 1 Test "Real part of: catanh (-0x0.ffffffffffffffffp0 - 0x1p-33 i)": ildouble: 1 ldouble: 1 +Test "Real part of: catanh (-0x0.ffffffp0 + 0x1p-13 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x0.ffffffp0 - 0x1p-13 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catanh (-0x1.000002p0 + 0x1p-13 i)": float: 1 ifloat: 1 @@ -4516,9 +4797,19 @@ ifloat: 1 Test "Real part of: catanh (-0x1p-27 + 0x1.0000000000001p0 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-27 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catanh (-0x1p-27 - 0x1.0000000000001p0 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1p-27 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catanh (-0x1p-64 + 1.0 i)": ildouble: 1 ldouble: 1 @@ -4589,6 +4880,12 @@ ldouble: 1 Test "Real part of: catanh (0x0.ffffffffffffffffp0 - 0x1p-33 i)": ildouble: 1 ldouble: 1 +Test "Real part of: catanh (0x0.ffffffp0 + 0x1p-13 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x0.ffffffp0 - 0x1p-13 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catanh (0x1.000002p0 + 0x1p-13 i)": float: 1 ifloat: 1 @@ -4649,12 +4946,18 @@ idouble: 1 Test "Real part of: catanh (0x1p-27 + 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 +Test "Real part of: catanh (0x1p-27 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catanh (0x1p-27 - 0x0.fffffffffffff8p0 i)": double: 1 idouble: 1 Test "Real part of: catanh (0x1p-27 - 0x1.0000000000001p0 i)": ildouble: 1 ldouble: 1 +Test "Real part of: catanh (0x1p-27 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catanh (0x1p-33 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 @@ -4920,6 +5223,11 @@ idouble: 1 Test "Real part of: clog (-0x1.000002p+0 + +0 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1.000002p+0 + 0x1.2345678p-1000 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (-0x1.000002p+0 + 0x4.8d1598p-32 i)": double: 1 float: 1 @@ -4938,9 +5246,17 @@ ldouble: 1 Test "Real part of: clog (-0x1.000002p+0 + 0x8p-152 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (-0x1.234566p-40 - 0x1p+0 i)": float: 1 ifloat: 1 +Test "Real part of: clog (-0x1p+0 + 0x4.8d1598p-32 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (-0x1p+0 + 0x4.8d159ep-32 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (-0x1p+0 + 0x4.8d15ap-32 i)": ildouble: 1 ldouble: 1 @@ -5069,15 +5385,29 @@ idouble: 1 Test "Real part of: clog (0x1.000002p+0 + +0 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x1.000002p+0 + 0x1.234566p-60 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.23456789p-1000 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.000002p+0 + 0x1.23456789p-60 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x1.000002p+0 + 0x1.234568p-60 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x1.000002p+0 + 0x8p-152 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x1.000566p+0 + 0x4.8dp-12 i)": float: 1 ifloat: 1 @@ -5101,6 +5431,12 @@ ldouble: 1 Test "Real part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed1990460bep-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4e7cp-4 + 0xf.ed19ap-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bdfbf6p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x1.8907bc3694fd4e7ep-4 + 0xf.ed1990460bdfbf7p-4 i)": ildouble: 1 ldouble: 1 @@ -5122,6 +5458,9 @@ idouble: 1 Test "Real part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed1990460bdfbf6p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x1.8907bc3694fd5p-4 + 0xf.ed199p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdf8p-4 i)": ildouble: 1 ldouble: 1 @@ -5131,9 +5470,15 @@ ldouble: 1 Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bdfbf7p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x1.8907bcp-4 + 0xf.ed1990460bep-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x1.8907bep-4 + 0xf.ed1990460bdfbf6p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x1.8907bep-4 + 0xf.ed1990460bdfbf7p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e08p-4 i)": double: 1 idouble: 1 @@ -5143,6 +5488,8 @@ ldouble: 1 Test "Real part of: clog (0x1.c67eccp-4 + 0xf.e6b4d1d7a6e1p-4 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (0x1.c67eccp-4 + 0xf.e6b4dp-4 i)": ildouble: 1 ldouble: 1 @@ -5183,18 +5530,27 @@ ldouble: 1 Test "Real part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4d1d7a6e1p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4dp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x1.c67ecd92a8595p-4 + 0xf.e6b4ep-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4d1d7a6e1p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x1.c67ecep-4 + 0xf.e6b4ep-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x1p+0 + 0x4.8d1598p-12 i)": float: 1 ifloat: 1 Test "Real part of: clog (0x1p-16440 + +0 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a2p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x2.0ce7ba1e4902p-4 + 0xf.de3a3p-4 i)": double: 1 idouble: 1 @@ -5224,12 +5580,18 @@ ldouble: 1 Test "Real part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42bp-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a3612p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42a15bf9a38p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b281acp-4 + 0xf.cd42ap-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42a15bf9a3612p-4 i)": ildouble: 1 ldouble: 1 @@ -5239,24 +5601,51 @@ idouble: 1 Test "Imaginary part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42ap-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x2.82b795e420b28p-4 + 0xf.cd42bp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x2.82b795e420b2ap-4 + 0xf.cd42ap-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x2.82b798p-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: clog (0x2.82b798p-4 + 0xf.cd42bp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x2p-148 + 0x2p-148 i)": float: 1 ifloat: 1 Test "Real part of: clog (0x3.2cdb84p-4 + 0xf.ae888f0455f6p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x3.2cdb855bcb8d8p-4 + 0xf.ae888p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.2cdb855bcb8d8p-4 + 0xf.ae889p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.2cdb88p-4 + 0xf.ae888p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab873d09e61e8p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873d09e61e797p-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x3.3b8f9163276aap-4 + 0xf.ab873p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.3b8f9163276acp-4 + 0xf.ab874p-4 i)": ildouble: 1 ldouble: 1 @@ -5277,6 +5666,9 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x3.3b8f9p-4 + 0xf.ab873p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.6e17119fb8aaap-4 + 0xf.a0c58a83e57c772p-4 i)": ildouble: 1 ldouble: 1 @@ -5303,12 +5695,17 @@ ldouble: 1 Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57c772p-4 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57c773p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57c8p-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58a83e57cp-4 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c58p-4 i)": float: 1 ifloat: 1 @@ -5318,12 +5715,17 @@ ifloat: 1 Test "Real part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (0x3.6e1714p-4 + 0xf.a0c59p-4 i)": float: 1 ifloat: 1 Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57c773p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58a83e57cp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.6e171p-4 + 0xf.a0c58p-4 i)": ildouble: 1 ldouble: 1 @@ -5345,9 +5747,21 @@ ldouble: 1 Test "Real part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d7p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d619a8d11bfdp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.bea2bd62e350117p-4 + 0xf.8e3d7p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d619a8d11bfep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x3.bea2bd62e3502p-4 + 0xf.8e3d6p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.bea2bd62e35p-4 + 0xf.8e3d6p-4 i)": double: 1 idouble: 1 @@ -5363,6 +5777,9 @@ ifloat: 1 Test "Real part of: clog (0x3.bea2cp-4 + 0xf.8e3d7p-4 i)": float: 1 ifloat: 1 +Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d005dp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.e1d0a105ac4eap-4 + 0xf.859b3d1b06d08p-4 i)": double: 1 idouble: 1 @@ -5381,6 +5798,9 @@ ldouble: 1 Test "Imaginary part of: clog (0x3.e1d0a105ac4ecp-4 + 0xf.859b3d1b06d005ep-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06d005ep-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.e1d0a4p-4 + 0xf.859b3d1b06d08p-4 i)": ildouble: 1 ldouble: 1 @@ -5408,6 +5828,9 @@ ldouble: 1 Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1af8e3cfp-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x4.0dbf78p-4 + 0xf.7a5c1p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x4.0dbf7d40fe1acp-4 + 0xf.7a5c1af8e3ce8p-4 i)": double: 1 idouble: 1 @@ -5425,6 +5848,9 @@ ldouble: 1 Test "Real part of: clog (0x4.0dbf7d40fe1bp-4 + 0xf.7a5c2p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x4.0dbf8p-4 + 0xf.7a5c1af8e3ce8p-4 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (0x4.0dbf8p-4 + 0xf.7a5c1af8e3cfp-4 i)": ildouble: 1 ldouble: 1 @@ -5434,18 +5860,27 @@ ldouble: 1 Test "Imaginary part of: clog (0x4.7017a2e368078p-4 + 0xf.5f4a550c9d75e3bp-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x4.7017a2e368078p-4 + 0xf.5f4a6p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a550c9d758p-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a550c9d75e3bp-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a5p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x4.7017a2e36807acb8p-4 + 0xf.5f4a6p-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d75e3bp-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a550c9d76p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x4.7017a2e36807acbp-4 + 0xf.5f4a5p-4 i)": ildouble: 1 ldouble: 1 @@ -5470,6 +5905,15 @@ idouble: 1 Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a6p-4 i)": float: 1 ifloat: 1 +Test "Real part of: clog (0x4.7017ap-4 + 0xf.5f4a5p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x4.8d1598p-32 + 0x1p+0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x4.d9e8c415d5644p-4 + 0xf.3f30281507d8p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x4.d9e8c415d5644p-4 + 0xf.3f302p-4 i)": ildouble: 1 ldouble: 1 @@ -5514,6 +5958,9 @@ ldouble: 1 Test "Real part of: clog (0x5.318c596a8cb1p-4 + 0xf.22364p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x5.b06b680ea2ccp-4 + 0xe.f452bp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x5.b06b68p-4 + 0xe.f452b965da9fp-4 i)": double: 1 idouble: 1 @@ -5543,9 +5990,15 @@ ldouble: 1 Test "Real part of: clog (0x6.02fd5037c4794p-4 + 0xe.d3e21p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x6.02fd5037c4794p-4 + 0xe.d3e2p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e2086dcca80b8p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e2086dcca8p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x6.02fd5037c479p-4 + 0xe.d3e21p-4 i)": double: 1 idouble: 1 @@ -5563,6 +6016,11 @@ idouble: 1 Test "Real part of: clog (0x6.02fd58p-4 + 0xe.d3e21p-4 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x6.02fd58p-4 + 0xe.d3e21p-4 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (0x6.02fd5p-4 + 0xe.d3e2086dcca80b8p-4 i)": ildouble: 1 ldouble: 1 @@ -5575,18 +6033,30 @@ ldouble: 1 Test "Real part of: clog (0x6.1c643068cd124p-4 + 0xe.c97c2018b4288p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c2018b428258p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c2018b4288p-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x6.1c643068cd125ef8p-4 + 0xe.c97c3p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125efp-4 + 0xe.c97c2018b428257p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.1c643068cd125efp-4 + 0xe.c97c2p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x6.1c643068cd125efp-4 + 0xe.c97c3p-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x6.1c643068cd128p-4 + 0xe.c97c2p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b428257p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x6.1c6438p-4 + 0xe.c97c2018b4288p-4 i)": double: 1 idouble: 1 @@ -5642,6 +6112,12 @@ idouble: 1 Test "Real part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86ba8p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x6.2aff88p-4 + 0xe.c36a599a86baf8fp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x6.2aff88p-4 + 0xe.c36a6p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x6.2aff8p-4 + 0xe.c36a599a86baf8fp-4 i)": ildouble: 1 ldouble: 1 @@ -5666,6 +6142,9 @@ ldouble: 1 Test "Real part of: clog (0x6.b10b4f3520217b6p-4 + 0xe.8893cp-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cbb449258p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x6.b10b4f3520218p-4 + 0xe.8893cbb44925p-4 i)": ildouble: 1 ldouble: 1 @@ -5696,18 +6175,32 @@ ldouble: 1 Test "Real part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655fp-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655e694e511p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655ep-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x7.eca921b40e02cp-4 + 0xd.e655e694e510a94p-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e5108p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e510a95p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655e694e511p-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x7.eca928p-4 + 0xd.e655fp-4 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x7.eca92p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x7.eca92p-4 + 0xd.e655e694e510a95p-4 i)": ildouble: 1 ldouble: 1 @@ -5773,12 +6266,21 @@ ldouble: 1 Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bf04f3688p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bf1p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x7.f4b088p-4 + 0xd.e1bfp-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0x7.f4b08p-4 + 0xd.e1bf04f3688p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x8.88fae2eap-4 + 0xd.888bcp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x8.88faep-4 + 0xd.888bcp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x8.88faep-4 + 0xd.888bdp-4 i)": float: 1 ifloat: 1 @@ -5798,12 +6300,21 @@ ldouble: 1 Test "Real part of: clog (0x8.ecbf8p-4 + 0xd.479468b09a37p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x8.ecbf8p-4 + 0xd.47946p-4 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (0x8.ecbf8p-4 + 0xd.47946p-4 i)": float: 1 ifloat: 1 +Test "Real part of: clog (0x8.ecbf8p-4 + 0xd.47947p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x8.ecbf9p-4 + 0xd.479468b09a37p-4 i)": double: 1 idouble: 1 +Test "Real part of: clog (0x8.ecbf9p-4 + 0xd.47946p-4 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (0x8.ecbf9p-4 + 0xd.47947p-4 i)": ildouble: 1 ldouble: 1 @@ -5856,6 +6367,8 @@ ldouble: 1 Test "Real part of: clog (0x9.b386fp-4 + 0xc.b9317p-4 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x9.b387p-4 + 0xc.b9317c470b4085cp-4 i)": ildouble: 1 ldouble: 1 @@ -5877,6 +6390,12 @@ ldouble: 1 Test "Real part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53de1d5a7c8p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a246bbp-4 + 0xc.ae53ep-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x9.c1b6ac509a248p-4 + 0xc.ae53de1d5a7dp-4 i)": double: 1 idouble: 1 @@ -5894,6 +6413,15 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8bp-4 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7c8p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x9.c1b6ap-4 + 0xc.ae53de1d5a7dp-4 i)": double: 1 idouble: 1 @@ -5915,6 +6443,9 @@ ldouble: 1 Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c19ap-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51p-4 i)": double: 1 idouble: 1 @@ -5933,6 +6464,9 @@ ldouble: 1 Test "Real part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c19ap-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xa.47c0c65bd492c7fp-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (0xa.47c0c65bd493p-4 + 0xc.42a51a3c05c18p-4 i)": ildouble: 1 ldouble: 1 @@ -5942,9 +6476,14 @@ ldouble: 1 Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c19ap-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": float: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (0xa.47c0cp-4 + 0xc.42a51p-4 i)": float: 1 ifloat: 1 @@ -5957,9 +6496,15 @@ ldouble: 1 Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e867932966df8p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342dfp-4 + 0xb.e8679p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df58ap-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867932966df8p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.afc57e2624342ep-4 + 0xb.e867ap-4 i)": ildouble: 1 ldouble: 1 @@ -5975,6 +6520,9 @@ ldouble: 1 Test "Imaginary part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xa.afc57e262434p-4 + 0xb.e867932966dfp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.afc57p-4 + 0xb.e867932966df589p-4 i)": ildouble: 1 ldouble: 1 @@ -5996,6 +6544,9 @@ ldouble: 1 Test "Real part of: clog (0xa.afc58p-4 + 0xb.e8679p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xa.afc58p-4 + 0xb.e867ap-4 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (0xa.afc58p-4 + 0xb.e867ap-4 i)": float: 1 ifloat: 1 @@ -6015,14 +6566,23 @@ float: 1 ifloat: 1 ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xa.b96dbp-8 + 0xf.fc678p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51cbp-4 i)": double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Imaginary part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51ccp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.e7de8p-4 + 0xb.b51cbp-4 i)": float: 1 ifloat: 1 +Test "Real part of: clog (0xa.e7de8p-4 + 0xb.b51ccp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.e7de9p-4 + 0xb.b51cb9f04d4dp-4 i)": double: 1 idouble: 1 @@ -6035,12 +6595,18 @@ ldouble: 1 Test "Real part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f2405504a68p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f24p-4 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (0xa.ec55b7682e528a1p-4 + 0xb.b0f25p-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f2405504a68p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a6p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f24p-4 i)": double: 1 idouble: 1 @@ -6065,6 +6631,12 @@ ldouble: 1 Test "Real part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a6p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xa.ec55bp-4 + 0xb.b0f24p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6058p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a68p-4 i)": double: 1 idouble: 1 @@ -6079,6 +6651,8 @@ ifloat: 1 Test "Real part of: clog (0xb.263a77543bp-4 + 0xb.79c9ap-4 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": float: 1 ifloat: 1 @@ -6107,6 +6681,9 @@ ldouble: 1 Test "Real part of: clog (0xf.8p+16380 + 0x8p-16448 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0xf.8p+16380 + 0xf.8p+16380 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xf.8p+16380 + 0xf.ffffffffffff8p+1020 i)": ildouble: 1 ldouble: 1 @@ -6128,6 +6705,9 @@ ldouble: 1 Test "Real part of: clog (0xf.ffffffffffff8p+1020 + 0xf.8p+16380 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: clog (0xf.ffffffffffff8p-4 + 0xf.fffffffffffffffp-15004 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xf.fffffffffffffffp-4 + +0 i)": ildouble: 1 ldouble: 1 @@ -6163,6 +6743,9 @@ ifloat: 1 Test "Real part of: clog (0xf.fffffp-4 + 0x8p-152 i)": float: 1 ifloat: 1 +Test "Imaginary part of: clog (0xf.fffffp-4 + 0xf.fffffffffffffffp-15004 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xf.fffffp-4 + 0xf.fffffp-104 i)": float: 1 ifloat: 1 @@ -6358,6 +6941,9 @@ ldouble: 1 Test "Real part of: clog10 (0x1.fp+16383 + 0x1.fp+16383 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog10 (0x1.fp+16383 + 0x1p+16383 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog10 (0x1.fp+16383 + 0x1p-16445 i)": ildouble: 1 ldouble: 1 @@ -6376,6 +6962,8 @@ idouble: 1 Test "Imaginary part of: clog10 (0x1367a310575591p-54 + 0x3cfcc0a0541f60p-54 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog10 (0x164c74eea876p-45 + 0x16f393482f77p-45 i)": double: 1 idouble: 1 @@ -9756,6 +10344,9 @@ double: 1 idouble: 1 # expm1 +Test "expm1 (-0x1p-32)": +ildouble: 1 +ldouble: 1 Test "expm1 (-0x1p-64)": ildouble: 1 ldouble: 1 @@ -9839,6 +10430,9 @@ ildouble: 1 ldouble: 1 # expm1_tonearest +Test "expm1_tonearest (-0x1p-32)": +ildouble: 1 +ldouble: 1 Test "expm1_tonearest (-0x1p-64)": ildouble: 1 ldouble: 1 @@ -10644,9 +11238,15 @@ double: 1 idouble: 1 # log +Test "log (0x2.b7e154p+0)": +ildouble: 1 +ldouble: 1 Test "log (0x2.b7e15p+0)": float: 1 ifloat: 1 +Test "log (0x5.e2d58d8b3bcdf1bp-4)": +ildouble: 1 +ldouble: 1 Test "log (0x5.e2d59p-4)": ildouble: 1 ldouble: 1 @@ -10673,6 +11273,9 @@ ifloat: 1 Test "log10 (0x4p-128)": ildouble: 1 ldouble: 1 +Test "log10 (0x8p-972)": +ildouble: 1 +ldouble: 1 Test "log10 (0xcp-4)": double: 1 float: 2 @@ -10696,6 +11299,9 @@ ldouble: 1 Test "pow (0x1.000002p+0, 0x1p+24)": float: 1 ifloat: 1 +Test "pow (0x5.822b137da851af4p+16368, 0xcp-4)": +ildouble: 1 +ldouble: 1 Test "pow (0xf.ffffffffffff8p-4, 0x4.8d15ap+60)": ildouble: 1 ldouble: 1 @@ -10740,6 +11346,9 @@ ldouble: 1 Test "pow_tonearest (0x1.000002p+0, 0x1p+24)": float: 1 ifloat: 1 +Test "pow_tonearest (0x5.822b137da851af4p+16368, 0xcp-4)": +ildouble: 1 +ldouble: 1 Test "pow_tonearest (0xf.ffffffffffff8p-4, 0x4.8d15ap+60)": ildouble: 1 ldouble: 1 @@ -11993,8 +12602,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Test "tgamma (-0x1.f3fffep+8)": ildouble: 1 ldouble: 1 -- cgit v1.2.3 From dc98b8f5a9e876cbe9a778903c22bb196c43bb3c Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 4 Feb 2014 10:33:57 +1000 Subject: Update x86_64 ULPs (AMD family 21, model 2) Tested on an AMD FX-8320 CPU --- ChangeLog | 4 + sysdeps/x86_64/fpu/libm-test-ulps | 164 +++++++++++++++++++++++++++++++++++++- 2 files changed, 165 insertions(+), 3 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 24671f78d3..f9f89fcc12 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,10 @@ * sysdeps/x86_64/fpu/libm-test-ulps: Update. +2014-02-04 Eric Wong + + * sysdeps/x86_64/fpu/libm-test-ulps: Update. + 2014-02-03 Carlos O'Donell * manual/startup.texi: Add next, previous, and top entries for diff --git a/sysdeps/x86_64/fpu/libm-test-ulps b/sysdeps/x86_64/fpu/libm-test-ulps index df2ad48176..207b6c063b 100644 --- a/sysdeps/x86_64/fpu/libm-test-ulps +++ b/sysdeps/x86_64/fpu/libm-test-ulps @@ -108,6 +108,9 @@ ldouble: 1 Test "acos_upward (0xf.fffffffffffffffp-4)": ildouble: 1 ldouble: 1 +Test "acos_upward (0xf.fffffp-4)": +ildouble: 1 +ldouble: 1 # acosh Test "acosh (0x6.4p+4)": @@ -4490,6 +4493,9 @@ ifloat: 1 Test "Real part of: catan (-0x1p-13 + 1.0 i)": float: 1 ifloat: 1 +Test "Imaginary part of: catan (-0x1p-13 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (-0x1p-13 - 0x0.ffffffp0 i)": ildouble: 1 ldouble: 1 @@ -4508,12 +4514,27 @@ ldouble: 1 Test "Imaginary part of: catan (-0x1p-16382 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: catan (-0x1p-27 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1p-27 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (-0x1p-27 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (-0x1p-33 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: catan (-0x1p-33 + 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (-0x1p-33 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: catan (-0x1p-33 - 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (-0x1p-54 + 1.0 i)": float: 1 ifloat: 1 @@ -4643,6 +4664,9 @@ ifloat: 1 Test "Real part of: catan (0x1p-13 + 1.0 i)": float: 1 ifloat: 1 +Test "Imaginary part of: catan (0x1p-13 + 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (0x1p-13 - 0x0.ffffffp0 i)": ildouble: 1 ldouble: 1 @@ -4661,12 +4685,27 @@ ldouble: 1 Test "Imaginary part of: catan (0x1p-16382 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: catan (0x1p-27 - 0x0.fffffffffffff8p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1p-27 - 0x1.0000000000001p0 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: catan (0x1p-27 - 1.0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (0x1p-33 + 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: catan (0x1p-33 + 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (0x1p-33 - 0x0.ffffffffffffffffp0 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: catan (0x1p-33 - 0x1.0000000000000002p0 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catan (0x1p-54 + 1.0 i)": float: 1 ifloat: 1 @@ -4708,6 +4747,12 @@ ildouble: 1 ldouble: 1 # catanh +Test "Real part of: catanh (-0x0.fffffffffffff8p0 + 0x1p-27 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x0.fffffffffffff8p0 - 0x1p-27 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catanh (-0x0.ffffffffffffffffp0 + 0x1p-1022 i)": ildouble: 1 ldouble: 1 @@ -4732,6 +4777,18 @@ ldouble: 1 Test "Real part of: catanh (-0x0.ffffffp0 - 0x1p-13 i)": ildouble: 1 ldouble: 1 +Test "Real part of: catanh (-0x1.0000000000000002p0 + 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1.0000000000000002p0 - 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1.0000000000001p0 + 0x1p-27 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (-0x1.0000000000001p0 - 0x1p-27 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catanh (-0x1.000002p0 + 0x1p-13 i)": float: 1 ifloat: 1 @@ -4827,6 +4884,9 @@ ldouble: 1 Test "Imaginary part of: catanh (-1.0 + 0x1p-13 i)": float: 1 ifloat: 1 +Test "Real part of: catanh (-1.0 + 0x1p-27 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catanh (-1.0 + 0x1p-54 i)": float: 1 ifloat: 1 @@ -4847,6 +4907,9 @@ ldouble: 1 Test "Imaginary part of: catanh (-1.0 - 0x1p-13 i)": float: 1 ifloat: 1 +Test "Real part of: catanh (-1.0 - 0x1p-27 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: catanh (-1.0 - 0x1p-54 i)": float: 1 ifloat: 1 @@ -4886,6 +4949,12 @@ ldouble: 1 Test "Real part of: catanh (0x0.ffffffp0 - 0x1p-13 i)": ildouble: 1 ldouble: 1 +Test "Real part of: catanh (0x1.0000000000000002p0 + 0x1p-33 i)": +ildouble: 1 +ldouble: 1 +Test "Real part of: catanh (0x1.0000000000000002p0 - 0x1p-33 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catanh (0x1.000002p0 + 0x1p-13 i)": float: 1 ifloat: 1 @@ -4978,6 +5047,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Real part of: catanh (1.0 + 0x1p-13 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catanh (1.0 + 0x1p-13 i)": float: 1 ifloat: 1 @@ -4998,6 +5070,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Real part of: catanh (1.0 - 0x1p-13 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: catanh (1.0 - 0x1p-13 i)": float: 1 ifloat: 1 @@ -5046,6 +5121,9 @@ idouble: 1 Test "Imaginary part of: ccos (-0xcp-4 - 0x5.98p+4 i)": float: 1 ifloat: 1 +Test "Imaginary part of: ccos (0x1p-120 + 0x8p-32 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: ccos (0x4p-1076 + 0x5.ap+8 i)": double: 1 idouble: 1 @@ -5113,6 +5191,9 @@ ifloat: 1 Test "Imaginary part of: ccosh (0x5.ap+8 + 0x4p-1076 i)": double: 1 idouble: 1 +Test "Imaginary part of: ccosh (0x8p-32 + 0x1p-120 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: ccosh (0xcp-4 + 0x1.4p+0 i)": double: 1 float: 1 @@ -5416,6 +5497,8 @@ ldouble: 1 Test "Real part of: clog (0x1.48e45e3268d8p-4 + 0xf.f2c64p-4 i)": double: 1 idouble: 1 +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x1.48e45ep-4 + 0xf.f2c63p-4 i)": float: 1 ifloat: 1 @@ -5571,6 +5654,9 @@ ldouble: 1 Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42ap-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x2.82b794p-4 + 0xf.cd42bp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x2.82b795e420b281a8p-4 + 0xf.cd42a15bf9a3613p-4 i)": ildouble: 1 ldouble: 1 @@ -5634,6 +5720,9 @@ ldouble: 1 Test "Real part of: clog (0x3.3b8f9163276aa8dcp-4 + 0xf.ab873d09e61ep-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab873d09e61e797p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.3b8f9163276aa8ep-4 + 0xf.ab873d09e61e8p-4 i)": ildouble: 1 ldouble: 1 @@ -5741,6 +5830,12 @@ idouble: 1 Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d619a8d11bfdp-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x3.bea2bcp-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 +Test "Imaginary part of: clog (0x3.bea2bcp-4 + 0xf.8e3d7p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x3.bea2bd62e3501174p-4 + 0xf.8e3d619a8d11bfep-4 i)": ildouble: 1 ldouble: 1 @@ -5905,6 +6000,9 @@ idouble: 1 Test "Real part of: clog (0x4.7017a8p-4 + 0xf.5f4a6p-4 i)": float: 1 ifloat: 1 +Test "Real part of: clog (0x4.7017ap-4 + 0xf.5f4a550c9d75e3cp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x4.7017ap-4 + 0xf.5f4a5p-4 i)": ildouble: 1 ldouble: 1 @@ -5952,6 +6050,9 @@ ldouble: 1 Test "Real part of: clog (0x5.318c596a8cb114ep-4 + 0xf.22364p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x5.318c596a8cb14p-4 + 0xf.22363bf989d98p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x5.318c596a8cb1p-4 + 0xf.22363bf989dap-4 i)": ildouble: 1 ldouble: 1 @@ -5981,6 +6082,9 @@ ldouble: 1 Test "Real part of: clog (0x5.ba8ce4b6p-4 + 0xe.f0742508p-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x5.ba8ce8p-4 + 0xe.f0743p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x5.ba8cep-4 + 0xe.f0742p-4 i)": ildouble: 1 ldouble: 1 @@ -6172,9 +6276,15 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655e694e510a95p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x7.eca921b40e02ae18p-4 + 0xd.e655fp-4 i)": ildouble: 1 ldouble: 1 +Test "Real part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655e694e5108p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0x7.eca921b40e02ae1p-4 + 0xd.e655e694e511p-4 i)": ildouble: 1 ldouble: 1 @@ -6440,12 +6550,18 @@ ldouble: 1 Test "Imaginary part of: clog (0x9.c1b6bp-4 + 0xc.ae53de1d5a7c8p-4 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c199fp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c19ap-4 i)": ildouble: 1 ldouble: 1 Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c2p-4 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51a3c05c2p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.47c0c65bd4928p-4 + 0xc.42a51p-4 i)": double: 1 idouble: 1 @@ -6577,6 +6693,9 @@ ldouble: 1 Test "Imaginary part of: clog (0xa.e7de8cc868ff8p-4 + 0xb.b51ccp-4 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: clog (0xa.e7de8p-4 + 0xb.b51cb9f04d4dp-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.e7de8p-4 + 0xb.b51cbp-4 i)": float: 1 ifloat: 1 @@ -6604,6 +6723,9 @@ ldouble: 1 Test "Real part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f2405504a68p-4 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e528ap-4 + 0xb.b0f24p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.ec55b7682e528p-4 + 0xb.b0f2405504a6p-4 i)": ildouble: 1 ldouble: 1 @@ -6625,6 +6747,9 @@ ldouble: 1 Test "Real part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f25p-4 i)": ildouble: 1 ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55b7682e53p-4 + 0xb.b0f25p-4 i)": +ildouble: 1 +ldouble: 1 Test "Imaginary part of: clog (0xa.ec55bp-4 + 0xb.b0f2405504a68p-4 i)": ildouble: 1 ldouble: 1 @@ -6642,6 +6767,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Imaginary part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a68p-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xa.ec55cp-4 + 0xb.b0f2405504a6p-4 i)": ildouble: 1 ldouble: 1 @@ -6653,6 +6781,9 @@ double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Test "Imaginary part of: clog (0xb.263a8p-4 + 0xb.79c9ap-4 i)": +ildouble: 1 +ldouble: 1 Test "Real part of: clog (0xb.263a8p-4 + 0xb.79c9bp-4 i)": float: 1 ifloat: 1 @@ -7883,8 +8014,8 @@ float: 2 idouble: 1 ifloat: 2 Test "cosh_upward (0x1.6p+4)": -ildouble: 1 -ldouble: 1 +ildouble: 2 +ldouble: 2 Test "cosh_upward (0x1.8p+4)": double: 1 idouble: 1 @@ -10369,6 +10500,9 @@ ldouble: 1 Test "expm1 (0x2.c5c4p+12)": ildouble: 1 ldouble: 1 +Test "expm1 (0x8p-32)": +ildouble: 1 +ldouble: 1 Test "expm1 (0xcp-4)": double: 1 idouble: 1 @@ -10395,6 +10529,9 @@ ldouble: 1 Test "expm1_downward (-0x6.4p+4)": ildouble: 1 ldouble: 1 +Test "expm1_downward (-0x8p-32)": +ildouble: 1 +ldouble: 1 Test "expm1_downward (0x1.f4p+8)": double: 1 idouble: 1 @@ -10455,6 +10592,9 @@ ldouble: 1 Test "expm1_tonearest (0x2.c5c4p+12)": ildouble: 1 ldouble: 1 +Test "expm1_tonearest (0x8p-32)": +ildouble: 1 +ldouble: 1 Test "expm1_tonearest (0xcp-4)": double: 1 idouble: 1 @@ -12011,6 +12151,11 @@ Test "sincos (0xf.ffffffffffff8p+1020) extra output 1": ildouble: 1 ldouble: 1 +# sinh +Test "sinh (0x8p-32)": +ildouble: 1 +ldouble: 1 + # sinh_downward Test "sinh_downward (0x1.6p+4)": double: 1 @@ -12029,6 +12174,11 @@ Test "sinh_downward (0x8p-32)": ildouble: 1 ldouble: 1 +# sinh_tonearest +Test "sinh_tonearest (0x8p-32)": +ildouble: 1 +ldouble: 1 + # sinh_towardzero Test "sinh_towardzero (0x1.6p+4)": double: 1 @@ -13908,7 +14058,7 @@ double: 1 float: 2 idouble: 1 ifloat: 2 -ildouble: 1 +ildouble: 2 ldouble: 3 Function: Real part of "cpow": @@ -14349,12 +14499,20 @@ Function: "sincos": ildouble: 1 ldouble: 1 +Function: "sinh": +ildouble: 1 +ldouble: 1 + Function: "sinh_downward": double: 1 idouble: 1 ildouble: 1 ldouble: 1 +Function: "sinh_tonearest": +ildouble: 1 +ldouble: 1 + Function: "sinh_towardzero": double: 1 idouble: 1 -- cgit v1.2.3 From 1695c7737655241e1773bdddc93e82c22d8d1584 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Tue, 4 Feb 2014 09:48:47 -0200 Subject: abilist-pattern configurability This patch creates implicit rules to match the abifiles if abilist-pattern is defined in the architecture Makefile. This allows machine specific Makefiles to define different abifiles names (for instance *-le.abilist for powerpc64le). --- ChangeLog | 11 +++++++++++ Makerules | 32 ++++++++++++++++++++++++++++++++ sysdeps/powerpc/Makefile | 4 ++++ 3 files changed, 47 insertions(+) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index f9f89fcc12..d9fa673bc0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2014-02-04 Roland McGrath + Adhemerval Zanella + + * sysdeps/powerpc/Makefile [$(config-machine) ends with 'le'] + (abilist-pattern): New variable, set to %-le.abilist. + + * Makerules (abilist-pattern): New variable. + (vpath): Use $(abilist-pattern) in place of %.abilist. + (check-abi-% pattern rule): Likewise. + (check-abi, update-abi): Likewise. + 2014-02-04 Eric Wong * sysdeps/x86_64/fpu/libm-test-ulps: Update. diff --git a/Makerules b/Makerules index b7e556ff5f..b46b09b369 100644 --- a/Makerules +++ b/Makerules @@ -1175,6 +1175,14 @@ ifeq ($(build-shared),yes) LC_ALL=C $(OBJDUMP) --dynamic-syms $< > $@T mv -f $@T $@ +# A sysdeps/.../Makefile can set abilist-pattern to something like +# %-foo.abilist to look for libc-foo.abilist instead of libc.abilist. +# This makes sense if multiple ABIs can be most cleanly supported by a +# configuration without using separate sysdeps directories for each. +ifdef abilist-pattern +vpath $(abilist-pattern) $(+sysdep_dirs) +endif + vpath %.abilist $(+sysdep_dirs) # The .PRECIOUS rule prevents the files built by an implicit rule whose @@ -1184,18 +1192,42 @@ vpath %.abilist $(+sysdep_dirs) .PRECIOUS: %.symlist generated += $(extra-libs:=.symlist) +ifdef abilist-pattern +check-abi-%: $(common-objpfx)config.make $(abilist-pattern) $(objpfx)%.symlist + $(check-abi-pattern) +check-abi-%: $(common-objpfx)config.make $(abilist-pattern) \ + $(common-objpfx)%.symlist + $(check-abi-pattern) +endif check-abi-%: $(common-objpfx)config.make %.abilist $(objpfx)%.symlist $(check-abi) check-abi-%: $(common-objpfx)config.make %.abilist $(common-objpfx)%.symlist $(check-abi) +define check-abi-pattern + diff -p -U 0 $(filter $(abilist-pattern),$^) $(filter %.symlist,$^) +endef define check-abi diff -p -U 0 $(filter %.abilist,$^) $(filter %.symlist,$^) endef +ifdef abilist-pattern +update-abi-%: $(objpfx)%.symlist $(abilist-pattern) + $(update-abi-pattern) +update-abi-%: $(common-objpfx)%.symlist $(abilist-pattern) + $(update-abi-pattern) +endif update-abi-%: $(objpfx)%.symlist %.abilist $(update-abi) update-abi-%: $(common-objpfx)%.symlist %.abilist $(update-abi) +define update-abi-pattern +@if cmp -s $^ 2> /dev/null; \ + then \ + echo '+++ $(filter $(abilist-pattern),$^) is unchanged'; \ + else cp -f $^; \ + echo '*** Now check $(filter $(abilist-pattern),$^) changes for correctness ***'; \ + fi +endef define update-abi @if cmp -s $^ 2> /dev/null; \ then \ diff --git a/sysdeps/powerpc/Makefile b/sysdeps/powerpc/Makefile index f75e62523c..b11edd77bd 100644 --- a/sysdeps/powerpc/Makefile +++ b/sysdeps/powerpc/Makefile @@ -27,3 +27,7 @@ ifeq ($(subdir),misc) sysdep_headers += sys/platform/ppc.h tests += test-gettimebase endif + +ifneq (,$(filter %le,$(config-machine))) +abilist-pattern = %-le.abilist +endif -- cgit v1.2.3 From c01603f763003cec55234ac757c7a934652caa55 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Tue, 4 Feb 2014 09:49:34 -0200 Subject: PowerPC: powerpc64le abilist for 2.17 This patch is the abifiles for powerpc64le based on GLIBC 2.17. --- ChangeLog | 29 + .../linux/powerpc/powerpc64/nptl/ld-le.abilist | 11 + .../powerpc64/nptl/libBrokenLocale-le.abilist | 3 + .../linux/powerpc/powerpc64/nptl/libanl-le.abilist | 6 + .../linux/powerpc/powerpc64/nptl/libc-le.abilist | 2171 ++++++++++++++++++++ .../powerpc/powerpc64/nptl/libcrypt-le.abilist | 9 + .../linux/powerpc/powerpc64/nptl/libdl-le.abilist | 11 + .../linux/powerpc/powerpc64/nptl/libm-le.abilist | 407 ++++ .../linux/powerpc/powerpc64/nptl/libnsl-le.abilist | 123 ++ .../powerpc/powerpc64/nptl/libpthread-le.abilist | 228 ++ .../powerpc/powerpc64/nptl/libresolv-le.abilist | 93 + .../linux/powerpc/powerpc64/nptl/librt-le.abilist | 37 + .../powerpc/powerpc64/nptl/libthread_db-le.abilist | 42 + .../powerpc/powerpc64/nptl/libutil-le.abilist | 8 + 14 files changed, 3178 insertions(+) create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 627c7ab354..66e4049939 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,34 @@ 2014-02-04 Adhemerval Zanella + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist: New + file + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist: + New file + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist: New + file. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist: New + file. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist: + New file. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist: New + file. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist: New + file. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist: + New file. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist: + New file. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist: + New file. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist: + New file. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist: + New file. + * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist: + New file. + +2014-02-01 Adhemerval Zanella + * nptl/shlib-versions: Change powerpc*le start to 2.17. * shlib-versions: Likewise. diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist new file mode 100644 index 0000000000..3530fb4878 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist @@ -0,0 +1,11 @@ +GLIBC_2.17 + GLIBC_2.17 A + __libc_memalign F + __libc_stack_end D 0x8 + __tls_get_addr F + _dl_mcount F + _r_debug D 0x28 + calloc F + free F + malloc F + realloc F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist new file mode 100644 index 0000000000..92c43d9b79 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist @@ -0,0 +1,3 @@ +GLIBC_2.17 + GLIBC_2.17 A + __ctype_get_mb_cur_max F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist new file mode 100644 index 0000000000..0d32f2ed47 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist @@ -0,0 +1,6 @@ +GLIBC_2.17 + GLIBC_2.17 A + gai_cancel F + gai_error F + gai_suspend F + getaddrinfo_a F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist new file mode 100644 index 0000000000..20eac4e850 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist @@ -0,0 +1,2171 @@ +GLIBC_2.17 + GLIBC_2.17 A + _Exit F + _IO_2_1_stderr_ D 0xe0 + _IO_2_1_stdin_ D 0xe0 + _IO_2_1_stdout_ D 0xe0 + _IO_adjust_column F + _IO_adjust_wcolumn F + _IO_default_doallocate F + _IO_default_finish F + _IO_default_pbackfail F + _IO_default_uflow F + _IO_default_xsgetn F + _IO_default_xsputn F + _IO_do_write F + _IO_doallocbuf F + _IO_fclose F + _IO_fdopen F + _IO_feof F + _IO_ferror F + _IO_fflush F + _IO_fgetpos F + _IO_fgetpos64 F + _IO_fgets F + _IO_file_attach F + _IO_file_close F + _IO_file_close_it F + _IO_file_doallocate F + _IO_file_finish F + _IO_file_fopen F + _IO_file_init F + _IO_file_jumps D 0xa8 + _IO_file_open F + _IO_file_overflow F + _IO_file_read F + _IO_file_seek F + _IO_file_seekoff F + _IO_file_setbuf F + _IO_file_stat F + _IO_file_sync F + _IO_file_underflow F + _IO_file_write F + _IO_file_xsputn F + _IO_flockfile F + _IO_flush_all F + _IO_flush_all_linebuffered F + _IO_fopen F + _IO_fprintf F + _IO_fputs F + _IO_fread F + _IO_free_backup_area F + _IO_free_wbackup_area F + _IO_fsetpos F + _IO_fsetpos64 F + _IO_ftell F + _IO_ftrylockfile F + _IO_funlockfile F + _IO_fwrite F + _IO_getc F + _IO_getline F + _IO_getline_info F + _IO_gets F + _IO_init F + _IO_init_marker F + _IO_init_wmarker F + _IO_iter_begin F + _IO_iter_end F + _IO_iter_file F + _IO_iter_next F + _IO_least_wmarker F + _IO_link_in F + _IO_list_all D 0x8 + _IO_list_lock F + _IO_list_resetlock F + _IO_list_unlock F + _IO_marker_delta F + _IO_marker_difference F + _IO_padn F + _IO_peekc_locked F + _IO_popen F + _IO_printf F + _IO_proc_close F + _IO_proc_open F + _IO_putc F + _IO_puts F + _IO_remove_marker F + _IO_seekmark F + _IO_seekoff F + _IO_seekpos F + _IO_seekwmark F + _IO_setb F + _IO_setbuffer F + _IO_setvbuf F + _IO_sgetn F + _IO_sprintf F + _IO_sputbackc F + _IO_sputbackwc F + _IO_sscanf F + _IO_str_init_readonly F + _IO_str_init_static F + _IO_str_overflow F + _IO_str_pbackfail F + _IO_str_seekoff F + _IO_str_underflow F + _IO_sungetc F + _IO_sungetwc F + _IO_switch_to_get_mode F + _IO_switch_to_main_wget_area F + _IO_switch_to_wbackup_area F + _IO_switch_to_wget_mode F + _IO_un_link F + _IO_ungetc F + _IO_unsave_markers F + _IO_unsave_wmarkers F + _IO_vfprintf F + _IO_vfscanf F + _IO_vsprintf F + _IO_wdefault_doallocate F + _IO_wdefault_finish F + _IO_wdefault_pbackfail F + _IO_wdefault_uflow F + _IO_wdefault_xsgetn F + _IO_wdefault_xsputn F + _IO_wdo_write F + _IO_wdoallocbuf F + _IO_wfile_jumps D 0xa8 + _IO_wfile_overflow F + _IO_wfile_seekoff F + _IO_wfile_sync F + _IO_wfile_underflow F + _IO_wfile_xsputn F + _IO_wmarker_delta F + _IO_wsetb F + __adjtimex F + __after_morecore_hook D 0x8 + __argz_count F + __argz_next F + __argz_stringify F + __asprintf F + __asprintf_chk F + __assert F + __assert_fail F + __assert_perror_fail F + __backtrace F + __backtrace_symbols F + __backtrace_symbols_fd F + __bsd_getpgrp F + __bzero F + __check_rhosts_file D 0x4 + __chk_fail F + __clone F + __close F + __cmsg_nxthdr F + __confstr_chk F + __connect F + __ctype_b_loc F + __ctype_get_mb_cur_max F + __ctype_tolower_loc F + __ctype_toupper_loc F + __curbrk D 0x8 + __cxa_at_quick_exit F + __cxa_atexit F + __cxa_finalize F + __cyg_profile_func_enter F + __cyg_profile_func_exit F + __daylight D 0x4 + __dcgettext F + __default_morecore F + __dgettext F + __dprintf_chk F + __dup2 F + __duplocale F + __endmntent F + __environ D 0x8 + __errno_location F + __fbufsize F + __fcntl F + __fdelt_chk F + __fdelt_warn F + __ffs F + __fgets_chk F + __fgets_unlocked_chk F + __fgetws_chk F + __fgetws_unlocked_chk F + __finite F + __finitef F + __finitel F + __flbf F + __fork F + __fpending F + __fprintf_chk F + __fpu_control D 0x4 + __fpurge F + __fread_chk F + __fread_unlocked_chk F + __freadable F + __freading F + __free_hook D 0x8 + __freelocale F + __fsetlocking F + __fwprintf_chk F + __fwritable F + __fwriting F + __fxstat F + __fxstat64 F + __fxstatat F + __fxstatat64 F + __getauxval F + __getcwd_chk F + __getdelim F + __getdomainname_chk F + __getgroups_chk F + __gethostname_chk F + __getlogin_r_chk F + __getmntent_r F + __getpagesize F + __getpgid F + __getpid F + __gets_chk F + __gettimeofday F + __getwd_chk F + __gmtime_r F + __h_errno_location F + __isalnum_l F + __isalpha_l F + __isascii_l F + __isblank_l F + __iscntrl_l F + __isctype F + __isdigit_l F + __isgraph_l F + __isinf F + __isinff F + __isinfl F + __islower_l F + __isnan F + __isnanf F + __isnanl F + __isoc99_fscanf F + __isoc99_fwscanf F + __isoc99_scanf F + __isoc99_sscanf F + __isoc99_swscanf F + __isoc99_vfscanf F + __isoc99_vfwscanf F + __isoc99_vscanf F + __isoc99_vsscanf F + __isoc99_vswscanf F + __isoc99_vwscanf F + __isoc99_wscanf F + __isprint_l F + __ispunct_l F + __isspace_l F + __isupper_l F + __iswalnum_l F + __iswalpha_l F + __iswblank_l F + __iswcntrl_l F + __iswctype F + __iswctype_l F + __iswdigit_l F + __iswgraph_l F + __iswlower_l F + __iswprint_l F + __iswpunct_l F + __iswspace_l F + __iswupper_l F + __iswxdigit_l F + __isxdigit_l F + __ivaliduser F + __key_decryptsession_pk_LOCAL D 0x8 + __key_encryptsession_pk_LOCAL D 0x8 + __key_gendes_LOCAL D 0x8 + __libc_allocate_rtsig F + __libc_calloc F + __libc_current_sigrtmax F + __libc_current_sigrtmin F + __libc_free F + __libc_freeres F + __libc_init_first F + __libc_mallinfo F + __libc_malloc F + __libc_mallopt F + __libc_memalign F + __libc_pvalloc F + __libc_realloc F + __libc_sa_len F + __libc_start_main F + __libc_valloc F + __longjmp_chk F + __lseek F + __lxstat F + __lxstat64 F + __malloc_hook D 0x8 + __malloc_initialize_hook D 0x8 + __mbrlen F + __mbrtowc F + __mbsnrtowcs_chk F + __mbsrtowcs_chk F + __mbstowcs_chk F + __memalign_hook D 0x8 + __memcpy_chk F + __memmove_chk F + __mempcpy F + __mempcpy_chk F + __mempcpy_small F + __memset_chk F + __monstartup F + __morecore D 0x8 + __nanosleep F + __newlocale F + __nl_langinfo_l F + __nldbl__IO_fprintf F + __nldbl__IO_printf F + __nldbl__IO_sprintf F + __nldbl__IO_sscanf F + __nldbl__IO_vfprintf F + __nldbl__IO_vfscanf F + __nldbl__IO_vsprintf F + __nldbl___asprintf F + __nldbl___asprintf_chk F + __nldbl___dprintf_chk F + __nldbl___fprintf_chk F + __nldbl___fwprintf_chk F + __nldbl___isoc99_fscanf F + __nldbl___isoc99_fwscanf F + __nldbl___isoc99_scanf F + __nldbl___isoc99_sscanf F + __nldbl___isoc99_swscanf F + __nldbl___isoc99_vfscanf F + __nldbl___isoc99_vfwscanf F + __nldbl___isoc99_vscanf F + __nldbl___isoc99_vsscanf F + __nldbl___isoc99_vswscanf F + __nldbl___isoc99_vwscanf F + __nldbl___isoc99_wscanf F + __nldbl___obstack_printf_chk F + __nldbl___obstack_vprintf_chk F + __nldbl___printf_chk F + __nldbl___printf_fp F + __nldbl___snprintf_chk F + __nldbl___sprintf_chk F + __nldbl___strfmon_l F + __nldbl___swprintf_chk F + __nldbl___syslog_chk F + __nldbl___vasprintf_chk F + __nldbl___vdprintf_chk F + __nldbl___vfprintf_chk F + __nldbl___vfscanf F + __nldbl___vfwprintf_chk F + __nldbl___vprintf_chk F + __nldbl___vsnprintf F + __nldbl___vsnprintf_chk F + __nldbl___vsprintf_chk F + __nldbl___vsscanf F + __nldbl___vstrfmon F + __nldbl___vstrfmon_l F + __nldbl___vswprintf_chk F + __nldbl___vsyslog_chk F + __nldbl___vwprintf_chk F + __nldbl___wprintf_chk F + __nldbl_asprintf F + __nldbl_dprintf F + __nldbl_fprintf F + __nldbl_fscanf F + __nldbl_fwprintf F + __nldbl_fwscanf F + __nldbl_obstack_printf F + __nldbl_obstack_vprintf F + __nldbl_printf F + __nldbl_printf_size F + __nldbl_scanf F + __nldbl_snprintf F + __nldbl_sprintf F + __nldbl_sscanf F + __nldbl_strfmon F + __nldbl_strfmon_l F + __nldbl_swprintf F + __nldbl_swscanf F + __nldbl_syslog F + __nldbl_vasprintf F + __nldbl_vdprintf F + __nldbl_vfprintf F + __nldbl_vfscanf F + __nldbl_vfwprintf F + __nldbl_vfwscanf F + __nldbl_vprintf F + __nldbl_vscanf F + __nldbl_vsnprintf F + __nldbl_vsprintf F + __nldbl_vsscanf F + __nldbl_vswprintf F + __nldbl_vswscanf F + __nldbl_vsyslog F + __nldbl_vwprintf F + __nldbl_vwscanf F + __nldbl_wprintf F + __nldbl_wscanf F + __nss_configure_lookup F + __nss_database_lookup F + __nss_group_lookup F + __nss_hostname_digits_dots F + __nss_hosts_lookup F + __nss_next F + __nss_passwd_lookup F + __obstack_printf_chk F + __obstack_vprintf_chk F + __open F + __open64 F + __open64_2 F + __open_2 F + __openat64_2 F + __openat_2 F + __overflow F + __pipe F + __poll F + __poll_chk F + __posix_getopt F + __ppc_get_timebase_freq F + __ppoll_chk F + __pread64 F + __pread64_chk F + __pread_chk F + __printf_chk F + __printf_fp F + __profile_frequency F + __progname D 0x8 + __progname_full D 0x8 + __ptsname_r_chk F + __pwrite64 F + __rawmemchr F + __rcmd_errstr D 0x8 + __read F + __read_chk F + __readlink_chk F + __readlinkat_chk F + __realloc_hook D 0x8 + __realpath_chk F + __recv_chk F + __recvfrom_chk F + __register_atfork F + __res_init F + __res_nclose F + __res_ninit F + __res_randomid F + __res_state F + __rpc_thread_createerr F + __rpc_thread_svc_fdset F + __rpc_thread_svc_max_pollfd F + __rpc_thread_svc_pollfd F + __sbrk F + __sched_cpualloc F + __sched_cpucount F + __sched_cpufree F + __sched_get_priority_max F + __sched_get_priority_min F + __sched_getparam F + __sched_getscheduler F + __sched_setscheduler F + __sched_yield F + __select F + __send F + __setmntent F + __setpgid F + __sigaction F + __sigaddset F + __sigdelset F + __sigismember F + __signbit F + __signbitf F + __signbitl F + __sigpause F + __sigsetjmp F + __sigsuspend F + __snprintf_chk F + __sprintf_chk F + __stack_chk_fail F + __statfs F + __stpcpy F + __stpcpy_chk F + __stpcpy_small F + __stpncpy F + __stpncpy_chk F + __strcasecmp F + __strcasecmp_l F + __strcasestr F + __strcat_chk F + __strcoll_l F + __strcpy_chk F + __strcpy_small F + __strcspn_c1 F + __strcspn_c2 F + __strcspn_c3 F + __strdup F + __strerror_r F + __strfmon_l F + __strftime_l F + __strncasecmp_l F + __strncat_chk F + __strncpy_chk F + __strndup F + __strpbrk_c2 F + __strpbrk_c3 F + __strsep_1c F + __strsep_2c F + __strsep_3c F + __strsep_g F + __strspn_c1 F + __strspn_c2 F + __strspn_c3 F + __strtod_internal F + __strtod_l F + __strtof_internal F + __strtof_l F + __strtok_r F + __strtok_r_1c F + __strtol_internal F + __strtol_l F + __strtold_internal F + __strtold_l F + __strtoll_internal F + __strtoll_l F + __strtoul_internal F + __strtoul_l F + __strtoull_internal F + __strtoull_l F + __strverscmp F + __strxfrm_l F + __swprintf_chk F + __sysconf F + __sysctl F + __syslog_chk F + __sysv_signal F + __timezone D 0x8 + __toascii_l F + __tolower_l F + __toupper_l F + __towctrans F + __towctrans_l F + __towlower_l F + __towupper_l F + __ttyname_r_chk F + __tzname D 0x10 + __uflow F + __underflow F + __uselocale F + __vasprintf_chk F + __vdprintf_chk F + __vfork F + __vfprintf_chk F + __vfscanf F + __vfwprintf_chk F + __vprintf_chk F + __vsnprintf F + __vsnprintf_chk F + __vsprintf_chk F + __vsscanf F + __vswprintf_chk F + __vsyslog_chk F + __vwprintf_chk F + __wait F + __waitpid F + __wcpcpy_chk F + __wcpncpy_chk F + __wcrtomb_chk F + __wcscasecmp_l F + __wcscat_chk F + __wcscoll_l F + __wcscpy_chk F + __wcsftime_l F + __wcsncasecmp_l F + __wcsncat_chk F + __wcsncpy_chk F + __wcsnrtombs_chk F + __wcsrtombs_chk F + __wcstod_internal F + __wcstod_l F + __wcstof_internal F + __wcstof_l F + __wcstol_internal F + __wcstol_l F + __wcstold_internal F + __wcstold_l F + __wcstoll_internal F + __wcstoll_l F + __wcstombs_chk F + __wcstoul_internal F + __wcstoul_l F + __wcstoull_internal F + __wcstoull_l F + __wcsxfrm_l F + __wctomb_chk F + __wctrans_l F + __wctype_l F + __wmemcpy_chk F + __wmemmove_chk F + __wmempcpy_chk F + __wmemset_chk F + __woverflow F + __wprintf_chk F + __write F + __wuflow F + __wunderflow F + __xmknod F + __xmknodat F + __xpg_basename F + __xpg_sigpause F + __xpg_strerror_r F + __xstat F + __xstat64 F + _authenticate F + _dl_mcount_wrapper F + _dl_mcount_wrapper_check F + _environ D 0x8 + _exit F + _flushlbf F + _libc_intl_domainname D 0x5 + _longjmp F + _mcleanup F + _mcount F + _nl_default_dirname D 0x12 + _nl_domain_bindings D 0x8 + _nl_msg_cat_cntr D 0x4 + _null_auth D 0x18 + _obstack_allocated_p F + _obstack_begin F + _obstack_begin_1 F + _obstack_free F + _obstack_memory_used F + _obstack_newchunk F + _res D 0x238 + _res_hconf D 0x48 + _rpc_dtablesize F + _seterr_reply F + _setjmp F + _sys_errlist D 0x438 + _sys_nerr D 0x4 + _sys_siglist D 0x208 + _tolower F + _toupper F + a64l F + abort F + abs F + accept F + accept4 F + access F + acct F + addmntent F + addseverity F + adjtime F + adjtimex F + advance F + alarm F + aligned_alloc F + alphasort F + alphasort64 F + argp_err_exit_status D 0x4 + argp_error F + argp_failure F + argp_help F + argp_parse F + argp_program_bug_address D 0x8 + argp_program_version D 0x8 + argp_program_version_hook D 0x8 + argp_state_help F + argp_usage F + argz_add F + argz_add_sep F + argz_append F + argz_count F + argz_create F + argz_create_sep F + argz_delete F + argz_extract F + argz_insert F + argz_next F + argz_replace F + argz_stringify F + asctime F + asctime_r F + asprintf F + atof F + atoi F + atol F + atoll F + authdes_create F + authdes_getucred F + authdes_pk_create F + authnone_create F + authunix_create F + authunix_create_default F + backtrace F + backtrace_symbols F + backtrace_symbols_fd F + basename F + bcmp F + bcopy F + bdflush F + bind F + bind_textdomain_codeset F + bindresvport F + bindtextdomain F + brk F + bsd_signal F + bsearch F + btowc F + bzero F + c16rtomb F + c32rtomb F + calloc F + callrpc F + canonicalize_file_name F + capget F + capset F + catclose F + catgets F + catopen F + cbc_crypt F + cfgetispeed F + cfgetospeed F + cfmakeraw F + cfree F + cfsetispeed F + cfsetospeed F + cfsetspeed F + chdir F + chflags F + chmod F + chown F + chroot F + clearenv F + clearerr F + clearerr_unlocked F + clnt_broadcast F + clnt_create F + clnt_pcreateerror F + clnt_perrno F + clnt_perror F + clnt_spcreateerror F + clnt_sperrno F + clnt_sperror F + clntraw_create F + clnttcp_create F + clntudp_bufcreate F + clntudp_create F + clntunix_create F + clock F + clock_adjtime F + clock_getcpuclockid F + clock_getres F + clock_gettime F + clock_nanosleep F + clock_settime F + clone F + close F + closedir F + closelog F + confstr F + connect F + copysign F + copysignf F + copysignl F + creat F + creat64 F + create_module F + ctermid F + ctime F + ctime_r F + cuserid F + daemon F + daylight D 0x4 + dcgettext F + dcngettext F + delete_module F + des_setparity F + dgettext F + difftime F + dirfd F + dirname F + div F + dl_iterate_phdr F + dngettext F + dprintf F + drand48 F + drand48_r F + dup F + dup2 F + dup3 F + duplocale F + dysize F + eaccess F + ecb_crypt F + ecvt F + ecvt_r F + endaliasent F + endfsent F + endgrent F + endhostent F + endmntent F + endnetent F + endnetgrent F + endprotoent F + endpwent F + endrpcent F + endservent F + endsgent F + endspent F + endttyent F + endusershell F + endutent F + endutxent F + environ D 0x8 + envz_add F + envz_entry F + envz_get F + envz_merge F + envz_remove F + envz_strip F + epoll_create F + epoll_create1 F + epoll_ctl F + epoll_pwait F + epoll_wait F + erand48 F + erand48_r F + err F + error F + error_at_line F + error_message_count D 0x4 + error_one_per_line D 0x4 + error_print_progname D 0x8 + errx F + ether_aton F + ether_aton_r F + ether_hostton F + ether_line F + ether_ntoa F + ether_ntoa_r F + ether_ntohost F + euidaccess F + eventfd F + eventfd_read F + eventfd_write F + execl F + execle F + execlp F + execv F + execve F + execvp F + execvpe F + exit F + faccessat F + fallocate F + fallocate64 F + fanotify_init F + fanotify_mark F + fattach F + fchdir F + fchflags F + fchmod F + fchmodat F + fchown F + fchownat F + fclose F + fcloseall F + fcntl F + fcvt F + fcvt_r F + fdatasync F + fdetach F + fdopen F + fdopendir F + feof F + feof_unlocked F + ferror F + ferror_unlocked F + fexecve F + fflush F + fflush_unlocked F + ffs F + ffsl F + ffsll F + fgetc F + fgetc_unlocked F + fgetgrent F + fgetgrent_r F + fgetpos F + fgetpos64 F + fgetpwent F + fgetpwent_r F + fgets F + fgets_unlocked F + fgetsgent F + fgetsgent_r F + fgetspent F + fgetspent_r F + fgetwc F + fgetwc_unlocked F + fgetws F + fgetws_unlocked F + fgetxattr F + fileno F + fileno_unlocked F + finite F + finitef F + finitel F + flistxattr F + flock F + flockfile F + fmemopen F + fmtmsg F + fnmatch F + fopen F + fopen64 F + fopencookie F + fork F + fpathconf F + fprintf F + fputc F + fputc_unlocked F + fputs F + fputs_unlocked F + fputwc F + fputwc_unlocked F + fputws F + fputws_unlocked F + fread F + fread_unlocked F + free F + freeaddrinfo F + freeifaddrs F + freelocale F + fremovexattr F + freopen F + freopen64 F + frexp F + frexpf F + frexpl F + fscanf F + fseek F + fseeko F + fseeko64 F + fsetpos F + fsetpos64 F + fsetxattr F + fstatfs F + fstatfs64 F + fstatvfs F + fstatvfs64 F + fsync F + ftell F + ftello F + ftello64 F + ftime F + ftok F + ftruncate F + ftruncate64 F + ftrylockfile F + fts_children F + fts_close F + fts_open F + fts_read F + fts_set F + ftw F + ftw64 F + funlockfile F + futimens F + futimes F + futimesat F + fwide F + fwprintf F + fwrite F + fwrite_unlocked F + fwscanf F + gai_strerror F + gcvt F + get_avphys_pages F + get_current_dir_name F + get_kernel_syms F + get_myaddress F + get_nprocs F + get_nprocs_conf F + get_phys_pages F + getaddrinfo F + getaliasbyname F + getaliasbyname_r F + getaliasent F + getaliasent_r F + getauxval F + getc F + getc_unlocked F + getchar F + getchar_unlocked F + getcontext F + getcwd F + getdate F + getdate_err D 0x4 + getdate_r F + getdelim F + getdirentries F + getdirentries64 F + getdomainname F + getdtablesize F + getegid F + getenv F + geteuid F + getfsent F + getfsfile F + getfsspec F + getgid F + getgrent F + getgrent_r F + getgrgid F + getgrgid_r F + getgrnam F + getgrnam_r F + getgrouplist F + getgroups F + gethostbyaddr F + gethostbyaddr_r F + gethostbyname F + gethostbyname2 F + gethostbyname2_r F + gethostbyname_r F + gethostent F + gethostent_r F + gethostid F + gethostname F + getifaddrs F + getipv4sourcefilter F + getitimer F + getline F + getloadavg F + getlogin F + getlogin_r F + getmntent F + getmntent_r F + getmsg F + getnameinfo F + getnetbyaddr F + getnetbyaddr_r F + getnetbyname F + getnetbyname_r F + getnetent F + getnetent_r F + getnetgrent F + getnetgrent_r F + getnetname F + getopt F + getopt_long F + getopt_long_only F + getpagesize F + getpass F + getpeername F + getpgid F + getpgrp F + getpid F + getpmsg F + getppid F + getpriority F + getprotobyname F + getprotobyname_r F + getprotobynumber F + getprotobynumber_r F + getprotoent F + getprotoent_r F + getpt F + getpublickey F + getpw F + getpwent F + getpwent_r F + getpwnam F + getpwnam_r F + getpwuid F + getpwuid_r F + getresgid F + getresuid F + getrlimit F + getrlimit64 F + getrpcbyname F + getrpcbyname_r F + getrpcbynumber F + getrpcbynumber_r F + getrpcent F + getrpcent_r F + getrpcport F + getrusage F + gets F + getsecretkey F + getservbyname F + getservbyname_r F + getservbyport F + getservbyport_r F + getservent F + getservent_r F + getsgent F + getsgent_r F + getsgnam F + getsgnam_r F + getsid F + getsockname F + getsockopt F + getsourcefilter F + getspent F + getspent_r F + getspnam F + getspnam_r F + getsubopt F + gettext F + gettimeofday F + getttyent F + getttynam F + getuid F + getusershell F + getutent F + getutent_r F + getutid F + getutid_r F + getutline F + getutline_r F + getutmp F + getutmpx F + getutxent F + getutxid F + getutxline F + getw F + getwc F + getwc_unlocked F + getwchar F + getwchar_unlocked F + getwd F + getxattr F + glob F + glob64 F + glob_pattern_p F + globfree F + globfree64 F + gmtime F + gmtime_r F + gnu_dev_major F + gnu_dev_makedev F + gnu_dev_minor F + gnu_get_libc_release F + gnu_get_libc_version F + grantpt F + group_member F + gsignal F + gtty F + h_errlist D 0x28 + h_nerr D 0x4 + hasmntopt F + hcreate F + hcreate_r F + hdestroy F + hdestroy_r F + herror F + host2netname F + hsearch F + hsearch_r F + hstrerror F + htonl F + htons F + iconv F + iconv_close F + iconv_open F + if_freenameindex F + if_indextoname F + if_nameindex F + if_nametoindex F + imaxabs F + imaxdiv F + in6addr_any D 0x10 + in6addr_loopback D 0x10 + index F + inet6_opt_append F + inet6_opt_find F + inet6_opt_finish F + inet6_opt_get_val F + inet6_opt_init F + inet6_opt_next F + inet6_opt_set_val F + inet6_option_alloc F + inet6_option_append F + inet6_option_find F + inet6_option_init F + inet6_option_next F + inet6_option_space F + inet6_rth_add F + inet6_rth_getaddr F + inet6_rth_init F + inet6_rth_reverse F + inet6_rth_segments F + inet6_rth_space F + inet_addr F + inet_aton F + inet_lnaof F + inet_makeaddr F + inet_netof F + inet_network F + inet_nsap_addr F + inet_nsap_ntoa F + inet_ntoa F + inet_ntop F + inet_pton F + init_module F + initgroups F + initstate F + initstate_r F + innetgr F + inotify_add_watch F + inotify_init F + inotify_init1 F + inotify_rm_watch F + insque F + ioctl F + iruserok F + iruserok_af F + isalnum F + isalnum_l F + isalpha F + isalpha_l F + isascii F + isastream F + isatty F + isblank F + isblank_l F + iscntrl F + iscntrl_l F + isctype F + isdigit F + isdigit_l F + isfdtype F + isgraph F + isgraph_l F + isinf F + isinff F + isinfl F + islower F + islower_l F + isnan F + isnanf F + isnanl F + isprint F + isprint_l F + ispunct F + ispunct_l F + isspace F + isspace_l F + isupper F + isupper_l F + iswalnum F + iswalnum_l F + iswalpha F + iswalpha_l F + iswblank F + iswblank_l F + iswcntrl F + iswcntrl_l F + iswctype F + iswctype_l F + iswdigit F + iswdigit_l F + iswgraph F + iswgraph_l F + iswlower F + iswlower_l F + iswprint F + iswprint_l F + iswpunct F + iswpunct_l F + iswspace F + iswspace_l F + iswupper F + iswupper_l F + iswxdigit F + iswxdigit_l F + isxdigit F + isxdigit_l F + jrand48 F + jrand48_r F + key_decryptsession F + key_decryptsession_pk F + key_encryptsession F + key_encryptsession_pk F + key_gendes F + key_get_conv F + key_secretkey_is_set F + key_setnet F + key_setsecret F + kill F + killpg F + klogctl F + l64a F + labs F + lchmod F + lchown F + lckpwdf F + lcong48 F + lcong48_r F + ldexp F + ldexpf F + ldexpl F + ldiv F + lfind F + lgetxattr F + link F + linkat F + listen F + listxattr F + llabs F + lldiv F + llistxattr F + llseek F + loc1 D 0x8 + loc2 D 0x8 + localeconv F + localtime F + localtime_r F + lockf F + lockf64 F + locs D 0x8 + longjmp F + lrand48 F + lrand48_r F + lremovexattr F + lsearch F + lseek F + lseek64 F + lsetxattr F + lutimes F + madvise F + makecontext F + mallinfo F + malloc F + malloc_get_state F + malloc_info F + malloc_set_state F + malloc_stats F + malloc_trim F + malloc_usable_size F + mallopt F + mallwatch D 0x8 + mblen F + mbrlen F + mbrtoc16 F + mbrtoc32 F + mbrtowc F + mbsinit F + mbsnrtowcs F + mbsrtowcs F + mbstowcs F + mbtowc F + mcheck F + mcheck_check_all F + mcheck_pedantic F + memalign F + memccpy F + memchr F + memcmp F + memcpy F + memfrob F + memmem F + memmove F + mempcpy F + memrchr F + memset F + mincore F + mkdir F + mkdirat F + mkdtemp F + mkfifo F + mkfifoat F + mkostemp F + mkostemp64 F + mkostemps F + mkostemps64 F + mkstemp F + mkstemp64 F + mkstemps F + mkstemps64 F + mktemp F + mktime F + mlock F + mlockall F + mmap F + mmap64 F + modf F + modff F + modfl F + moncontrol F + monstartup F + mount F + mprobe F + mprotect F + mrand48 F + mrand48_r F + mremap F + msgctl F + msgget F + msgrcv F + msgsnd F + msync F + mtrace F + munlock F + munlockall F + munmap F + muntrace F + name_to_handle_at F + nanosleep F + netname2host F + netname2user F + newlocale F + nfsservctl F + nftw F + nftw64 F + ngettext F + nice F + nl_langinfo F + nl_langinfo_l F + nrand48 F + nrand48_r F + ntohl F + ntohs F + ntp_adjtime F + ntp_gettime F + ntp_gettimex F + obstack_alloc_failed_handler D 0x8 + obstack_exit_failure D 0x4 + obstack_free F + obstack_printf F + obstack_vprintf F + on_exit F + open F + open64 F + open_by_handle_at F + open_memstream F + open_wmemstream F + openat F + openat64 F + opendir F + openlog F + optarg D 0x8 + opterr D 0x4 + optind D 0x4 + optopt D 0x4 + parse_printf_format F + passwd2des F + pathconf F + pause F + pclose F + perror F + personality F + pipe F + pipe2 F + pivot_root F + pmap_getmaps F + pmap_getport F + pmap_rmtcall F + pmap_set F + pmap_unset F + poll F + popen F + posix_fadvise F + posix_fadvise64 F + posix_fallocate F + posix_fallocate64 F + posix_madvise F + posix_memalign F + posix_openpt F + posix_spawn F + posix_spawn_file_actions_addclose F + posix_spawn_file_actions_adddup2 F + posix_spawn_file_actions_addopen F + posix_spawn_file_actions_destroy F + posix_spawn_file_actions_init F + posix_spawnattr_destroy F + posix_spawnattr_getflags F + posix_spawnattr_getpgroup F + posix_spawnattr_getschedparam F + posix_spawnattr_getschedpolicy F + posix_spawnattr_getsigdefault F + posix_spawnattr_getsigmask F + posix_spawnattr_init F + posix_spawnattr_setflags F + posix_spawnattr_setpgroup F + posix_spawnattr_setschedparam F + posix_spawnattr_setschedpolicy F + posix_spawnattr_setsigdefault F + posix_spawnattr_setsigmask F + posix_spawnp F + ppoll F + prctl F + pread F + pread64 F + preadv F + preadv64 F + printf F + printf_size F + printf_size_info F + prlimit F + prlimit64 F + process_vm_readv F + process_vm_writev F + profil F + program_invocation_name D 0x8 + program_invocation_short_name D 0x8 + pselect F + psiginfo F + psignal F + pthread_attr_destroy F + pthread_attr_getdetachstate F + pthread_attr_getinheritsched F + pthread_attr_getschedparam F + pthread_attr_getschedpolicy F + pthread_attr_getscope F + pthread_attr_init F + pthread_attr_setdetachstate F + pthread_attr_setinheritsched F + pthread_attr_setschedparam F + pthread_attr_setschedpolicy F + pthread_attr_setscope F + pthread_cond_broadcast F + pthread_cond_destroy F + pthread_cond_init F + pthread_cond_signal F + pthread_cond_timedwait F + pthread_cond_wait F + pthread_condattr_destroy F + pthread_condattr_init F + pthread_equal F + pthread_exit F + pthread_getschedparam F + pthread_mutex_destroy F + pthread_mutex_init F + pthread_mutex_lock F + pthread_mutex_unlock F + pthread_self F + pthread_setcancelstate F + pthread_setcanceltype F + pthread_setschedparam F + ptrace F + ptsname F + ptsname_r F + putc F + putc_unlocked F + putchar F + putchar_unlocked F + putenv F + putgrent F + putmsg F + putpmsg F + putpwent F + puts F + putsgent F + putspent F + pututline F + pututxline F + putw F + putwc F + putwc_unlocked F + putwchar F + putwchar_unlocked F + pvalloc F + pwrite F + pwrite64 F + pwritev F + pwritev64 F + qecvt F + qecvt_r F + qfcvt F + qfcvt_r F + qgcvt F + qsort F + qsort_r F + query_module F + quick_exit F + quotactl F + raise F + rand F + rand_r F + random F + random_r F + rawmemchr F + rcmd F + rcmd_af F + re_comp F + re_compile_fastmap F + re_compile_pattern F + re_exec F + re_match F + re_match_2 F + re_search F + re_search_2 F + re_set_registers F + re_set_syntax F + re_syntax_options D 0x8 + read F + readahead F + readdir F + readdir64 F + readdir64_r F + readdir_r F + readlink F + readlinkat F + readv F + realloc F + realpath F + reboot F + recv F + recvfrom F + recvmmsg F + recvmsg F + regcomp F + regerror F + regexec F + regfree F + register_printf_function F + register_printf_modifier F + register_printf_specifier F + register_printf_type F + registerrpc F + remap_file_pages F + remove F + removexattr F + remque F + rename F + renameat F + revoke F + rewind F + rewinddir F + rexec F + rexec_af F + rexecoptions D 0x4 + rindex F + rmdir F + rpc_createerr D 0x20 + rpmatch F + rresvport F + rresvport_af F + rtime F + ruserok F + ruserok_af F + ruserpass F + sbrk F + scalbn F + scalbnf F + scalbnl F + scandir F + scandir64 F + scandirat F + scandirat64 F + scanf F + sched_get_priority_max F + sched_get_priority_min F + sched_getaffinity F + sched_getcpu F + sched_getparam F + sched_getscheduler F + sched_rr_get_interval F + sched_setaffinity F + sched_setparam F + sched_setscheduler F + sched_yield F + secure_getenv F + seed48 F + seed48_r F + seekdir F + select F + semctl F + semget F + semop F + semtimedop F + send F + sendfile F + sendfile64 F + sendmmsg F + sendmsg F + sendto F + setaliasent F + setbuf F + setbuffer F + setcontext F + setdomainname F + setegid F + setenv F + seteuid F + setfsent F + setfsgid F + setfsuid F + setgid F + setgrent F + setgroups F + sethostent F + sethostid F + sethostname F + setipv4sourcefilter F + setitimer F + setjmp F + setlinebuf F + setlocale F + setlogin F + setlogmask F + setmntent F + setnetent F + setnetgrent F + setns F + setpgid F + setpgrp F + setpriority F + setprotoent F + setpwent F + setregid F + setresgid F + setresuid F + setreuid F + setrlimit F + setrlimit64 F + setrpcent F + setservent F + setsgent F + setsid F + setsockopt F + setsourcefilter F + setspent F + setstate F + setstate_r F + settimeofday F + setttyent F + setuid F + setusershell F + setutent F + setutxent F + setvbuf F + setxattr F + sgetsgent F + sgetsgent_r F + sgetspent F + sgetspent_r F + shmat F + shmctl F + shmdt F + shmget F + shutdown F + sigaction F + sigaddset F + sigaltstack F + sigandset F + sigblock F + sigdelset F + sigemptyset F + sigfillset F + siggetmask F + sighold F + sigignore F + siginterrupt F + sigisemptyset F + sigismember F + siglongjmp F + signal F + signalfd F + sigorset F + sigpause F + sigpending F + sigprocmask F + sigqueue F + sigrelse F + sigreturn F + sigset F + sigsetmask F + sigstack F + sigsuspend F + sigtimedwait F + sigvec F + sigwait F + sigwaitinfo F + sleep F + snprintf F + sockatmark F + socket F + socketpair F + splice F + sprintf F + sprofil F + srand F + srand48 F + srand48_r F + srandom F + srandom_r F + sscanf F + ssignal F + sstk F + statfs F + statfs64 F + statvfs F + statvfs64 F + stderr D 0x8 + stdin D 0x8 + stdout D 0x8 + step F + stime F + stpcpy F + stpncpy F + strcasecmp F + strcasecmp_l F + strcasestr F + strcat F + strchr F + strchrnul F + strcmp F + strcoll F + strcoll_l F + strcpy F + strcspn F + strdup F + strerror F + strerror_l F + strerror_r F + strfmon F + strfmon_l F + strfry F + strftime F + strftime_l F + strlen F + strncasecmp F + strncasecmp_l F + strncat F + strncmp F + strncpy F + strndup F + strnlen F + strpbrk F + strptime F + strptime_l F + strrchr F + strsep F + strsignal F + strspn F + strstr F + strtod F + strtod_l F + strtof F + strtof_l F + strtoimax F + strtok F + strtok_r F + strtol F + strtol_l F + strtold F + strtold_l F + strtoll F + strtoll_l F + strtoq F + strtoul F + strtoul_l F + strtoull F + strtoull_l F + strtoumax F + strtouq F + strverscmp F + strxfrm F + strxfrm_l F + stty F + svc_exit F + svc_fdset D 0x80 + svc_getreq F + svc_getreq_common F + svc_getreq_poll F + svc_getreqset F + svc_max_pollfd D 0x4 + svc_pollfd D 0x8 + svc_register F + svc_run F + svc_sendreply F + svc_unregister F + svcauthdes_stats D 0x18 + svcerr_auth F + svcerr_decode F + svcerr_noproc F + svcerr_noprog F + svcerr_progvers F + svcerr_systemerr F + svcerr_weakauth F + svcfd_create F + svcraw_create F + svctcp_create F + svcudp_bufcreate F + svcudp_create F + svcudp_enablecache F + svcunix_create F + svcunixfd_create F + swab F + swapcontext F + swapoff F + swapon F + swprintf F + swscanf F + symlink F + symlinkat F + sync F + sync_file_range F + syncfs F + sys_errlist D 0x438 + sys_nerr D 0x4 + sys_sigabbrev D 0x208 + sys_siglist D 0x208 + syscall F + sysconf F + sysctl F + sysinfo F + syslog F + system F + sysv_signal F + tcdrain F + tcflow F + tcflush F + tcgetattr F + tcgetpgrp F + tcgetsid F + tcsendbreak F + tcsetattr F + tcsetpgrp F + tdelete F + tdestroy F + tee F + telldir F + tempnam F + textdomain F + tfind F + time F + timegm F + timelocal F + timerfd_create F + timerfd_gettime F + timerfd_settime F + times F + timespec_get F + timezone D 0x8 + tmpfile F + tmpfile64 F + tmpnam F + tmpnam_r F + toascii F + tolower F + tolower_l F + toupper F + toupper_l F + towctrans F + towctrans_l F + towlower F + towlower_l F + towupper F + towupper_l F + tr_break F + truncate F + truncate64 F + tsearch F + ttyname F + ttyname_r F + ttyslot F + twalk F + tzname D 0x10 + tzset F + ualarm F + ulckpwdf F + ulimit F + umask F + umount F + umount2 F + uname F + ungetc F + ungetwc F + unlink F + unlinkat F + unlockpt F + unsetenv F + unshare F + updwtmp F + updwtmpx F + uselib F + uselocale F + user2netname F + usleep F + ustat F + utime F + utimensat F + utimes F + utmpname F + utmpxname F + valloc F + vasprintf F + vdprintf F + verr F + verrx F + versionsort F + versionsort64 F + vfork F + vfprintf F + vfscanf F + vfwprintf F + vfwscanf F + vhangup F + vlimit F + vmsplice F + vprintf F + vscanf F + vsnprintf F + vsprintf F + vsscanf F + vswprintf F + vswscanf F + vsyslog F + vtimes F + vwarn F + vwarnx F + vwprintf F + vwscanf F + wait F + wait3 F + wait4 F + waitid F + waitpid F + warn F + warnx F + wcpcpy F + wcpncpy F + wcrtomb F + wcscasecmp F + wcscasecmp_l F + wcscat F + wcschr F + wcschrnul F + wcscmp F + wcscoll F + wcscoll_l F + wcscpy F + wcscspn F + wcsdup F + wcsftime F + wcsftime_l F + wcslen F + wcsncasecmp F + wcsncasecmp_l F + wcsncat F + wcsncmp F + wcsncpy F + wcsnlen F + wcsnrtombs F + wcspbrk F + wcsrchr F + wcsrtombs F + wcsspn F + wcsstr F + wcstod F + wcstod_l F + wcstof F + wcstof_l F + wcstoimax F + wcstok F + wcstol F + wcstol_l F + wcstold F + wcstold_l F + wcstoll F + wcstoll_l F + wcstombs F + wcstoq F + wcstoul F + wcstoul_l F + wcstoull F + wcstoull_l F + wcstoumax F + wcstouq F + wcswcs F + wcswidth F + wcsxfrm F + wcsxfrm_l F + wctob F + wctomb F + wctrans F + wctrans_l F + wctype F + wctype_l F + wcwidth F + wmemchr F + wmemcmp F + wmemcpy F + wmemmove F + wmempcpy F + wmemset F + wordexp F + wordfree F + wprintf F + write F + writev F + wscanf F + xdecrypt F + xdr_accepted_reply F + xdr_array F + xdr_authdes_cred F + xdr_authdes_verf F + xdr_authunix_parms F + xdr_bool F + xdr_bytes F + xdr_callhdr F + xdr_callmsg F + xdr_char F + xdr_cryptkeyarg F + xdr_cryptkeyarg2 F + xdr_cryptkeyres F + xdr_des_block F + xdr_double F + xdr_enum F + xdr_float F + xdr_free F + xdr_getcredres F + xdr_hyper F + xdr_int F + xdr_int16_t F + xdr_int32_t F + xdr_int64_t F + xdr_int8_t F + xdr_key_netstarg F + xdr_key_netstres F + xdr_keybuf F + xdr_keystatus F + xdr_long F + xdr_longlong_t F + xdr_netnamestr F + xdr_netobj F + xdr_opaque F + xdr_opaque_auth F + xdr_pmap F + xdr_pmaplist F + xdr_pointer F + xdr_quad_t F + xdr_reference F + xdr_rejected_reply F + xdr_replymsg F + xdr_rmtcall_args F + xdr_rmtcallres F + xdr_short F + xdr_sizeof F + xdr_string F + xdr_u_char F + xdr_u_hyper F + xdr_u_int F + xdr_u_long F + xdr_u_longlong_t F + xdr_u_quad_t F + xdr_u_short F + xdr_uint16_t F + xdr_uint32_t F + xdr_uint64_t F + xdr_uint8_t F + xdr_union F + xdr_unixcred F + xdr_vector F + xdr_void F + xdr_wrapstring F + xdrmem_create F + xdrrec_create F + xdrrec_endofrecord F + xdrrec_eof F + xdrrec_skiprecord F + xdrstdio_create F + xencrypt F + xprt_register F + xprt_unregister F +GLIBC_2.18 + GLIBC_2.18 A + __cxa_thread_atexit_impl F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist new file mode 100644 index 0000000000..177c536209 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist @@ -0,0 +1,9 @@ +GLIBC_2.17 + GLIBC_2.17 A + crypt F + crypt_r F + encrypt F + encrypt_r F + fcrypt F + setkey F + setkey_r F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist new file mode 100644 index 0000000000..6caff88266 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist @@ -0,0 +1,11 @@ +GLIBC_2.17 + GLIBC_2.17 A + dladdr F + dladdr1 F + dlclose F + dlerror F + dlinfo F + dlmopen F + dlopen F + dlsym F + dlvsym F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist new file mode 100644 index 0000000000..a820074ab6 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist @@ -0,0 +1,407 @@ +GLIBC_2.17 + GLIBC_2.17 A + _LIB_VERSION D 0x4 + __acos_finite F + __acosf_finite F + __acosh_finite F + __acoshf_finite F + __acoshl_finite F + __acosl_finite F + __asin_finite F + __asinf_finite F + __asinl_finite F + __atan2_finite F + __atan2f_finite F + __atan2l_finite F + __atanh_finite F + __atanhf_finite F + __atanhl_finite F + __clog10 F + __clog10f F + __clog10l F + __cosh_finite F + __coshf_finite F + __coshl_finite F + __exp10_finite F + __exp10f_finite F + __exp10l_finite F + __exp2_finite F + __exp2f_finite F + __exp2l_finite F + __exp_finite F + __expf_finite F + __expl_finite F + __fe_dfl_env D 0x8 + __fe_enabled_env D 0x8 + __fe_nomask_env F + __fe_nonieee_env D 0x8 + __finite F + __finitef F + __finitel F + __fmod_finite F + __fmodf_finite F + __fmodl_finite F + __fpclassify F + __fpclassifyf F + __fpclassifyl F + __gamma_r_finite F + __gammaf_r_finite F + __gammal_r_finite F + __hypot_finite F + __hypotf_finite F + __hypotl_finite F + __j0_finite F + __j0f_finite F + __j0l_finite F + __j1_finite F + __j1f_finite F + __j1l_finite F + __jn_finite F + __jnf_finite F + __jnl_finite F + __lgamma_r_finite F + __lgammaf_r_finite F + __lgammal_r_finite F + __log10_finite F + __log10f_finite F + __log10l_finite F + __log2_finite F + __log2f_finite F + __log2l_finite F + __log_finite F + __logf_finite F + __logl_finite F + __nldbl_nexttowardf F + __pow_finite F + __powf_finite F + __powl_finite F + __remainder_finite F + __remainderf_finite F + __remainderl_finite F + __scalb_finite F + __scalbf_finite F + __scalbl_finite F + __signbit F + __signbitf F + __signbitl F + __sinh_finite F + __sinhf_finite F + __sinhl_finite F + __sqrt_finite F + __sqrtf_finite F + __sqrtl_finite F + __y0_finite F + __y0f_finite F + __y0l_finite F + __y1_finite F + __y1f_finite F + __y1l_finite F + __yn_finite F + __ynf_finite F + __ynl_finite F + acos F + acosf F + acosh F + acoshf F + acoshl F + acosl F + asin F + asinf F + asinh F + asinhf F + asinhl F + asinl F + atan F + atan2 F + atan2f F + atan2l F + atanf F + atanh F + atanhf F + atanhl F + atanl F + cabs F + cabsf F + cabsl F + cacos F + cacosf F + cacosh F + cacoshf F + cacoshl F + cacosl F + carg F + cargf F + cargl F + casin F + casinf F + casinh F + casinhf F + casinhl F + casinl F + catan F + catanf F + catanh F + catanhf F + catanhl F + catanl F + cbrt F + cbrtf F + cbrtl F + ccos F + ccosf F + ccosh F + ccoshf F + ccoshl F + ccosl F + ceil F + ceilf F + ceill F + cexp F + cexpf F + cexpl F + cimag F + cimagf F + cimagl F + clog F + clog10 F + clog10f F + clog10l F + clogf F + clogl F + conj F + conjf F + conjl F + copysign F + copysignf F + copysignl F + cos F + cosf F + cosh F + coshf F + coshl F + cosl F + cpow F + cpowf F + cpowl F + cproj F + cprojf F + cprojl F + creal F + crealf F + creall F + csin F + csinf F + csinh F + csinhf F + csinhl F + csinl F + csqrt F + csqrtf F + csqrtl F + ctan F + ctanf F + ctanh F + ctanhf F + ctanhl F + ctanl F + drem F + dremf F + dreml F + erf F + erfc F + erfcf F + erfcl F + erff F + erfl F + exp F + exp10 F + exp10f F + exp10l F + exp2 F + exp2f F + exp2l F + expf F + expl F + expm1 F + expm1f F + expm1l F + fabs F + fabsf F + fabsl F + fdim F + fdimf F + fdiml F + feclearexcept F + fedisableexcept F + feenableexcept F + fegetenv F + fegetexcept F + fegetexceptflag F + fegetround F + feholdexcept F + feraiseexcept F + fesetenv F + fesetexceptflag F + fesetround F + fetestexcept F + feupdateenv F + finite F + finitef F + finitel F + floor F + floorf F + floorl F + fma F + fmaf F + fmal F + fmax F + fmaxf F + fmaxl F + fmin F + fminf F + fminl F + fmod F + fmodf F + fmodl F + frexp F + frexpf F + frexpl F + gamma F + gammaf F + gammal F + hypot F + hypotf F + hypotl F + ilogb F + ilogbf F + ilogbl F + j0 F + j0f F + j0l F + j1 F + j1f F + j1l F + jn F + jnf F + jnl F + ldexp F + ldexpf F + ldexpl F + lgamma F + lgamma_r F + lgammaf F + lgammaf_r F + lgammal F + lgammal_r F + llrint F + llrintf F + llrintl F + llround F + llroundf F + llroundl F + log F + log10 F + log10f F + log10l F + log1p F + log1pf F + log1pl F + log2 F + log2f F + log2l F + logb F + logbf F + logbl F + logf F + logl F + lrint F + lrintf F + lrintl F + lround F + lroundf F + lroundl F + matherr F + modf F + modff F + modfl F + nan F + nanf F + nanl F + nearbyint F + nearbyintf F + nearbyintl F + nextafter F + nextafterf F + nextafterl F + nexttoward F + nexttowardf F + nexttowardl F + pow F + pow10 F + pow10f F + pow10l F + powf F + powl F + remainder F + remainderf F + remainderl F + remquo F + remquof F + remquol F + rint F + rintf F + rintl F + round F + roundf F + roundl F + scalb F + scalbf F + scalbl F + scalbln F + scalblnf F + scalblnl F + scalbn F + scalbnf F + scalbnl F + signgam D 0x4 + significand F + significandf F + significandl F + sin F + sincos F + sincosf F + sincosl F + sinf F + sinh F + sinhf F + sinhl F + sinl F + sqrt F + sqrtf F + sqrtl F + tan F + tanf F + tanh F + tanhf F + tanhl F + tanl F + tgamma F + tgammaf F + tgammal F + trunc F + truncf F + truncl F + y0 F + y0f F + y0l F + y1 F + y1f F + y1l F + yn F + ynf F + ynl F +GLIBC_2.18 + GLIBC_2.18 A + __issignaling F + __issignalingf F + __issignalingl F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist new file mode 100644 index 0000000000..763b8dc166 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist @@ -0,0 +1,123 @@ +GLIBC_2.17 + GLIBC_2.17 A + __free_fdresult F + __nis_default_access F + __nis_default_group F + __nis_default_owner F + __nis_default_ttl F + __nis_finddirectory F + __nis_hash F + __nisbind_connect F + __nisbind_create F + __nisbind_destroy F + __nisbind_next F + __yp_check F + nis_add F + nis_add_entry F + nis_addmember F + nis_checkpoint F + nis_clone_directory F + nis_clone_object F + nis_clone_result F + nis_creategroup F + nis_destroy_object F + nis_destroygroup F + nis_dir_cmp F + nis_domain_of F + nis_domain_of_r F + nis_first_entry F + nis_free_directory F + nis_free_object F + nis_free_request F + nis_freenames F + nis_freeresult F + nis_freeservlist F + nis_freetags F + nis_getnames F + nis_getservlist F + nis_ismember F + nis_leaf_of F + nis_leaf_of_r F + nis_lerror F + nis_list F + nis_local_directory F + nis_local_group F + nis_local_host F + nis_local_principal F + nis_lookup F + nis_mkdir F + nis_modify F + nis_modify_entry F + nis_name_of F + nis_name_of_r F + nis_next_entry F + nis_perror F + nis_ping F + nis_print_directory F + nis_print_entry F + nis_print_group F + nis_print_group_entry F + nis_print_link F + nis_print_object F + nis_print_result F + nis_print_rights F + nis_print_table F + nis_read_obj F + nis_remove F + nis_remove_entry F + nis_removemember F + nis_rmdir F + nis_servstate F + nis_sperrno F + nis_sperror F + nis_sperror_r F + nis_stats F + nis_verifygroup F + nis_write_obj F + readColdStartFile F + writeColdStartFile F + xdr_cback_data F + xdr_domainname F + xdr_keydat F + xdr_mapname F + xdr_obj_p F + xdr_peername F + xdr_valdat F + xdr_yp_buf F + xdr_ypall F + xdr_ypbind_binding F + xdr_ypbind_resp F + xdr_ypbind_resptype F + xdr_ypbind_setdom F + xdr_ypdelete_args F + xdr_ypmap_parms F + xdr_ypmaplist F + xdr_yppush_status F + xdr_yppushresp_xfr F + xdr_ypreq_key F + xdr_ypreq_nokey F + xdr_ypreq_xfr F + xdr_ypresp_all F + xdr_ypresp_key_val F + xdr_ypresp_maplist F + xdr_ypresp_master F + xdr_ypresp_order F + xdr_ypresp_val F + xdr_ypresp_xfr F + xdr_ypstat F + xdr_ypupdate_args F + xdr_ypxfrstat F + yp_all F + yp_bind F + yp_first F + yp_get_default_domain F + yp_maplist F + yp_master F + yp_match F + yp_next F + yp_order F + yp_unbind F + yp_update F + ypbinderr_string F + yperr_string F + ypprot_err F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist new file mode 100644 index 0000000000..5520312635 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist @@ -0,0 +1,228 @@ +GLIBC_2.17 + GLIBC_2.17 A + _IO_flockfile F + _IO_ftrylockfile F + _IO_funlockfile F + __close F + __connect F + __errno_location F + __fcntl F + __fork F + __h_errno_location F + __libc_allocate_rtsig F + __libc_current_sigrtmax F + __libc_current_sigrtmin F + __lseek F + __nanosleep F + __open F + __open64 F + __pread64 F + __pthread_cleanup_routine F + __pthread_getspecific F + __pthread_key_create F + __pthread_mutex_destroy F + __pthread_mutex_init F + __pthread_mutex_lock F + __pthread_mutex_trylock F + __pthread_mutex_unlock F + __pthread_mutexattr_destroy F + __pthread_mutexattr_init F + __pthread_mutexattr_settype F + __pthread_once F + __pthread_register_cancel F + __pthread_register_cancel_defer F + __pthread_rwlock_destroy F + __pthread_rwlock_init F + __pthread_rwlock_rdlock F + __pthread_rwlock_tryrdlock F + __pthread_rwlock_trywrlock F + __pthread_rwlock_unlock F + __pthread_rwlock_wrlock F + __pthread_setspecific F + __pthread_unregister_cancel F + __pthread_unregister_cancel_restore F + __pthread_unwind_next F + __pwrite64 F + __read F + __res_state F + __send F + __sigaction F + __vfork F + __wait F + __write F + _pthread_cleanup_pop F + _pthread_cleanup_pop_restore F + _pthread_cleanup_push F + _pthread_cleanup_push_defer F + accept F + close F + connect F + fcntl F + flockfile F + fork F + fsync F + ftrylockfile F + funlockfile F + longjmp F + lseek F + lseek64 F + msync F + nanosleep F + open F + open64 F + pause F + pread F + pread64 F + pthread_attr_destroy F + pthread_attr_getaffinity_np F + pthread_attr_getdetachstate F + pthread_attr_getguardsize F + pthread_attr_getinheritsched F + pthread_attr_getschedparam F + pthread_attr_getschedpolicy F + pthread_attr_getscope F + pthread_attr_getstack F + pthread_attr_getstackaddr F + pthread_attr_getstacksize F + pthread_attr_init F + pthread_attr_setaffinity_np F + pthread_attr_setdetachstate F + pthread_attr_setguardsize F + pthread_attr_setinheritsched F + pthread_attr_setschedparam F + pthread_attr_setschedpolicy F + pthread_attr_setscope F + pthread_attr_setstack F + pthread_attr_setstackaddr F + pthread_attr_setstacksize F + pthread_barrier_destroy F + pthread_barrier_init F + pthread_barrier_wait F + pthread_barrierattr_destroy F + pthread_barrierattr_getpshared F + pthread_barrierattr_init F + pthread_barrierattr_setpshared F + pthread_cancel F + pthread_cond_broadcast F + pthread_cond_destroy F + pthread_cond_init F + pthread_cond_signal F + pthread_cond_timedwait F + pthread_cond_wait F + pthread_condattr_destroy F + pthread_condattr_getclock F + pthread_condattr_getpshared F + pthread_condattr_init F + pthread_condattr_setclock F + pthread_condattr_setpshared F + pthread_create F + pthread_detach F + pthread_equal F + pthread_exit F + pthread_getaffinity_np F + pthread_getattr_np F + pthread_getconcurrency F + pthread_getcpuclockid F + pthread_getname_np F + pthread_getschedparam F + pthread_getspecific F + pthread_join F + pthread_key_create F + pthread_key_delete F + pthread_kill F + pthread_kill_other_threads_np F + pthread_mutex_consistent F + pthread_mutex_consistent_np F + pthread_mutex_destroy F + pthread_mutex_getprioceiling F + pthread_mutex_init F + pthread_mutex_lock F + pthread_mutex_setprioceiling F + pthread_mutex_timedlock F + pthread_mutex_trylock F + pthread_mutex_unlock F + pthread_mutexattr_destroy F + pthread_mutexattr_getkind_np F + pthread_mutexattr_getprioceiling F + pthread_mutexattr_getprotocol F + pthread_mutexattr_getpshared F + pthread_mutexattr_getrobust F + pthread_mutexattr_getrobust_np F + pthread_mutexattr_gettype F + pthread_mutexattr_init F + pthread_mutexattr_setkind_np F + pthread_mutexattr_setprioceiling F + pthread_mutexattr_setprotocol F + pthread_mutexattr_setpshared F + pthread_mutexattr_setrobust F + pthread_mutexattr_setrobust_np F + pthread_mutexattr_settype F + pthread_once F + pthread_rwlock_destroy F + pthread_rwlock_init F + pthread_rwlock_rdlock F + pthread_rwlock_timedrdlock F + pthread_rwlock_timedwrlock F + pthread_rwlock_tryrdlock F + pthread_rwlock_trywrlock F + pthread_rwlock_unlock F + pthread_rwlock_wrlock F + pthread_rwlockattr_destroy F + pthread_rwlockattr_getkind_np F + pthread_rwlockattr_getpshared F + pthread_rwlockattr_init F + pthread_rwlockattr_setkind_np F + pthread_rwlockattr_setpshared F + pthread_self F + pthread_setaffinity_np F + pthread_setcancelstate F + pthread_setcanceltype F + pthread_setconcurrency F + pthread_setname_np F + pthread_setschedparam F + pthread_setschedprio F + pthread_setspecific F + pthread_sigmask F + pthread_sigqueue F + pthread_spin_destroy F + pthread_spin_init F + pthread_spin_lock F + pthread_spin_trylock F + pthread_spin_unlock F + pthread_testcancel F + pthread_timedjoin_np F + pthread_tryjoin_np F + pthread_yield F + pwrite F + pwrite64 F + raise F + read F + recv F + recvfrom F + recvmsg F + sem_close F + sem_destroy F + sem_getvalue F + sem_init F + sem_open F + sem_post F + sem_timedwait F + sem_trywait F + sem_unlink F + sem_wait F + send F + sendmsg F + sendto F + sigaction F + siglongjmp F + sigwait F + system F + tcdrain F + vfork F + wait F + waitpid F + write F +GLIBC_2.18 + GLIBC_2.18 A + pthread_getattr_default_np F + pthread_setattr_default_np F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist new file mode 100644 index 0000000000..ed312c0e6e --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist @@ -0,0 +1,93 @@ +GLIBC_2.17 + GLIBC_2.17 A + __b64_ntop F + __b64_pton F + __dn_comp F + __dn_count_labels F + __dn_expand F + __dn_skipname F + __fp_nquery F + __fp_query F + __fp_resstat F + __hostalias F + __loc_aton F + __loc_ntoa F + __p_cdname F + __p_cdnname F + __p_class F + __p_class_syms D 0xa8 + __p_fqname F + __p_fqnname F + __p_option F + __p_query F + __p_rcode F + __p_secstodate F + __p_time F + __p_type F + __p_type_syms D 0x450 + __putlong F + __putshort F + __res_close F + __res_dnok F + __res_hnok F + __res_hostalias F + __res_isourserver F + __res_mailok F + __res_mkquery F + __res_nameinquery F + __res_nmkquery F + __res_nquery F + __res_nquerydomain F + __res_nsearch F + __res_nsend F + __res_ownok F + __res_queriesmatch F + __res_query F + __res_querydomain F + __res_search F + __res_send F + __sym_ntop F + __sym_ntos F + __sym_ston F + _gethtbyaddr F + _gethtbyname F + _gethtbyname2 F + _gethtent F + _getlong F + _getshort F + _res_opcodes D 0x80 + _sethtent F + inet_net_ntop F + inet_net_pton F + inet_neta F + ns_datetosecs F + ns_format_ttl F + ns_get16 F + ns_get32 F + ns_initparse F + ns_makecanon F + ns_msg_getflag F + ns_name_compress F + ns_name_ntol F + ns_name_ntop F + ns_name_pack F + ns_name_pton F + ns_name_rollback F + ns_name_skip F + ns_name_uncompress F + ns_name_unpack F + ns_parse_ttl F + ns_parserr F + ns_put16 F + ns_put32 F + ns_samedomain F + ns_samename F + ns_skiprr F + ns_sprintrr F + ns_sprintrrf F + ns_subdomain F + res_gethostbyaddr F + res_gethostbyname F + res_gethostbyname2 F + res_send_setqhook F + res_send_setrhook F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist new file mode 100644 index 0000000000..f89f83ea86 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist @@ -0,0 +1,37 @@ +GLIBC_2.17 + GLIBC_2.17 A + __mq_open_2 F + aio_cancel F + aio_cancel64 F + aio_error F + aio_error64 F + aio_fsync F + aio_fsync64 F + aio_init F + aio_read F + aio_read64 F + aio_return F + aio_return64 F + aio_suspend F + aio_suspend64 F + aio_write F + aio_write64 F + lio_listio F + lio_listio64 F + mq_close F + mq_getattr F + mq_notify F + mq_open F + mq_receive F + mq_send F + mq_setattr F + mq_timedreceive F + mq_timedsend F + mq_unlink F + shm_open F + shm_unlink F + timer_create F + timer_delete F + timer_getoverrun F + timer_gettime F + timer_settime F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist new file mode 100644 index 0000000000..52f8d0793b --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist @@ -0,0 +1,42 @@ +GLIBC_2.17 + GLIBC_2.17 A + td_init F + td_log F + td_symbol_list F + td_ta_clear_event F + td_ta_delete F + td_ta_enable_stats F + td_ta_event_addr F + td_ta_event_getmsg F + td_ta_get_nthreads F + td_ta_get_ph F + td_ta_get_stats F + td_ta_map_id2thr F + td_ta_map_lwp2thr F + td_ta_new F + td_ta_reset_stats F + td_ta_set_event F + td_ta_setconcurrency F + td_ta_thr_iter F + td_ta_tsd_iter F + td_thr_clear_event F + td_thr_dbresume F + td_thr_dbsuspend F + td_thr_event_enable F + td_thr_event_getmsg F + td_thr_get_info F + td_thr_getfpregs F + td_thr_getgregs F + td_thr_getxregs F + td_thr_getxregsize F + td_thr_set_event F + td_thr_setfpregs F + td_thr_setgregs F + td_thr_setprio F + td_thr_setsigpending F + td_thr_setxregs F + td_thr_sigsetmask F + td_thr_tls_get_addr F + td_thr_tlsbase F + td_thr_tsd F + td_thr_validate F diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist new file mode 100644 index 0000000000..7e75bb2ea8 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist @@ -0,0 +1,8 @@ +GLIBC_2.17 + GLIBC_2.17 A + forkpty F + login F + login_tty F + logout F + logwtmp F + openpty F -- cgit v1.2.3 From ae2f53e1eb3cd454d833ce9cb3bc78d791a0cb3e Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Tue, 4 Feb 2014 20:54:58 -0800 Subject: Adjust sparc ULPs. * sysdeps/sparc/fpu/libm-test-ulps: Update for some 64-bit differences from 32-bit. --- sysdeps/sparc/fpu/libm-test-ulps | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sysdeps') diff --git a/sysdeps/sparc/fpu/libm-test-ulps b/sysdeps/sparc/fpu/libm-test-ulps index b22c08a9d7..bf3cd45ddc 100644 --- a/sysdeps/sparc/fpu/libm-test-ulps +++ b/sysdeps/sparc/fpu/libm-test-ulps @@ -16632,6 +16632,9 @@ double: 2 idouble: 2 ildouble: 2 ldouble: 2 +Test "tgamma (-0x2.8ffffcp+4)": +ildouble: 2 +ldouble: 2 Test "tgamma (-0x2.8fffffffffffep+4)": ildouble: 1 ldouble: 1 @@ -17057,6 +17060,8 @@ double: 1 float: 1 idouble: 1 ifloat: 1 +ildouble: 1 +ldouble: 1 Test "tgamma (-0x9.ffffffffffff8p+0)": double: 1 idouble: 1 -- cgit v1.2.3 From f877c4f2bf2ebc9ecd3e099e33fc4184f4fcac1a Mon Sep 17 00:00:00 2001 From: Carlos O'Donell Date: Wed, 5 Feb 2014 10:10:34 -0500 Subject: Fix tst-setgetname for Linux kernels < 2.6.33. Support for /proc/self/task/$tid/comm as added in Linux 2.6.33, therefore since the test tst-setgetname relies on this functionality to operate we must skip the test in kernels < 2.6.33. We wrap the checks with __ASSUME_PROC_PID_TASK_COMM such that in the future when we move arch_minimum_kernel to 2.6.33 we can remove this code. --- ChangeLog | 6 ++++++ nptl/ChangeLog | 6 ++++++ nptl/sysdeps/unix/sysv/linux/tst-setgetname.c | 14 ++++++++++++++ sysdeps/unix/sysv/linux/kernel-features.h | 6 ++++++ 4 files changed, 32 insertions(+) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 9c0a003aa8..a75fb0ff30 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2014-02-05 Carlos O'Donell + + * sysdeps/unix/sysv/linux/kernel-features.h + [__LINUX_KERNEL_VERSION >= 0x020621] + (__ASSUME_PROC_PID_TASK_COMM): Define. + 2014-02-05 Siddhesh Poyarekar * manual/contrib.texi: Update entry for Ondrej Bilka, Will diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 8761f5be9b..003e290bb1 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,9 @@ +2014-02-05 Carlos O'Donell + + * sysdeps/unix/sysv/linux/tst-setgetname.c (do_test): Skip the + test if !__ASSUME_PROC_PID_TASK_COMM and get_self_comm returns + ENOENT. + 2014-01-23 Stefan Liebler * tst-tls7.c: Adjust testcase timeout diff --git a/nptl/sysdeps/unix/sysv/linux/tst-setgetname.c b/nptl/sysdeps/unix/sysv/linux/tst-setgetname.c index 2aceba53bc..f5693e26c4 100644 --- a/nptl/sysdeps/unix/sysv/linux/tst-setgetname.c +++ b/nptl/sysdeps/unix/sysv/linux/tst-setgetname.c @@ -23,6 +23,7 @@ #include #include #include +#include /* New name of process. */ #define NEW_NAME "setname" @@ -99,6 +100,19 @@ do_test (int argc, char **argv) if (res == 0) { res = get_self_comm (gettid (), name_check, TASK_COMM_LEN); + +#if !__ASSUME_PROC_PID_TASK_COMM + /* On this first test we look for ENOENT to be returned from + get_self_comm to indicate that the kernel is older than + 2.6.33 and doesn't contain comm within the proc structure. + In that case we skip the entire test. */ + if (res == ENOENT) + { + printf ("SKIP: The kernel does not have /proc/self/task/%%lu/comm.\n"); + return 0; + } +#endif + if (res == 0) { if (strncmp (name, name_check, strlen (BIG_NAME)) == 0) diff --git a/sysdeps/unix/sysv/linux/kernel-features.h b/sysdeps/unix/sysv/linux/kernel-features.h index 372353528e..aabf69d64c 100644 --- a/sysdeps/unix/sysv/linux/kernel-features.h +++ b/sysdeps/unix/sysv/linux/kernel-features.h @@ -202,6 +202,12 @@ # define __ASSUME_RECVMMSG 1 #endif +/* Support for /proc/self/task/$tid/comm and /proc/$pid/task/$tid/comm were + added in 2.6.33. */ +#if __LINUX_KERNEL_VERSION >= 0x020621 +# define __ASSUME_PROC_PID_TASK_COMM 1 +#endif + /* statfs fills in f_flags since 2.6.36. */ #if __LINUX_KERNEL_VERSION >= 0x020624 # define __ASSUME_STATFS_F_FLAGS 1 -- cgit v1.2.3 From 27e839f6f068b6109c6bf2f634f4426b48723218 Mon Sep 17 00:00:00 2001 From: Carlos O'Donell Date: Wed, 5 Feb 2014 10:33:42 -0500 Subject: Fix comment in kernel-features.h. Use "was" not "were." --- ChangeLog | 2 ++ sysdeps/unix/sysv/linux/kernel-features.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index a75fb0ff30..9aa314e28f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2014-02-05 Carlos O'Donell + * sysdeps/unix/sysv/linux/kernel-features.h: Fix comment. + * sysdeps/unix/sysv/linux/kernel-features.h [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_PROC_PID_TASK_COMM): Define. diff --git a/sysdeps/unix/sysv/linux/kernel-features.h b/sysdeps/unix/sysv/linux/kernel-features.h index aabf69d64c..784f4dd491 100644 --- a/sysdeps/unix/sysv/linux/kernel-features.h +++ b/sysdeps/unix/sysv/linux/kernel-features.h @@ -202,7 +202,7 @@ # define __ASSUME_RECVMMSG 1 #endif -/* Support for /proc/self/task/$tid/comm and /proc/$pid/task/$tid/comm were +/* Support for /proc/self/task/$tid/comm and /proc/$pid/task/$tid/comm was added in 2.6.33. */ #if __LINUX_KERNEL_VERSION >= 0x020621 # define __ASSUME_PROC_PID_TASK_COMM 1 -- cgit v1.2.3 From dd654bf9ba1848bf9ed250f8ebaa5097c383dcf8 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Wed, 5 Feb 2014 21:19:51 +1000 Subject: Revert "Patch 2/4 of the effort to make TLS access async-signal-safe." This reverts commit 1f33d36a8a9e78c81bed59b47f260723f56bb7e6. Conflicts: elf/dl-misc.c Also reverts the follow commits that were bug fixes to new code introduced in the above commit: 063b2acbce83549df82ab30f5af573f1b9c4bd19 b627fdd58554bc36bd344dc40a8787c4b7a9cc46 e81c64bba13d2d8b2a4e53254a82cc80f27c8497 --- ChangeLog | 19 ------ elf/dl-misc.c | 142 --------------------------------------------- elf/dl-tls.c | 34 +++++------ sysdeps/generic/ldsodefs.h | 6 -- 4 files changed, 16 insertions(+), 185 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 7843e3b92f..cb4615287a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -961,12 +961,6 @@ * sysdeps/powerpc/fpu/libm-test-ulps: Update. -2013-12-19 Paul Pluzhnikov - - * elf/dl-misc.c (ptr_to_signal_safe_allocator_header): New function. - (__signal_safe_memalign, __signal_safe_free): Use it. - (__signal_safe_realloc): Likewise. - 2013-12-19 Joseph Myers * manual/texinfo.tex: Update to version 2013-11-26.10 with @@ -1050,19 +1044,6 @@ * manual/install.texi: Suppress menu for plain text output. * INSTALL: Regenerated. -2013-12-18 Andrew Hunter - - * sysdeps/generic/ldsodefs.h (__signal_safe_memalign): New prototype. - (__signal_safe_malloc, __signal_safe_free): Likewise. - (__signal_safe_realloc, __signal_safe_calloc): Likewise. - * elf/dl-misc.c (__signal_safe_allocator_header): New struct. - (__signal_safe_memalign, __signal_safe_malloc): New function. - (__signal_safe_free, __signal_safe_realloc): Likewise. - (__signal_safe_calloc): Likewise. - * elf/dl-tls.c (allocate_dtv, _dl_clear_dtv): Call signal-safe - functions. - (_dl_deallocate_tls, _dl_update_slotinfo): Likewise. - 2013-12-18 Andrew Hunter * elf/Versions (ld): Add _dl_clear_dtv. diff --git a/elf/dl-misc.c b/elf/dl-misc.c index 043185aa7e..8fd67100e3 100644 --- a/elf/dl-misc.c +++ b/elf/dl-misc.c @@ -19,7 +19,6 @@ #include #include #include -#include #include #include #include @@ -365,144 +364,3 @@ _dl_higher_prime_number (unsigned long int n) return *low; } - -/* To support accessing TLS variables from signal handlers, we need an - async signal safe memory allocator. These routines are never - themselves invoked reentrantly (all calls to them are surrounded by - signal masks) but may be invoked concurrently from many threads. - The current implementation is not particularly performant nor space - efficient, but it will be used rarely (and only in binaries that use - dlopen.) The API matches that of malloc() and friends. */ - -struct __signal_safe_allocator_header -{ - size_t size; - void *start; -}; - -static inline struct __signal_safe_allocator_header * -ptr_to_signal_safe_allocator_header (void *ptr) -{ - return (struct __signal_safe_allocator_header *) - ((char *) (ptr) - sizeof (struct __signal_safe_allocator_header)); -} - -void *weak_function -__signal_safe_memalign (size_t boundary, size_t size) -{ - struct __signal_safe_allocator_header *header; - - if (boundary < sizeof (*header)) - boundary = sizeof (*header); - - /* Boundary must be a power of two. */ - if (!powerof2 (boundary)) - return NULL; - - size_t pg = GLRO (dl_pagesize); - size_t padded_size; - if (boundary <= pg) - { - /* We'll get a pointer certainly aligned to boundary, so just - add one more boundary-sized chunk to hold the header. */ - padded_size = roundup (size, boundary) + boundary; - } - else - { - /* If we want K pages aligned to a J-page boundary, K+J+1 pages - contains at least one such region that isn't directly at the start - (so we can place the header.) This is wasteful, but you're the one - who wanted 64K-aligned TLS. */ - padded_size = roundup (size, pg) + boundary + pg; - } - - - size_t actual_size = roundup (padded_size, pg); - void *actual = mmap (NULL, actual_size, PROT_READ | PROT_WRITE, - MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); - if (actual == MAP_FAILED) - return NULL; - - if (boundary <= pg) - { - header = actual + boundary - sizeof (*header); - } - else - { - intptr_t actual_pg = ((intptr_t) actual) / pg; - intptr_t boundary_pg = boundary / pg; - intptr_t start_pg = actual_pg + boundary_pg; - start_pg -= start_pg % boundary_pg; - if (start_pg > (actual_pg + 1)) - { - int ret = munmap (actual, (start_pg - actual_pg - 1) * pg); - assert (ret == 0); - actual = (void *) ((start_pg - 1) * pg); - } - char *start = (void *) (start_pg * pg); - header = ptr_to_signal_safe_allocator_header (start); - } - - header->size = actual_size; - header->start = actual; - void *ptr = header; - ptr += sizeof (*header); - if (((intptr_t) ptr) % boundary != 0) - _dl_fatal_printf ("__signal_safe_memalign produced incorrect alignment\n"); - return ptr; -} - -void * weak_function -__signal_safe_malloc (size_t size) -{ - return __signal_safe_memalign (1, size); -} - -void weak_function -__signal_safe_free (void *ptr) -{ - if (ptr == NULL) - return; - - struct __signal_safe_allocator_header *header - = ptr_to_signal_safe_allocator_header (ptr); - int ret = munmap (header->start, header->size); - - assert (ret == 0); -} - -void * weak_function -__signal_safe_realloc (void *ptr, size_t size) -{ - if (size == 0) - { - __signal_safe_free (ptr); - return NULL; - } - if (ptr == NULL) - return __signal_safe_malloc (size); - - struct __signal_safe_allocator_header *header - = ptr_to_signal_safe_allocator_header (ptr); - size_t old_size = header->size; - if (old_size - sizeof (*header) >= size) - return ptr; - - void *new_ptr = __signal_safe_malloc (size); - if (new_ptr == NULL) - return NULL; - - memcpy (new_ptr, ptr, old_size); - __signal_safe_free (ptr); - - return new_ptr; -} - -void * weak_function -__signal_safe_calloc (size_t nmemb, size_t size) -{ - void *ptr = __signal_safe_malloc (nmemb * size); - if (ptr == NULL) - return NULL; - return memset (ptr, 0, nmemb * size); -} diff --git a/elf/dl-tls.c b/elf/dl-tls.c index c1802e7d4e..28e4fbef40 100644 --- a/elf/dl-tls.c +++ b/elf/dl-tls.c @@ -293,7 +293,7 @@ allocate_dtv (void *result) initial set of modules. This should avoid in most cases expansions of the dtv. */ dtv_length = GL(dl_tls_max_dtv_idx) + DTV_SURPLUS; - dtv = __signal_safe_calloc (dtv_length + 2, sizeof (dtv_t)); + dtv = calloc (dtv_length + 2, sizeof (dtv_t)); if (dtv != NULL) { /* This is the initial length of the dtv. */ @@ -470,7 +470,7 @@ _dl_clear_dtv (dtv_t *dtv) for (size_t cnt = 0; cnt < dtv[-1].counter; ++cnt) if (! dtv[1 + cnt].pointer.is_static && dtv[1 + cnt].pointer.val != TLS_DTV_UNALLOCATED) - __signal_safe_free (dtv[1 + cnt].pointer.val); + free (dtv[1 + cnt].pointer.val); memset (dtv, '\0', (dtv[-1].counter + 1) * sizeof (dtv_t)); } @@ -491,11 +491,11 @@ _dl_deallocate_tls (void *tcb, bool dealloc_tcb) for (size_t cnt = 0; cnt < dtv[-1].counter; ++cnt) if (! dtv[1 + cnt].pointer.is_static && dtv[1 + cnt].pointer.val != TLS_DTV_UNALLOCATED) - __signal_safe_free (dtv[1 + cnt].pointer.val); + free (dtv[1 + cnt].pointer.val); /* The array starts with dtv[-1]. */ if (dtv != GL(dl_initial_dtv)) - __signal_safe_free (dtv - 1); + free (dtv - 1); if (dealloc_tcb) { @@ -537,7 +537,8 @@ static void * allocate_and_init (struct link_map *map) { void *newp; - newp = __signal_safe_memalign (map->l_tls_align, map->l_tls_blocksize); + + newp = __libc_memalign (map->l_tls_align, map->l_tls_blocksize); if (newp == NULL) oom (); @@ -607,27 +608,25 @@ _dl_update_slotinfo (unsigned long int req_modid) if (gen <= dtv[0].counter) continue; - size_t modid = total + cnt; - /* If there is no map this means the entry is empty. */ struct link_map *map = listp->slotinfo[cnt].map; if (map == NULL) { /* If this modid was used at some point the memory might still be allocated. */ - if (dtv[-1].counter >= modid - && !dtv[modid].pointer.is_static - && dtv[modid].pointer.val != TLS_DTV_UNALLOCATED) + if (! dtv[total + cnt].pointer.is_static + && dtv[total + cnt].pointer.val != TLS_DTV_UNALLOCATED) { - __signal_safe_free (dtv[modid].pointer.val); - dtv[modid].pointer.val = TLS_DTV_UNALLOCATED; + free (dtv[total + cnt].pointer.val); + dtv[total + cnt].pointer.val = TLS_DTV_UNALLOCATED; } continue; } - assert (modid == map->l_tls_modid); /* Check whether the current dtv array is large enough. */ + size_t modid = map->l_tls_modid; + assert (total + cnt == modid); if (dtv[-1].counter < modid) { /* Reallocate the dtv. */ @@ -641,18 +640,17 @@ _dl_update_slotinfo (unsigned long int req_modid) { /* This is the initial dtv that was allocated during rtld startup using the dl-minimal.c - malloc instead of the real allocator. We can't + malloc instead of the real malloc. We can't free it, we have to abandon the old storage. */ - newp = __signal_safe_malloc ( - (2 + newsize) * sizeof (dtv_t)); + newp = malloc ((2 + newsize) * sizeof (dtv_t)); if (newp == NULL) oom (); memcpy (newp, &dtv[-1], (2 + oldsize) * sizeof (dtv_t)); } else { - newp = __signal_safe_realloc (&dtv[-1], + newp = realloc (&dtv[-1], (2 + newsize) * sizeof (dtv_t)); if (newp == NULL) oom (); @@ -682,7 +680,7 @@ _dl_update_slotinfo (unsigned long int req_modid) deallocate even if it is this dtv entry we are supposed to load. The reason is that we call memalign and not malloc. */ - __signal_safe_free (dtv[modid].pointer.val); + free (dtv[modid].pointer.val); /* This module is loaded dynamically- We defer memory allocation. */ diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index 72de344b9c..5e252267d7 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -994,12 +994,6 @@ rtld_hidden_proto (_dl_allocate_tls_init) extern void _dl_clear_dtv (dtv_t *dtv) internal_function; rtld_hidden_proto (_dl_clear_dtv) -extern void *__signal_safe_memalign (size_t boundary, size_t size); -extern void *__signal_safe_malloc (size_t size); -extern void __signal_safe_free (void *ptr); -extern void *__signal_safe_realloc (void *ptr, size_t size); -extern void *__signal_safe_calloc (size_t nmemb, size_t size); - /* Deallocate memory allocated with _dl_allocate_tls. */ extern void _dl_deallocate_tls (void *tcb, bool dealloc_tcb) internal_function; rtld_hidden_proto (_dl_deallocate_tls) -- cgit v1.2.3 From 8b6785f0836011cace9a77f3c24e51a7379238a0 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Wed, 5 Feb 2014 21:21:00 +1000 Subject: Revert "Patch 3/4 of the effort to make TLS access async-signal-safe." This reverts commit 35e8f7ab94c910659de9d507aa0f3e1f8973d914. --- ChangeLog | 7 ------- elf/Versions | 1 - elf/dl-tls.c | 12 ------------ nptl/allocatestack.c | 6 +++++- sysdeps/generic/ldsodefs.h | 5 ----- 5 files changed, 5 insertions(+), 26 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index cb4615287a..80cb619b4c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1044,13 +1044,6 @@ * manual/install.texi: Suppress menu for plain text output. * INSTALL: Regenerated. -2013-12-18 Andrew Hunter - - * elf/Versions (ld): Add _dl_clear_dtv. - * sysdeps/generic/ldsodefs.h (_dl_clear_dtv): New prototype. - * elf/dl-tls.c (_dl_clear_dtv): New function. - * nptl/allocatestack.c (get_cached_stack): Call _dl_clear_dtv. - 2013-12-18 Andrew Hunter * sysdeps/generic/ldsodefs.h (_dl_mask_all_signals): New prototype. diff --git a/elf/Versions b/elf/Versions index 01b7a59d5e..238399232d 100644 --- a/elf/Versions +++ b/elf/Versions @@ -53,7 +53,6 @@ ld { _dl_allocate_tls; _dl_allocate_tls_init; _dl_argv; _dl_find_dso_for_object; _dl_get_tls_static_info; _dl_deallocate_tls; _dl_make_stack_executable; _dl_out_of_memory; - _dl_clear_dtv; _dl_rtld_di_serinfo; _dl_starting_up; _dl_tls_setup; _rtld_global; _rtld_global_ro; diff --git a/elf/dl-tls.c b/elf/dl-tls.c index 28e4fbef40..dbaea0aa91 100644 --- a/elf/dl-tls.c +++ b/elf/dl-tls.c @@ -463,18 +463,6 @@ _dl_allocate_tls (void *mem) } rtld_hidden_def (_dl_allocate_tls) -void -internal_function -_dl_clear_dtv (dtv_t *dtv) -{ - for (size_t cnt = 0; cnt < dtv[-1].counter; ++cnt) - if (! dtv[1 + cnt].pointer.is_static - && dtv[1 + cnt].pointer.val != TLS_DTV_UNALLOCATED) - free (dtv[1 + cnt].pointer.val); - memset (dtv, '\0', (dtv[-1].counter + 1) * sizeof (dtv_t)); -} - -rtld_hidden_def (_dl_clear_dtv) #ifndef SHARED extern dtv_t _dl_static_dtv[]; diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c index 7f6094ebb2..13eca47cf2 100644 --- a/nptl/allocatestack.c +++ b/nptl/allocatestack.c @@ -242,7 +242,11 @@ get_cached_stack (size_t *sizep, void **memp) /* Clear the DTV. */ dtv_t *dtv = GET_DTV (TLS_TPADJ (result)); - _dl_clear_dtv (dtv); + for (size_t cnt = 0; cnt < dtv[-1].counter; ++cnt) + if (! dtv[1 + cnt].pointer.is_static + && dtv[1 + cnt].pointer.val != TLS_DTV_UNALLOCATED) + free (dtv[1 + cnt].pointer.val); + memset (dtv, '\0', (dtv[-1].counter + 1) * sizeof (dtv_t)); /* Re-initialize the TLS. */ _dl_allocate_tls_init (TLS_TPADJ (result)); diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index 5e252267d7..ff3f20f362 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -989,11 +989,6 @@ extern void *_dl_allocate_tls_storage (void) extern void *_dl_allocate_tls_init (void *) internal_function; rtld_hidden_proto (_dl_allocate_tls_init) -/* Remove all allocated dynamic TLS regions from a DTV - for reuse by new thread. */ -extern void _dl_clear_dtv (dtv_t *dtv) internal_function; -rtld_hidden_proto (_dl_clear_dtv) - /* Deallocate memory allocated with _dl_allocate_tls. */ extern void _dl_deallocate_tls (void *tcb, bool dealloc_tcb) internal_function; rtld_hidden_proto (_dl_deallocate_tls) -- cgit v1.2.3 From bf06bcee84d4c19a99925c0f58026a8cbd87a688 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Wed, 5 Feb 2014 21:21:09 +1000 Subject: Revert "Patch [1/4] async-signal safe TLS." This reverts commit 69a17d9d245dc3551792e95e1823cc2d877592f3. --- ChangeLog | 11 --------- sysdeps/generic/ldsodefs.h | 5 ---- sysdeps/mach/hurd/dl-sysdep.h | 7 ------ sysdeps/unix/sysv/linux/dl-sysdep.c | 46 ------------------------------------- sysdeps/unix/sysv/linux/dl-sysdep.h | 4 ---- 5 files changed, 73 deletions(-) (limited to 'sysdeps') diff --git a/ChangeLog b/ChangeLog index 80cb619b4c..c579442ec5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1044,17 +1044,6 @@ * manual/install.texi: Suppress menu for plain text output. * INSTALL: Regenerated. -2013-12-18 Andrew Hunter - - * sysdeps/generic/ldsodefs.h (_dl_mask_all_signals): New prototype. - (_dl_unmask_signals): Likewise. - * sysdeps/mach/hurd/dl-sysdep.h (_dl_mask_all_signals): New stub. - (_dl_unmask_all_signals): Likewise. - * sysdeps/unix/sysv/linux/dl-sysdep.h (_dl_mask_all_signals): New prototype. - (_dl_unmask_all_signals): Likewise. - * sysdeps/unix/sysv/linux/dl-sysdep.c (_dl_mask_all_signals): New function. - (_dl_unmask_signals): Likewise. - 2013-12-18 Brooks Moses [BZ #15846] diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index ff3f20f362..ffeb093887 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -234,11 +234,6 @@ extern int _dl_name_match_p (const char *__name, const struct link_map *__map) extern unsigned long int _dl_higher_prime_number (unsigned long int n) internal_function; -/* Mask every signal, returning the previous sigmask in OLD. */ -extern void _dl_mask_all_signals (sigset_t *old) internal_function; -/* Undo _dl_mask_all_signals. */ -extern void _dl_unmask_signals (sigset_t *old) internal_function; - /* Function used as argument for `_dl_receive_error' function. The arguments are the error code, error string, and the objname the error occurred in. */ diff --git a/sysdeps/mach/hurd/dl-sysdep.h b/sysdeps/mach/hurd/dl-sysdep.h index e7e209625b..0b3158e57e 100644 --- a/sysdeps/mach/hurd/dl-sysdep.h +++ b/sysdeps/mach/hurd/dl-sysdep.h @@ -29,10 +29,3 @@ # define DL_ARGV_NOT_RELRO 1 # define LIBC_STACK_END_NOT_RELRO 1 #endif - -#include -inline void _dl_mask_all_signals (sigset_t *) internal_function; -inline void _dl_mask_all_signals (sigset_t *) { } - -inline void _dl_unmask_all_signals (sigset_t *) internal_function; -inline void _dl_unmask_all_signals (sigset_t *) { } diff --git a/sysdeps/unix/sysv/linux/dl-sysdep.c b/sysdeps/unix/sysv/linux/dl-sysdep.c index 676c9b246f..28100742f5 100644 --- a/sysdeps/unix/sysv/linux/dl-sysdep.c +++ b/sysdeps/unix/sysv/linux/dl-sysdep.c @@ -19,7 +19,6 @@ /* Linux needs some special initialization, but otherwise uses the generic dynamic linker system interface code. */ -#include #include #include #include @@ -131,48 +130,3 @@ _dl_discover_osversion (void) return version; } - -/* Mask every signal, returning the previous sigmask in OLD. */ -void -internal_function -_dl_mask_all_signals (sigset_t *old) -{ - int ret; - sigset_t new; - - sigfillset (&new); - - /* This function serves as a replacement to pthread_sigmask, which - isn't available from within the dynamic linker since it would require - linking with libpthread. We duplicate some of the functionality here - to avoid requiring libpthread. This isn't quite identical to - pthread_sigmask in that we do not mask internal signals used for - cancellation and setxid handling. This disables asynchronous - cancellation for the duration the signals are disabled, but it's a - small window, and prevents any problems with the use of TLS variables - in the signal handlers that would have executed. */ - - /* It's very important we don't touch errno here, as that's TLS; since this - gets called from get_tls_addr we might end up recursing. */ - - INTERNAL_SYSCALL_DECL (err); - - ret = INTERNAL_SYSCALL (rt_sigprocmask, err, 4, SIG_SETMASK, &new, old, - _NSIG / 8); - - assert (ret == 0); -} - -/* Return sigmask to what it was before a call to _dl_mask_all_signals. */ -void -internal_function -_dl_unmask_signals (sigset_t *old) -{ - int ret; - INTERNAL_SYSCALL_DECL (err); - - ret = INTERNAL_SYSCALL (rt_sigprocmask, err, 4, SIG_SETMASK, old, NULL, - _NSIG / 8); - - assert (ret == 0); -} diff --git a/sysdeps/unix/sysv/linux/dl-sysdep.h b/sysdeps/unix/sysv/linux/dl-sysdep.h index 8e39c83217..096019f2a1 100644 --- a/sysdeps/unix/sysv/linux/dl-sysdep.h +++ b/sysdeps/unix/sysv/linux/dl-sysdep.h @@ -30,8 +30,4 @@ /* Get version of the OS. */ extern int _dl_discover_osversion (void) attribute_hidden; # define HAVE_DL_DISCOVER_OSVERSION 1 - -#include -void _dl_mask_all_signals (sigset_t *) internal_function; -void _dl_unmask_all_signals (sigset_t *) internal_function; #endif -- cgit v1.2.3